-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcomposer.json
40 lines (40 loc) · 940 Bytes
/
composer.json
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
{
"name": "tanhongit/new-mvc-shop",
"description": "new-mvc-shop project is a simple project to help you understand the MVC model in PHP",
"keywords": [
"new-mvc-shop",
"mvc",
"php",
"php-mvc",
"php-mvc-shop",
"php-mvc-shop-project",
"mvc-shop"
],
"type": "project",
"homepage": "https://tanhongit.com",
"authors": [
{
"name": "Tan Nguyen",
"email": "[email protected]",
"homepage": "https://tanhongit.com"
}
],
"license": "MIT",
"require": {
"php": "^8.0",
"phpmailer/phpmailer": "^v6.9",
"vlucas/phpdotenv": "^v5.6",
"ext-mysqli": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.37.1",
"phpstan/phpstan": "^1.10.39"
},
"support": {
"issues": "https://github.com/tanhongit/new-mvc-shop/issues"
},
"scripts": {
"analyse": "vendor/bin/phpstan",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
}
}