-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.45 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.45 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": "codeigniter4/appstarter",
"description": "FreeComETT - Free Common Electronic Transcription Tool",
"license": "MIT",
"type": "project",
"homepage": "https://freereg.org.uk",
"require": {
"php": "^8.4",
"codeigniter4/framework": "^4.6",
"mongodb/mongodb": "^1.21.0",
"phpmailer/phpmailer": "^v6.10.0",
"ext-session": "*",
"ext-bz2": "*",
"ext-ctype": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-exif": "*",
"ext-fileinfo": "*",
"ext-filter": "*",
"ext-ftp": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-imagick": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mysqli": "*",
"ext-mbstring": "*",
"ext-mcrypt": "*",
"ext-mongodb": "*",
"ext-pdo": "*",
"ext-phar": "*",
"ext-simplexml": "*",
"ext-tokenizer": "*",
"ext-xml": "*",
"ext-zlib": "*",
"ext-zip": "*"
},
"require-dev": {
"fakerphp/faker": "^1.9",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Config\\": "app/Config/"
},
"exclude-from-classmap": [
"**/Database/Migrations/**"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Support\\": "tests/_support"
}
},
"scripts": {
"test": "phpunit"
}
}