-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
72 lines (72 loc) · 1.72 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
63
64
65
66
67
68
69
70
71
72
{
"name": "medunes/noise-php",
"description": "A quick skeleton project starter with frequently needed boiler-plate setups (ci, badges, etc.)",
"keywords": [
"skeleton",
"starter",
"education",
"noise",
"build",
"github-action",
"ci",
"phpstan",
"sonarcloud",
"sonarqube",
"psalm",
"deployment",
"phpunit",
"github",
"open-source"
],
"homepage": "http://github.com/medunes/noise-php",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "medunes",
"email": "[email protected]",
"homepage": "http://medunes.net"
}
],
"require": {
"php": ">=7.2"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"Noise\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Noise\\Tests\\": "tests/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"pdepend/pdepend": "^2.8",
"phpmd/phpmd": "^2.9",
"phpstan/phpstan": "^0.12.58",
"phpunit/phpunit": "^9.4",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.2"
},
"scripts": {
"setup:clean": "rm -f composer.lock && rm -rf vendor/ && composer clearcache && composer update --no-interaction --prefer-dist --no-suggest --no-progress",
"phpcs:scan": "php vendor/bin/phpcs --colors -ps --report=summary",
"phpcs:fix": "php vendor/bin/phpcbf",
"build:phpunit": "php vendor/bin/phpunit -c phpunit.xml --coverage-clover coverage.xml",
"build:phpstan": [
"phpstan analyze src --level=5 --configuration=phpstan.neon"
],
"build:psalm": "vendor/bin/psalm",
"build": [
"@build:phpunit",
"@build:phpstan",
"@build:psalm"
]
}
}