-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·35 lines (35 loc) · 994 Bytes
/
composer.json
File metadata and controls
executable file
·35 lines (35 loc) · 994 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": "maplephp/maplephp",
"type": "project",
"description": " MaplePHP is a modern layered structure PHP framework with full PSR support.",
"keywords": ["framework", "psr", "php"],
"homepage": "https://wazabii.se",
"license": "Apache-2.0",
"authors": [
{
"name": "Daniel Ronkainen",
"email": "daniel.ronkainen@wazabii.se"
},
{
"name": "MaplePHP",
"homepage": "https://wazabii.se"
}
],
"scripts": {
"watch": "scss --watch ./resources/scss/style.scss:./public/css/style.css --style compressed",
"bundle": "esbuild --bundle ./resources/js/main.js --outdir=./public/js/ --minify --sourcemap",
"psalm": "psalm ./"
},
"require-dev": {
"filp/whoops": "^2.15"
},
"require": {
"php": ">=8.0",
"maplephp/foundation": "^1.0.0"
},
"autoload": {
"psr-4": {
}
},
"minimum-stability": "dev"
}