Skip to content

Commit 2dc04ab

Browse files
committed
Initial commit
1 parent 4f8fa93 commit 2dc04ab

File tree

19 files changed

+414
-365
lines changed

19 files changed

+414
-365
lines changed

README.md

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,25 @@
1-
# Rapidez :package_name_without_prefix
2-
<!--delete-->
3-
This repository can be used as template for a new Rapidez package.
1+
# Rapidez quick-order
42

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
3+
Adds a form that allows you to quickly order items based on SKU
154

165
## Installation
176

187
```
19-
composer require :vendor_slug/:package_slug
8+
composer require rapidez/quick-order
209
```
2110

2211
## Configuration
2312

2413
You can publish the config with:
2514
```
26-
php artisan vendor:publish --tag=rapidez-:package_slug_without_prefix-config
15+
php artisan vendor:publish --tag=rapidez-quick-order-config
2716
```
2817

2918
## Views
3019

3120
You can publish the views with:
3221
```
33-
php artisan vendor:publish --tag=rapidez-:package_slug_without_prefix-views
22+
php artisan vendor:publish --tag=rapidez-quick-order-views
3423
```
3524

3625
## License

composer.json

Lines changed: 8 additions & 8 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/quick-order",
3+
"description": "Adds a form that allows you to quickly order items based on SKU",
44
"keywords": [
55
"rapidez",
6-
":package_slug"
6+
"quick-order"
77
],
8-
"homepage": "https://github.com/:vendor_slug/:package_slug",
8+
"homepage": "https://github.com/rapidez/quick-order",
99
"license": "GPL-3.0-or-later",
1010
"authors": [
1111
{
12-
"name": ":author_name",
13-
"email": "author@domain.com",
12+
"name": "Jade",
13+
"email": "jade@justbetter.nl",
1414
"role": "Developer"
1515
}
1616
],
@@ -22,7 +22,7 @@
2222
},
2323
"autoload": {
2424
"psr-4": {
25-
"VendorName\\Skeleton\\": "src"
25+
"Rapidez\\QuickOrder\\": "src"
2626
}
2727
},
2828
"config": {
@@ -31,7 +31,7 @@
3131
"extra": {
3232
"laravel": {
3333
"providers": [
34-
"VendorName\\Skeleton\\SkeletonServiceProvider"
34+
"Rapidez\\QuickOrder\\QuickOrderServiceProvider"
3535
]
3636
}
3737
}

config/rapidez/quick-order.php

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.

lang/nl.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"Add all to cart": "Alles toevoegen aan winkelwagen",
3+
"Added to cart": "Toegevoegd aan winkelwagen",
4+
"File :file has been successfully uploaded": "Bestand :file is succesvol geüpload",
5+
"New line": "Nieuwe regel",
6+
"Please choose a child product": "Selecteer een sub-product",
7+
"Product does not exist": "Product bestaat niet",
8+
"Upload CSV": "Upload CSV"
9+
}

resources/js/components/Example.vue

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

0 commit comments

Comments
 (0)