Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
of this software and associated documentation files (the "Software"), to deal
Original file line number
Diff line number
Diff line change
@@ -1,42 +1,27 @@
1
-
# :package_description
1
+
# Easily work with snippets of code
2
2
3
-
[](https://packagist.org/packages/vendor_slug/package_slug)
This package can be used as to scaffold a framework agnostic 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.sh" to run a script that will replace all placeholders throughout all the files
13
-
3. Have fun creating your package.
14
-
4. If you need help creating a package, consider picking up our <ahref="https://laravelpackage.training">Laravel Package Training</a> video course.
15
-
---
3
+
<!--
4
+
[](https://packagist.org/packages/permafrost-dev/code-snippets)
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).
24
-
25
-
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).
26
-
27
12
## Installation
28
13
29
14
You can install the package via composer:
30
15
31
16
```bash
32
-
composer require vendor_slug/package_slug
17
+
composer require permafrost-dev/code-snippets
33
18
```
34
19
35
20
## Usage
36
21
37
22
```php
38
-
$skeleton = new VendorName\Skeleton();
39
-
echo $skeleton->echoPhrase('Hello, VendorName!');
23
+
$codeSnippets = new Permafrost\CodeSnippets();
24
+
echo $codeSnippets->echoPhrase('Hello!');
40
25
```
41
26
42
27
## Testing
@@ -59,7 +44,7 @@ Please review [our security policy](../../security/policy) on how to report secu
59
44
60
45
## Credits
61
46
62
-
-[:author_name](https://.com/:author_username)
47
+
-[Patrick Organ](https://.com/patinthehat)
63
48
-[All Contributors](../../contributors)
64
49
65
50
## License
Original file line number
Diff line number
Diff line change
@@ -1,43 +1,41 @@
1
1
{
2
-
"name": "vendor_slug/package_slug",
3
-
"description": ":package_description",
2
+
"name": "permafrost-dev/code-snippets",
3
+
"description": "Easily work with snippets of code",
0 commit comments