-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
57 lines (57 loc) · 1.72 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
{
"name": "cottacush/phalcon-base-project",
"description": "Base project for bootstrapping phalcon projects",
"keywords": [
"phalcon",
"framework",
"basic",
"project template",
"improved"
],
"type": "project",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"bshaffer/oauth2-server-php": "^1.8",
"cottacush/phalcon-utils": "^2.3",
"redound/phalcon-rest": "^1.4.0",
"vlucas/phpdotenv": "^2.2",
"phalcon/incubator": "^3.0",
"robmorgan/phinx": "^0.5.3",
"ext-phalcon": ">=3.0.0",
"jeremyharris/psr3-papertrail": "^1.0"
},
"require-dev": {
"codeception/codeception": "2.5.1",
"redcomponent/teststatistics": "^2.2",
"flow/jsonpath": "^0.3.1",
"pagerfanta/pagerfanta": "^1.0",
"league/fractal": "^0.13.0",
"squizlabs/php_codesniffer": "2.*",
"pdepend/pdepend" : "2.2.4",
"phploc/phploc": "*",
"phpmd/phpmd" : "@stable",
"sebastian/phpcpd": "*",
"codeception/phpbuiltinserver": "^1.4"
},
"config": {
"process-timeout": 1800,
"discard-changes": true
},
"authors": [
{
"name": "Adeyemi Olaoye",
"email": "yemi@cottacush.com",
"homepage": "https://adeyemiolaoye.me",
"role": "Software Engineer"
}
],
"suggest": {
"pagerfanta/pagerfanta": "Install PagerFanta to use Pagination",
"league/fractal": "Install Fractal to use Transformers",
"wsdl2phpgenerator/wsdl2phpgenerator": "Install WSDL2PHP generator to generate classes from WSDL",
"besimple/soap-client": "Install SOAP Client for connecting with SOAP services",
"xamin/handlebars.php": "Install Handlebars for fluent templating",
"mcustiel/phiremock-codeception-extension": "Install phiremock for mocking"
}
}