Skip to content

Releases: josantonius/php-session

1.1.9

21 Jun 11:36
Compare
Choose a tag to compare

IMPORTANT

  • Version 1.x is considered as deprecated and unsupported.

  • In the next version (2.x) the library will be completely restructured and will only be compatible with PHP 8 or higher versions.

  • It is recommended to review the documentation for the next version and make the necessary changes before starting to use it, as it will not be compatible with version 1.x.


  • Improved documentation; README.md, CODE_OF_CONDUCT.md, CONTRIBUTING.md and CHANGELOG.md.

  • Removed Codacy.

  • Removed PHP Coding Standards Fixer.

  • The master branch was renamed to main.

  • The develop branch was added to use a workflow based on Git Flow.

  • Travis is discontinued for continuous integration. GitHub Actions will be used from now on.

  • Added .github/CODE_OF_CONDUCT.md file.

  • Added .github/CONTRIBUTING.md file.

  • Added .github/FUNDING.yml file.

  • Added .github/workflows/ci.yml file.

  • Added .github/lang/es-ES/CODE_OF_CONDUCT.md file.

  • Added .github/lang/es-ES/CONTRIBUTING.md file.

  • Added .github/lang/es-ES/LICENSE file.

  • Added .github/lang/es-ES/README file.

  • Deleted .travis.yml file.

  • Deleted .editorconfig file.

  • Deleted CONDUCT.MD file.

  • Deleted README-ES.MD file.

  • Deleted .php_cs.dist file.

1.1.8

04 May 08:20
Compare
Choose a tag to compare
  • Added ability to set a lifeTime during session init and added tests.

1.1.7

07 Jan 13:17
Compare
Choose a tag to compare
  • The tests were fixed.

  • Changes in documentation.

1.1.6

12 Nov 20:29
Compare
Choose a tag to compare
  • Set the correct phpcbf fix command in composer.json.

  • Logical condition was unified.

  • Set static methods should in tests class. Use :: instead of ->.

  • Added Josantonius\Session\Session::getPrefix() method.

  • Added Josantonius\Session\Tests\SessionTest::testSetPrefix() method.

1.1.5

09 Nov 00:29
Compare
Choose a tag to compare
  • Implemented PHP Mess Detector to detect inconsistencies in code styles.

  • Implemented PHP Code Beautifier and Fixer to fixing errors automatically.

  • Implemented PHP Coding Standards Fixer to organize PHP code automatically according to PSR standards.

1.1.4

02 Nov 22:40
Compare
Choose a tag to compare
  • Implemented PSR-4 autoloader standard from all library files.

  • Implemented PSR-2 coding standard from all library PHP files.

  • Implemented PHPCS to ensure that PHP code complies with PSR2 code standards.

  • Implemented Codacy to automates code reviews and monitors code quality over time.

  • Implemented Codecov to coverage reports.

  • Added Session/phpcs.ruleset.xml file.

  • Deleted Session/src/bootstrap.php file.

  • Deleted Session/tests/bootstrap.php file.

  • Deleted Session/vendor folder.

  • Changed Josantonius\Session\Test\SessionTest class to Josantonius\Session\SessionTest class.

1.1.3

17 Sep 22:20
Compare
Choose a tag to compare
  • Unit tests supported by PHPUnit were added.

  • The repository was synchronized with Travis CI to implement continuous integration.

  • Added Session/src/bootstrap.php file

  • Added Session/tests/bootstrap.php file.

  • Added Session/phpunit.xml.dist file.

  • Added Session/_config.yml file.

  • Added Session/.travis.yml file.

  • Deleted Josantonius\Session\Session::display() method.

  • Deleted Josantonius\Session\Tests\SessionTest class.

  • Deleted Josantonius\Session\Tests\SessionTest::testSetPrefix() method.

  • Deleted Josantonius\Session\Tests\SessionTest::testSet() method.

  • Deleted Josantonius\Session\Tests\SessionTest::testSetMultiple() method.

  • Deleted Josantonius\Session\Tests\SessionTest::testPull() method.

  • Deleted Josantonius\Session\Tests\SessionTest::testGet() method.

  • Deleted Josantonius\Session\Tests\SessionTest::testGetSecondKey() method.

  • Deleted Josantonius\Session\Tests\SessionTest::testId() method.

  • Deleted Josantonius\Session\Tests\SessionTest::testRegenerate() method.

  • Deleted Josantonius\Session\Tests\SessionTest::testDisplay() method.

  • Deleted Josantonius\Session\Tests\SessionTest::testDestroyOneKeySession() method.

  • Deleted Josantonius\Session\Tests\SessionTest::testDestroyAllSessions() method.

  • Deleted Josantonius\Session\Tests\SessionTest::testDestroyAllSessions() method.

  • Added Josantonius\Session\Test\SessionTest class.

  • Added Josantonius\Session\Test\SessionTest::testSetPrefix() method.

  • Added Josantonius\Session\Test\SessionTest::testInit() method.

  • Added Josantonius\Session\Test\SessionTest::testSet() method.

  • Added Josantonius\Session\Test\SessionTest::testSetMultiple() method.

  • Added Josantonius\Session\Test\SessionTest::testPull() method.

  • Added Josantonius\Session\Test\SessionTest::testPullNonExistent() method.

  • Added Josantonius\Session\Test\SessionTest::testGet() method.

  • Added Josantonius\Session\Test\SessionTest::testGetNonExistent() method.

  • Added Josantonius\Session\Test\SessionTest::testGetWithSecondKey() method.

  • Added Josantonius\Session\Test\SessionTest::testGetWithSecondKeyNonExistent() method.

  • Added Josantonius\Session\Test\SessionTest::testGetAll() method.

  • Added Josantonius\Session\Test\SessionTest::testId() method.

  • Added Josantonius\Session\Test\SessionTest::testRegenerate() method.

  • Added Josantonius\Session\Test\SessionTest::testValidateRegenerateId() method.

  • Added Josantonius\Session\Test\SessionTest::testDestroy() method.

1.1.2

16 Jul 22:32
Compare
Choose a tag to compare
  • Added Josantonius\Session\Exception\SessionException class.
  • Added Josantonius\Session\Exception\Exceptions abstract class.
  • Added Josantonius\Session\Exception\SessionException->__construct() method.

1.1.1

18 Mar 05:09
Compare
Choose a tag to compare
  • Some files were excluded from download and comments and readme files were updated.

1.1.0

31 Jan 02:06
Compare
Choose a tag to compare
  • Compatible with PHP 5.6 or higher.