forked from eusonlito/laravel-Meta
-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
48 lines (48 loc) · 973 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "torann/laravel-meta-tags",
"keywords": [
"meta tags",
"meta",
"tags",
"head",
"laravel"
],
"description": "A package to manage Header Meta Tags",
"license": "MIT",
"authors": [
{
"name": "Lito",
"email": "lito@eordes.com"
},
{
"name": "Daniel Stainback",
"email": "daniel@lyften.com"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/http": ">=5.1",
"illuminate/support": ">=5.1"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"mockery/mockery": "^0.9.4",
"phpstan/phpstan": "^0.12.14",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Torann\\LaravelMetaTags\\": "src/Torann/LaravelMetaTags/"
}
},
"extra": {
"laravel": {
"providers": [
"Torann\\LaravelMetaTags\\MetaTagsServiceProvider"
],
"aliases": {
"MetaTag": "Torann\\LaravelMetaTags\\Facades\\MetaTag"
}
}
}
}