-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.09 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
{
"name": "rebelinblue/fluent-web-crawler",
"description": "A web crawler with a fluent interface",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Stephen Ball",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0",
"fabpot/goutte": "^3.2"
},
"require-dev": {
"codeclimate/php-test-reporter": "^0.4.4",
"friendsofphp/php-cs-fixer": "^2.16",
"php-parallel-lint/php-console-highlighter": "^0.4",
"php-parallel-lint/php-parallel-lint": "^1.2",
"larapack/dd": "^1.1",
"phpmd/phpmd": "^2.8",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"REBELinBLUE\\Crawler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"REBELinBLUE\\Crawler\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin",
"preferred-install": "dist",
"sort-packages": true
}
}