-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 870 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
{
"name": "murat-yuksel/news-api-php",
"type": "library",
"description": "PHP Client for Google News API",
"keywords": ["client", "google", "news", "api"],
"homepage": "https://muratyuksel.net",
"support": {
"issues": "https://github.com/murat-yuksel/news-api-php/issues",
"source": "https://github.com/murat-yuksel/news-api-php"
},
"license": "MIT",
"authors": [
{
"name": "Murat Yüksel",
"email": "[email protected]",
"homepage": "https://muratyuksel.net"
}
],
"require": {
"php": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0|~5.0",
"guzzlehttp/guzzle": "^6.3",
"vlucas/phpdotenv": "^2.5"
},
"autoload": {
"psr-4": {
"NewsApi\\": "src/NewsApi/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"NewsApiExample\\": "example/"
}
}
}