Skip to content

Commit

Permalink
[composer] fix monolog-bridge composer.json, add more inter-component…
Browse files Browse the repository at this point in the history
… deps
  • Loading branch information
igorw committed Sep 27, 2011
1 parent 9ade639 commit d535afe
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 7 deletions.
3 changes: 2 additions & 1 deletion src/Symfony/Bridge/Monolog/composer.json
Expand Up @@ -18,6 +18,7 @@
],
"require": {
"php": ">=5.3.2",
"http-kernel": ">=2.0"
"symfony/http-kernel": ">=2.0",
"monolog/monolog": ">=1.0"
}
}
4 changes: 3 additions & 1 deletion src/Symfony/Bundle/DoctrineBundle/composer.json
Expand Up @@ -17,6 +17,8 @@
}
],
"require": {
"php": ">=5.3.2"
"php": ">=5.3.2",
"symfony/doctrine-bridge": ">=2.0",
"symfony/doctrine-abstract-bundle": ">=2.0"
}
}
4 changes: 3 additions & 1 deletion src/Symfony/Bundle/MonologBundle/composer.json
Expand Up @@ -17,6 +17,8 @@
}
],
"require": {
"php": ">=5.3.2"
"php": ">=5.3.2",
"monolog/monolog": ">=1.0",
"symfony/monolog-bridge": ">=2.0"
}
}
3 changes: 2 additions & 1 deletion src/Symfony/Bundle/SecurityBundle/composer.json
Expand Up @@ -17,6 +17,7 @@
}
],
"require": {
"php": ">=5.3.2"
"php": ">=5.3.2",
"symfony/security": ">=2.0"
}
}
3 changes: 2 additions & 1 deletion src/Symfony/Bundle/WebProfilerBundle/composer.json
Expand Up @@ -17,6 +17,7 @@
}
],
"require": {
"php": ">=5.3.2"
"php": ">=5.3.2",
"symfony/twig-bundle": ">=2.0"
}
}
4 changes: 3 additions & 1 deletion src/Symfony/Component/DependencyInjection/composer.json
Expand Up @@ -19,8 +19,10 @@
"require": {
"php": ">=5.3.2"
},
"recommend": {
"symfony/config": ">=2.0"
},
"suggest": {
"symfony/config": ">=2.0",
"symfony/yaml": ">=2.0"
}
}
3 changes: 3 additions & 0 deletions src/Symfony/Component/Locale/composer.json
Expand Up @@ -18,5 +18,8 @@
],
"require": {
"php": ">=5.3.2"
},
"suggest": {
"ext/intl": ">=5.3.2"
}
}
4 changes: 4 additions & 0 deletions src/Symfony/Component/Routing/composer.json
Expand Up @@ -18,5 +18,9 @@
],
"require": {
"php": ">=5.3.2"
},
"suggest": {
"symfony/config": ">=2.0",
"symfony/yaml": ">=2.0"
}
}
3 changes: 2 additions & 1 deletion src/Symfony/Component/Translation/composer.json
Expand Up @@ -20,6 +20,7 @@
"php": ">=5.3.2"
},
"suggest": {
"symfony/config": ">=2.0"
"symfony/config": ">=2.0",
"symfony/yaml": ">=2.0"
}
}

0 comments on commit d535afe

Please sign in to comment.