Skip to content

Releases: Codeception/module-laravel

2.0.0

29 Dec 20:52
f32a941
Compare
Choose a tag to compare

New features:

  • Laravel 6, Laravel 7, and Laravel 8 compatibility.
  • Module documentation updated.
  • Added typed arguments.
  • Updated the module's code base following PHP 7.3+ standards.

Breaking changes:

  • Removed support for PHP versions lower than PHP 7.3.
  • Removed support for Laravel 5 and lower.
  • The Codeception\Module\Laravel5 class was renamed to Codeception\Module\Laravel:
# tests/funcional.suite.yml
modules:
  enabled:
    - Asserts
-    - Laravel5:
+    - Laravel:
        environment_file: .env.testing

Minor change: Adding link to "central" parts explanation (#8) by @ThomasLandauer.

If you're interested in contributing to this module and didn't know where to start, a contribution guide is now available, thanks to @ThomasLandauer and @TavoNiievez.

1.1.2

26 Dec 15:43
84bb09b
Compare
Choose a tag to compare

Update project name to module-laravel (#4)

1.1.1

26 Dec 14:18
Compare
Choose a tag to compare

Support PHP 8 (Depends on Laravel libraries actually supporting PHP 8) by @Naktibalda