-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.37 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
46
{
"name": "symfonycasts/internal-test-helpers",
"description": "Internal tooling for SymfonyCasts - Do not use",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jesse Rushlow",
"email": "jr@rushlow.dev"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"symfony/process": "^6.4|^7.0",
"symfony/filesystem": "^6.4|^7.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.4.1|^7.0"
},
"autoload": {
"psr-4": {
"SymfonyCasts\\InternalTestHelpers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SymfonyCasts\\InternalTestHelpers\\Tests\\": "tests/",
"SymfonyCasts\\InternalFixtures\\": "testBundle/src/"
}
},
"scripts": {
"tools:upgrade": [
"@tools:upgrade:php-cs-fixer",
"@tools:upgrade:phpstan"
],
"tools:upgrade:php-cs-fixer": "composer upgrade -W -d tools/php-cs-fixer",
"tools:upgrade:phpstan": "composer upgrade -W -d tools/phpstan",
"tools:run": [
"@tools:run:php-cs-fixer",
"@tools:run:phpstan"
],
"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"
}
}