forked from kopfwelt/i18next-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 877 Bytes
/
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
{
"name": "ganti/i18next-php",
"description": "PHP class for basic i18next functionality.",
"homepage": "https://github.com/ganti/i18next-php",
"minimum-stability": "dev",
"version": "dev-master",
"prefer-stable": true,
"authors": [
{
"name": "Mika Simanainen"
},
{
"name": "Steve Sinnwell",
"email": "[email protected]"
},
{
"name": "Simon Gantenbein",
"email": "[email protected]"
},
{
"name": "Ueli Kunz",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"Ganti\\": "src"
}
},
"scripts": {
"test": "phpunit tests"
}
}