-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.75 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
{
"name": "arcanum-org/framework",
"description": "A robust CQRS framework for building powerful applications.",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^10.1",
"phpstan/phpstan": "^1.10",
"php-coveralls/php-coveralls": "^2.5",
"squizlabs/php_codesniffer": "^3.7",
"phpmetrics/phpmetrics": "^2.8"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Arcanum\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Arcanum\\Test\\": "tests/"
}
},
"authors": [
{
"name": "Stephen Young",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.2",
"psr/container": "^2.0",
"psr/event-dispatcher": "^1.0",
"psr/http-message": "^2.0",
"psr/http-server-handler": "^1.0",
"vlucas/phpdotenv": "^5.5",
"symfony/finder": "^6.3 || ^7.0",
"monolog/monolog": "^3.4",
"voku/portable-ascii": "^2.0"
},
"scripts": {
"post-install-cmd": [
"bash contrib/setup"
],
"check": [ "@cs-fix", "@cs-check", "@phpstan", "@phpunit" ],
"cs-check": "bash contrib/cs-check",
"cs-fix": "phpcbf --colors --standard=./contrib/phpcs-ruleset.xml --ignore=.coverage,.phpunit.cache",
"phpstan": "bash contrib/phpstan",
"phpunit": "phpunit --colors=always --coverage-html=tests/.coverage --coverage-clover=tests/.coverage/clover.xml --log-junit=tests/.coverage/junit.xml --configuration=contrib/phpunit.xml --display-warnings",
"metrics": "phpmetrics --report-html=.metrics --junit=tests/.coverage/junit.xml --git=/usr/bin/git ./src"
}
}