-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·57 lines (57 loc) · 1.45 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
{
"name": "renventura/wp-package-parser",
"authors": [
{
"name": "Ren Ventura",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": "^8.0",
"erusev/parsedown": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^1.11",
"squizlabs/php_codesniffer": "^3.10"
},
"autoload": {
"psr-4": {
"RenVentura\\WPPackageParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RenVentura\\WPPackageParser\\Tests\\": "tests/"
}
},
"scripts": {
"fix:standards": [
"./vendor/bin/phpcbf ./src ./tests"
],
"test": [
"@test:all"
],
"test:all": [
"@test:analysis",
"@test:standards",
"@test:unit"
],
"test:analysis": [
"./vendor/bin/phpstan analyse -c phpstan.neon.dist --memory-limit=768M"
],
"test:standards": [
"./vendor/bin/phpcs ./src ./tests"
],
"test:unit": [
"./vendor/bin/phpunit --testdox --verbose --color=always"
]
},
"scripts-descriptions": {
"test:all": "Run all automated tests.",
"test:analysis": "Perform static code analysis.",
"test:standards": "Check coding standards.",
"test:unit": "Run all of the PHPUnit test suites."
}
}