Skip to content

Commit

Permalink
Merge branch 'release/1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
jnovermars committed Feb 8, 2022
2 parents 5b1920d + 293222e commit 248c7f3
Show file tree
Hide file tree
Showing 7 changed files with 3,388 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/vendor
/dummy
.phpunit.result.cache
46 changes: 46 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "gwsn/flysystem-sharepoint-adapter",
"description": "[beta] Adapter for flysystem to use sharepoint as filestore",
"license": "MIT",
"homepage": "https://github.com/gwsn/packages/flysystem-sharepoint-adapter",
"keywords": [
"flysystem",
"sharepoint"
],
"authors": [
{
"name": "Global Web Systems B.V.",
"homepage": "https://www.globalwebsystems.nl"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"gwsn/sharepoint-sdk": "^1.0",
"league/flysystem": "^3.0"
},
"require-dev": {
"league/flysystem-adapter-test-utilities": "^3.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"GWSN\\FlysystemSharepoint\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"UnitTest\\GWSN\\FlysystemSharepoint\\": "tests"
}
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit"
],
"unit-test": "@test"
},
"config": {
"sort-packages": true
}
}
Loading

0 comments on commit 248c7f3

Please sign in to comment.