-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 855 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 855 Bytes
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
{
"name": "riesenia/cakephp-routing",
"description": "CakePHP plugin for routing by attributes",
"keywords": ["cakephp", "attributes", "routing"],
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"cakephp/cakephp": "^5.0.1",
"php": "^8.1",
"kcs/class-finder": "^0.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^10.1",
"rshop/php-cs-fixer-config": "^3.0"
},
"autoload": {
"psr-4": {
"Riesenia\\Routing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Riesenia\\Routing\\Test\\": "tests/",
"Riesenia\\Routing\\App\\": "tests/test_app/src/",
"Riesenia\\Core\\": "tests/test_app/plugins/core/src/"
}
}
}