forked from DSI-Universite-Rennes2/isou
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.84 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
{
"name": "universiterennes2/isou",
"type": "project",
"description": "Application to show status of your services.",
"keywords": ["monitoring", "status", "nagios", "shinken", "icinga", "naemon", "thruk"],
"homepage": "https://sourcesup.renater.fr/projects/isou/",
"license": "Unlicense",
"authors": [{
"name": "Université Rennes 2 - DSI",
"email": "dsi-contact@univ-rennes2.fr",
"homepage": "https://intranet.univ-rennes2.fr/dsi",
"role": "Developer"
}],
"autoload": {
"classmap": ["classes/"]
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"require": {
"php": ">=7.3",
"ext-pdo_sqlite": "*",
"apereo/phpcas": "1.6.*",
"ezyang/htmlpurifier": "4.*",
"league/commonmark": "1.6.*",
"minishlink/web-push": "6.0.*",
"monolog/monolog": "2.2.*",
"robmorgan/phinx": "0.12.*",
"smarty/smarty": "3.1.*",
"symfony/yaml": "5.3.*",
"tinymce/tinymce": "5.10.*"
},
"require-dev": {
"atoum/atoum": "3.*",
"squizlabs/php_codesniffer": "3.*"
},
"scripts": {
"post-autoload-dump": [
"php -r \"mkdir('www/scripts/tinymce', 0755, true);\"",
"php -r \"symlink('../../../vendor/tinymce/tinymce/tinymce.min.js', 'www/scripts/tinymce/tinymce.min.js');\"",
"php -r \"symlink('../../../vendor/tinymce/tinymce/icons', 'www/scripts/tinymce/icons');\"",
"php -r \"symlink('../../../vendor/tinymce/tinymce/plugins', 'www/scripts/tinymce/plugins');\"",
"php -r \"symlink('../../../vendor/tinymce/tinymce/skins', 'www/scripts/tinymce/skins');\"",
"php -r \"symlink('../../../vendor/tinymce/tinymce/themes', 'www/scripts/tinymce/themes');\""
]
}
}