Skip to content
This repository was archived by the owner on Nov 16, 2022. It is now read-only.

Commit 10ffb9d

Browse files
Merge pull request deanblackborough#24 from deanblackborough/v0.80.1
Autoload
2 parents af7f1f4 + 59f2b77 commit 10ffb9d

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33

44
Full changelog for PHP Quill Renderer
55

6-
## v0.80.0
6+
## v0.80.1 - 2017-04-26
7+
8+
* Composer autoload definition updated.
9+
* Added warnings to readme.
10+
11+
## v0.80.0 - 2017-04-25
712

813
* I'm now only testing against PHP 7+. [Tests]
914
* Added tests for setting attributes. [Tests]

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,17 @@ Image | `<img>`
6969
* Improved newline and paragraph support
7070
* Remaining toolbar options
7171
* Missing tests (options)
72+
73+
## Warnings
74+
75+
### Image support
76+
77+
The image support is rudimentary; it isn't production ready, some work needs to be done to support
78+
images. I can think of two solutions, pre-save of deltas, post the base64 and return a URI to replace the
79+
base64, or, at render time, fetch/cache an image/URI by posting the base64, later down the line I may
80+
explore one of these options.
81+
82+
Why?
83+
84+
I'm using this package within Dlayer, my app has its own image handling and I will not be exposing
85+
the image functionality of Quill.

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Render quill insert deltas to HTML and soon markdown",
44
"autoload": {
55
"psr-4" : {
6-
"DBlackborough\\Quill\\" : "src/DBlackborough/Quill"
6+
"DBlackborough\\Quill\\" : "src/"
77
}
88
},
99
"homepage": "https://github.com/deanblackborough/php-quill-renderer",

0 commit comments

Comments
 (0)