-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.03 KB
/
composer.json
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
{
"name": "nucleon/nucleon",
"description": "Phalcon extended framework. (Nucleon:App)",
"keywords": [
"framework",
"phalcon",
"nucleon",
"skeleton"
],
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Ark4ne (Guillaume Allegret)",
"email": "[email protected]"
}
],
"require": {
"php": "~7.2",
"ext-phalcon": "~3.0",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-zend-opcache": "*",
"nucleon/framework": "~1.3"
},
"require-dev": {
"phalcon/ide-stubs": "dev-master",
"phpunit/phpunit": "~5.6",
"mockery/mockery": "~0.9.4"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"scripts": {
"post-install-cmd": [
"Neutrino\\Foundation\\Cli\\Tasks\\ClearCompiledTask::composerClearCompiled"
],
"post-update-cmd": [
"Neutrino\\Foundation\\Cli\\Tasks\\ClearCompiledTask::composerClearCompiled"
],
"warmup": [
"php quark migrate --force",
"php quark optimize --force"
]
}
}