forked from bramus/router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.03 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
{
"name": "amireshoon/router",
"description": "A lightweight and simple object oriented PHP Router Based on Bramus library",
"keywords": ["router", "routing"],
"homepage": "https://github.com/amireshoon/router",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Bram(us) Van Damme",
"email": "[email protected]",
"homepage": "http://www.bram.us"
},
{
"name": "Amirhossein Meydani",
"email": "[email protected]",
"homepage": "https://amirhwsin.ir"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"phpunit/php-code-coverage": "~2.0",
"friendsofphp/php-cs-fixer": "~2.14"
},
"autoload": {
"classmap": ["src/"]
},
"scripts": {
"test": "./vendor/bin/phpunit --colors=always",
"lint": "php-cs-fixer fix --diff --dry-run",
"fix": "php-cs-fixer fix"
}
}