]> _ Git - cubist_socialite.git/commitdiff
wip #4765
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Thu, 7 Oct 2021 14:40:55 +0000 (16:40 +0200)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Thu, 7 Oct 2021 14:40:55 +0000 (16:40 +0200)
.idea/deployment.xml
src/CubistSocialiteServiceProvider.php [new file with mode: 0644]
src/SocialiteServiceProvider.php [deleted file]

index 60dbce01ff1b5ba4865eb259c802ca4fb93bd2dc..6ac59bf5d2b65678124221a7c802926320e02377 100644 (file)
@@ -1,12 +1,15 @@
 <?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
diff --git a/src/CubistSocialiteServiceProvider.php b/src/CubistSocialiteServiceProvider.php
new file mode 100644 (file)
index 0000000..66359c4
--- /dev/null
@@ -0,0 +1,29 @@
+<?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
diff --git a/src/SocialiteServiceProvider.php b/src/SocialiteServiceProvider.php
deleted file mode 100644 (file)
index 8ac9e1c..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<?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