-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.09 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
{
"name": "yeremi/route-mapper",
"description": "A PHP library for mapping and resolving routes using attributes.",
"license": "MIT",
"type": "library",
"keywords": [
"attributes",
"api",
"normalizer",
"route"
],
"authors": [
{
"name": "yeremi",
"email": "yeremiloli@yahoo.com"
}
],
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.65.0",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^9.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Yeremi\\RouteMapper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yeremi\\RouteMapper\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"cs-check": "@php ./vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs-fix": "@php ./vendor/bin/php-cs-fixer fix",
"phpstan": "@php ./vendor/bin/phpstan analyse src tests",
"test": "@php ./vendor/phpunit/phpunit/phpunit"
}
}