Skip to content

Commit 94e1ee8

Browse files
committed
configure package
1 parent 4184560 commit 94e1ee8

11 files changed

+36
-195
lines changed

.github/FUNDING.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github: :vendor_name
1+
github: vormkracht10

.github/ISSUE_TEMPLATE/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Ask a question
4-
url: https://github.com/:vendor_name/:package_name/discussions/new?category=q-a
4+
url: https://github.com/vormkracht10/php-uploadcare-transformations/discussions/new?category=q-a
55
about: Ask the community for help
66
- name: Request a feature
7-
url: https://github.com/:vendor_name/:package_name/discussions/new?category=ideas
7+
url: https://github.com/vormkracht10/php-uploadcare-transformations/discussions/new?category=ideas
88
about: Share ideas for new features
99
- name: Report a security issue
10-
url: https://github.com/:vendor_name/:package_name/security/policy
10+
url: https://github.com/vormkracht10/php-uploadcare-transformations/security/policy
1111
about: Learn how to notify us for sensitive bugs
1212
- name: Report a bug
13-
url: https://github.com/:vendor_name/:package_name/issues/new
13+
url: https://github.com/vormkracht10/php-uploadcare-transformations/issues/new
1414
about: Report a reproducable bug

.github/SECURITY.md

+1-1
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 [email protected] instead of using the issue tracker.
3+
If you discover any security related issues, please email [email protected] instead of using the issue tracker.

CHANGELOG.md

+1-1
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 `php-uploadcare-transformations` will be documented in this file.
44

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

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) :vendor_name <[email protected]>
3+
Copyright (c) vormkracht10 <[email protected]>
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

+11-20
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,14 @@
1-
# :package_description
2-
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-
[![Tests](https://github.com/:vendor_slug/:package_slug/actions/workflows/run-tests.yml/badge.svg?branch=main)](https://github.com/:vendor_slug/:package_slug/actions/workflows/run-tests.yml)
5-
[![Total Downloads](https://img.shields.io/packagist/dt/:vendor_slug/:package_slug.svg?style=flat-square)](https://packagist.org/packages/:vendor_slug/:package_slug)
6-
<!--delete-->
7-
---
8-
This package can be used as to scaffold a framework agnostic package. Follow these steps to get started:
9-
10-
1. Press the "Use template" button at the top of this repo to create a new repo with the contents of this skeleton
11-
2. Run "php ./configure.php" to run a script that will replace all placeholders throughout all the files
12-
3. Have fun creating your package.
13-
4. If you need help creating a package, consider picking up our <a href="https://laravelpackage.training">Laravel Package Training</a> video course.
14-
---
15-
<!--/delete-->
1+
# Composer package for generating URLs using Uploadcare for image transformations and processing.
2+
3+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/vormkracht10/php-uploadcare-transformations.svg?style=flat-square)](https://packagist.org/packages/vormkracht10/php-uploadcare-transformations)
4+
[![Tests](https://github.com/vormkracht10/php-uploadcare-transformations/actions/workflows/run-tests.yml/badge.svg?branch=main)](https://github.com/vormkracht10/php-uploadcare-transformations/actions/workflows/run-tests.yml)
5+
[![Total Downloads](https://img.shields.io/packagist/dt/vormkracht10/php-uploadcare-transformations.svg?style=flat-square)](https://packagist.org/packages/vormkracht10/php-uploadcare-transformations)
6+
167
This is where your description should go. Try and limit it to a paragraph or two. Consider adding a small example.
178

189
## Support us
1910

20-
[<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)
11+
[<img src="https://github-ads.s3.eu-central-1.amazonaws.com/php-uploadcare-transformations.jpg?t=1" width="419px" />](https://spatie.be/github-ad-click/php-uploadcare-transformations)
2112

2213
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).
2314

@@ -28,14 +19,14 @@ We highly appreciate you sending us a postcard from your hometown, mentioning wh
2819
You can install the package via composer:
2920

3021
```bash
31-
composer require :vendor_slug/:package_slug
22+
composer require vormkracht10/php-uploadcare-transformations
3223
```
3324

3425
## Usage
3526

3627
```php
37-
$skeleton = new VendorName\Skeleton();
38-
echo $skeleton->echoPhrase('Hello, VendorName!');
28+
$skeleton = new Vormkracht10\UploadcareTransformation();
29+
echo $skeleton->echoPhrase('Hello, Vormkracht10!');
3930
```
4031

4132
## Testing
@@ -58,7 +49,7 @@ Please review [our security policy](../../security/policy) on how to report secu
5849

5950
## Credits
6051

61-
- [:author_name](https://github.com/:author_username)
52+
- [Bas van Dinther](https://github.com/baspa)
6253
- [All Contributors](../../contributors)
6354

6455
## License

composer.json

+9-9
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": "vormkracht10/php-uploadcare-transformations",
3+
"description": "Composer package for generating URLs using Uploadcare for image transformations and processing.",
44
"keywords": [
5-
":vendor_name",
6-
":package_slug"
5+
"vormkracht10",
6+
"php-uploadcare-transformations"
77
],
8-
"homepage": "https://github.com/:vendor_slug/:package_slug",
8+
"homepage": "https://github.com/vormkracht10/php-uploadcare-transformations",
99
"license": "MIT",
1010
"authors": [
1111
{
12-
"name": ":author_name",
13-
"email": "[email protected]",
12+
"name": "Bas van Dinther",
13+
"email": "[email protected]",
1414
"role": "Developer"
1515
}
1616
],
@@ -24,12 +24,12 @@
2424
},
2525
"autoload": {
2626
"psr-4": {
27-
"VendorName\\Skeleton\\": "src"
27+
"Vormkracht10\\UploadcareTransformation\\": "src"
2828
}
2929
},
3030
"autoload-dev": {
3131
"psr-4": {
32-
"VendorName\\Skeleton\\Tests\\": "tests"
32+
"Vormkracht10\\UploadcareTransformation\\Tests\\": "tests"
3333
}
3434
},
3535
"scripts": {

configure.php

-150
This file was deleted.

phpunit.xml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
verbose="true"
2020
>
2121
<testsuites>
22-
<testsuite name="VendorName Test Suite">
22+
<testsuite name="Vormkracht10 Test Suite">
2323
<directory>tests</directory>
2424
</testsuite>
2525
</testsuites>

src/SkeletonClass.php

-7
This file was deleted.

src/UploadcareTransformationClass.php

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
namespace Vormkracht10\UploadcareTransformation;
4+
5+
class UploadcareTransformationClass
6+
{
7+
}

0 commit comments

Comments
 (0)