-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.68 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.68 KB
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
{
"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": "dsi-contact@univ-rennes2.fr",
"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.*",
"dmore/behat-chrome-extension": "1.*",
"friends-of-behat/mink-debug-extension": "2.*",
"phpcompatibility/php-compatibility": "10.x-dev",
"phpstan/phpstan": "^2.1",
"squizlabs/php_codesniffer": "3.*"
},
"scripts": {
"post-autoload-dump": [
"@php upgrade.php",
"@php tests/demo/run.php",
"@php tests/regression/run.php"
]
}
}