-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
56 lines (56 loc) · 1.59 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
{
"name": "laralabs/toaster",
"description": "Easily generate and bind message JSON data to the view for use in frontend toast components",
"license": "MIT",
"authors": [
{
"name": "Matt Clinton",
"email": "matt@laralabs.uk"
}
],
"minimum-stability": "dev",
"require": {
"php": "^8.1",
"illuminate/support": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/session": "^10.0|^11.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"mockery/mockery": "^1.0",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^9.0|^10.5"
},
"autoload": {
"psr-4": {
"Laralabs\\Toaster\\": "src/",
"Laralabs\\Toaster\\Tests\\": "tests/"
},
"files": [
"src/Helpers/functions.php"
]
},
"scripts": {
"test": "./vendor/bin/phpunit",
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"vendor/bin/phpunit --log-junit=coverage/phpunit.junit.xml --coverage-cobertura=coverage/cobertura.xml --coverage-text"
]
},
"extra": {
"laravel": {
"providers": [
"Laralabs\\Toaster\\ToasterServiceProvider"
],
"aliases": {
"Toaster": "Laralabs\\Toaster\\Facades\\Toaster"
}
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}