Skip to content

Commit

Permalink
Use Strauss and switch to Parsedown instead of the Markdown class
Browse files Browse the repository at this point in the history
Fixes #166
  • Loading branch information
sclark3-godaddy committed Mar 29, 2024
1 parent f465ea5 commit 6774c56
Show file tree
Hide file tree
Showing 10 changed files with 1,929 additions and 2,120 deletions.
42 changes: 36 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"gravity-forms"
],
"homepage": "https://github.com/pods-framework/pods-gravity-forms",
"license": "GPL-2.0+",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Pods Framework Team",
Expand All @@ -31,6 +31,7 @@
],
"support": {
"issues": "https://github.com/pods-framework/pods-gravity-forms/issues",
"forum": "https://wordpress.org/support/plugin/pods-gravity-forms",
"source": "https://github.com/pods-framework/pods-gravity-forms"
},
"autoload": {
Expand All @@ -40,11 +41,40 @@
}
},
"require": {
"composer/installers": "~1.0",
"php": ">=5.4"
"composer/installers": "2.2.*",
"erusev/parsedown": "^1.7.4",
"php": ">=7.2"
},
"require-dev": {
"lucatume/wp-browser": "^3.0",
"vlucas/phpdotenv": "^4.2"
"brianhenryie/strauss": "*"
},
"scripts": {
"prefix-namespaces": [
"strauss"
],
"post-install-cmd": [
"@prefix-namespaces"
],
"post-update-cmd": [
"@prefix-namespaces"
]
},
"extra": {
"installer-name": "pods-gravity-forms",
"strauss": {
"target_directory": "vendor-prefixed",
"namespace_prefix": "Pods_Gravity_Forms\\Prefixed\\",
"classmap_prefix": "Pods_Gravity_Forms__Prefixed__",
"constant_prefix": "PODS_GRAVITY_FORMS_PREFIXED_",
"function_prefix": "pods_gravity_forms_prefixed_",
"packages": [
"erusev/parsedown"
]
}
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}
}
Loading

0 comments on commit 6774c56

Please sign in to comment.