-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 2.19 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 2.19 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
63
64
65
66
67
68
69
70
71
{
"name": "buildotter/php-maker-standalone-src",
"description": "Generate test data builder based on Buildotter Core",
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Benjamin Rambaud",
"email": "beram.job@gmail.com"
}
],
"require": {
"php": "^8.4",
"nette/php-generator": "^4.1",
"roave/better-reflection": "^6.70",
"symfony/console": "^7.4",
"symfony/filesystem": "^7.4"
},
"require-dev": {
"buildotter/php-core": "dev-main",
"fakerphp/faker": "^1.24",
"phpstan/phpstan": "^2",
"phpstan/phpstan-phpunit": "^2",
"phpstan/phpstan-strict-rules": "^2",
"phpstan/phpstan-symfony": "^2",
"rector/rector": "^2"
},
"autoload": {
"psr-4": {
"Buildotter\\MakerStandalone\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Buildotter\\Tests\\MakerStandalone\\": "tests"
},
"files": [
"tests/functions.php"
]
},
"config": {
"platform": {
"php": "8.4.1"
},
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"tools:clean": "git ls-files --others --ignored --exclude-from=.gitignore --exclude-per-directory=.gitignore --directory | awk -v quote='\"' -v OFS=\"\" '!/.idea/ {print quote,$$0,quote}' | xargs rm -rf",
"tools:run": [
"@tools:run:php-cs-fixer",
"@tools:run:phpunit",
"@tools:run:phpstan",
"@tools:run:compile",
"@tools:run:e2e"
],
"tools:run:phpunit": "tools/phpunit.phar",
"tools:run:php-cs-fixer": "tools/php-cs-fixer fix",
"tools:run:phpstan": "vendor/bin/phpstan",
"tools:run:infection": "tools/infection -s",
"tools:run:compile": "tools/box compile",
"tools:run:downgrade": "bash ./tools/downgrade.sh",
"tools:run:compile-downgraded": [
"@tools:run:downgrade",
"@tools:run:compile"
],
"tools:run:e2e": "bash ./e2e/run.sh"
}
}