forked from cloudcreativity/laravel-json-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
86 lines (86 loc) · 2.5 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "cloudcreativity/laravel-json-api",
"description": "JSON API (jsonapi.org) support for Laravel applications.",
"keywords": [
"jsonapi.org",
"json-api",
"jsonapi",
"cloudcreativity",
"json",
"api",
"laravel"
],
"homepage": "https://github.com/cloudcreativity/laravel-json-api",
"support": {
"issues": "https://github.com/cloudcreativity/laravel-json-api/issues"
},
"license": "Apache-2.0",
"authors": [
{
"name": "Cloud Creativity Ltd",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"ext-json": "*",
"cloudcreativity/utils-object": "^1.0",
"illuminate/console": "^5.5|^6.0",
"illuminate/contracts": "^5.5|^6.0",
"illuminate/database": "^5.5|^6.0",
"illuminate/filesystem": "^5.5|^6.0",
"illuminate/http": "^5.5|^6.0",
"illuminate/pagination": "^5.5|^6.0",
"illuminate/support": "^5.5|^6.0",
"neomerx/json-api": "^1.0.3",
"ramsey/uuid": "^3.0",
"symfony/psr-http-message-bridge": "^1.0",
"zendframework/zend-diactoros": "^1.0|^2.0"
},
"require-dev": {
"ext-sqlite3": "*",
"cloudcreativity/json-api-testing": "^1.2|^2.0",
"composer/semver": "^1.5",
"guzzlehttp/guzzle": "^6.3",
"mockery/mockery": "^1.1",
"orchestra/testbench": "^3.5|^4.0",
"phpunit/phpunit": "^6.0|^7.0|^8.0"
},
"suggest": {
"cloudcreativity/json-api-testing": "Required to use the test helpers."
},
"autoload": {
"psr-4": {
"CloudCreativity\\LaravelJsonApi\\": "src/"
},
"files": [
"helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"CloudCreativity\\LaravelJsonApi\\Tests\\": "tests/lib",
"DummyApp\\": "tests/dummy/app",
"DummyApp\\Tests\\": "tests/dummy/tests",
"DummyPackage\\": "tests/package/src"
}
},
"extra": {
"branch-alias": {
"dev-develop": "1.x-dev"
},
"laravel": {
"providers": [
"CloudCreativity\\LaravelJsonApi\\ServiceProvider"
],
"aliases": {
"JsonApi": "CloudCreativity\\LaravelJsonApi\\Facades\\JsonApi"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}