forked from arrilot/laravel-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1014 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
{
"name": "arrilot/laravel-widgets",
"description": "A powerful alternative to view composers. Asynchronous widgets, reloadable widgets, console generator, caching - everything you can think of.",
"license": "MIT",
"keywords": ["laravel", "widgets", "ajax"],
"authors": [
{
"name": "Nekrasov Ilya",
"email": "[email protected]"
}
],
"homepage": "https://github.com/Arrilot/laravel-widgets",
"require": {
"php": ">=5.5.9",
"illuminate/support": ">=5.1",
"illuminate/contracts": ">=5.1",
"illuminate/view": ">=5.1",
"illuminate/container": ">=5.1",
"illuminate/console": ">=5.1",
"illuminate/routing": ">5.1"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"Arrilot\\Widgets\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Arrilot\\Widgets\\Test\\": "tests"
}
}
}