Skip to content

Commit

Permalink
Merge pull request #1 from jorenvh/feature-basic-folder-sturcture
Browse files Browse the repository at this point in the history
Add the start files for the package
  • Loading branch information
jorenvh committed Aug 23, 2015
2 parents 13ab0cf + d52fd4a commit c27253f
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 0 deletions.
Empty file added README.md
Empty file.
5 changes: 5 additions & 0 deletions config/createpackages.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php

return [

];
42 changes: 42 additions & 0 deletions src/Commands/CreatePackageCommand.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?php

namespace jorenvanhocht\CreatePackages\Commands;

use Illuminate\Console\Command;

class CreatePackageCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'make:package';

/**
* The console command description.
*
* @var string
*/
protected $description = 'Make basic folder structure for a new package.';

/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}

/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
//
}
}
27 changes: 27 additions & 0 deletions src/Providers/CreatePackagesServiceProvider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php

namespace jorenvanhocht\CreatePackages\Providers;

use Illuminate\Support\ServiceProvider;

class CreatePackagesServiceProvider extends ServiceProvider {

/**
* Register the service provider
*
*/
public function register()
{

}

/**
* Load the resources
*
*/
public function boot()
{

}

}

0 comments on commit c27253f

Please sign in to comment.