-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.66 KB
/
Copy pathcomposer.json
File metadata and controls
66 lines (66 loc) · 1.66 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
60
61
62
63
64
65
66
{
"name": "frameworkdevar/framework",
"description": "A PHP Framework, built for building fast",
"version": "0.17.0",
"authors": [
{
"name": "Tomás Malbrán",
"homepage": "https://github.com/TomMalbran"
}
],
"require": {
"php": "^8.1",
"ext-mysqli": "*",
"ext-curl": "*",
"ext-zip": "*",
"ext-gd": "*",
"ext-mbstring": "*"
},
"require-dev": {
"firebase/php-jwt": "^6.10",
"mustache/mustache": "^3.0",
"phpmailer/phpmailer": "^6.9",
"openspout/openspout": "^4.26",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"squizlabs/php_codesniffer": "^4.0",
"slevomat/coding-standard": "~8.0",
"phpunit/phpunit": "^11.5",
"dompdf/dompdf": "^3.1"
},
"scripts": {
"test": "phpunit"
},
"suggest": {
"mustache/mustache": "Used for Rendering templates",
"firebase/php-jwt": "Used in Auth",
"phpmailer/phpmailer": "Used for Mailing with SMTP",
"openspout/openspout": "Used to Import/Export XLSX data",
"dompdf/dompdf": "Used to create PDFs from HTML"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"bin": [
"framework"
],
"extras": {
"phpstan": {
"includes": [
"phpstan-rules.neon"
]
}
},
"autoload": {
"psr-4": {
"Framework\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}