This repository was archived by the owner on Aug 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.33 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.33 KB
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
{
"name": "funcards/router",
"type": "library",
"description": "Request router",
"keywords": [
"router",
"routing",
"fast-route"
],
"license": "MIT",
"authors": [
{
"name": "Igor Agapie",
"email": "igoragapie@gmail.com"
}
],
"require": {
"php": ">= 8.0",
"ext-tokenizer": "*",
"beberlei/assert": "^3.3",
"nikic/fast-route": "^1.3",
"psr/simple-cache": "^1.0",
"symfony/finder": "^5.3"
},
"require-dev": {
"doctrine/coding-standard": "^9.0",
"jetbrains/phpstorm-attributes": "^1.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12.99",
"phpstan/phpstan-beberlei-assert": "^0.12.6",
"phpstan/phpstan-deprecation-rules": "^0.12.6",
"phpstan/phpstan-phpunit": "^0.12.22",
"phpstan/phpstan-strict-rules": "^0.12.11",
"phpunit/phpunit": "^9.5",
"psr/http-server-middleware": "^1.0",
"symfony/console": "^5.3"
},
"autoload": {
"psr-4": {
"FC\\Router\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FC\\Router\\Test\\": "test/"
}
},
"scripts": {
"test:unit": "phpunit",
"test:stan": "phpstan --debug"
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}