Skip to content

Commit e0a4984

Browse files
committed
first commit
0 parents  commit e0a4984

File tree

6 files changed

+91
-0
lines changed

6 files changed

+91
-0
lines changed

.gitignore

+4
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

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

composer.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "logikio/laravel-algorithmia",
3+
"description": "Laravel 5+ Algorithmia Wrapper",
4+
"license": "MIT",
5+
"homepage": "http://github.com/logikio/laravel-algorithmia",
6+
"authors": [
7+
{
8+
"name": "logikio",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"require": {
13+
"php": ">=5.4.0",
14+
"illuminate/support": "5.1.*"
15+
},
16+
"autoload": {
17+
"psr-4": {
18+
"Logikio\\LaravelAlgorithmia\\": "src/Logikio/LaravelAlgorithmia"
19+
}
20+
},
21+
"minimum-stability": "dev"
22+
}

phpunit.xml

+18
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>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?php namespace Logikio\LaravelAlgorithmia;
2+
3+
use Illuminate\Support\ServiceProvider;
4+
5+
class LaravelAlgorithmiaServiceProvider extends ServiceProvider {
6+
7+
/**
8+
* Indicates if loading of the provider is deferred.
9+
*
10+
* @var bool
11+
*/
12+
protected $defer = false;
13+
14+
/**
15+
* Register the service provider.
16+
*
17+
* @return void
18+
*/
19+
public function register()
20+
{
21+
//
22+
}
23+
24+
/**
25+
* Get the services provided by the provider.
26+
*
27+
* @return array
28+
*/
29+
public function provides()
30+
{
31+
return [];
32+
}
33+
34+
}

tests/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)