forked from stackify/stackify-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 774 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 774 Bytes
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
{
"name": "stackify/logger",
"description": "Stackify logs and errors for PHP",
"keywords": ["log", "logging", "psr-3", "stackify", "monolog", "log4php"],
"homepage": "https://github.com/stackify/stackify-api-php",
"type": "library",
"license": "Apache-2.0",
"require": {
"php": ">=5.3.0",
"psr/log": "~1.0",
"guzzlehttp/psr7": "^1.6",
"php-http/socket-client": "^1.4 | ^2.0",
"php-http/message": "^1.7"
},
"autoload": {
"psr-4": {
"Stackify\\": "src/Stackify"
}
},
"autoload-dev": {
"psr-4": {
"Stackify\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^5",
"phpunit/php-timer": "^1.0.6"
}
}