Skip to content

Commit

Permalink
Fix documentation (git repositories)
Browse files Browse the repository at this point in the history
  • Loading branch information
willdurand committed Feb 3, 2011
1 parent ffc5372 commit 8c24ba0
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 30 deletions.
38 changes: 23 additions & 15 deletions README
Expand Up @@ -17,7 +17,7 @@ Installation

* Clone this bundle in the `vendor/symfony/src/Symfony/Bundle` directory:

> git submodule add git@github.com:willdurand/PropelBundle.git vendor/symfony/src/Symfony/Bundle/PropelBundle
> git submodule add https://github.com/willdurand/PropelBundle.git vendor/symfony/src/Symfony/Bundle/PropelBundle

* Checkout Propel and Phing in the `vendor` directory:

Expand All @@ -27,21 +27,29 @@ Installation

> svn checkout http://phing.mirror.svn.symfony-project.com/tags/2.3.3 phing

* Register this bundle in the `AppKernel` class:
* You can also clone the unofficial Git repositories:

> cd vendor

> git submodule add https://github.com/KaroDidi/phing vendor/phing

> git submodule add https://github.com/KaroDidi/propel1.6 vendor/propel

* Register this bundle in the `AppKernel` class:

public function registerBundles()
{
$bundles = array(
...

// PropelBundle
new Symfony\Bundle\PropelBundle\PropelBundle(),
// register your bundles
new Sensio\HelloBundle\HelloBundle(),
);

...
}
public function registerBundles()
{
$bundles = array(
...

// PropelBundle
new Symfony\Bundle\PropelBundle\PropelBundle(),
// register your bundles
new Sensio\HelloBundle\HelloBundle(),
);

...
}


Sample Configuration
Expand Down
38 changes: 23 additions & 15 deletions README.markdown
Expand Up @@ -17,7 +17,7 @@ Installation

* Clone this bundle in the `vendor/symfony/src/Symfony/Bundle` directory:

> git submodule add git@github.com:willdurand/PropelBundle.git vendor/symfony/src/Symfony/Bundle/PropelBundle
> git submodule add https://github.com/willdurand/PropelBundle.git vendor/symfony/src/Symfony/Bundle/PropelBundle
* Checkout Propel and Phing in the `vendor` directory:

Expand All @@ -27,21 +27,29 @@ Installation
> svn checkout http://phing.mirror.svn.symfony-project.com/tags/2.3.3 phing
* Register this bundle in the `AppKernel` class:
* You can also clone the unofficial Git repositories:

> cd vendor
> git submodule add https://github.com/KaroDidi/phing vendor/phing
> git submodule add https://github.com/KaroDidi/propel1.6 vendor/propel
* Register this bundle in the `AppKernel` class:

public function registerBundles()
{
$bundles = array(
...

// PropelBundle
new Symfony\Bundle\PropelBundle\PropelBundle(),
// register your bundles
new Sensio\HelloBundle\HelloBundle(),
);

...
}
public function registerBundles()
{
$bundles = array(
...

// PropelBundle
new Symfony\Bundle\PropelBundle\PropelBundle(),
// register your bundles
new Sensio\HelloBundle\HelloBundle(),
);

...
}


Sample Configuration
Expand Down

0 comments on commit 8c24ba0

Please sign in to comment.