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

Commit

Permalink
Added Composer support
Browse files Browse the repository at this point in the history
  • Loading branch information
Francesco Paolocci committed Jan 8, 2017
1 parent 844efe7 commit 858d369
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/.idea/
/vendor/
composer.lock
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
# laravel-ts3admin
# laravel-ts3admin
Laravel integration for [par0noid's ts3admin.class](https://github.com/par0noid/ts3admin.class)

#### Installation

1. Require composer package:

`composer require micky5991\laravel-ts3admin`

2.
29 changes: 29 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "micky5991/laravel-ts3admin",
"description": "Laravel integration for par0noid/ts3admin",
"type": "library",
"license": "GPL-3.0",
"minimum-stability": "stable",
"require": {
"par0noid/ts3admin": "dev-composer"
},
"version": "0.0.1",
"autoload": {
"psr-4": {
"Micky5991\\laravel-ts3admin": "src"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/M4UR1C3PR3/ts3admin.class"
}
],
"authors": [
{
"name": "Francesco Paolocci",
"homepage": "https://github.com/micky5991",
"role": "Developer"
}
]
}

0 comments on commit 858d369

Please sign in to comment.