-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
70 lines (70 loc) · 2.04 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
68
69
70
{
"name": "wotta/sentry-dashboard-tile",
"description": "Get an overview of the latest issues or get the issues from a specific project.",
"type": "library",
"keywords": [
"Laravel",
"Laravel-dashboard",
"sentry",
"package"
],
"homepage": "https://github.com/wotta/sentry-dashboard-tile",
"license": "MIT",
"authors": [
{
"name": "Wouter van Marrum",
"email": "[email protected]",
"homepage": "https://woutervm.com",
"role": "Maintainer"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"laravel/framework": "^8.0",
"spatie/laravel-dashboard": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"guzzlehttp/guzzle": "^7.5",
"orchestra/testbench": "^6.0|^7.0",
"php-parallel-lint/php-console-highlighter": "^0.5.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
"Wotta\\SentryTile\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Wotta\\SentryTile\\Tests\\": "tests"
}
},
"scripts": {
"post-install-cmd": [
"pre-commit install || true",
"pre-commit install --hook-type pre-push -c .pre-push-config.yaml || true"
],
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"lint": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/parallel-lint --no-progress src/ tests/ migrations/"
],
"format": "vendor/bin/php-cs-fixer fix --config=.phpcs_laravel.php --path-mode=intersection"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Wotta\\SentryTile\\SentryTileServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}