forked from rcsofttech85/php-file-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1021 Bytes
/
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
{
"name": "rcsofttech85/file-handler",
"description": "A simple library for abstracting various file operations and providing additional helper functions for file manipulation",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Rcsofttech85\\FileHandler\\": "src/"
}
},
"authors": [
{
"name": "rahul",
"email": "rcsofttech85@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">8.2",
"ext-sodium": "*",
"ext-ctype": "*",
"ext-zip": "*",
"ext-fileinfo": "*",
"symfony/console": "^6.3",
"symfony/dependency-injection": "^6.3",
"symfony/config": "^6.3",
"symfony/yaml": "^6.3",
"symfony/process": "^6.3",
"symfony/dotenv": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^10",
"squizlabs/php_codesniffer": "^3.7",
"symfony/var-dumper": "^6.3",
"phpstan/phpstan": "^1.10"
},
"bin": [
"bin/file-diff",
"bin/view-csv",
"bin/view-json",
"bin/file-encrypt"
]
}