Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export PHP_VERSION=/usr/bin/php7
46 changes: 23 additions & 23 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"name": "processmaker/flysystem-msgraph",
"description": "A Flysystem Adapter that supports Microsoft OneDrive and Sharepoint Document Libraries using Microsoft Graph",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Taylor Dondich",
"email": "[email protected]"
}
],
"require": {
"league/oauth2-client": "^2.4",
"microsoft/microsoft-graph": "dev-master",
"league/flysystem": "^1.0"
},
"autoload": {
"psr-4": {
"ProcessMaker\\Flysystem\\Adapter\\": "src/",
"ProcessMaker\\Flysystem\\Adapter\\MSGraph\\Test\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^7.5"
"name": "kimmelsg/flysystem-msgraph",
"description": "A Flysystem Adapter that supports Microsoft OneDrive and Sharepoint Document Libraries using Microsoft Graph -- a fork.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Taylor Dondich",
"email": "[email protected]"
}
],
"require": {
"league/oauth2-client": "^2.4",
"microsoft/microsoft-graph": "dev-main",
"league/flysystem": "^1.0"
},
"autoload": {
"psr-4": {
"Kimmelsg\\Flysystem\\Adapter\\": "src/",
"Kimmelsg\\Flysystem\\Adapter\\MSGraph\\Test\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^7.5"
}
}
4 changes: 2 additions & 2 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="./vendor/autoload.php">
<testsuites>
<testsuite name="ProcessMaker Flysystem Adapter for Microsoft Graph Test Suite">
<testsuite name="Kimmelsg Flysystem Adapter for Microsoft Graph Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
Expand All @@ -13,4 +13,4 @@
<logging>
<log type="coverage-html" target="coverage/report" lowUpperBound="50" highLowerBound="80"/>
</logging>
</phpunit>
</phpunit>
Loading