-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.99 KB
/
Copy pathcomposer.json
File metadata and controls
64 lines (64 loc) · 1.99 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
{
"name": "buildotter/php-core",
"description": "Buildotter Core: Foundation to implement the Test Data Builder Pattern",
"type": "library",
"license": "GPL-3.0-or-later",
"keywords": ["php", "testing", "test", "data", "builder"],
"homepage": "https://github.com/buildotter/php-core",
"authors": [
{
"name": "Benjamin Rambaud",
"email": "beram.job@gmail.com",
"homepage": "https://brambaud.github.io/"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"symfony/var-dumper": "^6.4"
},
"suggest": {
"buildotter/php-maker-standalone": "Generate test data builder based on Buildotter Core"
},
"autoload": {
"psr-4": {
"Buildotter\\Core\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Buildotter\\Tests\\Core\\": "tests"
},
"files": [
"tests/functions.php"
]
},
"config": {
"platform": {
"php": "8.1.0"
},
"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:infection"
],
"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"
}
}