-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
57 lines (57 loc) · 1.46 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
{
"name": "idavoll/core-module",
"type": "asgard-module",
"description": "The core module for AsgardCMS. This is required for every install.",
"keywords": [
"asgardcms",
"core"
],
"license": "MIT",
"authors": [
{
"name": "Nicolas Widart",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/AsgardCms/Platform/issues",
"source": "https://github.com/AsgardCms/Core"
},
"require": {
"php": ">=7.0.0",
"composer/installers": "~1.0",
"nwidart/laravel-modules": "~2.0",
"laravelcollective/html": "~5.5.0",
"laracasts/presenter": "~0.2",
"dimsav/laravel-translatable": "~8.0",
"mcamara/laravel-localization": "~1.1",
"floatingpoint/stylist": "~0.5",
"maatwebsite/laravel-sidebar": "~2.1",
"yajra/laravel-datatables-oracle": "~8.0",
"tightenco/ziggy": "~0.4"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"orchestra/testbench": "3.5.*",
"mockery/mockery": "^0.9.4",
"friendsofphp/php-cs-fixer": "^2.6"
},
"suggest": {
"asgardcms/notification-module": "Allows notifications to be sent to the user. Optionally real-time notifications."
},
"autoload-dev": {
"psr-4": {
"Modules\\Core\\": ".",
"Modules\\": "Modules/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}