-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.1 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.1 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
{
"name": "phpdevcommunity/michel-framework",
"description": "Michel PHP framework Skeleton",
"type": "project",
"license": "MPL-2.0",
"authors": [
{
"name": "F. Michel",
"homepage": "https://www.phpdevcommunity.com"
}
],
"autoload": {
"psr-4": {
"App\\": "src",
"Test\\App\\": "tests"
}
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"laminas/laminas-diactoros": "^2.5",
"middlewares/base-path": "^2.0",
"phpdevcommunity/michel-core": "dev-main",
"phpdevcommunity/php-session": "^1.0",
"phpdevcommunity/php-flash": "^1.0",
"phpdevcommunity/psr11-dependency-injection": "^1.0",
"phpdevcommunity/psr3-logger": "^1.0",
"phpdevcommunity/php-validator": "^1.0",
"phpdevcommunity/template-bridge": "^1.0"
},
"scripts": {
"post-create-project-cmd": [
"@php -r \"if (!is_file('.env') && is_file('.env.dist')) { copy('.env.dist', '.env'); }\"",
"@php -r \"if (!is_dir('var/log')) { mkdir('var/log', 0755, true); }\"",
"@php -r \"if (!is_dir('var/cache')) { mkdir('var/cache', 0755, true); }\""
]
}
}