Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
PONTO_SANDBOX_CLIENT_ID=
PONTO_SANDBOX_CLIENT_SECRET=
PONTO_BASE_URL=
12 changes: 9 additions & 3 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
blank_issues_enabled: true
blank_issues_enabled: false
contact_links:
- name: Report a security bug
url: https://github.com/AlchemicStudio/ponto-php/security/policy
about: Report a security bug
- name: Report a Bug
url: https://github.com/AlchemicStudio/ponto-php/issues/new
about: Report a reproductible bug
- name: Feature Request
url: https://github.com/spatie/package-skeleton-php/discussions/new?category=ideas
url: https://github.com/AlchemicStudio/ponto-php/discussions/new?category=ideas
about: Share ideas for new features
- name: Ask a Question
url: https://github.com/spatie/package-skeleton-php/discussions/new?category=q-a
url: https://github.com/AlchemicStudio/ponto-php/discussions/new?category=q-a
about: Ask the community for help
18 changes: 18 additions & 0 deletions .github/SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Security Policy

## Reporting a Vulnerability

If you discover a security vulnerability in this project, please report it responsibly by sending a detailed email to:

**security@alchemic.studio**

Please include the following information in your report:

- A description of the vulnerability
- Steps to reproduce the issue
- Potential impact of the vulnerability
- Any suggestions for fixing the issue (if available)

We take security issues seriously and will respond to your report as quickly as possible.

Thank you for helping keep this project secure!
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,16 @@
}
],
"require": {
"php": "^8.4"
"php": "^8.4",
"guzzlehttp/guzzle": "^7.10"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.21.1",
"mockery/mockery": "^1.6",
"pestphp/pest": "^4.1",
"phpstan/phpstan": "^2.1",
"spatie/ray": "^1.28"
"spatie/ray": "^1.28",
"vlucas/phpdotenv": "^5.6"
},
"autoload": {
"psr-4": {
Expand Down
Loading