-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
46 lines (46 loc) · 1.23 KB
/
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
39
40
41
42
43
44
45
46
{
"name": "phalcon/logentries",
"type": "library",
"description": "Phalcon library to connect and make log entries using https://logentries.com/",
"keywords": [
"phalcon",
"log",
"logentries"
],
"homepage": "https://github.com/phalcon/phalcon-logentries",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Phalcon Team",
"email": "team@phalconphp.com",
"homepage": "https://phalconphp.com/en/team"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/phalcon-logentries/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/phalcon/phalcon-logentries/issues",
"forum": "https://forum.phalconphp.com/",
"source": "https://github.com/phalcon/phalcon-logentries"
},
"require": {
"php": ">=5.5",
"ext-phalcon": "~2.0"
},
"require-dev": {
"codeception/codeception": "~2.2",
"squizlabs/php_codesniffer": "~2.8"
},
"autoload": {
"psr-4": {
"Phalcon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phalcon\\Tests\\": "tests/unit/"
}
}
}