diff options
author | Ciro Mattia Gonano <ciromattia@gmail.com> | 2013-07-29 11:16:22 +0200 |
---|---|---|
committer | Ciro Mattia Gonano <ciromattia@gmail.com> | 2013-07-29 11:16:22 +0200 |
commit | bab79acda25555be4fb28ab83a0a67168eab3cb1 (patch) | |
tree | 823d4cb977ef2435c751084570cba4a51985cdc5 | |
parent | 24124c2b2998c2ad2ad755360bad1569c75547d3 (diff) | |
parent | 46d200ae9f5a1931dc77cd324dce43f8faecc779 (diff) |
Merge branch 'master' of github.com:comperio/prado
-rw-r--r-- | README.md | 36 | ||||
-rw-r--r-- | composer.json | 2 |
2 files changed, 37 insertions, 1 deletions
diff --git a/README.md b/README.md new file mode 100644 index 00000000..c80acaf9 --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +# 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 with **ClavisNG**. +Comperio does not provide support for this framework, please refer to the original [issue tracker](https://code.google.com/p/prado3/issues/list). + +## 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'; +``` diff --git a/composer.json b/composer.json index 71b8333c..88f42336 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "ciromattia/prado", + "name": "comperio/prado", "description": "Component Framework for PHP 5.", "homepage": "http://www.pradosoft.com/", "license": "BSD", |