-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 976 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
35
36
37
38
39
{
"name": "itvisionsy/laravel-modules",
"description": "Laravel 5.1 library to allow modules structure. Each module can have its routes, controllers, views, config, ...",
"type": "library",
"keywords": [
"modules",
"laravel"
],
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.1.*",
"nette/reflection": "^2.4"
},
"license": "MIT",
"authors": [
{
"name": "Muhannad Shelleh",
"email": "muhannad.shelleh@gmail.com"
}
],
"autoload": {
"psr-4": {
"ItvisionSy\\Laravel\\Modules\\": "src"
}
},
"autoload-dev": {
"classmap": [
"tests/LaravelModulesTestCase.php"
],
"psr-4": {
"ItvisionSy\\Laravel\\Modules\\Tests\\": "tests/",
"App\\": "app/"
}
},
"require-dev": {
"laravel/laravel": "^5.1",
"phpunit/phpunit": "^5.7"
}
}