Skip to content

Commit 0478c8b

Browse files
committed
Initial setup
1 parent be5f3e9 commit 0478c8b

22 files changed

+288
-323
lines changed

.github/FUNDING.yml

-1
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

-14
This file was deleted.

.github/dependabot.yml

-12
This file was deleted.

.github/workflows/dependabot-auto-merge.yml

-32
This file was deleted.

.github/workflows/fix-php-code-style-issues.yml .github/workflows/php-cs-fixer.yml

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
name: Fix PHP code style issues
1+
name: Check & fix styling
22

3-
on:
4-
push:
5-
paths:
6-
- '**.php'
3+
on: [push]
74

85
jobs:
9-
php-code-styling:
6+
php-cs-fixer:
107
runs-on: ubuntu-latest
118

129
steps:
@@ -15,8 +12,10 @@ jobs:
1512
with:
1613
ref: ${{ github.head_ref }}
1714

18-
- name: Fix PHP code style issues
19-
uses: aglipanci/[email protected]
15+
- name: Run PHP CS Fixer
16+
uses: docker://oskarstark/php-cs-fixer-ga
17+
with:
18+
args: --config=.php-cs-fixer.dist.php --allow-risky=yes
2019

2120
- name: Commit changes
2221
uses: stefanzweifel/git-auto-commit-action@v4

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ jobs:
3434
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction
3535

3636
- name: Execute tests
37-
run: vendor/bin/pest
37+
run: vendor/bin/phpunit

.github/workflows/update-changelog.yml

-28
This file was deleted.

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,3 @@ phpunit.xml
1010
psalm.xml
1111
vendor
1212
.php-cs-fixer.cache
13-

.php-cs-fixer.dist.php

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?php
2+
3+
$finder = Symfony\Component\Finder\Finder::create()
4+
->in([
5+
__DIR__ . '/src',
6+
__DIR__ . '/tests',
7+
])
8+
->name('*.php')
9+
->ignoreDotFiles(true)
10+
->ignoreVCS(true);
11+
12+
return (new PhpCsFixer\Config())
13+
->setRules([
14+
'@PSR12' => true,
15+
'array_syntax' => ['syntax' => 'short'],
16+
'ordered_imports' => ['sort_algorithm' => 'alpha'],
17+
'no_unused_imports' => true,
18+
'not_operator_with_successor_space' => true,
19+
'trailing_comma_in_multiline' => true,
20+
'phpdoc_scalar' => true,
21+
'unary_operator_spaces' => true,
22+
'binary_operator_spaces' => true,
23+
'blank_line_before_statement' => [
24+
'statements' => ['break', 'continue', 'declare', 'return', 'throw', 'try'],
25+
],
26+
'phpdoc_single_line_var_spacing' => true,
27+
'phpdoc_var_without_name' => true,
28+
'class_attributes_separation' => [
29+
'elements' => [
30+
'method' => 'one',
31+
],
32+
],
33+
'method_argument_space' => [
34+
'on_multiline' => 'ensure_fully_multiline',
35+
'keep_multiple_spaces_after_comma' => true,
36+
],
37+
'single_trait_insert_per_statement' => true,
38+
'final_class' => true,
39+
'declare_strict_types' => true,
40+
])
41+
->setFinder($finder);

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Changelog
22

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

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) brendt <[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

+6-32
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,22 @@
1+
# Generate sparkline SVGs in PHP
12

2-
[<img src="https://github-ads.s3.eu-central-1.amazonaws.com/support-ukraine.svg?t=1" />](https://supportukrainenow.org)
3+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/brendt/php-sparkline.svg?style=flat-square)](https://packagist.org/packages/brendt/php-sparkline)
4+
[![Tests](https://github.com/brendt/php-sparkline/actions/workflows/run-tests.yml/badge.svg?branch=main)](https://github.com/brendt/php-sparkline/actions/workflows/run-tests.yml)
5+
[![Total Downloads](https://img.shields.io/packagist/dt/brendt/php-sparkline.svg?style=flat-square)](https://packagist.org/packages/brendt/php-sparkline)
36

4-
# :package_description
5-
6-
[![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)
7-
[![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)
8-
[![Total Downloads](https://img.shields.io/packagist/dt/:vendor_slug/:package_slug.svg?style=flat-square)](https://packagist.org/packages/:vendor_slug/:package_slug)
9-
<!--delete-->
10-
---
11-
This package can be used as to scaffold a framework agnostic package. Follow these steps to get started:
12-
13-
1. Press the "Use template" button at the top of this repo to create a new repo with the contents of this skeleton
14-
2. Run "php ./configure.php" to run a script that will replace all placeholders throughout all the files
15-
3. Have fun creating your package.
16-
4. If you need help creating a package, consider picking up our <a href="https://laravelpackage.training">Laravel Package Training</a> video course.
17-
---
18-
<!--/delete-->
197
This is where your description should go. Try and limit it to a paragraph or two. Consider adding a small example.
208

21-
## Support us
22-
23-
[<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)
24-
25-
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).
26-
27-
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).
28-
299
## Installation
3010

3111
You can install the package via composer:
3212

3313
```bash
34-
composer require :vendor_slug/:package_slug
14+
composer require brendt/php-sparkline
3515
```
3616

3717
## Usage
3818

3919
```php
40-
$skeleton = new VendorName\Skeleton();
41-
echo $skeleton->echoPhrase('Hello, VendorName!');
4220
```
4321

4422
## Testing
@@ -51,17 +29,13 @@ composer test
5129

5230
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
5331

54-
## Contributing
55-
56-
Please see [CONTRIBUTING](https://github.com/spatie/.github/blob/main/CONTRIBUTING.md) for details.
57-
5832
## Security Vulnerabilities
5933

6034
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
6135

6236
## Credits
6337

64-
- [:author_name](https://github.com/:author_username)
38+
- [Brent Roose](https://github.com/brendt)
6539
- [All Contributors](../../contributors)
6640

6741
## License

composer.json

+13-17
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,43 @@
11
{
2-
"name": ":vendor_slug/:package_slug",
3-
"description": ":package_description",
2+
"name": "brendt/php-sparkline",
3+
"description": "Generate sparkline SVGs in PHP",
44
"keywords": [
5-
":vendor_name",
6-
":package_slug"
5+
"brendt",
6+
"php-sparkline"
77
],
8-
"homepage": "https://github.com/:vendor_slug/:package_slug",
8+
"homepage": "https://github.com/brendt/php-sparkline",
99
"license": "MIT",
1010
"authors": [
1111
{
12-
"name": ":author_name",
13-
"email": "[email protected]",
12+
"name": "Brent Roose",
13+
"email": "[email protected]",
1414
"role": "Developer"
1515
}
1616
],
1717
"require": {
1818
"php": "^8.1"
1919
},
2020
"require-dev": {
21-
"laravel/pint": "^1.2",
22-
"pestphp/pest": "^1.20",
23-
"spatie/ray": "^1.28"
21+
"friendsofphp/php-cs-fixer": "^3.13",
22+
"phpunit/phpunit": "^9.5"
2423
},
2524
"autoload": {
2625
"psr-4": {
27-
"VendorName\\Skeleton\\": "src"
26+
"Brendt\\Sparkline\\": "src"
2827
}
2928
},
3029
"autoload-dev": {
3130
"psr-4": {
32-
"VendorName\\Skeleton\\Tests\\": "tests"
31+
"Brendt\\Sparkline\\Tests\\": "tests"
3332
}
3433
},
3534
"scripts": {
36-
"test": "vendor/bin/pest",
37-
"test-coverage": "vendor/bin/pest --coverage",
38-
"format": "vendor/bin/pint"
35+
"test": "vendor/bin/phpunit"
3936
},
4037
"config": {
4138
"sort-packages": true,
4239
"allow-plugins": {
43-
"phpstan/extension-installer": true,
44-
"pestphp/pest-plugin": true
40+
"phpstan/extension-installer": true
4541
}
4642
},
4743
"minimum-stability": "dev",

0 commit comments

Comments
 (0)