-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
32 lines (32 loc) · 976 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
{
"name": "mediashare/spider",
"description": "Spider is a php library for crawling website that allows you to scrape informations & automated actions.",
"type": "library",
"keywords": ["crawler", "spider", "scrapper", "library","http", "scrape", "crawler modulable", "parser", "website"],
"homepage": "https://github.com/Mediashare/Spider",
"license": "MIT",
"authors": [
{
"name": "Mediashare",
"email": "mediashare.supp@gmail.com"
}
],
"minimum-stability": "alpha",
"require": {
"league/climate": "^3.5",
"symfony/finder": "^5.0",
"symfony/filesystem": "^5.0",
"zumba/json-serializer": "^2.2",
"mediashare/crawler": "*",
"mediashare/kernel": "*",
"symfony/console": "^5.0"
},
"autoload": {
"psr-4": {
"Mediashare\\Spider\\" : "src/"
}
},
"require-dev": {
"tracy/tracy": "^2.7"
}
}