Skip to content

Commit

Permalink
Merge pull request #156 from alphayowakarindi/master
Browse files Browse the repository at this point in the history
Fix Laravel version compatibility and documentation error
  • Loading branch information
LarsWiegers committed Sep 21, 2023
2 parents 715d022 + 3062c1f commit 19116a7
Show file tree
Hide file tree
Showing 31 changed files with 8 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .cache/plugin/social/Roboto-Black.ttf
Binary file not shown.
Binary file added .cache/plugin/social/Roboto-BlackItalic.ttf
Binary file not shown.
Binary file added .cache/plugin/social/Roboto-Bold.ttf
Binary file not shown.
Binary file added .cache/plugin/social/Roboto-BoldItalic.ttf
Binary file not shown.
Binary file added .cache/plugin/social/Roboto-Italic.ttf
Binary file not shown.
Binary file added .cache/plugin/social/Roboto-Light.ttf
Binary file not shown.
Binary file added .cache/plugin/social/Roboto-LightItalic.ttf
Binary file not shown.
Binary file added .cache/plugin/social/Roboto-Medium.ttf
Binary file not shown.
Binary file added .cache/plugin/social/Roboto-MediumItalic.ttf
Binary file not shown.
Binary file added .cache/plugin/social/Roboto-Regular.ttf
Binary file not shown.
Binary file added .cache/plugin/social/Roboto-Thin.ttf
Binary file not shown.
Binary file added .cache/plugin/social/Roboto-ThinItalic.ttf
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions docs/02-development-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,14 @@ You can now require your local package in the Laravel application using your cho
composer require johndoe/blogpackage
```

Note: This documentation assumes you are using Laravel 8.0. If you are using Laravel 10, the above command will throw a ```minimum stability constraint``` error. You can fix the issue by adding the ```version``` key below the ```name``` key in the ```composer.json``` file of the package.

```json title="composer.json"
{
"version": "1.0.0",
}
```

By default, the package is added under `vendor` folder as a symlink if possible. If you would like to make a physical copy instead (i.e. _mirroring_), add the field `"symlink": false` to the repository definition's `options` property:

```json title="composer.json"
Expand Down

0 comments on commit 19116a7

Please sign in to comment.