Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-wdmg committed Jun 14, 2020
1 parent a54502c commit aa9f5bd
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 12 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
Changelog
=========

## 1.1.*
## 1.1.1 (2020-06-14)
* Update README.md
* setAttributeLabels() fixed

## 1.1.0 (2020-05-03)
Expand Down
6 changes: 3 additions & 3 deletions Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Yii2 Forms
*
* @category Module
* @version 1.1.0
* @version 1.1.1
* @author Alexsander Vyshnyvetskyy <[email protected]>
* @link https://github.com/wdmg/yii2-forms
* @copyright Copyright (c) 2019 - 2020 W.D.M.Group, Ukraine
Expand Down Expand Up @@ -40,7 +40,7 @@ class Module extends BaseModule
/**
* @var string, the description of module
*/
public $description = "Creation and management of user forms";
public $description = "Creating and manage composite forms";

/**
* @var array, the list of support locales for multi-language versions of page.
Expand All @@ -51,7 +51,7 @@ class Module extends BaseModule
/**
* @var string the module version
*/
private $version = "1.1.0";
private $version = "1.1.1";

/**
* @var integer, priority of initialization
Expand Down
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
[![Yii2](https://img.shields.io/badge/required-Yii2_v2.0.33-blue.svg)](https://packagist.org/packages/yiisoft/yii2)
[![Yii2](https://img.shields.io/badge/required-Yii2_v2.0.35-blue.svg)](https://packagist.org/packages/yiisoft/yii2)
[![Downloads](https://img.shields.io/packagist/dt/wdmg/yii2-forms.svg)](https://packagist.org/packages/wdmg/yii2-forms)
[![Packagist Version](https://img.shields.io/packagist/v/wdmg/yii2-forms.svg)](https://packagist.org/packages/wdmg/yii2-forms)
![Progress](https://img.shields.io/badge/progress-ready_to_use-green.svg)
[![GitHub license](https://img.shields.io/github/license/wdmg/yii2-forms.svg)](https://github.com/wdmg/yii2-forms/blob/master/LICENSE)

<img src="./docs/images/yii2-forms.png" width="100%" alt="Yii2 Composite Forms" />

# Yii2 Forms
Creation and management of custom user forms
Module for creating and administering composite forms for Yii2. It also records and manages the results of filling out forms on the site. It has its own component for building and displaying forms in the frontend. Supports multilingual fields and descriptions.

This module is an integral part of the [Butterfly.SMS](https://butterflycms.com/) content management system, but can also be used as an standalone extension.

Copyrights (c) 2019-2020 [W.D.M.Group, Ukraine](https://wdmg.com.ua/)

# Requirements
* PHP 5.6 or higher
* Yii2 v.2.0.33 and newest
* Yii2 v.2.0.35 and newest
* [Yii2 Base](https://github.com/wdmg/yii2-base) module (required)

# Installation
Expand Down Expand Up @@ -95,6 +101,7 @@ Use the `Module::dashboardNavItems()` method of the module to generate a navigat


# Status and version [ready to use]
* v.1.1.1 - Update README.md and setAttributeLabels() fixed
* v.1.1.0 - Multi-language support, submit() method for Form component
* v.1.0.13 - Update dependencies
* v.1.0.12 - Log activity and translations, added forms component
Expand Down
2 changes: 1 addition & 1 deletion components/Forms.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Yii2 Forms
*
* @category Component
* @version 1.1.0
* @version 1.1.1
* @author Alexsander Vyshnyvetskyy <[email protected]>
* @link https://github.com/wdmg/yii2-forms
* @copyright Copyright (c) 2019 - 2020 W.D.M.Group, Ukraine
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"keywords": ["yii2", "yii2-forms", "forms", "form management", "wdmg"],
"type": "yii2-extension",
"license": "MIT",
"version": "1.1.0",
"version": "1.1.1",
"homepage": "https://github.com/wdmg/yii2-forms",
"support": {
"source": "https://github.com/wdmg/yii2-forms",
Expand All @@ -21,9 +21,9 @@
}
],
"require": {
"yiisoft/yii2": "^2.0.33",
"wdmg/yii2-base": "^1.2.2",
"wdmg/yii2-helpers": "^1.3.2",
"yiisoft/yii2": "^2.0.35",
"wdmg/yii2-base": "^1.2.4",
"wdmg/yii2-helpers": "^1.3.3",
"wdmg/yii2-selectinput": "^1.0.9"
},
"minimum-stability": "dev",
Expand Down
Binary file added docs/images/yii2-forms.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit aa9f5bd

Please sign in to comment.