-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathcomposer.json
58 lines (58 loc) · 1.43 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
{
"name": "coenjacobs/mozart",
"description": "Composes all dependencies as a package inside a WordPress plugin",
"authors": [
{
"name": "Coen Jacobs",
"email": "[email protected]"
}
],
"bin": ["bin/mozart"],
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"require": {
"php": "^8.0"
},
"autoload": {
"psr-4": {
"CoenJacobs\\Mozart\\": "src/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"platform": {
"php": "8.0"
}
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.10",
"mheap/phpunit-github-actions-printer": "^1.5",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/extension-installer": "^1.4",
"league/flysystem": "^2.5",
"symfony/console": "^5.4",
"symfony/finder": "^5.4"
},
"scripts": {
"test": [
"@test:lint",
"@test:phpunit",
"@test:phpstan"
],
"test:lint": [
"composer validate",
"./vendor/bin/phpcs"
],
"test:phpunit": [
"./vendor/bin/phpunit"
],
"test:phpstan": [
"./vendor/bin/phpstan --memory-limit=2G"
]
}
}