Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@
"nette/bootstrap": "~2.2",
"nette/di": "~2.2",
"nette/robot-loader": "~2.2",
"nette/tester": "~1.0"
"nette/tester": "^2"
},
"scripts": {
"test": "tester tests -c tests/php-unix.ini",
"test-local": "tester tests -C"
},
"scripts-descriptions": {
"test": "Run all tests using UNIX configuration.",
"test-local": "Run all tests using local PHP configuration."
}
}
14 changes: 14 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@ Lean Mapper is a tiny ORM based on powerful [Dibi database abstraction library](

See [www.leanmapper.com](http://www.leanmapper.com) for more informations, usage examples and documentation.


Contributions & Testing
-------

The unit tests can be run using the following composer command:\
`composer test`

To use local PHP configuration, the following command can be used:\
`composer test-local`

> Note:\
> json, pdo, tokenizer and sqlite3 PHP extensions are needed to run the tests.


License
-------

Expand Down