-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
112 lines (112 loc) · 3.28 KB
/
Copy pathcomposer.json
File metadata and controls
112 lines (112 loc) · 3.28 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "mohsin-rafique/expense-manager",
"description": "A modern, open-source personal finance management application built with Yii2",
"keywords": [
"yii2",
"expense",
"income",
"finance",
"budget",
"tracker",
"management",
"personal finance"
],
"homepage": "https://github.com/mohsin-rafique/expense-manager",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Mohsin Rafique",
"email": "mohsin.rafique@gmail.com",
"homepage": "https://mohsinrafique.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/mohsin-rafique/expense-manager/issues",
"source": "https://github.com/mohsin-rafique/expense-manager"
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"kartik-v/yii2-widget-datepicker": "^1.4",
"kartik-v/yii2-widget-select2": "^2.2",
"miloschuman/yii2-highcharts-widget": "^11.0",
"mpdf/mpdf": "^8.3",
"phpoffice/phpspreadsheet": "^2.4",
"vlucas/phpdotenv": "^5.6",
"yiisoft/yii2": "^2.0.53",
"yiisoft/yii2-bootstrap5": "^2.0.51",
"yiisoft/yii2-imagine": "^2.3",
"yiisoft/yii2-symfonymailer": "^3.0"
},
"require-dev": {
"yiisoft/yii2-debug": "^2.1.27",
"yiisoft/yii2-gii": "^2.2.7",
"yiisoft/yii2-faker": "^2.0.5",
"phpunit/phpunit": "^10.5",
"codeception/codeception": "^5.1",
"codeception/lib-innerbrowser": "^4.0",
"codeception/module-asserts": "^3.0",
"codeception/module-yii2": "^1.1",
"codeception/module-filesystem": "^3.0",
"codeception/verify": "^3.0",
"symfony/browser-kit": "^6.4 || ^7.0",
"yiisoft/yii2-coding-standards": "^3.0"
},
"autoload": {
"psr-4": {
"app\\": ""
},
"exclude-from-classmap": [
"migrations/",
"tests/"
]
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
},
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
},
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"post-install-cmd": [
"yii\\composer\\Installer::postInstall"
],
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject",
"yii\\composer\\Installer::postInstall"
],
"test": "codecept run",
"test-coverage": "codecept run --coverage --coverage-xml --coverage-html"
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"runtime": "0777",
"web/assets": "0777",
"web/uploads": "0777",
"yii": "0755"
}
]
},
"yii\\composer\\Installer::postInstall": {
"generateCookieValidationKey": [
"config/web.php"
]
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}