-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
66 lines (66 loc) · 2.06 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "swisnl/json-api-client-laravel",
"type": "library",
"description": "A PHP package for mapping remote JSON:API resources to Eloquent like models and collections.",
"require": {
"php": "^7.4|^8.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"swisnl/json-api-client": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/psr7": "^2.1",
"orchestra/testbench": "^6.15|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.5|^10.5"
},
"autoload": {
"psr-4": {
"Swis\\JsonApi\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4" : {
"Swis\\JsonApi\\Client\\Tests\\" : "tests/",
"Swis\\JsonApi\\Client\\Tests\\Mocks\\" : "tests/_mocks/"
}
},
"license": "MIT",
"authors": [
{
"name": "Jasper Zonneveld",
"email": "[email protected]",
"homepage": "https://github.com/JaZo",
"role": "Developer"
}
],
"scripts": {
"test": "phpunit",
"check-style": "php-cs-fixer fix --dry-run -v",
"fix-style": "php-cs-fixer fix"
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
},
"laravel": {
"providers": [
"Swis\\JsonApi\\Client\\Providers\\ServiceProvider"
],
"aliases":{
"DocumentFactory": "Swis\\JsonApi\\Client\\Facades\\DocumentFactoryFacade",
"DocumentParser": "Swis\\JsonApi\\Client\\Facades\\DocumentParserFacade",
"ItemHydrator": "Swis\\JsonApi\\Client\\Facades\\ItemHydratorFacade",
"ResponseParser": "Swis\\JsonApi\\Client\\Facades\\ResponseParserFacade",
"TypeMapper": "Swis\\JsonApi\\Client\\Facades\\TypeMapperFacade"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}