diff options
-rw-r--r-- | .gitignore | 8 | ||||
-rw-r--r-- | composer.json | 18 |
2 files changed, 26 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fc9aa8c --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +clog +package-*.xml +*.tgz +*.tar.gz +*.tar.xz +*.tar.xz.asc +*.src.rpm +*/*rpm diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..f066499 --- /dev/null +++ b/composer.json @@ -0,0 +1,18 @@ +{ + "name": "zendframework/zend-i18n-resources", + "description": "Provides validator translations for zend-i18n's Translator", + "license": "BSD-3-Clause", + "keywords": [ + "zf2", + "resources", + "translations" + ], + "require": { + "php": ">=5.5" + }, + "autoload": { + "classmap": [ + "src/Resources.php" + ] + } +} |