Bump php version to 7.3

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2020-12-11 17:38:33 +01:00
parent eab3150ba6
commit cb7823574e
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
6 changed files with 2407 additions and 787 deletions

View File

@ -1,6 +1,5 @@
<?php <?php
namespace Framadate\Security; namespace Framadate\Security;
/** /**

View File

@ -1,6 +1,5 @@
<?php <?php
namespace Framadate\Services; namespace Framadate\Services;
use \stdClass; use \stdClass;

View File

@ -1,6 +1,5 @@
<?php <?php
namespace Framadate\Services; namespace Framadate\Services;
class SessionService { class SessionService {

View File

@ -21,7 +21,7 @@
const VERSION = '1.1.11'; const VERSION = '1.1.11';
// PHP Needed version // PHP Needed version
const PHP_NEEDED_VERSION = '5.6'; const PHP_NEEDED_VERSION = '7.3';
// Config constants // Config constants
const COMPILE_DIR = '/tpl_c/'; const COMPILE_DIR = '/tpl_c/';

View File

@ -2,10 +2,12 @@
"name": "framasoft/framadate", "name": "framasoft/framadate",
"description": "Application to facilitate the schedule of events or classic polls", "description": "Application to facilitate the schedule of events or classic polls",
"homepage": "https://framadate.org/", "homepage": "https://framadate.org/",
"keywords": ["poll", "framadate"], "keywords": [
"poll",
"framadate"
],
"version": "0.9.0", "version": "0.9.0",
"license": "CECILL-B", "license": "CECILL-B",
"type": "project", "type": "project",
"support": { "support": {
"issues": "https://framagit.org/framasoft/framadate/issues" "issues": "https://framagit.org/framasoft/framadate/issues"
@ -52,33 +54,29 @@
"email": "raphael.droz@gmail.com" "email": "raphael.droz@gmail.com"
} }
], ],
"require": { "require": {
"php": ">=5.6.0", "php": ">=7.3.0",
"ext-pdo": "*", "ext-pdo": "*",
"smarty/smarty": "^3.1", "smarty/smarty": "^3.1",
"o80/i18n": "dev-develop", "o80/i18n": "dev-develop",
"phpmailer/phpmailer": "~6.0", "phpmailer/phpmailer": "~6.2",
"ircmaxell/password-compat": "dev-master", "ircmaxell/password-compat": "dev-master",
"roave/security-advisories": "dev-master", "roave/security-advisories": "dev-master",
"erusev/parsedown": "^1.7", "erusev/parsedown": "^1.7",
"egulias/email-validator": "~2.1" "egulias/email-validator": "~2.1"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^5.7", "phpunit/phpunit": "^9",
"friendsofphp/php-cs-fixer": "~2.0" "friendsofphp/php-cs-fixer": "~2.0"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"Framadate\\": "app/classes/Framadate/" "Framadate\\": "app/classes/Framadate/"
} }
}, },
"config": { "config": {
"platform": { "platform": {
"php": "5.6.0" "php": "7.3.0"
} }
} }
} }

3177
composer.lock generated

File diff suppressed because it is too large Load Diff