This commit is contained in:
Manuel Raynaud
2013-06-10 18:10:21 +02:00
parent 5564de29ab
commit 36618668fc
2 changed files with 21 additions and 21 deletions

40
composer.lock generated
View File

@@ -76,7 +76,7 @@
"authors": [ "authors": [
{ {
"name": "Anthony Ferrara", "name": "Anthony Ferrara",
"email": "ircmaxell@ircmaxell.com", "email": "ircmaxell@php.net",
"homepage": "http://blog.ircmaxell.com" "homepage": "http://blog.ircmaxell.com"
} }
], ],
@@ -488,17 +488,17 @@
}, },
{ {
"name": "symfony/event-dispatcher", "name": "symfony/event-dispatcher",
"version": "v2.2.1", "version": "v2.2.2",
"target-dir": "Symfony/Component/EventDispatcher", "target-dir": "Symfony/Component/EventDispatcher",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/EventDispatcher.git", "url": "https://github.com/symfony/EventDispatcher.git",
"reference": "v2.2.1" "reference": "v2.2.2"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/EventDispatcher/zipball/v2.2.1", "url": "https://api.github.com/repos/symfony/EventDispatcher/zipball/v2.2.2",
"reference": "v2.2.1", "reference": "v2.2.2",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -589,17 +589,17 @@
}, },
{ {
"name": "symfony/http-foundation", "name": "symfony/http-foundation",
"version": "v2.2.1", "version": "v2.2.2",
"target-dir": "Symfony/Component/HttpFoundation", "target-dir": "Symfony/Component/HttpFoundation",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/HttpFoundation.git", "url": "https://github.com/symfony/HttpFoundation.git",
"reference": "v2.2.1" "reference": "v2.2.2"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/HttpFoundation/zipball/v2.2.1", "url": "https://api.github.com/repos/symfony/HttpFoundation/zipball/v2.2.2",
"reference": "v2.2.1", "reference": "v2.2.2",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -635,7 +635,7 @@
], ],
"description": "Symfony HttpFoundation Component", "description": "Symfony HttpFoundation Component",
"homepage": "http://symfony.com", "homepage": "http://symfony.com",
"time": "2013-04-06 10:15:43" "time": "2013-05-27 14:47:40"
}, },
{ {
"name": "symfony/http-kernel", "name": "symfony/http-kernel",
@@ -708,17 +708,17 @@
}, },
{ {
"name": "symfony/routing", "name": "symfony/routing",
"version": "v2.2.1", "version": "v2.2.2",
"target-dir": "Symfony/Component/Routing", "target-dir": "Symfony/Component/Routing",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/Routing.git", "url": "https://github.com/symfony/Routing.git",
"reference": "v2.2.1" "reference": "v2.2.2"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/Routing/zipball/v2.2.1", "url": "https://api.github.com/repos/symfony/Routing/zipball/v2.2.2",
"reference": "v2.2.1", "reference": "v2.2.2",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -762,7 +762,7 @@
], ],
"description": "Symfony Routing Component", "description": "Symfony Routing Component",
"homepage": "http://symfony.com", "homepage": "http://symfony.com",
"time": "2013-03-23 12:03:22" "time": "2013-05-10 16:49:00"
}, },
{ {
"name": "symfony/yaml", "name": "symfony/yaml",
@@ -819,12 +819,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/fzaninotto/Faker.git", "url": "https://github.com/fzaninotto/Faker.git",
"reference": "fac6c177c87bb5d10d256d9caa6933046fbac999" "reference": "v1.2.0"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fac6c177c87bb5d10d256d9caa6933046fbac999", "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/v1.2.0",
"reference": "fac6c177c87bb5d10d256d9caa6933046fbac999", "reference": "v1.2.0",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -833,7 +833,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "1.1.x-dev" "dev-master": "1.2.x-dev"
} }
}, },
"autoload": { "autoload": {
@@ -857,7 +857,7 @@
"faker", "faker",
"fixtures" "fixtures"
], ],
"time": "2013-05-31 17:07:37" "time": "2013-06-09 18:05:57"
} }
], ],
"aliases": [ "aliases": [

View File

@@ -55,7 +55,7 @@ class CacheClear extends ContainerAwareCommand
try { try {
$fs->remove($cacheDir); $fs->remove($cacheDir);
$output->writeln("<info>cache clear successfully</info>"); $output->writeln("<info>cache cleared successfully</info>");
} catch(IOException $e) { } catch(IOException $e) {
$output->writeln(sprintf("error during clearing cache : %s", $e->getMessage())); $output->writeln(sprintf("error during clearing cache : %s", $e->getMessage()));
} }