-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 966 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
{
"name": "warrantgroup/vesselscraper",
"type": "library",
"description" : "Crawl marine website to scrape vessel information",
"keywords": ["vessel", "imo"],
"license": "MIT",
"authors": [
{
"name" : "Andy Roberts",
"email" : "[email protected]",
"homepage" : "https://github.com/warrantgroup",
"role" : "Developer"
}
],
"require": {
"php" : ">=5.5.0",
"symfony/browser-kit": "~2.1|~3.0",
"symfony/css-selector": "~2.1|~3.0",
"symfony/dom-crawler": "~2.1|~3.0",
"guzzlehttp/guzzle": "^6.0",
"league/csv": "^7.1",
"guiguiboy/php-cli-progress-bar": "dev-master",
"symfony/console": "2.*"
},
"autoload": {
"psr-4": {
"WarrantGroup\\VesselScraper\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}