This repository was 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
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.56 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.56 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
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
{
"name": "vgirol/jsonapi-structure",
"type": "library",
"description": "Tools to check content of a JSON:API request",
"keywords": [
"VGirol",
"JsonApi-Structure"
],
"homepage": "https://github.com/VGirol/JsonApi-Structure",
"license": "MIT",
"authors": [
{
"name": "Vincent Girol",
"email": "vincent@girol.fr",
"homepage": "https://github.com/VGirol",
"role": "Developer"
}
],
"require": {
"php" : "^7.3|^8.0",
"vgirol/jsonapi-constant": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"infection/infection": "~0.14",
"vgirol/phpunit-exception": "^2.1"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"VGirol\\JsonApiStructure\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VGirol\\JsonApiStructure\\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",
"travis": [
"@test",
"@infection"
],
"build": [
"@travis"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
}
},
"config": {
"sort-packages": true
}
}