forked from lionix-team/seo-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.03 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
{
"name": "lionix/seo-manager",
"description": "SEO Manager for Laravel Framework",
"keywords": ["laravel", "seo", "seo-manager", "lionix", "meta", "meta-data", "open-graph", "og-data"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Lionix Team",
"email": "[email protected]"
},
{
"name": "Sergey Karakhanyan",
"email": "[email protected]"
}
],
"extra": {
"laravel": {
"providers": [
"Lionix\\SeoManager\\SeoManagerServiceProvider"
],
"aliases": {
"SeoManager": "Lionix\\SeoManager\\Facades\\SeoManager"
}
}
},
"autoload": {
"psr-4": {
"Lionix\\SeoManager\\": "src"
},
"files":[
"src/helpers/helpers.php"
]
},
"minimum-stability": "dev",
"require": {
"php": "^7.0",
"illuminate/support": "5.5.* || 5.6.* || 5.7.* || 5.8.*"
}
}