forked from unn-gmbh/Gettext-Blade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.01 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
{
"name": "unn/gettext-blade",
"description": "Blade code scanner and extractor for php-gettext",
"type": "library",
"keywords": ["gettext", "blade", "php", "i18n", "translation"],
"license": "MIT",
"authors": [
{
"name": "Michael Lubitz",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/unn-gmbh/Gettext-Blade/issues"
},
"require": {
"php": "^8.0",
"gettext/gettext": "^5.6",
"gettext/php-scanner": "^1.3",
"illuminate/view": "^8.0|^9.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"Unn\\GettextBlade\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Unn\\GettextBlade\\Tests\\": "tests"
}
},
"scripts": {
"test": [
"phpunit",
"phpcs"
]
}
}