From 824650d307349f39d158df6149ae243288427a1a Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 16 Nov 2017 16:10:53 +0100 Subject: add dependency on zendframework/zend-serializer --- composer.json | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'composer.json') 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'));\"" ], -- cgit