forked from phalcon/vokuro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.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
{
"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": "[email protected]"
},
{
"name": "Anton Vasiliev",
"homepage": "https://github.com/Jeckerson"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/vokuro/graphs/contributors"
}
],
"require": {
"php": ">=7.4",
"ext-openssl": "*",
"ext-phalcon": "^5.0.0",
"robmorgan/phinx": "^0.12.12",
"symfony/mailer": "^6.0",
"vlucas/phpdotenv": "^5.4"
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0",
"codeception/module-phpbrowser": "^3.0",
"phalcon/ide-stubs": "^v5.0.1",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^4.27",
"phpstan/phpstan": "^1.8"
},
"suggest": {
"ext-apc": "Needed to support caching ACL"
},
"autoload": {
"psr-4": {
"Vokuro\\": "src/"
},
"files": [
"src/Helpers.php"
]
},
"archive": {
"exclude": [
"/.ci",
".dockerignore",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md"
]
}
}