-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
63 lines (63 loc) · 2.18 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
{
"name": "canvural/php-openapi-faker",
"description": "Library to generate fake data for OpenAPI request/response/schemas.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Can Vural",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"cebe/php-openapi": "^1.7",
"fakerphp/faker": "^1.20",
"league/openapi-psr7-validator": "^0.18",
"thecodingmachine/safe": "^2.4"
},
"require-dev": {
"doctrine/coding-standard": "^11",
"ergebnis/composer-normalize": "^2.29",
"infection/infection": "^0.26",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-phpunit": "^1",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.15.2",
"spatie/phpunit-snapshot-assertions": "^4.2",
"symfony/var-dumper": "^6",
"thecodingmachine/phpstan-safe-rule": "^1.2"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Vural\\OpenAPIFaker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vural\\OpenAPIFaker\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"ocramius/package-versions": true
},
"sort-packages": true
},
"scripts": {
"codestyle": "vendor/bin/phpcs",
"phpstan": "vendor/bin/phpstan analyse --ansi",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-clover=.build/phpunit/clover.xml --coverage-html=.build/phpunit",
"test-fast": "vendor/bin/phpunit --color=always --exclude Integration",
"test-fast-coverage": "vendor/bin/phpunit --exclude Integration --coverage-clover=.build/phpunit/clover.xml --coverage-html=.build/phpunit",
"test-mutation": "vendor/bin/infection --ignore-msi-with-no-mutations --min-covered-msi=89 --min-msi=89"
}
}