This repository was archived by the owner on Sep 27, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.74 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.74 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
{
"name": "phenixphp/validation",
"description": "Phenix validation layer",
"keywords": [
"phenixphp",
"validation"
],
"homepage": "https://github.com/phenixphp/validation",
"license": "MIT",
"authors": [
{
"name": "Omar Barbosa",
"email": "contacto@omarbarbosa.com",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"adbario/php-dot-notation": "^3.3",
"egulias/email-validator": "^4.0",
"nesbot/carbon": "^3.1",
"ramsey/uuid": "^4.7",
"symfony/uid": "^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.52.1",
"phpstan/phpstan": "^1.10",
"pestphp/pest": "^1.22",
"pestphp/pest-plugin-faker": "^1.0",
"pestphp/pest-plugin-global-assertions": "^1.0",
"pestphp/pest-plugin-parallel": "^1.2",
"phpunit/phpunit": "^9.5",
"rector/rector": "^1.0",
"spatie/ray": "^1.41",
"symfony/var-dumper": "^6.0"
},
"autoload": {
"psr-4": {
"Phenix\\Validation\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Phenix\\Validation\\Tests\\": "tests"
}
},
"scripts": {
"test": "XDEBUG_MODE=off vendor/bin/pest",
"test:debug": "vendor/bin/pest",
"test:coverage": "XDEBUG_MODE=coverage vendor/bin/pest --coverage",
"format": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}