Skip to content

Commit 2a4a9c1

Browse files
committed
Composer
1 parent e46167f commit 2a4a9c1

4 files changed

Lines changed: 103 additions & 3 deletions

File tree

composer.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "imperazim/libform",
3+
"description": "Form library for PocketMine plugins",
4+
"type": "library",
5+
"license": "MIT",
6+
"autoload": {
7+
"psr-4": {
8+
"imperazim\\form\\": "src/imperazim/form"
9+
}
10+
},
11+
"require": {
12+
"php": "^8.2"
13+
},
14+
"require-dev": {
15+
"phpstan/phpstan": "^1.10"
16+
}
17+
}

composer.lock

Lines changed: 79 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

icon.png

-27.4 KB
Binary file not shown.

plugin.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
name: LibForm
22
version: 1.0.0
33

4-
authors:
4+
authors:
55
- ImperaZim
6-
6+
77
api: 5.0.0
88
main: imperazim\form\LibForm
99
load: STARTUP
1010

1111
extensions:
12-
Core: ">=8.2"
12+
Core: ">=8.2"
13+
14+
autoload:
15+
psr-4:
16+
imperazim\\form\\: src/imperazim/form

0 commit comments

Comments
 (0)