Skip to content

Commit

Permalink
preapre for 3.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nadar committed Mar 10, 2023
1 parent 7515b33 commit ea08502
Show file tree
Hide file tree
Showing 3 changed files with 256 additions and 199 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org/).

## 3.x
## 3.3.0 (10. March 2023)

+ [#77](https://github.com/nadar/quill-delta-parser/pull/77) Allow method chaining for `registerListener()` and `overwriteListener()`.
+ [#76](https://github.com/nadar/quill-delta-parser/pull/76) Addded php 8.2 for unit tests

## 3.2.1 (1. November 2022)
Expand Down
89 changes: 49 additions & 40 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,52 @@
{
"name": "nadar/quill-delta-parser",
"description": "A PHP library to parse Quill WYSIWYG editor deltas into HTML - flexible and extendible for custom elements.",
"keywords": ["quill", "delta", "html", "parser", "renderer", "quill-editor", "quill-delta", "quilljs"],
"type": "library",
"require-dev": {
"phpunit/phpunit": "^8.0",
"friendsofphp/php-cs-fixer": "^3.2",
"phpstan/phpstan": "^1.7",
"rector/rector": "^0.14.2"
},
"license": "MIT",
"authors": [
{
"name": "Basil Suter",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"nadar\\quill\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"nadar\\quill\\tests\\" : "tests/"
}
},
"scripts": {
"phpstan" : "vendor/bin/phpstan -v",
"phpcsfixer" : "vendor/bin/php-cs-fixer fix",
"rector" : "vendor/bin/rector"
},
"config": {
"platform": {
"php" : "7.4"
}
},
"require": {
"php": ">=7.2",
"ext-json": "*"
"name": "nadar/quill-delta-parser",
"description": "A PHP library to parse Quill WYSIWYG editor deltas into HTML - flexible and extendible for custom elements.",
"keywords": [
"quill",
"delta",
"html",
"parser",
"renderer",
"quill-editor",
"quill-delta",
"quilljs"
],
"type": "library",
"require-dev": {
"phpunit/phpunit": "^8.0",
"friendsofphp/php-cs-fixer": "^3.2",
"phpstan/phpstan": "^1.7",
"rector/rector": "^0.14.2"
},
"license": "MIT",
"authors": [
{
"name": "Basil Suter",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"nadar\\quill\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"nadar\\quill\\tests\\": "tests/"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan -v",
"phpcsfixer": "vendor/bin/php-cs-fixer fix",
"rector": "vendor/bin/rector"
},
"config": {
"platform": {
"php": "7.4"
}
},
"require": {
"php": ">=7.2",
"ext-json": "*"
}
}
Loading

0 comments on commit ea08502

Please sign in to comment.