From 6ce77e36af3c010f02c6cdf08cca1299df5a437e Mon Sep 17 00:00:00 2001 From: Takieddine Messaoudi Date: Tue, 14 Jun 2022 15:14:02 +0100 Subject: [PATCH 1/3] feature: Upgrade lightsaml to 2.0 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index a004d2d..3377ab0 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ }, "require": { "php": ">=5.5.1", - "lightsaml/lightsaml": "^1.1" + "lightsaml/lightsaml": "^1.4|^2.0" }, "require-dev": { "phpunit/phpunit": "~4.8", From ddf320a02c139f31880f7e1238792b35642b9842 Mon Sep 17 00:00:00 2001 From: Takieddine Messaoudi Date: Tue, 21 Jun 2022 14:21:00 +0100 Subject: [PATCH 2/3] feature: Upgrade lightsaml to litesaml and sf to 5/6 --- .gitignore | 2 ++ CHANGELOG.md | 13 +++++++++++++ composer.json | 14 +++++++++++--- 3 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.gitignore b/.gitignore index 6afe3ab..875888a 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,5 @@ /composer.lock /*.phar /*.cache + +/.idea \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..1c0f6df --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog + +[unreleased] +## [2.0.0] - 2022-06-21 +### Added +- Symfony 5.0/6.0 support + +### Changed +- Php minimum version to 7.2.5 +- lightsaml/lightsaml to litesaml/lightsaml + +### Removed +- Support for symfony <= 4.x \ No newline at end of file diff --git a/composer.json b/composer.json index 3377ab0..98e9a21 100644 --- a/composer.json +++ b/composer.json @@ -9,12 +9,20 @@ "LightSaml\\Idp\\": "src/" } }, + "authors": [ + { + "name": "Takieddine Messaoudi", + "email": "tmessaoudi@smart-team.tn", + "homepage": "https://www.smart-team.tn", + "role": "Developer" + } + ], "require": { - "php": ">=5.5.1", - "lightsaml/lightsaml": "^1.4|^2.0" + "php": ">=7.2.5", + "litesaml/lightsaml": "^3.0" }, "require-dev": { - "phpunit/phpunit": "~4.8", + "phpunit/phpunit": "~8.4|~9.5", "satooshi/php-coveralls": "~0.6" }, "config": { From a8e88cfa7bb105cd7cd0fea748feb3d9b04a7e68 Mon Sep 17 00:00:00 2001 From: Takieddine Messaoudi Date: Tue, 21 Jun 2022 14:37:08 +0100 Subject: [PATCH 3/3] Added authors --- composer.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/composer.json b/composer.json index 98e9a21..6f933bd 100644 --- a/composer.json +++ b/composer.json @@ -10,6 +10,12 @@ } }, "authors": [ + { + "name": "Milos Tomic", + "email": "tmilos@gmail.com", + "homepage": "http://github.com/tmilos", + "role": "Developer" + }, { "name": "Takieddine Messaoudi", "email": "tmessaoudi@smart-team.tn",