This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
99 lines (99 loc) · 3 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "tjvb/laravel-dashboard-packagist-tile",
"description": "A tile for Laravel Dashboard that shows statistics from packagist.",
"license": "MIT",
"keywords": [
"tjvb",
"laravel-dashboard-packagist-tile"
],
"readme": "README.md",
"authors": [
{
"name": "Tobias van Beek",
"email": "[email protected]",
"homepage": "http://www.tjvb.nl"
}
],
"homepage": "https://gitlab.com/tjvb/laravel-dashboard-packagist-tile",
"support": {
"issues": "https://gitlab.com/tjvb/laravel-dashboard-packagist-tile/-/issues",
"source": "https://gitlab.com/tjvb/laravel-dashboard-packagist-tile/-/tree/master"
},
"funding": [
{
"type": "paypal",
"url": "https://paypal.me/tvbeek"
},
{
"type": "github",
"url": "https://github.com/sponsors/tvbeek"
},
{
"type": "github",
"url": "https://github.com/sponsors/TJVB"
}
],
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"illuminate/support": "^7.0 || ^8.0 || ^9.0 || ^10.0",
"livewire/livewire": "^1.0 || ^2.0",
"spatie/laravel-dashboard": "^1.0 || ^2.0",
"spatie/packagist-api": "^2.0"
},
"require-dev": {
"fakerphp/faker": "^1.9",
"orchestra/testbench": "^5.2 || ^6.0 || ^7.0 || ^8.0",
"phpmd/phpmd": "^2.13",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"TJVB\\PackagistTile\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TJVB\\PackagistTile\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"TJVB\\PackagistTile\\PackagistTileServiceProvider"
]
}
},
"scripts": {
"analyse": [
"@phpmd"
],
"analyze": "@analyse",
"check": [
"@cs-fix",
"@test-coverage",
"@analyse"
],
"cs": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"format": "@cs-fix",
"phpmd": "vendor/bin/phpmd src/ text phpmd.xml.dist",
"test": "vendor/bin/phpunit --no-coverage",
"test-coverage": "vendor/bin/phpunit --coverage-html build/coverage"
},
"scripts-descriptions": {
"analyse": "Run the analyse steps (PHPMD)",
"analyze": "See analyse",
"check": "Runs @analyse, @cs-fix, @test-coverage and @infection.",
"cs": "Check the codestyle with ecs.",
"cs-fix": "Check the codestyle with ecs and if possible fix the found issues.",
"phpmd": "Analyse the code with PHPMD",
"test": "Run the PHPUnit tests without coverage.",
"test-coverage": "Run the PHPUnit tests with coverage."
}
}