summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.markdown24
-rw-r--r--composer.json40
2 files changed, 53 insertions, 11 deletions
diff --git a/README.markdown b/README.markdown
index 575e6ce..758f680 100644
--- a/README.markdown
+++ b/README.markdown
@@ -25,9 +25,18 @@ Features
Changelog
---------
-#### 1.0.0 - released 2010-12-01
+#### 1.2.0 - release 2012-XX-XX
-* Initial release
+* Setup composer for installation via packagist (j4mie/idiorm)
+* Add `order_by_expr` method [[sandermarechal](http://github.com/sandermarechal)]
+* Add support for raw queries without parameters argument [[sandermarechal](http://github.com/sandermarechal)]
+* Add support to set multiple properties at once by passing an associative array to `set` method [[sandermarechal](http://github.com/sandermarechal)]
+* Allow an associative array to be passed to `configure` method [[jordanlev](http://github.com/jordanlev)]
+
+#### 1.1.1 - release 2011-01-30
+
+* Fix bug in quoting column wildcard. j4mie/paris#12
+* Small documentation improvements
#### 1.1.0 - released 2011-01-24
@@ -36,17 +45,10 @@ Changelog
* Add `distinct` method
* Add `group_by` method
-#### 1.1.1 - release 2011-01-30
-
-* Fix bug in quoting column wildcard. j4mie/paris#12
-* Small documentation improvements
+#### 1.0.0 - released 2010-12-01
-#### 1.2.0 - release 2012-XX-XX
+* Initial release
-* Add `order_by_expr` method [[sandermarechal](http://github.com/sandermarechal)]
-* Add support for raw queries without parameters argument [[sandermarechal](http://github.com/sandermarechal)]
-* Add support to set multiple properties at once by passing an associative array to `set` method [[sandermarechal](http://github.com/sandermarechal)]
-* Allow an associative array to be passed to `configure` method [[jordanlev](http://github.com/jordanlev)]
Philosophy
----------
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..5b24af3
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,40 @@
+{
+ "name": "j4mie/idiorm",
+ "description": "A lightweight nearly-zero-configuration object-relational mapper and fluent query builder for PHP5",
+ "homepage": "http://j4mie.github.com/idiormandparis",
+ "support": {
+ "issues": "https://github.com/j4mie/idiorm/issues",
+ "source": "https://github.com/j4mie/idiorm"
+ },
+ "authors": [
+ {
+ "name": "Jamie Matthews",
+ "email": "[email protected]",
+ "homepage": "http://j4mie.org",
+ "role": "Developer"
+ },
+ {
+ "name": "Simon Holywell",
+ "email": "[email protected]",
+ "homepage": "http://simonholywell.com",
+ "role": "Maintainer"
+ },
+ {
+ "name": "Durham Hale",
+ "email": "[email protected]",
+ "homepage": "http://durhamhale.com",
+ "role": "Maintainer"
+ }
+ ],
+ "license": [
+ "BSD-2-Clause",
+ "BSD-3-Clause",
+ "BSD-4-Clause"
+ ],
+ "require": {
+ "php": ">=5.2.0"
+ },
+ "autoload": {
+ "files": ["idiorm.php"]
+ }
+} \ No newline at end of file