-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 784 Bytes
/
Copy pathcomposer.json
File metadata and controls
37 lines (37 loc) · 784 Bytes
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
{
"name": "stancl/package",
"description": "",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Samuel Štancl",
"email": "samuel.stancl@gmail.com"
}
],
"autoload": {
"psr-4": {
"Stancl\\Package\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Stancl\\Package\\Tests\\": "tests/"
}
},
"require": {
"illuminate/support": "^8.24"
},
"require-dev": {
"orchestra/testbench": "^6.9",
"vimeo/psalm": "^4.2",
"nunomaduro/larastan": "^0.6.10"
},
"extra": {
"laravel": {
"providers": [
"Stancl\\Package\\PackageServiceProvider"
]
}
}
}