-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 972 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 972 Bytes
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
{
"name": "candidv2/candidv2",
"description": "PHP-based image management and cataloging system",
"type": "project",
"license": "proprietary",
"require": {
"php": ">=8.3",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-imagick": "*",
"ext-exif": "*",
"vlucas/phpdotenv": "^5.6",
"intervention/image": "^3.0"
},
"require-dev": {
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"src/Helper/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage",
"analyse": "phpstan analyse"
}
}