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
65 lines (65 loc) · 1.65 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
{
"name": "vgirol/jsonapi-faker",
"type": "library",
"description": "This package provides a factory to generate fake data using the JSON:API specification.",
"keywords": [
"vgirol",
"jsonapi-faker",
"json api",
"fake data"
],
"homepage": "http://github.com/VGirol/JsonApi-Faker",
"license": "MIT",
"authors": [
{
"name": "Vincent Girol",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.3|^8.0",
"vgirol/jsonapi-constant": "^1.1",
"fakerphp/faker": "^1.9"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"infection/infection": "~0.14",
"vgirol/jsonapi-assert": "dev-master",
"vgirol/jsonapi-structure": "dev-master"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"VGirol\\JsonApiFaker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VGirol\\JsonApiFaker\\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
}
}