-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
135 lines (135 loc) · 4.31 KB
/
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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "logicent/crudbase",
"description": "Crudbase",
"version": "1.0.0-alpha",
"keywords": [
"database",
"yii2"
],
"homepage": "https://github.com/logicent/crudbase",
"type": "project",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Appsoft",
"homepage": "https://appsoft.co.ke/"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/logicent/crudbase/issues?state=open",
"source": "https://github.com/logicent/crudbase",
"docs": "https://github.com/logicent/crudbase/wiki/1.x/"
},
"minimum-stability": "beta",
"require": {
"php": "^8.0",
"yiisoft/yii2": "~2.0.14",
"yiisoft/yii2-bootstrap": "~2.0.0",
"yiisoft/yii2-swiftmailer": "~2.0.0",
"yiisoft/yii2-imagine": "^2.3",
"yiisoft/yii2-shell": "^2.0",
"vlucas/phpdotenv": "^5.3",
"imaginary/yii2-fomantic-ui": "~2",
"thamtech/yii2-yaml": "^0.3.2",
"thamtech/yii2-uuid": "^1.2",
"myclabs/php-enum": "^1.8",
"yii2mod/yii2-enum": "*",
"bizley/migration": "^4.1",
"spatie/db-dumper": "^2.21",
"league/flysystem": "^1.0",
"mikehaertl/phpwkhtmltopdf": "^2.2",
"league/csv": "^9.7",
"knplabs/knp-snappy": "^1.2",
"phpoffice/phpspreadsheet": "^1.17",
"yidas/phpspreadsheet-helper": "^1.3",
"practically/yii2-chartjs": "^1.1",
"bower-asset/fomantic-ui": "^2.9.0",
"bizley/quill": "^3.3",
"npm-asset/quill-smart-break": "^0.2",
"npm-asset/highlight.js": "^11.5.1",
"npm-asset/sweetalert2": "^11.4.24",
"npm-asset/animate.css": "^4.1.1",
"npm-asset/dirrty": "^1.0.0",
"npm-asset/datatables.net": "^1.12.1",
"npm-asset/datatables.net-dt": "^1.12.1",
"npm-asset/datatables.net-se": "^1.12.1",
"npm-asset/flatpickr": "^4.6.13",
"npm-asset/quill": "^1.3",
"npm-asset/htmx.org": "^1.8.0",
"npm-asset/sortablejs": "^1.15.0",
"npm-asset/tabler--icons": "^1.69",
"npm-asset/svg-loaders": "^0.2.0",
"npm-asset/alpinejs": "^3.10",
"npm-asset/picocss--pico": "^1.5",
"aeon-php/calendar": "^1.0"
},
"require-dev": {
"yiisoft/yii2-debug": "~2.0.0",
"yiisoft/yii2-gii": "~2.0.0",
"yiisoft/yii2-faker": "~2.0.0",
"codeception/verify": "~0.3.1",
"codeception/specify": "~0.4.3",
"kint-php/kint": "^4.1"
},
"autoload": {
"psr-4": {
"crudle\\app\\": "app",
"crudle\\app\\main\\": "app/modules/main",
"crudle\\app\\admin\\": "app/modules/admin",
"crudle\\ext\\": "modules"
}
},
"config": {
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"yiisoft/yii2-composer": true
}
},
"scripts": {
"post-install-cmd": [
"yii\\composer\\Installer::postInstall"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject",
"yii\\composer\\Installer::postInstall",
"@php -r \"exec('ln -sf bower-asset vendor/bower');\""
]
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"storage/backups": "0777",
"storage/logs": "0777",
"storage/rebrand": "0777",
"storage/runtime": "0777",
"web/assets": "0777",
"web/uploads": "0777",
"crudle": "0755"
}
]
},
"yii\\composer\\Installer::postInstall": {
"generateCookieValidationKey": [
"config/web.php"
]
},
"asset-installer-paths": {
"npm-asset-library": "vendor/npm-asset",
"bower-asset-library": "vendor/bower-asset"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}