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

add PHP version and extension requirementss #24

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
add PHP version and extension requirementss
It might be a good idea to break off a v2 as well after this, and switch the minimum version support to PHP 7.2
  • Loading branch information
browner12 authored Jan 16, 2020
commit 5fe5ae69584d3adc8112edebed7ff4ff58ecf533
6 changes: 5 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@
"role": "Maintainer"
}
],
"require": {},
"require": {
"php": ">=5.4.0",
"ext-fileinfo": "*",
"ext-imagick": "*"
},
"autoload": {
"psr-0": {
"FroalaEditor": "lib/"
Expand Down