Skip to content

Commit b788a08

Browse files
committed
minor symfony#12783 Fixed the syntax of a composer.json file (GrahamCampbell)
This PR was merged into the 2.3 branch. Discussion ---------- Fixed the syntax of a composer.json file | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | N/A | License | MIT | Doc PR | N/A ##### This pull request fixes the syntax of a composer.json file. There should not be a space before a colon following a double quote. This is not bad syntax, but it just an inconsistency. Commits ------- 0f8547a Fixed the syntax of a composer.json file
2 parents 6945a2a + 0f8547a commit b788a08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Bundle/FrameworkBundle/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
],
1818
"require": {
1919
"php": ">=5.3.3",
20-
"symfony/dependency-injection" : "~2.2",
21-
"symfony/config" : "~2.2",
20+
"symfony/dependency-injection": "~2.2",
21+
"symfony/config": "~2.2",
2222
"symfony/event-dispatcher": "~2.1",
2323
"symfony/http-kernel": "~2.3",
2424
"symfony/filesystem": "~2.3",

0 commit comments

Comments
 (0)