Skip to content
This repository was archived by the owner on Feb 14, 2021. It is now read-only.

Commit 858d369

Browse files
author
Francesco Paolocci
committed
Added Composer support
1 parent 844efe7 commit 858d369

File tree

3 files changed

+42
-1
lines changed

3 files changed

+42
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/.idea/
2+
/vendor/
3+
composer.lock

README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1-
# laravel-ts3admin
1+
# laravel-ts3admin
2+
Laravel integration for [par0noid's ts3admin.class](https://github.com/par0noid/ts3admin.class)
3+
4+
#### Installation
5+
6+
1. Require composer package:
7+
8+
`composer require micky5991\laravel-ts3admin`
9+
10+
2.

composer.json

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "micky5991/laravel-ts3admin",
3+
"description": "Laravel integration for par0noid/ts3admin",
4+
"type": "library",
5+
"license": "GPL-3.0",
6+
"minimum-stability": "stable",
7+
"require": {
8+
"par0noid/ts3admin": "dev-composer"
9+
},
10+
"version": "0.0.1",
11+
"autoload": {
12+
"psr-4": {
13+
"Micky5991\\laravel-ts3admin": "src"
14+
}
15+
},
16+
"repositories": [
17+
{
18+
"type": "git",
19+
"url": "https://github.com/M4UR1C3PR3/ts3admin.class"
20+
}
21+
],
22+
"authors": [
23+
{
24+
"name": "Francesco Paolocci",
25+
"homepage": "https://github.com/micky5991",
26+
"role": "Developer"
27+
}
28+
]
29+
}

0 commit comments

Comments
 (0)