<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
- <component name="PublishConfigData" remoteFilesAllowedToDisappearOnAutoupload="false">
+ <component name="PublishConfigData" autoUpload="Always" serverName="odl.cube" remoteFilesAllowedToDisappearOnAutoupload="false" autoUploadExternalChanges="true">
<serverData>
<paths name="apps.fluidbook.com">
<serverdata>
<mappings>
- <mapping local="$PROJECT_DIR$" web="/" />
+ <mapping deploy="/vendor/cubist/socialite" local="$PROJECT_DIR$" web="/" />
</mappings>
+ <excludedPaths>
+ <excludedPath local="true" path="$PROJECT_DIR$/vendor" />
+ </excludedPaths>
</serverdata>
</paths>
<paths name="batman.cubedesigners.com">
<paths name="odl.cube">
<serverdata>
<mappings>
- <mapping local="$PROJECT_DIR$" web="/" />
+ <mapping deploy="/vendor/cubist/socialite" local="$PROJECT_DIR$" web="/" />
</mappings>
+ <excludedPaths>
+ <excludedPath local="true" path="$PROJECT_DIR$/vendor" />
+ </excludedPaths>
</serverdata>
</paths>
<paths name="parrotmail.dev.cubedesigners.com">
</serverdata>
</paths>
</serverData>
+ <option name="myAutoUpload" value="ALWAYS" />
</component>
</project>
\ No newline at end of file
--- /dev/null
+<?php
+
+namespace Cubist\Socialite;
+
+use Illuminate\Support\ServiceProvider;
+
+class CubistSocialiteServiceProvider extends ServiceProvider
+{
+
+ /**
+ * Indicates if loading of the provider is deferred.
+ *
+ * @var bool
+ */
+ protected $defer = false;
+
+ const NAMESPACE = 'cubist_socialite';
+
+ public function boot()
+ {
+ $base = realpath(__DIR__ . "/..");
+ $resourcesDir = $base . '/resources';
+
+ $this->loadTranslationsFrom(realpath($resourcesDir . '/lang'), self::NAMESPACE);
+ $this->loadRoutesFrom($base . '/routes/socialite.php');
+ //$this->publishes([$resourcesDir . '/config/cubist.php' => config_path('cubist.php')], 'config');
+ $this->loadViewsFrom(realpath($resourcesDir . '/views'), self::NAMESPACE);
+ }
+}
\ No newline at end of file
+++ /dev/null
-<?php
-
-namespace Cubist\Socialite;
-
-use Illuminate\Support\ServiceProvider;
-
-class SocialiteServiceProvider extends ServiceProvider
-{
-
- /**
- * Indicates if loading of the provider is deferred.
- *
- * @var bool
- */
- protected $defer = false;
-
- const NAMESPACE = 'cubist_socialite';
-
- public function boot()
- {
- $base = realpath(__DIR__ . "/..");
- $resourcesDir = $base . '/resources';
-
- $this->loadTranslationsFrom(realpath($resourcesDir . '/lang'), self::NAMESPACE);
- $this->loadRoutesFrom($base . '/routes/socialite.php');
- //$this->publishes([$resourcesDir . '/config/cubist.php' => config_path('cubist.php')], 'config');
- $this->loadViewsFrom(realpath($resourcesDir . '/views'), self::NAMESPACE);
- }
-}
\ No newline at end of file