forked from raulr/google-play-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 806 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": "raulr/google-play-scraper",
"type": "library",
"description": "A PHP scraper to get app data from Google Play",
"keywords": ["google play", "scraper"],
"homepage": "https://github.com/raulr/google-play-scraper",
"license": "MIT",
"require": {
"fabpot/goutte": "^3.0"
},
"authors": [
{
"name": "Raul Rodriguez",
"email": "raul@raulr.net"
}
],
"autoload": {
"psr-4": {
"Raulr\\GooglePlayScraper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Raulr\\GooglePlayScraper\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^4.0",
"friendsofphp/php-cs-fixer": "^1.10",
"mockery/mockery": "^0.9.4"
}
}