-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1.07 KB
/
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
45
46
{
"name": "webman-tech/laravel-validation",
"type": "library",
"license": "MIT",
"description": "Webman plugin webman-tech/laravel-validation",
"require": {
"php": "^8.2",
"illuminate/validation": "^11.0"
},
"require-dev": {
"illuminate/database": "^11.37",
"pestphp/pest": "^3.7",
"symfony/translation": "^7.2",
"symfony/var-exporter": "^7.2",
"webman-tech/laravel-translation": "dev-main",
"workerman/webman-framework": "^1.6"
},
"_comments": [
"symfony/translation for autodetct locale",
"illuminate/database for unique rule"
],
"autoload": {
"psr-4": {
"WebmanTech\\LaravelValidation\\": "src"
},
"files": [
"src/helper.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "pest",
"transform-facade-comments": "php scripts/transform_facade_comments.php",
"replace-validation-files": "php scripts/replace_validation_files.php"
}
}