-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·36 lines (36 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
{
"name": "ziiven/money-transfer",
"description": "A Flarum extension. Allow user to transfer money to other users",
"type": "flarum-extension",
"license": "MIT",
"require": {
"flarum/core": "^1.0",
"antoinefr/flarum-ext-money": "*"
},
"support": {
"issues": "https://github.com/Ziiven/ziven-money-transfer/issues",
"source": "https://github.com/Ziiven/ziven-money-transfer"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Ziven\\transferMoney\\": "src/"
}
},
"authors": [
{
"name": "Ziven"
}
],
"extra": {
"flarum-extension": {
"title": "Ziven Money Transfer",
"icon": {
"name": "fas fa-exchange-alt",
"backgroundColor": "#238c59",
"color": "#fff"
}
}
}
}