Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc updates, add more to directable #35

Merged
merged 1 commit into from
Jan 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@

The goal of this package is a _configurable_ Laravel application structure with a few niceties thrown in. And I swear only tiny bits of my personal opinion made it into the default configuration. ;)

### Testing

```bash
composer test
```

### Changelog

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
Expand Down
5 changes: 5 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
"role": "Developer"
}
],
"support": {
"source": "https://github.com/handsomebrown/laraca-arch",
"issues": "https://github.com/handsomebrown/laraca-arch/issues",
"discussions": "https://github.com/handsomebrown/laraca-arch/discussions"
},
"require": {
"php": "^8.1",
"illuminate/support": "10.*"
Expand Down
2 changes: 1 addition & 1 deletion config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
*/
'microservice' => [
'enabled' => true,
'path' => 'Microservices',
'path' => 'Services',
'parent' => 'app',
],

Expand Down
4 changes: 4 additions & 0 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ export default defineConfig({
text: "Domains",
link: "/config-domains",
},
{
text: "Microservices",
link: "/config-microservices",
},
],
},
{
Expand Down
16 changes: 16 additions & 0 deletions docs/additional-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ artisan domain:list

Generates full list of domain names.

## init:micro

```bash
artisan init:micro [name]
```

Generates [microservice](/config-microservices#init-micro).

## init:structure

```bash
Expand All @@ -32,6 +40,14 @@ artisan make:enum [name]

Default dir in config: `app/Enums`

## make:strategy

```bash
artisan make:strategy [name]
```

Default dir in config: `app/Strategy`

## make:value

```bash
Expand Down
Loading
Loading