Skip to content

Commit 9c2569e

Browse files
committed
Updated readme
1 parent cd9041d commit 9c2569e

1 file changed

Lines changed: 13 additions & 5 deletions

File tree

readme.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Unit testing the code base and providing code coverage is a primary goal of this
1717
* Models
1818
* Real PHP classes.
1919
* Extend an `ActiveRecord` class.
20-
* Use `traits` for versioning and ORM.
20+
* Use `traits` to unlock Relationships and Versioning as needed.
2121
* Automatically creates table on first time use.
2222
* Built in support for MySQL.
2323

@@ -29,14 +29,22 @@ Unit testing the code base and providing code coverage is a primary goal of this
2929
* Built with basic class inheritance in mind.
3030

3131
* Controllers
32-
* Integrated CRUD controllers load templates or JSON depending on the response mode.
32+
* Psr7 compatible controllers.
33+
* Pre-made REST API controllers allow you to build APIs rapidly.
34+
* 100% Unit test coverage for filters, sorters, and conditions go ive you peace of mind.
3335
* Build HTTP APIs in minutes by extending `RecordsRequestHandler` and setting the one config variable: the name of your model class.
3436
* Use a pre-made security trait with RecordsRequestHandler or extend it and write in your own permissions.
35-
* Reuse permission traits from one model to another.
37+
* Standard permissions interface allows reuse of permission traits from one model to another.
3638

3739
* Templates
38-
* Out of the box support for Smarty & Dwoo Templates using the Dwoo engine
39-
* Respond with a Template instantly `RequestHandler::respond('/path/to/tpl')`
40+
* Out of the box support for Twig
41+
42+
* Media
43+
* Out of the box support for a media storage.
44+
* Automated thumbnail generation for JPEG, GIF, PNG, and PDF.
45+
* Built in support for MP4 and WEBM chunkable emitters allowing you to easily host videos with the ability to seek.
46+
* Manage media remotely with a built in JSON API using the standard permissions interface for all controllers.
47+
* Supports POST and PUT request types for media uploads.
4048

4149
### Contributing To Divergence
4250

0 commit comments

Comments
 (0)