From 4a40286e97326c23c8837c3f8d1a97327c00a289 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gamez?= Date: Wed, 27 Jan 2016 16:22:50 +0100 Subject: [PATCH] Add platform hint to ensure PHP 5.4 compatibility --- CHANGELOG.md | 5 +++++ composer.json | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86b9c64..6fc2cef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## Unreleased + +- Added platform hint in `composer.json` to ensure PHP 5.4 compatibility. + - PHP <5.5 support is dropped in [doctrine/migrations 1.3](https://github.com/doctrine/migrations/releases/tag/v1.3.0) + ## 3.0 - 2015-12-13 - This bundle is now based on the [DoctrineMigrationsBundle](https://github.com/doctrine/DoctrineMigrationsBundle) and diff --git a/composer.json b/composer.json index 63c3c82..e30e2fb 100644 --- a/composer.json +++ b/composer.json @@ -27,5 +27,10 @@ "branch-alias": { "dev-master": "3.0-dev" } + }, + "config": { + "platform": { + "php": "5.4" + } } }