summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCiro Mattia Gonano <ciromattia@gmail.com>2013-07-25 18:51:06 +0200
committerCiro Mattia Gonano <ciromattia@gmail.com>2013-07-25 18:51:06 +0200
commit5e6ddef5cd2bde311ccc01bc18eaa74071c41d1a (patch)
tree1b50f9f4573aae1d29d645547779e3f55a635a88 /README.md
parent25038ca261fb2f7d1091dbc5ce31e06567f62137 (diff)
Create README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md38
1 files changed, 38 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 00000000..a58a561d
--- /dev/null
+++ b/README.md
@@ -0,0 +1,38 @@
+# Prado PHP Framework
+
+Git mirror for Prado3 (https://code.google.com/p/prado3/)
+
+# Warning!
+
+This is a mirror with some small but core changes needed for working into *ClavisNG*.
+Comperio does not provide support for this framework, please refer to the original [issue tracker](https://code.google.com/p/prado3/issues/list).
+
+[![Build Status](https://secure.travis-ci.org/nicmart/DomainSpecificQuery.png?branch=master)](http://travis-ci.org/nicmart/DomainSpecificQuery)
+
+## Install
+
+The best way to install Prado is [through composer](http://getcomposer.org).
+
+Just create a composer.json file for your project:
+
+```JSON
+{
+ "require": {
+ "comperio/prado": "~3.2"
+ }
+}
+```
+
+Then you can run these two commands to install it:
+
+ $ curl -s http://getcomposer.org/installer | php
+ $ php composer.phar install
+
+or simply run `composer install` if you have have already [installed the composer globally](http://getcomposer.org/doc/00-intro.md#globally).
+
+Then you can include the autoloader, and you will have access to the library classes:
+
+```php
+<?php
+require 'vendor/autoload.php';
+```