OSDN Git Service

enhance phpunit.xml and fix some tests
[php-libraries/Router.git] / composer.json
1 {
2   "name": "dannyvankooten/php-router",
3   "description": "Simple PHP Router, supports REST and reverse routing.",
4   "keywords": [
5     "router",
6     "routing",
7     "rest"
8   ],
9   "homepage": "https://github.com/dannyvankooten/PHP-Router",
10   "license": "MIT",
11   "authors": [
12     {
13         "name": "Danny van Kooten",
14         "email": "dannyvankooten@gmail.com",
15         "homepage": "http://dannyvankooten.com/"
16     },
17     {
18         "name": "Jefersson Nathan",
19         "email": "malukenho@phpse.net"
20     }
21   ],
22   "require": {
23     "php": ">=5.3.0"
24   },
25   "require-dev": {
26     "phpunit/phpunit": "4.8.*"
27   },
28   "autoload": {
29     "psr-0": {
30         "PHPRouter": "src/"
31     }
32   }
33 }