File tree 6 files changed +91
-0
lines changed
src/Logikio/LaravelAlgorithmia
6 files changed +91
-0
lines changed Original file line number Diff line number Diff line change
1
+ /vendor
2
+ composer.phar
3
+ composer.lock
4
+ .DS_Store
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
+
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
+ }
Original file line number Diff line number Diff line change
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 number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments