Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: drop support for php 7.1, modernize quality tools, add .gitignore #233

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
./vendor
./composer.lock
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,14 @@ Image creation
If you choose to use image files instead of embedding the widget will execute a garbage collection
randomly and delete images that exceed the configured lifetime.

Use internal Quality-Tools
==============

```
vendor/bin/phpstan analyse
vendor/bin/ecs check .
```
License
=======
This bundle is under the MIT license. See the complete license in the bundle:
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
{
"name": "Grégoire Passault",
"email": "[email protected]",
"homepage": "http://www.gregwar.com/"
"homepage": "https://www.gregwar.com/"
},
{
"name": "Jeremy Livingston",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.3",
"php": ">=7.2.5",
"ext-gd": "*",
"gregwar/captcha": "^1.1.9",
"symfony/form": "~5.0|~6.0",
Expand All @@ -34,7 +34,7 @@
"sort-packages": true
},
"require-dev": {
"phpstan/phpstan": "^0.12.66",
"symplify/easy-coding-standard": "^6.1"
"phpstan/phpstan": "^1.9",
"symplify/easy-coding-standard": "^11.2"
}
}
Loading