-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
49 lines (49 loc) · 1.08 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
{
"name": "jblond/twig-trans",
"type": "library",
"description": "Twig 3 translation extension ",
"license": "MIT",
"keywords": [
"php",
"twig",
"trans",
"translation",
"endtrans",
"po file",
"i18n"
],
"authors": [
{
"name": "Mario",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-gettext": "*",
"ext-mbstring": "*",
"twig/twig": ">=3.0.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"phpunit/phpunit": "^7 || ^8 || ^9 || ^10"
},
"autoload": {
"psr-4": {
"jblond\\": "src/jblond"
}
},
"autoload-dev": {
"psr-4": {
"jblond\\": "tests/"
}
},
"config": {
"optimize-autoloader": true
},
"scripts": {
"php_src": "phpcs --standard=phpcs.xml -s -p --colors ./src/",
"php_test": "phpcs --standard=phpcs.xml -s -p --colors ./tests/",
"phpunit": "phpunit ./tests/"
}
}