10000 merged branch willdurand/fix-composer-components (PR #5318) · symfony/symfony@d1be451 · GitHub
[go: up one dir, main page]

Skip to content

Commit d1be451

Browse files
committed
merged branch willdurand/fix-composer-components (PR #5318)
Commits ------- 933e821 Add minimum-stability (dev) in each component Discussion ---------- Add minimum-stability (dev) in each component This fixes the ability to run the test suite in each component if a `composer install` is needed. --------------------------------------------------------------------------- by stof at 2012-08-22T13:57:14Z If you really want to run the testsuite standalone, some dev requirements are missing (SecurityBundle needs the FrameworkBundle for its functional tests for instance). If you have some time to check the missing dev requirement, it would be great. Anyway, :+1: for this --------------------------------------------------------------------------- by willdurand at 2012-08-22T13:59:15Z Yes I already did that once. I'll try to fix more components later. On Wed, Aug 22, 2012 at 3:57 PM, Christophe Coevoet < notifications@github.com> wrote: > If you really want to run the testsuite standalone, some dev requirements > are missing (SecurityBundle needs the FrameworkBundle for its functional > tests for instance). If you have some time to check the missing dev > requirement, it would be great. > Anyway, [image: :+1:] for this > > — > Reply to this email directly or view it on GitHub<#5318 (comment)>. > > --------------------------------------------------------------------------- by stof at 2012-08-22T14:02:23Z Well, I think most components should be good now (as some work has been done on them). But the bridges and bundles may need some work (bundles were not having any dev requirements until yesterday when @guilhermeblanco added some on FrameworkBundle) --------------------------------------------------------------------------- by pborreli at 2012-08-22T14:14:00Z what about having for each READ-ONLY repo his own .travis.yml and travisci hook activated ? --------------------------------------------------------------------------- by fabpot at 2012-08-22T14:30:13Z please, don't add more travis files. The main already tests everything, and that's all we need. --------------------------------------------------------------------------- by stof at 2012-08-22T14:33:46Z @pborreli tests should not be different for subtree split repos as the code is the same and the tests are the same (except that more tests could be skipped because of missing deps). Note that for the bundles, it is likely to be different currently as I think some skip tests are missing (just like dev requirements are). But fixing this does not require enablign travis. --------------------------------------------------------------------------- by pborreli at 2012-08-22T14:42:30Z ok, i was just thinking about a way to be sure each component is usable individually but yeah that would require to relaunch each tests and add a bunch of travis files + hook --------------------------------------------------------------------------- by hason at 2012-08-24T13:12:04Z @stof, @eriksencosta, @fabpot: Tests are different for Locale component, see #5235 --------------------------------------------------------------------------- by stof at 2012-08-24T13:35:07Z @hason no. You also need to do it when running the tests of the Locale component as part of the full run.
2 parents b5517b2 + 933e821 commit d1be451

File tree

32 files changed

+32
-0
lines changed

32 files changed

+32
-0
lines changed

src/Symfony/Bridge/Doctrine/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"psr-0": { "Symfony\\Bridge\\Doctrine": "" }
3131
},
3232
"target-dir": "Symfony/Bridge/Doctrine",
33+
"minimum-stability": "dev",
3334
"extra": {
3435
"branch-alias": {
3536
"dev-master": "2.1-dev"

src/Symfony/Bridge/Monolog/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"psr-0": { "Symfony\\Bridge\\Monolog": "" }
2525
},
2626
"target-dir": "Symfony/Bridge/Monolog",
27+
"minimum-stability": "dev",
2728
"extra": {
2829
"branch-alias": {
2930
"dev-master": "2.1-dev"

src/Symfony/Bridge/Propel1/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"psr-0": { "Symfony\\Bridge\\Propel1": "" }
2727
},
2828
"target-dir": "Symfony/Bridge/Propel1",
29+
"minimum-stability": "dev",
2930
"extra": {
3031
"branch-alias": {
3132
"dev-master": "2.1-dev"

src/Symfony/Bridge/Swiftmailer/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"psr-0": { "Symfony\\Bridge\\Swiftmailer": "" }
2727
},
2828
"target-dir": "Symfony/Bridge/Swiftmailer",
29+
"minimum-stability": "dev",
2930
"extra": {
3031
"branch-alias": {
3132
"dev-master": "2.1-dev"

src/Symfony/Bridge/Twig/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"psr-0": { "Symfony\\Bridge\\Twig": "" }
4040
},
4141
"target-dir": "Symfony/Bridge/Twig",
42+
"minimum-stability": "dev",
4243
"extra": {
4344
"branch-alias": {
4445
"dev-master": "2.1-dev"

src/Symfony/Bundle/FrameworkBundle/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"psr-0": { "Symfony\\Bundle\\FrameworkBundle": "" }
4141
},
4242
"target-dir": "Symfony/Bundle/FrameworkBundle",
43+
"minimum-stability": "dev",
4344
"extra": {
4445
"branch-alias": {
4546
"dev-master": "2.1-dev"

src/Symfony/Bundle/SecurityBundle/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"psr-0": { "Symfony\\Bundle\\SecurityBundle": "" }
2424
},
2525
"target-dir": "Symfony/Bundle/SecurityBundle",
26+
"minimum-stability": "dev",
2627
"extra": {
2728
"branch-alias": {
2829
"dev-master": "2.1-dev"

src/Symfony/Bundle/TwigBundle/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"psr-0": { "Symfony\\Bundle\\TwigBundle": "" }
2424
},
2525
"target-dir": "Symfony/Bundle/TwigBundle",
26+
"minimum-stability": "dev",
2627
"extra": {
2728
"branch-alias": {
2829
"dev-master": "2.1-dev"

src/Symfony/Bundle/WebProfilerBundle/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"psr-0": { "Symfony\\Bundle\\WebProfilerBundle": "" }
2424
},
2525
"target-dir": "Symfony/Bundle/WebProfilerBundle",
26+
"minimum-stability": "dev",
2627
"extra": {
2728
"branch-alias": {
2829
"dev-master": "2.1-dev"

src/Symfony/Component/BrowserKit/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"psr-0": { "Symfony\\Component\\BrowserKit": "" }
3131
},
3232
"target-dir": "Symfony/Component/BrowserKit",
33+
"minimum-stability": "dev",
3334
"extra": {
3435
"branch-alias": {
3536
"dev-master": "2.1-dev"

src/Symfony/Component/ClassLoader/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"psr-0": { "Symfony\\Component\\ClassLoader": "" }
2727
},
2828
"target-dir": "Symfony/Component/ClassLoader",
29+
"minimum-stability": "dev",
2930
"extra": {
3031
"branch-alias": {
3132
"dev-master": "2.1-dev"

src/Symfony/Component/Config/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"psr-0": { "Symfony\\Component\\Config": "" }
2323
},
2424
"target-dir": "Symfony/Component/Config",
25+
"minimum-stability": "dev",
2526
"extra": {
2627
"branch-alias": {
2728
"dev-master": "2.1-dev"

src/Symfony/Component/Console/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"psr-0": { "Symfony\\Component\\Console": "" }
2323
},
2424
"target-dir": "Symfony/Component/Console",
25+
"minimum-stability": "dev",
2526
"extra": {
2627
"branch-alias": {
2728
"dev-master": "2.1-dev"

src/Symfony/Component/CssSelector/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"psr-0": { "Symfony\\Component\\CssSelector": "" }
2323
},
2424
"target-dir": "Symfony/Component/CssSelector",
25+
"minimum-stability": "dev",
2526
"extra": {
2627
"branch-alias": {
2728
"dev-master": "2.1-dev"

src/Symfony/Component/DependencyInjection/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"psr-0": { "Symfony\\Component\\DependencyInjection": "" }
3131
},
3232
"target-dir": "Symfony/Component/DependencyInjection",
33+
"minimum-stability": "dev",
3334
"extra": {
3435
"branch-alias": {
3536
"dev-master": "2.1-dev"

src/Symfony/Component/DomCrawler/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"psr-0": { "Symfony\\Component\\DomCrawler": "" }
2929
},
3030
"target-dir": "Symfony/Component/DomCrawler",
31+
"minimum-stability": "dev",
3132
"extra": {
3233
"branch-alias": {
3334
"dev-master": "2.1-dev"

src/Symfony/Component/EventDispatcher/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
"psr-0": { "Symfony\\Component\\EventDispatcher": "" }
3030
},
3131
"target-dir": "Symfony/Component/EventDispatcher",
32+
"minimum-stability": "dev",
3233
"extra": {
3334
"branch-alias": {
3435
"dev-master": "2.1-dev"

src/Symfony/Component/Filesystem/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"psr-0": { "Symfony\\Component\\Filesystem": "" }
2323
},
2424
"target-dir": "Symfony/Component/Filesystem",
25+
"minimum-stability": "dev",
2526
"extra": {
2627
"branch-alias": {
2728
"dev-master": "2.1-dev"

src/Symfony/Component/Finder/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"psr-0": { "Symfony\\Component\\Finder": "" }
2323
},
2424
"target-dir": "Symfony/Component/Finder",
25+
"minimum-stability": "dev",
2526
"extra": {
2627
"branch-alias": {
2728
"dev-master": "2.1-dev"

src/Symfony/Component/Form/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"psr-0": { "Symfony\\Component\\Form": "" }
3434
},
3535
"target-dir": "Symfony/Component/Form",
36+
"minimum-stability": "dev",
3637
"extra": {
3738
"branch-alias": {
3839
"dev-master": "2.1-dev"

src/Symfony/Component/HttpFoundation/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
}
2626
},
2727
"target-dir": "Symfony/Component/HttpFoundation",
28+
"minimum-stability": "dev",
2829
"extra": {
2930
"branch-alias": {
3031
"dev-master": "2.1-dev"

src/Symfony/Component/HttpKernel/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"psr-0": { "Symfony\\Component\\HttpKernel": "" }
4343
},
4444
"target-dir": "Symfony/Component/HttpKernel",
45+
"minimum-stability": "dev",
4546
"extra": {
4647
"branch-alias": {
4748
"dev-master": "2.1-dev"

src/Symfony/Component/Locale/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"psr-0": { "Symfony\\Component\\Locale": "" }
2626
},
2727
"target-dir": "Symfony/Component/Locale",
28+
"minimum-stability": "dev",
2829
"extra": {
2930
"branch-alias": {
3031
"dev-master": "2.1-dev"

src/Symfony/Component/OptionsResolver/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"psr-0": { "Symfony\\Component\\OptionsResolver": "" }
2323
},
2424
"target-dir": "Symfony/Component/OptionsResolver",
25+
"minimum-stability": "dev",
2526
"extra": {
2627
"branch-alias": {
2728
"dev-master": "2.1-dev"

src/Symfony/Component/Process/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"psr-0": { "Symfony\\Component\\Process": "" }
2323
},
2424
"target-dir": "Symfony/Component/Process",
25+
"minimum-stability": "dev",
2526
"extra": {
2627
"branch-alias": {
2728
"dev-master": "2.1-dev"

src/Symfony/Component/Routing/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"psr-0": { "Symfony\\Component\\Routing": "" }
3434
},
3535
"target-dir": "Symfony/Component/Routing",
36+
"minimum-stability": "dev",
3637
"extra": {
3738
"branch-alias": {
3839
"dev-master": "2.1-dev"

src/Symfony/Component/Security/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"psr-0": { "Symfony\\Component\\Security": "" }
4141
},
4242
"target-dir": "Symfony/Component/Security",
43+
"minimum-stability": "dev",
4344
"extra": {
4445
"branch-alias": {
4546
"dev-master": "2.1-dev"

src/Symfony/Component/Serializer/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"psr-0": { "Symfony\\Component\\Serializer": "" }
2323
},
2424
"target-dir": "Symfony/Component/Serializer",
25+
"minimum-stability": "dev",
2526
"extra": {
2627
"branch-alias": {
2728
"dev-master": "2.1-dev"

src/Symfony/Component/Templating/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"psr-0": { "Symfony\\Component\\Templating": "" }
2323
},
2424
"target-dir": "Symfony/Component/Templating",
25+
"minimum-stability": "dev",
2526
"extra": {
2627
"branch-alias": {
2728
"dev-master": "2.1-dev"

src/Symfony/Component/Translation/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"psr-0": { "Symfony\\Component\\Translation": "" }
3131
},
3232
"target-dir": "Symfony/Component/Translation",
33+
"minimum-stability": "dev",
3334
"extra": {
3435
"branch-alias": {
3536
"dev-master": "2.1-dev"

src/Symfony/Component/Validator/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"psr-0": { "Symfony\\Component\\Validator": "" }
3333
},
3434
"target-dir": "Symfony/Component/Validator",
35+
"minimum-stability": "dev",
3536
"extra": {
3637
"branch-alias": {
3738
"dev-master": "2.1-dev"

src/Symfony/Component/Yaml/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"psr-0": { "Symfony\\Component\\Yaml": "" }
2323
},
2424
"target-dir": "Symfony/Component/Yaml",
25+
"minimum-stability": "dev",
2526
"extra": {
2627
"branch-alias": {
2728
"dev-master": "2.1-dev"

0 commit comments

Comments
 (0)
0