Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
35c4a619
Commit
35c4a619
authored
10 years ago
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into codeception-test-adjustments
parents
3913d64d
c0e91e25
master
No related merge requests found
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
112 additions
and
53 deletions
+112
-53
structure-widgets.md
docs/guide/structure-widgets.md
+2
-2
bower.json
extensions/debug/bower.json
+27
-0
composer.json
extensions/debug/composer.json
+27
-25
bower.json
extensions/gii/bower.json
+28
-0
composer.json
extensions/gii/composer.json
+28
-26
No files found.
docs/guide/structure-widgets.md
View file @
35c4a619
...
...
@@ -8,7 +8,7 @@ like the following:
```
php
<?php
use
yii\
bootstrap
\DatePicker
;
use
yii\
jui
\DatePicker
;
?>
<?=
DatePicker
::
widget
([
'name'
=>
'date'
])
?>
```
...
...
@@ -28,7 +28,7 @@ widget which is configured to use Russian language and keep the input in the `fr
```
php
<?php
use
yii\
bootstrap
\DatePicker
;
use
yii\
jui
\DatePicker
;
?>
<?=
DatePicker
::
widget
([
'model'
=>
$model
,
...
...
This diff is collapsed.
Click to expand it.
extensions/debug/bower.json
0 → 100644
View file @
35c4a619
{
"name"
:
"yii2-debug"
,
"version"
:
"2.0.0"
,
"homepage"
:
"http://www.yiiframework.com/"
,
"authors"
:
[
"Qiang Xue <qiang.xue@gmail.com>"
],
"description"
:
"The debugger extension for the Yii framework"
,
"keywords"
:
[
"yii2"
,
"debug"
,
"debugger"
],
"license"
:
"BSD-3-Clause"
,
"main"
:
[
"assets/toolbar.js"
],
"ignore"
:
[
"**/.*"
,
"**/*"
,
"!assets/"
],
"dependencies"
:
{
"yii2"
:
">=2.0.0"
,
"bootstrap"
:
">=3.0.0"
}
}
This diff is collapsed.
Click to expand it.
extensions/debug/composer.json
View file @
35c4a619
{
"name"
:
"yiisoft/yii2-debug"
,
"description"
:
"The debugger extension for the Yii framework"
,
"keywords"
:
[
"yii2"
,
"debug"
,
"debugger"
],
"type"
:
"yii2-extension"
,
"license"
:
"BSD-3-Clause"
,
"support"
:
{
"issues"
:
"https://github.com/yiisoft/yii2/issues?labels=ext%3Adebug"
,
"forum"
:
"http://www.yiiframework.com/forum/"
,
"wiki"
:
"http://www.yiiframework.com/wiki/"
,
"irc"
:
"irc://irc.freenode.net/yii"
,
"source"
:
"https://github.com/yiisoft/yii2"
},
"authors"
:
[
{
"name"
:
"Qiang Xue"
,
"email"
:
"qiang.xue@gmail.com"
}
],
"require"
:
{
"yiisoft/yii2"
:
"*"
,
"yiisoft/yii2-bootstrap"
:
"*"
},
"autoload"
:
{
"psr-4"
:
{
"yii
\\
debug
\\
"
:
""
}
}
"name"
:
"yiisoft/yii2-debug"
,
"description"
:
"The debugger extension for the Yii framework"
,
"keywords"
:
[
"yii2"
,
"debug"
,
"debugger"
],
"type"
:
"yii2-extension"
,
"license"
:
"BSD-3-Clause"
,
"support"
:
{
"issues"
:
"https://github.com/yiisoft/yii2/issues?labels=ext%3Adebug"
,
"forum"
:
"http://www.yiiframework.com/forum/"
,
"wiki"
:
"http://www.yiiframework.com/wiki/"
,
"irc"
:
"irc://irc.freenode.net/yii"
,
"source"
:
"https://github.com/yiisoft/yii2"
},
"authors"
:
[
{
"name"
:
"Qiang Xue"
,
"email"
:
"qiang.xue@gmail.com"
}
],
"require"
:
{
"yiisoft/yii2"
:
"*"
,
"yiisoft/yii2-bootstrap"
:
"*"
},
"autoload"
:
{
"psr-4"
:
{
"yii
\\
debug
\\
"
:
""
}
}
}
This diff is collapsed.
Click to expand it.
extensions/gii/bower.json
0 → 100644
View file @
35c4a619
{
"name"
:
"yii2-gii"
,
"version"
:
"2.0.0"
,
"homepage"
:
"http://www.yiiframework.com/"
,
"authors"
:
[
"Qiang Xue <qiang.xue@gmail.com>"
],
"description"
:
"The Gii extension for the Yii framework"
,
"keywords"
:
[
"yii2"
,
"gii"
,
"code generator"
],
"license"
:
"BSD-3-Clause"
,
"main"
:
[
"assets/gii.js"
],
"ignore"
:
[
"**/.*"
,
"**/*"
,
"!assets/"
],
"dependencies"
:
{
"yii2"
:
">=2.0.0"
,
"bootstrap"
:
">=3.0.0"
,
"typeahead.js"
:
">=0.10.0"
}
}
This diff is collapsed.
Click to expand it.
extensions/gii/composer.json
View file @
35c4a619
{
"name"
:
"yiisoft/yii2-gii"
,
"description"
:
"The Gii extension for the Yii framework"
,
"keywords"
:
[
"yii2"
,
"gii"
,
"code generator"
],
"type"
:
"yii2-extension"
,
"license"
:
"BSD-3-Clause"
,
"support"
:
{
"issues"
:
"https://github.com/yiisoft/yii2/issues?labels=ext%3Agii"
,
"forum"
:
"http://www.yiiframework.com/forum/"
,
"wiki"
:
"http://www.yiiframework.com/wiki/"
,
"irc"
:
"irc://irc.freenode.net/yii"
,
"source"
:
"https://github.com/yiisoft/yii2"
},
"authors"
:
[
{
"name"
:
"Qiang Xue"
,
"email"
:
"qiang.xue@gmail.com"
}
],
"require"
:
{
"yiisoft/yii2"
:
"*"
,
"yiisoft/yii2-bootstrap"
:
"*"
,
"phpspec/php-diff"
:
">=1.0.2"
},
"autoload"
:
{
"psr-4"
:
{
"yii
\\
gii
\\
"
:
""
}
}
"name"
:
"yiisoft/yii2-gii"
,
"description"
:
"The Gii extension for the Yii framework"
,
"keywords"
:
[
"yii2"
,
"gii"
,
"code generator"
],
"type"
:
"yii2-extension"
,
"license"
:
"BSD-3-Clause"
,
"support"
:
{
"issues"
:
"https://github.com/yiisoft/yii2/issues?labels=ext%3Agii"
,
"forum"
:
"http://www.yiiframework.com/forum/"
,
"wiki"
:
"http://www.yiiframework.com/wiki/"
,
"irc"
:
"irc://irc.freenode.net/yii"
,
"source"
:
"https://github.com/yiisoft/yii2"
},
"authors"
:
[
{
"name"
:
"Qiang Xue"
,
"email"
:
"qiang.xue@gmail.com"
}
],
"require"
:
{
"yiisoft/yii2"
:
"*"
,
"yiisoft/yii2-bootstrap"
:
"*"
,
"phpspec/php-diff"
:
">=1.0.2"
},
"autoload"
:
{
"psr-4"
:
{
"yii
\\
gii
\\
"
:
""
}
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment