|
|
@@ -34,6 +34,7 @@ A curated list of amazingly awesome PHP libraries, resources and shiny things.
|
|
34
|
34
|
- [E-commerce](#e-commerce)
|
|
35
|
35
|
- [PDF](#pdf)
|
|
36
|
36
|
- [ORM and Datamapping](#orm-and-datamapping)
|
|
|
37
|
+ - [Migrations](#migrations)
|
|
37
|
38
|
- [NoSQL](#nosql)
|
|
38
|
39
|
- [Queue](#queue)
|
|
39
|
40
|
- [Search](#search)
|
|
|
@@ -381,20 +382,22 @@ A curated list of amazingly awesome PHP libraries, resources and shiny things.
|
|
381
|
382
|
*Libraries that implement object-relational mapping or datamapping techniques.*
|
|
382
|
383
|
|
|
383
|
384
|
* [Doctrine](http://www.doctrine-project.org/) - A comprehensive DBAL and ORM.
|
|
384
|
|
-* [Doctrine Migrations](http://docs.doctrine-project.org/projects/doctrine-migrations/en/latest/toc.html) - A migration library for Doctrine.
|
|
385
|
385
|
* [Doctrine Extensions](https://github.com/l3pp4rd/DoctrineExtensions) - A collection of Doctrine behavioural extensions.
|
|
386
|
386
|
* [Propel](http://www.propelorm.org/) - A fast ORM, migration library and query builder.
|
|
387
|
387
|
* [Eloquent](https://github.com/illuminate/database) - The Laravel 4 ORM.
|
|
388
|
388
|
* [Baum](https://github.com/etrepat/baum) - A nested set implementation for Eloquent.
|
|
389
|
389
|
* [Spot2](https://github.com/vlucas/spot2) - A MySQL datamapper ORM.
|
|
390
|
390
|
* [RedBean](http://redbeanphp.com/) - A lightweight, configuration-less ORM.
|
|
391
|
|
-* [PHP ActiveRecord](https://github.com/kla/php-activerecord) - A PHP Active Record implementation.
|
|
392
|
|
-* [Paris and Idiorm](http://j4mie.github.io/idiormandparis/) - A minimalist database library.
|
|
393
|
391
|
* [Pomm](https://github.com/chanmix51/Pomm) - An Object Model Manager for PostgreSQL.
|
|
394
|
|
-* [Migrations](https://github.com/icomefromthenet/Migrations) - A migration management library.
|
|
|
392
|
+* [ProxyManager](https://github.com/Ocramius/ProxyManager) - A set of utilities to generate proxy objects for data mappers.
|
|
|
393
|
+
|
|
|
394
|
+## Migrations
|
|
|
395
|
+Libraries to help manage database schemas and migrations.
|
|
|
396
|
+
|
|
395
|
397
|
* [PHPMig](https://github.com/davedevelopment/phpmig) - Another migration management library.
|
|
396
|
398
|
* [Phinx](https://github.com/robmorgan/phinx) - Another database migration library.
|
|
397
|
|
-* [ProxyManager](https://github.com/Ocramius/ProxyManager) - A set of utilities to generate proxy objects for data mappers.
|
|
|
399
|
+* [Migrations](https://github.com/icomefromthenet/Migrations) - A migration management library.
|
|
|
400
|
+* [Doctrine Migrations](http://docs.doctrine-project.org/projects/doctrine-migrations/en/latest/toc.html) - A migration library for Doctrine.
|
|
398
|
401
|
|
|
399
|
402
|
## NoSQL
|
|
400
|
403
|
*Libraries for working with "NoSQL" backends.*
|