This repository has been archived by the owner on Nov 3, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.68 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
53
54
55
56
57
58
59
60
{
"name": "newelement/neutrino",
"description": "A Laravel CMS package",
"keywords": ["laravel", "cms", "admin", "shop", "ecommerce"],
"license": "MIT",
"homepage": "https://neutrinocms.com",
"support": {
"issues": "https://github.com/newelement/neutrino/issues",
"source": "https://github.com/newelement/neutrino"
},
"authors": [
{
"name": "Don Jones",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": "~6.0|~7.0|~8.0",
"intervention/image": "2.5.*",
"doctrine/dbal": "^2.5",
"ext-json": "*",
"newelement/searchable": "1.*",
"laravel/ui": "^2.0",
"league/flysystem-aws-s3-v3": "^1.0",
"newelement/laravel-calendar-event": "0.2.*",
"spatie/laravel-honeypot": "^3.0",
"arrilot/laravel-widgets": "^3.13.0",
"tormjens/eventy": "^0.7",
"kyslik/column-sortable": "^6.4"
},
"require-dev": {
"phpunit/phpcov": ">=6.0",
"phpunit/phpunit": ">=8.0",
"laravel/framework": "~6.0|~7.0|~8.0",
"orchestra/testbench": ">=4.0",
"laravel/browser-kit-testing": ">=5.0.0",
"orchestra/testbench-browser-kit": ">=4.0"
},
"autoload": {
"psr-4": {
"Newelement\\Neutrino\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Newelement\\Neutrino\\Tests\\": "tests"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Newelement\\Neutrino\\NeutrinoServiceProvider"
],
"aliases": {
"Neutrino": "Newelement\\Neutrino\\Facades"
}
}
}
}