-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.43 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.43 KB
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
57
58
59
60
61
62
63
64
{
"name": "eboubaker/scraper",
"description": "CLI based Web Media-Scraper",
"type": "project",
"version": "0.1.1",
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-mbstring": "*",
"ext-zend-opcache": "*",
"ext-parallel": "*",
"ext-fileinfo": "*",
"amphp/parallel": "^1.4",
"guzzlehttp/guzzle": "^7.4",
"symfony/dom-crawler": "v5.4.3",
"php-ffmpeg/php-ffmpeg": "^0.19.0",
"tightenco/collect": "^8.81",
"symfony/css-selector": "v5.4.3",
"symfony/var-dumper": "v5.4.2",
"vanilla/garden-cli": "^3.1",
"symfony/polyfill-php80": "^1.24",
"ralouphie/mimey": "^2.1",
"monolog/monolog": "^2.3",
"eboubaker/json-finder": "*",
"adhocore/cli": "v0.9.0"
},
"config": {
"platform-check": true,
"platform": {
"php": "7.4"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"license": "CC-BY-3.0",
"authors": [
{
"name": "Eboubaker Bekkouche",
"homepage": "https://eboubaker.xyz",
"email": "eboubakkar@gmail.com"
}
],
"autoload": {
"files": [
"src/Tools/helpers.php",
"src/Tools/error_handler.php"
],
"psr-4": {
"Eboubaker\\Scraper\\": "src/"
}
},
"autoload-dev": {
"files": [
"src/Tools/debug_helpers.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit --testdox tests",
"wtest": "vendor\\bin\\phpunit --testdox tests"
}
}