-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 903 Bytes
/
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
{
"name": "mike503/core",
"description": "Procedural library and pseudo-framework for PHP",
"homepage": "https://github.com/mike503/core",
"minimum-stability": "dev",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Michael Shadle",
"email": "[email protected]",
"homepage": "https://michaelshadle.com"
}
],
"require": {
"php": ">=5.5.0"
},
"autoload": {
"files": [
"src/cache.php",
"src/database.php",
"src/formatting.php",
"src/notifications.php",
"src/request.php",
"src/router.php",
"src/session.php",
"src/theme.php",
"src/user.php",
"src/utilities.php",
"src/validation.php"
]
},
"config": {
"bin-dir": "bin"
}
}