From e8f37a33bd8ea65c50b32a1f37ac38e910a64325 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Mon, 19 Feb 2018 00:43:12 +0100 Subject: [PATCH 1/5] Require at least PHP 5.6 Even Debian old stable (jessie) has it. Signed-off-by: Thomas Citharel --- INSTALL.md | 6 +++--- composer.json | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 022772c..8a23955 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,7 +1,7 @@ # Pré-requis -- Apache +- Apache ou Nginx - MySQL ou PostgreSQL -- PHP 5+ +- PHP 5.6+ - [Composer](https://getcomposer.org/) # Pré-installation @@ -97,4 +97,4 @@ La base se compose de quatre tables : - `poll` : Le paramètrage des sondages; - `slot` : les choix disponibles pour chaque sondage; - `vote` : les votes effectués par les utilisateurs pour chaque sondage; -- `comment` : les commentaires apportés à chaque sondage. \ No newline at end of file +- `comment` : les commentaires apportés à chaque sondage. diff --git a/composer.json b/composer.json index 5d6a123..94e55f6 100644 --- a/composer.json +++ b/composer.json @@ -10,6 +10,7 @@ "type": "project", "require": { + "php": ">=5.6.0", "smarty/smarty": "^3.1", "o80/i18n": "dev-develop", "phpmailer/phpmailer": "^5.2", From 54772d42f7c83cf2e6e597ed1b34b782d984e1ea Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Mon, 19 Feb 2018 00:55:03 +0100 Subject: [PATCH 2/5] Update composer.json with authors and build version and links to issues Signed-off-by: Thomas Citharel --- composer.json | 57 ++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 54 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 94e55f6..6cc394a 100644 --- a/composer.json +++ b/composer.json @@ -1,16 +1,61 @@ { "name": "framasoft/framadate", "description": "Application to facilitate the schedule of events or classic polls", - "keywords": [ - "poll" - ], + "homepage": "https://framadate.org/", + "keywords": ["poll", "framadate"], "version": "0.9.0", "license": "CECILL-B", "type": "project", + "support": { + "issues": "https://framagit.org/framasoft/framadate/issues" + }, + "authors": [ + { + "name": "Thomas CITHAREL", + "email": "tcit@tcit.fr", + "role": "Maintainer" + }, + { + "name": "JosephK", + "email": "joseph@framasoft.org", + "role": "Maintainer" + }, + { + "name": "Olivier PEREZ", + "email": "olivier@olivierperez.fr", + "role": "Former maintainer" + }, + { + "name": "Antonin MURTIN", + "email": "antonin.murtin@gmail.com", + "role": "Former developper" + }, + { + "name": "Simon LEBLANC", + "role": "Former developper", + "email": "contact@leblanc-simon.eu" + }, + { + "name": "Pierre-Yves GOSSET", + "role": "Former developper", + "email": "pyg@framasoft.org" + }, + { + "name": "Guilhem BORGHESI", + "role": "Studs developper", + "email": "borghesi@unistra.fr" + }, + { + "name": "Raphaël DROZ", + "role": "Studs developper", + "email": "raphael.droz@gmail.com" + } + ], "require": { "php": ">=5.6.0", + "ext-pdo": "*", "smarty/smarty": "^3.1", "o80/i18n": "dev-develop", "phpmailer/phpmailer": "^5.2", @@ -26,5 +71,11 @@ "psr-4": { "Framadate\\": "app/classes/Framadate/" } + }, + + "config": { + "platform": { + "php": "5.6.0" + } } } From 6b04d3542e7af949f25109649675013c195a4605 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Mon, 19 Feb 2018 19:35:41 +0100 Subject: [PATCH 3/5] Check for PHP 5.6 Better detection, get rid of dedicated file and use version_compare() instead Signed-off-by: Thomas Citharel --- admin/check.php | 7 +- app/inc/constants.php | 2 +- app/inc/php_version.php | 29 -------- composer.lock | 153 ++++++++++++++++++++++++++++++++++------ 4 files changed, 136 insertions(+), 55 deletions(-) delete mode 100644 app/inc/php_version.php diff --git a/admin/check.php b/admin/check.php index bb86693..00bb701 100644 --- a/admin/check.php +++ b/admin/check.php @@ -49,7 +49,6 @@ $ALLOWED_LANGUAGES = [ ]; const DEFAULT_LANGUAGE = 'en'; require_once ROOT_DIR . 'app/inc/i18n.php'; -require_once '../app/inc/php_version.php'; /** * Function to sort messages by type (priorise errors on warning, warning on info, etc.) @@ -88,10 +87,10 @@ $conf_filename = $inc_directory . 'config.php'; */ // PHP Version -if (PHP_VERSION_ID >= php_string_to_version_id(PHP_NEEDED_VERSION)) { - $messages[] = new Message('info', __f('Check','PHP version %s is enough (needed at least PHP %s).',phpversion(), PHP_NEEDED_VERSION)); +if (version_compare(PHP_VERSION, PHP_NEEDED_VERSION)) { + $messages[] = new Message('info', __f('Check','PHP version %s is enough (needed at least PHP %s).', PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION, PHP_NEEDED_VERSION)); } else { - $messages[] = new Message('danger', __f('Check','Your PHP version (%s) is too old. This application needs at least PHP %s.',phpversion(), PHP_NEEDED_VERSION)); + $messages[] = new Message('danger', __f('Check','Your PHP version (%s) is too old. This application needs at least PHP %s.', phpversion(), PHP_NEEDED_VERSION)); } // INTL extension diff --git a/app/inc/constants.php b/app/inc/constants.php index 3f79a71..d36106a 100644 --- a/app/inc/constants.php +++ b/app/inc/constants.php @@ -21,7 +21,7 @@ const VERSION = '1.0'; // PHP Needed version -const PHP_NEEDED_VERSION = '5.4.4'; +const PHP_NEEDED_VERSION = '5.6'; // Config constants const COMPILE_DIR = '/tpl_c/'; diff --git a/app/inc/php_version.php b/app/inc/php_version.php deleted file mode 100644 index c837b9a..0000000 --- a/app/inc/php_version.php +++ /dev/null @@ -1,29 +0,0 @@ - \ No newline at end of file diff --git a/composer.lock b/composer.lock index ac2c276..6900d88 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,11 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], +<<<<<<< HEAD "content-hash": "049183d97fa9891b1fed52d2d2c650f6", +======= + "content-hash": "ca65bb3c4c4e869d5d98afe8369236a5", +>>>>>>> Check for PHP 5.6 "packages": [ { "name": "ircmaxell/password-compat", @@ -177,12 +181,21 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", +<<<<<<< HEAD "reference": "5ebdd35b291cf9be4a425022872cb3aaf03192df" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/5ebdd35b291cf9be4a425022872cb3aaf03192df", "reference": "5ebdd35b291cf9be4a425022872cb3aaf03192df", +======= + "reference": "94230db36bded9d164ffccabcb38c67eedd63595" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/94230db36bded9d164ffccabcb38c67eedd63595", + "reference": "94230db36bded9d164ffccabcb38c67eedd63595", +>>>>>>> Check for PHP 5.6 "shasum": "" }, "conflict": { @@ -232,7 +245,11 @@ "onelogin/php-saml": "<2.10.4", "oro/crm": ">=1.7,<1.7.4", "oro/platform": ">=1.7,<1.7.4", +<<<<<<< HEAD "padraic/file_get_contents": "<1.1.2", +======= + "padraic/humbug_get_contents": "<1.1.2", +>>>>>>> Check for PHP 5.6 "phpmailer/phpmailer": ">=5,<5.2.24", "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3", "phpxmlrpc/extras": "<0.6.1", @@ -274,9 +291,9 @@ "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4", "willdurand/js-translation-bundle": "<2.1.1", "yiisoft/yii": ">=1.1.14,<1.1.15", - "yiisoft/yii2": "<2.0.5", + "yiisoft/yii2": "<2.0.14", "yiisoft/yii2-bootstrap": "<2.0.4", - "yiisoft/yii2-dev": "<2.0.4", + "yiisoft/yii2-dev": "<2.0.14", "yiisoft/yii2-gii": "<2.0.4", "yiisoft/yii2-jui": "<2.0.4", "zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3", @@ -316,7 +333,11 @@ } ], "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it", +<<<<<<< HEAD "time": "2018-02-13T10:17:11+00:00" +======= + "time": "2018-02-19T09:31:21+00:00" +>>>>>>> Check for PHP 5.6 }, { "name": "smarty/smarty", @@ -375,32 +396,32 @@ "packages-dev": [ { "name": "doctrine/instantiator", - "version": "1.1.0", + "version": "1.0.5", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", - "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda" + "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", - "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d", + "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d", "shasum": "" }, "require": { - "php": "^7.1" + "php": ">=5.3,<8.0-DEV" }, "require-dev": { "athletic/athletic": "~0.1.8", "ext-pdo": "*", "ext-phar": "*", - "phpunit/phpunit": "^6.2.3", - "squizlabs/php_codesniffer": "^3.0.2" + "phpunit/phpunit": "~4.0", + "squizlabs/php_codesniffer": "~2.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { @@ -425,6 +446,7 @@ "constructor", "instantiate" ], +<<<<<<< HEAD "time": "2017-07-22T11:58:36+00:00" }, { @@ -471,6 +493,9 @@ "object graph" ], "time": "2017-10-19T19:58:43+00:00" +======= + "time": "2015-06-14T21:17:01+00:00" +>>>>>>> Check for PHP 5.6 }, { "name": "phpdocumentor/reflection-common", @@ -528,6 +553,7 @@ }, { "name": "phpdocumentor/reflection-docblock", +<<<<<<< HEAD "version": "4.3.0", "source": { "type": "git", @@ -538,25 +564,31 @@ "type": "zip", "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08", "reference": "94fd0001232e47129dd3504189fa1c7225010d08", +======= + "version": "3.3.2", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", + "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bf329f6c1aadea3299f08ee804682b7c45b326a2", + "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2", +>>>>>>> Check for PHP 5.6 "shasum": "" }, "require": { - "php": "^7.0", + "php": "^5.6 || ^7.0", "phpdocumentor/reflection-common": "^1.0.0", "phpdocumentor/type-resolver": "^0.4.0", "webmozart/assert": "^1.0" }, "require-dev": { - "doctrine/instantiator": "~1.0.5", - "mockery/mockery": "^1.0", - "phpunit/phpunit": "^6.4" + "mockery/mockery": "^0.9.4", + "phpunit/phpunit": "^4.4" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.x-dev" - } - }, "autoload": { "psr-4": { "phpDocumentor\\Reflection\\": [ @@ -575,7 +607,11 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", +<<<<<<< HEAD "time": "2017-11-30T07:14:17+00:00" +======= + "time": "2017-11-10T14:09:06+00:00" +>>>>>>> Check for PHP 5.6 }, { "name": "phpdocumentor/type-resolver", @@ -626,6 +662,7 @@ }, { "name": "phpspec/prophecy", +<<<<<<< HEAD "version": "1.7.4", "source": { "type": "git", @@ -636,6 +673,18 @@ "type": "zip", "url": "https://api.github.com/repos/phpspec/prophecy/zipball/9f901e29c93dae4aa77c0bb161df4276f9c9a1be", "reference": "9f901e29c93dae4aa77c0bb161df4276f9c9a1be", +======= + "version": "1.7.5", + "source": { + "type": "git", + "url": "https://github.com/phpspec/prophecy.git", + "reference": "dfd6be44111a7c41c2e884a336cc4f461b3b2401" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/dfd6be44111a7c41c2e884a336cc4f461b3b2401", + "reference": "dfd6be44111a7c41c2e884a336cc4f461b3b2401", +>>>>>>> Check for PHP 5.6 "shasum": "" }, "require": { @@ -685,7 +734,11 @@ "spy", "stub" ], +<<<<<<< HEAD "time": "2018-02-11T18:49:29+00:00" +======= + "time": "2018-02-19T10:16:54+00:00" +>>>>>>> Check for PHP 5.6 }, { "name": "phpunit/php-code-coverage", @@ -748,7 +801,11 @@ "testing", "xunit" ], +<<<<<<< HEAD "time": "2017-04-02T07:44:40+00:00" +======= + "time": "2015-10-06T15:47:00+00:00" +>>>>>>> Check for PHP 5.6 }, { "name": "phpunit/php-file-iterator", @@ -934,7 +991,11 @@ "keywords": [ "tokenizer" ], +<<<<<<< HEAD "time": "2017-11-27T05:48:46+00:00" +======= + "time": "2017-12-04T08:55:13+00:00" +>>>>>>> Check for PHP 5.6 }, { "name": "phpunit/phpunit", @@ -1016,7 +1077,11 @@ "testing", "xunit" ], +<<<<<<< HEAD "time": "2018-02-01T05:50:59+00:00" +======= + "time": "2017-06-21T08:07:12+00:00" +>>>>>>> Check for PHP 5.6 }, { "name": "phpunit/phpunit-mock-objects", @@ -1075,6 +1140,7 @@ "mock", "xunit" ], +<<<<<<< HEAD "time": "2017-06-30T09:13:00+00:00" }, { @@ -1121,6 +1187,9 @@ "description": "Looks up which function or method a line of code belongs to", "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", "time": "2017-03-04T06:30:41+00:00" +======= + "time": "2015-10-02T06:51:40+00:00" +>>>>>>> Check for PHP 5.6 }, { "name": "sebastian/comparator", @@ -1286,7 +1355,11 @@ "environment", "hhvm" ], +<<<<<<< HEAD "time": "2016-11-26T07:53:53+00:00" +======= + "time": "2016-08-18T05:49:44+00:00" +>>>>>>> Check for PHP 5.6 }, { "name": "sebastian/exporter", @@ -1353,7 +1426,11 @@ "export", "exporter" ], +<<<<<<< HEAD "time": "2016-11-19T08:54:04+00:00" +======= + "time": "2016-06-17T09:04:28+00:00" +>>>>>>> Check for PHP 5.6 }, { "name": "sebastian/global-state", @@ -1405,6 +1482,7 @@ "global state" ], "time": "2015-10-12T03:26:01+00:00" +<<<<<<< HEAD }, { "name": "sebastian/object-enumerator", @@ -1451,6 +1529,8 @@ "description": "Traverses array structures and object graphs to enumerate all referenced objects", "homepage": "https://github.com/sebastianbergmann/object-enumerator/", "time": "2017-02-18T15:18:39+00:00" +======= +>>>>>>> Check for PHP 5.6 }, { "name": "sebastian/recursion-context", @@ -1503,6 +1583,7 @@ ], "description": "Provides functionality to recursively process PHP variables", "homepage": "http://www.github.com/sebastianbergmann/recursion-context", +<<<<<<< HEAD "time": "2016-11-19T07:33:16+00:00" }, { @@ -1546,6 +1627,9 @@ "description": "Provides a list of PHP built-in functions that operate on resources", "homepage": "https://www.github.com/sebastianbergmann/resource-operations", "time": "2015-07-28T20:34:47+00:00" +======= + "time": "2016-10-03T07:41:43+00:00" +>>>>>>> Check for PHP 5.6 }, { "name": "sebastian/version", @@ -1588,6 +1672,7 @@ ], "description": "Library that helps with managing the version number of Git-hosted PHP projects", "homepage": "https://github.com/sebastianbergmann/version", +<<<<<<< HEAD "time": "2016-10-03T07:35:21+00:00" }, { @@ -1602,6 +1687,22 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/yaml/zipball/ffc60bda1d4a00ec0b32eeabf39dc017bf480028", "reference": "ffc60bda1d4a00ec0b32eeabf39dc017bf480028", +======= + "time": "2015-06-21T13:59:46+00:00" + }, + { + "name": "symfony/yaml", + "version": "v3.4.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "eab73b6c21d27ae4cd037c417618dfd4befb0bfe" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/eab73b6c21d27ae4cd037c417618dfd4befb0bfe", + "reference": "eab73b6c21d27ae4cd037c417618dfd4befb0bfe", +>>>>>>> Check for PHP 5.6 "shasum": "" }, "require": { @@ -1646,7 +1747,11 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", +<<<<<<< HEAD "time": "2018-01-21T19:06:11+00:00" +======= + "time": "2018-01-21T19:05:02+00:00" +>>>>>>> Check for PHP 5.6 }, { "name": "webmozart/assert", @@ -1708,6 +1813,12 @@ }, "prefer-stable": false, "prefer-lowest": false, - "platform": [], - "platform-dev": [] + "platform": { + "php": ">=5.6.0", + "ext-pdo": "*" + }, + "platform-dev": [], + "platform-overrides": { + "php": "5.6.0" + } } From 1e423e880e4aa6789d6ba1a30622bd5554496fea Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Mon, 19 Feb 2018 19:38:23 +0100 Subject: [PATCH 4/5] rebase Signed-off-by: Thomas Citharel --- composer.lock | 135 +++++--------------------------------------------- 1 file changed, 12 insertions(+), 123 deletions(-) diff --git a/composer.lock b/composer.lock index 6900d88..614073c 100644 --- a/composer.lock +++ b/composer.lock @@ -4,11 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], -<<<<<<< HEAD - "content-hash": "049183d97fa9891b1fed52d2d2c650f6", -======= - "content-hash": "ca65bb3c4c4e869d5d98afe8369236a5", ->>>>>>> Check for PHP 5.6 + "content-hash": "4c6d81bc7ff768fe3e4842cd9e671b21", "packages": [ { "name": "ircmaxell/password-compat", @@ -181,21 +177,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", -<<<<<<< HEAD - "reference": "5ebdd35b291cf9be4a425022872cb3aaf03192df" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/5ebdd35b291cf9be4a425022872cb3aaf03192df", - "reference": "5ebdd35b291cf9be4a425022872cb3aaf03192df", -======= "reference": "94230db36bded9d164ffccabcb38c67eedd63595" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/94230db36bded9d164ffccabcb38c67eedd63595", "reference": "94230db36bded9d164ffccabcb38c67eedd63595", ->>>>>>> Check for PHP 5.6 "shasum": "" }, "conflict": { @@ -245,11 +232,7 @@ "onelogin/php-saml": "<2.10.4", "oro/crm": ">=1.7,<1.7.4", "oro/platform": ">=1.7,<1.7.4", -<<<<<<< HEAD - "padraic/file_get_contents": "<1.1.2", -======= "padraic/humbug_get_contents": "<1.1.2", ->>>>>>> Check for PHP 5.6 "phpmailer/phpmailer": ">=5,<5.2.24", "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3", "phpxmlrpc/extras": "<0.6.1", @@ -284,7 +267,7 @@ "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4", "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7", "thelia/backoffice-default-template": ">=2.1,<2.1.2", - "thelia/thelia": ">=2.1,<2.1.2|>=2.1.0-beta1,<2.1.3", + "thelia/thelia": ">=2.1.0-beta1,<2.1.3|>=2.1,<2.1.2", "twig/twig": "<1.20", "typo3/cms": ">=6.2,<6.2.30|>=7,<7.6.22|>=8,<8.7.5", "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.10|>=3.1,<3.1.7|>=3.2,<3.2.7|>=3.3,<3.3.5", @@ -333,11 +316,7 @@ } ], "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it", -<<<<<<< HEAD - "time": "2018-02-13T10:17:11+00:00" -======= "time": "2018-02-19T09:31:21+00:00" ->>>>>>> Check for PHP 5.6 }, { "name": "smarty/smarty", @@ -446,8 +425,7 @@ "constructor", "instantiate" ], -<<<<<<< HEAD - "time": "2017-07-22T11:58:36+00:00" + "time": "2015-06-14T21:17:01+00:00" }, { "name": "myclabs/deep-copy", @@ -493,9 +471,6 @@ "object graph" ], "time": "2017-10-19T19:58:43+00:00" -======= - "time": "2015-06-14T21:17:01+00:00" ->>>>>>> Check for PHP 5.6 }, { "name": "phpdocumentor/reflection-common", @@ -553,18 +528,6 @@ }, { "name": "phpdocumentor/reflection-docblock", -<<<<<<< HEAD - "version": "4.3.0", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "94fd0001232e47129dd3504189fa1c7225010d08" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08", - "reference": "94fd0001232e47129dd3504189fa1c7225010d08", -======= "version": "3.3.2", "source": { "type": "git", @@ -575,7 +538,6 @@ "type": "zip", "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bf329f6c1aadea3299f08ee804682b7c45b326a2", "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2", ->>>>>>> Check for PHP 5.6 "shasum": "" }, "require": { @@ -607,11 +569,7 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", -<<<<<<< HEAD - "time": "2017-11-30T07:14:17+00:00" -======= "time": "2017-11-10T14:09:06+00:00" ->>>>>>> Check for PHP 5.6 }, { "name": "phpdocumentor/type-resolver", @@ -662,18 +620,6 @@ }, { "name": "phpspec/prophecy", -<<<<<<< HEAD - "version": "1.7.4", - "source": { - "type": "git", - "url": "https://github.com/phpspec/prophecy.git", - "reference": "9f901e29c93dae4aa77c0bb161df4276f9c9a1be" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/9f901e29c93dae4aa77c0bb161df4276f9c9a1be", - "reference": "9f901e29c93dae4aa77c0bb161df4276f9c9a1be", -======= "version": "1.7.5", "source": { "type": "git", @@ -684,7 +630,6 @@ "type": "zip", "url": "https://api.github.com/repos/phpspec/prophecy/zipball/dfd6be44111a7c41c2e884a336cc4f461b3b2401", "reference": "dfd6be44111a7c41c2e884a336cc4f461b3b2401", ->>>>>>> Check for PHP 5.6 "shasum": "" }, "require": { @@ -734,11 +679,7 @@ "spy", "stub" ], -<<<<<<< HEAD - "time": "2018-02-11T18:49:29+00:00" -======= "time": "2018-02-19T10:16:54+00:00" ->>>>>>> Check for PHP 5.6 }, { "name": "phpunit/php-code-coverage", @@ -801,11 +742,7 @@ "testing", "xunit" ], -<<<<<<< HEAD "time": "2017-04-02T07:44:40+00:00" -======= - "time": "2015-10-06T15:47:00+00:00" ->>>>>>> Check for PHP 5.6 }, { "name": "phpunit/php-file-iterator", @@ -946,29 +883,29 @@ }, { "name": "phpunit/php-token-stream", - "version": "2.0.2", + "version": "1.4.12", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-token-stream.git", - "reference": "791198a2c6254db10131eecfe8c06670700904db" + "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db", - "reference": "791198a2c6254db10131eecfe8c06670700904db", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16", + "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16", "shasum": "" }, "require": { "ext-tokenizer": "*", - "php": "^7.0" + "php": ">=5.3.3" }, "require-dev": { - "phpunit/phpunit": "^6.2.4" + "phpunit/phpunit": "~4.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "1.4-dev" } }, "autoload": { @@ -991,11 +928,7 @@ "keywords": [ "tokenizer" ], -<<<<<<< HEAD - "time": "2017-11-27T05:48:46+00:00" -======= "time": "2017-12-04T08:55:13+00:00" ->>>>>>> Check for PHP 5.6 }, { "name": "phpunit/phpunit", @@ -1077,11 +1010,7 @@ "testing", "xunit" ], -<<<<<<< HEAD "time": "2018-02-01T05:50:59+00:00" -======= - "time": "2017-06-21T08:07:12+00:00" ->>>>>>> Check for PHP 5.6 }, { "name": "phpunit/phpunit-mock-objects", @@ -1140,7 +1069,6 @@ "mock", "xunit" ], -<<<<<<< HEAD "time": "2017-06-30T09:13:00+00:00" }, { @@ -1187,9 +1115,6 @@ "description": "Looks up which function or method a line of code belongs to", "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", "time": "2017-03-04T06:30:41+00:00" -======= - "time": "2015-10-02T06:51:40+00:00" ->>>>>>> Check for PHP 5.6 }, { "name": "sebastian/comparator", @@ -1355,11 +1280,7 @@ "environment", "hhvm" ], -<<<<<<< HEAD "time": "2016-11-26T07:53:53+00:00" -======= - "time": "2016-08-18T05:49:44+00:00" ->>>>>>> Check for PHP 5.6 }, { "name": "sebastian/exporter", @@ -1426,11 +1347,7 @@ "export", "exporter" ], -<<<<<<< HEAD "time": "2016-11-19T08:54:04+00:00" -======= - "time": "2016-06-17T09:04:28+00:00" ->>>>>>> Check for PHP 5.6 }, { "name": "sebastian/global-state", @@ -1482,7 +1399,6 @@ "global state" ], "time": "2015-10-12T03:26:01+00:00" -<<<<<<< HEAD }, { "name": "sebastian/object-enumerator", @@ -1529,8 +1445,6 @@ "description": "Traverses array structures and object graphs to enumerate all referenced objects", "homepage": "https://github.com/sebastianbergmann/object-enumerator/", "time": "2017-02-18T15:18:39+00:00" -======= ->>>>>>> Check for PHP 5.6 }, { "name": "sebastian/recursion-context", @@ -1583,7 +1497,6 @@ ], "description": "Provides functionality to recursively process PHP variables", "homepage": "http://www.github.com/sebastianbergmann/recursion-context", -<<<<<<< HEAD "time": "2016-11-19T07:33:16+00:00" }, { @@ -1627,9 +1540,6 @@ "description": "Provides a list of PHP built-in functions that operate on resources", "homepage": "https://www.github.com/sebastianbergmann/resource-operations", "time": "2015-07-28T20:34:47+00:00" -======= - "time": "2016-10-03T07:41:43+00:00" ->>>>>>> Check for PHP 5.6 }, { "name": "sebastian/version", @@ -1672,24 +1582,8 @@ ], "description": "Library that helps with managing the version number of Git-hosted PHP projects", "homepage": "https://github.com/sebastianbergmann/version", -<<<<<<< HEAD "time": "2016-10-03T07:35:21+00:00" }, - { - "name": "symfony/yaml", - "version": "v4.0.4", - "source": { - "type": "git", - "url": "https://github.com/symfony/yaml.git", - "reference": "ffc60bda1d4a00ec0b32eeabf39dc017bf480028" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/ffc60bda1d4a00ec0b32eeabf39dc017bf480028", - "reference": "ffc60bda1d4a00ec0b32eeabf39dc017bf480028", -======= - "time": "2015-06-21T13:59:46+00:00" - }, { "name": "symfony/yaml", "version": "v3.4.4", @@ -1702,11 +1596,10 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/yaml/zipball/eab73b6c21d27ae4cd037c417618dfd4befb0bfe", "reference": "eab73b6c21d27ae4cd037c417618dfd4befb0bfe", ->>>>>>> Check for PHP 5.6 "shasum": "" }, "require": { - "php": "^7.1.3" + "php": "^5.5.9|>=7.0.8" }, "conflict": { "symfony/console": "<3.4" @@ -1720,7 +1613,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-master": "3.4-dev" } }, "autoload": { @@ -1747,11 +1640,7 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", -<<<<<<< HEAD - "time": "2018-01-21T19:06:11+00:00" -======= "time": "2018-01-21T19:05:02+00:00" ->>>>>>> Check for PHP 5.6 }, { "name": "webmozart/assert", From c2e00ef4d6ecb166605f5b89fe3318c1462412fe Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Mon, 19 Feb 2018 19:38:43 +0100 Subject: [PATCH 5/5] remove nginx for now Signed-off-by: Thomas Citharel --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 8a23955..67d9ee2 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,5 +1,5 @@ # Pré-requis -- Apache ou Nginx +- Apache - MySQL ou PostgreSQL - PHP 5.6+ - [Composer](https://getcomposer.org/)