-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 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
44
45
46
47
48
49
{
"name": "pckg/collection",
"description": "Implementation for more human-like dealing with collections",
"homepage": "https://github.com/pckg/collection",
"license": "MIT",
"authors": [
{
"name": "Bojan Rajh",
"email": "schtr4jh@schtr4jh.net"
}
],
"require": {
"pckg/concept": "dev-master",
"ext-json": "*"
},
"require-dev": {
"pckg-app/frontend-dev": "dev-next-8.0 as dev-master",
"pckg/database": "dev-next-8.0 as dev-master",
"pckg/framework": "dev-next-8.0 as dev-master"
},
"autoload": {
"psr-0": {
"Pckg": "src\\"
},
"files": [
"src/Pckg/Collection/Helper/functions.php"
]
},
"scripts": {
"test": [
"true || vendor/bin/phpunit --help --stop-on-defect",
"true || vendor/bin/phpcloc cloc src/",
"vendor/bin/phpstan analyse src/ --level=5",
"vendor/bin/phpcs --extensions=php --warning-severity=8 --error-severity=1 --standard=PSR12 --parallel=2 -p src/",
"vendor/bin/codecept run"
],
"autofix": [
"vendor/bin/phpcs --extensions=php --report-diff=phpcs.diff --warning-severity=8 --error-severity=1 --standard=PSR12 --parallel=2 -p src/"
],
"autopatch": [
"patch -p0 -ui phpcs.diff && rm phpcs.diff"
]
},
"scripts-descriptions": {
"test": "Run all tests and quality checks"
},
"minimum-stability": "dev",
"prefer-stable": true
}