-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
34 lines (34 loc) · 917 Bytes
/
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
{
"name" : "luthier/luthier",
"type" : "library",
"description": "Improved routing, middleware support, authentication tools and more for CodeIgniter 3 framework",
"license" : "MIT",
"homepage" : "https://luthier.ingenia.me/ci/en/",
"authors": [
{
"name" : "Anderson Salas",
"email" : "anderson@ingenia.me",
"homepage": "https://ingenia.me",
"role" : "Lead developer"
}
],
"keywords": [
"codeigniter", "routing", "middleware", "luthier"
],
"minimum-stability": "stable",
"require": {
"php" : ">=5.6.0",
"maximebf/debugbar": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "7"
},
"support": {
"email": "anderson@ingenia.me"
},
"autoload": {
"psr-4": {
"Luthier\\": "src/"
}
}
}