-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.13 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": "andrew-svirin/resource-crawler-bundle",
"description": "Crawler for any sort of resources.",
"keywords": [
"symfony",
"symfony bundle",
"crawler",
"PHP",
"spider",
"spiderbot",
"spider bot",
"internet bot",
"internet"
],
"type": "symfony-bundle",
"require": {
"php": ">=8.1",
"ext-dom": "*",
"ext-libxml": "*",
"symfony/framework-bundle": "^6.1",
"symfony/http-client": "^6.1",
"symfony/lock": "^6.1",
"symfony/yaml": "^6.1"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.7",
"doctrine/orm": "^2.13",
"phpmd/phpmd": "^2.13",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.5",
"sebastian/phpcpd": "^6.0",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"AndrewSvirin\\ResourceCrawlerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AndrewSvirin\\ResourceCrawlerBundle\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Andrew Svirin"
}
],
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}