-
-
Notifications
You must be signed in to change notification settings - Fork 193
/
composer.json
64 lines (64 loc) · 1.61 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
{
"name": "phalcon/vokuro",
"type": "library",
"description": "This is a sample application for the Phalcon PHP Framework",
"keywords": [
"phalcon",
"framework",
"sample app",
"vokuro"
],
"homepage": "https://phalcon.io",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Mark Garrett",
"email": "mark@moderndeveloperllc.com"
},
{
"name": "Anton Vasiliev",
"homepage": "https://github.com/Jeckerson"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/vokuro/graphs/contributors"
}
],
"require": {
"php": ">=7.2",
"ext-openssl": "*",
"ext-phalcon": "~4.0.0",
"robmorgan/phinx": "^0.11.1",
"swiftmailer/swiftmailer": "^6.2",
"vlucas/phpdotenv": "^3.6"
},
"require-dev": {
"codeception/codeception": "^4.1.6",
"phalcon/ide-stubs": "4.0.6",
"phpunit/phpunit": "^8.4",
"squizlabs/php_codesniffer": "3.5.5",
"vimeo/psalm": "^3.7",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-asserts": "^1.2"
},
"suggest": {
"ext-apc": "Needed to support caching ACL"
},
"autoload": {
"psr-4": {
"Vokuro\\": "src/"
},
"files": [
"src/Helpers.php"
]
},
"archive": {
"exclude": [
"/.ci",
".dockerignore",
".travis.yml",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md"
]
}
}