-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
executable file
·33 lines (33 loc) · 1.09 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "cristal/php-api-wrapper",
"description": "Work with APIs like with Laravel Eloquent or Doctrine (no longer a dream)",
"type": "package",
"authors": [
{
"name": "Cristal",
"email": "[email protected]"
}
],
"require" : {
"php-curl-class/php-curl-class": "^8.3",
"psr/cache": "^1.0 || ^2.0 || ^3.0"
},
"suggest": {
"barryvdh/laravel-debugbar": "To support request tracking in your Laravel app.",
"laravel/framework": "To integrate Laravel Collection, Pagination and Eloquent relations with your models.",
"symfony/symfony" : "To integrate a ManagerRegistry, a Paginator and support serialization with your entities.",
"api-platform/core" : "To integrate a DataProvider and support the Paginator of the Api Platform in addition to the support of Symfony.",
"league/oauth2-client" : "To support OAuth2 request Transport."
},
"autoload": {
"psr-4": {
"Cristal\\ApiWrapper\\": "src"
}
},
"license": "MIT",
"require-dev": {
"phpunit/phpunit": "^9.3",
"mockery/mockery": "^1.4",
"symfony/var-dumper": "^5.1"
}
}