Skip to content

Commit

Permalink
Merge pull request #33 from wayofdev/fix/styling
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp committed May 11, 2023
2 parents 214b012 + e503880 commit 6727b20
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 9 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/codesee-arch-diagram.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
# This workflow was added by CodeSee. Learn more at https://codesee.io/
# This is v2.0 of this workflow file

on: # yamllint disable-line rule:truthy
push:
branches:
- develop
pull_request_target:
types:
- opened
- synchronize
- reopened

name: 🤖 CodeSee

permissions: read-all

jobs:
codesee:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: 💻 Analyze the repo with CodeSee
uses: Codesee-io/codesee-action@v2
with:
codesee-token: ${{ secrets.CODESEE_ARCH_DIAG_API_TOKEN }}
2 changes: 1 addition & 1 deletion app/bootstrap/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

$app = (new Illuminate\Foundation\Application(
$_ENV['APP_BASE_PATH'] ?? dirname(__DIR__)
))->useAppPath('src/Bridge/Laravel');
))->useAppPath('src/Bridge/Laravel/');

/*
|--------------------------------------------------------------------------
Expand Down
8 changes: 4 additions & 4 deletions app/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
},
"autoload": {
"psr-4": {
"Laravel\\": "src/Bridge/Laravel",
"Application\\": "src/Application",
"Domain\\": "src/Domain",
"Infrastructure\\": "src/Infrastructure",
"Laravel\\": "src/Bridge/Laravel/",
"Application\\": "src/Application/",
"Domain\\": "src/Domain/",
"Infrastructure\\": "src/Infrastructure/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
Expand Down
9 changes: 5 additions & 4 deletions app/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6727b20

Please sign in to comment.