-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·43 lines (42 loc) · 820 Bytes
/
composer.json
File metadata and controls
executable file
·43 lines (42 loc) · 820 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
36
37
38
39
40
41
42
43
{
"name": "MicPec/EasySEZ",
"description": "EasySEZ",
"keywords": [
"EasySEZ"
],
"license": "GPL-3-Clause",
"authors": [
{
"name": "Michal Pecyna",
"email": "michal.pecyna@gmail.com"
}
],
"autoload": {
"psr-4": {
"app\\": "app"
}
},
"require": {
"php": ">=7.0.0",
"mako/framework": "dev-master",
"mako/repl": "dev-master",
"mako/toolbar": "dev-master",
"mako/helpers": "^1.0@dev"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "dev-master"
}
},
"suggest": {
"mako/repl": "A runtime developer console, interactive debugger and REPL for the Mako framework",
"mako/toolbar": "A debug toolbar for the Mako framework"
},
"scripts": {
"post-create-project-cmd": [
"php app/reactor app.generate_secret"
]
}
}