Skip to content

Commit

Permalink
General: Add composer package information
Browse files Browse the repository at this point in the history
  • Loading branch information
pprkut committed Jun 24, 2024
1 parent e63af40 commit c220c5a
Showing 1 changed file with 25 additions and 18 deletions.
43 changes: 25 additions & 18 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,27 @@
{
"require": {
"psr/log": ">=1.1",
"php": ">=8.1"
},
"suggest": {
"ext-gettext": "Needed for internationalization support in L10n"
},
"require-dev": {
"lunr/halo": "dev-master",
"phpunit/phpunit": ">=9.0 <9.6",
"ext-xdebug": "~3.1"
},
"config": {
"optimize-autoloader": true
},
"autoload": {
"psr-4": {"Lunr\\": "src/Lunr/"}
}
"name": "lunr/l10n",
"description": "Localization support libraries",
"keywords": ["localization", "localisation", "gettext", "intl", "i18n", "internationalization", "internationalisation"],
"homepage": "https://github.com/lunr-php/lunr.l10n",
"type": "library",
"license": "MIT",
"require": {
"psr/log": ">=1.1",
"php": ">=8.1"
},
"suggest": {
"ext-gettext": "Needed to support gettext-based translations",
"ext-intl": "Needed to support converting ISO 639-1 language codes to POSIX locales"
},
"require-dev": {
"lunr/halo": "dev-master",
"phpunit/phpunit": ">=9.0 <9.6",
"ext-xdebug": "~3.1"
},
"config": {
"optimize-autoloader": true
},
"autoload": {
"psr-4": {"Lunr\\": "src/Lunr/"}
}
}

0 comments on commit c220c5a

Please sign in to comment.