-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 868 Bytes
/
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
{
"name": "smarteknoloji/smart-installer",
"description": "Smart installer for Smartek CMS & Laravel",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Fahri Meral",
"email": "fahri.meral@smarteknoloji.com",
"homepage": "https://www.smarteknoloji.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.1"
},
"autoload": {
"psr-4": {
"Smarteknoloji\\SmartInstaller\\": "src/"
},
"files": [
"src/Helpers/functions.php"
]
},
"extra": {
"laravel": {
"providers": [
"Smarteknoloji\\SmartInstaller\\Providers\\LaravelInstallerServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}