Skip to content

Commit

Permalink
rename package to ammonkc/laravel-init
Browse files Browse the repository at this point in the history
  • Loading branch information
acasey committed May 15, 2019
1 parent aec6a63 commit 0057687
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Very short description of the package

[![Latest Version on Packagist](https://img.shields.io/packagist/v/ammonkc/app-setup-cmd.svg?style=flat-square)](https://packagist.org/packages/ammonkc/app-setup-cmd)
[![Build Status](https://img.shields.io/travis/ammonkc/app-setup-cmd/master.svg?style=flat-square)](https://travis-ci.org/ammonkc/app-setup-cmd)
[![Quality Score](https://img.shields.io/scrutinizer/g/ammonkc/app-setup-cmd.svg?style=flat-square)](https://scrutinizer-ci.com/g/ammonkc/app-setup-cmd)
[![Total Downloads](https://img.shields.io/packagist/dt/ammonkc/app-setup-cmd.svg?style=flat-square)](https://packagist.org/packages/ammonkc/app-setup-cmd)
[![Latest Version on Packagist](https://img.shields.io/packagist/v/ammonkc/laravel-init.svg?style=flat-square)](https://packagist.org/packages/ammonkc/laravel-init)
[![Build Status](https://img.shields.io/travis/ammonkc/laravel-init/master.svg?style=flat-square)](https://travis-ci.org/ammonkc/laravel-init)
[![Quality Score](https://img.shields.io/scrutinizer/g/ammonkc/laravel-init.svg?style=flat-square)](https://scrutinizer-ci.com/g/ammonkc/laravel-init)
[![Total Downloads](https://img.shields.io/packagist/dt/ammonkc/laravel-init.svg?style=flat-square)](https://packagist.org/packages/ammonkc/laravel-init)

This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors.

Expand All @@ -12,7 +12,7 @@ This is where your description should go. Try and limit it to a paragraph or two
You can install the package via composer:

```bash
composer require ammonkc/app-setup-cmd
composer require ammonkc/laravel-init
```

## Usage
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "ammonkc/app-setup-cmd",
"name": "ammonkc/laravel-init",
"description": "Laravel Artisan commands to help with initial app setup",
"keywords": [
"ammonkc",
"app-setup-cmd"
"laravel-init"
],
"homepage": "https://github.com/ammonkc/app-setup-cmd",
"homepage": "https://github.com/ammonkc/laravel-init",
"license": "MIT",
"type": "library",
"authors": [
Expand All @@ -27,12 +27,12 @@
},
"autoload": {
"psr-4": {
"Ammonkc\\AppSetupCmd\\": "src"
"Ammonkc\\Init\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ammonkc\\AppSetupCmd\\Tests\\": "tests"
"Ammonkc\\Init\\Tests\\": "tests"
}
},
"scripts": {
Expand All @@ -46,10 +46,10 @@
"extra": {
"laravel": {
"providers": [
"Ammonkc\\AppSetupCmd\\AppSetupCmdServiceProvider"
"Ammonkc\\Init\\InitServiceProvider"
],
"aliases": {
"AppSetupCmd": "Ammonkc\\AppSetupCmd\\AppSetupCmdFacade"
"Init": "Ammonkc\\Init\\AppSetupCmdFacade"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/AppInstall.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Ammonkc\AppSetupCmd\Commands;
namespace Ammonkc\Init\Commands;

use Illuminate\Console\Command;
use Illuminate\Support\Facades\Validator;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/UserCreate.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Ammonkc\AppSetupCmd\Commands;
namespace Ammonkc\Init\Commands;

use Illuminate\Console\Command;
use Illuminate\Support\Facades\Validator;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace Ammonkc\AppSetupCmd;
namespace Ammonkc\Init;

use Illuminate\Support\ServiceProvider;

class AppSetupCmdServiceProvider extends ServiceProvider
class InitServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
Expand Down

0 comments on commit 0057687

Please sign in to comment.