Download the PHP package nextphp/data without Composer
On this page you can find all versions of the php package nextphp/data. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package data
Short Description The NextPHP Data package is a powerful tool for PHP developers, providing ORM capabilities and direct SQL query execution. This package is part of the NextPHP Framework, a modern and lightweight PHP framework designed for performance and scalability.
License MIT
Homepage https://nextphp.io
Informations about the package data
NextPHP Data Package
The NextPHP Data package is a powerful tool for PHP developers, providing ORM capabilities and direct SQL query execution. It simplifies database interactions by allowing developers to work with objects instead of raw SQL queries. With support for attributes to define entities and relationships, NextPHP Data ensures a clean and efficient codebase.
This package is part of the NextPHP Framework, a modern and lightweight PHP framework designed for performance and scalability. NextPHP aims to provide a comprehensive suite of tools and libraries to streamline the development process.
Features
- ORM with attribute-based entity definitions
- Direct SQL query capabilities
- Transactional support
- Relationship handling (OneToMany, ManyToOne, etc.)
- Easy integration with existing projects
Installation
Installing via Composer
To install the NextPHP Data package, you need to add it to your project using Composer.
Example Project using NextPHP Data
This is an example project demonstrating the usage of the NextPHP Data package, which includes ORM and direct SQL query capabilities.
Basic Usage
Defining Entities
Entities represent the tables in your database. Use attributes to define the properties and their types.
Usage
Using Entity
Advanced Entity Usage
Relationships OneToMany and ManyToOne Define relationships using attributes.
Using Repository
Repositories handle database operations for entities. Extend BaseRepository and specify the entity class.
Service Layer
Services provide business logic and interact with repositories.
Example Project
Example for your Project Structure
Testing
To test the NextPHP Data package, you can create an index.php
file and use the service layer to perform various CRUD operations. Here is an example of how you can do this:
Example index or example.php
Contributing
We welcome contributions! Here’s how you can help:
- Report Issues: Found a bug? Report it on GitHub.
- Suggest Features: Have an idea? Share it with us.
- Submit Pull Requests: Improve the codebase.
- Enhance Documentation: Help us improve our docs.
For more details, see our Contribution Guidelines.
Resources
Join Our Community
Contact Us
- Email: [email protected]
- Forum: NextPHP Mastodon
- GitHub Issues: NextPHP GitHub
Thank you for being part of the NextPHP community!
FAQ
Q: How do I define an entity?
A: Use the #[Entity] attribute to define a class as an entity and the #[Entity(name: "table_name")] OR #[Table(name: "table_name")] attribute to specify the table name.
For more details, see our FAQ.
All versions of data with dependencies
ext-pdo Version *