1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- {
- "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-gii/issues",
- "forum": "http://www.yiiframework.com/forum/",
- "wiki": "http://www.yiiframework.com/wiki/",
- "irc": "irc://irc.freenode.net/yii",
- "source": "https://github.com/yiisoft/yii2-gii"
- },
- "authors": [
- {
- "name": "Qiang Xue",
- "email": "qiang.xue@gmail.com"
- }
- ],
- "minimum-stability": "dev",
- "require": {
- "yiisoft/yii2": "~2.0.14",
- "phpspec/php-diff": "^1.1.0"
- },
- "require-dev": {
- "yiisoft/yii2-coding-standards": "~2.0",
- "cweagans/composer-patches": "^1.7",
- "phpunit/phpunit": "4.8.34"
- },
- "autoload": {
- "psr-4": {
- "yii\\gii\\": "src"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "yiiunit\\gii\\": "tests"
- }
- },
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- },
- "composer-exit-on-patch-failure": true,
- "patches": {
- "phpunit/phpunit-mock-objects": {
- "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
- },
- "phpunit/phpunit": {
- "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
- "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
- }
- }
- },
- "config": {
- "process-timeout": 1800,
- "fxp-asset": {
- "enabled": false
- }
- },
- "repositories": [
- {
- "type": "composer",
- "url": "https://asset-packagist.org"
- }
- ]
- }
|