Skip to content

Commit

Permalink
FIX project name
Browse files Browse the repository at this point in the history
  • Loading branch information
sfneal committed Aug 19, 2020
1 parent 7a69677 commit 5a03f94
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 25 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Changelog

All notable changes to `php-package-boilerplate` will be documented in this file

## 1.0.0 - 201X-XX-XX
All notable changes to `crud-model-actions` will be documented in this file

## 0.1.0 - 2020-08-19
- initial release
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Very short description of the package
# CRUD Model Actions

[![Latest Version on Packagist](https://img.shields.io/packagist/v/sfneal/php-package-boilerplate.svg?style=flat-square)](https://packagist.org/packages/sfneal/php-package-boilerplate)
[![Build Status](https://img.shields.io/travis/sfneal/php-package-boilerplate/master.svg?style=flat-square)](https://travis-ci.org/sfneal/php-package-boilerplate)
[![Quality Score](https://img.shields.io/scrutinizer/g/sfneal/php-package-boilerplate.svg?style=flat-square)](https://scrutinizer-ci.com/g/sfneal/php-package-boilerplate)
[![Total Downloads](https://img.shields.io/packagist/dt/sfneal/php-package-boilerplate.svg?style=flat-square)](https://packagist.org/packages/sfneal/php-package-boilerplate)
[![Latest Version on Packagist](https://img.shields.io/packagist/v/sfneal/crud-model-actions.svg?style=flat-square)](https://packagist.org/packages/sfneal/crud-model-actions)
[![Build Status](https://img.shields.io/travis/sfneal/crud-model-actions/master.svg?style=flat-square)](https://travis-ci.org/sfneal/crud-model-actions)
[![Quality Score](https://img.shields.io/scrutinizer/g/sfneal/crud-model-actions.svg?style=flat-square)](https://scrutinizer-ci.com/g/sfneal/crud-model-actions)
[![Total Downloads](https://img.shields.io/packagist/dt/sfneal/crud-model-actions.svg?style=flat-square)](https://packagist.org/packages/sfneal/crud-model-actions)

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.
Abstraction layers for creating CRUD Action classes to execute actions on Eloquent Models

## Installation

You can install the package via composer:

```bash
composer require sfneal/php-package-boilerplate
composer require sfneal/crud-model-actions
```

## Usage
Expand Down Expand Up @@ -50,4 +50,4 @@ The MIT License (MIT). Please see [License File](LICENSE.md) for more informatio

## PHP Package Boilerplate

This package was generated using the [PHP Package Boilerplate](https://laravelpackageboilerplate.com).
This package was generated using the [PHP Package Boilerplate](https://laravelpackageboilerplate.com).
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "sfneal/php-package-boilerplate",
"name": "sfneal/crud-model-actions",
"description": "Boilerplate for PHP package repo's",
"keywords": [
"sfneal",
"php-package-boilerplate"
"crud-model-actions"
],
"homepage": "https://github.com/sfneal/php-package-boilerplate",
"homepage": "https://github.com/sfneal/crud-model-actions",
"license": "MIT",
"type": "library",
"authors": [
Expand All @@ -23,12 +23,12 @@
},
"autoload": {
"psr-4": {
"Sfneal\\PhpPackageBoilerplate\\": "src"
"Sfneal\\CrudModelActions\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Sfneal\\PhpPackageBoilerplate\\Tests\\": "tests"
"Sfneal\\CrudModelActions\\Tests\\": "tests"
}
},
"scripts": {
Expand Down
8 changes: 0 additions & 8 deletions src/PhpPackageBoilerplate.php

This file was deleted.

2 changes: 1 addition & 1 deletion tests/ExampleTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Sfneal\PhpPackageBoilerplate\Tests;
namespace Sfneal\CrudModelActions\Tests;

use PHPUnit\Framework\TestCase;

Expand Down

0 comments on commit 5a03f94

Please sign in to comment.