-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
62 lines (62 loc) · 1.67 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "wdes/php-i18n-l10n",
"description": "PHP library/api to provide Internationalisation and Localisation",
"homepage": "https://github.com/wdes/php-I18n-l10n",
"type": "library",
"readme": "https://github.com/wdes/php-I18n-l10n/blob/master/README.md",
"license": "MPL-2.0",
"support": {
"email": "[email protected]",
"issues": "https://github.com/wdes/php-I18n-l10n/issues",
"source": "https://github.com/wdes/php-I18n-l10n"
},
"scripts": {
"phpcs": "phpcs --standard=phpcs.xml --no-cache --colors -p -n",
"phpcbf": "phpcbf --standard=phpcs.xml",
"phpstan": "phpstan analyse",
"phpunit": "phpunit",
"update:example": "./scripts/update-example.sh"
},
"non-feature-branches": ["dev"],
"keywords": [
"i18n",
"l10n",
"mo",
"gettext",
"pot-generator",
"twig",
"library",
"composer-package"
],
"authors": [
{
"name": "William Desportes",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Wdes\\phpI18nL10n\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wdes\\phpI18nL10n\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"twig/twig": "^3",
"phpmyadmin/twig-i18n-extension": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^7 || ^8 || ^9",
"phpstan/phpstan": "^1.10",
"wdes/coding-standard": "^3"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}