-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 920 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
{
"name": "wtl/command-line-validation",
"description": "This package is built on top of the laravel artisan command package. With this additional package you can validate the input data.",
"license": "MIT",
"autoload": {
"psr-4": {
"Wtl\\CommandLineValidation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"classmap": [
"tests/"
]
},
"authors": [
{
"name": "JonasGreim",
"email": "[email protected]"
},
{
"name": "eissmann",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4|^8.0",
"illuminate/support": "^8.0",
"illuminate/validation": "^8.48.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}