-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
composer.json
62 lines (62 loc) · 1.74 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
62
{
"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",
"netresearch/jsonmapper": "^4.4"
},
"autoload": {
"psr-4": {
"CoenJacobs\\Mozart\\": "src/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-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",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "dev-develop"
},
"scripts": {
"test": [
"@test:lint",
"@test:phpunit",
"@test:phpstan"
],
"test:lint": [
"composer validate",
"./vendor/bin/phpcs --standard=phpcs.xml.dist"
],
"test:phpunit": [
"./vendor/bin/phpunit -c phpunit.xml.dist"
],
"test:phpstan": [
"./vendor/bin/phpstan analyse -c phpstan.neon.dist --memory-limit=2G"
]
}
}