Skip to content

Commit c1466e2

Browse files
committed
Initial commit
1 parent c02c508 commit c1466e2

File tree

14 files changed

+34
-430
lines changed

14 files changed

+34
-430
lines changed

README.md

Lines changed: 8 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,18 @@
1-
# {Your Package}
1+
# Content Management System
22

3-
[![Latest Version on Packagist](https://img.shields.io/packagist/v/javaabu/{your-package}.svg?style=flat-square)](https://packagist.org/packages/javaabu/{your-package})
3+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/javaabu/cms.svg?style=flat-square)](https://packagist.org/packages/javaabu/cms)
44
[![Test Status](../../actions/workflows/run-tests.yml/badge.svg)](../../actions/workflows/run-tests.yml)
55
![Code Coverage Badge](./.github/coverage.svg)
6-
[![Total Downloads](https://img.shields.io/packagist/dt/javaabu/{your-package}.svg?style=flat-square)](https://packagist.org/packages/javaabu/{your-package})
7-
8-
---
9-
## Instructions
10-
This repo can be used to scaffold a Laravel package. Follow these steps to get started:
11-
1. Press the "Use this template" button on the top right corner of this repo to create a new repo with the contents of this skeleton.
12-
2. Run `php ./init.php` to run a script that will replace all placeholders throughout all the files.
13-
3. If nothing works, ask Arushad.
14-
15-
Or you can delete `./init.php` and manually replace the below placeholders:
16-
- {package description}
17-
- {your-package} // Package name
18-
- {your_package} // Package key words
19-
- {Your Package} // Package title
20-
- {YourPackage} // Package class name
21-
- {author_name} // Package author name
22-
- {author_email} // Package author email
23-
- {Contributor} // Package author link
24-
---
6+
[![Total Downloads](https://img.shields.io/packagist/dt/javaabu/cms.svg?style=flat-square)](https://packagist.org/packages/javaabu/cms)
7+
8+
259

2610
## Introduction
27-
{package description}
11+
Content Management System integration for Laravel Projects
2812

2913
## Documentation
3014

31-
You'll find the documentation on [https://docs.javaabu.com/docs/{your-package}](https://docs.javaabu.com/docs/{your-package}).
15+
You'll find the documentation on [https://docs.javaabu.com/docs/cms](https://docs.javaabu.com/docs/cms).
3216

3317
Find yourself stuck using the package? Found a bug? Do you have general questions or suggestions for improving this package? Feel free to create an [issue](../../issues) on GitHub, we'll try to address it as soon as possible.
3418

@@ -59,7 +43,7 @@ If you discover any security related issues, please email [info@javaabu.com](mai
5943

6044
- [Javaabu Pvt. Ltd.](https://github.com/javaabu)
6145
- [Arushad Ahmed (@dash8x)](http://arushad.com)
62-
- {Contributor}
46+
- [FlameXode (@WovenCoast)](https://github.com/WovenCoast)
6347
- [All Contributors](../../contributors)
6448

6549
## License

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"name": "javaabu/{your-package}",
3-
"description": "{package description}",
4-
"homepage": "https://github.com/Javaabu/{your-package}",
2+
"name": "javaabu/cms",
3+
"description": "Content Management System integration for Laravel Projects",
4+
"homepage": "https://github.com/Javaabu/cms",
55
"license": "MIT",
66
"keywords": [
77
"javaabu",
88
"laravel",
9-
"{your_package}"
9+
"cms"
1010
],
1111
"authors": [
1212
{
13-
"name": "{author_name}",
14-
"email": "{author_email}",
13+
"name": "FlameXode",
14+
"email": "wovencoast14782@techie.com",
1515
"role": "Developer"
1616
}
1717
],
@@ -26,12 +26,12 @@
2626
},
2727
"autoload": {
2828
"psr-4": {
29-
"Javaabu\\{YourPackage}\\": "src/"
29+
"Javaabu\\Cms\\": "src/"
3030
}
3131
},
3232
"autoload-dev": {
3333
"psr-4": {
34-
"Javaabu\\{YourPackage}\\Tests\\": "tests/"
34+
"Javaabu\\Cms\\Tests\\": "tests/"
3535
}
3636
},
3737
"extra": {
@@ -40,7 +40,7 @@
4040
},
4141
"laravel": {
4242
"providers": [
43-
"Javaabu\\{YourPackage}\\{YourPackage}ServiceProvider"
43+
"Javaabu\\Cms\\CmsServiceProvider"
4444
]
4545
}
4646
},

config/{your-package}.php

Lines changed: 0 additions & 14 deletions
This file was deleted.

docs/basic-usage/_category_.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"collapsed": false,
66
"link": {
77
"type": "generated-index",
8-
"slug": "/{your-package}/_categories/basic-usage",
8+
"slug": "/cms/_categories/basic-usage",
99
"description": "Everything you need to know to get started!"
1010
}
1111
}

docs/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ title: Changelog
33
sidebar_position: 1.5
44
---
55

6-
All notable changes to this package are documented on [GitHub](https://github.com/Javaabu/{your-package}/blob/main/CHANGELOG.md)
6+
All notable changes to this package are documented on [GitHub](https://github.com/Javaabu/cms/blob/main/CHANGELOG.md)

docs/installation-and-setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ sidebar_position: 1.2
66
You can install the package via composer:
77

88
```bash
9-
composer require javaabu/{your-package}
9+
composer require javaabu/cms
1010
```
1111

1212
# Publishing the config file
1313

1414
Publishing the config file is optional:
1515

1616
```bash
17-
php artisan vendor:publish --provider="Javaabu\{YourPackage}\{YourPackage}ServiceProvider" --tag="{your-package}-config"
17+
php artisan vendor:publish --provider="Javaabu\Cms\CmsServiceProvider" --tag="cms-config"
1818
```
1919

2020
This is the default content of the config file:

docs/intro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ title: Introduction
33
sidebar_position: 1.0
44
---
55

6-
# {Your Package}
6+
# Cms
77

88
:::danger
99

1010
This package is currently under development. If anything works, that's a surprise.
1111

1212
:::
1313

14-
[{Your Package}](https://github.com/Javaabu/{your-package}) {package description}.
14+
[Cms](https://github.com/Javaabu/cms) Content Management System integration for Laravel Projects.

docs/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "{Your Package}",
3-
"description": "{package description}",
2+
"name": "Cms",
3+
"description": "Content Management System integration for Laravel Projects",
44
"version": "1"
55
}

0 commit comments

Comments
 (0)