-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 932 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 932 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
{
"name": "popphp/popphp-tutorial",
"description": "Tutorial Application for Pop PHP Framework",
"keywords": [
"tutorial",
"application",
"framework",
"php framework",
"pop",
"pop php"
],
"homepage": "https://github.com/popphp/popphp-tutorial",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Nick Sagona",
"email": "dev@noladev.com",
"homepage": "https://www.popphp.org/"
}
],
"require": {
"php": ">=8.3.0",
"popphp/popphp": "^4.4.0",
"popphp/pop-console": "^4.2.6",
"popphp/pop-db": "^6.7.0",
"popphp/pop-form": "^4.2.6",
"popphp/pop-http": "^5.3.8",
"popphp/pop-kettle": "^2.3.4",
"popphp/pop-session": "^4.0.4",
"popphp/pop-view": "^4.0.4"
},
"autoload": {
"psr-4": {"Tutorial\\": "app/src/"}
}
}