-
Notifications
You must be signed in to change notification settings - Fork 158
/
composer.json
113 lines (113 loc) · 3.51 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
{
"name": "unaio/una",
"description": "UNA - Community Management System",
"license": "MIT",
"authors": [
{
"name": "UNA, Inc",
"homepage": "https://una.io"
}
],
"config": {
"vendor-dir": "plugins",
"allow-plugins": {
"avto-dev/composer-cleanup-plugin": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/unaio/composer-cleanup-plugin.git",
"reference": "dev-master"
},
{
"type": "vcs",
"url": "https://github.com/unaio/amazon-s3-php-class.git",
"reference": "dev-master"
},
{
"type": "package",
"package": {
"name": "curl/cacert",
"version": "0.0.1",
"dist": {
"url": "https://curl.se/ca/cacert.pem",
"type": "file"
}
}
},
{
"type": "package",
"package": {
"name": "ffmpeg/ffmpeg",
"version": "4.4.0",
"dist": {
"url": "https://github.com/eugeneware/ffmpeg-static/releases/download/b4.4/linux-x64",
"type": "file"
}
}
},
{
"type": "package",
"package": {
"name": "achingbrain/php5-akismet",
"version": "0.5",
"source": {
"url": "https://github.com/achingbrain/php5-akismet",
"type": "git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "unaio/amazon-s3-php-class-hmac-v2",
"version": "0.6",
"source": {
"url": "https://github.com/unaio/amazon-s3-php-class-hmac-v2",
"type": "git",
"reference": "3687dec0af7be2cb11f21828aa4b12d20c4c5935"
}
}
}
],
"require": {
"php": ">=8.1",
"akeeba/s3": "dev-development",
"achingbrain/php5-akismet": "0.5",
"unaio/amazon-s3-php-class-hmac-v2": "*",
"tpyo/amazon-s3-php-class": "dev-master",
"snipe/banbuilder": "dev-master",
"chargebee/chargebee-php": "^3.0",
"curl/cacert": "*",
"ffmpeg/ffmpeg": "*",
"ezyang/htmlpurifier": "^4.13",
"intervention/image": "^2.6",
"wikimedia/less.php": "*",
"matthiasmullie/minify": "^1.3",
"lusitanian/oauth": "^0.8.11",
"bshaffer/oauth2-server-php": "^1.12",
"erusev/parsedown": "@dev",
"paypal/paypal-checkout-sdk": "^1.0",
"phpmailer/phpmailer": "^6.5",
"stripe/stripe-php": "^7.95",
"twilio/sdk": "^8.3",
"avto-dev/composer-cleanup-plugin": "dev-master",
"mpratt/embera": "~2.0",
"spatie/calendar-links": "^1.5",
"pusher/pusher-php-server": "^7.2"
},
"scripts": {
"post-update-cmd": [
"@relocate-ffmpeg"
],
"post-install-cmd": [
"@relocate-ffmpeg"
],
"relocate-ffmpeg": [
"test -f ./plugins/ffmpeg/ffmpeg/linux-x64 && mv ./plugins/ffmpeg/ffmpeg/linux-x64 ./plugins/ffmpeg/ffmpeg.exe && rm -rf ./plugins/ffmpeg/ffmpeg || true",
"patch -p1 < patches/plugins_tpyo_amazon-s3-php-class.txt"
]
}
}