-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.4 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
{
"name": "terremoth/package-name",
"description": "",
"type": "library",
"require": {
"php": "^8.1"
},
"keywords": [
"project-template"
],
"require-dev": {
"phpunit/phpunit": "^10.0",
"vimeo/psalm": "^5.0",
"nikic/php-parser": "^4.10",
"squizlabs/php_codesniffer": "*",
"phpmd/phpmd": "@stable"
},
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {
"Terremoth\\": "src/Terremoth"
}
},
"autoload-dev": {
"psr-4": {
"Terremoth\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "terremoth",
"email": "dutra.astro@gmail.com"
}
],
"minimum-stability": "stable",
"scripts": {
"fix": "vendor/bin/phpcbf",
"lint": "vendor/bin/phpcs --standard=phpcs.xml",
"analyze": "vendor/bin/psalm",
"test": "vendor/bin/phpunit tests",
"mess": "vendor/bin/phpmd src/,tests/,demos/ github cleancode,codesize,controversial,design,naming,unusedcode",
"ci": [
"@composer lint",
"@composer analyze",
"@composer mess",
"@composer test"
],
"build": [
"@composer fix",
"@composer lint",
"@composer analyze",
"@composer mess",
"@composer test"
]
}
}