49 lines
993 B
Markdown
49 lines
993 B
Markdown
# LaravelVersionTracker
|
|
|
|
track the version of your laravel application to a specific server
|
|
|
|
## Installation
|
|
|
|
Via Composer
|
|
|
|
setup vcs repository before
|
|
``` bash
|
|
$ composer require herrleinit/laravelversiontracker
|
|
```
|
|
|
|
## Usage
|
|
Setup .env for
|
|
``` bash
|
|
TRACKER_SERVER_URL=https://yourserver.com
|
|
TRACKER_TOKEN=yourtoken for bearer auth
|
|
```
|
|
Once the package is installed, you need nothing more to do. The package will automatically track the version of your application to the server.
|
|
|
|
```php
|
|
|
|
## Change log
|
|
|
|
Please see the [changelog](changelog.md) for more information on what has changed recently.
|
|
|
|
## Testing
|
|
|
|
``` bash
|
|
$ composer test
|
|
```
|
|
|
|
## Contributing
|
|
|
|
Please see [contributing.md](contributing.md) for details and a todolist.
|
|
|
|
## Security
|
|
|
|
If you discover any security related issues, please email info@herrlein.it instead of using the issue tracker.
|
|
|
|
## Credits
|
|
|
|
- Martin Herrlein https://www.herrlein.it
|
|
|
|
## License
|
|
|
|
MIT. Please see the [license file](license.md) for more information.
|