-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
134 lines (134 loc) · 4.68 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
{
"name": "opendesa/opensid",
"description": "OpenSID adalah Sistem Informasi Desa (SID) yang sengaja dirancang supaya terbuka dan dapat dikembangkan bersama-sama oleh komunitas peduli SID. OpenSID awalnya dikembangkan menggunakan SID dari Combine Resource Institution (CRI). SID CRI terakhir yang telah digabung dengan OpenSID adalah SID 3.10 yang diperoleh dari teman-teman di https://www.facebook.com/groups/komunitasopendesa pada tanggal 15 Pebruari 2017.",
"license": "GPL-3.0-or-later",
"type": "project",
"keywords": [
"opensid",
"sistem-informasi-desa"
],
"require": {
"php": "^8.1",
"codeigniter/framework": "^3.1",
"cviebrock/eloquent-sluggable": "^10.0",
"doctrine/dbal": "3.7.0",
"dragonmantank/cron-expression": "^3.3",
"edwinhoksberg/php-fcm": "^1.2",
"erusev/parsedown": "^1.7",
"f9webltd/laravel-api-response-helpers": "^2.0",
"google/apiclient": "^2.11",
"illuminate/auth": "^10.0",
"illuminate/broadcasting": "^10.0",
"illuminate/bus": "^10.0",
"illuminate/cache": "^10.0",
"illuminate/collections": "^10.0",
"illuminate/config": "^10.0",
"illuminate/console": "^10.0",
"illuminate/cookie": "^10.0",
"illuminate/database": "^10.0",
"illuminate/encryption": "^10.0",
"illuminate/events": "^10.0",
"illuminate/filesystem": "^10.0",
"illuminate/hashing": "^10.0",
"illuminate/http": "^10.0",
"illuminate/log": "^10.0",
"illuminate/macroable": "^10.0",
"illuminate/notifications": "^10.0",
"illuminate/pagination": "^10.0",
"illuminate/queue": "^10.0",
"illuminate/session": "^10.0",
"illuminate/support": "^10.0",
"illuminate/translation": "^10.0",
"illuminate/validation": "^10.0",
"illuminate/view": "^10.0",
"karriere/pdf-merge": "^2.1",
"laravel-notification-channels/telegram": "^5.0",
"laravel/helpers": "^1.7",
"league/flysystem": "^3.8.0",
"mike42/escpos-php": "^3.0",
"opensid/router": "^2403",
"openspout/openspout": "^4.24",
"ramsey/uuid": "^4.2",
"rap2hpoutre/fast-excel": "^5.5",
"rennokki/laravel-eloquent-query-cache": "^3.4",
"slowprog/composer-copy-file": "^0.3.3",
"spatie/eloquent-sortable": "^4.3",
"spatie/laravel-fractal": "^6.2",
"spatie/laravel-json-api-paginate": "^1.15",
"spatie/laravel-query-builder": "^5.7",
"spipu/html2pdf": "^5.2",
"stechstudio/laravel-zipstream": "^5.0",
"symfony/console": "^6.1",
"symfony/process": "^6.1",
"symfony/var-dumper": "^6.1",
"tinymce/tinymce": "^7.2",
"voku/anti-xss": "^4.1",
"yajra/laravel-datatables-oracle": "^10.11"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"fakerphp/faker": "^1.9.1",
"friendsofphp/php-cs-fixer": "^3.49",
"mikey179/vfsstream": "~1.1.0",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^9.6",
"rector/rector": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "app/",
"Modules\\": "Modules/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
},
"copy-file": {
"storage/app/vendor": "vendor",
"vendor/tinymce/tinymce": "assets/js/tinymce-72"
},
"google/apiclient-services": [
"Script",
"Drive"
]
},
"scripts": {
"post-install-cmd": [
"SlowProg\\CopyFile\\ScriptHandler::copy"
],
"post-update-cmd": [
"SlowProg\\CopyFile\\ScriptHandler::copy"
],
"pre-autoload-dump": "Google\\Task\\Composer::cleanup",
"style-fix": [
"git rm --cached -r . -f",
"git add .",
"git commit -m \"git rm --cached -r . -f\"",
"npm run prettier-blade",
"git add .",
"git commit -m \"npm run prettier-blade\"",
"php-cs-fixer fix --allow-risky=yes",
"git add .",
"git commit -m \"php-cs-fixer fix --allow-risky=yes\"",
"rector process",
"git add .",
"git commit -m \"rector process\""
],
"test": "phpunit"
}
}