This repository was archived by the owner on Jan 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.4 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.4 KB
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
{
"name": "vinkla/alert",
"description": "A Bootstrap alert helper for Laravel",
"keywords": [
"laravel",
"bootstrap",
"alert",
"flash"
],
"license": "MIT",
"authors": [
{
"name": "Vincent Klaiber",
"email": "hello@vinkla.com",
"homepage": "https://vinkla.com"
}
],
"require": {
"php": "^7.1.3",
"illuminate/contracts": "5.8.*",
"illuminate/session": "5.8.*",
"illuminate/support": "5.8.*"
},
"require-dev": {
"graham-campbell/analyzer": "^2.1",
"graham-campbell/testbench": "^5.2",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^7.5 || ^8.0"
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "3.3-dev"
},
"laravel": {
"providers": [
"Vinkla\\Alert\\AlertServiceProvider"
],
"aliases": {
"Alert": "Vinkla\\Alert\\Facades\\Alert"
}
}
},
"autoload": {
"psr-4": {
"Vinkla\\Alert\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Vinkla\\Tests\\Alert\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}