Skip to content

Commit 6e35107

Browse files
committed
work in progress
1 parent 92a003f commit 6e35107

20 files changed

+52
-288
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github: :vendor_name
1+
github: headerx

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Ask a question
4-
url: https://github.com/vendor_slug/package_slug/discussions/new?category=q-a
4+
url: https://github.com/headerx/laravel-iframes/discussions/new?category=q-a
55
about: Ask the community for help
66
- name: Request a feature
7-
url: https://github.com/vendor_slug/package_slug/discussions/new?category=ideas
7+
url: https://github.com/headerx/laravel-iframes/discussions/new?category=ideas
88
about: Share ideas for new features
99
- name: Report a bug
10-
url: https://github.com/vendor_slug/package_slug/issues/new
10+
url: https://github.com/headerx/laravel-iframes/issues/new
1111
about: Report a reproducable bug

.github/SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Security Policy
22

3-
If you discover any security related issues, please email author@domain.com instead of using the issue tracker.
3+
If you discover any security related issues, please email inman.turbo@gmail.com instead of using the issue tracker.

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
All notable changes to `:package_name` will be documented in this file.
3+
All notable changes to `laravel-iframes` will be documented in this file.
44

55
## 1.0.0 - 202X-XX-XX
66

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) :vendor_name <author@domain.com>
3+
Copyright (c) headerx <inman.turbo@gmail.com>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 12 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,28 @@
1-
# :package_description
1+
# Easily load routes inside an iframe.
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/headerx/laravel-iframes.svg?style=flat-square)](https://packagist.org/packages/headerx/laravel-iframes)
4+
[![GitHub Tests Action Status](https://img.shields.io/github/workflow/status/headerx/laravel-iframes/run-tests?label=tests)](https://github.com/headerx/laravel-iframes/actions?query=workflow%3Arun-tests+branch%3Amain)
5+
[![GitHub Code Style Action Status](https://img.shields.io/github/workflow/status/headerx/laravel-iframes/Check%20&%20fix%20styling?label=code%20style)](https://github.com/headerx/laravel-iframes/actions?query=workflow%3A"Check+%26+fix+styling"+branch%3Amain)
6+
[![Total Downloads](https://img.shields.io/packagist/dt/headerx/laravel-iframes.svg?style=flat-square)](https://packagist.org/packages/headerx/laravel-iframes)
77

8-
---
9-
This repo can be used as 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 "./configure-skeleton.sh" 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).
278

289
## Installation
2910

3011
You can install the package via composer:
3112

3213
```bash
33-
composer require vendor_slug/package_slug
14+
composer require headerx/laravel-iframes
3415
```
3516

36-
You can publish and run the migrations with:
17+
You can publish views with:
3718

3819
```bash
39-
php artisan vendor:publish --provider="VendorName\Skeleton\SkeletonServiceProvider" --tag="package_slug-migrations"
40-
php artisan migrate
20+
php artisan vendor:publish --provider="HeaderX\Iframes\IframesServiceProvider" --tag="views"
4121
```
4222

4323
You can publish the config file with:
4424
```bash
45-
php artisan vendor:publish --provider="VendorName\Skeleton\SkeletonServiceProvider" --tag="package_slug-config"
25+
php artisan vendor:publish --provider="HeaderX\Iframes\IframesServiceProvider" --tag="laravel-iframes-config"
4626
```
4727

4828
This is the contents of the published config file:
@@ -55,8 +35,8 @@ return [
5535
## Usage
5636

5737
```php
58-
$skeleton = new VendorName\Skeleton();
59-
echo $skeleton->echoPhrase('Hello, Spatie!');
38+
$laravel-iframes = new HeaderX\Iframes();
39+
echo $laravel-iframes->echoPhrase('Hello, Spatie!');
6040
```
6141

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

8060
## Credits
8161

82-
- [:author_name](https://github.com/:author_username)
62+
- [inmanturbo](https://github.com/inmanturbo)
8363
- [All Contributors](../../contributors)
8464

8565
## License

composer.json

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
11
{
2-
"name": "vendor_slug/package_slug",
3-
"description": ":package_description",
2+
"name": "headerx/laravel-iframes",
3+
"description": "Easily load routes inside an iframe.",
44
"keywords": [
5-
":vendor_name",
5+
"headerx",
66
"laravel",
7-
"package_slug"
7+
"laravel-iframes"
88
],
9-
"homepage": "https://github.com/vendor_slug/package_slug",
9+
"homepage": "https://github.com/headerx/laravel-iframes",
1010
"license": "MIT",
1111
"authors": [
1212
{
13-
"name": ":author_name",
14-
"email": "author@domain.com",
13+
"name": "inmanturbo",
14+
"email": "inman.turbo@gmail.com",
1515
"role": "Developer"
1616
}
1717
],
1818
"require": {
19-
"php": "^8.0",
2019
"spatie/laravel-package-tools": "^1.4.3",
21-
"illuminate/contracts": "^8.37"
20+
"illuminate/contracts": "~8.0",
21+
"illuminate/routing": "~8.0",
22+
"illuminate/support": "~8.0"
2223
},
2324
"require-dev": {
2425
"brianium/paratest": "^6.2",
@@ -30,13 +31,13 @@
3031
},
3132
"autoload": {
3233
"psr-4": {
33-
"VendorName\\Skeleton\\": "src",
34-
"VendorName\\Skeleton\\Database\\Factories\\": "database/factories"
34+
"Headerx\\Iframes\\": "src",
35+
"Headerx\\Iframes\\Database\\Factories\\": "database/factories"
3536
}
3637
},
3738
"autoload-dev": {
3839
"psr-4": {
39-
"VendorName\\Skeleton\\Tests\\": "tests"
40+
"Headerx\\Iframes\\Tests\\": "tests"
4041
}
4142
},
4243
"scripts": {
@@ -50,10 +51,10 @@
5051
"extra": {
5152
"laravel": {
5253
"providers": [
53-
"VendorName\\Skeleton\\SkeletonServiceProvider"
54+
"Headerx\\Iframes\\IframesServiceProvider"
5455
],
5556
"aliases": {
56-
"Skeleton": "VendorName\\Skeleton\\SkeletonFacade"
57+
"Iframes": "Headerx\\Iframes\\IframesFacade"
5758
}
5859
}
5960
},

config/iframes.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?php
2+
// config for Headerx/ClassName
3+
return [
4+
5+
];

config/skeleton.php

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

configure-skeleton.sh

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

0 commit comments

Comments
 (0)