-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.58 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
63
64
65
66
{
"name": "68publishers/i18n",
"description": "Internationalization and localization your app with a minimum effort.",
"keywords": ["68publishers", "i18n", "environment", "nette"],
"license": "MIT",
"authors": [
{
"name": "Vojtěch Lacina",
"email": "MoraviaD1@gmail.com"
},
{
"name": "Tomáš Glawaty",
"email": "tomasglawaty@icloud.com"
}
],
"require": {
"php": "^7.3 || ^8.1",
"ext-json": "*",
"nette/di": "^3.0.3",
"nette/http": "^3.0",
"nette/schema": "^1.0.2",
"nette/utils": "^3.0 || ^4.0",
"umpirsky/locale-list": "^1.0"
},
"require-dev": {
"68publishers/translation-bridge": "^1.2.1",
"contributte/translation": "^0.8.1",
"friendsofphp/php-cs-fixer": "^2.0",
"mockery/mockery": "^1.4",
"nette/bootstrap": "^3.0",
"nette/tester": "^2.3.4",
"roave/security-advisories": "dev-master",
"tracy/tracy": "^2.6"
},
"suggest": {
"68publishers/translation-bridge": "For integration with Translator component.",
"tracy/tracy": "A compiler extension adds a custom Panel if the Tracy is required."
},
"autoload": {
"psr-4": {
"SixtyEightPublishers\\i18n\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SixtyEightPublishers\\i18n\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"tests": [
"@tests:lowest",
"@tests:highest"
],
"tests:lowest" : [
"@composer update --no-progress --prefer-dist --prefer-lowest --prefer-stable",
"vendor/bin/tester ./tests"
],
"tests:highest" : [
"@composer update --no-progress --prefer-dist --prefer-stable",
"vendor/bin/tester ./tests"
]
}
}