-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.01 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.01 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
{
"name": "webfiori/file",
"description": "Basic class library to read, write and view files using PHP.",
"type": "library",
"version": "2.0.1",
"authors": [
{
"name": "Ibrahim BinAlshikh",
"email": "ibrahim@webfiori.com"
}
],
"license": "MIT",
"require": {
"php": ">=8.1",
"webfiori/jsonx": "4.0.x"
},
"require-dev": {
"webfiori/http": "*",
"webfiori/framework": "dev-dev",
"phpunit/phpunit": "^10.0"
},
"scripts": {
"test": "phpunit --configuration tests/phpunit.xml",
"test10": "phpunit --configuration tests/phpunit10.xml"
},
"keywords": [
"php",
"file",
"files",
"upload",
"uploading"
],
"autoload": {
"psr-4": {
"WebFiori\\File\\": "WebFiori/File/"
}
},
"autoload-dev": {
"psr-4": {
"WebFiori\\Framework\\Test\\File\\": "tests/WebFiori/Framework/Test/File/"
}
}
}