Skip to content

Commit a6fa9aa

Browse files
committed
Init
1 parent 0d9664d commit a6fa9aa

File tree

10 files changed

+59
-356
lines changed

10 files changed

+59
-356
lines changed

README.md

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,23 @@
1-
# Rapidez :package_name_without_prefix
2-
<!--delete-->
3-
This repository can be used as template for a new Rapidez package.
4-
5-
- Click on "Use this template" on the top of this Github repo page
6-
- Run `php ./configure.php`
7-
8-
Credits to [`spatie/package-skeleton-laravel`](https://github.com/spatie/package-skeleton-laravel) for the inpiration for this template.
9-
10-
Keep in mind that if you contribute to this template; it should work for official and unofficial packages!
11-
- `rapidez/something`
12-
- `someone/rapidez-something`
13-
<!--/delete-->
14-
:package_description
1+
# Rapidez Fullscreen Search
152

163
## Installation
174

185
```
19-
composer require :vendor_slug/:package_slug
6+
composer require rapidez/fullscreen-search
207
```
218

229
## Configuration
2310

2411
You can publish the config with:
2512
```
26-
php artisan vendor:publish --tag=rapidez-:package_slug_without_prefix-config
13+
php artisan vendor:publish --tag=rapidez-fullscreen-search-config
2714
```
2815

2916
## Views
3017

3118
You can publish the views with:
3219
```
33-
php artisan vendor:publish --tag=rapidez-:package_slug_without_prefix-views
20+
php artisan vendor:publish --tag=rapidez-fullscreen-search-views
3421
```
3522

3623
## License

composer.json

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
2-
"name": ":vendor_slug/:package_slug",
3-
"description": ":package_description",
2+
"name": "rapidez/fullscreen-search",
3+
"description": "Rapidez Fullscreen Search",
44
"keywords": [
55
"rapidez",
6-
":package_slug"
6+
"fullscreen-search"
77
],
8-
"homepage": "https://github.com/:vendor_slug/:package_slug",
8+
"homepage": "https://github.com/rapidez/fullscreen-search",
99
"license": "GPL-3.0-or-later",
1010
"authors": [
1111
{
12-
"name": ":author_name",
13-
"email": "author@domain.com",
12+
"name": "Roy Duineveld",
13+
"email": "royduineveld@gmail.com",
1414
"role": "Developer"
1515
}
1616
],
@@ -22,16 +22,19 @@
2222
},
2323
"autoload": {
2424
"psr-4": {
25-
"VendorName\\Skeleton\\": "src"
25+
"Rapidez\\FullscreenSearch\\": "src"
2626
}
2727
},
2828
"config": {
29-
"sort-packages": true
29+
"sort-packages": true,
30+
"allow-plugins": {
31+
"php-http/discovery": true
32+
}
3033
},
3134
"extra": {
3235
"laravel": {
3336
"providers": [
34-
"VendorName\\Skeleton\\SkeletonServiceProvider"
37+
"Rapidez\\FullscreenSearch\\FullscreenSearchServiceProvider"
3538
]
3639
}
3740
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
3+
return [];

config/rapidez/skeleton.php

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

configure.php

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

resources/js/components/Example.vue

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

routes/api.php

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

routes/web.php

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

0 commit comments

Comments
 (0)