-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 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
{
"name": "danbettles/marigold",
"description": "Marigold is a small set of tools that aims to make building simple websites easier while remaining close to the metal and adding minimal overheads; it is not a framework.",
"type": "library",
"license": "ISC",
"authors": [
{
"name": "Daniel Bettles",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.1.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5",
"danbettles/codesniffer-standard": "^2.0",
"phpstan/phpstan": "^1.8"
},
"autoload": {
"psr-4": {"DanBettles\\Marigold\\": "src/"}
},
"autoload-dev": {
"psr-4": {"DanBettles\\Marigold\\Tests\\": "tests/src/"}
},
"scripts": {
"app:test": "phpunit",
"app:lint": "phpcs --standard=phpcs.xml",
"app:analyse": "phpstan analyse -c phpstan.neon",
"app:check-quality": [
"@app:test",
"@app:lint",
"@app:analyse"
]
},
"scripts-descriptions": {
"app:test": "Runs all automated tests.",
"app:lint": "Lints the PHP.",
"app:analyse": "Performs static analysis on the PHP.",
"app:check-quality": "Runs all automated tests; lints all the code; performs static analysis on the PHP."
}
}