-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.61 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.61 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "lemmon/validator",
"description": "A lightweight, fluent validation library for PHP.",
"license": "MIT",
"type": "library",
"keywords": [
"validation",
"validator",
"schema",
"zod",
"valibot"
],
"authors": [
{
"name": "Jakub Pelák",
"email": "jpelak@gmail.com"
}
],
"homepage": "https://github.com/lemmon/validator-php",
"require": {
"php": "^8.3"
},
"require-dev": {
"carthage-software/mago": "^1",
"ergebnis/composer-normalize": "^2.48",
"pestphp/pest": "^4.3",
"phpstan/phpstan": "^2.1",
"symfony/error-handler": "^7.0",
"symfony/var-dumper": "^7.0"
},
"autoload": {
"psr-4": {
"Lemmon\\": "src/Lemmon/"
}
},
"autoload-dev": {
"psr-4": {
"Lemmon\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"carthage-software/mago": true,
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true
},
"platform": {
"php": "8.3.0"
},
"sort-packages": true
},
"scripts": {
"analyse": "phpstan analyse",
"check": [
"@platform-check",
"mago format --check",
"@lint",
"npm run format:check",
"@test",
"@analyse"
],
"format": "mago format",
"lint": "mago lint",
"platform-check": "composer check-platform-reqs",
"test": "vendor/bin/pest"
}
}