-
-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 871 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 871 Bytes
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
{
"name": "phalcon/tutorial",
"type": "library",
"description": "This is a sample application for the Phalcon PHP Framework",
"keywords": [
"phalcon",
"framework",
"sample app",
"tytiruak"
],
"homepage": "https://phalcon.io",
"license": "MIT",
"authors": [
{
"name": "Phalcon Team",
"homepage": "https://github.com/phalcon"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/tutorial/graphs/contributors"
}
],
"require": {
"php": ">=8.0",
"ext-openssl": "*",
"ext-phalcon": "^5.0.0",
"pds/skeleton": "^1.0"
},
"require-dev": {
"phalcon/ide-stubs": "^v5.0.1"
},
"autoload": {
"psr-4": {
"Tutorial\\": "src/"
}
}
}