-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.46 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", "zabbix"],
"homepage": "https://sourcesup.renater.fr/projects/isou/",
"license": "Unlicense",
"authors": [{
"name": "Université Rennes 2 - DSI",
"email": "[email protected]",
"homepage": "https://www.univ-rennes2.fr/structure/dsi",
"role": "Developer"
}],
"autoload": {
"classmap": ["classes/"]
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
},
"require": {
"php": ">=8.2",
"ext-intl": "*",
"ext-pdo_sqlite": "*",
"apereo/phpcas": "1.6.*",
"ezyang/htmlpurifier": "4.*",
"league/commonmark": "2.*",
"minishlink/web-push": "8.*",
"monolog/monolog": "3.*",
"robmorgan/phinx": "0.15.*",
"smarty/smarty": "4.5.*",
"symfony/yaml": "7.*",
"tinymce/tinymce": "7.*"
},
"require-dev": {
"atoum/atoum": "4.*",
"phpcompatibility/php-compatibility": "10.x-dev",
"squizlabs/php_codesniffer": "3.*"
},
"scripts": {
"post-autoload-dump": [
"@php upgrade.php"
]
}
}