Skip to content

Commit

Permalink
ASCII box charter style rulez
Browse files Browse the repository at this point in the history
  • Loading branch information
fulopattila122 committed Mar 15, 2024
1 parent 128b39d commit c50f19b
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 26 deletions.
2 changes: 1 addition & 1 deletion docs/creating-boxes.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
1. Init a git repo in an empty folder: `git init .`
2. Add composer.json:

```
```json
{
"name": "vendor/mybox",
"description": "My Box Rulez",
Expand Down
52 changes: 27 additions & 25 deletions docs/directory-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@

## Minimum Fileset For A Concord Module

```
```text
module-src/
Providers/
|-- ModuleServiceProvider.php
└── ModuleServiceProvider.php
resources/
|-- manifest.php
└── manifest.php
```

Expand All @@ -18,7 +20,7 @@ module-src/
The default locations are:

```
```text
module-src/
Console/
Commands/
Expand All @@ -28,35 +30,35 @@ module-src/
Factories/
Helpers/
Http/
|-- Controllers/
|-- Middleware/
|-- Requests/
|-- Resources/
├── Controllers/
├── Middleware/
├── Requests/
└── Resources/
Jobs/
Listeners/
Models/
Notifications/
Providers/
|-- ModuleServiceProvider.php
|-- EventServiceProvider.php
├── ModuleServiceProvider.php
└── EventServiceProvider.php
Services/
Tests/
|-- Feature
|-- Unit
├── Feature
└── Unit
resources/
|-- assets/
|-- config/
|-- module.php
|-- box.php
|-- database/
|-- migrations/
|-- seeds/
|-- lang/
|-- routes/
|-- api.php
|-- web.php
|-- views/
|-- manifest.php
├── assets/
└── config/
├── module.php
└── box.php
├── database/
├── migrations/
└── seeds/
├── lang/
└── routes/
├── api.php
└── web.php
├── views/
└── manifest.php
```

Expand Down

0 comments on commit c50f19b

Please sign in to comment.