-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 793 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 793 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
{
"name": "geekgroveofficial/php-smart-validator",
"description": "A smart validation package for PHP",
"type": "library",
"require": {
"php": "^8.0"
},
"autoload": {
"psr-4": {
"GeekGroveOfficial\\PhpSmartValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GeekGroveOfficial\\PhpSmartValidator\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"laravel/pint": "*"
},
"scripts": {
"post-install-cmd": [
"@php artisan package:discover"
],
"post-update-cmd": [
"@php artisan package:discover"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"license": "MIT"
}