-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/add laravel 11 support and improve test quality #35
Feature/add laravel 11 support and improve test quality #35
Commits on Mar 16, 2024
-
Updating dependencies and refactoring ResponseFactoryTest and Seriali…
…zer/FactoryTest This commit updates the version numbers of several dependencies in composer.json and performs a significant refactoring of ResponseFactoryTest and Serializer/FactoryTest. The changes in ResponseFactoryTest include refactoring the test names and adding new test methods. At the same time, additional test methods were added and existing methods were revised. A new file, XmlDummy.php, is also created for testing purposes.
Configuration menu - View commit details
-
Copy full SHA for 2576b43 - Browse repository at this point
Copy the full SHA 2576b43View commit details -
Updating dependencies and refactoring ResponseFactoryTest and Seriali…
…zer/FactoryTest This commit updates the version numbers of several dependencies in composer.json and performs a significant refactoring of ResponseFactoryTest and Serializer/FactoryTest. The changes in ResponseFactoryTest include refactoring the test names and adding new test methods. At the same time, additional test methods were added and existing methods were revised. A new file, XmlDummy.php, is also created for testing purposes.
Configuration menu - View commit details
-
Copy full SHA for 12cb8de - Browse repository at this point
Copy the full SHA 12cb8deView commit details
Commits on Mar 19, 2024
-
Update php-cs-fixer version and revise support note in README
This commit increases the php-cs-fixer version in the composer.json file from "^3.51" to "^3.52". Furthermore, the support note section in the README.md file has been revised to present supported Laravel and PHP versions in a more detailed tabulated format.
Configuration menu - View commit details
-
Copy full SHA for 9864709 - Browse repository at this point
Copy the full SHA 9864709View commit details -
Update package versions and support status in README
The versions for Laravel 11 and 10 packages were updated in the support note section. Package version for Laravel 11 was changed to v6.x.x, and for Laravel 10 was updated to indicate it now supports versions greater than or equal to v5.x.x.
Configuration menu - View commit details
-
Copy full SHA for 24a380e - Browse repository at this point
Copy the full SHA 24a380eView commit details -
Simplify GitHub CI workflow and update PHP version
The CI workflow in Github has been simplified by removing coverage and coveralls, and modifying the composer test command execution. The PHP version in composer.json was updated to include PHP 8.3.
Configuration menu - View commit details
-
Copy full SHA for 0a7cda5 - Browse repository at this point
Copy the full SHA 0a7cda5View commit details -
Update GitHub CI workflow and composer settings for PHP versions
The CI workflow has been updated to reflect changes in the file path and caching keys for more specific PHP versions (8.1, 8.2, 8.3). The changes were made in the composer test command execution in the .github/workflows/ci.yml file.
Configuration menu - View commit details
-
Copy full SHA for aaa0491 - Browse repository at this point
Copy the full SHA aaa0491View commit details -
Upgrade version of actions/checkout action in CI workflow
The "actions/checkout" action version has been updated from v3 to v4 in the CI workflow file (.github/workflows/ci.yml). This change applies to multiple steps in the file, making the workflow use the more recent version of the action during the Checkout process.
Configuration menu - View commit details
-
Copy full SHA for 89b60d8 - Browse repository at this point
Copy the full SHA 89b60d8View commit details
Commits on May 13, 2024
-
Refactor tests and enhance JSON response
The tests have been restructured and json response has been enhanced. All test-related things within the "ResponseFactory" directory have been moved to a new "data" directory. Also, the composer.json file and ServiceProvider.php have been updated with new dependencies and adjustments. Updates to ResponseFactoryTest.php now allow JSON responses as well.
Configuration menu - View commit details
-
Copy full SHA for 2787d2f - Browse repository at this point
Copy the full SHA 2787d2fView commit details -
The .gitignore file was modified to optimize it for the project's current needs. Unnecessary Laravel specific ignores were removed and PHPUnit, Composer, and Package specific ignores were added. This change will ensure that irrelevant files are not tracked by the version control system.
Configuration menu - View commit details
-
Copy full SHA for 3662797 - Browse repository at this point
Copy the full SHA 3662797View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2128da0 - Browse repository at this point
Copy the full SHA 2128da0View commit details -
Remove unused code and update tests
The commit involves the removal of several unused lines of constants and code from ResponseFactory and composer.json. In addition, tests have also been updated to assert the instance type of ResponseFactory whenever it's gotten from the application container. Improvements were made to the type annotations in the ResponseFactory tests for clarity.
Configuration menu - View commit details
-
Copy full SHA for e62633b - Browse repository at this point
Copy the full SHA e62633bView commit details -
Upgrade actions/cache to v4 in CI workflow
The CI workflow has been updated to use the latest version of actions/cache (v4) for caching composer packages. This change was made in the configurations for PHP versions 8.1, 8.2, and 8.3 to ensure consistent usage of the updated cache action across all versions.
Configuration menu - View commit details
-
Copy full SHA for 58ccece - Browse repository at this point
Copy the full SHA 58cceceView commit details -
Update composer and CI workflow for better test coverage
Updated composer.json to enhance PHPUnit test coverage options and added 'infection-ci' for CI testing. Modified CI workflow to use 'infection-ci' for more efficient infection testing across different PHP versions.
Configuration menu - View commit details
-
Copy full SHA for f8ab32a - Browse repository at this point
Copy the full SHA f8ab32aView commit details -
Update test command in CI workflow
The command for running tests in the CI workflow file has been changed from "composer test" to "composer test-coverage". This will aid in providing more detailed test coverage reports during the continuous integration process, thus helping in identifying untested areas of code and improving overall code quality and reliability.
Configuration menu - View commit details
-
Copy full SHA for 0d5068e - Browse repository at this point
Copy the full SHA 0d5068eView commit details -
Add CI trigger for main branch
An addition was made to the CI workflow file to include triggers on push events to the main branch. Providing continuous integration support for the main branch will help ensure code stability and quality.
Configuration menu - View commit details
-
Copy full SHA for 24a7365 - Browse repository at this point
Copy the full SHA 24a7365View commit details -
Simplify PHPUnit Tests in GitHub Actions
The commit removes the Coveralls report generation from the GitHub Actions workflow. Now, the workflow only executes the test coverage without performing the extra steps for Coveralls report generation. This streamlines the GitHub Actions process by reducing complex steps.
Configuration menu - View commit details
-
Copy full SHA for d6f04b6 - Browse repository at this point
Copy the full SHA d6f04b6View commit details -
Update thread count for infection-ci in composer.json
Reduced the number of threads used by the 'infection-ci' command in the composer.json file. The change decreases the thread usage from 16 to 4, which may impact the execution speed but helps to reduce resource consumption.
Configuration menu - View commit details
-
Copy full SHA for 86f2703 - Browse repository at this point
Copy the full SHA 86f2703View commit details