This repository has been archived by the owner on Nov 26, 2023. It is now read-only.
forked from rsanchez/json
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Bugfix: Removed all remnants of fluid field data, since the Fluid fieldtype is not (yet) supported. The remnant data is unusable at this point. Working on support for Fluid fieldtype - Bugfix: Updated the `members` function to fit EE6.x - Changed `addon.setup.php` and cleaned it up
- Loading branch information
Showing
4 changed files
with
77 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,23 @@ | ||
<?php | ||
/* | ||
* | ||
* Requires ExpressionEngine 6. | ||
* Original author: Rob Sanchez | ||
* Original author URL: https://github.com/rsanchez | ||
* Original docs URL: https://github.com/rsanchez/json | ||
* | ||
* Requires ExpressionEngine 4.x, 5.x or 6.x. | ||
* Older versions of ExpressionEngine are not supported. | ||
* | ||
* EE6 compatibility created by Zignature. | ||
* https://github.com/zignature/json | ||
* EE4-EE6 compatibility created by Zignature. | ||
* | ||
*/ | ||
return array( | ||
'author' => 'Rob Sanchez', | ||
'author_url' => 'https://github.com/rsanchez', | ||
'description' => 'Output ExpressionEngine channel entries in JSON format.', | ||
'docs_url' => 'https://github.com/rsanchez/json', | ||
'name' => 'JSON', | ||
'settings_exist' => FALSE, | ||
'version' => '2.5.0', | ||
'namespace' => 'rsanchez/json' | ||
'author' => 'Zignature', | ||
'author_url' => 'https://github.com/zignature', | ||
'description' => 'Output ExpressionEngine channel entries in JSON format.', | ||
'docs_url' => 'https://github.com/zignature/json', | ||
'name' => 'JSON', | ||
'settings_exist' => FALSE, | ||
'version' => '2.5.1', | ||
'namespace' => 'zignature/json' | ||
); |
Oops, something went wrong.