From 58f2f1356176429fb18781f32fb39875f4c72ef5 Mon Sep 17 00:00:00 2001 From: Pablo Godel Date: Sat, 18 Nov 2017 07:28:41 -0500 Subject: [PATCH] Allow Symfony 4.0 in composer.json --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 636e542..aad66de 100644 --- a/composer.json +++ b/composer.json @@ -10,14 +10,14 @@ } ], "require": { - "php": "^5.6|^7.0", + "php": "^5.6 || ^7.0", "ext-json": "*", - "symfony/property-access": "^2.7|^3.0" + "symfony/property-access": "^2.7 || ^3.0 || ^4.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.0", "phpunit/phpunit": "^5.0", - "symfony/phpunit-bridge": "^2.7|^3.0" + "symfony/phpunit-bridge": "^2.7 || ^3.0 || ^4.0" }, "autoload": { "psr-4": { "Ivory\\JsonBuilder\\": "src/" }