mirror of
https://github.com/bitinflow/accounts.git
synced 2026-03-13 13:35:52 +00:00
54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"name": "bitinflow/accounts",
|
|
"description": "PHP bitinflow Accounts API Client for Laravel 5+",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "René Preuß",
|
|
"email": "rene@bitinflow.com"
|
|
},
|
|
{
|
|
"name": "Maurice Preuß",
|
|
"email": "maurice@bitinflow.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.4|^8.0",
|
|
"ext-json": "*",
|
|
"illuminate/support": "~5.4|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0",
|
|
"illuminate/console": "~5.4|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0",
|
|
"guzzlehttp/guzzle": "^6.3|^7.0",
|
|
"socialiteproviders/manager": "^3.4|^4.0.1",
|
|
"firebase/php-jwt": "^5.2"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^8.0|^9.0",
|
|
"orchestra/testbench": "^6.0",
|
|
"codedungeon/phpunit-result-printer": "^0.31"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Bitinflow\\Accounts\\": "src/Accounts"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Bitinflow\\Accounts\\Tests\\": "tests/Accounts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "vendor/bin/phpunit",
|
|
"docs": "php generator/generate-docs.php"
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Bitinflow\\Accounts\\Providers\\BitinflowAccountsServiceProvider"
|
|
],
|
|
"aliases": {
|
|
"BitinflowAccounts": "Bitinflow\\Accounts\\Facades\\BitinflowAccounts"
|
|
}
|
|
}
|
|
}
|
|
}
|