-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.4 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.4 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
55
56
57
58
59
{
"name": "ignou/online-appointment-system",
"description": "A comprehensive web-based appointment management system for hospitals and laboratories",
"type": "project",
"keywords": [
"appointment",
"healthcare",
"hospital",
"laboratory",
"php",
"mysql"
],
"license": "MIT",
"authors": [
{
"name": "IGNOU Students",
"email": "students@ignou.ac.in",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"ext-mysqli": "*",
"ext-json": "*",
"ext-session": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^1.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"config.php",
"includes/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"phpstan": "phpstan analyse",
"phpcs": "phpcs --standard=PSR12 src/",
"phpcbf": "phpcbf --standard=PSR12 src/"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}