-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
83 lines (83 loc) · 2.68 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
{
"name": "usernotnull/tall-toasts",
"type": "library",
"description": "A Toast notification library for the Laravel TALL stack. You can push notifications from the backend or frontend to render customizable toasts with almost zero footprint on the published CSS/JS!",
"keywords": [
"usernotnull",
"tall-toasts",
"toast-notifications",
"ToastManager",
"ui-components",
"laravel-package",
"laravel",
"livewire",
"tailwindcss",
"alpinejs",
"tall-stack"
],
"homepage": "https://github.com/usernotnull/tall-toasts",
"license": "MIT",
"authors": [
{
"name": "John F (@usernotnull)",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0|^8.1",
"illuminate/contracts": "^8.15 || 9.0 - 9.34 || ^9.36 || ^10.0|^11.0",
"spatie/laravel-package-tools": "^1.17",
"livewire/livewire": "^v3"
},
"require-dev": {
"pestphp/pest": "^1.23.1",
"nunomaduro/larastan": "^2.9",
"laravel/pint": "^1.18",
"nunomaduro/collision": "^6.4.0",
"orchestra/testbench": "^8.23.2",
"pestphp/pest-plugin-laravel": "^1.4.0",
"friendsofphp/php-cs-fixer": "^v3.65",
"pestphp/pest-plugin-parallel": "^1.2",
"phpmd/phpmd": "^2.15",
"squizlabs/php_codesniffer": "^3.11",
"vimeo/psalm": "^5.26.1"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Usernotnull\\Toast\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Usernotnull\\Toast\\Tests\\": "tests"
}
},
"scripts": {
"test": "./vendor/bin/pest --no-coverage",
"workflow": "./vendor/bin/php-cs-fixer fix && ./vendor/bin/phpcs && ./vendor/bin/phpcbf && ./vendor/bin/psalm --output-format=github && ./vendor/bin/phpstan && ./vendor/bin/phpmd src github phpmd-ruleset.xml.dist && XDEBUG_MODE=coverage vendor/bin/pest --parallel --coverage --min=100",
"test-coverage": "XDEBUG_MODE=coverage ./vendor/bin/pest --parallel --coverage --min=100"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"composer/package-versions-deprecated": true
}
},
"extra": {
"laravel": {
"providers": [
"Usernotnull\\Toast\\ToastServiceProvider"
],
"aliases": {
"Toast": "ToastManager"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}