-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1 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
47
48
49
50
{
"name": "jawira/sanitizer",
"description": "\ud83d\ude37 Sanitize your objects with attributes.",
"license": [
"MIT"
],
"type": "library",
"keywords": [
"attribute",
"sanitizer",
"filter"
],
"authors": [
{
"name": "Jawira Portugal",
"email": "[email protected]"
}
],
"homepage": "https://github.com/jawira/sanitizer",
"require": {
"php": "^8.1",
"symfony/string": "^5.1 || ^6.0 || ^7.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.43",
"friendsofphp/php-cs-fixer": "^3.62",
"jawira/skeleton": "^2.23",
"pds/skeleton": "^1.0",
"phpunit/phpunit": "^10.5.30",
"vimeo/psalm": "^5.25"
},
"autoload": {
"psr-4": {
"Jawira\\Sanitizer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dummies\\": "tests/Dummies"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"platform-check": true,
"preferred-install": "dist",
"sort-packages": true
}
}