forked from prasathmani/tinyfilemanager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.19 KB
/
Copy pathcomposer.json
File metadata and controls
54 lines (54 loc) · 1.19 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
54
{
"name": "slapiar/tinyfilemanager",
"description": "Secure, modular file manager with comprehensive testing",
"type": "application",
"license": "MIT",
"authors": [
{
"name": "Prasath",
"email": "prasathmhn@gmail.com"
},
{
"name": "Security Refactoring",
"role": "Contributors"
}
],
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"mockery/mockery": "^1.5",
"fakerphp/faker": "^1.20",
"phpstan/phpstan": "^1.0",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"TFM\\": "src/"
},
"files": [
"src/bootstrap.php",
"src/security.php"
]
},
"autoload-dev": {
"psr-4": {
"TFM\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit tests/",
"test:unit": "phpunit tests/unit/",
"test:integration": "phpunit tests/integration/",
"test:coverage": "phpunit --coverage-html=coverage tests/",
"test:security": "phpunit --group=security tests/",
"analyze": "phpstan analyse src/",
"lint": "phpcs --standard=PSR12 src/ tests/"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": false
}
}
}