Skip to content
This repository has been archived by the owner on Jun 24, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release/0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecancinof committed Feb 5, 2016
2 parents 4ca6bc9 + c80809d commit 75ef97f
Show file tree
Hide file tree
Showing 7 changed files with 606 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 @@
composer.phar
composer.lock
/vendor
/tests
21 changes: 21 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "cokecancino/laravel-flow",
"description": "A Laravel Package to use Flow (https://www.flow.cl)",
"license": "MIT",
"authors": [
{
"name": "Jorge Cancino Flores",
"email": "jorgecancinof@gmail.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5.0",
"cokecancino/laravel-flow": "~0.1"
},
"autoload": {
"psr-4": {
"CokeCancino\\LaravelFlow\\": "src/"
}
}
}
13 changes: 13 additions & 0 deletions src/Facades/Flow.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace CokeCancino\LaravelFlow\Facades;

use Illuminate\Support\Facades\Facade;

class Flow extends Facade
{
protected static function getFacadeAccessor()
{
return \CokeCancino\LaravelFlow\Flow::class;
}
}
Loading

0 comments on commit 75ef97f

Please sign in to comment.