-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·51 lines (51 loc) · 1014 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
42
43
44
45
46
47
48
49
50
51
{
"name": "sleimanx2/grawler",
"description": "A guided html crawler with media meta extraction ",
"keywords": [
"php",
"html",
"crawler",
"guided"
],
"homepage": "https://github.com/sleimanx2/grawler",
"license": "MIT",
"authors": [
{
"name": ":sleimanx2",
"homepage": "http://bowtie.land",
"role": "Developer"
}
],
"require": {
"php": ">=5.5",
"fabpot/goutte": "3.1.*",
"hassankhan/config": "0.8.*",
"vlucas/phpdotenv": "^3.3",
"google/apiclient": "1.*",
"vimeo/vimeo-api": "1.2.*",
"njasm/soundcloud": "2.2.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "^0.9.4",
"phpunit/php-code-coverage": "^2.1"
},
"autoload": {
"psr-4": {
"Bowtie\\Grawler\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bowtie\\Grawler\\Test\\": "test"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}