-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.67 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
{
"name": "sixty-nine/timesheep",
"description": "Timesheep",
"type": "project",
"license": "UNLICENSE",
"require": {
"php" : "^7.4",
"webmozart/assert": "^1.4",
"vlucas/phpdotenv": "^3.4",
"monolog/monolog": "^1.24",
"doctrine/dbal": "^2.9",
"doctrine/orm": "^2.6",
"symfony/console": "^4.3",
"symfony/dependency-injection": "^4.3",
"myclabs/deep-copy": "^1.9",
"league/flysystem": "^1.0",
"symfony/cache": "^5.4",
"doctrine/annotations": "^1.13",
"symfony/process": "^4.3",
"symfony/config": "^4.3",
"symfony/yaml": "^4.3"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^8.2",
"squizlabs/php_codesniffer": "~3.4",
"phpstan/phpstan": "^0.12",
"behat/behat": "^3.5"
},
"autoload": {
"psr-4": {
"SixtyNine\\": "src/SixtyNine/"
}
},
"scripts": {
"check:all": "/bin/sh build/check-all.sh",
"check:stan": "vendor/bin/phpstan analyse src -c .phpstan.neon --level max",
"check:lint": "vendor/bin/phpcs src --standard=PSR2",
"check:lint:fix": "vendor/bin/phpcbf --standard=PSR2 src",
"test": "vendor/bin/phpunit -c tests --colors=always",
"test:unit": "vendor/bin/phpunit -c tests --testsuite Unit --colors=always",
"test:debug": "vendor/bin/phpunit -c tests --colors=always --stop-on-error --stop-on-failure",
"test:coverage": "/bin/sh build/generate-coverage.sh"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}