Skip to content

Commit 459604a

Browse files
committed
Cleaned up unneeded classes and files
Signed-off-by: Gertjan Roke <[email protected]>
1 parent 8748bfc commit 459604a

16 files changed

+65
-330
lines changed

README.md

+19-45
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,36 @@
1-
# :package_description
1+
# Laravel DB Model
22

3-
[![Latest Version on Packagist](https://img.shields.io/packagist/v/:vendor_slug/:package_slug.svg?style=flat-square)](https://packagist.org/packages/:vendor_slug/:package_slug)
4-
[![GitHub Tests Action Status](https://img.shields.io/github/workflow/status/:vendor_slug/:package_slug/run-tests?label=tests)](https://github.com/:vendor_slug/:package_slug/actions?query=workflow%3Arun-tests+branch%3Amain)
5-
[![GitHub Code Style Action Status](https://img.shields.io/github/workflow/status/:vendor_slug/:package_slug/Check%20&%20fix%20styling?label=code%20style)](https://github.com/:vendor_slug/:package_slug/actions?query=workflow%3A"Check+%26+fix+styling"+branch%3Amain)
6-
[![Total Downloads](https://img.shields.io/packagist/dt/:vendor_slug/:package_slug.svg?style=flat-square)](https://packagist.org/packages/:vendor_slug/:package_slug)
3+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/GertjanRoke/laravel-db-model.svg?style=flat-square)](https://packagist.org/packages/GertjanRoke/laravel-db-model)
4+
[![GitHub Tests Action Status](https://img.shields.io/github/workflow/status/GertjanRoke/laravel-db-model/run-tests?label=tests)](https://github.com/GertjanRoke/laravel-db-model/actions?query=workflow%3Arun-tests+branch%3Amain)
5+
[![GitHub Code Style Action Status](https://img.shields.io/github/workflow/status/GertjanRoke/laravel-db-model/Check%20&%20fix%20styling?label=code%20style)](https://github.com/GertjanRoke/laravel-db-model/actions?query=workflow%3A"Check+%26+fix+styling"+branch%3Amain)
6+
[![Total Downloads](https://img.shields.io/packagist/dt/GertjanRoke/laravel-db-model.svg?style=flat-square)](https://packagist.org/packages/GertjanRoke/laravel-db-model)
77

8-
---
9-
This repo can be used to scaffold a Laravel package. Follow these steps to get started:
10-
11-
1. Press the "Use template" button at the top of this repo to create a new repo with the contents of this skeleton
12-
2. Run "php ./configure.php" to run a script that will replace all placeholders throughout all the files
13-
3. Remove this block of text.
14-
4. Have fun creating your package.
15-
5. If you need help creating a package, consider picking up our <a href="https://laravelpackage.training">Laravel Package Training</a> video course.
16-
---
17-
18-
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
19-
20-
## Support us
21-
22-
[<img src="https://github-ads.s3.eu-central-1.amazonaws.com/:package_name.jpg?t=1" width="419px" />](https://spatie.be/github-ad-click/:package_name)
23-
24-
We invest a lot of resources into creating [best in class open source packages](https://spatie.be/open-source). You can support us by [buying one of our paid products](https://spatie.be/open-source/support-us).
25-
26-
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on [our contact page](https://spatie.be/about-us). We publish all received postcards on [our virtual postcard wall](https://spatie.be/open-source/postcards).
8+
A model wrapper around the DB class to keep your code clean.
279

2810
## Installation
2911

3012
You can install the package via composer:
3113

3214
```bash
33-
composer require :vendor_slug/:package_slug
15+
composer require gertjanroke/laravel-db-model
3416
```
3517

36-
You can publish and run the migrations with:
37-
38-
```bash
39-
php artisan vendor:publish --provider="VendorName\Skeleton\SkeletonServiceProvider" --tag=":package_slug-migrations"
40-
php artisan migrate
41-
```
18+
## Usage
4219

43-
You can publish the config file with:
44-
```bash
45-
php artisan vendor:publish --provider="VendorName\Skeleton\SkeletonServiceProvider" --tag=":package_slug-config"
46-
```
20+
```php
21+
<?php
4722

48-
This is the contents of the published config file:
23+
namespace App\Models;
4924

50-
```php
51-
return [
52-
];
53-
```
25+
use GertjanRoke\LaravelDbModel\DbModel;
5426

55-
## Usage
27+
class Post extends DbModel
28+
{
29+
public $table = 'posts';
30+
31+
// public $connection = 'mysql';
32+
}
5633

57-
```php
58-
$skeleton = new VendorName\Skeleton();
59-
echo $skeleton->echoPhrase('Hello, VendorName!');
6034
```
6135

6236
## Testing
@@ -79,7 +53,7 @@ Please review [our security policy](../../security/policy) on how to report secu
7953

8054
## Credits
8155

82-
- [:author_name](https://github.com/:author_username)
56+
- [Gertjan Roke](https://github.com/GertjanRoke)
8357
- [All Contributors](../../contributors)
8458

8559
## License

composer.json

+14-17
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,39 @@
11
{
2-
"name": ":vendor_slug/:package_slug",
3-
"description": ":package_description",
2+
"name": "gertjanroke/laravel-db-model",
3+
"description": "A model wrapper around the DB class to keep your code clean",
44
"keywords": [
5-
":vendor_name",
5+
"GertjanRoke",
66
"laravel",
7-
":package_slug"
7+
"Laravel db model"
88
],
9-
"homepage": "https://github.com/:vendor_slug/:package_slug",
9+
"homepage": "https://github.com/GertjanRoke/laravel-db-model",
1010
"license": "MIT",
1111
"authors": [
1212
{
13-
"name": ":author_name",
14-
"email": "author@domain.com",
13+
"name": "Gertjan Roke",
14+
"email": "g.a.roke90@gmail.com",
1515
"role": "Developer"
1616
}
1717
],
1818
"require": {
19-
"php": "^8.0",
19+
"php": "^7.4|^8.0",
2020
"spatie/laravel-package-tools": "^1.4.3",
21-
"illuminate/contracts": "^8.37"
21+
"illuminate/database": "^8.37"
2222
},
2323
"require-dev": {
2424
"nunomaduro/collision": "^5.3",
2525
"orchestra/testbench": "^6.15",
2626
"pestphp/pest": "^1.18",
27-
"pestphp/pest-plugin-laravel": "^1.1",
28-
"spatie/laravel-ray": "^1.23",
29-
"vimeo/psalm": "^4.8"
27+
"pestphp/pest-plugin-laravel": "^1.1"
3028
},
3129
"autoload": {
3230
"psr-4": {
33-
"VendorName\\Skeleton\\": "src",
34-
"VendorName\\Skeleton\\Database\\Factories\\": "database/factories"
31+
"GertjanRoke\\LaravelDbModel\\": "src"
3532
}
3633
},
3734
"autoload-dev": {
3835
"psr-4": {
39-
"VendorName\\Skeleton\\Tests\\": "tests"
36+
"GertjanRoke\\LaravelDbModel\\Tests\\": "tests"
4037
}
4138
},
4239
"scripts": {
@@ -49,10 +46,10 @@
4946
"extra": {
5047
"laravel": {
5148
"providers": [
52-
"VendorName\\Skeleton\\SkeletonServiceProvider"
49+
"GertjanRoke\\LaravelDbModel\\LaravelDbModelServiceProvider"
5350
],
5451
"aliases": {
55-
"Skeleton": "VendorName\\Skeleton\\SkeletonFacade"
52+
"LaravelDbModel": "GertjanRoke\\LaravelDbModel\\LaravelDbModelFacade"
5653
}
5754
}
5855
},

config/skeleton.php

-5
This file was deleted.

configure.php

-142
This file was deleted.

database/factories/ModelFactory.php

-19
This file was deleted.

database/migrations/create_skeleton_table.php.stub

-19
This file was deleted.

phpunit.xml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
verbose="true"
2020
>
2121
<testsuites>
22-
<testsuite name="VendorName Test Suite">
22+
<testsuite name="GertjanRoke Test Suite">
2323
<directory>tests</directory>
2424
</testsuite>
2525
</testsuites>

resources/views/.gitkeep

Whitespace-only changes.

src/Commands/SkeletonCommand.php

-17
This file was deleted.

src/DbModel.php

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
namespace GertjanRoke\LaravelDbModel;
4+
5+
class DbModel
6+
{
7+
8+
}

0 commit comments

Comments
 (0)