-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.41 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
{
"name": "chiron/chiron",
"type": "library",
"description": "Chiron is a PHP micro framework",
"keywords": ["framework","micro","microframework","router"],
"homepage": "https://github.com/ncou/Chiron",
"license": "MIT",
"require": {
"php": "^8.0|^8.1",
"ext-json": "*",
"ext-xml": "*",
"ext-mbstring": "*",
"ext-intl": "*",
"chiron/core": "^1.0",
"chiron/security": "^1.0",
"chiron/discover": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^0.12.0",
"phpstan/phpstan-phpunit": "^0.12",
"chiron/coding-standard": "^3.0",
"filp/whoops": "^2.2",
"nyholm/psr7": "^1.4"
},
"suggest": {
"filp/whoops": "Enables use of the debug displayer."
},
"autoload": {
"psr-4": {
"Chiron\\": "src/"
}
},
"autoload-dev" : {
"psr-4": {
"Chiron\\Tests\\" : "tests/"
}
},
"scripts": {
"test": [
"@phpunit",
"@phpstan",
"@check-style"
],
"phpunit": "phpunit --colors=always",
"test-coverage": "phpunit --coverage-clover clover.xml",
"phpstan": "phpstan analyse --ansi",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
},
"minimum-stability": "dev",
"prefer-stable": true
}