Skip to content
This repository has been archived by the owner on Apr 10, 2018. It is now read-only.

Commit

Permalink
Initial commit (pkg made by Laravel4 workbench)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilumos committed Nov 3, 2013
0 parents commit 921b1a0
Show file tree
Hide file tree
Showing 12 changed files with 102 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/vendor
composer.phar
composer.lock
.DS_Store
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
language: php

php:
- 5.3
- 5.4
- 5.5

before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev

script: phpunit
24 changes: 24 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "zeropingheroes/lanager-core",
"description": "Core files for the LANager LAN party management web app",
"license": "AGPL-3.0",
"authors": [
{
"name": "Olly Baker",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"illuminate/support": "4.0.*"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-0": {
"Zeropingheroes\\LanagerCore\\": "src/"
}
},
"minimum-stability": "dev"
}
18 changes: 18 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="Package Test Suite">
<directory suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
</phpunit>
Empty file added public/.gitkeep
Empty file.
44 changes: 44 additions & 0 deletions src/Zeropingheroes/LanagerCore/LanagerCoreServiceProvider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?php namespace Zeropingheroes\LanagerCore;

use Illuminate\Support\ServiceProvider;

class LanagerCoreServiceProvider extends ServiceProvider {

/**
* Indicates if loading of the provider is deferred.
*
* @var bool
*/
protected $defer = false;

/**
* Bootstrap the application events.
*
* @return void
*/
public function boot()
{
$this->package('zeropingheroes/lanager-core');
}

/**
* Register the service provider.
*
* @return void
*/
public function register()
{
//
}

/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return array();
}

}
Empty file added src/config/.gitkeep
Empty file.
Empty file added src/controllers/.gitkeep
Empty file.
Empty file added src/lang/.gitkeep
Empty file.
Empty file added src/migrations/.gitkeep
Empty file.
Empty file added src/views/.gitkeep
Empty file.
Empty file added tests/.gitkeep
Empty file.

0 comments on commit 921b1a0

Please sign in to comment.