forked from mediapart/lapresselibre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 922 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
{
"name": "mediapart/lapresselibre",
"type": "library",
"description": "Unofficial Client API of La Presse Libre project",
"license": "CC BY-NC-SA",
"authors": [
{
"name": "Thomas GASC",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Mediapart\\LaPresseLibre\\": "src/",
"Mediapart\\LaPresseLibre\\Tests\\": "tests/"
}
},
"require": {
"php": "^5.6|^7.0",
"ext-json": "*",
"ext-openssl": "*",
"ext-hash": "*",
"psr/http-message": "^1.0",
"psr/log": "^1.0",
"symfony/options-resolver": "^2.8|^3.3|^4.4"
},
"require-dev": {
"zendframework/zend-diactoros": "^1.4",
"phpunit/phpunit": "^5.7|^6.3"
},
"suggest": {
"monolog/monolog": "Allows more advanced logging of the application flow"
}
}