-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.42 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.42 KB
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
{
"name": "pckg/queue",
"description": "Queue, cronjobs and tasks simplified",
"homepage": "https://github.com/pckg/queue",
"license": "MIT",
"authors": [
{
"name": "Bojan Rajh",
"email": "schtr4jh@schtr4jh.net"
}
],
"require": {
"php-amqplib/php-amqplib": "2.*",
"ext-json": "*"
},
"require-dev": {
"pckg-app/frontend-dev": "dev-master",
"pckg/database": "dev-master",
"pckg/framework": "dev-master",
"pckg/migrator": "dev-master",
"pckg/manager": "dev-master",
"nesbot/carbon": "2.*",
"pda/pheanstalk": "^4.0"
},
"autoload": {
"psr-4": {
"": [
"src/"
]
}
},
"scripts": {
"test": [
"true || vendor/bin/phpunit --help --stop-on-defect",
"true || vendor/bin/phpcloc cloc src/",
"vendor/bin/phpstan analyse src/ --level=1",
"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
}