-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
83 lines (83 loc) · 2.38 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "aporat/laravel-filter-var",
"description": "A Laravel package for filtering and sanitizing request variables with customizable rules",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/aporat/laravel-filter-var",
"keywords": [
"laravel",
"filter",
"sanitize",
"request",
"validation",
"filter-var",
"data-processing"
],
"authors": [
{
"name": "Adar Porat",
"email": "[email protected]",
"homepage": "https://github.com/aporat",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"illuminate/support": "^10.0 || ^11.0",
"nesbot/carbon": "^2.72 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"laravel/pint": "^1.21",
"orchestra/testbench": "^9.11",
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
"Aporat\\FilterVar\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aporat\\FilterVar\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"preferred-install": "dist",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Aporat\\FilterVar\\Laravel\\FilterVarServiceProvider"
],
"aliases": {
"FilterVar": "Aporat\\FilterVar\\Laravel\\Facades\\FilterVar"
}
}
},
"scripts": {
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-html coverage",
"test-ci": "phpunit --colors=always --coverage-text --coverage-clover coverage.xml",
"lint": "php-cs-fixer fix --dry-run --diff",
"lint-fix": "php-cs-fixer fix",
"post-install-cmd": [
"@composer dump-autoload --optimize"
],
"post-update-cmd": [
"@composer dump-autoload --optimize"
]
},
"support": {
"issues": "https://github.com/aporat/laravel-filter-var/issues",
"source": "https://github.com/aporat/laravel-filter-var"
},
"minimum-stability": "stable",
"prefer-stable": true
}