-
Notifications
You must be signed in to change notification settings - Fork 315
/
composer.json
44 lines (44 loc) · 1.07 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/invo",
"type": "library",
"description": "This is a sample application for the Phalcon PHP Framework",
"keywords": [
"phalcon",
"framework",
"sample app",
"invo"
],
"homepage": "https://phalcon.io",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/vokuro/graphs/contributors"
}
],
"require": {
"php": ">=8.0",
"ext-phalcon": "^5.0.2",
"vlucas/phpdotenv": "^5.4",
"ext-pdo": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^4.27",
"codeception/codeception": "^5.0.0",
"codeception/module-phpbrowser": "^3.0",
"codeception/module-asserts": "^3.0",
"phalcon/ide-stubs": "^5.0",
"phalcon/migrations": "^3.0"
},
"autoload": {
"psr-4": {
"Invo\\": "src/"
}
},
"archive": {
"exclude": [
"CONTRIBUTING.md"
]
}
}