Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/edsonbonfim/php-orm
Implementação do padrão de projeto active record em PHP
https://github.com/edsonbonfim/php-orm
activerecord database model orm pdo php sql
Last synced: 4 days ago
JSON representation
Implementação do padrão de projeto active record em PHP
- Host: GitHub
- URL: https://github.com/edsonbonfim/php-orm
- Owner: edsonbonfim
- License: mit
- Created: 2018-03-08T20:40:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-15T20:17:55.000Z (about 5 years ago)
- Last Synced: 2024-04-03T18:22:05.039Z (8 months ago)
- Topics: activerecord, database, model, orm, pdo, php, sql
- Language: PHP
- Homepage:
- Size: 97.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
activerecord.php
================[![Latest Version on Packagist][ico-version]][link-packagist]
[![Software License][ico-license]](LICENSE.md)
[![Build Status][ico-travis]][link-travis]
[![Coverage Status][ico-scrutinizer]][link-scrutinizer]
[![Quality Score][ico-code-quality]][link-code-quality]
[![Total Downloads][ico-downloads]][link-downloads]Implementação do padrão de projeto active record em PHP
Table of Contents
-----------------* [Prerequisites](#prerequisites)
* [Supported Databases](#supported-databases)
* [Installation](#installation)
* [Basic CRUD](#basic-crud)
* [Retrieve](#retrieve)
* [Create](#create)
* [Update](#update)
* [Delete](#delete)
* [Contributing](#contributing)
* [Security](#security)
* [Credits](#credits)
* [License](#license)Prerequisites
-------------* PHP 7.1+
* PDO driver for your respective databaseSupported Databases
-------------------* MySQL
* SQLite
* PostgreSQL
* OracleInstallation
------------Require via [composer](https://getcomposer.org/download/)
``` sh
$ composer require edsononildo/orm
```Create an **index.php** file and require the autoload.php of composer
```php
title = 'My first blog post!!';
$post->author_name = 'Edson Onildo';
$post->save();
``````sql
INSERT INTO `posts` (`title`, `author_name`) VALUES ("My first blog post!!", "Edson Onildo");
```### Update
To update you would just need to find a record first and then change one of its attributes.
```php
$post = Post::find('WHERE `id` = ?', [1])[0];
echo $post->title; // 'My first blog post!!'
$post->title = 'Some title';
$post->save();
``````sql
UPDATE `posts` SET title='Some title' WHERE id=1;
```### Delete
Deleting a record will not destroy the object. This means that it will call sql to delete the record in your database but you can still use the object if you need to.
```php
$post = Post::find('WHERE `id` = ?');
$post->delete();
``````sql
DELETE FROM `posts` WHERE id=1;
```Change log
----------Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
Testing
-------``` bash
$ composer test
```Contributing
------------Please see [CONTRIBUTING](CONTRIBUTING.md) and [CODE_OF_CONDUCT](CODE_OF_CONDUCT.md) for details.
Security
--------If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Credits
-------- [Edson Onildo][link-author]
- [All Contributors][link-contributors]License
-------The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
[ico-version]: https://img.shields.io/packagist/v/edsononildo/orm.svg?style=flat-square
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
[ico-travis]: https://img.shields.io/travis/EdsonOnildoJR/activerecord.php/master.svg?style=flat-square
[ico-scrutinizer]: https://img.shields.io/scrutinizer/coverage/g/EdsonOnildoJR/activerecord.php.svg?style=flat-square
[ico-code-quality]: https://img.shields.io/scrutinizer/g/EdsonOnildoJR/activerecord.php.svg?style=flat-square
[ico-downloads]: https://img.shields.io/packagist/dt/edsononildo/orm.svg?style=flat-square[link-packagist]: https://packagist.org/packages/edsononildo/orm
[link-travis]: https://travis-ci.org/EdsonOnildoJR/activerecord.php
[link-scrutinizer]: https://scrutinizer-ci.com/g/EdsonOnildoJR/activerecord.php/code-structure
[link-code-quality]: https://scrutinizer-ci.com/g/EdsonOnildoJR/activerecord.php
[link-downloads]: https://packagist.org/packages/edsononildo/orm
[link-author]: https://github.com/EdsonOnildoJR
[link-contributors]: ../../contributors