-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.23 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.23 KB
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
{
"name": "ericmann/notes-tutorial",
"description": "Iterative tutorial illustrating PHP security.",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Eric Mann",
"email": "eric@eamann.com"
}
],
"minimum-stability": "stable",
"require": {
"league/route": "^6.2",
"laminas/laminas-diactoros": "^3.5",
"laminas/laminas-httphandlerrunner": "^2.11",
"ramsey/uuid": "^4.7",
"splitbrain/php-cli": "^1.3",
"guzzlehttp/guzzle": "^7.9"
},
"autoload": {
"psr-4": {
"Notes\\Module1\\": "module-1/server/",
"Notes\\Module2\\": "module-2/server/",
"Notes\\Module3\\": "module-3/server/",
"Notes\\Module4\\": "module-4/server/",
"Notes\\Module5\\": "module-5/server/",
"Notes\\ModuleFinal\\": "module-final/server/"
},
"files": [
"util/Database.php",
"util/types/BaseNote.php",
"util/types/BaseUser.php",
"util/types/Note.php",
"util/types/User.php",
"module-1/config.php",
"module-5/config.php",
"module-final/config.php"
]
}
}