Skip to content

Commit

Permalink
Merge pull request #7 from Jelmer-Ketelaar/#64
Browse files Browse the repository at this point in the history
#64
  • Loading branch information
JurrijnModderman authored Oct 21, 2021
2 parents d74193a + 7bdb5dd commit 50d7b21
Show file tree
Hide file tree
Showing 16 changed files with 916 additions and 36 deletions.
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@
/phpunit.xml
###< symfony/phpunit-bridge ###

#64
.env
.idea
.DS_Store
###> phpunit/phpunit ###
/phpunit.xml
.phpunit.result.cache
.idea
###< phpunit/phpunit ###
Development
*.xml
*.iml
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"php": "^8.1",
"ext-ctype": "*",
"ext-curl": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-simplexml": "*",
"api-platform/core": "^2.6",
"composer/package-versions-deprecated": "1.11.99.4",
Expand All @@ -16,6 +17,7 @@
"doctrine/doctrine-migrations-bundle": "^3.1",
"doctrine/orm": "^2.10",
"doctrine/sql-formatter": "^1.1",
"guzzlehttp/guzzle": "^7.4",
"nelmio/cors-bundle": "^2.1",
"phpdocumentor/reflection-docblock": "^5.2",
"sensio/framework-extra-bundle": "^6.1",
Expand All @@ -27,6 +29,7 @@
"symfony/form": "5.3.*",
"symfony/framework-bundle": "5.3.*",
"symfony/http-client": "5.3.*",
"symfony/http-foundation": "5.3.*",
"symfony/intl": "5.3.*",
"symfony/mailer": "5.3.*",
"symfony/mime": "5.3.*",
Expand Down
Loading

0 comments on commit 50d7b21

Please sign in to comment.