forked from eyecatchup/SEOstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.2 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
{
"name" : "seostats/seostats",
"type" : "library",
"description" : "SEOstats is a powerful open source PHP library to request a bunch of SEO relevant metrics for any website.",
"keywords" : [
"SEO",
"SEOStats",
"SEO-Stats",
"Pagerank",
"Backlinks",
"Google",
"Mozscape",
"SEOmoz",
"Sistrix",
"Open Site Explorer",
"SEMRush",
"Alexa"
],
"homepage" : "http://github.com/eyecatchup/SEOstats",
"license" : "MIT",
"authors" : [{
"name" : "Stephan Schmitz",
"email" : "eyecatchup@gmail.com",
"homepage" : "https://github.com/eyecatchup",
"role" : "Creator, Developer, Maintainer"
}, {
"name" : "SEOstats Community",
"homepage" : "https://github.com/eyecatchup/seostats/contributors",
"role" : "Contributor, Developer"
}
],
"require" : {
"php" : ">=5.3",
"ext-curl" : "*",
"ext-json" : "*"
},
"require-dev" : {
"squizlabs/php_codesniffer" : "~1",
"composer/composer": "1.0.*@dev",
"phpunit/phpunit" : ">=3.7,<4",
"scrutinizer/ocular" : "~1"
},
"autoload" : {
"psr-0" : {
"SEOstats\\" : ""
},
"classmap" : [
"SEOstats/Services/3rdparty"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.5-dev"
}
}
}