forked from archtechx/virtualcolumn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 705 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 705 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
{
"name": "stancl/virtualcolumn",
"description": "Eloquent virtual column.",
"license": "MIT",
"authors": [
{
"name": "Samuel Štancl",
"email": "samuel.stancl@gmail.com"
}
],
"autoload": {
"psr-4": {
"Stancl\\VirtualColumn\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Stancl\\VirtualColumn\\Tests\\": "tests/"
}
},
"require": {
"illuminate/support": "^6.0|^8.0|^9.0",
"illuminate/database": "^6.0|^8.0|^9.0"
},
"require-dev": {
"orchestra/testbench": "^4.0|^6.0|^7.0"
},
"minimum-stability": "dev",
"prefer-stable": true
}