Skip to content

2.0.0

Compare
Choose a tag to compare
@TavoNiievez TavoNiievez released this 29 Dec 20:52
· 49 commits to main since this release
f32a941

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.