forked from vkovic/laravel-custom-casts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 897 Bytes
/
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
{
"name": "vkovic/laravel-custom-casts",
"description": "Make your own custom cast type for Laravel model attributes",
"keywords": [
"laravel",
"model",
"casts",
"cast",
"datatype"
],
"license": "MIT",
"authors": [
{
"name": "Vladimir Ković",
"email": "vlada.kovic@gmail.com"
}
],
"autoload": {
"psr-4": {
"Vkovic\\LaravelCustomCasts\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Vkovic\\LaravelCustomCasts\\Test\\": "tests"
}
},
"require": {
"php": "^7.1|^8.0"
},
"require-dev": {
"illuminate/database": "^5.5|^6.0|^8.20",
"orchestra/testbench": "^3.5|^4.0|^6.0",
"orchestra/database": "^3.5|^4.0|^5.0",
"phpunit/phpunit": "^6.3|^7.0|^8.0|^9.4"
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"minimum-stability": "dev"
}