forked from pluginsGLPI/formcreator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.8 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": "glpi-plugin/formcreator",
"description": "Formcreator is a plugin that allow creation of custom, easy to access forms for users when they want to create one or more GLPI tickets.",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "8.0.2"
},
"allow-plugins": {
"allow-plugins.dealerdirect/phpcod": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"apcu-autoloader": true
},
"require": {
"php": ">= 8.0.2",
"ext-xml": "*",
"gregwar/captcha": "^1.1",
"xylemical/php-expressions": "^1.0.3",
"laminas/laminas-eventmanager": "^3.2"
},
"require-dev": {
"ext-bz2": "*",
"pear/archive_tar": "^1.4",
"atoum/atoum": "^4.0",
"atoum/stubs": "^2.5",
"glpi-project/tools": "^0.1.0",
"glpi-project/coding-standard": "^0.7.1",
"php-parallel-lint/php-parallel-lint": "^1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpcsstandards/phpcsutils": "^1.0@alpha",
"scssphp/scssphp": "^1.5",
"symfony/panther": "^1.1",
"phpstan/phpstan": "^1.8"
},
"autoload-dev": {
"psr-4": {
"GlpiPlugin\\Formcreator\\Tests\\": "tests/src/"
}
},
"scripts": {
"cs": "vendor/bin/phpcs -p --standard=vendor/glpi-project/coding-standard/GlpiStandard/ *.php install/ inc/ front/ ajax/ tests/ RoboFile.php",
"cbf": "vendor/bin/phpcbf -p --standard=vendor/glpi-project/coding-standard/GlpiStandard/ *.php install/ inc/ front/ ajax/ tests/ RoboFile.php",
"lint": "vendor/bin/parallel-lint --exclude vendor .",
"stan": "vendor/bin/phpstan analyze -c phpstan.neon"
}
}