-
Notifications
You must be signed in to change notification settings - Fork 113
/
composer.json
52 lines (52 loc) · 1.44 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"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": ">=7.4",
"illuminate/support": ">=9",
"illuminate/contracts": ">=9",
"illuminate/view": ">=9",
"illuminate/container": ">=9",
"illuminate/console": ">=9",
"illuminate/cache": ">=9",
"illuminate/routing": ">=9"
},
"require-dev": {
"phpunit/phpunit": "~8.0",
"nunomaduro/larastan": "^2.6"
},
"autoload": {
"psr-4": {
"Arrilot\\Widgets\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Arrilot\\Widgets\\Test\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Arrilot\\Widgets\\ServiceProvider"
],
"aliases": {
"Widget": "Arrilot\\Widgets\\Facade",
"AsyncWidget": "Arrilot\\Widgets\\AsyncFacade"
}
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "phpunit"
}
}