-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.66 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "stellarwp/pup",
"description": "StellarWP's Project Utilities & Packager",
"authors": [
{
"name": "StellarWP",
"email": "[email protected]"
}
],
"platform": {
"php": "7.2"
},
"bin": [
"pup"
],
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"require": {
"composer/composer": "*",
"php": "^7.2|^8.0",
"symfony/process": "^5.4",
"symfony/console": "^5.4",
"symfony/filesystem": "^5.4",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10.0",
"codeception/codeception": "^4.2",
"codeception/module-phpbrowser": "^2.0.3",
"codeception/module-asserts": "^2.0.1",
"codeception/module-cli": "^2.0",
"lucatume/codeception-snapshot-assertions": "^0.2.4"
},
"autoload": {
"psr-4": {
"StellarWP\\Pup\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"StellarWP\\Pup\\Tests\\Helper\\": "tests/_support/Helper/",
"StellarWP\\Pup\\Tests\\Cli\\": "tests/cli/"
}
},
"scripts": {
"build-phar": [
"test -f ./bin/box.phar || curl -o bin/box.phar -L -C - https://github.com/box-project/box/releases/download/3.16.0/box.phar",
"@php bin/box.phar build"
],
"cr": [
"vendor/bin/codecept run "
],
"test:analysis": [
"phpstan analyse -c phpstan.neon.dist --memory-limit=512M"
]
},
"scripts-descriptions": {
"test:analysis": "Run PHPStan static code analysis"
}
}