-
-
Notifications
You must be signed in to change notification settings - Fork 4
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
Implement PHP 8.1 with Breaking change features #14
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes multiple changes to improve PHP version compatibility, update documentation, and enhance the ORM functionality. The most important changes include updating the PHP versions in the CI workflow, adding comprehensive documentation for the ORM, and introducing new attributes for models and tables.
PHP Version Compatibility:
.github/workflows/phpunit.yml
: Updated the PHP versions in the CI workflow to include 8.3 and removed older versions 8.0 and 7.4. Added a step to run Psalm for static analysis.composer.json
: Updated the required PHP version to>=8.1
and updated dependencies forbyjg/anydataset-db
andphpunit/phpunit
. Addedvimeo/psalm
for static analysis.Documentation Enhancements:
README.md
: Added a comprehensive "Getting Started" section detailing table structure, model definition, repository connection, and querying the database.docs/model.md
: Added detailed documentation on model attributes, including examples and usage rules.docs/repository.md
: Introduced documentation for theRepository
class, including helper and query methods.ORM Enhancements:
src/Attributes/FieldAttribute.php
: Introduced theFieldAttribute
class to define properties in the model that map to database fields.src/Attributes/TableAttribute.php
: Introduced theTableAttribute
class to define the table structure in the database.src/Attributes/TableUuidPKAttribute.php
,src/Attributes/TableMySqlUuidPKAttribute.php
,src/Attributes/TableSqliteUuidPKAttribute.php
: Added new attributes for handling UUID primary keys in different database systems. [1] [2] [3]Configuration and Miscellaneous:
.idea/runConfigurations/PHPUnit.xml
: Added a new run configuration for PHPUnit.psalm.xml
: Added a Psalm configuration file for static analysis.example.php
: Removed the example script to clean up the repository.