-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
56 lines (56 loc) · 1.61 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": "terminal42/escargot",
"description": "A web crawler or spider library based on Symfony components",
"type": "library",
"license": "MIT",
"keywords": ["escargot", "index", "search", "crawl", "spider"],
"homepage": "https://www.terminal42.ch",
"authors": [
{
"name": "Yanick Witschi",
"homepage": "https://github.com/toflar",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/terminal42/escargot"
},
"require": {
"php": "^8.1",
"ext-simplexml": "*",
"nyholm/psr7": "^1.1",
"psr/http-message": "^1.0 || ^2.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"symfony/clock": "^6.2 || ^7.0",
"symfony/dom-crawler": "^5.4 || ^6.0 || ^7.0",
"symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
"symfony/http-client": "^5.4 || ^6.0 || ^7.0",
"webignition/robots-txt-file": "^3.0"
},
"require-dev": {
"doctrine/dbal": "^3.6",
"fig/log-test": "^1.0",
"symfony/finder": "^5.4|| ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0",
"terminal42/contao-build-tools": "@dev"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"terminal42/contao-build-tools": true
}
},
"autoload": {
"psr-4": {
"Terminal42\\Escargot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Terminal42\\Escargot\\Tests\\": "tests/"
}
}
}