Skip to content

Commit

Permalink
Update symfony dependency to 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed Dec 3, 2012
1 parent e804387 commit 6458323
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 43 deletions.
42 changes: 0 additions & 42 deletions Resources/docs/02_installation.md
Expand Up @@ -19,48 +19,6 @@ The most simple way to use Azure Distribution Bundle is with [Composer](http://w
}
}

## bin\vendors and deps

For a 'bin\vendors' based application add the Git path to your 'deps' file.

[AzureDistributionBundle]
git=https://github.com/beberlei/AzureDistributionBundle.git
target=/azure/WindowsAzure/DistributionBundle

[Assert]
git=https://github.com/beberlei/assert.git
target=/azure/assert

[AzureBlobStorage]
git=https://github.com/beberlei/azure-blob-storage.git
target=/azure/azure-blob-storage

[Shards]
git=https://github.com/doctrine/shards.git
target=/azure/doctrine-shards

[KeyValueStore]
git=https://github.com/doctrine/KeyValueStore.git
target=/azure/doctrine-keyvaluestore

Then call "php bin\vendors install" or "php bin\vendors update" to install this package. Proceed with section "Autoloading"

## Download

Go to https://github.com/beberlei/AzureDistributionBundle/downloads. Download
the `azure-distribution-bundle-v*.zip` file into the `vendor/azure` directory.

## Autoloading

If you are using Download or Deps files you have to manually register autoloading in 'app/autoload.php':

'WindowsAzure\\DistributionBundle' => __DIR__ . '/../vendor/azure/',
'WindowsAzure\\TaskDemoBundle' => __DIR__ . '/../vendor/azure/',
'Beberlei\\AzureBlobStorage' => __DIR__ . '/../vendor/azure/azure-blob-storage/lib/',
'Assert\\' => __DIR__ . '/../vendor/azure/assert/lib/',
'Doctrine\\Shards' => __DIR__ . '/../vendor/azure/doctrine-shards/lib/',
'Doctrine\\KeyValueStore' => __DIR__ . '/../vendor/azure/doctrine-keyvaluestore/lib/',

Also you have to add the bundle in your kernel, see the next section on this.

## Azure Kernel
Expand Down
4 changes: 3 additions & 1 deletion composer.json
@@ -1,11 +1,13 @@
{
"name": "beberlei/azure-distribution-bundle",
"description": "Integration of Windows Azure SDK and workflows into Symfony applications.",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"}
],
"require": {
"symfony/symfony": ">=2.0.10,<2.1.0-dev",
"symfony/symfony": ">=2.1.0",
"microsoft/windowsazure": "dev-master"
},
"repositories": [
Expand Down

0 comments on commit 6458323

Please sign in to comment.