summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2017-11-16 16:10:53 +0100
committerRemi Collet <remi@remirepo.net>2017-11-16 16:10:53 +0100
commit824650d307349f39d158df6149ae243288427a1a (patch)
treeac0fc4f05745d1ab187e3ee16dfc3c5b2110830a /composer.json
parente35ee70e457faa44021b9ca270ba52c564744d2e (diff)
add dependency on zendframework/zend-serializer
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json11
1 files changed, 8 insertions, 3 deletions
diff --git a/composer.json b/composer.json
index 9ba359c..99afa58 100644
--- a/composer.json
+++ b/composer.json
@@ -27,6 +27,7 @@
"tecnickcom/tcpdf": "~6.2",
"zendframework/zend-cache": "^2.7",
"zendframework/zend-i18n": "^2.7",
+ "zendframework/zend-serializer": "^2.7",
"michelf/php-markdown": "^1.6",
"true/punycode": "^2.1",
"paragonie/random_compat": "^2.0"
@@ -37,7 +38,8 @@
"consolidation/robo": "^1.0",
"natxet/CssMin": "^3.0",
"patchwork/jsqueeze": "^2.0",
- "atoum/atoum": "^3.2"
+ "atoum/atoum": "^3.2",
+ "atoum/telemetry-extension": "^1.0"
},
"suggest": {
"ext-ldap": "Used ot provide LDAP authentication and synchronization",
@@ -50,8 +52,11 @@
}
},
"scripts": {
- "test": "vendor/bin/atoum --debug --bootstrap-file tests/bootstrap.php --no-code-coverage --max-children-number 1 -d tests/units",
- "testapi": "vendor/bin/atoum --debug --bootstrap-file tests/bootstrap.php --no-code-coverage --max-children-number 1 -d tests/api",
+ "testdb": "vendor/bin/atoum --debug --force-terminal --configurations tests/telemetry.php --bootstrap-file tests/bootstrap.php --no-code-coverage --max-children-number 1 -d tests/database",
+ "test": "vendor/bin/atoum --debug --force-terminal --configurations tests/telemetry.php --bootstrap-file tests/bootstrap.php --no-code-coverage --max-children-number 1 -d tests/units",
+ "testweb": "vendor/bin/atoum --debug --force-terminal --configurations tests/telemetry.php --bootstrap-file tests/bootstrap.php --no-code-coverage --max-children-number 1 -d tests/web",
+ "testldap": "vendor/bin/atoum --debug --force-terminal --configurations tests/telemetry.php --bootstrap-file tests/bootstrap.php --no-code-coverage --max-children-number 1 -d tests/LDAP",
+ "cs": "vendor/bin/phpcs -p --standard=vendor/glpi-project/coding-standard/GlpiStandard/ --ignore=/vendor/,/plugins/,/files/,/lib/,/config/,/tests/config ./",
"post-install-cmd": [
"@php -r \"file_put_contents('.composer.hash', sha1_file('composer.lock'));\""
],