forked from lochmueller/seocli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.12 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
{
"name": "lochmueller/seocli",
"description": "SEO CLI Tool",
"type": "project",
"authors": [
{
"name": "Tim Lochmüller",
"email": "tim@fruit-lab.de"
}
],
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"require": {
"php": ">=7.1",
"ext-dom": "*",
"ext-pcntl": "*",
"guzzlehttp/guzzle": ">=5.3.3",
"league/climate": ">=3.3.0",
"league/uri": "^5.3",
"paquettg/php-html-parser": "^1.7",
"seostats/seostats": "^2.5",
"t1gor/robots-txt-parser": "^0.2.4"
},
"autoload": {
"psr-4": {
"SEOCLI\\": "src/",
"SEOstats\\": "vendor/seostats/seostats/SEOstats"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.12",
"phpmetrics/phpmetrics": "^2.4"
},
"scripts": {
"tool:php-cs-fixer": [
"php-cs-fixer fix --config .php_cs"
],
"tool:phpmetrics": [
"phpmetrics --report-html=build/metrics ."
]
},
"bin": [
"bin/seocli"
]
}