summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-01-16 14:43:46 +0100
committerRemi Collet <remi@remirepo.net>2018-01-16 14:43:46 +0100
commitc29ede419f705b7402c9193f7b0c786e79a1dab2 (patch)
treee2f9563e6b99de2b42861fc5ca1f0e5c933beb37 /composer.json
parent482ec23c2f5af6590ada07501258e02bd488bca0 (diff)
add backport stuff
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json54
1 files changed, 54 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..9f83874
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,54 @@
+{
+ "name": "gettext/gettext",
+ "type": "library",
+ "description": "PHP gettext manager",
+ "keywords": ["js", "gettext", "i18n", "translation", "po", "mo"],
+ "homepage": "https://github.com/oscarotero/Gettext",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Oscar Otero",
+ "email": "oom@oscarotero.com",
+ "homepage": "http://oscarotero.com",
+ "role": "Developer"
+ }
+ ],
+ "support": {
+ "email": "oom@oscarotero.com",
+ "issues": "https://github.com/oscarotero/Gettext/issues"
+ },
+ "require": {
+ "php": ">=5.4.0",
+ "gettext/languages": "^2.3"
+ },
+ "require-dev": {
+ "illuminate/view": "*",
+ "twig/twig": "^1.31|^2.0",
+ "twig/extensions": "*",
+ "symfony/yaml": "~2",
+ "phpunit/phpunit": "^4.8|^5.7",
+ "squizlabs/php_codesniffer": "^3.0"
+ },
+ "suggest": {
+ "illuminate/view": "Is necessary if you want to use the Blade extractor",
+ "twig/twig": "Is necessary if you want to use the Twig extractor",
+ "twig/extensions": "Is necessary if you want to use the Twig extractor",
+ "symfony/yaml": "Is necessary if you want to use the Yaml extractor/generator"
+ },
+ "autoload": {
+ "psr-4": {
+ "Gettext\\": "src"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Gettext\\Tests\\": "tests"
+ }
+ },
+ "scripts": {
+ "test": [
+ "phpunit",
+ "phpcs"
+ ]
+ }
+}