Download the PHP package kdn/yii2-json-editor without Composer
On this page you can find all versions of the php package kdn/yii2-json-editor. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package yii2-json-editor
yii2-json-editor
JSON editor widget for Yii 2.
This widget uses JSON editor josdejong/jsoneditor.
Requirements
- PHP 5.4 or later or HHVM 3;
- Yii framework 2.
Installation
The preferred way to install this extension is through Composer.
To install, either run
or add
to the require
section of your composer.json
file.
Usage
Minimal example:
Alternatively you can pass already decoded JSON:
With some options:
With ActiveForm and ActiveRecord:
To get instance of JSON editor on client side you can use the following JavaScript:
How to set id
for hidden input:
All possible ways to pass data and their precedence:
For code above widget will show {"precedence": 1}
.
If decodedValue
is not set then widget will show {"precedence": 2}
, etc.
Please view public properties in class JsonEditor to get info about all available options, they documented comprehensively.
Testing
Make sure you installed all Composer dependencies (run composer update
in the base directory of repository).
Run PHPUnit in the base directory of repository:
Testing using Docker
Requirements
Up and running
-
Provide credentials for Composer:
I suggest to set GitHub OAuth token (also known as personal access token) in
auth.json
, however if you have doubts about security, or you are lazy to generate token then you can replace content ofauth.json
on{}
, in most cases this will work. -
Build images for services:
or
see
docker buildx bake --help
for details. -
Start service in background mode:
This command will start the service with PHP 8.1. Also allowed
7.4
,5.6
,8.1-alpine
,7.4-alpine
and5.6-alpine
, see services defined indocker-compose.yml
. -
Execute tests in the running container:
Alternatively you can start a shell in the running container and execute tests from it:
-
Stop and remove containers created by
up
:You may want to remove volumes along with containers:
Backward compatibility promise
yii2-json-editor is using Semver. This means that versions are tagged with MAJOR.MINOR.PATCH. Only a new major version will be allowed to break backward compatibility (BC).
PHP 8 introduced named arguments, which increased the cost and reduces flexibility for package maintainers. The names of the arguments for methods in yii2-json-editor is not included in our BC promise.