-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
60 lines (60 loc) · 1.25 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
60
{
"name": "thiagocordeiro/laravel-translator",
"description": "Search translation keys and insert into json to be translated",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Thiago Cordeiro",
"email": "thiagoguetten@gmail.com"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"laravel/framework": ">=5.4.0"
},
"require-dev": {
"slevomat/coding-standard": "^6.0",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^9.0"
},
"scripts": {
"test:cs": "vendor/bin/phpcs --colors -ps",
"test:stan": "vendor/bin/phpstan analyse src --level=max --ansi",
"test:unit": "vendor/bin/phpunit --testdox --color=always",
"tests": [
"@test:cs",
"@test:stan",
"@test:unit"
]
},
"config": {
"platform": {
"php": "7.4.28"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Translator\\": "src/"
},
"files": [
"src/Framework/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Translator\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Translator\\Framework\\TranslatorServiceProvider"
]
}
}
}