-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
55 lines (55 loc) · 1.59 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
{
"name": "arcoticsolutions/laravel-installer-with-envato",
"description": "Laravel installer with envato license verification setup",
"keywords": [
"Arcotic Solutions",
"laravel",
"laravel Installer",
"installer"
],
"homepage": "https://github.com/Arcotic-Solutions-Ltd/laravel-installer-with-envato",
"license": "MIT",
"authors": [
{
"name": "Zubair Ansari",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"jackiedo/dotenv-editor": "^2.1.0",
"illuminate/contracts": "^10.0",
"php-flasher/flasher-laravel": "^1.13",
"spatie/laravel-markdown": "^2.3",
"spatie/laravel-package-tools": "^1.14.0"
},
"autoload": {
"psr-4": {
"AbnDevs\\Installer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AbnDevs\\Installer\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"AbnDevs\\Installer\\InstallerServiceProvider",
"Jackiedo\\DotenvEditor\\DotenvEditorServiceProvider"
],
"aliases": {
"Installer": "AbnDevs\\Installer\\Facades\\Installer",
"License": "AbnDevs\\Installer\\Facades\\License",
"DotenvEditor": "Jackiedo\\DotenvEditor\\Facades\\DotenvEditor"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true
}