-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
71 lines (71 loc) · 2 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
67
68
69
70
71
{
"name": "swisnl/json-api-client",
"type": "library",
"description": "A PHP package for mapping remote JSON:API resources to Eloquent like models and collections.",
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"illuminate/collections": "^8.0|^9.0|^10.0|^11.0",
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
"php-http/discovery": "^1.9",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0|^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"guzzlehttp/guzzle": "^7.3",
"phpunit/phpunit": "^9.5",
"php-http/mock-client": "^1.2"
},
"suggest": {
"swisnl/php-http-fixture-client": "Allows for easily mocking API calls with fixtures in your tests"
},
"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": "Hendrik Nijmeijer",
"email": "[email protected]"
},
{
"name": "Jasper Zonneveld",
"email": "[email protected]",
"homepage": "https://github.com/JaZo",
"role": "Developer"
},
{
"name": "Björn Brala",
"email": "[email protected]"
}
],
"scripts": {
"test": "phpunit",
"check-style": "php-cs-fixer fix --dry-run -v",
"fix-style": "php-cs-fixer fix"
},
"extra": {
"branch-alias": {
"dev-master": "2.3.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}