-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
169 additions
and
142 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,57 @@ | ||
{ | ||
"name": "mollie/oauth2-mollie-php", | ||
"description": "Mollie Provider for OAuth 2.0 Client", | ||
"homepage": "https://github.com/mollie/oauth2-mollie-php", | ||
"license": "BSD-2-Clause", | ||
"authors": [ | ||
{ | ||
"name": "Mollie B.V.", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"keywords": [ | ||
"oauth", "oauth2", "client", "authorization", "authorisation", | ||
"mollie", "payment", "service", "ideal", "creditcard", "mistercash", "bancontact", "sofort", "sofortbanking", | ||
"sepa", "paypal", "paysafecard", "banktransfer", "direct debit", "belfius", "belfius direct net", | ||
"refunds", "api", "payments", "gateway" | ||
], | ||
"require": { | ||
"php": ">=7.4.0", | ||
"league/oauth2-client": "^1.0 || ^2.0", | ||
"mollie/mollie-api-php": "^1.19 || ^2.39" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^8.0|^9.0", | ||
"mockery/mockery": "^0.9|^1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Mollie\\OAuth2\\Client\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Mollie\\OAuth2\\Client\\Test\\": "tests/src/" | ||
} | ||
"name": "mollie/oauth2-mollie-php", | ||
"description": "Mollie Provider for OAuth 2.0 Client", | ||
"homepage": "https://github.com/mollie/oauth2-mollie-php", | ||
"license": "BSD-2-Clause", | ||
"authors": [ | ||
{ | ||
"name": "Mollie B.V.", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"keywords": [ | ||
"oauth", | ||
"oauth2", | ||
"client", | ||
"authorization", | ||
"authorisation", | ||
"mollie", | ||
"payment", | ||
"service", | ||
"ideal", | ||
"creditcard", | ||
"mistercash", | ||
"bancontact", | ||
"sofort", | ||
"sofortbanking", | ||
"sepa", | ||
"paypal", | ||
"paysafecard", | ||
"banktransfer", | ||
"direct debit", | ||
"belfius", | ||
"belfius direct net", | ||
"refunds", | ||
"api", | ||
"payments", | ||
"gateway" | ||
], | ||
"require": { | ||
"php": "^7.4|^8.0", | ||
"league/oauth2-client": "^2.7" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^10.0", | ||
"mockery/mockery": "^1.5" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Mollie\\OAuth2\\Client\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Mollie\\OAuth2\\Client\\Test\\": "tests/src/" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> | ||
<coverage processUncoveredFiles="true"> | ||
<include> | ||
<directory suffix=".php">./src</directory> | ||
</include> | ||
</coverage> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false"> | ||
<testsuites> | ||
<testsuite name="Package Test Suite"> | ||
<directory suffix=".php">./tests/</directory> | ||
</testsuite> | ||
</testsuites> | ||
<source> | ||
<include> | ||
<directory suffix=".php">./src</directory> | ||
</include> | ||
</source> | ||
</phpunit> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.