forked from phalcon/incubator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 2.58 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "phalcon/incubator",
"type": "library",
"description": "Adapters, prototypes or functionality that can be potentially incorporated to the C-framework.",
"keywords": [
"framework",
"phalcon",
"incubator"
],
"homepage": "https://phalconphp.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Phalcon Team",
"email": "[email protected]",
"homepage": "https://phalconphp.com/en/team"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/incubator/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/phalcon/incubator/issues",
"source": "https://github.com/phalcon/incubator",
"forum": "https://forum.phalconphp.com/",
"docs": "https://docs.phalconphp.com/",
"irc": "irc://irc.freenode.org/phalconphp",
"rss" : "https://blog.phalconphp.com/rss",
"email": "[email protected]"
},
"require": {
"php": ">=5.5",
"ext-phalcon": "^3.2",
"swiftmailer/swiftmailer": "~5.2"
},
"require-dev": {
"phpdocumentor/reflection-docblock": "2.0.4",
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.9",
"codeception/codeception": "^2.3",
"codeception/mockery-module": "0.2.2",
"codeception/aerospike-module": "^1.0",
"codeception/specify": "^0.4",
"codeception/verify": "^0.3",
"vlucas/phpdotenv": "^2.4",
"phalcon/dd": "^1.1",
"doctrine/instantiator": "1.0.5"
},
"suggest": {
"ext-aerospike": "*",
"phalcon/ide-stubs": "Phalcon IDE Stubs",
"sergeyklay/aerospike-php-stubs": "The most complete Aerospike PHP stubs which allows autocomplete in modern IDEs",
"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/",
"Phalcon\\Test\\Models\\": "tests/_data/models",
"Phalcon\\Test\\Behavior\\Blameable\\": "tests/_data/behavior/blameable",
"Phalcon\\Test\\Aerospike\\": "tests/aerospike/",
"Phalcon\\Test\\Unit5x\\": "tests/unit5x/",
"Phalcon\\Test\\Collections\\": "tests/_data/collections",
"Phalcon\\Test\\Module\\": "tests/_support/Module"
},
"files": [
"tests/_support/functions.php"
]
}
}