-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 2.18 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 2.18 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
{
"name": "enabel/coding-standard-bundle",
"description": "Enabel bundle that provide coding standard and dev helpers",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Damien Lagae",
"email": "damien.lagae@enabel.be"
}
],
"require": {
"php": "^8.3",
"ergebnis/composer-normalize": "^2.29",
"symfony/config": "^7.0 || ^8.0",
"symfony/dependency-injection": "^7.0 || ^8.0",
"symfony/framework-bundle": "^7.0 || ^8.0"
},
"require-dev": {
"phpro/grumphp": "^2.17",
"phpunit/phpunit": "^12.4.2"
},
"suggest": {
"dama/doctrine-test-bundle": "Isolates database transactions for each test.",
"phpro/grumphp": "Configure and run Git hooks to check code quality before committing.",
"zenstruck/foundry": "Easily create fake objects for testing."
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Enabel\\CodingStandardBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Enabel\\CodingStandardBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"symfony/flex": true
},
"sort-packages": true
},
"scripts": {
"csf": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff",
"csf-fix": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix",
"fix": [
"@cs-fix"
],
"qa": [
"@cs",
"@stan",
"@test"
],
"stan": "tools/phpstan/vendor/bin/phpstan analyse -c phpstan.neon --no-interaction",
"test": "vendor/bin/phpunit -d memory_limit=-1 --stop-on-failure --testdox"
},
"scripts-descriptions": {
"csf": "Run PHPCsFixer with PSR12 standard",
"csf-fix": "Fix with PHPCsFixer",
"fix": "Run fixer",
"qa": "Run static analysis tools & test",
"stan": "Run PHPStan",
"test": "Run the PHPUnit tests"
}
}