-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.6 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
{
"name": "inter-mediator/imapp-template",
"version": "2",
"time": "2024-01-13",
"repositories": [
{
"type": "git",
"url": "https://github.com/INTER-Mediator/IMApp-template.git"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4.0",
"inter-mediator/inter-mediator": "dev-master"
},
"autoload": {},
"description": "INTER-Mediator Application Template.",
"type": "application",
"keywords": [
"INTER-Mediator",
"application"
],
"homepage": "https://inter-mediator.com",
"license": "MIT",
"authors": [
{
"name": "INTER-Mediator Directive Committee",
"homepage": "http://inter-mediator.org/"
}
],
"support": {
"source": "https://github.com/INTER-Mediator/IMApp-template",
"manual": "http://inter-mediator.info/"
},
"scripts": {
"test": [
"The software test is very important activity for the quality assuarance."
],
"clear": [
"rm -rf vendor"
],
"post-update-cmd": [
"cd ./vendor/inter-mediator/inter-mediator; npm install",
"cd ./vendor/inter-mediator/inter-mediator; npm update",
"./vendor/inter-mediator/inter-mediator/dist-docs/generateminifyjshere.sh",
"./lib/doafterupdate.sh"
],
"post-install-cmd": [
"cd ./vendor/inter-mediator/inter-mediator; npm install",
"./vendor/inter-mediator/inter-mediator/dist-docs/generateminifyjshere.sh",
"./lib/doafterinstall.sh"
]
},
"config": {
"allow-plugins": {
"simplesamlphp/composer-module-installer": true,
"mouf/nodejs-installer": true
}
}
}