generated from Archict/brick-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.12 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
{
"name": "archict/router",
"description": "Simple HTTP router",
"type": "archict-brick",
"license": "MIT",
"autoload": {
"psr-4": {
"Archict\\Router\\": "include/"
}
},
"require": {
"php": ">= 8.2",
"archict/brick": "^1.0",
"guzzlehttp/psr7": "^2.6",
"psr/http-message": "^2.0",
"archict/core": "^1.0",
"cuyz/valinor": "^1.12",
"ext-simplexml": "*"
},
"autoload-dev": {
"psr-4": {
"Archict\\Router\\": ["tests/unit", "tests/lib"]
}
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"vimeo/psalm": "^5.22",
"phpunit/phpunit": "^10",
"squizlabs/php_codesniffer": "^3.9",
"slevomat/coding-standard": "^8.15"
},
"scripts": {
"unit-test": "phpunit --testsuite unit",
"phpstan": "phpstan analyse -c phpstan.neon",
"psalm": "psalm -c psalm.xml --no-cache",
"phpcs": "phpcs include tests"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}