-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 819 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 819 Bytes
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
{
"name": "braseidon/scraper",
"description": "Scraper is a multi-threaded CURL wrapper for Laravel 5 that is a highly efficient web scraper.",
"type": "library",
"keywords": ["php", "laravel", "rollingcurl", "scrape", "web scraper", "scraping"],
"homepage": "https://github.com/braseidon/scraper",
"authors": [
{
"name": "Brandon Johnson",
"email": "bluejd910@gmail.com"
}
],
"license": "MIT",
"require": {
"php": ">=5.4.0",
"laravel/framework": "5.0 - 5.5"
},
"autoload": {
"psr-4": {
"Braseidon\\Scraper\\": "src/"
}
},
"extra": {
"component": "package",
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"minimum-stability": "stable"
}