Skip to content

Commit fcfa6b7

Browse files
committed
Simplify directory structure.
1 parent ed99e4d commit fcfa6b7

File tree

135 files changed

+10
-10
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+10
-10
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@
5050
},
5151
"autoload": {
5252
"psr-4": {
53-
"Osiset\\ShopifyApp\\": "src/ShopifyApp"
53+
"Osiset\\ShopifyApp\\": "src/"
5454
}
5555
},
5656
"autoload-dev": {
5757
"psr-4": {
58-
"Osiset\\ShopifyApp\\Test\\": "tests"
58+
"Osiset\\ShopifyApp\\Test\\": "tests/"
5959
}
6060
},
6161
"minimum-stability": "dev",

phpunit.xml.dist

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
>
1818
<coverage>
1919
<include>
20-
<directory suffix=".php">src/ShopifyApp/</directory>
20+
<directory suffix=".php">src/</directory>
2121
</include>
2222
<exclude>
23-
<directory>src/ShopifyApp/Contracts/</directory>
24-
<directory>src/ShopifyApp/Exceptions/</directory>
25-
<directory>src/ShopifyApp/Objects/Enums/</directory>
26-
<directory>src/ShopifyApp/resources/</directory>
27-
<file>src/ShopifyApp/Messaging/Events/AppLoggedIn.php</file>
28-
<file>src/ShopifyApp/ShopifyAppProvider.php</file>
23+
<directory>src/Contracts/</directory>
24+
<directory>src/Exceptions/</directory>
25+
<directory>src/Objects/Enums/</directory>
26+
<directory>src/resources/</directory>
27+
<file>src/Messaging/Events/AppLoggedIn.php</file>
28+
<file>src/ShopifyAppProvider.php</file>
2929
</exclude>
3030
<report>
3131
<clover outputFile="build/logs/clover.xml"/>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function setUp(): void
5050

5151
// Setup database
5252
$this->setupDatabase($this->app);
53-
$this->withFactories(__DIR__.'/../src/ShopifyApp/resources/database/factories');
53+
$this->withFactories(__DIR__.'/../src/resources/database/factories');
5454

5555
// Assign the user model
5656
$this->model = $this->app['config']->get('auth.providers.users.model');

0 commit comments

Comments
 (0)