forked from pluginsGLPI/formcreator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.49 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.49 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
{
"name": "glpi-plugin/formcreator",
"description": "Formcreator v3.0.0 - End-of-Life migration plugin for GLPI 11.0.0+. Provides migration tools to convert Formcreator forms to GLPI native forms.",
"license": "GPL-2.0-or-later",
"type": "glpi-plugin",
"keywords": ["glpi", "migration", "forms", "eol"],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "8.2"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"apcu-autoloader": true
},
"require": {
"php": ">= 8.2"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/extension-installer": "^1.4",
"glpi-project/tools": "^0.8",
"glpi-project/coding-standard": "^0.7.1",
"php-parallel-lint/php-parallel-lint": "^1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"consolidation/robo": "^5.1"
},
"scripts": {
"cs": "vendor/bin/phpcs -p --standard=vendor/glpi-project/coding-standard/GlpiStandard/ *.php install/ src/ front/ tests/ RoboFile.php",
"cbf": "vendor/bin/phpcbf -p --standard=vendor/glpi-project/coding-standard/GlpiStandard/ *.php install/ src/ front/ tests/ RoboFile.php",
"lint": "vendor/bin/parallel-lint --exclude vendor .",
"stan": "vendor/bin/phpstan analyze -c phpstan.neon"
}
}