This repository has been archived by the owner on Feb 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
85 lines (85 loc) · 2.39 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
{
"name": "vgirol/jsonapi",
"type": "library",
"description": "RESTfull JSON:Api for Laravel",
"keywords": [
"VGirol",
"JsonApi",
"RESTfull",
"Laravel",
"json api"
],
"homepage": "http://github.com/VGirol/JsonApi",
"license": "MIT",
"authors": [
{
"name": "Vincent Girol",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.3|^8.0",
"laravel/framework": "^7.0|^8.0",
"spatie/laravel-json-api-paginate": "^1.6",
"spatie/laravel-query-builder": "^2.1|^3.0",
"vgirol/jsonapi-structure": "dev-master"
},
"require-dev": {
"dms/phpunit-arraysubset-asserts": "^0.2",
"infection/infection": "~0.14",
"laravel/legacy-factories": "^1.1",
"mockery/mockery": "^1.2",
"orchestra/testbench": "^5.0|^6.0",
"phpunit/phpunit": "^9.0",
"vgirol/formrequest-tester": "dev-master",
"vgirol/jsonapi-assert-laravel": "dev-master",
"vgirol/jsonapi-faker": "dev-master",
"vgirol/jsonapi-faker-laravel": "dev-master",
"vgirol/phpunit-exception": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"VGirol\\JsonApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VGirol\\JsonApi\\Tests\\": "tests/"
}
},
"scripts": {
"setup": "bash install/setup.sh",
"post-update-cmd": [
"@setup"
],
"test": "./vendor/bin/phpunit tests ",
"infection": "./vendor/bin/infection --coverage=build/coverage --threads=$(nproc) --configuration=infection.json --min-msi=70 --min-covered-msi=70",
"infection-only-covered": "./vendor/bin/infection --coverage=build/coverage --threads=$(nproc) --configuration=infection.json --only-covered",
"travis": [
"@test",
"@infection"
],
"build": [
"@travis"
]
},
"extra": {
"laravel": {
"providers": [
"VGirol\\JsonApi\\JsonApiServiceProvider"
]
},
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}