forked from glpi-project/glpi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
93 lines (93 loc) · 4.72 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "glpi/glpi",
"description": "GLPI dependencies",
"license": "GPL-2.0",
"type": "project",
"homepage": "http://www.glpi-project.org/",
"support": {
"irc": "irc://irc.freenode.org/glpi",
"forum": "http://forum.glpi-project.org/",
"issues": "https://github.com/glpi-project/glpi/issues",
"docs": "https://github.com/glpi-project/doc"
},
"require": {
"php": ">=7.0.8",
"ext-pdo_mysql": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-gd": "*",
"ext-zlib": "*",
"ext-curl": "*",
"ext-intl": "*",
"iamcal/lib_autolink": "~1.7",
"phpmailer/phpmailer": "~6.0",
"sabre/vobject": "~4.1",
"simplepie/simplepie": "^1.5",
"tecnickcom/tcpdf": "~6.2.16",
"zendframework/zend-cache": "^2.8",
"zendframework/zend-i18n": "^2.8",
"zendframework/zend-serializer": "^2.8",
"michelf/php-markdown": "^1.6",
"true/punycode": "^2.1",
"monolog/monolog": "^1.23",
"sebastian/diff": "^1.4 || ^2.0 || ^3.0",
"elvanto/litemoji": "^1.4 || ^2.0",
"symfony/console": "^3.4",
"scssphp/scssphp": "^1.0",
"zendframework/zend-mail": "^2.10",
"symfony/dependency-injection": "^3.4",
"symfony/yaml": "^3.4",
"symfony/config": "^3.4",
"symfony/event-dispatcher": "^3.4",
"slim/slim": "^3.9",
"slim/twig-view": "^2.5",
"doctrine/annotations": "^1.4",
"twig/extensions": "^1.5",
"kanellov/slim-twig-flash": "^0.2.0",
"fossar/htmlawed": "1.2.4.1",
"symfony/property-access": "^3.4",
"twig/twig": "^2.7",
"glpi-project/runtracy": "dev-master"
},
"require-dev": {
"guzzlehttp/guzzle": "~6",
"glpi-project/coding-standard": "^0.7.1",
"consolidation/robo": "^1.0",
"natxet/cssmin": "^3.0",
"patchwork/jsqueeze": "^2.0",
"atoum/atoum": "dev-master",
"atoum/telemetry-extension": "^1.0",
"sensiolabs/security-checker": "^5.0",
"fzaninotto/faker": "^1.7",
"jakub-onderka/php-parallel-lint": "^1.0",
"mikey179/vfsstream": "^1.6"
},
"suggest": {
"ext-ldap": "Used ot provide LDAP authentication and synchronization"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.0.8"
}
},
"autoload": {
"psr-4": {
"Glpi\\": "src/Glpi/"
}
},
"scripts": {
"testdb": "php vendor/bin/atoum -p 'php -d memory_limit=512M' --debug --force-terminal --use-dot-report --configurations tests/telemetry.php --bootstrap-file tests/bootstrap.php --no-code-coverage --max-children-number 1 -d tests/database",
"testfunc": "php vendor/bin/atoum -p 'php -d memory_limit=512M' --debug --force-terminal --use-dot-report --configurations tests/telemetry.php --bootstrap-file tests/bootstrap.php --no-code-coverage --max-children-number 1 -d tests/functionnal/",
"testunits": "php vendor/bin/atoum -p 'php -d memory_limit=512M' --debug --force-terminal --use-dot-report --configurations tests/telemetry.php --bootstrap-file tests/bootstrap.php --no-code-coverage -d tests/units",
"testweb": "php vendor/bin/atoum -p 'php -d memory_limit=512M' --debug --force-terminal --use-dot-report --configurations tests/telemetry.php --bootstrap-file tests/bootstrap.php --no-code-coverage --max-children-number 1 -d tests/web",
"testldap": "php vendor/bin/atoum -p 'php -d memory_limit=512M' --debug --force-terminal --use-dot-report --configurations tests/telemetry.php --bootstrap-file tests/bootstrap.php --no-code-coverage --max-children-number 1 -d tests/LDAP",
"testimap": "php vendor/bin/atoum -p 'php -d memory_limit=512M' --debug --force-terminal --use-dot-report --configurations tests/telemetry.php --bootstrap-file tests/bootstrap.php --no-code-coverage --max-children-number 1 -d tests/imap",
"csp": "vendor/bin/phpcs --parallel=500 -p --standard=vendor/glpi-project/coding-standard/GlpiStandard/ --ignore=/vendor/,/plugins/,/files/,/lib/,/config/,/tests/config,/css/tiny_mce,/.git ./",
"cs": "vendor/bin/phpcs -d memory_limit=512M -p --standard=vendor/glpi-project/coding-standard/GlpiStandard/ --ignore=/vendor/,/plugins/,/files/,/lib/,/config/,/tests/config,/css/tiny_mce,/.git ./",
"lint": "vendor/bin/parallel-lint --exclude files --exclude plugins --exclude vendor --exclude tools/vendor .",
"post-install-cmd": "@php -r \"file_put_contents('.composer.hash', sha1_file('composer.lock'));\"",
"post-update-cmd": "@php -r \"file_put_contents('.composer.hash', sha1_file('composer.lock'));\""
}
}