-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.29 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
{
"name": "arokettu/pseudolocale",
"description": "Generate pseudo locale string for unicode testing and marking missing strings",
"keywords": ["pseudolocale", "locale", "i18n", "strings"],
"type": "library",
"license": "MIT",
"homepage": "https://sandfox.dev/php/pseudolocale.html",
"authors": [{
"name": "Anton Smirnov",
"email": "[email protected]",
"homepage": "https://sandfox.me/",
"role": "developer"
}],
"support": {
"source": "https://gitlab.com/sandfox/php-pseudolocale",
"issues": "https://gitlab.com/sandfox/php-pseudolocale/-/issues",
"docs": "https://php-pseudolocale.readthedocs.io/"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Arokettu\\Pseudolocale\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Arokettu\\Pseudolocale\\Tests\\": "tests"
}
},
"require": {
"php": "^7.1 || ^8"
},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
"psy/psysh": "*",
"sandfox.dev/code-standard": "^1.2022.06.29",
"squizlabs/php_codesniffer": "*"
}
}