-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 963 Bytes
/
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
{
"name": "tempest/router",
"description": "A package for routing HTTP requests and responses.",
"license": "MIT",
"minimum-stability": "dev",
"require": {
"php": "^8.4",
"tempest/core": "dev-main",
"tempest/clock": "dev-main",
"tempest/console": "dev-main",
"tempest/http": "dev-main",
"tempest/view": "dev-main",
"tempest/mapper": "dev-main",
"tempest/container": "dev-main",
"tempest/highlight": "^2.11.2",
"laminas/laminas-diactoros": "^3.3",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0|^2.0",
"symfony/var-exporter": "^7.1",
"symfony/uid": "^7.1"
},
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"Tempest\\Router\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tempest\\Router\\Tests\\": "tests"
}
}
}