-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
59 lines (59 loc) · 1.38 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
56
57
58
59
{
"name": "mad-web/laravel-seoable",
"description": "Easy to map your eloquent fields to seo properties",
"type": "library",
"keywords": [
"mad-web",
"laravel-seoable",
"seo",
"seotools",
"opengraph",
"twitter-card",
"webmasters",
"metatags"
],
"homepage": "https://github.com/mad-web/laravel-seoable",
"license": "MIT",
"authors": [
{
"name": "Mad Web",
"email": "[email protected]",
"homepage": "https://github.com/mad-web",
"role": "Developer"
}
],
"require": {
"php": "~7.0",
"illuminate/support": "~5.5.0|~5.6.0",
"illuminate/database": "~5.5.0|~5.6.0",
"artesaos/seotools": "^0.12.0"
},
"require-dev": {
"mockery/mockery": "^1.0.0",
"orchestra/testbench": "~3.5.0|~3.6.0",
"phpunit/phpunit": "^6.5|^7.0"
},
"autoload": {
"psr-4": {
"MadWeb\\Seoable\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MadWeb\\Seoable\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"MadWeb\\Seoable\\SeoableServiceProvider"
]
}
}
}