Compare View
Commits (2)
Showing
5 changed files
Show diff stats
backend/config/main.php
| @@ -35,23 +35,22 @@ | @@ -35,23 +35,22 @@ | ||
| 35 | 'variant-option-complementary' => 'artbox\catalog\controllers\VariantOptionComplController', | 35 | 'variant-option-complementary' => 'artbox\catalog\controllers\VariantOptionComplController', |
| 36 | 'variant-option-exclusion' => 'artbox\catalog\controllers\VariantOptionExclController', | 36 | 'variant-option-exclusion' => 'artbox\catalog\controllers\VariantOptionExclController', |
| 37 | 'product-option-complementary' => 'artbox\catalog\controllers\ProductOptionComplController', | 37 | 'product-option-complementary' => 'artbox\catalog\controllers\ProductOptionComplController', |
| 38 | - 'product-option-exclusion' => 'artbox\catalog\controllers\ProductOptionExclController', | ||
| 39 | - 'import' => 'artbox\catalog\controllers\ImportController', | ||
| 40 | - 'blog-article' => 'artbox\weblog\controllers\ArticleController', | ||
| 41 | - 'blog-category' => 'artbox\weblog\controllers\CategoryController', | ||
| 42 | - 'blog-tag' => 'artbox\weblog\controllers\TagController', | ||
| 43 | - 'order' => 'artbox\order\controllers\OrderController', | ||
| 44 | - 'order-product' => 'artbox\order\controllers\OrderProductController', | ||
| 45 | - 'label' => 'artbox\order\controllers\LabelController', | ||
| 46 | - 'delivery' => 'artbox\order\controllers\DeliveryController', | ||
| 47 | - 'payment' => 'artbox\order\controllers\PaymentController', | ||
| 48 | - 'sitemap' => 'artbox\core\controllers\SitemapController', | ||
| 49 | - 'comment' => [ | 38 | + 'product-option-exclusion' => 'artbox\catalog\controllers\ProductOptionExclController', |
| 39 | + 'import' => 'artbox\catalog\controllers\ImportController', | ||
| 40 | + 'blog-article' => 'artbox\weblog\controllers\ArticleController', | ||
| 41 | + 'blog-category' => 'artbox\weblog\controllers\CategoryController', | ||
| 42 | + 'blog-tag' => 'artbox\weblog\controllers\TagController', | ||
| 43 | + 'order' => 'artbox\order\controllers\OrderController', | ||
| 44 | + 'order-product' => 'artbox\order\controllers\OrderProductController', | ||
| 45 | + 'label' => 'artbox\order\controllers\LabelController', | ||
| 46 | + 'delivery' => 'artbox\order\controllers\DeliveryController', | ||
| 47 | + 'payment' => 'artbox\order\controllers\PaymentController', | ||
| 48 | + 'sitemap' => 'artbox\core\controllers\SitemapController', | ||
| 49 | + 'comment' => [ | ||
| 50 | 'class' => 'artbox\webcomment\controllers\ManageController', | 50 | 'class' => 'artbox\webcomment\controllers\ManageController', |
| 51 | 'viewPath' => '@artbox/webcomment/views/manage', | 51 | 'viewPath' => '@artbox/webcomment/views/manage', |
| 52 | ], | 52 | ], |
| 53 | - 'export' => 'artbox\catalog\controllers\ExportController', | ||
| 54 | - 'odoo' => 'artbox\odoo\controllers\OdooController', | 53 | + 'export' => 'artbox\catalog\controllers\ExportController', |
| 55 | ], | 54 | ], |
| 56 | 'components' => [ | 55 | 'components' => [ |
| 57 | 'assetManager' => [ | 56 | 'assetManager' => [ |
common/config/main.php
| @@ -88,90 +88,5 @@ | @@ -88,90 +88,5 @@ | ||
| 88 | 'aliasCache' => [ | 88 | 'aliasCache' => [ |
| 89 | 'class' => AliasCache::className(), | 89 | 'class' => AliasCache::className(), |
| 90 | ], | 90 | ], |
| 91 | - 'odooMapper' => [ | ||
| 92 | - 'class' => OdooMapper::className(), | ||
| 93 | - 'map' => [ | ||
| 94 | - 'id' => 'remote_id', | ||
| 95 | - 'active' => 'status', | ||
| 96 | - 'create_date' => [ | ||
| 97 | - 'attribute' => 'created_at', | ||
| 98 | - 'artbox' => function ($field) { | ||
| 99 | - return strtotime($field); | ||
| 100 | - }, | ||
| 101 | - 'odoo' => function ($field) { | ||
| 102 | - return date('Y-m-d H:i:s', $field); | ||
| 103 | - }, | ||
| 104 | - ], | ||
| 105 | - '__last_update' => [ | ||
| 106 | - 'attribute' => 'updated_at', | ||
| 107 | - 'artbox' => function ($field) { | ||
| 108 | - return strtotime($field); | ||
| 109 | - }, | ||
| 110 | - 'odoo' => function ($field) { | ||
| 111 | - return date('Y-m-d H:i:s', $field); | ||
| 112 | - }, | ||
| 113 | - ], | ||
| 114 | - 'name' => 'title', | ||
| 115 | - 'default_code' => 'sku', | ||
| 116 | - 'list_price' => 'price', | ||
| 117 | - 'product_id' => [ | ||
| 118 | - 'attribute' => 'variant_id', | ||
| 119 | - 'artbox' => function ($field) { | ||
| 120 | - return $field[ 0 ]; | ||
| 121 | - }, | ||
| 122 | - 'odoo' => function ($field) { | ||
| 123 | - return [ $field ]; | ||
| 124 | - }, | ||
| 125 | - ], | ||
| 126 | - 'price_unit' => 'price', | ||
| 127 | - 'product_uom_qty' => 'count', | ||
| 128 | - 'categ_id' => 'category', | ||
| 129 | - 'contact_address' => [ | ||
| 130 | - 'attribute' => 'address', | ||
| 131 | - 'artbox' => function ($field) { | ||
| 132 | - return strval($field); | ||
| 133 | - }, | ||
| 134 | - 'odoo' => function ($field) { | ||
| 135 | - return boolval($field); | ||
| 136 | - }, | ||
| 137 | - ], | ||
| 138 | - 'phone' => [ | ||
| 139 | - 'attribute' => 'phone', | ||
| 140 | - 'artbox' => function ($field) { | ||
| 141 | - return strval($field); | ||
| 142 | - }, | ||
| 143 | - 'odoo' => function ($field) { | ||
| 144 | - return boolval($field); | ||
| 145 | - }, | ||
| 146 | - ], | ||
| 147 | - 'email' => [ | ||
| 148 | - 'attribute' => 'email', | ||
| 149 | - 'artbox' => function ($field) { | ||
| 150 | - return strval($field); | ||
| 151 | - }, | ||
| 152 | - 'odoo' => function ($field) { | ||
| 153 | - return boolval($field); | ||
| 154 | - }, | ||
| 155 | - ], | ||
| 156 | - 'city' => [ | ||
| 157 | - 'attribute' => 'city', | ||
| 158 | - 'artbox' => function ($field) { | ||
| 159 | - return strval($field); | ||
| 160 | - }, | ||
| 161 | - 'odoo' => function ($field) { | ||
| 162 | - return boolval($field); | ||
| 163 | - }, | ||
| 164 | - ], | ||
| 165 | - 'comment' => [ | ||
| 166 | - 'attribute' => 'comment', | ||
| 167 | - 'artbox' => function ($field) { | ||
| 168 | - return strval($field); | ||
| 169 | - }, | ||
| 170 | - 'odoo' => function ($field) { | ||
| 171 | - return boolval($field); | ||
| 172 | - }, | ||
| 173 | - ], | ||
| 174 | - ], | ||
| 175 | - ], | ||
| 176 | ], | 91 | ], |
| 177 | ]; | 92 | ]; |
composer.json
| @@ -39,7 +39,12 @@ | @@ -39,7 +39,12 @@ | ||
| 39 | "nodge/yii2-eauth": "~2.0", | 39 | "nodge/yii2-eauth": "~2.0", |
| 40 | "skeeks/yii2-assets-auto-compress": "*", | 40 | "skeeks/yii2-assets-auto-compress": "*", |
| 41 | "zyx/zyx-phpmailer": "@stable", | 41 | "zyx/zyx-phpmailer": "@stable", |
| 42 | - "darkaonline/ripcord": "*" | 42 | + "darkaonline/ripcord": "*", |
| 43 | + "artweb/artbox-core": "~0.0.1", | ||
| 44 | + "artweb/artbox-catalog": "~0.0.1", | ||
| 45 | + "artweb/artbox-order": "~0.0.1", | ||
| 46 | + "artweb/artbox-weblog": "~0.0.1", | ||
| 47 | + "artweb/artbox-webcomment": "~0.0.1" | ||
| 43 | }, | 48 | }, |
| 44 | "require-dev": { | 49 | "require-dev": { |
| 45 | "yiisoft/yii2-debug": "~2.0.0", | 50 | "yiisoft/yii2-debug": "~2.0.0", |
| @@ -73,6 +78,10 @@ | @@ -73,6 +78,10 @@ | ||
| 73 | { | 78 | { |
| 74 | "type": "vcs", | 79 | "type": "vcs", |
| 75 | "url": "git@gitlab.artweb.com.ua:Alexey/artbox-weblog.git" | 80 | "url": "git@gitlab.artweb.com.ua:Alexey/artbox-weblog.git" |
| 81 | + }, | ||
| 82 | + { | ||
| 83 | + "type": "vcs", | ||
| 84 | + "url": "git@gitlab.artweb.com.ua:yarik.nechyporuk/artbox-webcomment.git" | ||
| 76 | } | 85 | } |
| 77 | ], | 86 | ], |
| 78 | "autoload": { | 87 | "autoload": { |
| @@ -81,7 +90,7 @@ | @@ -81,7 +90,7 @@ | ||
| 81 | "artbox\\catalog\\": "artweb/artbox-catalog/", | 90 | "artbox\\catalog\\": "artweb/artbox-catalog/", |
| 82 | "artbox\\order\\": "artweb/artbox-order/", | 91 | "artbox\\order\\": "artweb/artbox-order/", |
| 83 | "artbox\\weblog\\": "artweb/artbox-weblog/", | 92 | "artbox\\weblog\\": "artweb/artbox-weblog/", |
| 84 | - "artbox\\odoo\\": "artweb/artbox-odoo/" | 93 | + "artbox\\webcomment\\": "artweb/artbox-webcomment/" |
| 85 | } | 94 | } |
| 86 | } | 95 | } |
| 87 | } | 96 | } |
composer.lock deleted
| 1 | -{ | ||
| 2 | - "_readme": [ | ||
| 3 | - "This file locks the dependencies of your project to a known state", | ||
| 4 | - "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", | ||
| 5 | - "This file is @generated automatically" | ||
| 6 | - ], | ||
| 7 | - "content-hash": "a27711284fb6ee8108327ae9dff29060", | ||
| 8 | - "packages": [ | ||
| 9 | - { | ||
| 10 | - "name": "2amigos/yii2-tinymce-widget", | ||
| 11 | - "version": "1.1.2", | ||
| 12 | - "source": { | ||
| 13 | - "type": "git", | ||
| 14 | - "url": "https://github.com/2amigos/yii2-tinymce-widget.git", | ||
| 15 | - "reference": "4f519e37774ef231e4b4d6046854d5638548c8e0" | ||
| 16 | - }, | ||
| 17 | - "dist": { | ||
| 18 | - "type": "zip", | ||
| 19 | - "url": "https://api.github.com/repos/2amigos/yii2-tinymce-widget/zipball/4f519e37774ef231e4b4d6046854d5638548c8e0", | ||
| 20 | - "reference": "4f519e37774ef231e4b4d6046854d5638548c8e0", | ||
| 21 | - "shasum": "" | ||
| 22 | - }, | ||
| 23 | - "require": { | ||
| 24 | - "tinymce/tinymce": ">=4", | ||
| 25 | - "yiisoft/yii2": "~2.0.0" | ||
| 26 | - }, | ||
| 27 | - "require-dev": { | ||
| 28 | - "phpunit/phpunit": "4.*" | ||
| 29 | - }, | ||
| 30 | - "type": "yii2-extension", | ||
| 31 | - "extra": { | ||
| 32 | - "branch-alias": { | ||
| 33 | - "dev-master": "1.0-dev" | ||
| 34 | - }, | ||
| 35 | - "asset-installer-paths": { | ||
| 36 | - "bower-asset-library": "vendor/bower" | ||
| 37 | - } | ||
| 38 | - }, | ||
| 39 | - "autoload": { | ||
| 40 | - "psr-4": { | ||
| 41 | - "dosamigos\\tinymce\\": "src" | ||
| 42 | - } | ||
| 43 | - }, | ||
| 44 | - "notification-url": "https://packagist.org/downloads/", | ||
| 45 | - "license": [ | ||
| 46 | - "BSD-3-Clause" | ||
| 47 | - ], | ||
| 48 | - "authors": [ | ||
| 49 | - { | ||
| 50 | - "name": "2amigOS! Consulting Group", | ||
| 51 | - "email": "hola@2amigos.us", | ||
| 52 | - "homepage": "http://2amigos.us", | ||
| 53 | - "role": "Developer" | ||
| 54 | - } | ||
| 55 | - ], | ||
| 56 | - "description": "TinyMCE widget for Yii2.", | ||
| 57 | - "homepage": "http://yiiwheels.com/extension/tinymce-widget", | ||
| 58 | - "keywords": [ | ||
| 59 | - "2amigos", | ||
| 60 | - "extension", | ||
| 61 | - "tinymce", | ||
| 62 | - "widget", | ||
| 63 | - "yii", | ||
| 64 | - "yii 2", | ||
| 65 | - "yii2" | ||
| 66 | - ], | ||
| 67 | - "time": "2017-06-09T14:12:14+00:00" | ||
| 68 | - }, | ||
| 69 | - { | ||
| 70 | - "name": "bower-asset/amcharts", | ||
| 71 | - "version": "dev-master", | ||
| 72 | - "source": { | ||
| 73 | - "type": "git", | ||
| 74 | - "url": "https://github.com/arturgspb/bower-amcharts.git", | ||
| 75 | - "reference": "2c769000cedd96ff6dad4cb676f1453e5661f438" | ||
| 76 | - }, | ||
| 77 | - "dist": { | ||
| 78 | - "type": "zip", | ||
| 79 | - "url": "https://api.github.com/repos/arturgspb/bower-amcharts/zipball/2c769000cedd96ff6dad4cb676f1453e5661f438", | ||
| 80 | - "reference": "2c769000cedd96ff6dad4cb676f1453e5661f438", | ||
| 81 | - "shasum": "" | ||
| 82 | - }, | ||
| 83 | - "type": "bower-asset-library", | ||
| 84 | - "extra": { | ||
| 85 | - "bower-asset-main": "./dist/amcharts/amcharts.js" | ||
| 86 | - }, | ||
| 87 | - "time": "2016-01-04 17:22:55" | ||
| 88 | - }, | ||
| 89 | - { | ||
| 90 | - "name": "bower-asset/amcharts-stock", | ||
| 91 | - "version": "dev-master", | ||
| 92 | - "source": { | ||
| 93 | - "type": "git", | ||
| 94 | - "url": "https://github.com/denisvolokh/bower-amcharts-stock.git", | ||
| 95 | - "reference": "22a2d2032328dc4d29282384a14f4994c6f3f8f1" | ||
| 96 | - }, | ||
| 97 | - "dist": { | ||
| 98 | - "type": "zip", | ||
| 99 | - "url": "https://api.github.com/repos/denisvolokh/bower-amcharts-stock/zipball/22a2d2032328dc4d29282384a14f4994c6f3f8f1", | ||
| 100 | - "reference": "22a2d2032328dc4d29282384a14f4994c6f3f8f1", | ||
| 101 | - "shasum": "" | ||
| 102 | - }, | ||
| 103 | - "type": "bower-asset-library", | ||
| 104 | - "extra": { | ||
| 105 | - "bower-asset-main": "./dist/amcharts/amcharts.js" | ||
| 106 | - }, | ||
| 107 | - "time": "2015-01-28 07:40:20" | ||
| 108 | - }, | ||
| 109 | - { | ||
| 110 | - "name": "bower-asset/bootstrap", | ||
| 111 | - "version": "v3.3.7", | ||
| 112 | - "source": { | ||
| 113 | - "type": "git", | ||
| 114 | - "url": "https://github.com/twbs/bootstrap.git", | ||
| 115 | - "reference": "0b9c4a4007c44201dce9a6cc1a38407005c26c86" | ||
| 116 | - }, | ||
| 117 | - "dist": { | ||
| 118 | - "type": "zip", | ||
| 119 | - "url": "https://api.github.com/repos/twbs/bootstrap/zipball/0b9c4a4007c44201dce9a6cc1a38407005c26c86", | ||
| 120 | - "reference": "0b9c4a4007c44201dce9a6cc1a38407005c26c86", | ||
| 121 | - "shasum": "" | ||
| 122 | - }, | ||
| 123 | - "require": { | ||
| 124 | - "bower-asset/jquery": ">=1.9.1,<4.0" | ||
| 125 | - }, | ||
| 126 | - "type": "bower-asset-library", | ||
| 127 | - "extra": { | ||
| 128 | - "bower-asset-main": [ | ||
| 129 | - "less/bootstrap.less", | ||
| 130 | - "dist/js/bootstrap.js" | ||
| 131 | - ], | ||
| 132 | - "bower-asset-ignore": [ | ||
| 133 | - "/.*", | ||
| 134 | - "_config.yml", | ||
| 135 | - "CNAME", | ||
| 136 | - "composer.json", | ||
| 137 | - "CONTRIBUTING.md", | ||
| 138 | - "docs", | ||
| 139 | - "js/tests", | ||
| 140 | - "test-infra" | ||
| 141 | - ] | ||
| 142 | - }, | ||
| 143 | - "license": [ | ||
| 144 | - "MIT" | ||
| 145 | - ], | ||
| 146 | - "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.", | ||
| 147 | - "keywords": [ | ||
| 148 | - "css", | ||
| 149 | - "framework", | ||
| 150 | - "front-end", | ||
| 151 | - "js", | ||
| 152 | - "less", | ||
| 153 | - "mobile-first", | ||
| 154 | - "responsive", | ||
| 155 | - "web" | ||
| 156 | - ] | ||
| 157 | - }, | ||
| 158 | - { | ||
| 159 | - "name": "bower-asset/gentelella", | ||
| 160 | - "version": "1.4.0", | ||
| 161 | - "source": { | ||
| 162 | - "type": "git", | ||
| 163 | - "url": "https://github.com/puikinsh/gentelella.git", | ||
| 164 | - "reference": "3448fdfdf16a41707d6e2a8154d592a88d85c41c" | ||
| 165 | - }, | ||
| 166 | - "dist": { | ||
| 167 | - "type": "zip", | ||
| 168 | - "url": "https://api.github.com/repos/puikinsh/gentelella/zipball/3448fdfdf16a41707d6e2a8154d592a88d85c41c", | ||
| 169 | - "reference": "3448fdfdf16a41707d6e2a8154d592a88d85c41c", | ||
| 170 | - "shasum": "" | ||
| 171 | - }, | ||
| 172 | - "require-dev": { | ||
| 173 | - "bower-asset/animate.css": ">=3.5.1,<4.0.0", | ||
| 174 | - "bower-asset/autosize": ">=3.0.15,<4.0.0", | ||
| 175 | - "bower-asset/bootstrap": ">=3.3.7,<4.0.0", | ||
| 176 | - "bower-asset/bootstrap-colorpicker": ">=2.3.3,<3.0.0", | ||
| 177 | - "bower-asset/bootstrap-daterangepicker": "dev-master", | ||
| 178 | - "bower-asset/bootstrap-progressbar": ">=0.9.0,<0.10.0", | ||
| 179 | - "bower-asset/bootstrap-wysiwyg-steveathon": ">=1.0.5,<2.0.0", | ||
| 180 | - "bower-asset/chart.js": ">=2.0.2,<3.0.0", | ||
| 181 | - "bower-asset/cropper": ">=2.3.0,<3.0.0", | ||
| 182 | - "bower-asset/datatables.net": ">=1.10.11,<2.0.0", | ||
| 183 | - "bower-asset/datatables.net-bs": ">=1.10.11,<2.0.0", | ||
| 184 | - "bower-asset/datatables.net-buttons": ">=1.1.2,<2.0.0", | ||
| 185 | - "bower-asset/datatables.net-buttons-bs": ">=1.1.2,<2.0.0", | ||
| 186 | - "bower-asset/datatables.net-fixedheader": ">=3.1.1,<4.0.0", | ||
| 187 | - "bower-asset/datatables.net-fixedheader-bs": ">=3.1.1,<4.0.0", | ||
| 188 | - "bower-asset/datatables.net-keytable": ">=2.1.1,<3.0.0", | ||
| 189 | - "bower-asset/datatables.net-responsive": ">=2.0.2,<3.0.0", | ||
| 190 | - "bower-asset/datatables.net-responsive-bs": ">=2.0.2,<3.0.0", | ||
| 191 | - "bower-asset/datatables.net-scroller": ">=1.4.1,<2.0.0", | ||
| 192 | - "bower-asset/datatables.net-scroller-bs": ">=1.4.1,<2.0.0", | ||
| 193 | - "bower-asset/datejs": ">=1.0.0-RC3,<2.0.0", | ||
| 194 | - "bower-asset/devbridge-autocomplete": ">=1.2.24,<2.0.0", | ||
| 195 | - "bower-asset/dropzone": ">=4.3.0,<5.0.0", | ||
| 196 | - "bower-asset/echarts": ">=3.1.7,<4.0.0", | ||
| 197 | - "bower-asset/fastclick": ">=1.0.6,<2.0.0", | ||
| 198 | - "bower-asset/flot": ">=0.8.3,<0.9.0", | ||
| 199 | - "bower-asset/flot-spline": ">=0.8.2,<0.9.0", | ||
| 200 | - "bower-asset/flot.curvedlines": ">=1.1.1,<2.0.0", | ||
| 201 | - "bower-asset/flot.orderbars": "*", | ||
| 202 | - "bower-asset/fontawesome": ">=4.6.1,<5.0.0", | ||
| 203 | - "bower-asset/fullcalendar": ">=2.6.1,<3.0.0", | ||
| 204 | - "bower-asset/gauge.js": ">=1.2.1,<2.0.0", | ||
| 205 | - "bower-asset/icheck": ">=1.0.2,<2.0.0", | ||
| 206 | - "bower-asset/ionrangeslider": ">=2.1.3,<3.0.0", | ||
| 207 | - "bower-asset/jquery": ">=2.2.3,<3.0.0", | ||
| 208 | - "bower-asset/jquery-knob": ">=1.2.13,<2.0.0", | ||
| 209 | - "bower-asset/jquery-smart-wizard": ">=3.3.1,<4.0.0", | ||
| 210 | - "bower-asset/jquery-sparkline": ">=2.1.3,<3.0.0", | ||
| 211 | - "bower-asset/jquery.easy-pie-chart": ">=2.1.6,<3.0.0", | ||
| 212 | - "bower-asset/jquery.inputmask": ">=3.3.1,<4.0.0", | ||
| 213 | - "bower-asset/jquery.tagsinput": ">=1.3.6,<2.0.0", | ||
| 214 | - "bower-asset/jqvmap": "dev-master", | ||
| 215 | - "bower-asset/jszip": "2.6.0", | ||
| 216 | - "bower-asset/malihu-custom-scrollbar-plugin": ">=3.1.3,<4.0.0", | ||
| 217 | - "bower-asset/morris.js": ">=0.5.1,<0.6.0", | ||
| 218 | - "bower-asset/normalize-css": ">=4.1.1,<5.0.0", | ||
| 219 | - "bower-asset/nprogress": ">=0.2.0,<0.3.0", | ||
| 220 | - "bower-asset/parsleyjs": ">=2.3.10,<3.0.0", | ||
| 221 | - "bower-asset/pdfmake": ">=0.1.20,<0.2.0", | ||
| 222 | - "bower-asset/pnotify": ">=3.0.0,<4.0.0", | ||
| 223 | - "bower-asset/select2": ">=4.0.2,<5.0.0", | ||
| 224 | - "bower-asset/skycons": "*", | ||
| 225 | - "bower-asset/starrr": ">=2.0.0,<3.0.0", | ||
| 226 | - "bower-asset/switchery": ">=0.8.1,<0.9.0", | ||
| 227 | - "bower-asset/validator": ">=1.0.6,<2.0.0" | ||
| 228 | - }, | ||
| 229 | - "type": "bower-asset-library", | ||
| 230 | - "extra": { | ||
| 231 | - "bower-asset-ignore": [ | ||
| 232 | - "**/.*", | ||
| 233 | - "documentation" | ||
| 234 | - ] | ||
| 235 | - }, | ||
| 236 | - "license": [ | ||
| 237 | - "MIT" | ||
| 238 | - ], | ||
| 239 | - "description": "Gentelella Admin is a free to use Bootstrap admin template", | ||
| 240 | - "keywords": [ | ||
| 241 | - "admin", | ||
| 242 | - "backend", | ||
| 243 | - "bootstrap", | ||
| 244 | - "css", | ||
| 245 | - "html", | ||
| 246 | - "js", | ||
| 247 | - "responsive", | ||
| 248 | - "template", | ||
| 249 | - "theme" | ||
| 250 | - ] | ||
| 251 | - }, | ||
| 252 | - { | ||
| 253 | - "name": "bower-asset/icheck", | ||
| 254 | - "version": "1.0.2", | ||
| 255 | - "source": { | ||
| 256 | - "type": "git", | ||
| 257 | - "url": "https://github.com/fronteed/icheck.git", | ||
| 258 | - "reference": "8a6eb37bd7dab1e843c1b630c91c6398ff409d05" | ||
| 259 | - }, | ||
| 260 | - "dist": { | ||
| 261 | - "type": "zip", | ||
| 262 | - "url": "https://api.github.com/repos/fronteed/icheck/zipball/8a6eb37bd7dab1e843c1b630c91c6398ff409d05", | ||
| 263 | - "reference": "8a6eb37bd7dab1e843c1b630c91c6398ff409d05", | ||
| 264 | - "shasum": "" | ||
| 265 | - }, | ||
| 266 | - "require": { | ||
| 267 | - "bower-asset/jquery": ">=1.7" | ||
| 268 | - }, | ||
| 269 | - "type": "bower-asset-library", | ||
| 270 | - "extra": { | ||
| 271 | - "bower-asset-main": [ | ||
| 272 | - "./icheck.min.js" | ||
| 273 | - ], | ||
| 274 | - "bower-asset-ignore": [ | ||
| 275 | - ".gitignore", | ||
| 276 | - "CHANGELOG.md", | ||
| 277 | - "README.md", | ||
| 278 | - "demo/" | ||
| 279 | - ] | ||
| 280 | - }, | ||
| 281 | - "license": [ | ||
| 282 | - "MIT" | ||
| 283 | - ], | ||
| 284 | - "description": "Highly customizable checkboxes and radio buttons (jQuery & Zepto)", | ||
| 285 | - "keywords": [ | ||
| 286 | - "accessibility", | ||
| 287 | - "checkbox", | ||
| 288 | - "checked", | ||
| 289 | - "custom", | ||
| 290 | - "disabled", | ||
| 291 | - "field", | ||
| 292 | - "form", | ||
| 293 | - "icheck", | ||
| 294 | - "indeterminate", | ||
| 295 | - "input", | ||
| 296 | - "radio", | ||
| 297 | - "replacement", | ||
| 298 | - "skins", | ||
| 299 | - "ui" | ||
| 300 | - ] | ||
| 301 | - }, | ||
| 302 | - { | ||
| 303 | - "name": "bower-asset/jquery", | ||
| 304 | - "version": "2.2.4", | ||
| 305 | - "source": { | ||
| 306 | - "type": "git", | ||
| 307 | - "url": "https://github.com/jquery/jquery-dist.git", | ||
| 308 | - "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72" | ||
| 309 | - }, | ||
| 310 | - "dist": { | ||
| 311 | - "type": "zip", | ||
| 312 | - "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/c0185ab7c75aab88762c5aae780b9d83b80eda72", | ||
| 313 | - "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72", | ||
| 314 | - "shasum": "" | ||
| 315 | - }, | ||
| 316 | - "type": "bower-asset-library", | ||
| 317 | - "extra": { | ||
| 318 | - "bower-asset-main": "dist/jquery.js", | ||
| 319 | - "bower-asset-ignore": [ | ||
| 320 | - "package.json" | ||
| 321 | - ] | ||
| 322 | - }, | ||
| 323 | - "license": [ | ||
| 324 | - "MIT" | ||
| 325 | - ], | ||
| 326 | - "keywords": [ | ||
| 327 | - "browser", | ||
| 328 | - "javascript", | ||
| 329 | - "jquery", | ||
| 330 | - "library" | ||
| 331 | - ] | ||
| 332 | - }, | ||
| 333 | - { | ||
| 334 | - "name": "bower-asset/jquery.inputmask", | ||
| 335 | - "version": "3.3.7", | ||
| 336 | - "source": { | ||
| 337 | - "type": "git", | ||
| 338 | - "url": "https://github.com/RobinHerbots/Inputmask.git", | ||
| 339 | - "reference": "9835731cb78cac749734d94a1cb5bd70da4d3b10" | ||
| 340 | - }, | ||
| 341 | - "dist": { | ||
| 342 | - "type": "zip", | ||
| 343 | - "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/9835731cb78cac749734d94a1cb5bd70da4d3b10", | ||
| 344 | - "reference": "9835731cb78cac749734d94a1cb5bd70da4d3b10", | ||
| 345 | - "shasum": "" | ||
| 346 | - }, | ||
| 347 | - "require": { | ||
| 348 | - "bower-asset/jquery": ">=1.7" | ||
| 349 | - }, | ||
| 350 | - "type": "bower-asset-library", | ||
| 351 | - "extra": { | ||
| 352 | - "bower-asset-main": [ | ||
| 353 | - "./dist/inputmask/inputmask.js", | ||
| 354 | - "./dist/inputmask/inputmask.extensions.js", | ||
| 355 | - "./dist/inputmask/inputmask.date.extensions.js", | ||
| 356 | - "./dist/inputmask/inputmask.numeric.extensions.js", | ||
| 357 | - "./dist/inputmask/inputmask.phone.extensions.js", | ||
| 358 | - "./dist/inputmask/jquery.inputmask.js", | ||
| 359 | - "./dist/inputmask/global/document.js", | ||
| 360 | - "./dist/inputmask/global/window.js", | ||
| 361 | - "./dist/inputmask/phone-codes/phone.js", | ||
| 362 | - "./dist/inputmask/phone-codes/phone-be.js", | ||
| 363 | - "./dist/inputmask/phone-codes/phone-nl.js", | ||
| 364 | - "./dist/inputmask/phone-codes/phone-ru.js", | ||
| 365 | - "./dist/inputmask/phone-codes/phone-uk.js", | ||
| 366 | - "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jqlite.js", | ||
| 367 | - "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jquery.js", | ||
| 368 | - "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.js", | ||
| 369 | - "./dist/inputmask/bindings/inputmask.binding.js" | ||
| 370 | - ], | ||
| 371 | - "bower-asset-ignore": [ | ||
| 372 | - "**/*", | ||
| 373 | - "!dist/*", | ||
| 374 | - "!dist/inputmask/*", | ||
| 375 | - "!dist/min/*", | ||
| 376 | - "!dist/min/inputmask/*" | ||
| 377 | - ] | ||
| 378 | - }, | ||
| 379 | - "license": [ | ||
| 380 | - "http://opensource.org/licenses/mit-license.php" | ||
| 381 | - ], | ||
| 382 | - "description": "Inputmask is a javascript library which creates an input mask. Inputmask can run against vanilla javascript, jQuery and jqlite.", | ||
| 383 | - "keywords": [ | ||
| 384 | - "form", | ||
| 385 | - "input", | ||
| 386 | - "inputmask", | ||
| 387 | - "jquery", | ||
| 388 | - "mask", | ||
| 389 | - "plugins" | ||
| 390 | - ] | ||
| 391 | - }, | ||
| 392 | - { | ||
| 393 | - "name": "bower-asset/pnotify", | ||
| 394 | - "version": "2.1.0", | ||
| 395 | - "source": { | ||
| 396 | - "type": "git", | ||
| 397 | - "url": "https://github.com/sciactive/pnotify.git", | ||
| 398 | - "reference": "4ca6d8089ec45997ae7be37efc51f1ddad336933" | ||
| 399 | - }, | ||
| 400 | - "dist": { | ||
| 401 | - "type": "zip", | ||
| 402 | - "url": "https://api.github.com/repos/sciactive/pnotify/zipball/4ca6d8089ec45997ae7be37efc51f1ddad336933", | ||
| 403 | - "reference": "4ca6d8089ec45997ae7be37efc51f1ddad336933", | ||
| 404 | - "shasum": "" | ||
| 405 | - }, | ||
| 406 | - "type": "bower-asset-library", | ||
| 407 | - "extra": { | ||
| 408 | - "bower-asset-main": [ | ||
| 409 | - "src/pnotify.core.js", | ||
| 410 | - "src/pnotify.core.min.js", | ||
| 411 | - "src/pnotify.buttons.js", | ||
| 412 | - "src/pnotify.buttons.min.js", | ||
| 413 | - "src/pnotify.callbacks.js", | ||
| 414 | - "src/pnotify.callbacks.min.js", | ||
| 415 | - "src/pnotify.confirm.js", | ||
| 416 | - "src/pnotify.confirm.min.js", | ||
| 417 | - "src/pnotify.desktop.js", | ||
| 418 | - "src/pnotify.desktop.min.js", | ||
| 419 | - "src/pnotify.history.js", | ||
| 420 | - "src/pnotify.history.min.js", | ||
| 421 | - "src/pnotify.nonblock.js", | ||
| 422 | - "src/pnotify.nonblock.min.js", | ||
| 423 | - "src/pnotify.core.css", | ||
| 424 | - "src/pnotify.core.min.css", | ||
| 425 | - "src/pnotify.buttons.css", | ||
| 426 | - "src/pnotify.buttons.min.css", | ||
| 427 | - "src/pnotify.history.css", | ||
| 428 | - "src/pnotify.history.min.css" | ||
| 429 | - ], | ||
| 430 | - "bower-asset-ignore": [ | ||
| 431 | - "build-cache/", | ||
| 432 | - "build-tools/", | ||
| 433 | - "includes/", | ||
| 434 | - "oxygen/", | ||
| 435 | - "devnote*.*", | ||
| 436 | - "index.html", | ||
| 437 | - "README.md", | ||
| 438 | - "testing.html", | ||
| 439 | - "buildcustom.php", | ||
| 440 | - "package.json", | ||
| 441 | - "src/pnotify.tooltip.js", | ||
| 442 | - "src/pnotify.tooltip.min.js", | ||
| 443 | - "src/pnotify.mobile.js", | ||
| 444 | - "src/pnotify.mobile.min.js" | ||
| 445 | - ] | ||
| 446 | - }, | ||
| 447 | - "license": [ | ||
| 448 | - "GPL-3.0", | ||
| 449 | - "LGPL-3.0", | ||
| 450 | - "MPL-1.1" | ||
| 451 | - ], | ||
| 452 | - "description": "JavaScript notification plugin." | ||
| 453 | - }, | ||
| 454 | - { | ||
| 455 | - "name": "bower-asset/punycode", | ||
| 456 | - "version": "v1.3.2", | ||
| 457 | - "source": { | ||
| 458 | - "type": "git", | ||
| 459 | - "url": "https://github.com/bestiejs/punycode.js.git", | ||
| 460 | - "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3" | ||
| 461 | - }, | ||
| 462 | - "dist": { | ||
| 463 | - "type": "zip", | ||
| 464 | - "url": "https://api.github.com/repos/bestiejs/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3", | ||
| 465 | - "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3", | ||
| 466 | - "shasum": "" | ||
| 467 | - }, | ||
| 468 | - "type": "bower-asset-library", | ||
| 469 | - "extra": { | ||
| 470 | - "bower-asset-main": "punycode.js", | ||
| 471 | - "bower-asset-ignore": [ | ||
| 472 | - "coverage", | ||
| 473 | - "tests", | ||
| 474 | - ".*", | ||
| 475 | - "component.json", | ||
| 476 | - "Gruntfile.js", | ||
| 477 | - "node_modules", | ||
| 478 | - "package.json" | ||
| 479 | - ] | ||
| 480 | - } | ||
| 481 | - }, | ||
| 482 | - { | ||
| 483 | - "name": "bower-asset/yii2-pjax", | ||
| 484 | - "version": "v2.0.6", | ||
| 485 | - "source": { | ||
| 486 | - "type": "git", | ||
| 487 | - "url": "https://github.com/yiisoft/jquery-pjax.git", | ||
| 488 | - "reference": "60728da6ade5879e807a49ce59ef9a72039b8978" | ||
| 489 | - }, | ||
| 490 | - "dist": { | ||
| 491 | - "type": "zip", | ||
| 492 | - "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/60728da6ade5879e807a49ce59ef9a72039b8978", | ||
| 493 | - "reference": "60728da6ade5879e807a49ce59ef9a72039b8978", | ||
| 494 | - "shasum": "" | ||
| 495 | - }, | ||
| 496 | - "require": { | ||
| 497 | - "bower-asset/jquery": ">=1.8" | ||
| 498 | - }, | ||
| 499 | - "type": "bower-asset-library", | ||
| 500 | - "extra": { | ||
| 501 | - "bower-asset-main": "./jquery.pjax.js", | ||
| 502 | - "bower-asset-ignore": [ | ||
| 503 | - ".travis.yml", | ||
| 504 | - "Gemfile", | ||
| 505 | - "Gemfile.lock", | ||
| 506 | - "CONTRIBUTING.md", | ||
| 507 | - "vendor/", | ||
| 508 | - "script/", | ||
| 509 | - "test/" | ||
| 510 | - ] | ||
| 511 | - }, | ||
| 512 | - "license": [ | ||
| 513 | - "MIT" | ||
| 514 | - ] | ||
| 515 | - }, | ||
| 516 | - { | ||
| 517 | - "name": "cebe/markdown", | ||
| 518 | - "version": "1.1.1", | ||
| 519 | - "source": { | ||
| 520 | - "type": "git", | ||
| 521 | - "url": "https://github.com/cebe/markdown.git", | ||
| 522 | - "reference": "c30eb5e01fe021cc5bba2f9ee0eeef96d4931166" | ||
| 523 | - }, | ||
| 524 | - "dist": { | ||
| 525 | - "type": "zip", | ||
| 526 | - "url": "https://api.github.com/repos/cebe/markdown/zipball/c30eb5e01fe021cc5bba2f9ee0eeef96d4931166", | ||
| 527 | - "reference": "c30eb5e01fe021cc5bba2f9ee0eeef96d4931166", | ||
| 528 | - "shasum": "" | ||
| 529 | - }, | ||
| 530 | - "require": { | ||
| 531 | - "lib-pcre": "*", | ||
| 532 | - "php": ">=5.4.0" | ||
| 533 | - }, | ||
| 534 | - "require-dev": { | ||
| 535 | - "cebe/indent": "*", | ||
| 536 | - "facebook/xhprof": "*@dev", | ||
| 537 | - "phpunit/phpunit": "4.1.*" | ||
| 538 | - }, | ||
| 539 | - "bin": [ | ||
| 540 | - "bin/markdown" | ||
| 541 | - ], | ||
| 542 | - "type": "library", | ||
| 543 | - "extra": { | ||
| 544 | - "branch-alias": { | ||
| 545 | - "dev-master": "1.1.x-dev" | ||
| 546 | - } | ||
| 547 | - }, | ||
| 548 | - "autoload": { | ||
| 549 | - "psr-4": { | ||
| 550 | - "cebe\\markdown\\": "" | ||
| 551 | - } | ||
| 552 | - }, | ||
| 553 | - "notification-url": "https://packagist.org/downloads/", | ||
| 554 | - "license": [ | ||
| 555 | - "MIT" | ||
| 556 | - ], | ||
| 557 | - "authors": [ | ||
| 558 | - { | ||
| 559 | - "name": "Carsten Brandt", | ||
| 560 | - "email": "mail@cebe.cc", | ||
| 561 | - "homepage": "http://cebe.cc/", | ||
| 562 | - "role": "Creator" | ||
| 563 | - } | ||
| 564 | - ], | ||
| 565 | - "description": "A super fast, highly extensible markdown parser for PHP", | ||
| 566 | - "homepage": "https://github.com/cebe/markdown#readme", | ||
| 567 | - "keywords": [ | ||
| 568 | - "extensible", | ||
| 569 | - "fast", | ||
| 570 | - "gfm", | ||
| 571 | - "markdown", | ||
| 572 | - "markdown-extra" | ||
| 573 | - ], | ||
| 574 | - "time": "2016-09-14T20:40:20+00:00" | ||
| 575 | - }, | ||
| 576 | - { | ||
| 577 | - "name": "container-interop/container-interop", | ||
| 578 | - "version": "1.2.0", | ||
| 579 | - "source": { | ||
| 580 | - "type": "git", | ||
| 581 | - "url": "https://github.com/container-interop/container-interop.git", | ||
| 582 | - "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8" | ||
| 583 | - }, | ||
| 584 | - "dist": { | ||
| 585 | - "type": "zip", | ||
| 586 | - "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8", | ||
| 587 | - "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8", | ||
| 588 | - "shasum": "" | ||
| 589 | - }, | ||
| 590 | - "require": { | ||
| 591 | - "psr/container": "^1.0" | ||
| 592 | - }, | ||
| 593 | - "type": "library", | ||
| 594 | - "autoload": { | ||
| 595 | - "psr-4": { | ||
| 596 | - "Interop\\Container\\": "src/Interop/Container/" | ||
| 597 | - } | ||
| 598 | - }, | ||
| 599 | - "notification-url": "https://packagist.org/downloads/", | ||
| 600 | - "license": [ | ||
| 601 | - "MIT" | ||
| 602 | - ], | ||
| 603 | - "description": "Promoting the interoperability of container objects (DIC, SL, etc.)", | ||
| 604 | - "homepage": "https://github.com/container-interop/container-interop", | ||
| 605 | - "time": "2017-02-14T19:40:03+00:00" | ||
| 606 | - }, | ||
| 607 | - { | ||
| 608 | - "name": "darkaonline/ripcord", | ||
| 609 | - "version": "v0.1.4", | ||
| 610 | - "source": { | ||
| 611 | - "type": "git", | ||
| 612 | - "url": "https://github.com/DarkaOnLine/Ripcord.git", | ||
| 613 | - "reference": "b485483a931d68f0935933ad563e3a164e873df3" | ||
| 614 | - }, | ||
| 615 | - "dist": { | ||
| 616 | - "type": "zip", | ||
| 617 | - "url": "https://api.github.com/repos/DarkaOnLine/Ripcord/zipball/b485483a931d68f0935933ad563e3a164e873df3", | ||
| 618 | - "reference": "b485483a931d68f0935933ad563e3a164e873df3", | ||
| 619 | - "shasum": "" | ||
| 620 | - }, | ||
| 621 | - "require": { | ||
| 622 | - "php": ">=5.4" | ||
| 623 | - }, | ||
| 624 | - "type": "library", | ||
| 625 | - "autoload": { | ||
| 626 | - "psr-4": { | ||
| 627 | - "Ripcord\\": "src/Ripcord" | ||
| 628 | - } | ||
| 629 | - }, | ||
| 630 | - "notification-url": "https://packagist.org/downloads/", | ||
| 631 | - "license": [ | ||
| 632 | - "MIT" | ||
| 633 | - ], | ||
| 634 | - "authors": [ | ||
| 635 | - { | ||
| 636 | - "name": "Darius Matulionis", | ||
| 637 | - "email": "darius@matulionis.lt" | ||
| 638 | - } | ||
| 639 | - ], | ||
| 640 | - "description": "RPC client and server around PHP's xmlrpc library", | ||
| 641 | - "keywords": [ | ||
| 642 | - "rpc", | ||
| 643 | - "xml", | ||
| 644 | - "xmlrpc" | ||
| 645 | - ], | ||
| 646 | - "time": "2017-05-24T05:49:36+00:00" | ||
| 647 | - }, | ||
| 648 | - { | ||
| 649 | - "name": "ezyang/htmlpurifier", | ||
| 650 | - "version": "v4.9.3", | ||
| 651 | - "source": { | ||
| 652 | - "type": "git", | ||
| 653 | - "url": "https://github.com/ezyang/htmlpurifier.git", | ||
| 654 | - "reference": "95e1bae3182efc0f3422896a3236e991049dac69" | ||
| 655 | - }, | ||
| 656 | - "dist": { | ||
| 657 | - "type": "zip", | ||
| 658 | - "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/95e1bae3182efc0f3422896a3236e991049dac69", | ||
| 659 | - "reference": "95e1bae3182efc0f3422896a3236e991049dac69", | ||
| 660 | - "shasum": "" | ||
| 661 | - }, | ||
| 662 | - "require": { | ||
| 663 | - "php": ">=5.2" | ||
| 664 | - }, | ||
| 665 | - "require-dev": { | ||
| 666 | - "simpletest/simpletest": "^1.1" | ||
| 667 | - }, | ||
| 668 | - "type": "library", | ||
| 669 | - "autoload": { | ||
| 670 | - "psr-0": { | ||
| 671 | - "HTMLPurifier": "library/" | ||
| 672 | - }, | ||
| 673 | - "files": [ | ||
| 674 | - "library/HTMLPurifier.composer.php" | ||
| 675 | - ] | ||
| 676 | - }, | ||
| 677 | - "notification-url": "https://packagist.org/downloads/", | ||
| 678 | - "license": [ | ||
| 679 | - "LGPL" | ||
| 680 | - ], | ||
| 681 | - "authors": [ | ||
| 682 | - { | ||
| 683 | - "name": "Edward Z. Yang", | ||
| 684 | - "email": "admin@htmlpurifier.org", | ||
| 685 | - "homepage": "http://ezyang.com" | ||
| 686 | - } | ||
| 687 | - ], | ||
| 688 | - "description": "Standards compliant HTML filter written in PHP", | ||
| 689 | - "homepage": "http://htmlpurifier.org/", | ||
| 690 | - "keywords": [ | ||
| 691 | - "html" | ||
| 692 | - ], | ||
| 693 | - "time": "2017-06-03T02:28:16+00:00" | ||
| 694 | - }, | ||
| 695 | - { | ||
| 696 | - "name": "firebase/php-jwt", | ||
| 697 | - "version": "v4.0.0", | ||
| 698 | - "source": { | ||
| 699 | - "type": "git", | ||
| 700 | - "url": "https://github.com/firebase/php-jwt.git", | ||
| 701 | - "reference": "dccf163dc8ed7ed6a00afc06c51ee5186a428d35" | ||
| 702 | - }, | ||
| 703 | - "dist": { | ||
| 704 | - "type": "zip", | ||
| 705 | - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/dccf163dc8ed7ed6a00afc06c51ee5186a428d35", | ||
| 706 | - "reference": "dccf163dc8ed7ed6a00afc06c51ee5186a428d35", | ||
| 707 | - "shasum": "" | ||
| 708 | - }, | ||
| 709 | - "require": { | ||
| 710 | - "php": ">=5.3.0" | ||
| 711 | - }, | ||
| 712 | - "type": "library", | ||
| 713 | - "autoload": { | ||
| 714 | - "psr-4": { | ||
| 715 | - "Firebase\\JWT\\": "src" | ||
| 716 | - } | ||
| 717 | - }, | ||
| 718 | - "notification-url": "https://packagist.org/downloads/", | ||
| 719 | - "license": [ | ||
| 720 | - "BSD-3-Clause" | ||
| 721 | - ], | ||
| 722 | - "authors": [ | ||
| 723 | - { | ||
| 724 | - "name": "Neuman Vong", | ||
| 725 | - "email": "neuman+pear@twilio.com", | ||
| 726 | - "role": "Developer" | ||
| 727 | - }, | ||
| 728 | - { | ||
| 729 | - "name": "Anant Narayanan", | ||
| 730 | - "email": "anant@php.net", | ||
| 731 | - "role": "Developer" | ||
| 732 | - } | ||
| 733 | - ], | ||
| 734 | - "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.", | ||
| 735 | - "homepage": "https://github.com/firebase/php-jwt", | ||
| 736 | - "time": "2016-07-18T04:51:16+00:00" | ||
| 737 | - }, | ||
| 738 | - { | ||
| 739 | - "name": "fortawesome/font-awesome", | ||
| 740 | - "version": "v4.7.0", | ||
| 741 | - "source": { | ||
| 742 | - "type": "git", | ||
| 743 | - "url": "https://github.com/FortAwesome/Font-Awesome.git", | ||
| 744 | - "reference": "a8386aae19e200ddb0f6845b5feeee5eb7013687" | ||
| 745 | - }, | ||
| 746 | - "dist": { | ||
| 747 | - "type": "zip", | ||
| 748 | - "url": "https://api.github.com/repos/FortAwesome/Font-Awesome/zipball/a8386aae19e200ddb0f6845b5feeee5eb7013687", | ||
| 749 | - "reference": "a8386aae19e200ddb0f6845b5feeee5eb7013687", | ||
| 750 | - "shasum": "" | ||
| 751 | - }, | ||
| 752 | - "require-dev": { | ||
| 753 | - "jekyll": "1.0.2", | ||
| 754 | - "lessc": "1.4.2" | ||
| 755 | - }, | ||
| 756 | - "type": "library", | ||
| 757 | - "extra": { | ||
| 758 | - "branch-alias": { | ||
| 759 | - "dev-master": "4.6.x-dev" | ||
| 760 | - } | ||
| 761 | - }, | ||
| 762 | - "notification-url": "https://packagist.org/downloads/", | ||
| 763 | - "license": [ | ||
| 764 | - "OFL-1.1", | ||
| 765 | - "MIT" | ||
| 766 | - ], | ||
| 767 | - "authors": [ | ||
| 768 | - { | ||
| 769 | - "name": "Dave Gandy", | ||
| 770 | - "email": "dave@fontawesome.io", | ||
| 771 | - "homepage": "http://twitter.com/davegandy", | ||
| 772 | - "role": "Developer" | ||
| 773 | - } | ||
| 774 | - ], | ||
| 775 | - "description": "The iconic font and CSS framework", | ||
| 776 | - "homepage": "http://fontawesome.io/", | ||
| 777 | - "keywords": [ | ||
| 778 | - "FontAwesome", | ||
| 779 | - "awesome", | ||
| 780 | - "bootstrap", | ||
| 781 | - "font", | ||
| 782 | - "icon" | ||
| 783 | - ], | ||
| 784 | - "time": "2016-10-24T15:52:54+00:00" | ||
| 785 | - }, | ||
| 786 | - { | ||
| 787 | - "name": "google/apiclient", | ||
| 788 | - "version": "v2.1.3", | ||
| 789 | - "source": { | ||
| 790 | - "type": "git", | ||
| 791 | - "url": "https://github.com/google/google-api-php-client.git", | ||
| 792 | - "reference": "43996f09df274158fd04fce98e8a82effe5f3717" | ||
| 793 | - }, | ||
| 794 | - "dist": { | ||
| 795 | - "type": "zip", | ||
| 796 | - "url": "https://api.github.com/repos/google/google-api-php-client/zipball/43996f09df274158fd04fce98e8a82effe5f3717", | ||
| 797 | - "reference": "43996f09df274158fd04fce98e8a82effe5f3717", | ||
| 798 | - "shasum": "" | ||
| 799 | - }, | ||
| 800 | - "require": { | ||
| 801 | - "firebase/php-jwt": "~2.0|~3.0|~4.0", | ||
| 802 | - "google/apiclient-services": "^0.11", | ||
| 803 | - "google/auth": "^0.11", | ||
| 804 | - "guzzlehttp/guzzle": "~5.2|~6.0", | ||
| 805 | - "guzzlehttp/psr7": "^1.2", | ||
| 806 | - "monolog/monolog": "^1.17", | ||
| 807 | - "php": ">=5.4", | ||
| 808 | - "phpseclib/phpseclib": "~0.3.10|~2.0" | ||
| 809 | - }, | ||
| 810 | - "require-dev": { | ||
| 811 | - "cache/filesystem-adapter": "^0.3.2", | ||
| 812 | - "phpunit/phpunit": "~4", | ||
| 813 | - "squizlabs/php_codesniffer": "~2.3", | ||
| 814 | - "symfony/css-selector": "~2.1", | ||
| 815 | - "symfony/dom-crawler": "~2.1" | ||
| 816 | - }, | ||
| 817 | - "suggest": { | ||
| 818 | - "cache/filesystem-adapter": "For caching certs and tokens (using Google_Client::setCache)" | ||
| 819 | - }, | ||
| 820 | - "type": "library", | ||
| 821 | - "extra": { | ||
| 822 | - "branch-alias": { | ||
| 823 | - "dev-master": "2.x-dev" | ||
| 824 | - } | ||
| 825 | - }, | ||
| 826 | - "autoload": { | ||
| 827 | - "psr-0": { | ||
| 828 | - "Google_": "src/" | ||
| 829 | - }, | ||
| 830 | - "classmap": [ | ||
| 831 | - "src/Google/Service/" | ||
| 832 | - ] | ||
| 833 | - }, | ||
| 834 | - "notification-url": "https://packagist.org/downloads/", | ||
| 835 | - "license": [ | ||
| 836 | - "Apache-2.0" | ||
| 837 | - ], | ||
| 838 | - "description": "Client library for Google APIs", | ||
| 839 | - "homepage": "http://developers.google.com/api-client-library/php", | ||
| 840 | - "keywords": [ | ||
| 841 | - "google" | ||
| 842 | - ], | ||
| 843 | - "time": "2017-03-22T18:32:04+00:00" | ||
| 844 | - }, | ||
| 845 | - { | ||
| 846 | - "name": "google/apiclient-services", | ||
| 847 | - "version": "v0.11", | ||
| 848 | - "source": { | ||
| 849 | - "type": "git", | ||
| 850 | - "url": "https://github.com/google/google-api-php-client-services.git", | ||
| 851 | - "reference": "48c554aee06f2fd5700d7bdfa4fa6b82d184eb52" | ||
| 852 | - }, | ||
| 853 | - "dist": { | ||
| 854 | - "type": "zip", | ||
| 855 | - "url": "https://api.github.com/repos/google/google-api-php-client-services/zipball/48c554aee06f2fd5700d7bdfa4fa6b82d184eb52", | ||
| 856 | - "reference": "48c554aee06f2fd5700d7bdfa4fa6b82d184eb52", | ||
| 857 | - "shasum": "" | ||
| 858 | - }, | ||
| 859 | - "require": { | ||
| 860 | - "php": ">=5.4" | ||
| 861 | - }, | ||
| 862 | - "require-dev": { | ||
| 863 | - "phpunit/phpunit": "~4.8" | ||
| 864 | - }, | ||
| 865 | - "type": "library", | ||
| 866 | - "autoload": { | ||
| 867 | - "psr-0": { | ||
| 868 | - "Google_Service_": "src" | ||
| 869 | - } | ||
| 870 | - }, | ||
| 871 | - "notification-url": "https://packagist.org/downloads/", | ||
| 872 | - "license": [ | ||
| 873 | - "Apache-2.0" | ||
| 874 | - ], | ||
| 875 | - "description": "Client library for Google APIs", | ||
| 876 | - "homepage": "http://developers.google.com/api-client-library/php", | ||
| 877 | - "keywords": [ | ||
| 878 | - "google" | ||
| 879 | - ], | ||
| 880 | - "time": "2017-03-13T17:40:44+00:00" | ||
| 881 | - }, | ||
| 882 | - { | ||
| 883 | - "name": "google/auth", | ||
| 884 | - "version": "v0.11.1", | ||
| 885 | - "source": { | ||
| 886 | - "type": "git", | ||
| 887 | - "url": "https://github.com/google/google-auth-library-php.git", | ||
| 888 | - "reference": "a240674b08a09949fd5597f7590b3ed83663a12d" | ||
| 889 | - }, | ||
| 890 | - "dist": { | ||
| 891 | - "type": "zip", | ||
| 892 | - "url": "https://api.github.com/repos/google/google-auth-library-php/zipball/a240674b08a09949fd5597f7590b3ed83663a12d", | ||
| 893 | - "reference": "a240674b08a09949fd5597f7590b3ed83663a12d", | ||
| 894 | - "shasum": "" | ||
| 895 | - }, | ||
| 896 | - "require": { | ||
| 897 | - "firebase/php-jwt": "~2.0|~3.0|~4.0", | ||
| 898 | - "guzzlehttp/guzzle": "~5.3|~6.0", | ||
| 899 | - "guzzlehttp/psr7": "~1.2", | ||
| 900 | - "php": ">=5.4", | ||
| 901 | - "psr/cache": "^1.0", | ||
| 902 | - "psr/http-message": "^1.0" | ||
| 903 | - }, | ||
| 904 | - "require-dev": { | ||
| 905 | - "friendsofphp/php-cs-fixer": "^1.11", | ||
| 906 | - "phpunit/phpunit": "3.7.*" | ||
| 907 | - }, | ||
| 908 | - "type": "library", | ||
| 909 | - "autoload": { | ||
| 910 | - "classmap": [ | ||
| 911 | - "src/" | ||
| 912 | - ], | ||
| 913 | - "psr-4": { | ||
| 914 | - "Google\\Auth\\": "src" | ||
| 915 | - } | ||
| 916 | - }, | ||
| 917 | - "notification-url": "https://packagist.org/downloads/", | ||
| 918 | - "license": [ | ||
| 919 | - "Apache-2.0" | ||
| 920 | - ], | ||
| 921 | - "description": "Google Auth Library for PHP", | ||
| 922 | - "homepage": "http://github.com/google/google-auth-library-php", | ||
| 923 | - "keywords": [ | ||
| 924 | - "Authentication", | ||
| 925 | - "google", | ||
| 926 | - "oauth2" | ||
| 927 | - ], | ||
| 928 | - "time": "2016-11-02T14:59:14+00:00" | ||
| 929 | - }, | ||
| 930 | - { | ||
| 931 | - "name": "guzzlehttp/guzzle", | ||
| 932 | - "version": "6.2.3", | ||
| 933 | - "source": { | ||
| 934 | - "type": "git", | ||
| 935 | - "url": "https://github.com/guzzle/guzzle.git", | ||
| 936 | - "reference": "8d6c6cc55186db87b7dc5009827429ba4e9dc006" | ||
| 937 | - }, | ||
| 938 | - "dist": { | ||
| 939 | - "type": "zip", | ||
| 940 | - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/8d6c6cc55186db87b7dc5009827429ba4e9dc006", | ||
| 941 | - "reference": "8d6c6cc55186db87b7dc5009827429ba4e9dc006", | ||
| 942 | - "shasum": "" | ||
| 943 | - }, | ||
| 944 | - "require": { | ||
| 945 | - "guzzlehttp/promises": "^1.0", | ||
| 946 | - "guzzlehttp/psr7": "^1.4", | ||
| 947 | - "php": ">=5.5" | ||
| 948 | - }, | ||
| 949 | - "require-dev": { | ||
| 950 | - "ext-curl": "*", | ||
| 951 | - "phpunit/phpunit": "^4.0", | ||
| 952 | - "psr/log": "^1.0" | ||
| 953 | - }, | ||
| 954 | - "type": "library", | ||
| 955 | - "extra": { | ||
| 956 | - "branch-alias": { | ||
| 957 | - "dev-master": "6.2-dev" | ||
| 958 | - } | ||
| 959 | - }, | ||
| 960 | - "autoload": { | ||
| 961 | - "files": [ | ||
| 962 | - "src/functions_include.php" | ||
| 963 | - ], | ||
| 964 | - "psr-4": { | ||
| 965 | - "GuzzleHttp\\": "src/" | ||
| 966 | - } | ||
| 967 | - }, | ||
| 968 | - "notification-url": "https://packagist.org/downloads/", | ||
| 969 | - "license": [ | ||
| 970 | - "MIT" | ||
| 971 | - ], | ||
| 972 | - "authors": [ | ||
| 973 | - { | ||
| 974 | - "name": "Michael Dowling", | ||
| 975 | - "email": "mtdowling@gmail.com", | ||
| 976 | - "homepage": "https://github.com/mtdowling" | ||
| 977 | - } | ||
| 978 | - ], | ||
| 979 | - "description": "Guzzle is a PHP HTTP client library", | ||
| 980 | - "homepage": "http://guzzlephp.org/", | ||
| 981 | - "keywords": [ | ||
| 982 | - "client", | ||
| 983 | - "curl", | ||
| 984 | - "framework", | ||
| 985 | - "http", | ||
| 986 | - "http client", | ||
| 987 | - "rest", | ||
| 988 | - "web service" | ||
| 989 | - ], | ||
| 990 | - "time": "2017-02-28T22:50:30+00:00" | ||
| 991 | - }, | ||
| 992 | - { | ||
| 993 | - "name": "guzzlehttp/promises", | ||
| 994 | - "version": "v1.3.1", | ||
| 995 | - "source": { | ||
| 996 | - "type": "git", | ||
| 997 | - "url": "https://github.com/guzzle/promises.git", | ||
| 998 | - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" | ||
| 999 | - }, | ||
| 1000 | - "dist": { | ||
| 1001 | - "type": "zip", | ||
| 1002 | - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", | ||
| 1003 | - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", | ||
| 1004 | - "shasum": "" | ||
| 1005 | - }, | ||
| 1006 | - "require": { | ||
| 1007 | - "php": ">=5.5.0" | ||
| 1008 | - }, | ||
| 1009 | - "require-dev": { | ||
| 1010 | - "phpunit/phpunit": "^4.0" | ||
| 1011 | - }, | ||
| 1012 | - "type": "library", | ||
| 1013 | - "extra": { | ||
| 1014 | - "branch-alias": { | ||
| 1015 | - "dev-master": "1.4-dev" | ||
| 1016 | - } | ||
| 1017 | - }, | ||
| 1018 | - "autoload": { | ||
| 1019 | - "psr-4": { | ||
| 1020 | - "GuzzleHttp\\Promise\\": "src/" | ||
| 1021 | - }, | ||
| 1022 | - "files": [ | ||
| 1023 | - "src/functions_include.php" | ||
| 1024 | - ] | ||
| 1025 | - }, | ||
| 1026 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1027 | - "license": [ | ||
| 1028 | - "MIT" | ||
| 1029 | - ], | ||
| 1030 | - "authors": [ | ||
| 1031 | - { | ||
| 1032 | - "name": "Michael Dowling", | ||
| 1033 | - "email": "mtdowling@gmail.com", | ||
| 1034 | - "homepage": "https://github.com/mtdowling" | ||
| 1035 | - } | ||
| 1036 | - ], | ||
| 1037 | - "description": "Guzzle promises library", | ||
| 1038 | - "keywords": [ | ||
| 1039 | - "promise" | ||
| 1040 | - ], | ||
| 1041 | - "time": "2016-12-20T10:07:11+00:00" | ||
| 1042 | - }, | ||
| 1043 | - { | ||
| 1044 | - "name": "guzzlehttp/psr7", | ||
| 1045 | - "version": "1.4.2", | ||
| 1046 | - "source": { | ||
| 1047 | - "type": "git", | ||
| 1048 | - "url": "https://github.com/guzzle/psr7.git", | ||
| 1049 | - "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c" | ||
| 1050 | - }, | ||
| 1051 | - "dist": { | ||
| 1052 | - "type": "zip", | ||
| 1053 | - "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c", | ||
| 1054 | - "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c", | ||
| 1055 | - "shasum": "" | ||
| 1056 | - }, | ||
| 1057 | - "require": { | ||
| 1058 | - "php": ">=5.4.0", | ||
| 1059 | - "psr/http-message": "~1.0" | ||
| 1060 | - }, | ||
| 1061 | - "provide": { | ||
| 1062 | - "psr/http-message-implementation": "1.0" | ||
| 1063 | - }, | ||
| 1064 | - "require-dev": { | ||
| 1065 | - "phpunit/phpunit": "~4.0" | ||
| 1066 | - }, | ||
| 1067 | - "type": "library", | ||
| 1068 | - "extra": { | ||
| 1069 | - "branch-alias": { | ||
| 1070 | - "dev-master": "1.4-dev" | ||
| 1071 | - } | ||
| 1072 | - }, | ||
| 1073 | - "autoload": { | ||
| 1074 | - "psr-4": { | ||
| 1075 | - "GuzzleHttp\\Psr7\\": "src/" | ||
| 1076 | - }, | ||
| 1077 | - "files": [ | ||
| 1078 | - "src/functions_include.php" | ||
| 1079 | - ] | ||
| 1080 | - }, | ||
| 1081 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1082 | - "license": [ | ||
| 1083 | - "MIT" | ||
| 1084 | - ], | ||
| 1085 | - "authors": [ | ||
| 1086 | - { | ||
| 1087 | - "name": "Michael Dowling", | ||
| 1088 | - "email": "mtdowling@gmail.com", | ||
| 1089 | - "homepage": "https://github.com/mtdowling" | ||
| 1090 | - }, | ||
| 1091 | - { | ||
| 1092 | - "name": "Tobias Schultze", | ||
| 1093 | - "homepage": "https://github.com/Tobion" | ||
| 1094 | - } | ||
| 1095 | - ], | ||
| 1096 | - "description": "PSR-7 message implementation that also provides common utility methods", | ||
| 1097 | - "keywords": [ | ||
| 1098 | - "http", | ||
| 1099 | - "message", | ||
| 1100 | - "request", | ||
| 1101 | - "response", | ||
| 1102 | - "stream", | ||
| 1103 | - "uri", | ||
| 1104 | - "url" | ||
| 1105 | - ], | ||
| 1106 | - "time": "2017-03-20T17:10:46+00:00" | ||
| 1107 | - }, | ||
| 1108 | - { | ||
| 1109 | - "name": "hiqdev/yii2-asset-icheck", | ||
| 1110 | - "version": "1.0.2.5", | ||
| 1111 | - "source": { | ||
| 1112 | - "type": "git", | ||
| 1113 | - "url": "https://github.com/hiqdev/yii2-asset-icheck.git", | ||
| 1114 | - "reference": "9dc8ea8e854f27bcff59198f8815da80dd696d18" | ||
| 1115 | - }, | ||
| 1116 | - "dist": { | ||
| 1117 | - "type": "zip", | ||
| 1118 | - "url": "https://api.github.com/repos/hiqdev/yii2-asset-icheck/zipball/9dc8ea8e854f27bcff59198f8815da80dd696d18", | ||
| 1119 | - "reference": "9dc8ea8e854f27bcff59198f8815da80dd696d18", | ||
| 1120 | - "shasum": "" | ||
| 1121 | - }, | ||
| 1122 | - "require": { | ||
| 1123 | - "bower-asset/icheck": "1.0.2", | ||
| 1124 | - "yiisoft/yii2": "~2.0" | ||
| 1125 | - }, | ||
| 1126 | - "require-dev": { | ||
| 1127 | - "hiqdev/composer-asset-plugin": "*@dev" | ||
| 1128 | - }, | ||
| 1129 | - "type": "yii2-extension", | ||
| 1130 | - "extra": { | ||
| 1131 | - "bower-dependencies": { | ||
| 1132 | - "icheck": "1.0.2" | ||
| 1133 | - } | ||
| 1134 | - }, | ||
| 1135 | - "autoload": { | ||
| 1136 | - "psr-4": { | ||
| 1137 | - "hiqdev\\assets\\icheck\\": "src" | ||
| 1138 | - } | ||
| 1139 | - }, | ||
| 1140 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1141 | - "license": [ | ||
| 1142 | - "BSD-3-Clause" | ||
| 1143 | - ], | ||
| 1144 | - "authors": [ | ||
| 1145 | - { | ||
| 1146 | - "name": "Dmitry Naumenko", | ||
| 1147 | - "email": "silverfire@hiqdev.com", | ||
| 1148 | - "homepage": "http://silverfire.me/", | ||
| 1149 | - "role": "Lead backend developer" | ||
| 1150 | - }, | ||
| 1151 | - { | ||
| 1152 | - "name": "Andrii Vasyliev", | ||
| 1153 | - "email": "sol@hiqdev.com", | ||
| 1154 | - "homepage": "http://hipanel.com/", | ||
| 1155 | - "role": "Project lead" | ||
| 1156 | - }, | ||
| 1157 | - { | ||
| 1158 | - "name": "Andrey Klochok", | ||
| 1159 | - "email": "tafid@hiqdev.com", | ||
| 1160 | - "homepage": "http://hiqdev.com/", | ||
| 1161 | - "role": "Lead frontend developer" | ||
| 1162 | - }, | ||
| 1163 | - { | ||
| 1164 | - "name": "Yuriy Myronchuk", | ||
| 1165 | - "email": "bladeroot@hiqdev.com", | ||
| 1166 | - "homepage": "http://hiqdev.com/", | ||
| 1167 | - "role": "QA Lead" | ||
| 1168 | - } | ||
| 1169 | - ], | ||
| 1170 | - "description": "Yii2 asset for bower iCheck", | ||
| 1171 | - "homepage": "https://github.com/hiqdev/yii2-asset-icheck", | ||
| 1172 | - "keywords": [ | ||
| 1173 | - "asset", | ||
| 1174 | - "extension", | ||
| 1175 | - "iCheck", | ||
| 1176 | - "yii2" | ||
| 1177 | - ], | ||
| 1178 | - "time": "2016-03-30T10:59:26+00:00" | ||
| 1179 | - }, | ||
| 1180 | - { | ||
| 1181 | - "name": "hiqdev/yii2-asset-pnotify", | ||
| 1182 | - "version": "2.1.0", | ||
| 1183 | - "source": { | ||
| 1184 | - "type": "git", | ||
| 1185 | - "url": "https://github.com/hiqdev/yii2-asset-pnotify.git", | ||
| 1186 | - "reference": "d5bfa39fba84741523238e53b85ef7c2f37b789f" | ||
| 1187 | - }, | ||
| 1188 | - "dist": { | ||
| 1189 | - "type": "zip", | ||
| 1190 | - "url": "https://api.github.com/repos/hiqdev/yii2-asset-pnotify/zipball/d5bfa39fba84741523238e53b85ef7c2f37b789f", | ||
| 1191 | - "reference": "d5bfa39fba84741523238e53b85ef7c2f37b789f", | ||
| 1192 | - "shasum": "" | ||
| 1193 | - }, | ||
| 1194 | - "require": { | ||
| 1195 | - "bower-asset/pnotify": "2.1.0" | ||
| 1196 | - }, | ||
| 1197 | - "type": "package", | ||
| 1198 | - "autoload": { | ||
| 1199 | - "psr-4": { | ||
| 1200 | - "hiqdev\\assets\\pnotify\\": "src" | ||
| 1201 | - } | ||
| 1202 | - }, | ||
| 1203 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1204 | - "license": [ | ||
| 1205 | - "BSD-3-Clause" | ||
| 1206 | - ], | ||
| 1207 | - "authors": [ | ||
| 1208 | - { | ||
| 1209 | - "name": "Andrii Vasyliev", | ||
| 1210 | - "email": "sol@hiqdev.com", | ||
| 1211 | - "homepage": "https://hipanel.com/", | ||
| 1212 | - "role": "Project lead" | ||
| 1213 | - }, | ||
| 1214 | - { | ||
| 1215 | - "name": "Andrey Klochok", | ||
| 1216 | - "email": "tafid@hiqdev.com", | ||
| 1217 | - "homepage": "https://hiqdev.com/", | ||
| 1218 | - "role": "Lead frontend developer" | ||
| 1219 | - }, | ||
| 1220 | - { | ||
| 1221 | - "name": "Yuriy Myronchuk", | ||
| 1222 | - "email": "bladeroot@hiqdev.com", | ||
| 1223 | - "homepage": "https://hiqdev.com/", | ||
| 1224 | - "role": "QA Lead" | ||
| 1225 | - }, | ||
| 1226 | - { | ||
| 1227 | - "name": "Dmitry Naumenko", | ||
| 1228 | - "email": "silverfire@hiqdev.com", | ||
| 1229 | - "homepage": "http://silverfire.me/", | ||
| 1230 | - "role": "Lead backend developer" | ||
| 1231 | - } | ||
| 1232 | - ], | ||
| 1233 | - "description": "Yii2 Asset Pnotify", | ||
| 1234 | - "homepage": "https://github.com/hiqdev/yii2-asset-pnotify", | ||
| 1235 | - "keywords": [ | ||
| 1236 | - "asset", | ||
| 1237 | - "pnotify", | ||
| 1238 | - "yii2" | ||
| 1239 | - ], | ||
| 1240 | - "time": "2015-09-09T15:16:38+00:00" | ||
| 1241 | - }, | ||
| 1242 | - { | ||
| 1243 | - "name": "imagine/imagine", | ||
| 1244 | - "version": "v0.6.3", | ||
| 1245 | - "source": { | ||
| 1246 | - "type": "git", | ||
| 1247 | - "url": "https://github.com/avalanche123/Imagine.git", | ||
| 1248 | - "reference": "149041d2a1b517107bfe270ca2b1a17aa341715d" | ||
| 1249 | - }, | ||
| 1250 | - "dist": { | ||
| 1251 | - "type": "zip", | ||
| 1252 | - "url": "https://api.github.com/repos/avalanche123/Imagine/zipball/149041d2a1b517107bfe270ca2b1a17aa341715d", | ||
| 1253 | - "reference": "149041d2a1b517107bfe270ca2b1a17aa341715d", | ||
| 1254 | - "shasum": "" | ||
| 1255 | - }, | ||
| 1256 | - "require": { | ||
| 1257 | - "php": ">=5.3.2" | ||
| 1258 | - }, | ||
| 1259 | - "require-dev": { | ||
| 1260 | - "sami/sami": "dev-master" | ||
| 1261 | - }, | ||
| 1262 | - "suggest": { | ||
| 1263 | - "ext-gd": "to use the GD implementation", | ||
| 1264 | - "ext-gmagick": "to use the Gmagick implementation", | ||
| 1265 | - "ext-imagick": "to use the Imagick implementation" | ||
| 1266 | - }, | ||
| 1267 | - "type": "library", | ||
| 1268 | - "extra": { | ||
| 1269 | - "branch-alias": { | ||
| 1270 | - "dev-develop": "0.7-dev" | ||
| 1271 | - } | ||
| 1272 | - }, | ||
| 1273 | - "autoload": { | ||
| 1274 | - "psr-0": { | ||
| 1275 | - "Imagine": "lib/" | ||
| 1276 | - } | ||
| 1277 | - }, | ||
| 1278 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1279 | - "license": [ | ||
| 1280 | - "MIT" | ||
| 1281 | - ], | ||
| 1282 | - "authors": [ | ||
| 1283 | - { | ||
| 1284 | - "name": "Bulat Shakirzyanov", | ||
| 1285 | - "email": "mallluhuct@gmail.com", | ||
| 1286 | - "homepage": "http://avalanche123.com" | ||
| 1287 | - } | ||
| 1288 | - ], | ||
| 1289 | - "description": "Image processing for PHP 5.3", | ||
| 1290 | - "homepage": "http://imagine.readthedocs.org/", | ||
| 1291 | - "keywords": [ | ||
| 1292 | - "drawing", | ||
| 1293 | - "graphics", | ||
| 1294 | - "image manipulation", | ||
| 1295 | - "image processing" | ||
| 1296 | - ], | ||
| 1297 | - "time": "2015-09-19T16:54:05+00:00" | ||
| 1298 | - }, | ||
| 1299 | - { | ||
| 1300 | - "name": "intervention/httpauth", | ||
| 1301 | - "version": "2.0.2", | ||
| 1302 | - "source": { | ||
| 1303 | - "type": "git", | ||
| 1304 | - "url": "https://github.com/Intervention/httpauth.git", | ||
| 1305 | - "reference": "407203e29fc5b3f2c4dd2f1849a799a72aa15b1c" | ||
| 1306 | - }, | ||
| 1307 | - "dist": { | ||
| 1308 | - "type": "zip", | ||
| 1309 | - "url": "https://api.github.com/repos/Intervention/httpauth/zipball/407203e29fc5b3f2c4dd2f1849a799a72aa15b1c", | ||
| 1310 | - "reference": "407203e29fc5b3f2c4dd2f1849a799a72aa15b1c", | ||
| 1311 | - "shasum": "" | ||
| 1312 | - }, | ||
| 1313 | - "require": { | ||
| 1314 | - "php": ">=5.3.0" | ||
| 1315 | - }, | ||
| 1316 | - "type": "library", | ||
| 1317 | - "autoload": { | ||
| 1318 | - "psr-4": { | ||
| 1319 | - "Intervention\\Httpauth\\": "src/Intervention/Httpauth" | ||
| 1320 | - } | ||
| 1321 | - }, | ||
| 1322 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1323 | - "license": [ | ||
| 1324 | - "MIT" | ||
| 1325 | - ], | ||
| 1326 | - "authors": [ | ||
| 1327 | - { | ||
| 1328 | - "name": "Oliver Vogel", | ||
| 1329 | - "email": "oliver@olivervogel.com", | ||
| 1330 | - "homepage": "http://olivervogel.com/" | ||
| 1331 | - } | ||
| 1332 | - ], | ||
| 1333 | - "description": "HTTP authentication (Basic & Digest) including ServiceProviders for easy Laravel integration", | ||
| 1334 | - "homepage": "https://github.com/Intervention/httpauth", | ||
| 1335 | - "keywords": [ | ||
| 1336 | - "Authentication", | ||
| 1337 | - "http", | ||
| 1338 | - "laravel" | ||
| 1339 | - ], | ||
| 1340 | - "time": "2017-01-29T12:04:52+00:00" | ||
| 1341 | - }, | ||
| 1342 | - { | ||
| 1343 | - "name": "kartik-v/bootstrap-fileinput", | ||
| 1344 | - "version": "v4.4.1", | ||
| 1345 | - "source": { | ||
| 1346 | - "type": "git", | ||
| 1347 | - "url": "https://github.com/kartik-v/bootstrap-fileinput.git", | ||
| 1348 | - "reference": "aa4e1a520cef078922ed2c7c8e3e944d496388f6" | ||
| 1349 | - }, | ||
| 1350 | - "dist": { | ||
| 1351 | - "type": "zip", | ||
| 1352 | - "url": "https://api.github.com/repos/kartik-v/bootstrap-fileinput/zipball/aa4e1a520cef078922ed2c7c8e3e944d496388f6", | ||
| 1353 | - "reference": "aa4e1a520cef078922ed2c7c8e3e944d496388f6", | ||
| 1354 | - "shasum": "" | ||
| 1355 | - }, | ||
| 1356 | - "type": "library", | ||
| 1357 | - "extra": { | ||
| 1358 | - "branch-alias": { | ||
| 1359 | - "dev-master": "4.4.x-dev" | ||
| 1360 | - } | ||
| 1361 | - }, | ||
| 1362 | - "autoload": { | ||
| 1363 | - "psr-4": { | ||
| 1364 | - "kartik\\plugins\\fileinput\\": "" | ||
| 1365 | - } | ||
| 1366 | - }, | ||
| 1367 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1368 | - "license": [ | ||
| 1369 | - "BSD-3-Clause" | ||
| 1370 | - ], | ||
| 1371 | - "authors": [ | ||
| 1372 | - { | ||
| 1373 | - "name": "Kartik Visweswaran", | ||
| 1374 | - "email": "kartikv2@gmail.com", | ||
| 1375 | - "homepage": "http://www.krajee.com/" | ||
| 1376 | - } | ||
| 1377 | - ], | ||
| 1378 | - "description": "An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.", | ||
| 1379 | - "homepage": "https://github.com/kartik-v/bootstrap-fileinput", | ||
| 1380 | - "keywords": [ | ||
| 1381 | - "ajax", | ||
| 1382 | - "bootstrap", | ||
| 1383 | - "delete", | ||
| 1384 | - "file", | ||
| 1385 | - "image", | ||
| 1386 | - "input", | ||
| 1387 | - "jquery", | ||
| 1388 | - "multiple", | ||
| 1389 | - "preview", | ||
| 1390 | - "progress", | ||
| 1391 | - "upload" | ||
| 1392 | - ], | ||
| 1393 | - "time": "2017-05-25T19:06:59+00:00" | ||
| 1394 | - }, | ||
| 1395 | - { | ||
| 1396 | - "name": "kartik-v/yii2-krajee-base", | ||
| 1397 | - "version": "v1.8.8", | ||
| 1398 | - "source": { | ||
| 1399 | - "type": "git", | ||
| 1400 | - "url": "https://github.com/kartik-v/yii2-krajee-base.git", | ||
| 1401 | - "reference": "2479241c03c87995cfc528ae7b297f5ae9e733cb" | ||
| 1402 | - }, | ||
| 1403 | - "dist": { | ||
| 1404 | - "type": "zip", | ||
| 1405 | - "url": "https://api.github.com/repos/kartik-v/yii2-krajee-base/zipball/2479241c03c87995cfc528ae7b297f5ae9e733cb", | ||
| 1406 | - "reference": "2479241c03c87995cfc528ae7b297f5ae9e733cb", | ||
| 1407 | - "shasum": "" | ||
| 1408 | - }, | ||
| 1409 | - "require": { | ||
| 1410 | - "yiisoft/yii2-bootstrap": "@dev" | ||
| 1411 | - }, | ||
| 1412 | - "type": "yii2-extension", | ||
| 1413 | - "extra": { | ||
| 1414 | - "branch-alias": { | ||
| 1415 | - "dev-master": "1.8.x-dev" | ||
| 1416 | - } | ||
| 1417 | - }, | ||
| 1418 | - "autoload": { | ||
| 1419 | - "psr-4": { | ||
| 1420 | - "kartik\\base\\": "" | ||
| 1421 | - } | ||
| 1422 | - }, | ||
| 1423 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1424 | - "license": [ | ||
| 1425 | - "BSD-3-Clause" | ||
| 1426 | - ], | ||
| 1427 | - "authors": [ | ||
| 1428 | - { | ||
| 1429 | - "name": "Kartik Visweswaran", | ||
| 1430 | - "email": "kartikv2@gmail.com", | ||
| 1431 | - "homepage": "http://www.krajee.com/" | ||
| 1432 | - } | ||
| 1433 | - ], | ||
| 1434 | - "description": "Base library and foundation components for all Yii2 Krajee extensions.", | ||
| 1435 | - "homepage": "https://github.com/kartik-v/yii2-krajee-base", | ||
| 1436 | - "keywords": [ | ||
| 1437 | - "base", | ||
| 1438 | - "extension", | ||
| 1439 | - "foundation", | ||
| 1440 | - "krajee", | ||
| 1441 | - "widget", | ||
| 1442 | - "yii2" | ||
| 1443 | - ], | ||
| 1444 | - "time": "2017-02-22T05:58:53+00:00" | ||
| 1445 | - }, | ||
| 1446 | - { | ||
| 1447 | - "name": "kartik-v/yii2-widget-colorinput", | ||
| 1448 | - "version": "v1.0.3", | ||
| 1449 | - "source": { | ||
| 1450 | - "type": "git", | ||
| 1451 | - "url": "https://github.com/kartik-v/yii2-widget-colorinput.git", | ||
| 1452 | - "reference": "3f6e847ef72cf6e27e4d3b4870b00b8f80d51752" | ||
| 1453 | - }, | ||
| 1454 | - "dist": { | ||
| 1455 | - "type": "zip", | ||
| 1456 | - "url": "https://api.github.com/repos/kartik-v/yii2-widget-colorinput/zipball/3f6e847ef72cf6e27e4d3b4870b00b8f80d51752", | ||
| 1457 | - "reference": "3f6e847ef72cf6e27e4d3b4870b00b8f80d51752", | ||
| 1458 | - "shasum": "" | ||
| 1459 | - }, | ||
| 1460 | - "require": { | ||
| 1461 | - "kartik-v/yii2-krajee-base": "*" | ||
| 1462 | - }, | ||
| 1463 | - "type": "yii2-extension", | ||
| 1464 | - "extra": { | ||
| 1465 | - "branch-alias": { | ||
| 1466 | - "dev-master": "1.0.x-dev" | ||
| 1467 | - } | ||
| 1468 | - }, | ||
| 1469 | - "autoload": { | ||
| 1470 | - "psr-4": { | ||
| 1471 | - "kartik\\color\\": "" | ||
| 1472 | - } | ||
| 1473 | - }, | ||
| 1474 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1475 | - "license": [ | ||
| 1476 | - "BSD 3-Clause" | ||
| 1477 | - ], | ||
| 1478 | - "authors": [ | ||
| 1479 | - { | ||
| 1480 | - "name": "Kartik Visweswaran", | ||
| 1481 | - "email": "kartikv2@gmail.com", | ||
| 1482 | - "homepage": "http://www.krajee.com/" | ||
| 1483 | - } | ||
| 1484 | - ], | ||
| 1485 | - "description": "An enhanced Yii 2 widget encapsulating the HTML 5 color input (sub repo split from yii2-widgets)", | ||
| 1486 | - "homepage": "https://github.com/kartik-v/yii2-widget-colorinput", | ||
| 1487 | - "keywords": [ | ||
| 1488 | - "HTML5", | ||
| 1489 | - "color", | ||
| 1490 | - "extension", | ||
| 1491 | - "form", | ||
| 1492 | - "input", | ||
| 1493 | - "jquery", | ||
| 1494 | - "plugin", | ||
| 1495 | - "widget", | ||
| 1496 | - "yii2" | ||
| 1497 | - ], | ||
| 1498 | - "time": "2016-01-14T11:15:49+00:00" | ||
| 1499 | - }, | ||
| 1500 | - { | ||
| 1501 | - "name": "kartik-v/yii2-widget-datepicker", | ||
| 1502 | - "version": "dev-master", | ||
| 1503 | - "source": { | ||
| 1504 | - "type": "git", | ||
| 1505 | - "url": "https://github.com/kartik-v/yii2-widget-datepicker.git", | ||
| 1506 | - "reference": "9110ecce9deb59dc116fe6c3dd6df5d7eb439a3c" | ||
| 1507 | - }, | ||
| 1508 | - "dist": { | ||
| 1509 | - "type": "zip", | ||
| 1510 | - "url": "https://api.github.com/repos/kartik-v/yii2-widget-datepicker/zipball/9110ecce9deb59dc116fe6c3dd6df5d7eb439a3c", | ||
| 1511 | - "reference": "9110ecce9deb59dc116fe6c3dd6df5d7eb439a3c", | ||
| 1512 | - "shasum": "" | ||
| 1513 | - }, | ||
| 1514 | - "require": { | ||
| 1515 | - "kartik-v/yii2-krajee-base": "~1.7" | ||
| 1516 | - }, | ||
| 1517 | - "type": "yii2-extension", | ||
| 1518 | - "extra": { | ||
| 1519 | - "branch-alias": { | ||
| 1520 | - "dev-master": "1.4.x-dev" | ||
| 1521 | - } | ||
| 1522 | - }, | ||
| 1523 | - "autoload": { | ||
| 1524 | - "psr-4": { | ||
| 1525 | - "kartik\\date\\": "" | ||
| 1526 | - } | ||
| 1527 | - }, | ||
| 1528 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1529 | - "license": [ | ||
| 1530 | - "BSD-3-Clause" | ||
| 1531 | - ], | ||
| 1532 | - "authors": [ | ||
| 1533 | - { | ||
| 1534 | - "name": "Kartik Visweswaran", | ||
| 1535 | - "email": "kartikv2@gmail.com", | ||
| 1536 | - "homepage": "http://www.krajee.com/" | ||
| 1537 | - } | ||
| 1538 | - ], | ||
| 1539 | - "description": "Enhanced Yii2 wrapper for the bootstrap datepicker plugin (sub repo split from yii2-widgets).", | ||
| 1540 | - "homepage": "https://github.com/kartik-v/yii2-widget-datepicker", | ||
| 1541 | - "keywords": [ | ||
| 1542 | - "date", | ||
| 1543 | - "extension", | ||
| 1544 | - "form", | ||
| 1545 | - "jquery", | ||
| 1546 | - "picker", | ||
| 1547 | - "plugin", | ||
| 1548 | - "select2", | ||
| 1549 | - "widget", | ||
| 1550 | - "yii2" | ||
| 1551 | - ], | ||
| 1552 | - "time": "2017-04-01 16:03:50" | ||
| 1553 | - }, | ||
| 1554 | - { | ||
| 1555 | - "name": "kartik-v/yii2-widget-fileinput", | ||
| 1556 | - "version": "v1.0.6", | ||
| 1557 | - "source": { | ||
| 1558 | - "type": "git", | ||
| 1559 | - "url": "https://github.com/kartik-v/yii2-widget-fileinput.git", | ||
| 1560 | - "reference": "d2c8dcde1aa69ac0c4a0e3b3cfc0d79b3cc2a550" | ||
| 1561 | - }, | ||
| 1562 | - "dist": { | ||
| 1563 | - "type": "zip", | ||
| 1564 | - "url": "https://api.github.com/repos/kartik-v/yii2-widget-fileinput/zipball/d2c8dcde1aa69ac0c4a0e3b3cfc0d79b3cc2a550", | ||
| 1565 | - "reference": "d2c8dcde1aa69ac0c4a0e3b3cfc0d79b3cc2a550", | ||
| 1566 | - "shasum": "" | ||
| 1567 | - }, | ||
| 1568 | - "require": { | ||
| 1569 | - "kartik-v/bootstrap-fileinput": "~4.4", | ||
| 1570 | - "kartik-v/yii2-krajee-base": "~1.7" | ||
| 1571 | - }, | ||
| 1572 | - "type": "yii2-extension", | ||
| 1573 | - "extra": { | ||
| 1574 | - "branch-alias": { | ||
| 1575 | - "dev-master": "1.0.x-dev" | ||
| 1576 | - } | ||
| 1577 | - }, | ||
| 1578 | - "autoload": { | ||
| 1579 | - "psr-4": { | ||
| 1580 | - "kartik\\file\\": "" | ||
| 1581 | - } | ||
| 1582 | - }, | ||
| 1583 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1584 | - "license": [ | ||
| 1585 | - "BSD-3-Clause" | ||
| 1586 | - ], | ||
| 1587 | - "authors": [ | ||
| 1588 | - { | ||
| 1589 | - "name": "Kartik Visweswaran", | ||
| 1590 | - "email": "kartikv2@gmail.com", | ||
| 1591 | - "homepage": "http://www.krajee.com/" | ||
| 1592 | - } | ||
| 1593 | - ], | ||
| 1594 | - "description": "An enhanced FileInput widget for Bootstrap 3.x with file preview, multiple selection, and more features (sub repo split from yii2-widgets)", | ||
| 1595 | - "homepage": "https://github.com/kartik-v/yii2-widget-fileinput", | ||
| 1596 | - "keywords": [ | ||
| 1597 | - "extension", | ||
| 1598 | - "file", | ||
| 1599 | - "form", | ||
| 1600 | - "input", | ||
| 1601 | - "jquery", | ||
| 1602 | - "plugin", | ||
| 1603 | - "upload", | ||
| 1604 | - "widget", | ||
| 1605 | - "yii2" | ||
| 1606 | - ], | ||
| 1607 | - "time": "2017-05-25T20:12:30+00:00" | ||
| 1608 | - }, | ||
| 1609 | - { | ||
| 1610 | - "name": "kartik-v/yii2-widget-select2", | ||
| 1611 | - "version": "dev-master", | ||
| 1612 | - "source": { | ||
| 1613 | - "type": "git", | ||
| 1614 | - "url": "https://github.com/kartik-v/yii2-widget-select2.git", | ||
| 1615 | - "reference": "03f202e9e2415f4c84e93a64074d85677fd0cc51" | ||
| 1616 | - }, | ||
| 1617 | - "dist": { | ||
| 1618 | - "type": "zip", | ||
| 1619 | - "url": "https://api.github.com/repos/kartik-v/yii2-widget-select2/zipball/03f202e9e2415f4c84e93a64074d85677fd0cc51", | ||
| 1620 | - "reference": "03f202e9e2415f4c84e93a64074d85677fd0cc51", | ||
| 1621 | - "shasum": "" | ||
| 1622 | - }, | ||
| 1623 | - "require": { | ||
| 1624 | - "kartik-v/yii2-krajee-base": "~1.7" | ||
| 1625 | - }, | ||
| 1626 | - "type": "yii2-extension", | ||
| 1627 | - "extra": { | ||
| 1628 | - "branch-alias": { | ||
| 1629 | - "dev-master": "2.0.x-dev" | ||
| 1630 | - } | ||
| 1631 | - }, | ||
| 1632 | - "autoload": { | ||
| 1633 | - "psr-4": { | ||
| 1634 | - "kartik\\select2\\": "" | ||
| 1635 | - } | ||
| 1636 | - }, | ||
| 1637 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1638 | - "license": [ | ||
| 1639 | - "BSD-3-Clause" | ||
| 1640 | - ], | ||
| 1641 | - "authors": [ | ||
| 1642 | - { | ||
| 1643 | - "name": "Kartik Visweswaran", | ||
| 1644 | - "email": "kartikv2@gmail.com", | ||
| 1645 | - "homepage": "http://www.krajee.com/" | ||
| 1646 | - } | ||
| 1647 | - ], | ||
| 1648 | - "description": "Enhanced Yii2 wrapper for the Select2 jQuery plugin (sub repo split from yii2-widgets).", | ||
| 1649 | - "homepage": "https://github.com/kartik-v/yii2-widget-select2", | ||
| 1650 | - "keywords": [ | ||
| 1651 | - "dropdown", | ||
| 1652 | - "extension", | ||
| 1653 | - "form", | ||
| 1654 | - "jquery", | ||
| 1655 | - "plugin", | ||
| 1656 | - "select2", | ||
| 1657 | - "widget", | ||
| 1658 | - "yii2" | ||
| 1659 | - ], | ||
| 1660 | - "time": "2017-04-12 09:00:24" | ||
| 1661 | - }, | ||
| 1662 | - { | ||
| 1663 | - "name": "lusitanian/oauth", | ||
| 1664 | - "version": "v0.3.6", | ||
| 1665 | - "source": { | ||
| 1666 | - "type": "git", | ||
| 1667 | - "url": "https://github.com/Lusitanian/PHPoAuthLib.git", | ||
| 1668 | - "reference": "4ce8c488971410233eb3b1e6d9ac4e81debb41d5" | ||
| 1669 | - }, | ||
| 1670 | - "dist": { | ||
| 1671 | - "type": "zip", | ||
| 1672 | - "url": "https://api.github.com/repos/Lusitanian/PHPoAuthLib/zipball/4ce8c488971410233eb3b1e6d9ac4e81debb41d5", | ||
| 1673 | - "reference": "4ce8c488971410233eb3b1e6d9ac4e81debb41d5", | ||
| 1674 | - "shasum": "" | ||
| 1675 | - }, | ||
| 1676 | - "require": { | ||
| 1677 | - "php": ">=5.3.0" | ||
| 1678 | - }, | ||
| 1679 | - "require-dev": { | ||
| 1680 | - "phpunit/phpunit": "3.7.*", | ||
| 1681 | - "predis/predis": "0.8.*@dev", | ||
| 1682 | - "symfony/http-foundation": "~2.1" | ||
| 1683 | - }, | ||
| 1684 | - "suggest": { | ||
| 1685 | - "ext-openssl": "Allows for usage of secure connections with the stream-based HTTP client.", | ||
| 1686 | - "predis/predis": "Allows using the Redis storage backend.", | ||
| 1687 | - "symfony/http-foundation": "Allows using the Symfony Session storage backend." | ||
| 1688 | - }, | ||
| 1689 | - "type": "library", | ||
| 1690 | - "extra": { | ||
| 1691 | - "branch-alias": { | ||
| 1692 | - "dev-master": "0.1-dev" | ||
| 1693 | - } | ||
| 1694 | - }, | ||
| 1695 | - "autoload": { | ||
| 1696 | - "psr-0": { | ||
| 1697 | - "OAuth": "src", | ||
| 1698 | - "OAuth\\Unit": "tests" | ||
| 1699 | - } | ||
| 1700 | - }, | ||
| 1701 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1702 | - "license": [ | ||
| 1703 | - "MIT" | ||
| 1704 | - ], | ||
| 1705 | - "authors": [ | ||
| 1706 | - { | ||
| 1707 | - "name": "David Desberg", | ||
| 1708 | - "email": "david@daviddesberg.com" | ||
| 1709 | - }, | ||
| 1710 | - { | ||
| 1711 | - "name": "Pieter Hordijk", | ||
| 1712 | - "email": "info@pieterhordijk.com" | ||
| 1713 | - } | ||
| 1714 | - ], | ||
| 1715 | - "description": "PHP 5.3+ oAuth 1/2 Library", | ||
| 1716 | - "keywords": [ | ||
| 1717 | - "Authentication", | ||
| 1718 | - "authorization", | ||
| 1719 | - "oauth", | ||
| 1720 | - "security" | ||
| 1721 | - ], | ||
| 1722 | - "time": "2015-09-09T06:43:02+00:00" | ||
| 1723 | - }, | ||
| 1724 | - { | ||
| 1725 | - "name": "monolog/monolog", | ||
| 1726 | - "version": "1.22.1", | ||
| 1727 | - "source": { | ||
| 1728 | - "type": "git", | ||
| 1729 | - "url": "https://github.com/Seldaek/monolog.git", | ||
| 1730 | - "reference": "1e044bc4b34e91743943479f1be7a1d5eb93add0" | ||
| 1731 | - }, | ||
| 1732 | - "dist": { | ||
| 1733 | - "type": "zip", | ||
| 1734 | - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1e044bc4b34e91743943479f1be7a1d5eb93add0", | ||
| 1735 | - "reference": "1e044bc4b34e91743943479f1be7a1d5eb93add0", | ||
| 1736 | - "shasum": "" | ||
| 1737 | - }, | ||
| 1738 | - "require": { | ||
| 1739 | - "php": ">=5.3.0", | ||
| 1740 | - "psr/log": "~1.0" | ||
| 1741 | - }, | ||
| 1742 | - "provide": { | ||
| 1743 | - "psr/log-implementation": "1.0.0" | ||
| 1744 | - }, | ||
| 1745 | - "require-dev": { | ||
| 1746 | - "aws/aws-sdk-php": "^2.4.9 || ^3.0", | ||
| 1747 | - "doctrine/couchdb": "~1.0@dev", | ||
| 1748 | - "graylog2/gelf-php": "~1.0", | ||
| 1749 | - "jakub-onderka/php-parallel-lint": "0.9", | ||
| 1750 | - "php-amqplib/php-amqplib": "~2.4", | ||
| 1751 | - "php-console/php-console": "^3.1.3", | ||
| 1752 | - "phpunit/phpunit": "~4.5", | ||
| 1753 | - "phpunit/phpunit-mock-objects": "2.3.0", | ||
| 1754 | - "ruflin/elastica": ">=0.90 <3.0", | ||
| 1755 | - "sentry/sentry": "^0.13", | ||
| 1756 | - "swiftmailer/swiftmailer": "~5.3" | ||
| 1757 | - }, | ||
| 1758 | - "suggest": { | ||
| 1759 | - "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", | ||
| 1760 | - "doctrine/couchdb": "Allow sending log messages to a CouchDB server", | ||
| 1761 | - "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", | ||
| 1762 | - "ext-mongo": "Allow sending log messages to a MongoDB server", | ||
| 1763 | - "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", | ||
| 1764 | - "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver", | ||
| 1765 | - "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", | ||
| 1766 | - "php-console/php-console": "Allow sending log messages to Google Chrome", | ||
| 1767 | - "rollbar/rollbar": "Allow sending log messages to Rollbar", | ||
| 1768 | - "ruflin/elastica": "Allow sending log messages to an Elastic Search server", | ||
| 1769 | - "sentry/sentry": "Allow sending log messages to a Sentry server" | ||
| 1770 | - }, | ||
| 1771 | - "type": "library", | ||
| 1772 | - "extra": { | ||
| 1773 | - "branch-alias": { | ||
| 1774 | - "dev-master": "2.0.x-dev" | ||
| 1775 | - } | ||
| 1776 | - }, | ||
| 1777 | - "autoload": { | ||
| 1778 | - "psr-4": { | ||
| 1779 | - "Monolog\\": "src/Monolog" | ||
| 1780 | - } | ||
| 1781 | - }, | ||
| 1782 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1783 | - "license": [ | ||
| 1784 | - "MIT" | ||
| 1785 | - ], | ||
| 1786 | - "authors": [ | ||
| 1787 | - { | ||
| 1788 | - "name": "Jordi Boggiano", | ||
| 1789 | - "email": "j.boggiano@seld.be", | ||
| 1790 | - "homepage": "http://seld.be" | ||
| 1791 | - } | ||
| 1792 | - ], | ||
| 1793 | - "description": "Sends your logs to files, sockets, inboxes, databases and various web services", | ||
| 1794 | - "homepage": "http://github.com/Seldaek/monolog", | ||
| 1795 | - "keywords": [ | ||
| 1796 | - "log", | ||
| 1797 | - "logging", | ||
| 1798 | - "psr-3" | ||
| 1799 | - ], | ||
| 1800 | - "time": "2017-03-13T07:08:03+00:00" | ||
| 1801 | - }, | ||
| 1802 | - { | ||
| 1803 | - "name": "mrclay/jsmin-php", | ||
| 1804 | - "version": "2.3.2", | ||
| 1805 | - "source": { | ||
| 1806 | - "type": "git", | ||
| 1807 | - "url": "https://github.com/mrclay/jsmin-php.git", | ||
| 1808 | - "reference": "932c9633c35b390beb2cfdea69a41ea7dbc8d759" | ||
| 1809 | - }, | ||
| 1810 | - "dist": { | ||
| 1811 | - "type": "zip", | ||
| 1812 | - "url": "https://api.github.com/repos/mrclay/jsmin-php/zipball/932c9633c35b390beb2cfdea69a41ea7dbc8d759", | ||
| 1813 | - "reference": "932c9633c35b390beb2cfdea69a41ea7dbc8d759", | ||
| 1814 | - "shasum": "" | ||
| 1815 | - }, | ||
| 1816 | - "require": { | ||
| 1817 | - "ext-pcre": "*", | ||
| 1818 | - "php": ">=5.3.0" | ||
| 1819 | - }, | ||
| 1820 | - "require-dev": { | ||
| 1821 | - "phpunit/phpunit": "4.2" | ||
| 1822 | - }, | ||
| 1823 | - "type": "library", | ||
| 1824 | - "autoload": { | ||
| 1825 | - "psr-0": { | ||
| 1826 | - "JSMin\\": "src/" | ||
| 1827 | - } | ||
| 1828 | - }, | ||
| 1829 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1830 | - "license": [ | ||
| 1831 | - "MIT" | ||
| 1832 | - ], | ||
| 1833 | - "authors": [ | ||
| 1834 | - { | ||
| 1835 | - "name": "Stephen Clay", | ||
| 1836 | - "email": "steve@mrclay.org", | ||
| 1837 | - "role": "Developer" | ||
| 1838 | - }, | ||
| 1839 | - { | ||
| 1840 | - "name": "Ryan Grove", | ||
| 1841 | - "email": "ryan@wonko.com", | ||
| 1842 | - "role": "Developer" | ||
| 1843 | - } | ||
| 1844 | - ], | ||
| 1845 | - "description": "Provides a modified port of Douglas Crockford's jsmin.c, which removes unnecessary whitespace from JavaScript files.", | ||
| 1846 | - "homepage": "https://github.com/mrclay/jsmin-php/", | ||
| 1847 | - "keywords": [ | ||
| 1848 | - "compress", | ||
| 1849 | - "jsmin", | ||
| 1850 | - "minify" | ||
| 1851 | - ], | ||
| 1852 | - "time": "2015-03-30T15:04:42+00:00" | ||
| 1853 | - }, | ||
| 1854 | - { | ||
| 1855 | - "name": "mrclay/minify", | ||
| 1856 | - "version": "3.0.1", | ||
| 1857 | - "source": { | ||
| 1858 | - "type": "git", | ||
| 1859 | - "url": "https://github.com/mrclay/minify.git", | ||
| 1860 | - "reference": "6a5b09a00e089bdf3e14d545fadd1525abac5e61" | ||
| 1861 | - }, | ||
| 1862 | - "dist": { | ||
| 1863 | - "type": "zip", | ||
| 1864 | - "url": "https://api.github.com/repos/mrclay/minify/zipball/6a5b09a00e089bdf3e14d545fadd1525abac5e61", | ||
| 1865 | - "reference": "6a5b09a00e089bdf3e14d545fadd1525abac5e61", | ||
| 1866 | - "shasum": "" | ||
| 1867 | - }, | ||
| 1868 | - "require": { | ||
| 1869 | - "ext-pcre": "*", | ||
| 1870 | - "intervention/httpauth": "~2.0", | ||
| 1871 | - "monolog/monolog": "~1.1", | ||
| 1872 | - "mrclay/jsmin-php": "~2", | ||
| 1873 | - "mrclay/props-dic": "^2.2", | ||
| 1874 | - "php": "^5.3.0 || ^7.0", | ||
| 1875 | - "tubalmartin/cssmin": "~4" | ||
| 1876 | - }, | ||
| 1877 | - "require-dev": { | ||
| 1878 | - "firephp/firephp-core": "~0.4.0", | ||
| 1879 | - "leafo/lessphp": "~0.4.0", | ||
| 1880 | - "leafo/scssphp": "~0.6.6", | ||
| 1881 | - "meenie/javascript-packer": "~1.1", | ||
| 1882 | - "phpunit/phpunit": "4.8.*", | ||
| 1883 | - "tedivm/jshrink": "~1.1.0" | ||
| 1884 | - }, | ||
| 1885 | - "suggest": { | ||
| 1886 | - "firephp/firephp-core": "Use FirePHP for Log messages", | ||
| 1887 | - "leafo/lessphp": "LESS support", | ||
| 1888 | - "meenie/javascript-packer": "Keep track of the Packer PHP port using Composer" | ||
| 1889 | - }, | ||
| 1890 | - "type": "library", | ||
| 1891 | - "extra": { | ||
| 1892 | - "branch-alias": { | ||
| 1893 | - "dev-master": "3.0.x-dev" | ||
| 1894 | - } | ||
| 1895 | - }, | ||
| 1896 | - "autoload": { | ||
| 1897 | - "classmap": [ | ||
| 1898 | - "lib/" | ||
| 1899 | - ] | ||
| 1900 | - }, | ||
| 1901 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1902 | - "license": [ | ||
| 1903 | - "BSD-3-Clause" | ||
| 1904 | - ], | ||
| 1905 | - "authors": [ | ||
| 1906 | - { | ||
| 1907 | - "name": "Stephen Clay", | ||
| 1908 | - "email": "steve@mrclay.org", | ||
| 1909 | - "role": "Developer" | ||
| 1910 | - } | ||
| 1911 | - ], | ||
| 1912 | - "description": "Minify is a PHP5 app that helps you follow several rules for client-side performance. It combines multiple CSS or Javascript files, removes unnecessary whitespace and comments, and serves them with gzip encoding and optimal client-side cache headers", | ||
| 1913 | - "homepage": "https://github.com/mrclay/minify", | ||
| 1914 | - "time": "2017-06-08T19:33:53+00:00" | ||
| 1915 | - }, | ||
| 1916 | - { | ||
| 1917 | - "name": "mrclay/props-dic", | ||
| 1918 | - "version": "2.2.0", | ||
| 1919 | - "source": { | ||
| 1920 | - "type": "git", | ||
| 1921 | - "url": "https://github.com/mrclay/Props.git", | ||
| 1922 | - "reference": "9ed6cf3a027f1eab03abdd134ec209467cf9c77e" | ||
| 1923 | - }, | ||
| 1924 | - "dist": { | ||
| 1925 | - "type": "zip", | ||
| 1926 | - "url": "https://api.github.com/repos/mrclay/Props/zipball/9ed6cf3a027f1eab03abdd134ec209467cf9c77e", | ||
| 1927 | - "reference": "9ed6cf3a027f1eab03abdd134ec209467cf9c77e", | ||
| 1928 | - "shasum": "" | ||
| 1929 | - }, | ||
| 1930 | - "require": { | ||
| 1931 | - "container-interop/container-interop": "^1.1", | ||
| 1932 | - "php": ">=5.3.3", | ||
| 1933 | - "pimple/pimple": "~3.0" | ||
| 1934 | - }, | ||
| 1935 | - "require-dev": { | ||
| 1936 | - "phpunit/phpunit": "~4.8" | ||
| 1937 | - }, | ||
| 1938 | - "type": "library", | ||
| 1939 | - "autoload": { | ||
| 1940 | - "psr-0": { | ||
| 1941 | - "Props\\": [ | ||
| 1942 | - "src/", | ||
| 1943 | - "test/" | ||
| 1944 | - ] | ||
| 1945 | - } | ||
| 1946 | - }, | ||
| 1947 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1948 | - "license": [ | ||
| 1949 | - "MIT" | ||
| 1950 | - ], | ||
| 1951 | - "authors": [ | ||
| 1952 | - { | ||
| 1953 | - "name": "Steve Clay", | ||
| 1954 | - "email": "steve@mrclay.org", | ||
| 1955 | - "homepage": "http://www.mrclay.org/" | ||
| 1956 | - } | ||
| 1957 | - ], | ||
| 1958 | - "description": "Props is a simple DI container that allows retrieving values via custom property and method names", | ||
| 1959 | - "keywords": [ | ||
| 1960 | - "container", | ||
| 1961 | - "dependency injection", | ||
| 1962 | - "dependency injection container", | ||
| 1963 | - "di", | ||
| 1964 | - "di container" | ||
| 1965 | - ], | ||
| 1966 | - "time": "2016-02-10T18:59:20+00:00" | ||
| 1967 | - }, | ||
| 1968 | - { | ||
| 1969 | - "name": "natxet/CssMin", | ||
| 1970 | - "version": "v3.0.4", | ||
| 1971 | - "source": { | ||
| 1972 | - "type": "git", | ||
| 1973 | - "url": "https://github.com/natxet/CssMin.git", | ||
| 1974 | - "reference": "92de3fe3ccb4f8298d31952490ef7d5395855c39" | ||
| 1975 | - }, | ||
| 1976 | - "dist": { | ||
| 1977 | - "type": "zip", | ||
| 1978 | - "url": "https://api.github.com/repos/natxet/CssMin/zipball/92de3fe3ccb4f8298d31952490ef7d5395855c39", | ||
| 1979 | - "reference": "92de3fe3ccb4f8298d31952490ef7d5395855c39", | ||
| 1980 | - "shasum": "" | ||
| 1981 | - }, | ||
| 1982 | - "require": { | ||
| 1983 | - "php": ">=5.0" | ||
| 1984 | - }, | ||
| 1985 | - "type": "library", | ||
| 1986 | - "extra": { | ||
| 1987 | - "branch-alias": { | ||
| 1988 | - "dev-master": "3.0-dev" | ||
| 1989 | - } | ||
| 1990 | - }, | ||
| 1991 | - "autoload": { | ||
| 1992 | - "classmap": [ | ||
| 1993 | - "src/" | ||
| 1994 | - ] | ||
| 1995 | - }, | ||
| 1996 | - "notification-url": "https://packagist.org/downloads/", | ||
| 1997 | - "license": [ | ||
| 1998 | - "MIT" | ||
| 1999 | - ], | ||
| 2000 | - "authors": [ | ||
| 2001 | - { | ||
| 2002 | - "name": "Joe Scylla", | ||
| 2003 | - "email": "joe.scylla@gmail.com", | ||
| 2004 | - "homepage": "https://profiles.google.com/joe.scylla" | ||
| 2005 | - } | ||
| 2006 | - ], | ||
| 2007 | - "description": "Minifying CSS", | ||
| 2008 | - "homepage": "http://code.google.com/p/cssmin/", | ||
| 2009 | - "keywords": [ | ||
| 2010 | - "css", | ||
| 2011 | - "minify" | ||
| 2012 | - ], | ||
| 2013 | - "time": "2015-09-25T11:13:11+00:00" | ||
| 2014 | - }, | ||
| 2015 | - { | ||
| 2016 | - "name": "noam148/yii2-image-manager", | ||
| 2017 | - "version": "1.2.6", | ||
| 2018 | - "source": { | ||
| 2019 | - "type": "git", | ||
| 2020 | - "url": "https://github.com/noam148/yii2-image-manager.git", | ||
| 2021 | - "reference": "4f4568e40f461b6f5c6bcebbc1e56b0906319b47" | ||
| 2022 | - }, | ||
| 2023 | - "dist": { | ||
| 2024 | - "type": "zip", | ||
| 2025 | - "url": "https://api.github.com/repos/noam148/yii2-image-manager/zipball/4f4568e40f461b6f5c6bcebbc1e56b0906319b47", | ||
| 2026 | - "reference": "4f4568e40f461b6f5c6bcebbc1e56b0906319b47", | ||
| 2027 | - "shasum": "" | ||
| 2028 | - }, | ||
| 2029 | - "require": { | ||
| 2030 | - "kartik-v/yii2-widget-fileinput": "@dev", | ||
| 2031 | - "noam148/yii2-image-resize": "*", | ||
| 2032 | - "yiisoft/yii2": "*" | ||
| 2033 | - }, | ||
| 2034 | - "type": "yii2-extension", | ||
| 2035 | - "autoload": { | ||
| 2036 | - "psr-4": { | ||
| 2037 | - "noam148\\imagemanager\\": "" | ||
| 2038 | - } | ||
| 2039 | - }, | ||
| 2040 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2041 | - "license": [ | ||
| 2042 | - "BSD-3-Clause" | ||
| 2043 | - ], | ||
| 2044 | - "authors": [ | ||
| 2045 | - { | ||
| 2046 | - "name": "Noam148", | ||
| 2047 | - "homepage": "https://github.com/noam148/" | ||
| 2048 | - } | ||
| 2049 | - ], | ||
| 2050 | - "description": "A Yii2 module/widget for upload and cropping images", | ||
| 2051 | - "homepage": "https://github.com/noam148/yii2-image-manager", | ||
| 2052 | - "keywords": [ | ||
| 2053 | - "crop", | ||
| 2054 | - "extension", | ||
| 2055 | - "image", | ||
| 2056 | - "manager", | ||
| 2057 | - "module", | ||
| 2058 | - "upload", | ||
| 2059 | - "widget", | ||
| 2060 | - "yii2" | ||
| 2061 | - ], | ||
| 2062 | - "time": "2017-06-11T09:21:10+00:00" | ||
| 2063 | - }, | ||
| 2064 | - { | ||
| 2065 | - "name": "noam148/yii2-image-resize", | ||
| 2066 | - "version": "1.0.1", | ||
| 2067 | - "source": { | ||
| 2068 | - "type": "git", | ||
| 2069 | - "url": "https://github.com/noam148/yii2-image-resize.git", | ||
| 2070 | - "reference": "75796bdbe9bd66e23f8aff9d44ab431936a5a15e" | ||
| 2071 | - }, | ||
| 2072 | - "dist": { | ||
| 2073 | - "type": "zip", | ||
| 2074 | - "url": "https://api.github.com/repos/noam148/yii2-image-resize/zipball/75796bdbe9bd66e23f8aff9d44ab431936a5a15e", | ||
| 2075 | - "reference": "75796bdbe9bd66e23f8aff9d44ab431936a5a15e", | ||
| 2076 | - "shasum": "" | ||
| 2077 | - }, | ||
| 2078 | - "require": { | ||
| 2079 | - "yiisoft/yii2": "*", | ||
| 2080 | - "yiisoft/yii2-imagine": "*" | ||
| 2081 | - }, | ||
| 2082 | - "type": "yii2-extension", | ||
| 2083 | - "autoload": { | ||
| 2084 | - "psr-4": { | ||
| 2085 | - "noam148\\imageresize\\": "" | ||
| 2086 | - } | ||
| 2087 | - }, | ||
| 2088 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2089 | - "license": [ | ||
| 2090 | - "BSD-3-Clause" | ||
| 2091 | - ], | ||
| 2092 | - "authors": [ | ||
| 2093 | - { | ||
| 2094 | - "name": "Noam148", | ||
| 2095 | - "homepage": "https://github.com/noam148/" | ||
| 2096 | - } | ||
| 2097 | - ], | ||
| 2098 | - "description": "A Yii2 component for resizing images (on the fly)", | ||
| 2099 | - "homepage": "https://github.com/noam148/yii2-image-resize", | ||
| 2100 | - "keywords": [ | ||
| 2101 | - "component", | ||
| 2102 | - "extension", | ||
| 2103 | - "image", | ||
| 2104 | - "on-the-fly", | ||
| 2105 | - "resize", | ||
| 2106 | - "yii2" | ||
| 2107 | - ], | ||
| 2108 | - "time": "2016-11-29T18:17:37+00:00" | ||
| 2109 | - }, | ||
| 2110 | - { | ||
| 2111 | - "name": "nodge/lightopenid", | ||
| 2112 | - "version": "1.1.2", | ||
| 2113 | - "source": { | ||
| 2114 | - "type": "git", | ||
| 2115 | - "url": "https://github.com/Nodge/LightOpenID.git", | ||
| 2116 | - "reference": "a5492cc0c932c557b7e9b54a6e5bbd85cc5fa041" | ||
| 2117 | - }, | ||
| 2118 | - "dist": { | ||
| 2119 | - "type": "zip", | ||
| 2120 | - "url": "https://api.github.com/repos/Nodge/LightOpenID/zipball/a5492cc0c932c557b7e9b54a6e5bbd85cc5fa041", | ||
| 2121 | - "reference": "a5492cc0c932c557b7e9b54a6e5bbd85cc5fa041", | ||
| 2122 | - "shasum": "" | ||
| 2123 | - }, | ||
| 2124 | - "require": { | ||
| 2125 | - "php": ">=5.2" | ||
| 2126 | - }, | ||
| 2127 | - "type": "library", | ||
| 2128 | - "autoload": { | ||
| 2129 | - "classmap": [ | ||
| 2130 | - "openid.php", | ||
| 2131 | - "provider/provider.php" | ||
| 2132 | - ] | ||
| 2133 | - }, | ||
| 2134 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2135 | - "license": [ | ||
| 2136 | - "MIT License" | ||
| 2137 | - ], | ||
| 2138 | - "authors": [ | ||
| 2139 | - { | ||
| 2140 | - "name": "Mewp", | ||
| 2141 | - "homepage": "http://code.google.com/p/lightopenid/" | ||
| 2142 | - }, | ||
| 2143 | - { | ||
| 2144 | - "name": "Ignat Ignatov", | ||
| 2145 | - "homepage": "https://github.com/iignatov/LightOpenID" | ||
| 2146 | - } | ||
| 2147 | - ], | ||
| 2148 | - "description": "Lightweight PHP5 library for easy OpenID authentication.", | ||
| 2149 | - "homepage": "https://github.com/Nodge/LightOpenID", | ||
| 2150 | - "keywords": [ | ||
| 2151 | - "Authentication", | ||
| 2152 | - "OpenId" | ||
| 2153 | - ], | ||
| 2154 | - "time": "2013-08-31T16:48:56+00:00" | ||
| 2155 | - }, | ||
| 2156 | - { | ||
| 2157 | - "name": "nodge/yii2-eauth", | ||
| 2158 | - "version": "2.5.0", | ||
| 2159 | - "source": { | ||
| 2160 | - "type": "git", | ||
| 2161 | - "url": "https://github.com/Nodge/yii2-eauth.git", | ||
| 2162 | - "reference": "04798651fdb3a0db9ed5272330f18b26733507a0" | ||
| 2163 | - }, | ||
| 2164 | - "dist": { | ||
| 2165 | - "type": "zip", | ||
| 2166 | - "url": "https://api.github.com/repos/Nodge/yii2-eauth/zipball/04798651fdb3a0db9ed5272330f18b26733507a0", | ||
| 2167 | - "reference": "04798651fdb3a0db9ed5272330f18b26733507a0", | ||
| 2168 | - "shasum": "" | ||
| 2169 | - }, | ||
| 2170 | - "require": { | ||
| 2171 | - "lib-curl": "*", | ||
| 2172 | - "lusitanian/oauth": "~0.3.0", | ||
| 2173 | - "nodge/lightopenid": "~1.1.0", | ||
| 2174 | - "php": ">=5.4.0", | ||
| 2175 | - "yiisoft/yii2": "*" | ||
| 2176 | - }, | ||
| 2177 | - "type": "yii2-extension", | ||
| 2178 | - "extra": { | ||
| 2179 | - "bootstrap": "nodge\\eauth\\Bootstrap" | ||
| 2180 | - }, | ||
| 2181 | - "autoload": { | ||
| 2182 | - "psr-4": { | ||
| 2183 | - "nodge\\eauth\\": "src/" | ||
| 2184 | - } | ||
| 2185 | - }, | ||
| 2186 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2187 | - "license": [ | ||
| 2188 | - "New BSD License" | ||
| 2189 | - ], | ||
| 2190 | - "authors": [ | ||
| 2191 | - { | ||
| 2192 | - "name": "Maxim Zemskov", | ||
| 2193 | - "email": "nodge@yandex.ru", | ||
| 2194 | - "homepage": "http://nodge.ru/" | ||
| 2195 | - } | ||
| 2196 | - ], | ||
| 2197 | - "description": "Yii2 EAuth Extension. EAuth allows to authenticate users with accounts on other websites (Google, Facebook, Twitter, etc).", | ||
| 2198 | - "homepage": "https://github.com/Nodge/yii2-eauth", | ||
| 2199 | - "keywords": [ | ||
| 2200 | - "Authentication", | ||
| 2201 | - "OpenId", | ||
| 2202 | - "eauth", | ||
| 2203 | - "extension", | ||
| 2204 | - "oauth", | ||
| 2205 | - "yii2" | ||
| 2206 | - ], | ||
| 2207 | - "time": "2017-04-09T20:23:01+00:00" | ||
| 2208 | - }, | ||
| 2209 | - { | ||
| 2210 | - "name": "phpmailer/phpmailer", | ||
| 2211 | - "version": "v5.2.8", | ||
| 2212 | - "source": { | ||
| 2213 | - "type": "git", | ||
| 2214 | - "url": "https://github.com/PHPMailer/PHPMailer.git", | ||
| 2215 | - "reference": "d3802c597bff8f6c2ccfa3eab2a511aa01b8d68f" | ||
| 2216 | - }, | ||
| 2217 | - "dist": { | ||
| 2218 | - "type": "zip", | ||
| 2219 | - "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/d3802c597bff8f6c2ccfa3eab2a511aa01b8d68f", | ||
| 2220 | - "reference": "d3802c597bff8f6c2ccfa3eab2a511aa01b8d68f", | ||
| 2221 | - "shasum": "" | ||
| 2222 | - }, | ||
| 2223 | - "require": { | ||
| 2224 | - "php": ">=5.0.0" | ||
| 2225 | - }, | ||
| 2226 | - "require-dev": { | ||
| 2227 | - "phpdocumentor/phpdocumentor": "*", | ||
| 2228 | - "phpunit/phpunit": "4.0.*" | ||
| 2229 | - }, | ||
| 2230 | - "type": "library", | ||
| 2231 | - "autoload": { | ||
| 2232 | - "classmap": [ | ||
| 2233 | - "class.phpmailer.php", | ||
| 2234 | - "class.pop3.php", | ||
| 2235 | - "class.smtp.php" | ||
| 2236 | - ] | ||
| 2237 | - }, | ||
| 2238 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2239 | - "license": [ | ||
| 2240 | - "LGPL-2.1" | ||
| 2241 | - ], | ||
| 2242 | - "authors": [ | ||
| 2243 | - { | ||
| 2244 | - "name": "Jim Jagielski", | ||
| 2245 | - "email": "jimjag@gmail.com" | ||
| 2246 | - }, | ||
| 2247 | - { | ||
| 2248 | - "name": "Marcus Bointon", | ||
| 2249 | - "email": "phpmailer@synchromedia.co.uk" | ||
| 2250 | - }, | ||
| 2251 | - { | ||
| 2252 | - "name": "Andy Prevost", | ||
| 2253 | - "email": "codeworxtech@users.sourceforge.net" | ||
| 2254 | - }, | ||
| 2255 | - { | ||
| 2256 | - "name": "Brent R. Matzelle" | ||
| 2257 | - } | ||
| 2258 | - ], | ||
| 2259 | - "description": "PHPMailer is a full-featured email creation and transfer class for PHP", | ||
| 2260 | - "time": "2014-05-14T07:04:18+00:00" | ||
| 2261 | - }, | ||
| 2262 | - { | ||
| 2263 | - "name": "phpoffice/phpexcel", | ||
| 2264 | - "version": "1.8.1", | ||
| 2265 | - "source": { | ||
| 2266 | - "type": "git", | ||
| 2267 | - "url": "https://github.com/PHPOffice/PHPExcel.git", | ||
| 2268 | - "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32" | ||
| 2269 | - }, | ||
| 2270 | - "dist": { | ||
| 2271 | - "type": "zip", | ||
| 2272 | - "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/372c7cbb695a6f6f1e62649381aeaa37e7e70b32", | ||
| 2273 | - "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32", | ||
| 2274 | - "shasum": "" | ||
| 2275 | - }, | ||
| 2276 | - "require": { | ||
| 2277 | - "ext-xml": "*", | ||
| 2278 | - "ext-xmlwriter": "*", | ||
| 2279 | - "php": ">=5.2.0" | ||
| 2280 | - }, | ||
| 2281 | - "type": "library", | ||
| 2282 | - "autoload": { | ||
| 2283 | - "psr-0": { | ||
| 2284 | - "PHPExcel": "Classes/" | ||
| 2285 | - } | ||
| 2286 | - }, | ||
| 2287 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2288 | - "license": [ | ||
| 2289 | - "LGPL" | ||
| 2290 | - ], | ||
| 2291 | - "authors": [ | ||
| 2292 | - { | ||
| 2293 | - "name": "Maarten Balliauw", | ||
| 2294 | - "homepage": "http://blog.maartenballiauw.be" | ||
| 2295 | - }, | ||
| 2296 | - { | ||
| 2297 | - "name": "Mark Baker" | ||
| 2298 | - }, | ||
| 2299 | - { | ||
| 2300 | - "name": "Franck Lefevre", | ||
| 2301 | - "homepage": "http://blog.rootslabs.net" | ||
| 2302 | - }, | ||
| 2303 | - { | ||
| 2304 | - "name": "Erik Tilt" | ||
| 2305 | - } | ||
| 2306 | - ], | ||
| 2307 | - "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine", | ||
| 2308 | - "homepage": "http://phpexcel.codeplex.com", | ||
| 2309 | - "keywords": [ | ||
| 2310 | - "OpenXML", | ||
| 2311 | - "excel", | ||
| 2312 | - "php", | ||
| 2313 | - "spreadsheet", | ||
| 2314 | - "xls", | ||
| 2315 | - "xlsx" | ||
| 2316 | - ], | ||
| 2317 | - "time": "2015-05-01T07:00:55+00:00" | ||
| 2318 | - }, | ||
| 2319 | - { | ||
| 2320 | - "name": "phpseclib/phpseclib", | ||
| 2321 | - "version": "2.0.6", | ||
| 2322 | - "source": { | ||
| 2323 | - "type": "git", | ||
| 2324 | - "url": "https://github.com/phpseclib/phpseclib.git", | ||
| 2325 | - "reference": "34a7699e6f31b1ef4035ee36444407cecf9f56aa" | ||
| 2326 | - }, | ||
| 2327 | - "dist": { | ||
| 2328 | - "type": "zip", | ||
| 2329 | - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/34a7699e6f31b1ef4035ee36444407cecf9f56aa", | ||
| 2330 | - "reference": "34a7699e6f31b1ef4035ee36444407cecf9f56aa", | ||
| 2331 | - "shasum": "" | ||
| 2332 | - }, | ||
| 2333 | - "require": { | ||
| 2334 | - "php": ">=5.3.3" | ||
| 2335 | - }, | ||
| 2336 | - "require-dev": { | ||
| 2337 | - "phing/phing": "~2.7", | ||
| 2338 | - "phpunit/phpunit": "~4.0", | ||
| 2339 | - "sami/sami": "~2.0", | ||
| 2340 | - "squizlabs/php_codesniffer": "~2.0" | ||
| 2341 | - }, | ||
| 2342 | - "suggest": { | ||
| 2343 | - "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.", | ||
| 2344 | - "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.", | ||
| 2345 | - "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.", | ||
| 2346 | - "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations." | ||
| 2347 | - }, | ||
| 2348 | - "type": "library", | ||
| 2349 | - "autoload": { | ||
| 2350 | - "files": [ | ||
| 2351 | - "phpseclib/bootstrap.php" | ||
| 2352 | - ], | ||
| 2353 | - "psr-4": { | ||
| 2354 | - "phpseclib\\": "phpseclib/" | ||
| 2355 | - } | ||
| 2356 | - }, | ||
| 2357 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2358 | - "license": [ | ||
| 2359 | - "MIT" | ||
| 2360 | - ], | ||
| 2361 | - "authors": [ | ||
| 2362 | - { | ||
| 2363 | - "name": "Jim Wigginton", | ||
| 2364 | - "email": "terrafrost@php.net", | ||
| 2365 | - "role": "Lead Developer" | ||
| 2366 | - }, | ||
| 2367 | - { | ||
| 2368 | - "name": "Patrick Monnerat", | ||
| 2369 | - "email": "pm@datasphere.ch", | ||
| 2370 | - "role": "Developer" | ||
| 2371 | - }, | ||
| 2372 | - { | ||
| 2373 | - "name": "Andreas Fischer", | ||
| 2374 | - "email": "bantu@phpbb.com", | ||
| 2375 | - "role": "Developer" | ||
| 2376 | - }, | ||
| 2377 | - { | ||
| 2378 | - "name": "Hans-Jürgen Petrich", | ||
| 2379 | - "email": "petrich@tronic-media.com", | ||
| 2380 | - "role": "Developer" | ||
| 2381 | - }, | ||
| 2382 | - { | ||
| 2383 | - "name": "Graham Campbell", | ||
| 2384 | - "email": "graham@alt-three.com", | ||
| 2385 | - "role": "Developer" | ||
| 2386 | - } | ||
| 2387 | - ], | ||
| 2388 | - "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.", | ||
| 2389 | - "homepage": "http://phpseclib.sourceforge.net", | ||
| 2390 | - "keywords": [ | ||
| 2391 | - "BigInteger", | ||
| 2392 | - "aes", | ||
| 2393 | - "asn.1", | ||
| 2394 | - "asn1", | ||
| 2395 | - "blowfish", | ||
| 2396 | - "crypto", | ||
| 2397 | - "cryptography", | ||
| 2398 | - "encryption", | ||
| 2399 | - "rsa", | ||
| 2400 | - "security", | ||
| 2401 | - "sftp", | ||
| 2402 | - "signature", | ||
| 2403 | - "signing", | ||
| 2404 | - "ssh", | ||
| 2405 | - "twofish", | ||
| 2406 | - "x.509", | ||
| 2407 | - "x509" | ||
| 2408 | - ], | ||
| 2409 | - "time": "2017-06-05T06:31:10+00:00" | ||
| 2410 | - }, | ||
| 2411 | - { | ||
| 2412 | - "name": "pimple/pimple", | ||
| 2413 | - "version": "v3.0.2", | ||
| 2414 | - "source": { | ||
| 2415 | - "type": "git", | ||
| 2416 | - "url": "https://github.com/silexphp/Pimple.git", | ||
| 2417 | - "reference": "a30f7d6e57565a2e1a316e1baf2a483f788b258a" | ||
| 2418 | - }, | ||
| 2419 | - "dist": { | ||
| 2420 | - "type": "zip", | ||
| 2421 | - "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a30f7d6e57565a2e1a316e1baf2a483f788b258a", | ||
| 2422 | - "reference": "a30f7d6e57565a2e1a316e1baf2a483f788b258a", | ||
| 2423 | - "shasum": "" | ||
| 2424 | - }, | ||
| 2425 | - "require": { | ||
| 2426 | - "php": ">=5.3.0" | ||
| 2427 | - }, | ||
| 2428 | - "type": "library", | ||
| 2429 | - "extra": { | ||
| 2430 | - "branch-alias": { | ||
| 2431 | - "dev-master": "3.0.x-dev" | ||
| 2432 | - } | ||
| 2433 | - }, | ||
| 2434 | - "autoload": { | ||
| 2435 | - "psr-0": { | ||
| 2436 | - "Pimple": "src/" | ||
| 2437 | - } | ||
| 2438 | - }, | ||
| 2439 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2440 | - "license": [ | ||
| 2441 | - "MIT" | ||
| 2442 | - ], | ||
| 2443 | - "authors": [ | ||
| 2444 | - { | ||
| 2445 | - "name": "Fabien Potencier", | ||
| 2446 | - "email": "fabien@symfony.com" | ||
| 2447 | - } | ||
| 2448 | - ], | ||
| 2449 | - "description": "Pimple, a simple Dependency Injection Container", | ||
| 2450 | - "homepage": "http://pimple.sensiolabs.org", | ||
| 2451 | - "keywords": [ | ||
| 2452 | - "container", | ||
| 2453 | - "dependency injection" | ||
| 2454 | - ], | ||
| 2455 | - "time": "2015-09-11T15:10:35+00:00" | ||
| 2456 | - }, | ||
| 2457 | - { | ||
| 2458 | - "name": "psr/cache", | ||
| 2459 | - "version": "1.0.1", | ||
| 2460 | - "source": { | ||
| 2461 | - "type": "git", | ||
| 2462 | - "url": "https://github.com/php-fig/cache.git", | ||
| 2463 | - "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8" | ||
| 2464 | - }, | ||
| 2465 | - "dist": { | ||
| 2466 | - "type": "zip", | ||
| 2467 | - "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8", | ||
| 2468 | - "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8", | ||
| 2469 | - "shasum": "" | ||
| 2470 | - }, | ||
| 2471 | - "require": { | ||
| 2472 | - "php": ">=5.3.0" | ||
| 2473 | - }, | ||
| 2474 | - "type": "library", | ||
| 2475 | - "extra": { | ||
| 2476 | - "branch-alias": { | ||
| 2477 | - "dev-master": "1.0.x-dev" | ||
| 2478 | - } | ||
| 2479 | - }, | ||
| 2480 | - "autoload": { | ||
| 2481 | - "psr-4": { | ||
| 2482 | - "Psr\\Cache\\": "src/" | ||
| 2483 | - } | ||
| 2484 | - }, | ||
| 2485 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2486 | - "license": [ | ||
| 2487 | - "MIT" | ||
| 2488 | - ], | ||
| 2489 | - "authors": [ | ||
| 2490 | - { | ||
| 2491 | - "name": "PHP-FIG", | ||
| 2492 | - "homepage": "http://www.php-fig.org/" | ||
| 2493 | - } | ||
| 2494 | - ], | ||
| 2495 | - "description": "Common interface for caching libraries", | ||
| 2496 | - "keywords": [ | ||
| 2497 | - "cache", | ||
| 2498 | - "psr", | ||
| 2499 | - "psr-6" | ||
| 2500 | - ], | ||
| 2501 | - "time": "2016-08-06T20:24:11+00:00" | ||
| 2502 | - }, | ||
| 2503 | - { | ||
| 2504 | - "name": "psr/container", | ||
| 2505 | - "version": "1.0.0", | ||
| 2506 | - "source": { | ||
| 2507 | - "type": "git", | ||
| 2508 | - "url": "https://github.com/php-fig/container.git", | ||
| 2509 | - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" | ||
| 2510 | - }, | ||
| 2511 | - "dist": { | ||
| 2512 | - "type": "zip", | ||
| 2513 | - "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", | ||
| 2514 | - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", | ||
| 2515 | - "shasum": "" | ||
| 2516 | - }, | ||
| 2517 | - "require": { | ||
| 2518 | - "php": ">=5.3.0" | ||
| 2519 | - }, | ||
| 2520 | - "type": "library", | ||
| 2521 | - "extra": { | ||
| 2522 | - "branch-alias": { | ||
| 2523 | - "dev-master": "1.0.x-dev" | ||
| 2524 | - } | ||
| 2525 | - }, | ||
| 2526 | - "autoload": { | ||
| 2527 | - "psr-4": { | ||
| 2528 | - "Psr\\Container\\": "src/" | ||
| 2529 | - } | ||
| 2530 | - }, | ||
| 2531 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2532 | - "license": [ | ||
| 2533 | - "MIT" | ||
| 2534 | - ], | ||
| 2535 | - "authors": [ | ||
| 2536 | - { | ||
| 2537 | - "name": "PHP-FIG", | ||
| 2538 | - "homepage": "http://www.php-fig.org/" | ||
| 2539 | - } | ||
| 2540 | - ], | ||
| 2541 | - "description": "Common Container Interface (PHP FIG PSR-11)", | ||
| 2542 | - "homepage": "https://github.com/php-fig/container", | ||
| 2543 | - "keywords": [ | ||
| 2544 | - "PSR-11", | ||
| 2545 | - "container", | ||
| 2546 | - "container-interface", | ||
| 2547 | - "container-interop", | ||
| 2548 | - "psr" | ||
| 2549 | - ], | ||
| 2550 | - "time": "2017-02-14T16:28:37+00:00" | ||
| 2551 | - }, | ||
| 2552 | - { | ||
| 2553 | - "name": "psr/http-message", | ||
| 2554 | - "version": "1.0.1", | ||
| 2555 | - "source": { | ||
| 2556 | - "type": "git", | ||
| 2557 | - "url": "https://github.com/php-fig/http-message.git", | ||
| 2558 | - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" | ||
| 2559 | - }, | ||
| 2560 | - "dist": { | ||
| 2561 | - "type": "zip", | ||
| 2562 | - "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", | ||
| 2563 | - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", | ||
| 2564 | - "shasum": "" | ||
| 2565 | - }, | ||
| 2566 | - "require": { | ||
| 2567 | - "php": ">=5.3.0" | ||
| 2568 | - }, | ||
| 2569 | - "type": "library", | ||
| 2570 | - "extra": { | ||
| 2571 | - "branch-alias": { | ||
| 2572 | - "dev-master": "1.0.x-dev" | ||
| 2573 | - } | ||
| 2574 | - }, | ||
| 2575 | - "autoload": { | ||
| 2576 | - "psr-4": { | ||
| 2577 | - "Psr\\Http\\Message\\": "src/" | ||
| 2578 | - } | ||
| 2579 | - }, | ||
| 2580 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2581 | - "license": [ | ||
| 2582 | - "MIT" | ||
| 2583 | - ], | ||
| 2584 | - "authors": [ | ||
| 2585 | - { | ||
| 2586 | - "name": "PHP-FIG", | ||
| 2587 | - "homepage": "http://www.php-fig.org/" | ||
| 2588 | - } | ||
| 2589 | - ], | ||
| 2590 | - "description": "Common interface for HTTP messages", | ||
| 2591 | - "homepage": "https://github.com/php-fig/http-message", | ||
| 2592 | - "keywords": [ | ||
| 2593 | - "http", | ||
| 2594 | - "http-message", | ||
| 2595 | - "psr", | ||
| 2596 | - "psr-7", | ||
| 2597 | - "request", | ||
| 2598 | - "response" | ||
| 2599 | - ], | ||
| 2600 | - "time": "2016-08-06T14:39:51+00:00" | ||
| 2601 | - }, | ||
| 2602 | - { | ||
| 2603 | - "name": "psr/log", | ||
| 2604 | - "version": "1.0.2", | ||
| 2605 | - "source": { | ||
| 2606 | - "type": "git", | ||
| 2607 | - "url": "https://github.com/php-fig/log.git", | ||
| 2608 | - "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" | ||
| 2609 | - }, | ||
| 2610 | - "dist": { | ||
| 2611 | - "type": "zip", | ||
| 2612 | - "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", | ||
| 2613 | - "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", | ||
| 2614 | - "shasum": "" | ||
| 2615 | - }, | ||
| 2616 | - "require": { | ||
| 2617 | - "php": ">=5.3.0" | ||
| 2618 | - }, | ||
| 2619 | - "type": "library", | ||
| 2620 | - "extra": { | ||
| 2621 | - "branch-alias": { | ||
| 2622 | - "dev-master": "1.0.x-dev" | ||
| 2623 | - } | ||
| 2624 | - }, | ||
| 2625 | - "autoload": { | ||
| 2626 | - "psr-4": { | ||
| 2627 | - "Psr\\Log\\": "Psr/Log/" | ||
| 2628 | - } | ||
| 2629 | - }, | ||
| 2630 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2631 | - "license": [ | ||
| 2632 | - "MIT" | ||
| 2633 | - ], | ||
| 2634 | - "authors": [ | ||
| 2635 | - { | ||
| 2636 | - "name": "PHP-FIG", | ||
| 2637 | - "homepage": "http://www.php-fig.org/" | ||
| 2638 | - } | ||
| 2639 | - ], | ||
| 2640 | - "description": "Common interface for logging libraries", | ||
| 2641 | - "homepage": "https://github.com/php-fig/log", | ||
| 2642 | - "keywords": [ | ||
| 2643 | - "log", | ||
| 2644 | - "psr", | ||
| 2645 | - "psr-3" | ||
| 2646 | - ], | ||
| 2647 | - "time": "2016-10-10T12:19:37+00:00" | ||
| 2648 | - }, | ||
| 2649 | - { | ||
| 2650 | - "name": "rmrevin/yii2-fontawesome", | ||
| 2651 | - "version": "2.17.1", | ||
| 2652 | - "source": { | ||
| 2653 | - "type": "git", | ||
| 2654 | - "url": "https://github.com/rmrevin/yii2-fontawesome.git", | ||
| 2655 | - "reference": "65ce306da864f4d558348aeba040ed7876878090" | ||
| 2656 | - }, | ||
| 2657 | - "dist": { | ||
| 2658 | - "type": "zip", | ||
| 2659 | - "url": "https://api.github.com/repos/rmrevin/yii2-fontawesome/zipball/65ce306da864f4d558348aeba040ed7876878090", | ||
| 2660 | - "reference": "65ce306da864f4d558348aeba040ed7876878090", | ||
| 2661 | - "shasum": "" | ||
| 2662 | - }, | ||
| 2663 | - "require": { | ||
| 2664 | - "fortawesome/font-awesome": "~4.7", | ||
| 2665 | - "php": ">=5.4.0", | ||
| 2666 | - "yiisoft/yii2": "2.0.*" | ||
| 2667 | - }, | ||
| 2668 | - "type": "yii2-extension", | ||
| 2669 | - "extra": { | ||
| 2670 | - "asset-installer-paths": { | ||
| 2671 | - "npm-asset-library": "vendor/npm", | ||
| 2672 | - "bower-asset-library": "vendor/bower" | ||
| 2673 | - } | ||
| 2674 | - }, | ||
| 2675 | - "autoload": { | ||
| 2676 | - "psr-4": { | ||
| 2677 | - "rmrevin\\yii\\fontawesome\\": "" | ||
| 2678 | - } | ||
| 2679 | - }, | ||
| 2680 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2681 | - "license": [ | ||
| 2682 | - "MIT" | ||
| 2683 | - ], | ||
| 2684 | - "authors": [ | ||
| 2685 | - { | ||
| 2686 | - "name": "Revin Roman", | ||
| 2687 | - "email": "roman@rmrevin.com", | ||
| 2688 | - "homepage": "https://rmrevin.com/" | ||
| 2689 | - } | ||
| 2690 | - ], | ||
| 2691 | - "description": "Asset Bundle for Yii2 with Font Awesome", | ||
| 2692 | - "keywords": [ | ||
| 2693 | - "asset", | ||
| 2694 | - "awesome", | ||
| 2695 | - "bundle", | ||
| 2696 | - "font", | ||
| 2697 | - "yii" | ||
| 2698 | - ], | ||
| 2699 | - "time": "2017-01-11T14:05:47+00:00" | ||
| 2700 | - }, | ||
| 2701 | - { | ||
| 2702 | - "name": "skeeks/yii2-assets-auto-compress", | ||
| 2703 | - "version": "1.2.3", | ||
| 2704 | - "source": { | ||
| 2705 | - "type": "git", | ||
| 2706 | - "url": "https://github.com/skeeks-semenov/yii2-assets-auto-compress.git", | ||
| 2707 | - "reference": "18d80abd2bbce79e11fa1c0484ab72f08e772cb2" | ||
| 2708 | - }, | ||
| 2709 | - "dist": { | ||
| 2710 | - "type": "zip", | ||
| 2711 | - "url": "https://api.github.com/repos/skeeks-semenov/yii2-assets-auto-compress/zipball/18d80abd2bbce79e11fa1c0484ab72f08e772cb2", | ||
| 2712 | - "reference": "18d80abd2bbce79e11fa1c0484ab72f08e772cb2", | ||
| 2713 | - "shasum": "" | ||
| 2714 | - }, | ||
| 2715 | - "require": { | ||
| 2716 | - "mrclay/minify": "*", | ||
| 2717 | - "natxet/cssmin": "*", | ||
| 2718 | - "tedivm/jshrink": "*", | ||
| 2719 | - "yiisoft/yii2": "*" | ||
| 2720 | - }, | ||
| 2721 | - "type": "yii2-extension", | ||
| 2722 | - "autoload": { | ||
| 2723 | - "psr-4": { | ||
| 2724 | - "skeeks\\yii2\\assetsAuto\\": "" | ||
| 2725 | - } | ||
| 2726 | - }, | ||
| 2727 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2728 | - "license": [ | ||
| 2729 | - "BSD-3-Clause" | ||
| 2730 | - ], | ||
| 2731 | - "authors": [ | ||
| 2732 | - { | ||
| 2733 | - "name": "Semenov Alexander", | ||
| 2734 | - "email": "semenov@skeeks.com" | ||
| 2735 | - } | ||
| 2736 | - ], | ||
| 2737 | - "description": "Automatically compile and merge files js + css", | ||
| 2738 | - "homepage": "http://www.skeeks.com/", | ||
| 2739 | - "keywords": [ | ||
| 2740 | - "JS", | ||
| 2741 | - "Sx", | ||
| 2742 | - "app", | ||
| 2743 | - "assets", | ||
| 2744 | - "auto assets", | ||
| 2745 | - "css", | ||
| 2746 | - "framework", | ||
| 2747 | - "skeeks", | ||
| 2748 | - "yii" | ||
| 2749 | - ], | ||
| 2750 | - "time": "2016-11-11T08:29:19+00:00" | ||
| 2751 | - }, | ||
| 2752 | - { | ||
| 2753 | - "name": "speixoto/yii2-amcharts", | ||
| 2754 | - "version": "v0.1.1", | ||
| 2755 | - "source": { | ||
| 2756 | - "type": "git", | ||
| 2757 | - "url": "https://github.com/speixoto/yii2-amcharts.git", | ||
| 2758 | - "reference": "2a0c95360710e9a4317fd735fc3392772b75b8af" | ||
| 2759 | - }, | ||
| 2760 | - "dist": { | ||
| 2761 | - "type": "zip", | ||
| 2762 | - "url": "https://api.github.com/repos/speixoto/yii2-amcharts/zipball/2a0c95360710e9a4317fd735fc3392772b75b8af", | ||
| 2763 | - "reference": "2a0c95360710e9a4317fd735fc3392772b75b8af", | ||
| 2764 | - "shasum": "" | ||
| 2765 | - }, | ||
| 2766 | - "require": { | ||
| 2767 | - "bower-asset/amcharts": "*", | ||
| 2768 | - "bower-asset/amcharts-stock": "dev-master", | ||
| 2769 | - "yiisoft/yii2": "*" | ||
| 2770 | - }, | ||
| 2771 | - "type": "yii2-extension", | ||
| 2772 | - "autoload": { | ||
| 2773 | - "psr-4": { | ||
| 2774 | - "speixoto\\amcharts\\": "" | ||
| 2775 | - } | ||
| 2776 | - }, | ||
| 2777 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2778 | - "license": [ | ||
| 2779 | - "MIT" | ||
| 2780 | - ], | ||
| 2781 | - "authors": [ | ||
| 2782 | - { | ||
| 2783 | - "name": "Sérgio Peixoto", | ||
| 2784 | - "email": "matematico2002@hotmail.com" | ||
| 2785 | - } | ||
| 2786 | - ], | ||
| 2787 | - "description": "AmCharts Widget for Yii 2", | ||
| 2788 | - "keywords": [ | ||
| 2789 | - "amcharts", | ||
| 2790 | - "yii" | ||
| 2791 | - ], | ||
| 2792 | - "time": "2016-08-23T13:52:28+00:00" | ||
| 2793 | - }, | ||
| 2794 | - { | ||
| 2795 | - "name": "swiftmailer/swiftmailer", | ||
| 2796 | - "version": "v5.4.8", | ||
| 2797 | - "source": { | ||
| 2798 | - "type": "git", | ||
| 2799 | - "url": "https://github.com/swiftmailer/swiftmailer.git", | ||
| 2800 | - "reference": "9a06dc570a0367850280eefd3f1dc2da45aef517" | ||
| 2801 | - }, | ||
| 2802 | - "dist": { | ||
| 2803 | - "type": "zip", | ||
| 2804 | - "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/9a06dc570a0367850280eefd3f1dc2da45aef517", | ||
| 2805 | - "reference": "9a06dc570a0367850280eefd3f1dc2da45aef517", | ||
| 2806 | - "shasum": "" | ||
| 2807 | - }, | ||
| 2808 | - "require": { | ||
| 2809 | - "php": ">=5.3.3" | ||
| 2810 | - }, | ||
| 2811 | - "require-dev": { | ||
| 2812 | - "mockery/mockery": "~0.9.1", | ||
| 2813 | - "symfony/phpunit-bridge": "~3.2" | ||
| 2814 | - }, | ||
| 2815 | - "type": "library", | ||
| 2816 | - "extra": { | ||
| 2817 | - "branch-alias": { | ||
| 2818 | - "dev-master": "5.4-dev" | ||
| 2819 | - } | ||
| 2820 | - }, | ||
| 2821 | - "autoload": { | ||
| 2822 | - "files": [ | ||
| 2823 | - "lib/swift_required.php" | ||
| 2824 | - ] | ||
| 2825 | - }, | ||
| 2826 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2827 | - "license": [ | ||
| 2828 | - "MIT" | ||
| 2829 | - ], | ||
| 2830 | - "authors": [ | ||
| 2831 | - { | ||
| 2832 | - "name": "Chris Corbyn" | ||
| 2833 | - }, | ||
| 2834 | - { | ||
| 2835 | - "name": "Fabien Potencier", | ||
| 2836 | - "email": "fabien@symfony.com" | ||
| 2837 | - } | ||
| 2838 | - ], | ||
| 2839 | - "description": "Swiftmailer, free feature-rich PHP mailer", | ||
| 2840 | - "homepage": "http://swiftmailer.org", | ||
| 2841 | - "keywords": [ | ||
| 2842 | - "email", | ||
| 2843 | - "mail", | ||
| 2844 | - "mailer" | ||
| 2845 | - ], | ||
| 2846 | - "time": "2017-05-01T15:54:03+00:00" | ||
| 2847 | - }, | ||
| 2848 | - { | ||
| 2849 | - "name": "tedivm/jshrink", | ||
| 2850 | - "version": "v1.2.0", | ||
| 2851 | - "source": { | ||
| 2852 | - "type": "git", | ||
| 2853 | - "url": "https://github.com/tedious/JShrink.git", | ||
| 2854 | - "reference": "667e99774d230525d4d3dc2a50da7ba6b1d56bad" | ||
| 2855 | - }, | ||
| 2856 | - "dist": { | ||
| 2857 | - "type": "zip", | ||
| 2858 | - "url": "https://api.github.com/repos/tedious/JShrink/zipball/667e99774d230525d4d3dc2a50da7ba6b1d56bad", | ||
| 2859 | - "reference": "667e99774d230525d4d3dc2a50da7ba6b1d56bad", | ||
| 2860 | - "shasum": "" | ||
| 2861 | - }, | ||
| 2862 | - "require": { | ||
| 2863 | - "php": "^5.6|^7.0" | ||
| 2864 | - }, | ||
| 2865 | - "require-dev": { | ||
| 2866 | - "fabpot/php-cs-fixer": "0.4.0", | ||
| 2867 | - "phpunit/phpunit": "4.0.*", | ||
| 2868 | - "satooshi/php-coveralls": "^0.7.0" | ||
| 2869 | - }, | ||
| 2870 | - "type": "library", | ||
| 2871 | - "autoload": { | ||
| 2872 | - "psr-0": { | ||
| 2873 | - "JShrink": "src/" | ||
| 2874 | - } | ||
| 2875 | - }, | ||
| 2876 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2877 | - "license": [ | ||
| 2878 | - "BSD-3-Clause" | ||
| 2879 | - ], | ||
| 2880 | - "authors": [ | ||
| 2881 | - { | ||
| 2882 | - "name": "Robert Hafner", | ||
| 2883 | - "email": "tedivm@tedivm.com" | ||
| 2884 | - } | ||
| 2885 | - ], | ||
| 2886 | - "description": "Javascript Minifier built in PHP", | ||
| 2887 | - "homepage": "http://github.com/tedious/JShrink", | ||
| 2888 | - "keywords": [ | ||
| 2889 | - "javascript", | ||
| 2890 | - "minifier" | ||
| 2891 | - ], | ||
| 2892 | - "time": "2017-05-30T02:59:46+00:00" | ||
| 2893 | - }, | ||
| 2894 | - { | ||
| 2895 | - "name": "tinymce/tinymce", | ||
| 2896 | - "version": "4.6.3", | ||
| 2897 | - "source": { | ||
| 2898 | - "type": "git", | ||
| 2899 | - "url": "https://github.com/tinymce/tinymce-dist.git", | ||
| 2900 | - "reference": "64bf45565b3f99f6c2313363ddd0f86077a84406" | ||
| 2901 | - }, | ||
| 2902 | - "dist": { | ||
| 2903 | - "type": "zip", | ||
| 2904 | - "url": "https://api.github.com/repos/tinymce/tinymce-dist/zipball/64bf45565b3f99f6c2313363ddd0f86077a84406", | ||
| 2905 | - "reference": "64bf45565b3f99f6c2313363ddd0f86077a84406", | ||
| 2906 | - "shasum": "" | ||
| 2907 | - }, | ||
| 2908 | - "type": "component", | ||
| 2909 | - "extra": { | ||
| 2910 | - "component": { | ||
| 2911 | - "scripts": [ | ||
| 2912 | - "tinymce.js", | ||
| 2913 | - "plugins/*/plugin.js", | ||
| 2914 | - "themes/*/theme.js" | ||
| 2915 | - ], | ||
| 2916 | - "files": [ | ||
| 2917 | - "tinymce.min.js", | ||
| 2918 | - "plugins/*/plugin.min.js", | ||
| 2919 | - "themes/*/theme.min.js", | ||
| 2920 | - "skins/**" | ||
| 2921 | - ] | ||
| 2922 | - } | ||
| 2923 | - }, | ||
| 2924 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2925 | - "license": [ | ||
| 2926 | - "LGPL-2.1" | ||
| 2927 | - ], | ||
| 2928 | - "description": "Web based JavaScript HTML WYSIWYG editor control.", | ||
| 2929 | - "homepage": "http://www.tinymce.com", | ||
| 2930 | - "keywords": [ | ||
| 2931 | - "editor", | ||
| 2932 | - "html", | ||
| 2933 | - "javascript", | ||
| 2934 | - "richtext", | ||
| 2935 | - "tinymce", | ||
| 2936 | - "wysiwyg" | ||
| 2937 | - ], | ||
| 2938 | - "time": "2017-05-30T12:56:46+00:00" | ||
| 2939 | - }, | ||
| 2940 | - { | ||
| 2941 | - "name": "tubalmartin/cssmin", | ||
| 2942 | - "version": "v4.1.0", | ||
| 2943 | - "source": { | ||
| 2944 | - "type": "git", | ||
| 2945 | - "url": "https://github.com/tubalmartin/YUI-CSS-compressor-PHP-port.git", | ||
| 2946 | - "reference": "1c7ae93cf6b392d4dae5c4ae18979918413af16e" | ||
| 2947 | - }, | ||
| 2948 | - "dist": { | ||
| 2949 | - "type": "zip", | ||
| 2950 | - "url": "https://api.github.com/repos/tubalmartin/YUI-CSS-compressor-PHP-port/zipball/1c7ae93cf6b392d4dae5c4ae18979918413af16e", | ||
| 2951 | - "reference": "1c7ae93cf6b392d4dae5c4ae18979918413af16e", | ||
| 2952 | - "shasum": "" | ||
| 2953 | - }, | ||
| 2954 | - "require": { | ||
| 2955 | - "ext-pcre": "*", | ||
| 2956 | - "php": ">=5.3.2" | ||
| 2957 | - }, | ||
| 2958 | - "require-dev": { | ||
| 2959 | - "cogpowered/finediff": "0.3.*", | ||
| 2960 | - "phpunit/phpunit": "4.8.*" | ||
| 2961 | - }, | ||
| 2962 | - "bin": [ | ||
| 2963 | - "cssmin" | ||
| 2964 | - ], | ||
| 2965 | - "type": "library", | ||
| 2966 | - "autoload": { | ||
| 2967 | - "psr-4": { | ||
| 2968 | - "tubalmartin\\CssMin\\": "src" | ||
| 2969 | - } | ||
| 2970 | - }, | ||
| 2971 | - "notification-url": "https://packagist.org/downloads/", | ||
| 2972 | - "license": [ | ||
| 2973 | - "BSD-3-Clause" | ||
| 2974 | - ], | ||
| 2975 | - "authors": [ | ||
| 2976 | - { | ||
| 2977 | - "name": "Túbal Martín", | ||
| 2978 | - "homepage": "http://tubalmartin.me/" | ||
| 2979 | - } | ||
| 2980 | - ], | ||
| 2981 | - "description": "A PHP port of the YUI CSS compressor", | ||
| 2982 | - "homepage": "https://github.com/tubalmartin/YUI-CSS-compressor-PHP-port", | ||
| 2983 | - "keywords": [ | ||
| 2984 | - "compress", | ||
| 2985 | - "compressor", | ||
| 2986 | - "css", | ||
| 2987 | - "cssmin", | ||
| 2988 | - "minify", | ||
| 2989 | - "yui" | ||
| 2990 | - ], | ||
| 2991 | - "time": "2017-05-16T13:45:26+00:00" | ||
| 2992 | - }, | ||
| 2993 | - { | ||
| 2994 | - "name": "yii2tech/filedb", | ||
| 2995 | - "version": "1.0.3", | ||
| 2996 | - "source": { | ||
| 2997 | - "type": "git", | ||
| 2998 | - "url": "https://github.com/yii2tech/filedb.git", | ||
| 2999 | - "reference": "29af3a707fa2070b73b268e847b264f29c7dff31" | ||
| 3000 | - }, | ||
| 3001 | - "dist": { | ||
| 3002 | - "type": "zip", | ||
| 3003 | - "url": "https://api.github.com/repos/yii2tech/filedb/zipball/29af3a707fa2070b73b268e847b264f29c7dff31", | ||
| 3004 | - "reference": "29af3a707fa2070b73b268e847b264f29c7dff31", | ||
| 3005 | - "shasum": "" | ||
| 3006 | - }, | ||
| 3007 | - "require": { | ||
| 3008 | - "yiisoft/yii2": "*" | ||
| 3009 | - }, | ||
| 3010 | - "type": "yii2-extension", | ||
| 3011 | - "extra": { | ||
| 3012 | - "branch-alias": { | ||
| 3013 | - "dev-master": "1.0.x-dev" | ||
| 3014 | - } | ||
| 3015 | - }, | ||
| 3016 | - "autoload": { | ||
| 3017 | - "psr-4": { | ||
| 3018 | - "yii2tech\\filedb\\": "" | ||
| 3019 | - } | ||
| 3020 | - }, | ||
| 3021 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3022 | - "license": [ | ||
| 3023 | - "BSD-3-Clause" | ||
| 3024 | - ], | ||
| 3025 | - "authors": [ | ||
| 3026 | - { | ||
| 3027 | - "name": "Paul Klimov", | ||
| 3028 | - "email": "klimov.paul@gmail.com" | ||
| 3029 | - } | ||
| 3030 | - ], | ||
| 3031 | - "description": "Provides ActiveRecord interface for data declared in static files", | ||
| 3032 | - "keywords": [ | ||
| 3033 | - "active", | ||
| 3034 | - "filedb", | ||
| 3035 | - "record", | ||
| 3036 | - "static", | ||
| 3037 | - "yii2" | ||
| 3038 | - ], | ||
| 3039 | - "time": "2017-02-06T10:58:30+00:00" | ||
| 3040 | - }, | ||
| 3041 | - { | ||
| 3042 | - "name": "yiisoft/yii2", | ||
| 3043 | - "version": "2.0.12", | ||
| 3044 | - "source": { | ||
| 3045 | - "type": "git", | ||
| 3046 | - "url": "https://github.com/yiisoft/yii2-framework.git", | ||
| 3047 | - "reference": "70acbecc75cb26b6cd66d16be0b06e4b73db190d" | ||
| 3048 | - }, | ||
| 3049 | - "dist": { | ||
| 3050 | - "type": "zip", | ||
| 3051 | - "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/70acbecc75cb26b6cd66d16be0b06e4b73db190d", | ||
| 3052 | - "reference": "70acbecc75cb26b6cd66d16be0b06e4b73db190d", | ||
| 3053 | - "shasum": "" | ||
| 3054 | - }, | ||
| 3055 | - "require": { | ||
| 3056 | - "bower-asset/jquery": "2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable", | ||
| 3057 | - "bower-asset/jquery.inputmask": "~3.2.2 | ~3.3.5", | ||
| 3058 | - "bower-asset/punycode": "1.3.*", | ||
| 3059 | - "bower-asset/yii2-pjax": "~2.0.1", | ||
| 3060 | - "cebe/markdown": "~1.0.0 | ~1.1.0", | ||
| 3061 | - "ext-ctype": "*", | ||
| 3062 | - "ext-mbstring": "*", | ||
| 3063 | - "ezyang/htmlpurifier": "~4.6", | ||
| 3064 | - "lib-pcre": "*", | ||
| 3065 | - "php": ">=5.4.0", | ||
| 3066 | - "yiisoft/yii2-composer": "~2.0.4" | ||
| 3067 | - }, | ||
| 3068 | - "bin": [ | ||
| 3069 | - "yii" | ||
| 3070 | - ], | ||
| 3071 | - "type": "library", | ||
| 3072 | - "extra": { | ||
| 3073 | - "branch-alias": { | ||
| 3074 | - "dev-master": "2.0.x-dev" | ||
| 3075 | - } | ||
| 3076 | - }, | ||
| 3077 | - "autoload": { | ||
| 3078 | - "psr-4": { | ||
| 3079 | - "yii\\": "" | ||
| 3080 | - } | ||
| 3081 | - }, | ||
| 3082 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3083 | - "license": [ | ||
| 3084 | - "BSD-3-Clause" | ||
| 3085 | - ], | ||
| 3086 | - "authors": [ | ||
| 3087 | - { | ||
| 3088 | - "name": "Qiang Xue", | ||
| 3089 | - "email": "qiang.xue@gmail.com", | ||
| 3090 | - "homepage": "http://www.yiiframework.com/", | ||
| 3091 | - "role": "Founder and project lead" | ||
| 3092 | - }, | ||
| 3093 | - { | ||
| 3094 | - "name": "Alexander Makarov", | ||
| 3095 | - "email": "sam@rmcreative.ru", | ||
| 3096 | - "homepage": "http://rmcreative.ru/", | ||
| 3097 | - "role": "Core framework development" | ||
| 3098 | - }, | ||
| 3099 | - { | ||
| 3100 | - "name": "Maurizio Domba", | ||
| 3101 | - "homepage": "http://mdomba.info/", | ||
| 3102 | - "role": "Core framework development" | ||
| 3103 | - }, | ||
| 3104 | - { | ||
| 3105 | - "name": "Carsten Brandt", | ||
| 3106 | - "email": "mail@cebe.cc", | ||
| 3107 | - "homepage": "http://cebe.cc/", | ||
| 3108 | - "role": "Core framework development" | ||
| 3109 | - }, | ||
| 3110 | - { | ||
| 3111 | - "name": "Timur Ruziev", | ||
| 3112 | - "email": "resurtm@gmail.com", | ||
| 3113 | - "homepage": "http://resurtm.com/", | ||
| 3114 | - "role": "Core framework development" | ||
| 3115 | - }, | ||
| 3116 | - { | ||
| 3117 | - "name": "Paul Klimov", | ||
| 3118 | - "email": "klimov.paul@gmail.com", | ||
| 3119 | - "role": "Core framework development" | ||
| 3120 | - }, | ||
| 3121 | - { | ||
| 3122 | - "name": "Dmitry Naumenko", | ||
| 3123 | - "email": "d.naumenko.a@gmail.com", | ||
| 3124 | - "role": "Core framework development" | ||
| 3125 | - }, | ||
| 3126 | - { | ||
| 3127 | - "name": "Boudewijn Vahrmeijer", | ||
| 3128 | - "email": "info@dynasource.eu", | ||
| 3129 | - "homepage": "http://dynasource.eu", | ||
| 3130 | - "role": "Core framework development" | ||
| 3131 | - } | ||
| 3132 | - ], | ||
| 3133 | - "description": "Yii PHP Framework Version 2", | ||
| 3134 | - "homepage": "http://www.yiiframework.com/", | ||
| 3135 | - "keywords": [ | ||
| 3136 | - "framework", | ||
| 3137 | - "yii2" | ||
| 3138 | - ], | ||
| 3139 | - "time": "2017-06-05T14:33:41+00:00" | ||
| 3140 | - }, | ||
| 3141 | - { | ||
| 3142 | - "name": "yiisoft/yii2-bootstrap", | ||
| 3143 | - "version": "2.0.6", | ||
| 3144 | - "source": { | ||
| 3145 | - "type": "git", | ||
| 3146 | - "url": "https://github.com/yiisoft/yii2-bootstrap.git", | ||
| 3147 | - "reference": "3fd2b8c950cce79d60e9702d6bcb24eb3c80f6c5" | ||
| 3148 | - }, | ||
| 3149 | - "dist": { | ||
| 3150 | - "type": "zip", | ||
| 3151 | - "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/3fd2b8c950cce79d60e9702d6bcb24eb3c80f6c5", | ||
| 3152 | - "reference": "3fd2b8c950cce79d60e9702d6bcb24eb3c80f6c5", | ||
| 3153 | - "shasum": "" | ||
| 3154 | - }, | ||
| 3155 | - "require": { | ||
| 3156 | - "bower-asset/bootstrap": "3.3.* | 3.2.* | 3.1.*", | ||
| 3157 | - "yiisoft/yii2": ">=2.0.6" | ||
| 3158 | - }, | ||
| 3159 | - "type": "yii2-extension", | ||
| 3160 | - "extra": { | ||
| 3161 | - "branch-alias": { | ||
| 3162 | - "dev-master": "2.0.x-dev" | ||
| 3163 | - }, | ||
| 3164 | - "asset-installer-paths": { | ||
| 3165 | - "npm-asset-library": "vendor/npm", | ||
| 3166 | - "bower-asset-library": "vendor/bower" | ||
| 3167 | - } | ||
| 3168 | - }, | ||
| 3169 | - "autoload": { | ||
| 3170 | - "psr-4": { | ||
| 3171 | - "yii\\bootstrap\\": "" | ||
| 3172 | - } | ||
| 3173 | - }, | ||
| 3174 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3175 | - "license": [ | ||
| 3176 | - "BSD-3-Clause" | ||
| 3177 | - ], | ||
| 3178 | - "authors": [ | ||
| 3179 | - { | ||
| 3180 | - "name": "Qiang Xue", | ||
| 3181 | - "email": "qiang.xue@gmail.com" | ||
| 3182 | - } | ||
| 3183 | - ], | ||
| 3184 | - "description": "The Twitter Bootstrap extension for the Yii framework", | ||
| 3185 | - "keywords": [ | ||
| 3186 | - "bootstrap", | ||
| 3187 | - "yii2" | ||
| 3188 | - ], | ||
| 3189 | - "time": "2016-03-17T03:29:28+00:00" | ||
| 3190 | - }, | ||
| 3191 | - { | ||
| 3192 | - "name": "yiisoft/yii2-composer", | ||
| 3193 | - "version": "2.0.5", | ||
| 3194 | - "source": { | ||
| 3195 | - "type": "git", | ||
| 3196 | - "url": "https://github.com/yiisoft/yii2-composer.git", | ||
| 3197 | - "reference": "3f4923c2bde6caf3f5b88cc22fdd5770f52f8df2" | ||
| 3198 | - }, | ||
| 3199 | - "dist": { | ||
| 3200 | - "type": "zip", | ||
| 3201 | - "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/3f4923c2bde6caf3f5b88cc22fdd5770f52f8df2", | ||
| 3202 | - "reference": "3f4923c2bde6caf3f5b88cc22fdd5770f52f8df2", | ||
| 3203 | - "shasum": "" | ||
| 3204 | - }, | ||
| 3205 | - "require": { | ||
| 3206 | - "composer-plugin-api": "^1.0" | ||
| 3207 | - }, | ||
| 3208 | - "require-dev": { | ||
| 3209 | - "composer/composer": "^1.0" | ||
| 3210 | - }, | ||
| 3211 | - "type": "composer-plugin", | ||
| 3212 | - "extra": { | ||
| 3213 | - "class": "yii\\composer\\Plugin", | ||
| 3214 | - "branch-alias": { | ||
| 3215 | - "dev-master": "2.0.x-dev" | ||
| 3216 | - } | ||
| 3217 | - }, | ||
| 3218 | - "autoload": { | ||
| 3219 | - "psr-4": { | ||
| 3220 | - "yii\\composer\\": "" | ||
| 3221 | - } | ||
| 3222 | - }, | ||
| 3223 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3224 | - "license": [ | ||
| 3225 | - "BSD-3-Clause" | ||
| 3226 | - ], | ||
| 3227 | - "authors": [ | ||
| 3228 | - { | ||
| 3229 | - "name": "Qiang Xue", | ||
| 3230 | - "email": "qiang.xue@gmail.com" | ||
| 3231 | - } | ||
| 3232 | - ], | ||
| 3233 | - "description": "The composer plugin for Yii extension installer", | ||
| 3234 | - "keywords": [ | ||
| 3235 | - "composer", | ||
| 3236 | - "extension installer", | ||
| 3237 | - "yii2" | ||
| 3238 | - ], | ||
| 3239 | - "time": "2016-12-20T13:26:02+00:00" | ||
| 3240 | - }, | ||
| 3241 | - { | ||
| 3242 | - "name": "yiisoft/yii2-imagine", | ||
| 3243 | - "version": "2.1.0", | ||
| 3244 | - "source": { | ||
| 3245 | - "type": "git", | ||
| 3246 | - "url": "https://github.com/yiisoft/yii2-imagine.git", | ||
| 3247 | - "reference": "59dcd0b43c2b0e5495c7e5c0320e2cbc1cd57411" | ||
| 3248 | - }, | ||
| 3249 | - "dist": { | ||
| 3250 | - "type": "zip", | ||
| 3251 | - "url": "https://api.github.com/repos/yiisoft/yii2-imagine/zipball/59dcd0b43c2b0e5495c7e5c0320e2cbc1cd57411", | ||
| 3252 | - "reference": "59dcd0b43c2b0e5495c7e5c0320e2cbc1cd57411", | ||
| 3253 | - "shasum": "" | ||
| 3254 | - }, | ||
| 3255 | - "require": { | ||
| 3256 | - "imagine/imagine": "~0.6.0", | ||
| 3257 | - "yiisoft/yii2": "~2.0.0" | ||
| 3258 | - }, | ||
| 3259 | - "type": "yii2-extension", | ||
| 3260 | - "extra": { | ||
| 3261 | - "branch-alias": { | ||
| 3262 | - "dev-master": "2.0.x-dev" | ||
| 3263 | - } | ||
| 3264 | - }, | ||
| 3265 | - "autoload": { | ||
| 3266 | - "psr-4": { | ||
| 3267 | - "yii\\imagine\\": "" | ||
| 3268 | - } | ||
| 3269 | - }, | ||
| 3270 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3271 | - "license": [ | ||
| 3272 | - "BSD-3-Clause" | ||
| 3273 | - ], | ||
| 3274 | - "authors": [ | ||
| 3275 | - { | ||
| 3276 | - "name": "Antonio Ramirez", | ||
| 3277 | - "email": "amigo.cobos@gmail.com" | ||
| 3278 | - } | ||
| 3279 | - ], | ||
| 3280 | - "description": "The Imagine integration for the Yii framework", | ||
| 3281 | - "keywords": [ | ||
| 3282 | - "helper", | ||
| 3283 | - "image", | ||
| 3284 | - "imagine", | ||
| 3285 | - "yii2" | ||
| 3286 | - ], | ||
| 3287 | - "time": "2016-11-03T19:28:39+00:00" | ||
| 3288 | - }, | ||
| 3289 | - { | ||
| 3290 | - "name": "yiisoft/yii2-swiftmailer", | ||
| 3291 | - "version": "2.0.7", | ||
| 3292 | - "source": { | ||
| 3293 | - "type": "git", | ||
| 3294 | - "url": "https://github.com/yiisoft/yii2-swiftmailer.git", | ||
| 3295 | - "reference": "8a03a62cbcb82e7697d3002eb43a8d2637f566ec" | ||
| 3296 | - }, | ||
| 3297 | - "dist": { | ||
| 3298 | - "type": "zip", | ||
| 3299 | - "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/8a03a62cbcb82e7697d3002eb43a8d2637f566ec", | ||
| 3300 | - "reference": "8a03a62cbcb82e7697d3002eb43a8d2637f566ec", | ||
| 3301 | - "shasum": "" | ||
| 3302 | - }, | ||
| 3303 | - "require": { | ||
| 3304 | - "swiftmailer/swiftmailer": "~5.0", | ||
| 3305 | - "yiisoft/yii2": "~2.0.4" | ||
| 3306 | - }, | ||
| 3307 | - "type": "yii2-extension", | ||
| 3308 | - "extra": { | ||
| 3309 | - "branch-alias": { | ||
| 3310 | - "dev-master": "2.0.x-dev" | ||
| 3311 | - } | ||
| 3312 | - }, | ||
| 3313 | - "autoload": { | ||
| 3314 | - "psr-4": { | ||
| 3315 | - "yii\\swiftmailer\\": "" | ||
| 3316 | - } | ||
| 3317 | - }, | ||
| 3318 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3319 | - "license": [ | ||
| 3320 | - "BSD-3-Clause" | ||
| 3321 | - ], | ||
| 3322 | - "authors": [ | ||
| 3323 | - { | ||
| 3324 | - "name": "Paul Klimov", | ||
| 3325 | - "email": "klimov.paul@gmail.com" | ||
| 3326 | - } | ||
| 3327 | - ], | ||
| 3328 | - "description": "The SwiftMailer integration for the Yii framework", | ||
| 3329 | - "keywords": [ | ||
| 3330 | - "email", | ||
| 3331 | - "mail", | ||
| 3332 | - "mailer", | ||
| 3333 | - "swift", | ||
| 3334 | - "swiftmailer", | ||
| 3335 | - "yii2" | ||
| 3336 | - ], | ||
| 3337 | - "time": "2017-05-01T08:29:00+00:00" | ||
| 3338 | - }, | ||
| 3339 | - { | ||
| 3340 | - "name": "yiister/yii2-gentelella", | ||
| 3341 | - "version": "1.2.2", | ||
| 3342 | - "source": { | ||
| 3343 | - "type": "git", | ||
| 3344 | - "url": "https://github.com/yiister/yii2-gentelella.git", | ||
| 3345 | - "reference": "646ae0053c4a485d6b3d42c4ef67cbee26d74ef7" | ||
| 3346 | - }, | ||
| 3347 | - "dist": { | ||
| 3348 | - "type": "zip", | ||
| 3349 | - "url": "https://api.github.com/repos/yiister/yii2-gentelella/zipball/646ae0053c4a485d6b3d42c4ef67cbee26d74ef7", | ||
| 3350 | - "reference": "646ae0053c4a485d6b3d42c4ef67cbee26d74ef7", | ||
| 3351 | - "shasum": "" | ||
| 3352 | - }, | ||
| 3353 | - "require": { | ||
| 3354 | - "bower-asset/gentelella": "*", | ||
| 3355 | - "php": ">=5.4.0", | ||
| 3356 | - "rmrevin/yii2-fontawesome": "~2.0", | ||
| 3357 | - "yiisoft/yii2": "~2.0.0", | ||
| 3358 | - "yiisoft/yii2-bootstrap": "~2.0.0" | ||
| 3359 | - }, | ||
| 3360 | - "type": "yii2-extension", | ||
| 3361 | - "extra": { | ||
| 3362 | - "asset-installer-paths": { | ||
| 3363 | - "npm-asset-library": "vendor/npm", | ||
| 3364 | - "bower-asset-library": "vendor/bower" | ||
| 3365 | - } | ||
| 3366 | - }, | ||
| 3367 | - "autoload": { | ||
| 3368 | - "psr-4": { | ||
| 3369 | - "yiister\\gentelella\\": "" | ||
| 3370 | - } | ||
| 3371 | - }, | ||
| 3372 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3373 | - "license": [ | ||
| 3374 | - "MIT" | ||
| 3375 | - ], | ||
| 3376 | - "authors": [ | ||
| 3377 | - { | ||
| 3378 | - "name": "Pavel Fedotov", | ||
| 3379 | - "email": "fps.06@mail.ru", | ||
| 3380 | - "homepage": "https://github.com/fps01", | ||
| 3381 | - "role": "Creator" | ||
| 3382 | - } | ||
| 3383 | - ], | ||
| 3384 | - "description": "Free admin template for backend", | ||
| 3385 | - "keywords": [ | ||
| 3386 | - "admin", | ||
| 3387 | - "asset", | ||
| 3388 | - "backend", | ||
| 3389 | - "bootsprap3", | ||
| 3390 | - "extension", | ||
| 3391 | - "gentelella", | ||
| 3392 | - "theme", | ||
| 3393 | - "yii2" | ||
| 3394 | - ], | ||
| 3395 | - "time": "2017-05-22T11:24:30+00:00" | ||
| 3396 | - }, | ||
| 3397 | - { | ||
| 3398 | - "name": "zyx/zyx-phpmailer", | ||
| 3399 | - "version": "0.9.2", | ||
| 3400 | - "source": { | ||
| 3401 | - "type": "git", | ||
| 3402 | - "url": "https://github.com/SDKiller/zyx-phpmailer.git", | ||
| 3403 | - "reference": "2032706c35a345f875c4acf310600098a37ca469" | ||
| 3404 | - }, | ||
| 3405 | - "dist": { | ||
| 3406 | - "type": "zip", | ||
| 3407 | - "url": "https://api.github.com/repos/SDKiller/zyx-phpmailer/zipball/2032706c35a345f875c4acf310600098a37ca469", | ||
| 3408 | - "reference": "2032706c35a345f875c4acf310600098a37ca469", | ||
| 3409 | - "shasum": "" | ||
| 3410 | - }, | ||
| 3411 | - "require": { | ||
| 3412 | - "phpmailer/phpmailer": "v5.2.8", | ||
| 3413 | - "yiisoft/yii2": "*" | ||
| 3414 | - }, | ||
| 3415 | - "type": "yii2-extension", | ||
| 3416 | - "autoload": { | ||
| 3417 | - "psr-4": { | ||
| 3418 | - "zyx\\phpmailer\\": "" | ||
| 3419 | - } | ||
| 3420 | - }, | ||
| 3421 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3422 | - "license": [ | ||
| 3423 | - "BSD-3-Clause" | ||
| 3424 | - ], | ||
| 3425 | - "authors": [ | ||
| 3426 | - { | ||
| 3427 | - "name": "Serge Postrash aka SDKiller", | ||
| 3428 | - "email": "jexy.ru@gmail.com" | ||
| 3429 | - } | ||
| 3430 | - ], | ||
| 3431 | - "description": "PHPMailer integration for Yii 2 framework", | ||
| 3432 | - "keywords": [ | ||
| 3433 | - "email", | ||
| 3434 | - "mail", | ||
| 3435 | - "mailer", | ||
| 3436 | - "phpmailer", | ||
| 3437 | - "yii2" | ||
| 3438 | - ], | ||
| 3439 | - "time": "2014-05-14T20:30:24+00:00" | ||
| 3440 | - } | ||
| 3441 | - ], | ||
| 3442 | - "packages-dev": [ | ||
| 3443 | - { | ||
| 3444 | - "name": "behat/gherkin", | ||
| 3445 | - "version": "v4.4.5", | ||
| 3446 | - "source": { | ||
| 3447 | - "type": "git", | ||
| 3448 | - "url": "https://github.com/Behat/Gherkin.git", | ||
| 3449 | - "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74" | ||
| 3450 | - }, | ||
| 3451 | - "dist": { | ||
| 3452 | - "type": "zip", | ||
| 3453 | - "url": "https://api.github.com/repos/Behat/Gherkin/zipball/5c14cff4f955b17d20d088dec1bde61c0539ec74", | ||
| 3454 | - "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74", | ||
| 3455 | - "shasum": "" | ||
| 3456 | - }, | ||
| 3457 | - "require": { | ||
| 3458 | - "php": ">=5.3.1" | ||
| 3459 | - }, | ||
| 3460 | - "require-dev": { | ||
| 3461 | - "phpunit/phpunit": "~4.5|~5", | ||
| 3462 | - "symfony/phpunit-bridge": "~2.7|~3", | ||
| 3463 | - "symfony/yaml": "~2.3|~3" | ||
| 3464 | - }, | ||
| 3465 | - "suggest": { | ||
| 3466 | - "symfony/yaml": "If you want to parse features, represented in YAML files" | ||
| 3467 | - }, | ||
| 3468 | - "type": "library", | ||
| 3469 | - "extra": { | ||
| 3470 | - "branch-alias": { | ||
| 3471 | - "dev-master": "4.4-dev" | ||
| 3472 | - } | ||
| 3473 | - }, | ||
| 3474 | - "autoload": { | ||
| 3475 | - "psr-0": { | ||
| 3476 | - "Behat\\Gherkin": "src/" | ||
| 3477 | - } | ||
| 3478 | - }, | ||
| 3479 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3480 | - "license": [ | ||
| 3481 | - "MIT" | ||
| 3482 | - ], | ||
| 3483 | - "authors": [ | ||
| 3484 | - { | ||
| 3485 | - "name": "Konstantin Kudryashov", | ||
| 3486 | - "email": "ever.zet@gmail.com", | ||
| 3487 | - "homepage": "http://everzet.com" | ||
| 3488 | - } | ||
| 3489 | - ], | ||
| 3490 | - "description": "Gherkin DSL parser for PHP 5.3", | ||
| 3491 | - "homepage": "http://behat.org/", | ||
| 3492 | - "keywords": [ | ||
| 3493 | - "BDD", | ||
| 3494 | - "Behat", | ||
| 3495 | - "Cucumber", | ||
| 3496 | - "DSL", | ||
| 3497 | - "gherkin", | ||
| 3498 | - "parser" | ||
| 3499 | - ], | ||
| 3500 | - "time": "2016-10-30T11:50:56+00:00" | ||
| 3501 | - }, | ||
| 3502 | - { | ||
| 3503 | - "name": "bower-asset/typeahead.js", | ||
| 3504 | - "version": "v0.11.1", | ||
| 3505 | - "source": { | ||
| 3506 | - "type": "git", | ||
| 3507 | - "url": "https://github.com/twitter/typeahead.js.git", | ||
| 3508 | - "reference": "588440f66559714280628a4f9799f0c4eb880a4a" | ||
| 3509 | - }, | ||
| 3510 | - "dist": { | ||
| 3511 | - "type": "zip", | ||
| 3512 | - "url": "https://api.github.com/repos/twitter/typeahead.js/zipball/588440f66559714280628a4f9799f0c4eb880a4a", | ||
| 3513 | - "reference": "588440f66559714280628a4f9799f0c4eb880a4a", | ||
| 3514 | - "shasum": "" | ||
| 3515 | - }, | ||
| 3516 | - "require": { | ||
| 3517 | - "bower-asset/jquery": ">=1.7" | ||
| 3518 | - }, | ||
| 3519 | - "require-dev": { | ||
| 3520 | - "bower-asset/jasmine-ajax": "~1.3.1", | ||
| 3521 | - "bower-asset/jasmine-jquery": "~1.5.2", | ||
| 3522 | - "bower-asset/jquery": "~1.7" | ||
| 3523 | - }, | ||
| 3524 | - "type": "bower-asset-library", | ||
| 3525 | - "extra": { | ||
| 3526 | - "bower-asset-main": "dist/typeahead.bundle.js" | ||
| 3527 | - } | ||
| 3528 | - }, | ||
| 3529 | - { | ||
| 3530 | - "name": "codeception/base", | ||
| 3531 | - "version": "2.3.3", | ||
| 3532 | - "source": { | ||
| 3533 | - "type": "git", | ||
| 3534 | - "url": "https://github.com/Codeception/base.git", | ||
| 3535 | - "reference": "6724500be5f890b086440a7f40941565b313b3d1" | ||
| 3536 | - }, | ||
| 3537 | - "dist": { | ||
| 3538 | - "type": "zip", | ||
| 3539 | - "url": "https://api.github.com/repos/Codeception/base/zipball/6724500be5f890b086440a7f40941565b313b3d1", | ||
| 3540 | - "reference": "6724500be5f890b086440a7f40941565b313b3d1", | ||
| 3541 | - "shasum": "" | ||
| 3542 | - }, | ||
| 3543 | - "require": { | ||
| 3544 | - "behat/gherkin": "~4.4.0", | ||
| 3545 | - "ext-json": "*", | ||
| 3546 | - "ext-mbstring": "*", | ||
| 3547 | - "guzzlehttp/psr7": "~1.0", | ||
| 3548 | - "php": ">=5.4.0 <8.0", | ||
| 3549 | - "phpunit/php-code-coverage": ">=2.2.4 <6.0", | ||
| 3550 | - "phpunit/phpunit": ">4.8.20 <7.0", | ||
| 3551 | - "phpunit/phpunit-mock-objects": ">2.3 <5.0", | ||
| 3552 | - "sebastian/comparator": ">1.1 <3.0", | ||
| 3553 | - "sebastian/diff": "^1.4", | ||
| 3554 | - "stecman/symfony-console-completion": "^0.7.0", | ||
| 3555 | - "symfony/browser-kit": ">=2.7 <4.0", | ||
| 3556 | - "symfony/console": ">=2.7 <4.0", | ||
| 3557 | - "symfony/css-selector": ">=2.7 <4.0", | ||
| 3558 | - "symfony/dom-crawler": ">=2.7.5 <4.0", | ||
| 3559 | - "symfony/event-dispatcher": ">=2.7 <4.0", | ||
| 3560 | - "symfony/finder": ">=2.7 <4.0", | ||
| 3561 | - "symfony/yaml": ">=2.7 <4.0" | ||
| 3562 | - }, | ||
| 3563 | - "require-dev": { | ||
| 3564 | - "codeception/specify": "~0.3", | ||
| 3565 | - "facebook/graph-sdk": "~5.3", | ||
| 3566 | - "flow/jsonpath": "~0.2", | ||
| 3567 | - "league/factory-muffin": "^3.0", | ||
| 3568 | - "league/factory-muffin-faker": "^1.0", | ||
| 3569 | - "mongodb/mongodb": "^1.0", | ||
| 3570 | - "monolog/monolog": "~1.8", | ||
| 3571 | - "pda/pheanstalk": "~3.0", | ||
| 3572 | - "php-amqplib/php-amqplib": "~2.4", | ||
| 3573 | - "predis/predis": "^1.0", | ||
| 3574 | - "squizlabs/php_codesniffer": "~2.0", | ||
| 3575 | - "vlucas/phpdotenv": "^2.4.0" | ||
| 3576 | - }, | ||
| 3577 | - "suggest": { | ||
| 3578 | - "codeception/specify": "BDD-style code blocks", | ||
| 3579 | - "codeception/verify": "BDD-style assertions", | ||
| 3580 | - "flow/jsonpath": "For using JSONPath in REST module", | ||
| 3581 | - "league/factory-muffin": "For DataFactory module", | ||
| 3582 | - "league/factory-muffin-faker": "For Faker support in DataFactory module", | ||
| 3583 | - "phpseclib/phpseclib": "for SFTP option in FTP Module", | ||
| 3584 | - "symfony/phpunit-bridge": "For phpunit-bridge support" | ||
| 3585 | - }, | ||
| 3586 | - "bin": [ | ||
| 3587 | - "codecept" | ||
| 3588 | - ], | ||
| 3589 | - "type": "library", | ||
| 3590 | - "extra": { | ||
| 3591 | - "branch-alias": [] | ||
| 3592 | - }, | ||
| 3593 | - "autoload": { | ||
| 3594 | - "psr-4": { | ||
| 3595 | - "Codeception\\": "src\\Codeception", | ||
| 3596 | - "Codeception\\Extension\\": "ext" | ||
| 3597 | - } | ||
| 3598 | - }, | ||
| 3599 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3600 | - "license": [ | ||
| 3601 | - "MIT" | ||
| 3602 | - ], | ||
| 3603 | - "authors": [ | ||
| 3604 | - { | ||
| 3605 | - "name": "Michael Bodnarchuk", | ||
| 3606 | - "email": "davert@mail.ua", | ||
| 3607 | - "homepage": "http://codegyre.com" | ||
| 3608 | - } | ||
| 3609 | - ], | ||
| 3610 | - "description": "BDD-style testing framework", | ||
| 3611 | - "homepage": "http://codeception.com/", | ||
| 3612 | - "keywords": [ | ||
| 3613 | - "BDD", | ||
| 3614 | - "TDD", | ||
| 3615 | - "acceptance testing", | ||
| 3616 | - "functional testing", | ||
| 3617 | - "unit testing" | ||
| 3618 | - ], | ||
| 3619 | - "time": "2017-06-02T00:30:24+00:00" | ||
| 3620 | - }, | ||
| 3621 | - { | ||
| 3622 | - "name": "codeception/verify", | ||
| 3623 | - "version": "0.3.3", | ||
| 3624 | - "source": { | ||
| 3625 | - "type": "git", | ||
| 3626 | - "url": "https://github.com/Codeception/Verify.git", | ||
| 3627 | - "reference": "5d649dda453cd814dadc4bb053060cd2c6bb4b4c" | ||
| 3628 | - }, | ||
| 3629 | - "dist": { | ||
| 3630 | - "type": "zip", | ||
| 3631 | - "url": "https://api.github.com/repos/Codeception/Verify/zipball/5d649dda453cd814dadc4bb053060cd2c6bb4b4c", | ||
| 3632 | - "reference": "5d649dda453cd814dadc4bb053060cd2c6bb4b4c", | ||
| 3633 | - "shasum": "" | ||
| 3634 | - }, | ||
| 3635 | - "require-dev": { | ||
| 3636 | - "phpunit/phpunit": "~4.0" | ||
| 3637 | - }, | ||
| 3638 | - "type": "library", | ||
| 3639 | - "autoload": { | ||
| 3640 | - "files": [ | ||
| 3641 | - "src/Codeception/function.php" | ||
| 3642 | - ] | ||
| 3643 | - }, | ||
| 3644 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3645 | - "license": [ | ||
| 3646 | - "MIT" | ||
| 3647 | - ], | ||
| 3648 | - "authors": [ | ||
| 3649 | - { | ||
| 3650 | - "name": "Michael Bodnarchuk", | ||
| 3651 | - "email": "davert.php@mailican.com" | ||
| 3652 | - } | ||
| 3653 | - ], | ||
| 3654 | - "description": "BDD assertion library for PHPUnit", | ||
| 3655 | - "time": "2017-01-09T10:58:51+00:00" | ||
| 3656 | - }, | ||
| 3657 | - { | ||
| 3658 | - "name": "doctrine/instantiator", | ||
| 3659 | - "version": "1.0.5", | ||
| 3660 | - "source": { | ||
| 3661 | - "type": "git", | ||
| 3662 | - "url": "https://github.com/doctrine/instantiator.git", | ||
| 3663 | - "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d" | ||
| 3664 | - }, | ||
| 3665 | - "dist": { | ||
| 3666 | - "type": "zip", | ||
| 3667 | - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d", | ||
| 3668 | - "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d", | ||
| 3669 | - "shasum": "" | ||
| 3670 | - }, | ||
| 3671 | - "require": { | ||
| 3672 | - "php": ">=5.3,<8.0-DEV" | ||
| 3673 | - }, | ||
| 3674 | - "require-dev": { | ||
| 3675 | - "athletic/athletic": "~0.1.8", | ||
| 3676 | - "ext-pdo": "*", | ||
| 3677 | - "ext-phar": "*", | ||
| 3678 | - "phpunit/phpunit": "~4.0", | ||
| 3679 | - "squizlabs/php_codesniffer": "~2.0" | ||
| 3680 | - }, | ||
| 3681 | - "type": "library", | ||
| 3682 | - "extra": { | ||
| 3683 | - "branch-alias": { | ||
| 3684 | - "dev-master": "1.0.x-dev" | ||
| 3685 | - } | ||
| 3686 | - }, | ||
| 3687 | - "autoload": { | ||
| 3688 | - "psr-4": { | ||
| 3689 | - "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" | ||
| 3690 | - } | ||
| 3691 | - }, | ||
| 3692 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3693 | - "license": [ | ||
| 3694 | - "MIT" | ||
| 3695 | - ], | ||
| 3696 | - "authors": [ | ||
| 3697 | - { | ||
| 3698 | - "name": "Marco Pivetta", | ||
| 3699 | - "email": "ocramius@gmail.com", | ||
| 3700 | - "homepage": "http://ocramius.github.com/" | ||
| 3701 | - } | ||
| 3702 | - ], | ||
| 3703 | - "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", | ||
| 3704 | - "homepage": "https://github.com/doctrine/instantiator", | ||
| 3705 | - "keywords": [ | ||
| 3706 | - "constructor", | ||
| 3707 | - "instantiate" | ||
| 3708 | - ], | ||
| 3709 | - "time": "2015-06-14T21:17:01+00:00" | ||
| 3710 | - }, | ||
| 3711 | - { | ||
| 3712 | - "name": "fzaninotto/faker", | ||
| 3713 | - "version": "v1.6.0", | ||
| 3714 | - "source": { | ||
| 3715 | - "type": "git", | ||
| 3716 | - "url": "https://github.com/fzaninotto/Faker.git", | ||
| 3717 | - "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123" | ||
| 3718 | - }, | ||
| 3719 | - "dist": { | ||
| 3720 | - "type": "zip", | ||
| 3721 | - "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/44f9a286a04b80c76a4e5fb7aad8bb539b920123", | ||
| 3722 | - "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123", | ||
| 3723 | - "shasum": "" | ||
| 3724 | - }, | ||
| 3725 | - "require": { | ||
| 3726 | - "php": "^5.3.3|^7.0" | ||
| 3727 | - }, | ||
| 3728 | - "require-dev": { | ||
| 3729 | - "ext-intl": "*", | ||
| 3730 | - "phpunit/phpunit": "~4.0", | ||
| 3731 | - "squizlabs/php_codesniffer": "~1.5" | ||
| 3732 | - }, | ||
| 3733 | - "type": "library", | ||
| 3734 | - "extra": { | ||
| 3735 | - "branch-alias": [] | ||
| 3736 | - }, | ||
| 3737 | - "autoload": { | ||
| 3738 | - "psr-4": { | ||
| 3739 | - "Faker\\": "src/Faker/" | ||
| 3740 | - } | ||
| 3741 | - }, | ||
| 3742 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3743 | - "license": [ | ||
| 3744 | - "MIT" | ||
| 3745 | - ], | ||
| 3746 | - "authors": [ | ||
| 3747 | - { | ||
| 3748 | - "name": "François Zaninotto" | ||
| 3749 | - } | ||
| 3750 | - ], | ||
| 3751 | - "description": "Faker is a PHP library that generates fake data for you.", | ||
| 3752 | - "keywords": [ | ||
| 3753 | - "data", | ||
| 3754 | - "faker", | ||
| 3755 | - "fixtures" | ||
| 3756 | - ], | ||
| 3757 | - "time": "2016-04-29T12:21:54+00:00" | ||
| 3758 | - }, | ||
| 3759 | - { | ||
| 3760 | - "name": "myclabs/deep-copy", | ||
| 3761 | - "version": "1.6.1", | ||
| 3762 | - "source": { | ||
| 3763 | - "type": "git", | ||
| 3764 | - "url": "https://github.com/myclabs/DeepCopy.git", | ||
| 3765 | - "reference": "8e6e04167378abf1ddb4d3522d8755c5fd90d102" | ||
| 3766 | - }, | ||
| 3767 | - "dist": { | ||
| 3768 | - "type": "zip", | ||
| 3769 | - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/8e6e04167378abf1ddb4d3522d8755c5fd90d102", | ||
| 3770 | - "reference": "8e6e04167378abf1ddb4d3522d8755c5fd90d102", | ||
| 3771 | - "shasum": "" | ||
| 3772 | - }, | ||
| 3773 | - "require": { | ||
| 3774 | - "php": ">=5.4.0" | ||
| 3775 | - }, | ||
| 3776 | - "require-dev": { | ||
| 3777 | - "doctrine/collections": "1.*", | ||
| 3778 | - "phpunit/phpunit": "~4.1" | ||
| 3779 | - }, | ||
| 3780 | - "type": "library", | ||
| 3781 | - "autoload": { | ||
| 3782 | - "psr-4": { | ||
| 3783 | - "DeepCopy\\": "src/DeepCopy/" | ||
| 3784 | - } | ||
| 3785 | - }, | ||
| 3786 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3787 | - "license": [ | ||
| 3788 | - "MIT" | ||
| 3789 | - ], | ||
| 3790 | - "description": "Create deep copies (clones) of your objects", | ||
| 3791 | - "homepage": "https://github.com/myclabs/DeepCopy", | ||
| 3792 | - "keywords": [ | ||
| 3793 | - "clone", | ||
| 3794 | - "copy", | ||
| 3795 | - "duplicate", | ||
| 3796 | - "object", | ||
| 3797 | - "object graph" | ||
| 3798 | - ], | ||
| 3799 | - "time": "2017-04-12T18:52:22+00:00" | ||
| 3800 | - }, | ||
| 3801 | - { | ||
| 3802 | - "name": "phar-io/manifest", | ||
| 3803 | - "version": "1.0.1", | ||
| 3804 | - "source": { | ||
| 3805 | - "type": "git", | ||
| 3806 | - "url": "https://github.com/phar-io/manifest.git", | ||
| 3807 | - "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0" | ||
| 3808 | - }, | ||
| 3809 | - "dist": { | ||
| 3810 | - "type": "zip", | ||
| 3811 | - "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0", | ||
| 3812 | - "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0", | ||
| 3813 | - "shasum": "" | ||
| 3814 | - }, | ||
| 3815 | - "require": { | ||
| 3816 | - "ext-dom": "*", | ||
| 3817 | - "ext-phar": "*", | ||
| 3818 | - "phar-io/version": "^1.0.1", | ||
| 3819 | - "php": "^5.6 || ^7.0" | ||
| 3820 | - }, | ||
| 3821 | - "type": "library", | ||
| 3822 | - "extra": { | ||
| 3823 | - "branch-alias": { | ||
| 3824 | - "dev-master": "1.0.x-dev" | ||
| 3825 | - } | ||
| 3826 | - }, | ||
| 3827 | - "autoload": { | ||
| 3828 | - "classmap": [ | ||
| 3829 | - "src/" | ||
| 3830 | - ] | ||
| 3831 | - }, | ||
| 3832 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3833 | - "license": [ | ||
| 3834 | - "BSD-3-Clause" | ||
| 3835 | - ], | ||
| 3836 | - "authors": [ | ||
| 3837 | - { | ||
| 3838 | - "name": "Arne Blankerts", | ||
| 3839 | - "email": "arne@blankerts.de", | ||
| 3840 | - "role": "Developer" | ||
| 3841 | - }, | ||
| 3842 | - { | ||
| 3843 | - "name": "Sebastian Heuer", | ||
| 3844 | - "email": "sebastian@phpeople.de", | ||
| 3845 | - "role": "Developer" | ||
| 3846 | - }, | ||
| 3847 | - { | ||
| 3848 | - "name": "Sebastian Bergmann", | ||
| 3849 | - "email": "sebastian@phpunit.de", | ||
| 3850 | - "role": "Developer" | ||
| 3851 | - } | ||
| 3852 | - ], | ||
| 3853 | - "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", | ||
| 3854 | - "time": "2017-03-05T18:14:27+00:00" | ||
| 3855 | - }, | ||
| 3856 | - { | ||
| 3857 | - "name": "phar-io/version", | ||
| 3858 | - "version": "1.0.1", | ||
| 3859 | - "source": { | ||
| 3860 | - "type": "git", | ||
| 3861 | - "url": "https://github.com/phar-io/version.git", | ||
| 3862 | - "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df" | ||
| 3863 | - }, | ||
| 3864 | - "dist": { | ||
| 3865 | - "type": "zip", | ||
| 3866 | - "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df", | ||
| 3867 | - "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df", | ||
| 3868 | - "shasum": "" | ||
| 3869 | - }, | ||
| 3870 | - "require": { | ||
| 3871 | - "php": "^5.6 || ^7.0" | ||
| 3872 | - }, | ||
| 3873 | - "type": "library", | ||
| 3874 | - "autoload": { | ||
| 3875 | - "classmap": [ | ||
| 3876 | - "src/" | ||
| 3877 | - ] | ||
| 3878 | - }, | ||
| 3879 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3880 | - "license": [ | ||
| 3881 | - "BSD-3-Clause" | ||
| 3882 | - ], | ||
| 3883 | - "authors": [ | ||
| 3884 | - { | ||
| 3885 | - "name": "Arne Blankerts", | ||
| 3886 | - "email": "arne@blankerts.de", | ||
| 3887 | - "role": "Developer" | ||
| 3888 | - }, | ||
| 3889 | - { | ||
| 3890 | - "name": "Sebastian Heuer", | ||
| 3891 | - "email": "sebastian@phpeople.de", | ||
| 3892 | - "role": "Developer" | ||
| 3893 | - }, | ||
| 3894 | - { | ||
| 3895 | - "name": "Sebastian Bergmann", | ||
| 3896 | - "email": "sebastian@phpunit.de", | ||
| 3897 | - "role": "Developer" | ||
| 3898 | - } | ||
| 3899 | - ], | ||
| 3900 | - "description": "Library for handling version information and constraints", | ||
| 3901 | - "time": "2017-03-05T17:38:23+00:00" | ||
| 3902 | - }, | ||
| 3903 | - { | ||
| 3904 | - "name": "phpdocumentor/reflection-common", | ||
| 3905 | - "version": "1.0", | ||
| 3906 | - "source": { | ||
| 3907 | - "type": "git", | ||
| 3908 | - "url": "https://github.com/phpDocumentor/ReflectionCommon.git", | ||
| 3909 | - "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c" | ||
| 3910 | - }, | ||
| 3911 | - "dist": { | ||
| 3912 | - "type": "zip", | ||
| 3913 | - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/144c307535e82c8fdcaacbcfc1d6d8eeb896687c", | ||
| 3914 | - "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c", | ||
| 3915 | - "shasum": "" | ||
| 3916 | - }, | ||
| 3917 | - "require": { | ||
| 3918 | - "php": ">=5.5" | ||
| 3919 | - }, | ||
| 3920 | - "require-dev": { | ||
| 3921 | - "phpunit/phpunit": "^4.6" | ||
| 3922 | - }, | ||
| 3923 | - "type": "library", | ||
| 3924 | - "extra": { | ||
| 3925 | - "branch-alias": { | ||
| 3926 | - "dev-master": "1.0.x-dev" | ||
| 3927 | - } | ||
| 3928 | - }, | ||
| 3929 | - "autoload": { | ||
| 3930 | - "psr-4": { | ||
| 3931 | - "phpDocumentor\\Reflection\\": [ | ||
| 3932 | - "src" | ||
| 3933 | - ] | ||
| 3934 | - } | ||
| 3935 | - }, | ||
| 3936 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3937 | - "license": [ | ||
| 3938 | - "MIT" | ||
| 3939 | - ], | ||
| 3940 | - "authors": [ | ||
| 3941 | - { | ||
| 3942 | - "name": "Jaap van Otterdijk", | ||
| 3943 | - "email": "opensource@ijaap.nl" | ||
| 3944 | - } | ||
| 3945 | - ], | ||
| 3946 | - "description": "Common reflection classes used by phpdocumentor to reflect the code structure", | ||
| 3947 | - "homepage": "http://www.phpdoc.org", | ||
| 3948 | - "keywords": [ | ||
| 3949 | - "FQSEN", | ||
| 3950 | - "phpDocumentor", | ||
| 3951 | - "phpdoc", | ||
| 3952 | - "reflection", | ||
| 3953 | - "static analysis" | ||
| 3954 | - ], | ||
| 3955 | - "time": "2015-12-27T11:43:31+00:00" | ||
| 3956 | - }, | ||
| 3957 | - { | ||
| 3958 | - "name": "phpdocumentor/reflection-docblock", | ||
| 3959 | - "version": "3.1.1", | ||
| 3960 | - "source": { | ||
| 3961 | - "type": "git", | ||
| 3962 | - "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", | ||
| 3963 | - "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e" | ||
| 3964 | - }, | ||
| 3965 | - "dist": { | ||
| 3966 | - "type": "zip", | ||
| 3967 | - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/8331b5efe816ae05461b7ca1e721c01b46bafb3e", | ||
| 3968 | - "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e", | ||
| 3969 | - "shasum": "" | ||
| 3970 | - }, | ||
| 3971 | - "require": { | ||
| 3972 | - "php": ">=5.5", | ||
| 3973 | - "phpdocumentor/reflection-common": "^1.0@dev", | ||
| 3974 | - "phpdocumentor/type-resolver": "^0.2.0", | ||
| 3975 | - "webmozart/assert": "^1.0" | ||
| 3976 | - }, | ||
| 3977 | - "require-dev": { | ||
| 3978 | - "mockery/mockery": "^0.9.4", | ||
| 3979 | - "phpunit/phpunit": "^4.4" | ||
| 3980 | - }, | ||
| 3981 | - "type": "library", | ||
| 3982 | - "autoload": { | ||
| 3983 | - "psr-4": { | ||
| 3984 | - "phpDocumentor\\Reflection\\": [ | ||
| 3985 | - "src/" | ||
| 3986 | - ] | ||
| 3987 | - } | ||
| 3988 | - }, | ||
| 3989 | - "notification-url": "https://packagist.org/downloads/", | ||
| 3990 | - "license": [ | ||
| 3991 | - "MIT" | ||
| 3992 | - ], | ||
| 3993 | - "authors": [ | ||
| 3994 | - { | ||
| 3995 | - "name": "Mike van Riel", | ||
| 3996 | - "email": "me@mikevanriel.com" | ||
| 3997 | - } | ||
| 3998 | - ], | ||
| 3999 | - "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", | ||
| 4000 | - "time": "2016-09-30T07:12:33+00:00" | ||
| 4001 | - }, | ||
| 4002 | - { | ||
| 4003 | - "name": "phpdocumentor/type-resolver", | ||
| 4004 | - "version": "0.2.1", | ||
| 4005 | - "source": { | ||
| 4006 | - "type": "git", | ||
| 4007 | - "url": "https://github.com/phpDocumentor/TypeResolver.git", | ||
| 4008 | - "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb" | ||
| 4009 | - }, | ||
| 4010 | - "dist": { | ||
| 4011 | - "type": "zip", | ||
| 4012 | - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb", | ||
| 4013 | - "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb", | ||
| 4014 | - "shasum": "" | ||
| 4015 | - }, | ||
| 4016 | - "require": { | ||
| 4017 | - "php": ">=5.5", | ||
| 4018 | - "phpdocumentor/reflection-common": "^1.0" | ||
| 4019 | - }, | ||
| 4020 | - "require-dev": { | ||
| 4021 | - "mockery/mockery": "^0.9.4", | ||
| 4022 | - "phpunit/phpunit": "^5.2||^4.8.24" | ||
| 4023 | - }, | ||
| 4024 | - "type": "library", | ||
| 4025 | - "extra": { | ||
| 4026 | - "branch-alias": { | ||
| 4027 | - "dev-master": "1.0.x-dev" | ||
| 4028 | - } | ||
| 4029 | - }, | ||
| 4030 | - "autoload": { | ||
| 4031 | - "psr-4": { | ||
| 4032 | - "phpDocumentor\\Reflection\\": [ | ||
| 4033 | - "src/" | ||
| 4034 | - ] | ||
| 4035 | - } | ||
| 4036 | - }, | ||
| 4037 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4038 | - "license": [ | ||
| 4039 | - "MIT" | ||
| 4040 | - ], | ||
| 4041 | - "authors": [ | ||
| 4042 | - { | ||
| 4043 | - "name": "Mike van Riel", | ||
| 4044 | - "email": "me@mikevanriel.com" | ||
| 4045 | - } | ||
| 4046 | - ], | ||
| 4047 | - "time": "2016-11-25T06:54:22+00:00" | ||
| 4048 | - }, | ||
| 4049 | - { | ||
| 4050 | - "name": "phpspec/php-diff", | ||
| 4051 | - "version": "v1.1.0", | ||
| 4052 | - "source": { | ||
| 4053 | - "type": "git", | ||
| 4054 | - "url": "https://github.com/phpspec/php-diff.git", | ||
| 4055 | - "reference": "0464787bfa7cd13576c5a1e318709768798bec6a" | ||
| 4056 | - }, | ||
| 4057 | - "dist": { | ||
| 4058 | - "type": "zip", | ||
| 4059 | - "url": "https://api.github.com/repos/phpspec/php-diff/zipball/0464787bfa7cd13576c5a1e318709768798bec6a", | ||
| 4060 | - "reference": "0464787bfa7cd13576c5a1e318709768798bec6a", | ||
| 4061 | - "shasum": "" | ||
| 4062 | - }, | ||
| 4063 | - "type": "library", | ||
| 4064 | - "extra": { | ||
| 4065 | - "branch-alias": { | ||
| 4066 | - "dev-master": "1.0.x-dev" | ||
| 4067 | - } | ||
| 4068 | - }, | ||
| 4069 | - "autoload": { | ||
| 4070 | - "psr-0": { | ||
| 4071 | - "Diff": "lib/" | ||
| 4072 | - } | ||
| 4073 | - }, | ||
| 4074 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4075 | - "license": [ | ||
| 4076 | - "BSD-3-Clause" | ||
| 4077 | - ], | ||
| 4078 | - "authors": [ | ||
| 4079 | - { | ||
| 4080 | - "name": "Chris Boulton", | ||
| 4081 | - "homepage": "http://github.com/chrisboulton" | ||
| 4082 | - } | ||
| 4083 | - ], | ||
| 4084 | - "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).", | ||
| 4085 | - "time": "2016-04-07T12:29:16+00:00" | ||
| 4086 | - }, | ||
| 4087 | - { | ||
| 4088 | - "name": "phpspec/prophecy", | ||
| 4089 | - "version": "v1.7.0", | ||
| 4090 | - "source": { | ||
| 4091 | - "type": "git", | ||
| 4092 | - "url": "https://github.com/phpspec/prophecy.git", | ||
| 4093 | - "reference": "93d39f1f7f9326d746203c7c056f300f7f126073" | ||
| 4094 | - }, | ||
| 4095 | - "dist": { | ||
| 4096 | - "type": "zip", | ||
| 4097 | - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/93d39f1f7f9326d746203c7c056f300f7f126073", | ||
| 4098 | - "reference": "93d39f1f7f9326d746203c7c056f300f7f126073", | ||
| 4099 | - "shasum": "" | ||
| 4100 | - }, | ||
| 4101 | - "require": { | ||
| 4102 | - "doctrine/instantiator": "^1.0.2", | ||
| 4103 | - "php": "^5.3|^7.0", | ||
| 4104 | - "phpdocumentor/reflection-docblock": "^2.0|^3.0.2", | ||
| 4105 | - "sebastian/comparator": "^1.1|^2.0", | ||
| 4106 | - "sebastian/recursion-context": "^1.0|^2.0|^3.0" | ||
| 4107 | - }, | ||
| 4108 | - "require-dev": { | ||
| 4109 | - "phpspec/phpspec": "^2.5|^3.2", | ||
| 4110 | - "phpunit/phpunit": "^4.8 || ^5.6.5" | ||
| 4111 | - }, | ||
| 4112 | - "type": "library", | ||
| 4113 | - "extra": { | ||
| 4114 | - "branch-alias": { | ||
| 4115 | - "dev-master": "1.6.x-dev" | ||
| 4116 | - } | ||
| 4117 | - }, | ||
| 4118 | - "autoload": { | ||
| 4119 | - "psr-0": { | ||
| 4120 | - "Prophecy\\": "src/" | ||
| 4121 | - } | ||
| 4122 | - }, | ||
| 4123 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4124 | - "license": [ | ||
| 4125 | - "MIT" | ||
| 4126 | - ], | ||
| 4127 | - "authors": [ | ||
| 4128 | - { | ||
| 4129 | - "name": "Konstantin Kudryashov", | ||
| 4130 | - "email": "ever.zet@gmail.com", | ||
| 4131 | - "homepage": "http://everzet.com" | ||
| 4132 | - }, | ||
| 4133 | - { | ||
| 4134 | - "name": "Marcello Duarte", | ||
| 4135 | - "email": "marcello.duarte@gmail.com" | ||
| 4136 | - } | ||
| 4137 | - ], | ||
| 4138 | - "description": "Highly opinionated mocking framework for PHP 5.3+", | ||
| 4139 | - "homepage": "https://github.com/phpspec/prophecy", | ||
| 4140 | - "keywords": [ | ||
| 4141 | - "Double", | ||
| 4142 | - "Dummy", | ||
| 4143 | - "fake", | ||
| 4144 | - "mock", | ||
| 4145 | - "spy", | ||
| 4146 | - "stub" | ||
| 4147 | - ], | ||
| 4148 | - "time": "2017-03-02T20:05:34+00:00" | ||
| 4149 | - }, | ||
| 4150 | - { | ||
| 4151 | - "name": "phpunit/php-code-coverage", | ||
| 4152 | - "version": "5.2.1", | ||
| 4153 | - "source": { | ||
| 4154 | - "type": "git", | ||
| 4155 | - "url": "https://github.com/sebastianbergmann/php-code-coverage.git", | ||
| 4156 | - "reference": "dc421f9ca5082a0c0cb04afb171c765f79add85b" | ||
| 4157 | - }, | ||
| 4158 | - "dist": { | ||
| 4159 | - "type": "zip", | ||
| 4160 | - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/dc421f9ca5082a0c0cb04afb171c765f79add85b", | ||
| 4161 | - "reference": "dc421f9ca5082a0c0cb04afb171c765f79add85b", | ||
| 4162 | - "shasum": "" | ||
| 4163 | - }, | ||
| 4164 | - "require": { | ||
| 4165 | - "ext-dom": "*", | ||
| 4166 | - "ext-xmlwriter": "*", | ||
| 4167 | - "php": "^7.0", | ||
| 4168 | - "phpunit/php-file-iterator": "^1.3", | ||
| 4169 | - "phpunit/php-text-template": "^1.2", | ||
| 4170 | - "phpunit/php-token-stream": "^1.4.11 || ^2.0", | ||
| 4171 | - "sebastian/code-unit-reverse-lookup": "^1.0", | ||
| 4172 | - "sebastian/environment": "^3.0", | ||
| 4173 | - "sebastian/version": "^2.0", | ||
| 4174 | - "theseer/tokenizer": "^1.1" | ||
| 4175 | - }, | ||
| 4176 | - "require-dev": { | ||
| 4177 | - "ext-xdebug": "^2.5", | ||
| 4178 | - "phpunit/phpunit": "^6.0" | ||
| 4179 | - }, | ||
| 4180 | - "suggest": { | ||
| 4181 | - "ext-xdebug": "^2.5.3" | ||
| 4182 | - }, | ||
| 4183 | - "type": "library", | ||
| 4184 | - "extra": { | ||
| 4185 | - "branch-alias": { | ||
| 4186 | - "dev-master": "5.2.x-dev" | ||
| 4187 | - } | ||
| 4188 | - }, | ||
| 4189 | - "autoload": { | ||
| 4190 | - "classmap": [ | ||
| 4191 | - "src/" | ||
| 4192 | - ] | ||
| 4193 | - }, | ||
| 4194 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4195 | - "license": [ | ||
| 4196 | - "BSD-3-Clause" | ||
| 4197 | - ], | ||
| 4198 | - "authors": [ | ||
| 4199 | - { | ||
| 4200 | - "name": "Sebastian Bergmann", | ||
| 4201 | - "email": "sb@sebastian-bergmann.de", | ||
| 4202 | - "role": "lead" | ||
| 4203 | - } | ||
| 4204 | - ], | ||
| 4205 | - "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", | ||
| 4206 | - "homepage": "https://github.com/sebastianbergmann/php-code-coverage", | ||
| 4207 | - "keywords": [ | ||
| 4208 | - "coverage", | ||
| 4209 | - "testing", | ||
| 4210 | - "xunit" | ||
| 4211 | - ], | ||
| 4212 | - "time": "2017-04-21T08:03:57+00:00" | ||
| 4213 | - }, | ||
| 4214 | - { | ||
| 4215 | - "name": "phpunit/php-file-iterator", | ||
| 4216 | - "version": "1.4.2", | ||
| 4217 | - "source": { | ||
| 4218 | - "type": "git", | ||
| 4219 | - "url": "https://github.com/sebastianbergmann/php-file-iterator.git", | ||
| 4220 | - "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5" | ||
| 4221 | - }, | ||
| 4222 | - "dist": { | ||
| 4223 | - "type": "zip", | ||
| 4224 | - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3cc8f69b3028d0f96a9078e6295d86e9bf019be5", | ||
| 4225 | - "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5", | ||
| 4226 | - "shasum": "" | ||
| 4227 | - }, | ||
| 4228 | - "require": { | ||
| 4229 | - "php": ">=5.3.3" | ||
| 4230 | - }, | ||
| 4231 | - "type": "library", | ||
| 4232 | - "extra": { | ||
| 4233 | - "branch-alias": { | ||
| 4234 | - "dev-master": "1.4.x-dev" | ||
| 4235 | - } | ||
| 4236 | - }, | ||
| 4237 | - "autoload": { | ||
| 4238 | - "classmap": [ | ||
| 4239 | - "src/" | ||
| 4240 | - ] | ||
| 4241 | - }, | ||
| 4242 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4243 | - "license": [ | ||
| 4244 | - "BSD-3-Clause" | ||
| 4245 | - ], | ||
| 4246 | - "authors": [ | ||
| 4247 | - { | ||
| 4248 | - "name": "Sebastian Bergmann", | ||
| 4249 | - "email": "sb@sebastian-bergmann.de", | ||
| 4250 | - "role": "lead" | ||
| 4251 | - } | ||
| 4252 | - ], | ||
| 4253 | - "description": "FilterIterator implementation that filters files based on a list of suffixes.", | ||
| 4254 | - "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", | ||
| 4255 | - "keywords": [ | ||
| 4256 | - "filesystem", | ||
| 4257 | - "iterator" | ||
| 4258 | - ], | ||
| 4259 | - "time": "2016-10-03T07:40:28+00:00" | ||
| 4260 | - }, | ||
| 4261 | - { | ||
| 4262 | - "name": "phpunit/php-text-template", | ||
| 4263 | - "version": "1.2.1", | ||
| 4264 | - "source": { | ||
| 4265 | - "type": "git", | ||
| 4266 | - "url": "https://github.com/sebastianbergmann/php-text-template.git", | ||
| 4267 | - "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" | ||
| 4268 | - }, | ||
| 4269 | - "dist": { | ||
| 4270 | - "type": "zip", | ||
| 4271 | - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", | ||
| 4272 | - "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", | ||
| 4273 | - "shasum": "" | ||
| 4274 | - }, | ||
| 4275 | - "require": { | ||
| 4276 | - "php": ">=5.3.3" | ||
| 4277 | - }, | ||
| 4278 | - "type": "library", | ||
| 4279 | - "autoload": { | ||
| 4280 | - "classmap": [ | ||
| 4281 | - "src/" | ||
| 4282 | - ] | ||
| 4283 | - }, | ||
| 4284 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4285 | - "license": [ | ||
| 4286 | - "BSD-3-Clause" | ||
| 4287 | - ], | ||
| 4288 | - "authors": [ | ||
| 4289 | - { | ||
| 4290 | - "name": "Sebastian Bergmann", | ||
| 4291 | - "email": "sebastian@phpunit.de", | ||
| 4292 | - "role": "lead" | ||
| 4293 | - } | ||
| 4294 | - ], | ||
| 4295 | - "description": "Simple template engine.", | ||
| 4296 | - "homepage": "https://github.com/sebastianbergmann/php-text-template/", | ||
| 4297 | - "keywords": [ | ||
| 4298 | - "template" | ||
| 4299 | - ], | ||
| 4300 | - "time": "2015-06-21T13:50:34+00:00" | ||
| 4301 | - }, | ||
| 4302 | - { | ||
| 4303 | - "name": "phpunit/php-timer", | ||
| 4304 | - "version": "1.0.9", | ||
| 4305 | - "source": { | ||
| 4306 | - "type": "git", | ||
| 4307 | - "url": "https://github.com/sebastianbergmann/php-timer.git", | ||
| 4308 | - "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f" | ||
| 4309 | - }, | ||
| 4310 | - "dist": { | ||
| 4311 | - "type": "zip", | ||
| 4312 | - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", | ||
| 4313 | - "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", | ||
| 4314 | - "shasum": "" | ||
| 4315 | - }, | ||
| 4316 | - "require": { | ||
| 4317 | - "php": "^5.3.3 || ^7.0" | ||
| 4318 | - }, | ||
| 4319 | - "require-dev": { | ||
| 4320 | - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" | ||
| 4321 | - }, | ||
| 4322 | - "type": "library", | ||
| 4323 | - "extra": { | ||
| 4324 | - "branch-alias": { | ||
| 4325 | - "dev-master": "1.0-dev" | ||
| 4326 | - } | ||
| 4327 | - }, | ||
| 4328 | - "autoload": { | ||
| 4329 | - "classmap": [ | ||
| 4330 | - "src/" | ||
| 4331 | - ] | ||
| 4332 | - }, | ||
| 4333 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4334 | - "license": [ | ||
| 4335 | - "BSD-3-Clause" | ||
| 4336 | - ], | ||
| 4337 | - "authors": [ | ||
| 4338 | - { | ||
| 4339 | - "name": "Sebastian Bergmann", | ||
| 4340 | - "email": "sb@sebastian-bergmann.de", | ||
| 4341 | - "role": "lead" | ||
| 4342 | - } | ||
| 4343 | - ], | ||
| 4344 | - "description": "Utility class for timing", | ||
| 4345 | - "homepage": "https://github.com/sebastianbergmann/php-timer/", | ||
| 4346 | - "keywords": [ | ||
| 4347 | - "timer" | ||
| 4348 | - ], | ||
| 4349 | - "time": "2017-02-26T11:10:40+00:00" | ||
| 4350 | - }, | ||
| 4351 | - { | ||
| 4352 | - "name": "phpunit/php-token-stream", | ||
| 4353 | - "version": "1.4.11", | ||
| 4354 | - "source": { | ||
| 4355 | - "type": "git", | ||
| 4356 | - "url": "https://github.com/sebastianbergmann/php-token-stream.git", | ||
| 4357 | - "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7" | ||
| 4358 | - }, | ||
| 4359 | - "dist": { | ||
| 4360 | - "type": "zip", | ||
| 4361 | - "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/e03f8f67534427a787e21a385a67ec3ca6978ea7", | ||
| 4362 | - "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7", | ||
| 4363 | - "shasum": "" | ||
| 4364 | - }, | ||
| 4365 | - "require": { | ||
| 4366 | - "ext-tokenizer": "*", | ||
| 4367 | - "php": ">=5.3.3" | ||
| 4368 | - }, | ||
| 4369 | - "require-dev": { | ||
| 4370 | - "phpunit/phpunit": "~4.2" | ||
| 4371 | - }, | ||
| 4372 | - "type": "library", | ||
| 4373 | - "extra": { | ||
| 4374 | - "branch-alias": { | ||
| 4375 | - "dev-master": "1.4-dev" | ||
| 4376 | - } | ||
| 4377 | - }, | ||
| 4378 | - "autoload": { | ||
| 4379 | - "classmap": [ | ||
| 4380 | - "src/" | ||
| 4381 | - ] | ||
| 4382 | - }, | ||
| 4383 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4384 | - "license": [ | ||
| 4385 | - "BSD-3-Clause" | ||
| 4386 | - ], | ||
| 4387 | - "authors": [ | ||
| 4388 | - { | ||
| 4389 | - "name": "Sebastian Bergmann", | ||
| 4390 | - "email": "sebastian@phpunit.de" | ||
| 4391 | - } | ||
| 4392 | - ], | ||
| 4393 | - "description": "Wrapper around PHP's tokenizer extension.", | ||
| 4394 | - "homepage": "https://github.com/sebastianbergmann/php-token-stream/", | ||
| 4395 | - "keywords": [ | ||
| 4396 | - "tokenizer" | ||
| 4397 | - ], | ||
| 4398 | - "time": "2017-02-27T10:12:30+00:00" | ||
| 4399 | - }, | ||
| 4400 | - { | ||
| 4401 | - "name": "phpunit/phpunit", | ||
| 4402 | - "version": "6.2.1", | ||
| 4403 | - "source": { | ||
| 4404 | - "type": "git", | ||
| 4405 | - "url": "https://github.com/sebastianbergmann/phpunit.git", | ||
| 4406 | - "reference": "16999a1e9a8a25d68f0ab8cc8ab818b043ad5374" | ||
| 4407 | - }, | ||
| 4408 | - "dist": { | ||
| 4409 | - "type": "zip", | ||
| 4410 | - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/16999a1e9a8a25d68f0ab8cc8ab818b043ad5374", | ||
| 4411 | - "reference": "16999a1e9a8a25d68f0ab8cc8ab818b043ad5374", | ||
| 4412 | - "shasum": "" | ||
| 4413 | - }, | ||
| 4414 | - "require": { | ||
| 4415 | - "ext-dom": "*", | ||
| 4416 | - "ext-json": "*", | ||
| 4417 | - "ext-libxml": "*", | ||
| 4418 | - "ext-mbstring": "*", | ||
| 4419 | - "ext-xml": "*", | ||
| 4420 | - "myclabs/deep-copy": "^1.3", | ||
| 4421 | - "phar-io/manifest": "^1.0.1", | ||
| 4422 | - "phar-io/version": "^1.0", | ||
| 4423 | - "php": "^7.0", | ||
| 4424 | - "phpspec/prophecy": "^1.7", | ||
| 4425 | - "phpunit/php-code-coverage": "^5.2", | ||
| 4426 | - "phpunit/php-file-iterator": "^1.4", | ||
| 4427 | - "phpunit/php-text-template": "^1.2", | ||
| 4428 | - "phpunit/php-timer": "^1.0.6", | ||
| 4429 | - "phpunit/phpunit-mock-objects": "^4.0", | ||
| 4430 | - "sebastian/comparator": "^2.0", | ||
| 4431 | - "sebastian/diff": "^1.4.3 || ^2.0", | ||
| 4432 | - "sebastian/environment": "^3.0.2", | ||
| 4433 | - "sebastian/exporter": "^3.1", | ||
| 4434 | - "sebastian/global-state": "^1.1 || ^2.0", | ||
| 4435 | - "sebastian/object-enumerator": "^3.0.2", | ||
| 4436 | - "sebastian/resource-operations": "^1.0", | ||
| 4437 | - "sebastian/version": "^2.0" | ||
| 4438 | - }, | ||
| 4439 | - "conflict": { | ||
| 4440 | - "phpdocumentor/reflection-docblock": "3.0.2", | ||
| 4441 | - "phpunit/dbunit": "<3.0" | ||
| 4442 | - }, | ||
| 4443 | - "require-dev": { | ||
| 4444 | - "ext-pdo": "*" | ||
| 4445 | - }, | ||
| 4446 | - "suggest": { | ||
| 4447 | - "ext-xdebug": "*", | ||
| 4448 | - "phpunit/php-invoker": "^1.1" | ||
| 4449 | - }, | ||
| 4450 | - "bin": [ | ||
| 4451 | - "phpunit" | ||
| 4452 | - ], | ||
| 4453 | - "type": "library", | ||
| 4454 | - "extra": { | ||
| 4455 | - "branch-alias": { | ||
| 4456 | - "dev-master": "6.2.x-dev" | ||
| 4457 | - } | ||
| 4458 | - }, | ||
| 4459 | - "autoload": { | ||
| 4460 | - "classmap": [ | ||
| 4461 | - "src/" | ||
| 4462 | - ] | ||
| 4463 | - }, | ||
| 4464 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4465 | - "license": [ | ||
| 4466 | - "BSD-3-Clause" | ||
| 4467 | - ], | ||
| 4468 | - "authors": [ | ||
| 4469 | - { | ||
| 4470 | - "name": "Sebastian Bergmann", | ||
| 4471 | - "email": "sebastian@phpunit.de", | ||
| 4472 | - "role": "lead" | ||
| 4473 | - } | ||
| 4474 | - ], | ||
| 4475 | - "description": "The PHP Unit Testing framework.", | ||
| 4476 | - "homepage": "https://phpunit.de/", | ||
| 4477 | - "keywords": [ | ||
| 4478 | - "phpunit", | ||
| 4479 | - "testing", | ||
| 4480 | - "xunit" | ||
| 4481 | - ], | ||
| 4482 | - "time": "2017-06-02T12:24:37+00:00" | ||
| 4483 | - }, | ||
| 4484 | - { | ||
| 4485 | - "name": "phpunit/phpunit-mock-objects", | ||
| 4486 | - "version": "4.0.1", | ||
| 4487 | - "source": { | ||
| 4488 | - "type": "git", | ||
| 4489 | - "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", | ||
| 4490 | - "reference": "eabce450df194817a7d7e27e19013569a903a2bf" | ||
| 4491 | - }, | ||
| 4492 | - "dist": { | ||
| 4493 | - "type": "zip", | ||
| 4494 | - "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/eabce450df194817a7d7e27e19013569a903a2bf", | ||
| 4495 | - "reference": "eabce450df194817a7d7e27e19013569a903a2bf", | ||
| 4496 | - "shasum": "" | ||
| 4497 | - }, | ||
| 4498 | - "require": { | ||
| 4499 | - "doctrine/instantiator": "^1.0.2", | ||
| 4500 | - "php": "^7.0", | ||
| 4501 | - "phpunit/php-text-template": "^1.2", | ||
| 4502 | - "sebastian/exporter": "^3.0" | ||
| 4503 | - }, | ||
| 4504 | - "conflict": { | ||
| 4505 | - "phpunit/phpunit": "<6.0" | ||
| 4506 | - }, | ||
| 4507 | - "require-dev": { | ||
| 4508 | - "phpunit/phpunit": "^6.0" | ||
| 4509 | - }, | ||
| 4510 | - "suggest": { | ||
| 4511 | - "ext-soap": "*" | ||
| 4512 | - }, | ||
| 4513 | - "type": "library", | ||
| 4514 | - "extra": { | ||
| 4515 | - "branch-alias": { | ||
| 4516 | - "dev-master": "4.0.x-dev" | ||
| 4517 | - } | ||
| 4518 | - }, | ||
| 4519 | - "autoload": { | ||
| 4520 | - "classmap": [ | ||
| 4521 | - "src/" | ||
| 4522 | - ] | ||
| 4523 | - }, | ||
| 4524 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4525 | - "license": [ | ||
| 4526 | - "BSD-3-Clause" | ||
| 4527 | - ], | ||
| 4528 | - "authors": [ | ||
| 4529 | - { | ||
| 4530 | - "name": "Sebastian Bergmann", | ||
| 4531 | - "email": "sb@sebastian-bergmann.de", | ||
| 4532 | - "role": "lead" | ||
| 4533 | - } | ||
| 4534 | - ], | ||
| 4535 | - "description": "Mock Object library for PHPUnit", | ||
| 4536 | - "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", | ||
| 4537 | - "keywords": [ | ||
| 4538 | - "mock", | ||
| 4539 | - "xunit" | ||
| 4540 | - ], | ||
| 4541 | - "time": "2017-03-03T06:30:20+00:00" | ||
| 4542 | - }, | ||
| 4543 | - { | ||
| 4544 | - "name": "sebastian/code-unit-reverse-lookup", | ||
| 4545 | - "version": "1.0.1", | ||
| 4546 | - "source": { | ||
| 4547 | - "type": "git", | ||
| 4548 | - "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", | ||
| 4549 | - "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" | ||
| 4550 | - }, | ||
| 4551 | - "dist": { | ||
| 4552 | - "type": "zip", | ||
| 4553 | - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", | ||
| 4554 | - "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", | ||
| 4555 | - "shasum": "" | ||
| 4556 | - }, | ||
| 4557 | - "require": { | ||
| 4558 | - "php": "^5.6 || ^7.0" | ||
| 4559 | - }, | ||
| 4560 | - "require-dev": { | ||
| 4561 | - "phpunit/phpunit": "^5.7 || ^6.0" | ||
| 4562 | - }, | ||
| 4563 | - "type": "library", | ||
| 4564 | - "extra": { | ||
| 4565 | - "branch-alias": { | ||
| 4566 | - "dev-master": "1.0.x-dev" | ||
| 4567 | - } | ||
| 4568 | - }, | ||
| 4569 | - "autoload": { | ||
| 4570 | - "classmap": [ | ||
| 4571 | - "src/" | ||
| 4572 | - ] | ||
| 4573 | - }, | ||
| 4574 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4575 | - "license": [ | ||
| 4576 | - "BSD-3-Clause" | ||
| 4577 | - ], | ||
| 4578 | - "authors": [ | ||
| 4579 | - { | ||
| 4580 | - "name": "Sebastian Bergmann", | ||
| 4581 | - "email": "sebastian@phpunit.de" | ||
| 4582 | - } | ||
| 4583 | - ], | ||
| 4584 | - "description": "Looks up which function or method a line of code belongs to", | ||
| 4585 | - "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", | ||
| 4586 | - "time": "2017-03-04T06:30:41+00:00" | ||
| 4587 | - }, | ||
| 4588 | - { | ||
| 4589 | - "name": "sebastian/comparator", | ||
| 4590 | - "version": "2.0.0", | ||
| 4591 | - "source": { | ||
| 4592 | - "type": "git", | ||
| 4593 | - "url": "https://github.com/sebastianbergmann/comparator.git", | ||
| 4594 | - "reference": "20f84f468cb67efee293246e6a09619b891f55f0" | ||
| 4595 | - }, | ||
| 4596 | - "dist": { | ||
| 4597 | - "type": "zip", | ||
| 4598 | - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/20f84f468cb67efee293246e6a09619b891f55f0", | ||
| 4599 | - "reference": "20f84f468cb67efee293246e6a09619b891f55f0", | ||
| 4600 | - "shasum": "" | ||
| 4601 | - }, | ||
| 4602 | - "require": { | ||
| 4603 | - "php": "^7.0", | ||
| 4604 | - "sebastian/diff": "^1.2", | ||
| 4605 | - "sebastian/exporter": "^3.0" | ||
| 4606 | - }, | ||
| 4607 | - "require-dev": { | ||
| 4608 | - "phpunit/phpunit": "^6.0" | ||
| 4609 | - }, | ||
| 4610 | - "type": "library", | ||
| 4611 | - "extra": { | ||
| 4612 | - "branch-alias": { | ||
| 4613 | - "dev-master": "2.0.x-dev" | ||
| 4614 | - } | ||
| 4615 | - }, | ||
| 4616 | - "autoload": { | ||
| 4617 | - "classmap": [ | ||
| 4618 | - "src/" | ||
| 4619 | - ] | ||
| 4620 | - }, | ||
| 4621 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4622 | - "license": [ | ||
| 4623 | - "BSD-3-Clause" | ||
| 4624 | - ], | ||
| 4625 | - "authors": [ | ||
| 4626 | - { | ||
| 4627 | - "name": "Jeff Welch", | ||
| 4628 | - "email": "whatthejeff@gmail.com" | ||
| 4629 | - }, | ||
| 4630 | - { | ||
| 4631 | - "name": "Volker Dusch", | ||
| 4632 | - "email": "github@wallbash.com" | ||
| 4633 | - }, | ||
| 4634 | - { | ||
| 4635 | - "name": "Bernhard Schussek", | ||
| 4636 | - "email": "bschussek@2bepublished.at" | ||
| 4637 | - }, | ||
| 4638 | - { | ||
| 4639 | - "name": "Sebastian Bergmann", | ||
| 4640 | - "email": "sebastian@phpunit.de" | ||
| 4641 | - } | ||
| 4642 | - ], | ||
| 4643 | - "description": "Provides the functionality to compare PHP values for equality", | ||
| 4644 | - "homepage": "http://www.github.com/sebastianbergmann/comparator", | ||
| 4645 | - "keywords": [ | ||
| 4646 | - "comparator", | ||
| 4647 | - "compare", | ||
| 4648 | - "equality" | ||
| 4649 | - ], | ||
| 4650 | - "time": "2017-03-03T06:26:08+00:00" | ||
| 4651 | - }, | ||
| 4652 | - { | ||
| 4653 | - "name": "sebastian/diff", | ||
| 4654 | - "version": "1.4.3", | ||
| 4655 | - "source": { | ||
| 4656 | - "type": "git", | ||
| 4657 | - "url": "https://github.com/sebastianbergmann/diff.git", | ||
| 4658 | - "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4" | ||
| 4659 | - }, | ||
| 4660 | - "dist": { | ||
| 4661 | - "type": "zip", | ||
| 4662 | - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4", | ||
| 4663 | - "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4", | ||
| 4664 | - "shasum": "" | ||
| 4665 | - }, | ||
| 4666 | - "require": { | ||
| 4667 | - "php": "^5.3.3 || ^7.0" | ||
| 4668 | - }, | ||
| 4669 | - "require-dev": { | ||
| 4670 | - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" | ||
| 4671 | - }, | ||
| 4672 | - "type": "library", | ||
| 4673 | - "extra": { | ||
| 4674 | - "branch-alias": { | ||
| 4675 | - "dev-master": "1.4-dev" | ||
| 4676 | - } | ||
| 4677 | - }, | ||
| 4678 | - "autoload": { | ||
| 4679 | - "classmap": [ | ||
| 4680 | - "src/" | ||
| 4681 | - ] | ||
| 4682 | - }, | ||
| 4683 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4684 | - "license": [ | ||
| 4685 | - "BSD-3-Clause" | ||
| 4686 | - ], | ||
| 4687 | - "authors": [ | ||
| 4688 | - { | ||
| 4689 | - "name": "Kore Nordmann", | ||
| 4690 | - "email": "mail@kore-nordmann.de" | ||
| 4691 | - }, | ||
| 4692 | - { | ||
| 4693 | - "name": "Sebastian Bergmann", | ||
| 4694 | - "email": "sebastian@phpunit.de" | ||
| 4695 | - } | ||
| 4696 | - ], | ||
| 4697 | - "description": "Diff implementation", | ||
| 4698 | - "homepage": "https://github.com/sebastianbergmann/diff", | ||
| 4699 | - "keywords": [ | ||
| 4700 | - "diff" | ||
| 4701 | - ], | ||
| 4702 | - "time": "2017-05-22T07:24:03+00:00" | ||
| 4703 | - }, | ||
| 4704 | - { | ||
| 4705 | - "name": "sebastian/environment", | ||
| 4706 | - "version": "3.0.3", | ||
| 4707 | - "source": { | ||
| 4708 | - "type": "git", | ||
| 4709 | - "url": "https://github.com/sebastianbergmann/environment.git", | ||
| 4710 | - "reference": "02b6b2c7aefe2cdb1185b8dbf8718b0bcedf3ab3" | ||
| 4711 | - }, | ||
| 4712 | - "dist": { | ||
| 4713 | - "type": "zip", | ||
| 4714 | - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/02b6b2c7aefe2cdb1185b8dbf8718b0bcedf3ab3", | ||
| 4715 | - "reference": "02b6b2c7aefe2cdb1185b8dbf8718b0bcedf3ab3", | ||
| 4716 | - "shasum": "" | ||
| 4717 | - }, | ||
| 4718 | - "require": { | ||
| 4719 | - "php": "^7.0" | ||
| 4720 | - }, | ||
| 4721 | - "require-dev": { | ||
| 4722 | - "phpunit/phpunit": "^6.1" | ||
| 4723 | - }, | ||
| 4724 | - "type": "library", | ||
| 4725 | - "extra": { | ||
| 4726 | - "branch-alias": { | ||
| 4727 | - "dev-master": "3.0.x-dev" | ||
| 4728 | - } | ||
| 4729 | - }, | ||
| 4730 | - "autoload": { | ||
| 4731 | - "classmap": [ | ||
| 4732 | - "src/" | ||
| 4733 | - ] | ||
| 4734 | - }, | ||
| 4735 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4736 | - "license": [ | ||
| 4737 | - "BSD-3-Clause" | ||
| 4738 | - ], | ||
| 4739 | - "authors": [ | ||
| 4740 | - { | ||
| 4741 | - "name": "Sebastian Bergmann", | ||
| 4742 | - "email": "sebastian@phpunit.de" | ||
| 4743 | - } | ||
| 4744 | - ], | ||
| 4745 | - "description": "Provides functionality to handle HHVM/PHP environments", | ||
| 4746 | - "homepage": "http://www.github.com/sebastianbergmann/environment", | ||
| 4747 | - "keywords": [ | ||
| 4748 | - "Xdebug", | ||
| 4749 | - "environment", | ||
| 4750 | - "hhvm" | ||
| 4751 | - ], | ||
| 4752 | - "time": "2017-05-18T10:10:00+00:00" | ||
| 4753 | - }, | ||
| 4754 | - { | ||
| 4755 | - "name": "sebastian/exporter", | ||
| 4756 | - "version": "3.1.0", | ||
| 4757 | - "source": { | ||
| 4758 | - "type": "git", | ||
| 4759 | - "url": "https://github.com/sebastianbergmann/exporter.git", | ||
| 4760 | - "reference": "234199f4528de6d12aaa58b612e98f7d36adb937" | ||
| 4761 | - }, | ||
| 4762 | - "dist": { | ||
| 4763 | - "type": "zip", | ||
| 4764 | - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937", | ||
| 4765 | - "reference": "234199f4528de6d12aaa58b612e98f7d36adb937", | ||
| 4766 | - "shasum": "" | ||
| 4767 | - }, | ||
| 4768 | - "require": { | ||
| 4769 | - "php": "^7.0", | ||
| 4770 | - "sebastian/recursion-context": "^3.0" | ||
| 4771 | - }, | ||
| 4772 | - "require-dev": { | ||
| 4773 | - "ext-mbstring": "*", | ||
| 4774 | - "phpunit/phpunit": "^6.0" | ||
| 4775 | - }, | ||
| 4776 | - "type": "library", | ||
| 4777 | - "extra": { | ||
| 4778 | - "branch-alias": { | ||
| 4779 | - "dev-master": "3.1.x-dev" | ||
| 4780 | - } | ||
| 4781 | - }, | ||
| 4782 | - "autoload": { | ||
| 4783 | - "classmap": [ | ||
| 4784 | - "src/" | ||
| 4785 | - ] | ||
| 4786 | - }, | ||
| 4787 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4788 | - "license": [ | ||
| 4789 | - "BSD-3-Clause" | ||
| 4790 | - ], | ||
| 4791 | - "authors": [ | ||
| 4792 | - { | ||
| 4793 | - "name": "Jeff Welch", | ||
| 4794 | - "email": "whatthejeff@gmail.com" | ||
| 4795 | - }, | ||
| 4796 | - { | ||
| 4797 | - "name": "Volker Dusch", | ||
| 4798 | - "email": "github@wallbash.com" | ||
| 4799 | - }, | ||
| 4800 | - { | ||
| 4801 | - "name": "Bernhard Schussek", | ||
| 4802 | - "email": "bschussek@2bepublished.at" | ||
| 4803 | - }, | ||
| 4804 | - { | ||
| 4805 | - "name": "Sebastian Bergmann", | ||
| 4806 | - "email": "sebastian@phpunit.de" | ||
| 4807 | - }, | ||
| 4808 | - { | ||
| 4809 | - "name": "Adam Harvey", | ||
| 4810 | - "email": "aharvey@php.net" | ||
| 4811 | - } | ||
| 4812 | - ], | ||
| 4813 | - "description": "Provides the functionality to export PHP variables for visualization", | ||
| 4814 | - "homepage": "http://www.github.com/sebastianbergmann/exporter", | ||
| 4815 | - "keywords": [ | ||
| 4816 | - "export", | ||
| 4817 | - "exporter" | ||
| 4818 | - ], | ||
| 4819 | - "time": "2017-04-03T13:19:02+00:00" | ||
| 4820 | - }, | ||
| 4821 | - { | ||
| 4822 | - "name": "sebastian/global-state", | ||
| 4823 | - "version": "2.0.0", | ||
| 4824 | - "source": { | ||
| 4825 | - "type": "git", | ||
| 4826 | - "url": "https://github.com/sebastianbergmann/global-state.git", | ||
| 4827 | - "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4" | ||
| 4828 | - }, | ||
| 4829 | - "dist": { | ||
| 4830 | - "type": "zip", | ||
| 4831 | - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", | ||
| 4832 | - "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", | ||
| 4833 | - "shasum": "" | ||
| 4834 | - }, | ||
| 4835 | - "require": { | ||
| 4836 | - "php": "^7.0" | ||
| 4837 | - }, | ||
| 4838 | - "require-dev": { | ||
| 4839 | - "phpunit/phpunit": "^6.0" | ||
| 4840 | - }, | ||
| 4841 | - "suggest": { | ||
| 4842 | - "ext-uopz": "*" | ||
| 4843 | - }, | ||
| 4844 | - "type": "library", | ||
| 4845 | - "extra": { | ||
| 4846 | - "branch-alias": { | ||
| 4847 | - "dev-master": "2.0-dev" | ||
| 4848 | - } | ||
| 4849 | - }, | ||
| 4850 | - "autoload": { | ||
| 4851 | - "classmap": [ | ||
| 4852 | - "src/" | ||
| 4853 | - ] | ||
| 4854 | - }, | ||
| 4855 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4856 | - "license": [ | ||
| 4857 | - "BSD-3-Clause" | ||
| 4858 | - ], | ||
| 4859 | - "authors": [ | ||
| 4860 | - { | ||
| 4861 | - "name": "Sebastian Bergmann", | ||
| 4862 | - "email": "sebastian@phpunit.de" | ||
| 4863 | - } | ||
| 4864 | - ], | ||
| 4865 | - "description": "Snapshotting of global state", | ||
| 4866 | - "homepage": "http://www.github.com/sebastianbergmann/global-state", | ||
| 4867 | - "keywords": [ | ||
| 4868 | - "global state" | ||
| 4869 | - ], | ||
| 4870 | - "time": "2017-04-27T15:39:26+00:00" | ||
| 4871 | - }, | ||
| 4872 | - { | ||
| 4873 | - "name": "sebastian/object-enumerator", | ||
| 4874 | - "version": "3.0.2", | ||
| 4875 | - "source": { | ||
| 4876 | - "type": "git", | ||
| 4877 | - "url": "https://github.com/sebastianbergmann/object-enumerator.git", | ||
| 4878 | - "reference": "31dd3379d16446c5d86dec32ab1ad1f378581ad8" | ||
| 4879 | - }, | ||
| 4880 | - "dist": { | ||
| 4881 | - "type": "zip", | ||
| 4882 | - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/31dd3379d16446c5d86dec32ab1ad1f378581ad8", | ||
| 4883 | - "reference": "31dd3379d16446c5d86dec32ab1ad1f378581ad8", | ||
| 4884 | - "shasum": "" | ||
| 4885 | - }, | ||
| 4886 | - "require": { | ||
| 4887 | - "php": "^7.0", | ||
| 4888 | - "sebastian/object-reflector": "^1.0", | ||
| 4889 | - "sebastian/recursion-context": "^3.0" | ||
| 4890 | - }, | ||
| 4891 | - "require-dev": { | ||
| 4892 | - "phpunit/phpunit": "^6.0" | ||
| 4893 | - }, | ||
| 4894 | - "type": "library", | ||
| 4895 | - "extra": { | ||
| 4896 | - "branch-alias": { | ||
| 4897 | - "dev-master": "3.0.x-dev" | ||
| 4898 | - } | ||
| 4899 | - }, | ||
| 4900 | - "autoload": { | ||
| 4901 | - "classmap": [ | ||
| 4902 | - "src/" | ||
| 4903 | - ] | ||
| 4904 | - }, | ||
| 4905 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4906 | - "license": [ | ||
| 4907 | - "BSD-3-Clause" | ||
| 4908 | - ], | ||
| 4909 | - "authors": [ | ||
| 4910 | - { | ||
| 4911 | - "name": "Sebastian Bergmann", | ||
| 4912 | - "email": "sebastian@phpunit.de" | ||
| 4913 | - } | ||
| 4914 | - ], | ||
| 4915 | - "description": "Traverses array structures and object graphs to enumerate all referenced objects", | ||
| 4916 | - "homepage": "https://github.com/sebastianbergmann/object-enumerator/", | ||
| 4917 | - "time": "2017-03-12T15:17:29+00:00" | ||
| 4918 | - }, | ||
| 4919 | - { | ||
| 4920 | - "name": "sebastian/object-reflector", | ||
| 4921 | - "version": "1.1.1", | ||
| 4922 | - "source": { | ||
| 4923 | - "type": "git", | ||
| 4924 | - "url": "https://github.com/sebastianbergmann/object-reflector.git", | ||
| 4925 | - "reference": "773f97c67f28de00d397be301821b06708fca0be" | ||
| 4926 | - }, | ||
| 4927 | - "dist": { | ||
| 4928 | - "type": "zip", | ||
| 4929 | - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", | ||
| 4930 | - "reference": "773f97c67f28de00d397be301821b06708fca0be", | ||
| 4931 | - "shasum": "" | ||
| 4932 | - }, | ||
| 4933 | - "require": { | ||
| 4934 | - "php": "^7.0" | ||
| 4935 | - }, | ||
| 4936 | - "require-dev": { | ||
| 4937 | - "phpunit/phpunit": "^6.0" | ||
| 4938 | - }, | ||
| 4939 | - "type": "library", | ||
| 4940 | - "extra": { | ||
| 4941 | - "branch-alias": { | ||
| 4942 | - "dev-master": "1.1-dev" | ||
| 4943 | - } | ||
| 4944 | - }, | ||
| 4945 | - "autoload": { | ||
| 4946 | - "classmap": [ | ||
| 4947 | - "src/" | ||
| 4948 | - ] | ||
| 4949 | - }, | ||
| 4950 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4951 | - "license": [ | ||
| 4952 | - "BSD-3-Clause" | ||
| 4953 | - ], | ||
| 4954 | - "authors": [ | ||
| 4955 | - { | ||
| 4956 | - "name": "Sebastian Bergmann", | ||
| 4957 | - "email": "sebastian@phpunit.de" | ||
| 4958 | - } | ||
| 4959 | - ], | ||
| 4960 | - "description": "Allows reflection of object attributes, including inherited and non-public ones", | ||
| 4961 | - "homepage": "https://github.com/sebastianbergmann/object-reflector/", | ||
| 4962 | - "time": "2017-03-29T09:07:27+00:00" | ||
| 4963 | - }, | ||
| 4964 | - { | ||
| 4965 | - "name": "sebastian/recursion-context", | ||
| 4966 | - "version": "3.0.0", | ||
| 4967 | - "source": { | ||
| 4968 | - "type": "git", | ||
| 4969 | - "url": "https://github.com/sebastianbergmann/recursion-context.git", | ||
| 4970 | - "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" | ||
| 4971 | - }, | ||
| 4972 | - "dist": { | ||
| 4973 | - "type": "zip", | ||
| 4974 | - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", | ||
| 4975 | - "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", | ||
| 4976 | - "shasum": "" | ||
| 4977 | - }, | ||
| 4978 | - "require": { | ||
| 4979 | - "php": "^7.0" | ||
| 4980 | - }, | ||
| 4981 | - "require-dev": { | ||
| 4982 | - "phpunit/phpunit": "^6.0" | ||
| 4983 | - }, | ||
| 4984 | - "type": "library", | ||
| 4985 | - "extra": { | ||
| 4986 | - "branch-alias": { | ||
| 4987 | - "dev-master": "3.0.x-dev" | ||
| 4988 | - } | ||
| 4989 | - }, | ||
| 4990 | - "autoload": { | ||
| 4991 | - "classmap": [ | ||
| 4992 | - "src/" | ||
| 4993 | - ] | ||
| 4994 | - }, | ||
| 4995 | - "notification-url": "https://packagist.org/downloads/", | ||
| 4996 | - "license": [ | ||
| 4997 | - "BSD-3-Clause" | ||
| 4998 | - ], | ||
| 4999 | - "authors": [ | ||
| 5000 | - { | ||
| 5001 | - "name": "Jeff Welch", | ||
| 5002 | - "email": "whatthejeff@gmail.com" | ||
| 5003 | - }, | ||
| 5004 | - { | ||
| 5005 | - "name": "Sebastian Bergmann", | ||
| 5006 | - "email": "sebastian@phpunit.de" | ||
| 5007 | - }, | ||
| 5008 | - { | ||
| 5009 | - "name": "Adam Harvey", | ||
| 5010 | - "email": "aharvey@php.net" | ||
| 5011 | - } | ||
| 5012 | - ], | ||
| 5013 | - "description": "Provides functionality to recursively process PHP variables", | ||
| 5014 | - "homepage": "http://www.github.com/sebastianbergmann/recursion-context", | ||
| 5015 | - "time": "2017-03-03T06:23:57+00:00" | ||
| 5016 | - }, | ||
| 5017 | - { | ||
| 5018 | - "name": "sebastian/resource-operations", | ||
| 5019 | - "version": "1.0.0", | ||
| 5020 | - "source": { | ||
| 5021 | - "type": "git", | ||
| 5022 | - "url": "https://github.com/sebastianbergmann/resource-operations.git", | ||
| 5023 | - "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52" | ||
| 5024 | - }, | ||
| 5025 | - "dist": { | ||
| 5026 | - "type": "zip", | ||
| 5027 | - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", | ||
| 5028 | - "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", | ||
| 5029 | - "shasum": "" | ||
| 5030 | - }, | ||
| 5031 | - "require": { | ||
| 5032 | - "php": ">=5.6.0" | ||
| 5033 | - }, | ||
| 5034 | - "type": "library", | ||
| 5035 | - "extra": { | ||
| 5036 | - "branch-alias": { | ||
| 5037 | - "dev-master": "1.0.x-dev" | ||
| 5038 | - } | ||
| 5039 | - }, | ||
| 5040 | - "autoload": { | ||
| 5041 | - "classmap": [ | ||
| 5042 | - "src/" | ||
| 5043 | - ] | ||
| 5044 | - }, | ||
| 5045 | - "notification-url": "https://packagist.org/downloads/", | ||
| 5046 | - "license": [ | ||
| 5047 | - "BSD-3-Clause" | ||
| 5048 | - ], | ||
| 5049 | - "authors": [ | ||
| 5050 | - { | ||
| 5051 | - "name": "Sebastian Bergmann", | ||
| 5052 | - "email": "sebastian@phpunit.de" | ||
| 5053 | - } | ||
| 5054 | - ], | ||
| 5055 | - "description": "Provides a list of PHP built-in functions that operate on resources", | ||
| 5056 | - "homepage": "https://www.github.com/sebastianbergmann/resource-operations", | ||
| 5057 | - "time": "2015-07-28T20:34:47+00:00" | ||
| 5058 | - }, | ||
| 5059 | - { | ||
| 5060 | - "name": "sebastian/version", | ||
| 5061 | - "version": "2.0.1", | ||
| 5062 | - "source": { | ||
| 5063 | - "type": "git", | ||
| 5064 | - "url": "https://github.com/sebastianbergmann/version.git", | ||
| 5065 | - "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" | ||
| 5066 | - }, | ||
| 5067 | - "dist": { | ||
| 5068 | - "type": "zip", | ||
| 5069 | - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", | ||
| 5070 | - "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", | ||
| 5071 | - "shasum": "" | ||
| 5072 | - }, | ||
| 5073 | - "require": { | ||
| 5074 | - "php": ">=5.6" | ||
| 5075 | - }, | ||
| 5076 | - "type": "library", | ||
| 5077 | - "extra": { | ||
| 5078 | - "branch-alias": { | ||
| 5079 | - "dev-master": "2.0.x-dev" | ||
| 5080 | - } | ||
| 5081 | - }, | ||
| 5082 | - "autoload": { | ||
| 5083 | - "classmap": [ | ||
| 5084 | - "src/" | ||
| 5085 | - ] | ||
| 5086 | - }, | ||
| 5087 | - "notification-url": "https://packagist.org/downloads/", | ||
| 5088 | - "license": [ | ||
| 5089 | - "BSD-3-Clause" | ||
| 5090 | - ], | ||
| 5091 | - "authors": [ | ||
| 5092 | - { | ||
| 5093 | - "name": "Sebastian Bergmann", | ||
| 5094 | - "email": "sebastian@phpunit.de", | ||
| 5095 | - "role": "lead" | ||
| 5096 | - } | ||
| 5097 | - ], | ||
| 5098 | - "description": "Library that helps with managing the version number of Git-hosted PHP projects", | ||
| 5099 | - "homepage": "https://github.com/sebastianbergmann/version", | ||
| 5100 | - "time": "2016-10-03T07:35:21+00:00" | ||
| 5101 | - }, | ||
| 5102 | - { | ||
| 5103 | - "name": "stecman/symfony-console-completion", | ||
| 5104 | - "version": "0.7.0", | ||
| 5105 | - "source": { | ||
| 5106 | - "type": "git", | ||
| 5107 | - "url": "https://github.com/stecman/symfony-console-completion.git", | ||
| 5108 | - "reference": "5461d43e53092b3d3b9dbd9d999f2054730f4bbb" | ||
| 5109 | - }, | ||
| 5110 | - "dist": { | ||
| 5111 | - "type": "zip", | ||
| 5112 | - "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/5461d43e53092b3d3b9dbd9d999f2054730f4bbb", | ||
| 5113 | - "reference": "5461d43e53092b3d3b9dbd9d999f2054730f4bbb", | ||
| 5114 | - "shasum": "" | ||
| 5115 | - }, | ||
| 5116 | - "require": { | ||
| 5117 | - "php": ">=5.3.2", | ||
| 5118 | - "symfony/console": "~2.3 || ~3.0" | ||
| 5119 | - }, | ||
| 5120 | - "require-dev": { | ||
| 5121 | - "phpunit/phpunit": "~4.4" | ||
| 5122 | - }, | ||
| 5123 | - "type": "library", | ||
| 5124 | - "extra": { | ||
| 5125 | - "branch-alias": { | ||
| 5126 | - "dev-master": "0.6.x-dev" | ||
| 5127 | - } | ||
| 5128 | - }, | ||
| 5129 | - "autoload": { | ||
| 5130 | - "psr-4": { | ||
| 5131 | - "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/" | ||
| 5132 | - } | ||
| 5133 | - }, | ||
| 5134 | - "notification-url": "https://packagist.org/downloads/", | ||
| 5135 | - "license": [ | ||
| 5136 | - "MIT" | ||
| 5137 | - ], | ||
| 5138 | - "authors": [ | ||
| 5139 | - { | ||
| 5140 | - "name": "Stephen Holdaway", | ||
| 5141 | - "email": "stephen@stecman.co.nz" | ||
| 5142 | - } | ||
| 5143 | - ], | ||
| 5144 | - "description": "Automatic BASH completion for Symfony Console Component based applications.", | ||
| 5145 | - "time": "2016-02-24T05:08:54+00:00" | ||
| 5146 | - }, | ||
| 5147 | - { | ||
| 5148 | - "name": "symfony/browser-kit", | ||
| 5149 | - "version": "v3.3.2", | ||
| 5150 | - "source": { | ||
| 5151 | - "type": "git", | ||
| 5152 | - "url": "https://github.com/symfony/browser-kit.git", | ||
| 5153 | - "reference": "c2c8ceb1aa9dab9eae54e9150e6a588ce3e53be1" | ||
| 5154 | - }, | ||
| 5155 | - "dist": { | ||
| 5156 | - "type": "zip", | ||
| 5157 | - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/c2c8ceb1aa9dab9eae54e9150e6a588ce3e53be1", | ||
| 5158 | - "reference": "c2c8ceb1aa9dab9eae54e9150e6a588ce3e53be1", | ||
| 5159 | - "shasum": "" | ||
| 5160 | - }, | ||
| 5161 | - "require": { | ||
| 5162 | - "php": ">=5.5.9", | ||
| 5163 | - "symfony/dom-crawler": "~2.8|~3.0" | ||
| 5164 | - }, | ||
| 5165 | - "require-dev": { | ||
| 5166 | - "symfony/css-selector": "~2.8|~3.0", | ||
| 5167 | - "symfony/process": "~2.8|~3.0" | ||
| 5168 | - }, | ||
| 5169 | - "suggest": { | ||
| 5170 | - "symfony/process": "" | ||
| 5171 | - }, | ||
| 5172 | - "type": "library", | ||
| 5173 | - "extra": { | ||
| 5174 | - "branch-alias": { | ||
| 5175 | - "dev-master": "3.3-dev" | ||
| 5176 | - } | ||
| 5177 | - }, | ||
| 5178 | - "autoload": { | ||
| 5179 | - "psr-4": { | ||
| 5180 | - "Symfony\\Component\\BrowserKit\\": "" | ||
| 5181 | - }, | ||
| 5182 | - "exclude-from-classmap": [ | ||
| 5183 | - "/Tests/" | ||
| 5184 | - ] | ||
| 5185 | - }, | ||
| 5186 | - "notification-url": "https://packagist.org/downloads/", | ||
| 5187 | - "license": [ | ||
| 5188 | - "MIT" | ||
| 5189 | - ], | ||
| 5190 | - "authors": [ | ||
| 5191 | - { | ||
| 5192 | - "name": "Fabien Potencier", | ||
| 5193 | - "email": "fabien@symfony.com" | ||
| 5194 | - }, | ||
| 5195 | - { | ||
| 5196 | - "name": "Symfony Community", | ||
| 5197 | - "homepage": "https://symfony.com/contributors" | ||
| 5198 | - } | ||
| 5199 | - ], | ||
| 5200 | - "description": "Symfony BrowserKit Component", | ||
| 5201 | - "homepage": "https://symfony.com", | ||
| 5202 | - "time": "2017-04-12T14:14:56+00:00" | ||
| 5203 | - }, | ||
| 5204 | - { | ||
| 5205 | - "name": "symfony/console", | ||
| 5206 | - "version": "v3.3.2", | ||
| 5207 | - "source": { | ||
| 5208 | - "type": "git", | ||
| 5209 | - "url": "https://github.com/symfony/console.git", | ||
| 5210 | - "reference": "70d2a29b2911cbdc91a7e268046c395278238b2e" | ||
| 5211 | - }, | ||
| 5212 | - "dist": { | ||
| 5213 | - "type": "zip", | ||
| 5214 | - "url": "https://api.github.com/repos/symfony/console/zipball/70d2a29b2911cbdc91a7e268046c395278238b2e", | ||
| 5215 | - "reference": "70d2a29b2911cbdc91a7e268046c395278238b2e", | ||
| 5216 | - "shasum": "" | ||
| 5217 | - }, | ||
| 5218 | - "require": { | ||
| 5219 | - "php": ">=5.5.9", | ||
| 5220 | - "symfony/debug": "~2.8|~3.0", | ||
| 5221 | - "symfony/polyfill-mbstring": "~1.0" | ||
| 5222 | - }, | ||
| 5223 | - "conflict": { | ||
| 5224 | - "symfony/dependency-injection": "<3.3" | ||
| 5225 | - }, | ||
| 5226 | - "require-dev": { | ||
| 5227 | - "psr/log": "~1.0", | ||
| 5228 | - "symfony/config": "~3.3", | ||
| 5229 | - "symfony/dependency-injection": "~3.3", | ||
| 5230 | - "symfony/event-dispatcher": "~2.8|~3.0", | ||
| 5231 | - "symfony/filesystem": "~2.8|~3.0", | ||
| 5232 | - "symfony/http-kernel": "~2.8|~3.0", | ||
| 5233 | - "symfony/process": "~2.8|~3.0" | ||
| 5234 | - }, | ||
| 5235 | - "suggest": { | ||
| 5236 | - "psr/log": "For using the console logger", | ||
| 5237 | - "symfony/event-dispatcher": "", | ||
| 5238 | - "symfony/filesystem": "", | ||
| 5239 | - "symfony/process": "" | ||
| 5240 | - }, | ||
| 5241 | - "type": "library", | ||
| 5242 | - "extra": { | ||
| 5243 | - "branch-alias": { | ||
| 5244 | - "dev-master": "3.3-dev" | ||
| 5245 | - } | ||
| 5246 | - }, | ||
| 5247 | - "autoload": { | ||
| 5248 | - "psr-4": { | ||
| 5249 | - "Symfony\\Component\\Console\\": "" | ||
| 5250 | - }, | ||
| 5251 | - "exclude-from-classmap": [ | ||
| 5252 | - "/Tests/" | ||
| 5253 | - ] | ||
| 5254 | - }, | ||
| 5255 | - "notification-url": "https://packagist.org/downloads/", | ||
| 5256 | - "license": [ | ||
| 5257 | - "MIT" | ||
| 5258 | - ], | ||
| 5259 | - "authors": [ | ||
| 5260 | - { | ||
| 5261 | - "name": "Fabien Potencier", | ||
| 5262 | - "email": "fabien@symfony.com" | ||
| 5263 | - }, | ||
| 5264 | - { | ||
| 5265 | - "name": "Symfony Community", | ||
| 5266 | - "homepage": "https://symfony.com/contributors" | ||
| 5267 | - } | ||
| 5268 | - ], | ||
| 5269 | - "description": "Symfony Console Component", | ||
| 5270 | - "homepage": "https://symfony.com", | ||
| 5271 | - "time": "2017-06-02T19:24:58+00:00" | ||
| 5272 | - }, | ||
| 5273 | - { | ||
| 5274 | - "name": "symfony/css-selector", | ||
| 5275 | - "version": "v3.3.2", | ||
| 5276 | - "source": { | ||
| 5277 | - "type": "git", | ||
| 5278 | - "url": "https://github.com/symfony/css-selector.git", | ||
| 5279 | - "reference": "4d882dced7b995d5274293039370148e291808f2" | ||
| 5280 | - }, | ||
| 5281 | - "dist": { | ||
| 5282 | - "type": "zip", | ||
| 5283 | - "url": "https://api.github.com/repos/symfony/css-selector/zipball/4d882dced7b995d5274293039370148e291808f2", | ||
| 5284 | - "reference": "4d882dced7b995d5274293039370148e291808f2", | ||
| 5285 | - "shasum": "" | ||
| 5286 | - }, | ||
| 5287 | - "require": { | ||
| 5288 | - "php": ">=5.5.9" | ||
| 5289 | - }, | ||
| 5290 | - "type": "library", | ||
| 5291 | - "extra": { | ||
| 5292 | - "branch-alias": { | ||
| 5293 | - "dev-master": "3.3-dev" | ||
| 5294 | - } | ||
| 5295 | - }, | ||
| 5296 | - "autoload": { | ||
| 5297 | - "psr-4": { | ||
| 5298 | - "Symfony\\Component\\CssSelector\\": "" | ||
| 5299 | - }, | ||
| 5300 | - "exclude-from-classmap": [ | ||
| 5301 | - "/Tests/" | ||
| 5302 | - ] | ||
| 5303 | - }, | ||
| 5304 | - "notification-url": "https://packagist.org/downloads/", | ||
| 5305 | - "license": [ | ||
| 5306 | - "MIT" | ||
| 5307 | - ], | ||
| 5308 | - "authors": [ | ||
| 5309 | - { | ||
| 5310 | - "name": "Jean-François Simon", | ||
| 5311 | - "email": "jeanfrancois.simon@sensiolabs.com" | ||
| 5312 | - }, | ||
| 5313 | - { | ||
| 5314 | - "name": "Fabien Potencier", | ||
| 5315 | - "email": "fabien@symfony.com" | ||
| 5316 | - }, | ||
| 5317 | - { | ||
| 5318 | - "name": "Symfony Community", | ||
| 5319 | - "homepage": "https://symfony.com/contributors" | ||
| 5320 | - } | ||
| 5321 | - ], | ||
| 5322 | - "description": "Symfony CssSelector Component", | ||
| 5323 | - "homepage": "https://symfony.com", | ||
| 5324 | - "time": "2017-05-01T15:01:29+00:00" | ||
| 5325 | - }, | ||
| 5326 | - { | ||
| 5327 | - "name": "symfony/debug", | ||
| 5328 | - "version": "v3.3.2", | ||
| 5329 | - "source": { | ||
| 5330 | - "type": "git", | ||
| 5331 | - "url": "https://github.com/symfony/debug.git", | ||
| 5332 | - "reference": "e9c50482841ef696e8fa1470d950a79c8921f45d" | ||
| 5333 | - }, | ||
| 5334 | - "dist": { | ||
| 5335 | - "type": "zip", | ||
| 5336 | - "url": "https://api.github.com/repos/symfony/debug/zipball/e9c50482841ef696e8fa1470d950a79c8921f45d", | ||
| 5337 | - "reference": "e9c50482841ef696e8fa1470d950a79c8921f45d", | ||
| 5338 | - "shasum": "" | ||
| 5339 | - }, | ||
| 5340 | - "require": { | ||
| 5341 | - "php": ">=5.5.9", | ||
| 5342 | - "psr/log": "~1.0" | ||
| 5343 | - }, | ||
| 5344 | - "conflict": { | ||
| 5345 | - "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2" | ||
| 5346 | - }, | ||
| 5347 | - "require-dev": { | ||
| 5348 | - "symfony/http-kernel": "~2.8|~3.0" | ||
| 5349 | - }, | ||
| 5350 | - "type": "library", | ||
| 5351 | - "extra": { | ||
| 5352 | - "branch-alias": { | ||
| 5353 | - "dev-master": "3.3-dev" | ||
| 5354 | - } | ||
| 5355 | - }, | ||
| 5356 | - "autoload": { | ||
| 5357 | - "psr-4": { | ||
| 5358 | - "Symfony\\Component\\Debug\\": "" | ||
| 5359 | - }, | ||
| 5360 | - "exclude-from-classmap": [ | ||
| 5361 | - "/Tests/" | ||
| 5362 | - ] | ||
| 5363 | - }, | ||
| 5364 | - "notification-url": "https://packagist.org/downloads/", | ||
| 5365 | - "license": [ | ||
| 5366 | - "MIT" | ||
| 5367 | - ], | ||
| 5368 | - "authors": [ | ||
| 5369 | - { | ||
| 5370 | - "name": "Fabien Potencier", | ||
| 5371 | - "email": "fabien@symfony.com" | ||
| 5372 | - }, | ||
| 5373 | - { | ||
| 5374 | - "name": "Symfony Community", | ||
| 5375 | - "homepage": "https://symfony.com/contributors" | ||
| 5376 | - } | ||
| 5377 | - ], | ||
| 5378 | - "description": "Symfony Debug Component", | ||
| 5379 | - "homepage": "https://symfony.com", | ||
| 5380 | - "time": "2017-06-01T21:01:25+00:00" | ||
| 5381 | - }, | ||
| 5382 | - { | ||
| 5383 | - "name": "symfony/dom-crawler", | ||
| 5384 | - "version": "v3.3.2", | ||
| 5385 | - "source": { | ||
| 5386 | - "type": "git", | ||
| 5387 | - "url": "https://github.com/symfony/dom-crawler.git", | ||
| 5388 | - "reference": "fc2c588ce376e9fe04a7b8c79e3ec62fe32d95b1" | ||
| 5389 | - }, | ||
| 5390 | - "dist": { | ||
| 5391 | - "type": "zip", | ||
| 5392 | - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/fc2c588ce376e9fe04a7b8c79e3ec62fe32d95b1", | ||
| 5393 | - "reference": "fc2c588ce376e9fe04a7b8c79e3ec62fe32d95b1", | ||
| 5394 | - "shasum": "" | ||
| 5395 | - }, | ||
| 5396 | - "require": { | ||
| 5397 | - "php": ">=5.5.9", | ||
| 5398 | - "symfony/polyfill-mbstring": "~1.0" | ||
| 5399 | - }, | ||
| 5400 | - "require-dev": { | ||
| 5401 | - "symfony/css-selector": "~2.8|~3.0" | ||
| 5402 | - }, | ||
| 5403 | - "suggest": { | ||
| 5404 | - "symfony/css-selector": "" | ||
| 5405 | - }, | ||
| 5406 | - "type": "library", | ||
| 5407 | - "extra": { | ||
| 5408 | - "branch-alias": { | ||
| 5409 | - "dev-master": "3.3-dev" | ||
| 5410 | - } | ||
| 5411 | - }, | ||
| 5412 | - "autoload": { | ||
| 5413 | - "psr-4": { | ||
| 5414 | - "Symfony\\Component\\DomCrawler\\": "" | ||
| 5415 | - }, | ||
| 5416 | - "exclude-from-classmap": [ | ||
| 5417 | - "/Tests/" | ||
| 5418 | - ] | ||
| 5419 | - }, | ||
| 5420 | - "notification-url": "https://packagist.org/downloads/", | ||
| 5421 | - "license": [ | ||
| 5422 | - "MIT" | ||
| 5423 | - ], | ||
| 5424 | - "authors": [ | ||
| 5425 | - { | ||
| 5426 | - "name": "Fabien Potencier", | ||
| 5427 | - "email": "fabien@symfony.com" | ||
| 5428 | - }, | ||
| 5429 | - { | ||
| 5430 | - "name": "Symfony Community", | ||
| 5431 | - "homepage": "https://symfony.com/contributors" | ||
| 5432 | - } | ||
| 5433 | - ], | ||
| 5434 | - "description": "Symfony DomCrawler Component", | ||
| 5435 | - "homepage": "https://symfony.com", | ||
| 5436 | - "time": "2017-05-25T23:10:31+00:00" | ||
| 5437 | - }, | ||
| 5438 | - { | ||
| 5439 | - "name": "symfony/event-dispatcher", | ||
| 5440 | - "version": "v3.3.2", | ||
| 5441 | - "source": { | ||
| 5442 | - "type": "git", | ||
| 5443 | - "url": "https://github.com/symfony/event-dispatcher.git", | ||
| 5444 | - "reference": "4054a102470665451108f9b59305c79176ef98f0" | ||
| 5445 | - }, | ||
| 5446 | - "dist": { | ||
| 5447 | - "type": "zip", | ||
| 5448 | - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4054a102470665451108f9b59305c79176ef98f0", | ||
| 5449 | - "reference": "4054a102470665451108f9b59305c79176ef98f0", | ||
| 5450 | - "shasum": "" | ||
| 5451 | - }, | ||
| 5452 | - "require": { | ||
| 5453 | - "php": ">=5.5.9" | ||
| 5454 | - }, | ||
| 5455 | - "conflict": { | ||
| 5456 | - "symfony/dependency-injection": "<3.3" | ||
| 5457 | - }, | ||
| 5458 | - "require-dev": { | ||
| 5459 | - "psr/log": "~1.0", | ||
| 5460 | - "symfony/config": "~2.8|~3.0", | ||
| 5461 | - "symfony/dependency-injection": "~3.3", | ||
| 5462 | - "symfony/expression-language": "~2.8|~3.0", | ||
| 5463 | - "symfony/stopwatch": "~2.8|~3.0" | ||
| 5464 | - }, | ||
| 5465 | - "suggest": { | ||
| 5466 | - "symfony/dependency-injection": "", | ||
| 5467 | - "symfony/http-kernel": "" | ||
| 5468 | - }, | ||
| 5469 | - "type": "library", | ||
| 5470 | - "extra": { | ||
| 5471 | - "branch-alias": { | ||
| 5472 | - "dev-master": "3.3-dev" | ||
| 5473 | - } | ||
| 5474 | - }, | ||
| 5475 | - "autoload": { | ||
| 5476 | - "psr-4": { | ||
| 5477 | - "Symfony\\Component\\EventDispatcher\\": "" | ||
| 5478 | - }, | ||
| 5479 | - "exclude-from-classmap": [ | ||
| 5480 | - "/Tests/" | ||
| 5481 | - ] | ||
| 5482 | - }, | ||
| 5483 | - "notification-url": "https://packagist.org/downloads/", | ||
| 5484 | - "license": [ | ||
| 5485 | - "MIT" | ||
| 5486 | - ], | ||
| 5487 | - "authors": [ | ||
| 5488 | - { | ||
| 5489 | - "name": "Fabien Potencier", | ||
| 5490 | - "email": "fabien@symfony.com" | ||
| 5491 | - }, | ||
| 5492 | - { | ||
| 5493 | - "name": "Symfony Community", | ||
| 5494 | - "homepage": "https://symfony.com/contributors" | ||
| 5495 | - } | ||
| 5496 | - ], | ||
| 5497 | - "description": "Symfony EventDispatcher Component", | ||
| 5498 | - "homepage": "https://symfony.com", | ||
| 5499 | - "time": "2017-06-04T18:15:29+00:00" | ||
| 5500 | - }, | ||
| 5501 | - { | ||
| 5502 | - "name": "symfony/finder", | ||
| 5503 | - "version": "v3.3.2", | ||
| 5504 | - "source": { | ||
| 5505 | - "type": "git", | ||
| 5506 | - "url": "https://github.com/symfony/finder.git", | ||
| 5507 | - "reference": "baea7f66d30854ad32988c11a09d7ffd485810c4" | ||
| 5508 | - }, | ||
| 5509 | - "dist": { | ||
| 5510 | - "type": "zip", | ||
| 5511 | - "url": "https://api.github.com/repos/symfony/finder/zipball/baea7f66d30854ad32988c11a09d7ffd485810c4", | ||
| 5512 | - "reference": "baea7f66d30854ad32988c11a09d7ffd485810c4", | ||
| 5513 | - "shasum": "" | ||
| 5514 | - }, | ||
| 5515 | - "require": { | ||
| 5516 | - "php": ">=5.5.9" | ||
| 5517 | - }, | ||
| 5518 | - "type": "library", | ||
| 5519 | - "extra": { | ||
| 5520 | - "branch-alias": { | ||
| 5521 | - "dev-master": "3.3-dev" | ||
| 5522 | - } | ||
| 5523 | - }, | ||
| 5524 | - "autoload": { | ||
| 5525 | - "psr-4": { | ||
| 5526 | - "Symfony\\Component\\Finder\\": "" | ||
| 5527 | - }, | ||
| 5528 | - "exclude-from-classmap": [ | ||
| 5529 | - "/Tests/" | ||
| 5530 | - ] | ||
| 5531 | - }, | ||
| 5532 | - "notification-url": "https://packagist.org/downloads/", | ||
| 5533 | - "license": [ | ||
| 5534 | - "MIT" | ||
| 5535 | - ], | ||
| 5536 | - "authors": [ | ||
| 5537 | - { | ||
| 5538 | - "name": "Fabien Potencier", | ||
| 5539 | - "email": "fabien@symfony.com" | ||
| 5540 | - }, | ||
| 5541 | - { | ||
| 5542 | - "name": "Symfony Community", | ||
| 5543 | - "homepage": "https://symfony.com/contributors" | ||
| 5544 | - } | ||
| 5545 | - ], | ||
| 5546 | - "description": "Symfony Finder Component", | ||
| 5547 | - "homepage": "https://symfony.com", | ||
| 5548 | - "time": "2017-06-01T21:01:25+00:00" | ||
| 5549 | - }, | ||
| 5550 | - { | ||
| 5551 | - "name": "symfony/polyfill-mbstring", | ||
| 5552 | - "version": "v1.4.0", | ||
| 5553 | - "source": { | ||
| 5554 | - "type": "git", | ||
| 5555 | - "url": "https://github.com/symfony/polyfill-mbstring.git", | ||
| 5556 | - "reference": "f29dca382a6485c3cbe6379f0c61230167681937" | ||
| 5557 | - }, | ||
| 5558 | - "dist": { | ||
| 5559 | - "type": "zip", | ||
| 5560 | - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f29dca382a6485c3cbe6379f0c61230167681937", | ||
| 5561 | - "reference": "f29dca382a6485c3cbe6379f0c61230167681937", | ||
| 5562 | - "shasum": "" | ||
| 5563 | - }, | ||
| 5564 | - "require": { | ||
| 5565 | - "php": ">=5.3.3" | ||
| 5566 | - }, | ||
| 5567 | - "suggest": { | ||
| 5568 | - "ext-mbstring": "For best performance" | ||
| 5569 | - }, | ||
| 5570 | - "type": "library", | ||
| 5571 | - "extra": { | ||
| 5572 | - "branch-alias": { | ||
| 5573 | - "dev-master": "1.4-dev" | ||
| 5574 | - } | ||
| 5575 | - }, | ||
| 5576 | - "autoload": { | ||
| 5577 | - "psr-4": { | ||
| 5578 | - "Symfony\\Polyfill\\Mbstring\\": "" | ||
| 5579 | - }, | ||
| 5580 | - "files": [ | ||
| 5581 | - "bootstrap.php" | ||
| 5582 | - ] | ||
| 5583 | - }, | ||
| 5584 | - "notification-url": "https://packagist.org/downloads/", | ||
| 5585 | - "license": [ | ||
| 5586 | - "MIT" | ||
| 5587 | - ], | ||
| 5588 | - "authors": [ | ||
| 5589 | - { | ||
| 5590 | - "name": "Nicolas Grekas", | ||
| 5591 | - "email": "p@tchwork.com" | ||
| 5592 | - }, | ||
| 5593 | - { | ||
| 5594 | - "name": "Symfony Community", | ||
| 5595 | - "homepage": "https://symfony.com/contributors" | ||
| 5596 | - } | ||
| 5597 | - ], | ||
| 5598 | - "description": "Symfony polyfill for the Mbstring extension", | ||
| 5599 | - "homepage": "https://symfony.com", | ||
| 5600 | - "keywords": [ | ||
| 5601 | - "compatibility", | ||
| 5602 | - "mbstring", | ||
| 5603 | - "polyfill", | ||
| 5604 | - "portable", | ||
| 5605 | - "shim" | ||
| 5606 | - ], | ||
| 5607 | - "time": "2017-06-09T14:24:12+00:00" | ||
| 5608 | - }, | ||
| 5609 | - { | ||
| 5610 | - "name": "symfony/yaml", | ||
| 5611 | - "version": "v3.3.2", | ||
| 5612 | - "source": { | ||
| 5613 | - "type": "git", | ||
| 5614 | - "url": "https://github.com/symfony/yaml.git", | ||
| 5615 | - "reference": "9752a30000a8ca9f4b34b5227d15d0101b96b063" | ||
| 5616 | - }, | ||
| 5617 | - "dist": { | ||
| 5618 | - "type": "zip", | ||
| 5619 | - "url": "https://api.github.com/repos/symfony/yaml/zipball/9752a30000a8ca9f4b34b5227d15d0101b96b063", | ||
| 5620 | - "reference": "9752a30000a8ca9f4b34b5227d15d0101b96b063", | ||
| 5621 | - "shasum": "" | ||
| 5622 | - }, | ||
| 5623 | - "require": { | ||
| 5624 | - "php": ">=5.5.9" | ||
| 5625 | - }, | ||
| 5626 | - "require-dev": { | ||
| 5627 | - "symfony/console": "~2.8|~3.0" | ||
| 5628 | - }, | ||
| 5629 | - "suggest": { | ||
| 5630 | - "symfony/console": "For validating YAML files using the lint command" | ||
| 5631 | - }, | ||
| 5632 | - "type": "library", | ||
| 5633 | - "extra": { | ||
| 5634 | - "branch-alias": { | ||
| 5635 | - "dev-master": "3.3-dev" | ||
| 5636 | - } | ||
| 5637 | - }, | ||
| 5638 | - "autoload": { | ||
| 5639 | - "psr-4": { | ||
| 5640 | - "Symfony\\Component\\Yaml\\": "" | ||
| 5641 | - }, | ||
| 5642 | - "exclude-from-classmap": [ | ||
| 5643 | - "/Tests/" | ||
| 5644 | - ] | ||
| 5645 | - }, | ||
| 5646 | - "notification-url": "https://packagist.org/downloads/", | ||
| 5647 | - "license": [ | ||
| 5648 | - "MIT" | ||
| 5649 | - ], | ||
| 5650 | - "authors": [ | ||
| 5651 | - { | ||
| 5652 | - "name": "Fabien Potencier", | ||
| 5653 | - "email": "fabien@symfony.com" | ||
| 5654 | - }, | ||
| 5655 | - { | ||
| 5656 | - "name": "Symfony Community", | ||
| 5657 | - "homepage": "https://symfony.com/contributors" | ||
| 5658 | - } | ||
| 5659 | - ], | ||
| 5660 | - "description": "Symfony Yaml Component", | ||
| 5661 | - "homepage": "https://symfony.com", | ||
| 5662 | - "time": "2017-06-02T22:05:06+00:00" | ||
| 5663 | - }, | ||
| 5664 | - { | ||
| 5665 | - "name": "theseer/tokenizer", | ||
| 5666 | - "version": "1.1.0", | ||
| 5667 | - "source": { | ||
| 5668 | - "type": "git", | ||
| 5669 | - "url": "https://github.com/theseer/tokenizer.git", | ||
| 5670 | - "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b" | ||
| 5671 | - }, | ||
| 5672 | - "dist": { | ||
| 5673 | - "type": "zip", | ||
| 5674 | - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b", | ||
| 5675 | - "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b", | ||
| 5676 | - "shasum": "" | ||
| 5677 | - }, | ||
| 5678 | - "require": { | ||
| 5679 | - "ext-dom": "*", | ||
| 5680 | - "ext-tokenizer": "*", | ||
| 5681 | - "ext-xmlwriter": "*", | ||
| 5682 | - "php": "^7.0" | ||
| 5683 | - }, | ||
| 5684 | - "type": "library", | ||
| 5685 | - "autoload": { | ||
| 5686 | - "classmap": [ | ||
| 5687 | - "src/" | ||
| 5688 | - ] | ||
| 5689 | - }, | ||
| 5690 | - "notification-url": "https://packagist.org/downloads/", | ||
| 5691 | - "license": [ | ||
| 5692 | - "BSD-3-Clause" | ||
| 5693 | - ], | ||
| 5694 | - "authors": [ | ||
| 5695 | - { | ||
| 5696 | - "name": "Arne Blankerts", | ||
| 5697 | - "email": "arne@blankerts.de", | ||
| 5698 | - "role": "Developer" | ||
| 5699 | - } | ||
| 5700 | - ], | ||
| 5701 | - "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", | ||
| 5702 | - "time": "2017-04-07T12:08:54+00:00" | ||
| 5703 | - }, | ||
| 5704 | - { | ||
| 5705 | - "name": "webmozart/assert", | ||
| 5706 | - "version": "1.2.0", | ||
| 5707 | - "source": { | ||
| 5708 | - "type": "git", | ||
| 5709 | - "url": "https://github.com/webmozart/assert.git", | ||
| 5710 | - "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f" | ||
| 5711 | - }, | ||
| 5712 | - "dist": { | ||
| 5713 | - "type": "zip", | ||
| 5714 | - "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f", | ||
| 5715 | - "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f", | ||
| 5716 | - "shasum": "" | ||
| 5717 | - }, | ||
| 5718 | - "require": { | ||
| 5719 | - "php": "^5.3.3 || ^7.0" | ||
| 5720 | - }, | ||
| 5721 | - "require-dev": { | ||
| 5722 | - "phpunit/phpunit": "^4.6", | ||
| 5723 | - "sebastian/version": "^1.0.1" | ||
| 5724 | - }, | ||
| 5725 | - "type": "library", | ||
| 5726 | - "extra": { | ||
| 5727 | - "branch-alias": { | ||
| 5728 | - "dev-master": "1.3-dev" | ||
| 5729 | - } | ||
| 5730 | - }, | ||
| 5731 | - "autoload": { | ||
| 5732 | - "psr-4": { | ||
| 5733 | - "Webmozart\\Assert\\": "src/" | ||
| 5734 | - } | ||
| 5735 | - }, | ||
| 5736 | - "notification-url": "https://packagist.org/downloads/", | ||
| 5737 | - "license": [ | ||
| 5738 | - "MIT" | ||
| 5739 | - ], | ||
| 5740 | - "authors": [ | ||
| 5741 | - { | ||
| 5742 | - "name": "Bernhard Schussek", | ||
| 5743 | - "email": "bschussek@gmail.com" | ||
| 5744 | - } | ||
| 5745 | - ], | ||
| 5746 | - "description": "Assertions to validate method input/output with nice error messages.", | ||
| 5747 | - "keywords": [ | ||
| 5748 | - "assert", | ||
| 5749 | - "check", | ||
| 5750 | - "validate" | ||
| 5751 | - ], | ||
| 5752 | - "time": "2016-11-23T20:04:58+00:00" | ||
| 5753 | - }, | ||
| 5754 | - { | ||
| 5755 | - "name": "yiisoft/yii2-debug", | ||
| 5756 | - "version": "2.0.9", | ||
| 5757 | - "source": { | ||
| 5758 | - "type": "git", | ||
| 5759 | - "url": "https://github.com/yiisoft/yii2-debug.git", | ||
| 5760 | - "reference": "647be6c9d48dc2f3c2e2f33b9eba0a4ca78abde9" | ||
| 5761 | - }, | ||
| 5762 | - "dist": { | ||
| 5763 | - "type": "zip", | ||
| 5764 | - "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/647be6c9d48dc2f3c2e2f33b9eba0a4ca78abde9", | ||
| 5765 | - "reference": "647be6c9d48dc2f3c2e2f33b9eba0a4ca78abde9", | ||
| 5766 | - "shasum": "" | ||
| 5767 | - }, | ||
| 5768 | - "require": { | ||
| 5769 | - "yiisoft/yii2": "~2.0.11", | ||
| 5770 | - "yiisoft/yii2-bootstrap": "~2.0.0" | ||
| 5771 | - }, | ||
| 5772 | - "type": "yii2-extension", | ||
| 5773 | - "extra": { | ||
| 5774 | - "branch-alias": { | ||
| 5775 | - "dev-master": "2.0.x-dev" | ||
| 5776 | - } | ||
| 5777 | - }, | ||
| 5778 | - "autoload": { | ||
| 5779 | - "psr-4": { | ||
| 5780 | - "yii\\debug\\": "" | ||
| 5781 | - } | ||
| 5782 | - }, | ||
| 5783 | - "notification-url": "https://packagist.org/downloads/", | ||
| 5784 | - "license": [ | ||
| 5785 | - "BSD-3-Clause" | ||
| 5786 | - ], | ||
| 5787 | - "authors": [ | ||
| 5788 | - { | ||
| 5789 | - "name": "Qiang Xue", | ||
| 5790 | - "email": "qiang.xue@gmail.com" | ||
| 5791 | - } | ||
| 5792 | - ], | ||
| 5793 | - "description": "The debugger extension for the Yii framework", | ||
| 5794 | - "keywords": [ | ||
| 5795 | - "debug", | ||
| 5796 | - "debugger", | ||
| 5797 | - "yii2" | ||
| 5798 | - ], | ||
| 5799 | - "time": "2017-02-21T10:30:50+00:00" | ||
| 5800 | - }, | ||
| 5801 | - { | ||
| 5802 | - "name": "yiisoft/yii2-faker", | ||
| 5803 | - "version": "2.0.3", | ||
| 5804 | - "source": { | ||
| 5805 | - "type": "git", | ||
| 5806 | - "url": "https://github.com/yiisoft/yii2-faker.git", | ||
| 5807 | - "reference": "b88ca69ee226a3610b2c26c026c3203d7ac50f6c" | ||
| 5808 | - }, | ||
| 5809 | - "dist": { | ||
| 5810 | - "type": "zip", | ||
| 5811 | - "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/b88ca69ee226a3610b2c26c026c3203d7ac50f6c", | ||
| 5812 | - "reference": "b88ca69ee226a3610b2c26c026c3203d7ac50f6c", | ||
| 5813 | - "shasum": "" | ||
| 5814 | - }, | ||
| 5815 | - "require": { | ||
| 5816 | - "fzaninotto/faker": "*", | ||
| 5817 | - "yiisoft/yii2": "*" | ||
| 5818 | - }, | ||
| 5819 | - "type": "yii2-extension", | ||
| 5820 | - "extra": { | ||
| 5821 | - "branch-alias": { | ||
| 5822 | - "dev-master": "2.0.x-dev" | ||
| 5823 | - } | ||
| 5824 | - }, | ||
| 5825 | - "autoload": { | ||
| 5826 | - "psr-4": { | ||
| 5827 | - "yii\\faker\\": "" | ||
| 5828 | - } | ||
| 5829 | - }, | ||
| 5830 | - "notification-url": "https://packagist.org/downloads/", | ||
| 5831 | - "license": [ | ||
| 5832 | - "BSD-3-Clause" | ||
| 5833 | - ], | ||
| 5834 | - "authors": [ | ||
| 5835 | - { | ||
| 5836 | - "name": "Mark Jebri", | ||
| 5837 | - "email": "mark.github@yandex.ru" | ||
| 5838 | - } | ||
| 5839 | - ], | ||
| 5840 | - "description": "Fixture generator. The Faker integration for the Yii framework.", | ||
| 5841 | - "keywords": [ | ||
| 5842 | - "Fixture", | ||
| 5843 | - "faker", | ||
| 5844 | - "yii2" | ||
| 5845 | - ], | ||
| 5846 | - "time": "2015-03-01T06:22:44+00:00" | ||
| 5847 | - }, | ||
| 5848 | - { | ||
| 5849 | - "name": "yiisoft/yii2-gii", | ||
| 5850 | - "version": "2.0.5", | ||
| 5851 | - "source": { | ||
| 5852 | - "type": "git", | ||
| 5853 | - "url": "https://github.com/yiisoft/yii2-gii.git", | ||
| 5854 | - "reference": "1bd6df6804ca077ec022587905a0d43eb286f507" | ||
| 5855 | - }, | ||
| 5856 | - "dist": { | ||
| 5857 | - "type": "zip", | ||
| 5858 | - "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/1bd6df6804ca077ec022587905a0d43eb286f507", | ||
| 5859 | - "reference": "1bd6df6804ca077ec022587905a0d43eb286f507", | ||
| 5860 | - "shasum": "" | ||
| 5861 | - }, | ||
| 5862 | - "require": { | ||
| 5863 | - "bower-asset/typeahead.js": "0.10.* | ~0.11.0", | ||
| 5864 | - "phpspec/php-diff": ">=1.0.2", | ||
| 5865 | - "yiisoft/yii2": ">=2.0.4", | ||
| 5866 | - "yiisoft/yii2-bootstrap": "~2.0" | ||
| 5867 | - }, | ||
| 5868 | - "type": "yii2-extension", | ||
| 5869 | - "extra": { | ||
| 5870 | - "branch-alias": { | ||
| 5871 | - "dev-master": "2.0.x-dev" | ||
| 5872 | - }, | ||
| 5873 | - "asset-installer-paths": { | ||
| 5874 | - "npm-asset-library": "vendor/npm", | ||
| 5875 | - "bower-asset-library": "vendor/bower" | ||
| 5876 | - } | ||
| 5877 | - }, | ||
| 5878 | - "autoload": { | ||
| 5879 | - "psr-4": { | ||
| 5880 | - "yii\\gii\\": "" | ||
| 5881 | - } | ||
| 5882 | - }, | ||
| 5883 | - "notification-url": "https://packagist.org/downloads/", | ||
| 5884 | - "license": [ | ||
| 5885 | - "BSD-3-Clause" | ||
| 5886 | - ], | ||
| 5887 | - "authors": [ | ||
| 5888 | - { | ||
| 5889 | - "name": "Qiang Xue", | ||
| 5890 | - "email": "qiang.xue@gmail.com" | ||
| 5891 | - } | ||
| 5892 | - ], | ||
| 5893 | - "description": "The Gii extension for the Yii framework", | ||
| 5894 | - "keywords": [ | ||
| 5895 | - "code generator", | ||
| 5896 | - "gii", | ||
| 5897 | - "yii2" | ||
| 5898 | - ], | ||
| 5899 | - "time": "2016-03-18T14:09:46+00:00" | ||
| 5900 | - } | ||
| 5901 | - ], | ||
| 5902 | - "aliases": [], | ||
| 5903 | - "minimum-stability": "stable", | ||
| 5904 | - "stability-flags": { | ||
| 5905 | - "bower-asset/amcharts-stock": 20, | ||
| 5906 | - "kartik-v/yii2-widget-select2": 20, | ||
| 5907 | - "bower-asset/amcharts": 20, | ||
| 5908 | - "bower-asset/pnotify": 20, | ||
| 5909 | - "kartik-v/yii2-widget-datepicker": 20, | ||
| 5910 | - "zyx/zyx-phpmailer": 0 | ||
| 5911 | - }, | ||
| 5912 | - "prefer-stable": false, | ||
| 5913 | - "prefer-lowest": false, | ||
| 5914 | - "platform": { | ||
| 5915 | - "php": ">=7.0" | ||
| 5916 | - }, | ||
| 5917 | - "platform-dev": [] | ||
| 5918 | -} |
frontend/web/.gitignore