-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
executable file
·52 lines (52 loc) · 1.34 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": "rareloop/router",
"description": "A powerful PHP Router for PSR7 messages inspired by the Laravel API",
"keywords": [
"rareloop",
"router"
],
"homepage": "https://github.com/rareloop/router",
"license": "MIT",
"authors": [
{
"name": "Joe Lambert",
"email": "[email protected]",
"homepage": "https://rareloop.com",
"role": "Developer"
}
],
"require": {
"php": "^7.3||^8.0",
"altorouter/altorouter": "^2.0.2",
"mindplay/middleman": "^3.0.3",
"php-di/invoker": "^2.3.0",
"psr/container": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"spatie/macroable": "^1.0",
"laminas/laminas-diactoros": "^2.4"
},
"require-dev": {
"php-di/php-di": "^6.3.4",
"phpunit/phpunit": "^9.5",
"php-coveralls/php-coveralls": "^2.4",
"mockery/mockery": "^1.4.3",
"squizlabs/php_codesniffer": "^3.6.0"
},
"autoload": {
"psr-4": {
"Rareloop\\Router\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rareloop\\Router\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}