-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.13 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
{
"name": "militer/laravel-template",
"description": "Laravel basic template by MILITER.",
"keywords": ["laravel"],
"license": "MIT",
"support": {
"issues": "https://github.com/htmlcssjspro/laravel-template/issues",
"source": "https://github.com/htmlcssjspro/laravel-template"
},
"authors": [
{
"name": "Sergei MILITER",
"email": "militer@htmlcssjs.pro"
}
],
"require": {
"php": "^8.0.2",
"illuminate/console": "^9.21",
"illuminate/filesystem": "^9.21",
"illuminate/support": "^9.21",
"illuminate/validation": "^9.21"
},
"conflict": {
"laravel/framework": "<9.19.0"
},
"autoload": {
"psr-4": {
"Militer\\Template\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"laravel": {
"providers": [
"Militer\\Template\\TemplateServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}