Skip to content

Commit

Permalink
normalize composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
franmomu committed Feb 9, 2020
1 parent aa173b9 commit c4219ff
Showing 1 changed file with 27 additions and 17 deletions.
44 changes: 27 additions & 17 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,32 @@
{
"name": "jms/translation-bundle",
"description": "Puts the Symfony Translation Component on steroids",
"keywords": ["translation", "multilanguage", "extract", "webinterface", "ui", "i18n", "extraction", "interface"],
"homepage": "http://jmsyst.com/bundles/JMSTranslationBundle",
"type": "symfony-bundle",
"license": "Apache-2.0",
"name": "jms/translation-bundle",
"type": "symfony-bundle",
"description": "Puts the Symfony Translation Component on steroids",
"keywords": [
"translation",
"multilanguage",
"extract",
"webinterface",
"ui",
"i18n",
"extraction",
"interface"
],
"homepage": "http://jmsyst.com/bundles/JMSTranslationBundle",
"license": "Apache-2.0",
"authors": [
{
"name": "Johannes M. Schmitt",
"email": "schmittjoh@gmail.com"
"name": "Johannes M. Schmitt",
"email": "schmittjoh@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.2",
"twig/twig": "^1.27 || ^2.0",
"symfony/framework-bundle": "^3.4.31 || ^4.3",
"nikic/php-parser": "^1.4 || ^2.0 || ^3.0 || ^4.0",
"symfony/console": "^3.4 || ^4.3",
"symfony/validator": "^3.4 || ^4.3"
"symfony/framework-bundle": "^3.4.31 || ^4.3",
"symfony/validator": "^3.4 || ^4.3",
"twig/twig": "^1.27 || ^2.0"
},
"require-dev": {
"doctrine/annotations": "^1.8",
Expand All @@ -37,16 +45,18 @@
"symfony/translation": "^3.4 || ^4.3",
"symfony/twig-bundle": "^3.4 || ^4.3"
},
"autoload": {
"psr-0": { "JMS\\TranslationBundle": "" }
},
"config": {
"sort-packages": true
},
"target-dir": "JMS/TranslationBundle",
"extra": {
"branch-alias": {
"dev-master": "1.4-dev"
}
}
},
"autoload": {
"psr-4": {
"JMS\\TranslationBundle\\": ""
}
},
"minimum-stability": "stable"
}

0 comments on commit c4219ff

Please sign in to comment.