forked from CristalTeam/php-api-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·35 lines (35 loc) · 1.25 KB
/
composer.json
File metadata and controls
executable file
·35 lines (35 loc) · 1.25 KB
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
34
35
{
"name": "fallenknight85/php-api-wrapper",
"description": "Work with APIs like with Laravel Eloquent or Doctrine (no longer a dream)",
"type": "package",
"authors": [
{
"name": "Cristal",
"email": "cristal@cpro.fr"
}
],
"require": {
"php": ">=8.2",
"php-curl-class/php-curl-class": "^12.0.1",
"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": "^10.0",
"mockery/mockery": "^1.4",
"symfony/var-dumper": "^5.1",
"rector/rector": "^2.0"
}
}