-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
41 lines (41 loc) · 941 Bytes
/
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
{
"name": "xurumelous/torrent-scraper",
"description": "Provide an abstraction to seach for torrent files on many websites.",
"keywords": [
"torrent",
"piratebay",
"kickass"
],
"license": "MIT",
"homepage": "https://github.com/xurumelous/torrent-scraper",
"authors": [
{
"name": "Fernando Carletti",
"email": "[email protected]",
"homepage": "http://fernandocarletti.net",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"ext-curl": "*",
"guzzlehttp/guzzle": "~6.3",
"symfony/dom-crawler": "~4.2",
"symfony/css-selector": "~4.2"
},
"require-dev": {
"phpunit/phpunit": "~8.1",
"symfony/var-dumper": "~4.2",
"squizlabs/php_codesniffer": "~3.4"
},
"autoload": {
"psr-4": {
"Xurumelous\\TorrentScraper\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Xurumelous\\TorrentScraper\\": "tests"
}
}
}