-
Notifications
You must be signed in to change notification settings - Fork 39
/
composer.json
53 lines (53 loc) · 1.08 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
{
"name": "fuyutsuki/texter",
"description": "Texter is a plugin for PocketMine-MP that supports multiple worlds and allows you to add, edit, move, and delete FloatingText.",
"type": "pocketmine-plugin",
"license": "NCSA",
"authors": [
{
"name": "yuko fuyutsuki",
"email": "[email protected]"
},
{
"name": "xxFLORII"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "dktapps-pm-pl/pmforms",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/dktapps-pm-pl/pmforms",
"reference": "master"
},
"autoload": {
"psr-4": {
"dktapps\\pmforms\\": ["src/dktapps/pmforms"]
}
}
}
}
],
"require": {
"dktapps-pm-pl/pmforms": "dev-master"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"pocketmine/pocketmine-mp": "^5.3",
"sof3/pharynx": "^0.3.4"
},
"autoload": {
"psr-4": {
"jp\\mcbe\\fuyutsuki\\Texter\\": ["src"]
}
},
"scripts": {
"build": "php -dphar.readonly=0 vendor/bin/pharynx -i=. -c -p=Texter.phar"
},
"config": {
"sort-packages": true
}
}