-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 1.87 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "yawik/standard",
"description": "Skeleton for Yawik Applications",
"type": "project",
"license": "MIT",
"keywords": [
"laminas",
"mvc",
"yawik"
],
"homepage": "http://framework.zend.com/",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4",
"composer/installers": "^1.0",
"yawik/application-pack": "^1.1",
"laminas/laminas-component-installer": "^1.1 | ^2.0"
},
"require-dev": {
"laminas/laminas-test": "^3.2",
"yawik/behat": "^0.34"
},
"autoload": {
"psr-4": {
"Demo\\": "src/Demo/src/"
}
},
"autoload-dev": {
"psr-4": {
"DemoTest\\": "src/Demo/test/"
}
},
"config": {
"platform": {
"ext-mongo": "1.6.16"
},
"process-timeout": 0,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.32-dev"
},
"zf": {
"component-whitelist": [
"DoctrineModule",
"DoctrineMongoODMModule",
"yawik/core",
"yawik/auth",
"yawik/cv",
"yawik/applications",
"yawik/jobs",
"yawik/settings",
"yawik/pdf",
"yawik/geo",
"yawik/organizations"
]
}
},
"scripts": {
"auto-scripts": [
"@cache-clear",
"npm install"
],
"cache-clear": "./vendor/bin/yawik clear-cache",
"install-assets": "./vendor/bin/yawik assets-install --relative",
"serve": "php -S o.o.o.o:8080 -t public/",
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
}
}