forked from php-translation/extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.22 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
{
"name": "php-translation/extractor",
"description": "Extract translations form the source code",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2 || ^8.0",
"nikic/php-parser": "^3.0 || ^4.0",
"symfony/finder": "^3.4 || ^4.3 || ^5.0",
"twig/twig": "^2.0 || ^3.0",
"doctrine/annotations": "^1.2"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.0",
"symfony/translation": "^3.4 || ^4.3 || ^5.0",
"symfony/validator": "^3.4 || ^4.3 || ^5.0",
"symfony/twig-bridge": "^3.4 || ^4.3 || ^5.0",
"phpunit/phpunit": "^8.4",
"knplabs/knp-menu": "^3.1"
},
"autoload": {
"psr-4": {
"Translation\\Extractor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Translation\\Extractor\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}