-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 881 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 881 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
30
31
{
"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": ">= 7.1.0",
"psr/log": "^1.0 | ^2.0 | ^3.0",
"guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
"php-http/socket-client": "^1.4 | ^2.0",
"php-http/message": "^1.7",
"php-http/message-factory": "^1.1",
"psr/http-message": "^1.0"
},
"autoload": {
"psr-4": {
"Stackify\\": "src/Stackify"
}
},
"autoload-dev": {
"psr-4": {
"Stackify\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^5",
"phpunit/php-timer": "^1.0.6"
}
}