-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
67 lines (67 loc) · 2.07 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
61
62
63
64
65
66
67
{
"name": "daniel-de-wit/laravel-ide-helper-hook-translatable",
"description": "Add Laravel Translatable support to Laravel IDE Helper",
"license": "MIT",
"type": "library",
"keywords": [
"dev",
"laravel-ide-helper",
"laravel-translatable"
],
"authors": [
{
"name": "Daniel de Wit",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://github.com/daniel-de-wit/laravel-ide-helper-hook-translatable",
"require": {
"php": "^8.1",
"astrotomic/laravel-translatable": "^11.9",
"barryvdh/laravel-ide-helper": "^2.9 || ^3.0",
"illuminate/database": "^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"nunomaduro/larastan": "^0.7.2",
"orchestra/testbench": "^6.7",
"phpstan/phpstan-mockery": "^0.12.13",
"phpstan/phpstan-phpunit": "^0.12.18",
"phpunit/phpunit": "^9.5",
"thecodingmachine/phpstan-safe-rule": "^1.0"
},
"autoload": {
"psr-4": {
"DanielDeWit\\LaravelIdeHelperHookTranslatable\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DanielDeWit\\LaravelIdeHelperHookTranslatable\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"DanielDeWit\\LaravelIdeHelperHookTranslatable\\Providers\\LaravelIdeHelperHookTranslatableServiceProvider"
]
}
},
"scripts": {
"analyze": "vendor/phpstan/phpstan/phpstan analyse",
"check-style": [
"php-cs-fixer fix --diff --diff-format=udiff --dry-run",
"php-cs-fixer fix --diff --diff-format=udiff --dry-run --config=.php_cs.tests.php"
],
"coverage": "vendor/bin/phpunit",
"fix-style": [
"php-cs-fixer fix",
"php-cs-fixer fix --config=.php_cs.tests.php"
],
"test": "vendor/bin/phpunit --no-coverage"
}
}