forked from thiagocordeiro/laravel-translator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.24 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
{
"name": "thiagocordeiro/laravel-translator",
"description": "Search translation keys and insert into json to be translated",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Thiago Cordeiro",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "7.2.0"
}
},
"require": {
"php": "^7.2",
"ext-json": "*",
"laravel/framework": ">=5.4.0"
},
"require-dev": {
"composer/composer": "^1.8",
"squizlabs/php_codesniffer": "^3.4",
"slevomat/coding-standard": "^5.0",
"phpstan/phpstan": "^0.11.8",
"phpunit/phpunit": "^8.0"
},
"scripts": {
"cs:check": "vendor/bin/phpcs --colors -ps",
"test:stan": "vendor/bin/phpstan analyse src --level=max --ansi",
"test:unit": "vendor/bin/phpunit --testdox --color=always",
"tests": [
"@cs:check",
"@test:stan",
"@test:unit"
]
},
"autoload": {
"psr-4": {
"Translator\\": "src/"
},
"files": [
"src/Framework/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\Translator\\": "tests/Unit"
}
},
"extra": {
"laravel": {
"providers": [
"Translator\\Framework\\TranslatorServiceProvider"
]
}
}
}