-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.16 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.16 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
{
"name": "mako/app",
"description": "Mako Framework",
"keywords": [
"mako",
"framework"
],
"homepage": "http://makoframework.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Frederic G. Østby",
"email": "frederic.g.ostby@gmail.com"
},
{
"name": "Contributors",
"homepage": "http://makoframework.com/contributors"
}
],
"autoload": {
"psr-4": {
"app\\": "app"
}
},
"require": {
"php": ">=8.5.0",
"mako/framework": "^12.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "12.2-dev"
}
},
"suggest": {
"mako/open-api": "Generate OpenAPI specifications and routes",
"mako/repl": "A runtime developer console, interactive debugger and REPL",
"mako/sentry": "Log exceptions and debug information to Sentry",
"mako/toolbar": "A debug toolbar"
},
"scripts": {
"post-create-project-cmd": [
"php app/reactor app:generate-secret"
]
}
}