-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
75 lines (75 loc) · 2.59 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "divineniiquaye/flight-routing",
"type": "library",
"description": "Flight routing is a simple, fast PHP router that is easy to get integrated with other routers.",
"keywords": ["router", "url routing", "php-17", "psr-15", "psr-7", "php", "biurad"],
"homepage": "https://www.divinenii.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Divine Niiquaye Ibok",
"email": "[email protected]"
}
],
"support": {
"docs": "https://docs.divinenii.com/flight-routing/",
"issues": "https://github.com/divineniiquaye/flight-routing/issues",
"rss": "https://github.com/divineniiquaye/flight-routing/releases.atom",
"source": "https://github.com/divineniiquaye/flight-routing"
},
"require": {
"php": "^8.0",
"psr/http-factory": "^1.0",
"laminas/laminas-stratigility": "^3.2",
"symfony/polyfill-php81": "^1.23"
},
"require-dev": {
"biurad/annotations": "^1.0",
"divineniiquaye/php-invoker": "^0.9",
"doctrine/annotations": "^1.11",
"nyholm/psr7": "^1.4",
"nyholm/psr7-server": "^1.0",
"pestphp/pest": "^1.21",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.5",
"spiral/attributes": "^2.9",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.23"
},
"suggest": {
"biurad/annotations": "For annotation routing on classes and methods using Annotation/Listener class",
"biurad/http-galaxy": "For handling router, an alternative is nyholm/psr7, slim/psr7 or laminas/laminas-diactoros",
"divineniiquaye/php-invoker": "For auto-configuring route handler parameters as needed with or without PSR-11 support",
"biurad/di": "For full support of PSR-11 and autowiring capabilities on routes (recommended for install).",
"laminas/laminas-httphandlerrunner": "For emitting response headers and body contents to browser"
},
"autoload": {
"psr-4": {
"Flight\\Routing\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"scripts": {
"phpcs": "phpcs -q",
"phpstan": "phpstan analyse",
"psalm": "psalm --show-info=true",
"pest": "pest --no-coverage",
"test": [
"@phpcs",
"@phpstan",
"@psalm",
"@pest"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}