-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 1.97 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
76
{
"name": "aphiria/router",
"description": "The Aphiria router library",
"keywords": [
"PHP",
"router",
"routing",
"matching"
],
"authors": [
{
"name": "David Young",
"email": "[email protected]",
"role": "Architect"
}
],
"homepage": "https://www.aphiria.com",
"license": "MIT",
"support": {
"docs": "https://www.aphiria.com/docs/1.x/introduction.html",
"forum": "https://github.com/aphiria/aphiria/discussions",
"issues": "https://github.com/aphiria/aphiria/issues",
"source": "https://github.com/aphiria/aphiria"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/davidbyoung"
}
],
"autoload": {
"psr-4": {
"Aphiria\\Routing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aphiria\\Routing\\Tests\\": "tests"
}
},
"require": {
"aphiria/reflection": "1.x-dev",
"ext-ctype": "*",
"ext-mbstring": "*",
"php": "^8.4"
},
"require-dev": {
"aphiria/api": "1.x-dev",
"aphiria/middleware": "1.x-dev",
"friendsofphp/php-cs-fixer": "^3.5",
"nikic/fast-route": "1.2",
"phpunit/phpunit": "^11.5-dev",
"symfony/routing": "^7.0"
},
"scripts": {
"phpcs-test": "@phpcs-fix --dry-run",
"phpcs-fix": "php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --diff",
"phpunit": "php vendor/phpunit/phpunit/phpunit --coverage-clover ./.coverage/clover.xml",
"test": [
"@phpunit",
"@phpcs-test"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev"
}