-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.67 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.67 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
{
"name": "rushlow-development/dev-apps",
"description": "One off apps to help with development",
"type": "project",
"license": "Apache-2.0",
"authors": [
{
"name": "Jesse Rushlow",
"email": "jr@rushlow.dev"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.3",
"symfony/console": "^7.0",
"symfony/filesystem": "^7.0",
"symfony/process": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
"RushlowDevelopment\\DevApps\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RushlowDevelopment\\Test\\": "tests/"
}
},
"bin":["bin/dev-apps"],
"scripts": {
"tools:panther:drivers": "vendor/bin/bdi detect drivers",
"tools:upgrade": {
"tools:upgrade:php-cs-fixer": "composer upgrade -d tools/php-cs-fixer",
"tools:upgrade:phpstan": "composer upgrade -d tools/phpstan",
"tools:upgrade:rector": "composer upgrade -d tools/rector",
"tools:upgrade:twigcs": "composer upgrade -d tools/twigcs"
},
"tools:run": [
"@tools:run:rector",
"@tools:run:php-cs-fixer",
"@tools:run:phpstan",
"@tools:run:twigcs"
],
"tools:run:rector": "tools/rector/vendor/bin/rector process --clear-cache",
"tools:run:php-cs-fixer": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix",
"tools:run:phpstan": "tools/phpstan/vendor/bin/phpstan --memory-limit=1G",
"tools:run:twigcs": "tools/twigcs/vendor/bin/twigcs --config .twigcs.dist.php"
}
}