Skip to content

Commit

Permalink
doc updates, add more to directable (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
shavonn committed Jan 4, 2024
1 parent 6124f9b commit 279187b
Show file tree
Hide file tree
Showing 13 changed files with 318 additions and 35 deletions.
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

0 comments on commit 279187b

Please sign in to comment.