-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
69 lines (69 loc) · 1.97 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
{
"name": "abordage/nova-html-card",
"description": "A Laravel Nova card that displays any html content, e.g. lists, notifications, small custom reports",
"license": "MIT",
"keywords": [
"laravel nova",
"nova card",
"nova html card"
],
"authors": [
{
"name": "Pavel Bychko",
"email": "box@abordage.dev",
"role": "Developer"
}
],
"homepage": "https://github.com/abordage/nova-html-card",
"require": {
"php": ">=7.4",
"laravel/nova": "^4.0 || ^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"larastan/larastan": "^1.0 || ^2.0",
"nunomaduro/collision": "^5.0 || ^6.0 || ^7.0 || ^8.0",
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"phpunit/phpunit": "^9.6 || ^10.0"
},
"repositories": {
"nova": {
"type": "composer",
"url": "https://nova.laravel.com"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Abordage\\HtmlCard\\": "src"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Abordage\\HtmlCard\\CardServiceProvider"
]
}
},
"scripts": {
"phpcsf": "vendor/bin/php-cs-fixer fix --diff",
"phpstan:generate-baseline": "vendor/bin/phpstan --generate-baseline",
"test:all": [
"@test:phpcsf",
"@test:phpstan"
],
"test:phpcsf": "vendor/bin/php-cs-fixer fix --dry-run",
"test:phpstan": "vendor/bin/phpstan analyse"
},
"scripts-descriptions": {
"phpcsf": "Run PHP-CS-Fixer fix",
"phpstan:generate-baseline": "Generate baseline for PHPStan",
"test:all": "Run all code analysis and tests",
"test:phpcsf": "Run PHP-CS-Fixer test",
"test:phpstan": "Run PHPStan"
}
}