Skip to content
This repository was archived by the owner on Jun 3, 2026. It is now read-only.

Commit f910d59

Browse files
author
Arnob Alam
committed
first commit
0 parents  commit f910d59

15 files changed

Lines changed: 746 additions & 0 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/vendor
2+
composer.phar
3+
composer.lock
4+
.DS_Store

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: php
2+
3+
php:
4+
- 5.3
5+
- 5.4
6+
- 5.5
7+
- 5.6
8+
- hhvm
9+
10+
before_script:
11+
- composer self-update
12+
- composer install --prefer-source --no-interaction --dev
13+
14+
script: phpunit

composer.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "govtribe/filebot",
3+
"description": "",
4+
"authors": [
5+
{
6+
"name": "Arnob L. Alam",
7+
"email": "aalam@govtribe.com"
8+
}
9+
],
10+
"require": {
11+
"php": ">=5.4.0",
12+
"illuminate/support": "4.2.*",
13+
"aws/aws-sdk-php-laravel": "1.*"
14+
},
15+
"autoload": {
16+
"classmap": [
17+
"src/migrations"
18+
],
19+
"psr-0": {
20+
"GovTribe\\Filebot\\": "src/"
21+
}
22+
},
23+
"minimum-stability": "stable"
24+
}

phpunit.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit backupGlobals="false"
3+
backupStaticAttributes="false"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
convertErrorsToExceptions="true"
7+
convertNoticesToExceptions="true"
8+
convertWarningsToExceptions="true"
9+
processIsolation="false"
10+
stopOnFailure="false"
11+
syntaxCheck="false"
12+
>
13+
<testsuites>
14+
<testsuite name="Package Test Suite">
15+
<directory suffix=".php">./tests/</directory>
16+
</testsuite>
17+
</testsuites>
18+
</phpunit>

public/.gitkeep

Whitespace-only changes.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php namespace GovTribe\Filebot\Facades;
2+
3+
use Illuminate\Support\Facades\Facade;
4+
5+
class Filebot extends Facade
6+
{
7+
/**
8+
* Get the registered name of the component.
9+
*
10+
* @return string
11+
*/
12+
protected static function getFacadeAccessor()
13+
{
14+
return 'filebot';
15+
}
16+
}

0 commit comments

Comments
 (0)