-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·44 lines (44 loc) · 1.27 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
{
"name": "hexadog/laravel-translation-manager",
"description": "Laravel Translation management package",
"license": "MIT",
"support": {
"issues": "https://github.com/hexadog/laravel-translation-manager/issues",
"source": "https://github.com/hexadog/laravel-translation-manager"
},
"authors": [
{
"name": "Gaetan",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
"symfony/finder": "^5.1|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0|^10.0",
"orchestra/testbench": "~5.2|^7.1|^8.0|^9.0",
"laravel/pint": "^1.10"
},
"autoload": {
"psr-4": {
"Hexadog\\TranslationManager\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Hexadog\\TranslationManager\\Providers\\PackageServiceProvider"
],
"dont-discover": []
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test:windows": "vendor\\bin\\phpunit",
"check-style": "vendor/bin/phpcs --extensions=php ./src",
"fix-style": "vendor/bin/php-cs-fixer fix"
}
}