Skip to content

Commit

Permalink
Update the changelog for the initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
leganz committed Jul 8, 2020
1 parent bd332d3 commit e03c995
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.1.0] - 2020-07-08
### Added
- Initial support for making the package.
- Add tests for the application

14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Changes between versions will be tracked in the [CHANGELOG](CHANGELOG.md).
## Installation

```bash
composer require ambersive/laravel-packagemaker
composer require ambersive/packagemaker
```

#### Optional: Publish the config
Expand All @@ -20,10 +20,18 @@ php artisan vendor:publish --tag=packagemaker
### Command

```bash
php artisan make:package ambersive/demo
php artisan make:package ambersive/demo
```

This command will create a scaffold for your next laravel project.
This command will create a scaffold for your next laravel project. Addtional options are:

***--force***

Will force the execution. Otherwise the command will not execute if a package with the same name exists.

***--composer***

Will add the package to the composer.json file of the laravel installation. It will also execute a "**compose require PACKAGE_NAME**".

## Feedback

Expand Down

0 comments on commit e03c995

Please sign in to comment.