Skip to content

Commit 4323730

Browse files
Package configuration
1 parent bca6c9c commit 4323730

15 files changed

Lines changed: 34 additions & 406 deletions

.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: AlchemicStudio

.github/workflows/fix-php-code-style-issues-pint.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.
File renamed without changes.

.github/workflows/run-tests-phpunit.yml

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

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
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 `ponto-php` will be documented in this file.
44

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) AlchemicStudio <sebastien.denooz@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: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# :package_description
1+
# Implementation of the Ponto API in PHP
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-
[![Tests](https://img.shields.io/github/actions/workflow/status/:vendor_slug/:package_slug/run-tests.yml?branch=main&label=tests&style=flat-square)](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)
3+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/alchemicstudio/ponto-php.svg?style=flat-square)](https://packagist.org/packages/alchemicstudio/ponto-php)
4+
[![Tests](https://img.shields.io/github/actions/workflow/status/alchemicstudio/ponto-php/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/alchemicstudio/ponto-php/actions/workflows/run-tests.yml)
5+
[![Total Downloads](https://img.shields.io/packagist/dt/alchemicstudio/ponto-php.svg?style=flat-square)](https://packagist.org/packages/alchemicstudio/ponto-php)
66

77
Implementation of the [Ponto API](https://documentation.myponto.com/1/api/curl) in PHP
88

@@ -11,14 +11,14 @@ Implementation of the [Ponto API](https://documentation.myponto.com/1/api/curl)
1111
You can install the package via composer:
1212

1313
```bash
14-
composer require :vendor_slug/:package_slug
14+
composer require alchemicstudio/ponto-php
1515
```
1616

1717
## Usage
1818

1919
```php
20-
$skeleton = new VendorName\Skeleton();
21-
echo $skeleton->echoPhrase('Hello, VendorName!');
20+
$skeleton = new AlchemicStudio\Ponto();
21+
echo $skeleton->echoPhrase('Hello, AlchemicStudio!');
2222
```
2323

2424
## Testing
@@ -41,7 +41,7 @@ Please review [our security policy](../../security/policy) on how to report secu
4141

4242
## Credits
4343

44-
- [:author_name](https://github.com/:author_username)
44+
- [Sébastien Denooz](https://github.com/AlchemicStudio)
4545
- [All Contributors](../../contributors)
4646

4747
## License

composer.json

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,46 @@
11
{
2-
"name": ":vendor_slug/:package_slug",
3-
"description": ":package_description",
2+
"name": "alchemicstudio/ponto-php",
3+
"description": "Implementation of the Ponto API in PHP",
44
"keywords": [
5-
":vendor_name",
6-
":package_slug"
5+
"AlchemicStudio",
6+
"ponto-php"
77
],
8-
"homepage": "https://github.com/:vendor_slug/:package_slug",
8+
"homepage": "https://github.com/alchemicstudio/ponto-php",
99
"license": "MIT",
1010
"authors": [
1111
{
12-
"name": ":author_name",
13-
"email": "author@domain.com",
12+
"name": "Sébastien Denooz",
13+
"email": "sebastien.denooz@gmail.com",
1414
"role": "Developer"
1515
}
1616
],
1717
"require": {
1818
"php": "^8.4"
1919
},
2020
"require-dev": {
21-
:require_dev_testing,
22-
:require_dev_codestyle,
21+
"pestphp/pest": "^4.0",
22+
"friendsofphp/php-cs-fixer": "^3.21.1",
2323
"spatie/ray": "^1.28"
2424
},
2525
"autoload": {
2626
"psr-4": {
27-
"VendorName\\Skeleton\\": "src"
27+
"AlchemicStudio\\Ponto\\": "src"
2828
}
2929
},
3030
"autoload-dev": {
3131
"psr-4": {
32-
"VendorName\\Skeleton\\Tests\\": "tests"
32+
"AlchemicStudio\\Ponto\\Tests\\": "tests"
3333
}
3434
},
3535
"scripts": {
36-
:scripts_testing,
37-
:scripts_codestyle
36+
"test": "vendor/bin/pest",
37+
"test-coverage": "vendor/bin/pest --coverage",
38+
"format": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes"
3839
},
3940
"config": {
4041
"sort-packages": true,
4142
"allow-plugins": {
42-
:plugins_testing,
43+
"pestphp/pest-plugin": true,
4344
"phpstan/extension-installer": true
4445
}
4546
},

0 commit comments

Comments
 (0)