-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·49 lines (49 loc) · 1.46 KB
/
composer.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.46 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
42
43
44
45
46
47
48
49
{
"name": "michel/michel-core",
"description": "The Michel Framework Core provides the essential building blocks for the Michel Framework. It's a lightweight, versatile, and modern PHP framework designed to streamline web development and simplify common tasks.",
"type": "package",
"license": "MPL-2.0",
"authors": [
{
"name": "Michel.F"
}
],
"autoload": {
"psr-4": {
"\\Michel\\Framework\\Core\\": "src",
"Test\\Michel\\Framework\\Core\\": "tests"
},
"files": [
"functions/helpers.php",
"functions/helpers_file.php",
"functions/helpers_string.php",
"functions/helpers_array.php",
"functions/helpers_date.php"
]
},
"minimum-stability": "alpha",
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-mbstring": "*",
"psr/container": "^1.0|^2.0",
"psr/http-message": "~1.0|^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/event-dispatcher": "^1.0",
"psr/http-factory": "^1.0",
"psr/log": "^1.1|^2.0",
"michel/session": "^1.0",
"michel/dotenv": "^1.0",
"michel/router": "^1.0",
"michel/options-resolver": "^1.0",
"michel/console": "^1.0",
"michel/vardumper": "^1.0",
"michel/psr14-event-dispatcher": "^1.0",
"michel/pure-plate": "^2.0@alpha",
"michel/michel-package-starter": "^1.0"
},
"require-dev": {
"michel/unitester": "^1.0.0"
}
}