forked from CubiclDev/php-object-graph-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.28 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
{
"name": "cubicl/php-object-graph-generator",
"description": "Create randomly populated object graphs",
"homepage": "https://github.com/cubicldev/php-object-graph-generator",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christian Blank",
"email": "[email protected]",
"homepage": "https://cubicl.de"
}
],
"minimum-stability": "beta",
"require-dev": {
"phpunit/phpunit": "^9.4",
"pestphp/pest": "^0.3.9",
"phpstan/phpstan": "^0.12.51",
"phpstan/phpstan-deprecation-rules": "^0.12.4",
"phpstan/phpstan-phpunit": "^0.12.16",
"squizlabs/php_codesniffer": "^3.5.5"
},
"scripts": {
"check": ["@analyze", "@test", "@cs-check"],
"test": "pest tests",
"analyze": "phpstan analyse --level max",
"cs-check": "phpcs --parallel=50",
"cs-fix": "phpcbf"
},
"autoload": {
"psr-4": {
"Cubicl\\ObjectGraphGenerator\\": [
"src"
],
"Cubicl\\ObjectGraphGenerator\\Tests\\": [
"tests"
]
}
},
"require": {
"php": "^7.4",
"fzaninotto/faker": "^1.9",
"symfony/property-info": ">=4"
}
}