-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 833 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 833 Bytes
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
{
"name": "access-manager/access-manager",
"description": "The Hotspot Management System",
"keywords": ["access manager","wifi", "hotspot", "mikrotik"],
"license": "MIT",
"type": "project",
"homepage": "http://accessmanager.in",
"require": {
"php": ">=5.6.4",
"access-manager/base": "3.*"
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}