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
/
composer.json
67 lines (67 loc) · 1.78 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
{
"name": "vgirol/jsonapi-faker-laravel",
"type": "library",
"description": "This package provides a factory to generate fake data using Laravel and the JSON:API specification.",
"keywords": [
"vgirol",
"JsonApi-Faker-Laravel",
"JSON API",
"fake data",
"Laravel"
],
"homepage": "http://github.com/VGirol/JsonApi-Faker-Laravel",
"license": "MIT",
"authors": [
{
"name": "Vincent Girol",
"email": "vincent@girol.fr",
"role": "Developer"
}
],
"require": {
"php": "^7.3|^8.0",
"vgirol/jsonapi-faker": "dev-master",
"laravel/framework": "^5.8|^6.0|^7.0|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"infection/infection": "~0.14",
"fakerphp/faker": "^1.9.1",
"vgirol/jsonapi-assert": "dev-master",
"vgirol/jsonapi-structure": "dev-master"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"VGirol\\JsonApiFaker\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VGirol\\JsonApiFaker\\Laravel\\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.2-dev"
}
},
"config": {
"sort-packages": true
}
}