forked from phalcon/incubator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.33 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
{
"name": "phalcon/incubator",
"type": "library",
"description": "Adapters, prototypes or functionality that can be potentially incorporated to the C-framework.",
"keywords": ["framework", "phalcon", "incubator"],
"homepage": "http://phalconphp.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Phalcon Team",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/phalcon/incubator/issues",
"source": "https://github.com/phalcon/incubator",
"forum": "https://forum.phalconphp.com/"
},
"require": {
"php": ">=5.4",
"ext-phalcon": "^2.0",
"swiftmailer/swiftmailer": "~5.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "~2.5",
"codeception/codeception": "~2.1",
"codeception/mockery-module": "~0.2",
"codeception/aerospike-module": "~0.1",
"codeception/specify": "~0.4",
"codeception/verify": "~0.3"
},
"suggest": {
"ext-aerospike": "*",
"duncan3dc/fork-helper": "To use extended class to access the beanstalk queue service"
},
"autoload": {
"psr-4": { "Phalcon\\": "Library/Phalcon/" }
},
"autoload-dev": {
"psr-4": {
"Phalcon\\Test\\": "tests/unit/"
}
}
}