-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 977 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
36
37
38
39
40
41
42
43
{
"name": "phprtc/http-router",
"description": "PHPRTC Http Router",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Ahmad Mustapha",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"nikic/fast-route": "^1.3",
"opis/closure": "^3.6",
"phprtc/contracts": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.4",
"symfony/var-dumper": "^6.0"
},
"autoload": {
"psr-4": {
"RTC\\Http\\Router\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RTC\\Http\\Router\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "phpstan analyse",
"test": "phpunit"
},
"repositories": [
{
"type": "composer",
"url": "https://phprtc.repo.repman.io"
}
]
}