torm
Just another simple PHP ORM. You can use it, but don't ask me why I made it. :-)
File Explorer
- another_test.sqlite3
- test.sqlite3
- mysql.php
- oracle.php
- postgresql.php
- sqlite.php
- account.php
- another_user.php
- bill.php
- ticket.php
- user.php
- user_namespaced.php
- BelongsTo.php
- Builder.php
- Cache.php
- Callbacks.php
- Collection.php
- Connection.php
- Dirty.php
- Driver.php
- Errors.php
- Factory.php
- Finders.php
- HasMany.php
- HasOne.php
- Inflections.php
- Log.php
- Model.php
- Persistence.php
- Scopes.php
- Sequences.php
- Storage.php
- Util.php
- Validation.php
- Validations.php
- account.php
- ticket.php
- user.php
- cacheTest.php
- factoryTest.php
- inflectionsTest.php
- logTest.php
- modelTest.php
- run
- torm.yml
- .gitignore
- .travis.yml
- composer.json
- LICENSE
- README.md
- torm.php
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
composer
View Details ▼
composer
A package-based dependency manager for PHP projects.
composer init
Interactively create a `composer.json` file:
composer require {{user/package}}
Add a package as a dependency for this project, adding an entry to `composer.json`:
composer install
Install all the dependencies in this project's `composer.json` and create `composer.lock`:
php
View Details ▼
php
PHP command-line interface.
php {{path/to/file}}
Parse and execute a PHP script:
php {{[-l|--syntax-check]}} {{path/to/file}}
Check syntax on (i.e. [l]int) a PHP script:
php {{[-a|--interactive]}}
Run PHP inter[a]ctively:
