-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.32 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.32 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
{
"name": "sytxlabs/filesanitizer",
"description": "A PHP library to sanitize file names and content to prevent security vulnerabilities.",
"type": "library",
"license": "MIT",
"keywords": ["file sanitization", "security", "PHP library"],
"authors": [
{
"name": "Shaun Lüdeke",
"email": "info@sytxlabs.eu",
"homepage": "https://sytxlabs.eu",
"role": "Developer"
}
],
"homepage": "https://sytxlabs.eu",
"autoload": {
"psr-4": {
"SytxLabs\\FileSanitizer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SytxLabs\\FileSanitizer\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"ext-dom": "*",
"ext-libxml": "*",
"ext-exif": "*",
"ext-gd": "*",
"ext-zip": "*",
"ext-fileinfo": "*"
},
"require-dev": {
"portavice/laravel-pint-config": "^2.0",
"phpunit/phpunit": "^9",
"roave/security-advisories": "dev-latest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"cs": "pint --config vendor/portavice/laravel-pint-config/pint.json --test",
"csfix": "pint --config vendor/portavice/laravel-pint-config/pint.json",
"test": "phpunit --configuration phpunit.xml"
},
"minimum-stability": "dev",
"prefer-stable": true
}