Commit 5f8f82bc33e67ed3783d4857a0e56ab81afdc83b

Authored by Yarik
1 parent 4918cfe1

v0.0.3-stable

__composer.json 0 → 100755
  1 +{
  2 + "name": "artweb/artbox-basic",
  3 + "description": "Artbox Basic Project Template",
  4 + "keywords": [
  5 + "yii2",
  6 + "cms",
  7 + "artweb",
  8 + "artbox",
  9 + "basic",
  10 + "project template"
  11 + ],
  12 + "homepage": "http://artweb.ua",
  13 + "type": "project",
  14 + "license": "BSD-3-Clause",
  15 + "support": {
  16 + "wiki": "http://www.yiiframework.com/wiki/"
  17 + },
  18 + "minimum-stability": "stable",
  19 + "require": {
  20 + "php": ">=7.0",
  21 + "yiisoft/yii2": "~2.0",
  22 + "yiisoft/yii2-bootstrap": "~2.0",
  23 + "yiisoft/yii2-swiftmailer": "~2.0",
  24 + "noam148/yii2-image-manager": "~1.0",
  25 + "yiister/yii2-gentelella": "~1.0",
  26 + "yii2tech/filedb": "~1.0",
  27 + "hiqdev/yii2-asset-pnotify": "~2.0",
  28 + "hiqdev/yii2-asset-icheck": "~1.0",
  29 + "google/apiclient": "^2.0",
  30 + "bower-asset/amcharts-stock": "@dev",
  31 + "speixoto/yii2-amcharts": "^0.1.1",
  32 + "2amigos/yii2-tinymce-widget": "~1.1",
  33 + "kartik-v/yii2-widget-select2": "@dev"
  34 + },
  35 + "require-dev": {
  36 + "yiisoft/yii2-debug": "~2.0.0",
  37 + "yiisoft/yii2-gii": "~2.0.0",
  38 + "yiisoft/yii2-faker": "~2.0.0",
  39 + "codeception/base": "^2.2.3",
  40 + "codeception/verify": "~0.3.1"
  41 + },
  42 + "config": {
  43 + "process-timeout": 1800
  44 + },
  45 + "extra": {
  46 + "asset-installer-paths": {
  47 + "npm-asset-library": "vendor/npm",
  48 + "bower-asset-library": "vendor/bower"
  49 + }
  50 + },
  51 + "repositories": [
  52 + {
  53 + "type": "vcs",
  54 + "url": "git@gitlab.artweb.com.ua:yarik.nechyporuk/artbox-core.git"
  55 + }
  56 + ],
  57 + "autoload": {
  58 + "psr-4": {
  59 + "artbox\\core\\": "artweb/artbox-core/",
  60 + "artbox\\catalog\\": "artweb/artbox-catalog/"
  61 + }
  62 + }
  63 +}
backend/config/main.php
@@ -22,19 +22,6 @@ @@ -22,19 +22,6 @@
22 'alias' => 'artbox\core\controllers\AliasController', 22 'alias' => 'artbox\core\controllers\AliasController',
23 'seo' => 'artbox\core\controllers\SeoController', 23 'seo' => 'artbox\core\controllers\SeoController',
24 'feedback' => 'artbox\core\controllers\FeedbackController', 24 'feedback' => 'artbox\core\controllers\FeedbackController',
25 - 'weblog-article' => 'artbox\weblog\controllers\ArticleController',  
26 - 'category' => 'artbox\catalog\controllers\CategoryController',  
27 - 'brand' => 'artbox\catalog\controllers\BrandController',  
28 - 'product' => 'artbox\catalog\controllers\ProductController',  
29 - 'variant' => 'artbox\catalog\controllers\VariantController',  
30 - 'variant-option-group-complementary' => 'artbox\catalog\controllers\VariantOptionGroupComplController',  
31 - 'variant-option-group-exclusion' => 'artbox\catalog\controllers\VariantOptionGroupExclController',  
32 - 'product-option-group-complementary' => 'artbox\catalog\controllers\ProductOptionGroupComplController',  
33 - 'product-option-group-exclusion' => 'artbox\catalog\controllers\ProductOptionGroupExclController',  
34 - 'variant-option-complementary' => 'artbox\catalog\controllers\VariantOptionComplController',  
35 - 'variant-option-exclusion' => 'artbox\catalog\controllers\VariantOptionExclController',  
36 - 'product-option-complementary' => 'artbox\catalog\controllers\ProductOptionComplController',  
37 - 'product-option-exclusion' => 'artbox\catalog\controllers\ProductOptionExclController',  
38 ], 25 ],
39 'components' => [ 26 'components' => [
40 'assetManager' => [ 27 'assetManager' => [
backend/views/layouts/menu_items.php
@@ -64,52 +64,5 @@ @@ -64,52 +64,5 @@
64 ], 64 ],
65 ], 65 ],
66 ], 66 ],
67 - [  
68 - 'label' => \Yii::t('app', 'SEO'),  
69 - 'url' => '#',  
70 - 'icon' => 'bolt',  
71 - 'items' => [  
72 - [  
73 - 'label' => \Yii::t('core', 'Category'),  
74 - 'url' => [ 'category/index' ],  
75 - 'icon' => 'file-text',  
76 - ],  
77 - ],  
78 - ],  
79 - [  
80 - 'label' => \Yii::t('app', 'Options'),  
81 - 'url' => '#',  
82 - 'icon' => 'filter',  
83 - 'items' => [  
84 - [  
85 - 'label' => \Yii::t('app', 'Options for products'),  
86 - 'url' => '#',  
87 - 'items' => [  
88 - [  
89 - 'label' => \Yii::t('app', 'Complementary'),  
90 - 'url' => [ 'product-option-group-complementary/index' ],  
91 - ],  
92 - [  
93 - 'label' => \Yii::t('app', 'Exclusion'),  
94 - 'url' => [ 'product-option-group-exclusion/index' ],  
95 - ],  
96 - ],  
97 - ],  
98 - [  
99 - 'label' => \Yii::t('app', 'Options for variants'),  
100 - 'url' => '#',  
101 - 'items' => [  
102 - [  
103 - 'label' => \Yii::t('app', 'Complementary'),  
104 - 'url' => [ 'variant-option-group-complementary/index' ],  
105 - ],  
106 - [  
107 - 'label' => \Yii::t('app', 'Exclusion'),  
108 - 'url' => [ 'variant-option-group-exclusion/index' ],  
109 - ],  
110 - ],  
111 - ],  
112 - ],  
113 - ],  
114 ] 67 ]
115 ); 68 );
116 \ No newline at end of file 69 \ No newline at end of file
common/config/bootstrap.php
@@ -6,7 +6,4 @@ @@ -6,7 +6,4 @@
6 Yii::setAlias('@storage', dirname(dirname(__DIR__)) . '/storage'); 6 Yii::setAlias('@storage', dirname(dirname(__DIR__)) . '/storage');
7 if (!Yii::getAlias('@artbox/core', false)) { 7 if (!Yii::getAlias('@artbox/core', false)) {
8 Yii::setAlias('@artbox/core', dirname(dirname(__DIR__)) . '/artweb/artbox-core'); 8 Yii::setAlias('@artbox/core', dirname(dirname(__DIR__)) . '/artweb/artbox-core');
9 - }  
10 - if (!Yii::getAlias('@artbox/catalog', false)) {  
11 - Yii::setAlias('@artbox/catalog', dirname(dirname(__DIR__)) . '/artweb/artbox-catalog');  
12 } 9 }
13 \ No newline at end of file 10 \ No newline at end of file
common/config/main.php
@@ -26,14 +26,6 @@ @@ -26,14 +26,6 @@
26 'class' => 'yii\i18n\PhpMessageSource', 26 'class' => 'yii\i18n\PhpMessageSource',
27 'basePath' => '@artbox/catalog/messages', 27 'basePath' => '@artbox/catalog/messages',
28 ], 28 ],
29 - 'catalog' => [  
30 - 'class' => 'yii\i18n\PhpMessageSource',  
31 - 'basePath' => '@artbox/catalog/messages',  
32 - ],  
33 - 'catalog' => [  
34 - 'class' => 'yii\i18n\PhpMessageSource',  
35 - 'basePath' => '@artbox/catalog/messages',  
36 - ],  
37 'app' => [ 29 'app' => [
38 'class' => 'yii\i18n\PhpMessageSource', 30 'class' => 'yii\i18n\PhpMessageSource',
39 'basePath' => '@common/messages', 31 'basePath' => '@common/messages',
composer.json 100755 → 100644
@@ -18,6 +18,8 @@ @@ -18,6 +18,8 @@
18 "minimum-stability": "stable", 18 "minimum-stability": "stable",
19 "require": { 19 "require": {
20 "php": ">=7.0", 20 "php": ">=7.0",
  21 + "artweb/artbox-core": "~0.0.1",
  22 + "artweb/artbox-gentelella": "~0.0.1",
21 "yiisoft/yii2": "~2.0", 23 "yiisoft/yii2": "~2.0",
22 "yiisoft/yii2-bootstrap": "~2.0", 24 "yiisoft/yii2-bootstrap": "~2.0",
23 "yiisoft/yii2-swiftmailer": "~2.0", 25 "yiisoft/yii2-swiftmailer": "~2.0",
@@ -53,11 +55,5 @@ @@ -53,11 +55,5 @@
53 "type": "vcs", 55 "type": "vcs",
54 "url": "git@gitlab.artweb.com.ua:yarik.nechyporuk/artbox-core.git" 56 "url": "git@gitlab.artweb.com.ua:yarik.nechyporuk/artbox-core.git"
55 } 57 }
56 - ],  
57 - "autoload": {  
58 - "psr-4": {  
59 - "artbox\\core\\": "artweb/artbox-core/",  
60 - "artbox\\catalog\\": "artweb/artbox-catalog/"  
61 - }  
62 - } 58 + ]
63 } 59 }
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 - "hash": "5b092c236d38f0a67965dd93a4417ac8",  
8 - "content-hash": "25d3d8f8c01378ef1793a93fc78d65e7",  
9 - "packages": [  
10 - {  
11 - "name": "2amigos/yii2-tinymce-widget",  
12 - "version": "1.1.1",  
13 - "source": {  
14 - "type": "git",  
15 - "url": "https://github.com/2amigos/yii2-tinymce-widget.git",  
16 - "reference": "d58bad3ede450f86acd475fb4ecda982b980132b"  
17 - },  
18 - "dist": {  
19 - "type": "zip",  
20 - "url": "https://api.github.com/repos/2amigos/yii2-tinymce-widget/zipball/d58bad3ede450f86acd475fb4ecda982b980132b",  
21 - "reference": "d58bad3ede450f86acd475fb4ecda982b980132b",  
22 - "shasum": ""  
23 - },  
24 - "require": {  
25 - "tinymce/tinymce": ">=4",  
26 - "yiisoft/yii2": "~2.0.0"  
27 - },  
28 - "require-dev": {  
29 - "phpunit/phpunit": "4.*"  
30 - },  
31 - "type": "yii2-extension",  
32 - "extra": {  
33 - "branch-alias": {  
34 - "dev-master": "1.0-dev"  
35 - },  
36 - "asset-installer-paths": {  
37 - "bower-asset-library": "vendor/bower"  
38 - }  
39 - },  
40 - "autoload": {  
41 - "psr-4": {  
42 - "dosamigos\\tinymce\\": "src"  
43 - }  
44 - },  
45 - "notification-url": "https://packagist.org/downloads/",  
46 - "license": [  
47 - "BSD-3-Clause"  
48 - ],  
49 - "authors": [  
50 - {  
51 - "name": "2amigOS! Consulting Group",  
52 - "email": "hola@2amigos.us",  
53 - "homepage": "http://2amigos.us",  
54 - "role": "Developer"  
55 - }  
56 - ],  
57 - "description": "TinyMCE widget for Yii2.",  
58 - "homepage": "http://yiiwheels.com/extension/tinymce-widget",  
59 - "keywords": [  
60 - "2amigos",  
61 - "extension",  
62 - "tinymce",  
63 - "widget",  
64 - "yii",  
65 - "yii 2",  
66 - "yii2"  
67 - ],  
68 - "time": "2015-03-28 21:53:43"  
69 - },  
70 - {  
71 - "name": "bower-asset/amcharts",  
72 - "version": "v3.15.2",  
73 - "source": {  
74 - "type": "git",  
75 - "url": "https://github.com/arturgspb/bower-amcharts.git",  
76 - "reference": "47b9e0976015243db5254eb64f449743b1bbdca0"  
77 - },  
78 - "dist": {  
79 - "type": "zip",  
80 - "url": "https://api.github.com/repos/arturgspb/bower-amcharts/zipball/47b9e0976015243db5254eb64f449743b1bbdca0",  
81 - "reference": "47b9e0976015243db5254eb64f449743b1bbdca0",  
82 - "shasum": ""  
83 - },  
84 - "type": "bower-asset-library",  
85 - "extra": {  
86 - "bower-asset-main": "./dist/amcharts/amcharts.js"  
87 - }  
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 - "branch-alias": {  
107 - "dev-master": "3.13.0-dev"  
108 - }  
109 - },  
110 - "time": "2015-01-28 07:40:20"  
111 - },  
112 - {  
113 - "name": "bower-asset/bootstrap",  
114 - "version": "v3.3.7",  
115 - "source": {  
116 - "type": "git",  
117 - "url": "https://github.com/twbs/bootstrap.git",  
118 - "reference": "0b9c4a4007c44201dce9a6cc1a38407005c26c86"  
119 - },  
120 - "dist": {  
121 - "type": "zip",  
122 - "url": "https://api.github.com/repos/twbs/bootstrap/zipball/0b9c4a4007c44201dce9a6cc1a38407005c26c86",  
123 - "reference": "0b9c4a4007c44201dce9a6cc1a38407005c26c86",  
124 - "shasum": ""  
125 - },  
126 - "require": {  
127 - "bower-asset/jquery": ">=1.9.1,<=3"  
128 - },  
129 - "type": "bower-asset-library",  
130 - "extra": {  
131 - "bower-asset-main": [  
132 - "less/bootstrap.less",  
133 - "dist/js/bootstrap.js"  
134 - ],  
135 - "bower-asset-ignore": [  
136 - "/.*",  
137 - "_config.yml",  
138 - "CNAME",  
139 - "composer.json",  
140 - "CONTRIBUTING.md",  
141 - "docs",  
142 - "js/tests",  
143 - "test-infra"  
144 - ]  
145 - },  
146 - "license": [  
147 - "MIT"  
148 - ],  
149 - "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",  
150 - "keywords": [  
151 - "css",  
152 - "framework",  
153 - "front-end",  
154 - "js",  
155 - "less",  
156 - "mobile-first",  
157 - "responsive",  
158 - "web"  
159 - ]  
160 - },  
161 - {  
162 - "name": "bower-asset/gentelella",  
163 - "version": "1.4.0",  
164 - "source": {  
165 - "type": "git",  
166 - "url": "https://github.com/puikinsh/gentelella.git",  
167 - "reference": "3448fdfdf16a41707d6e2a8154d592a88d85c41c"  
168 - },  
169 - "dist": {  
170 - "type": "zip",  
171 - "url": "https://api.github.com/repos/puikinsh/gentelella/zipball/3448fdfdf16a41707d6e2a8154d592a88d85c41c",  
172 - "reference": "3448fdfdf16a41707d6e2a8154d592a88d85c41c",  
173 - "shasum": ""  
174 - },  
175 - "require-dev": {  
176 - "bower-asset/animate.css": ">=3.5.1,<4.0.0",  
177 - "bower-asset/autosize": ">=3.0.15,<4.0.0",  
178 - "bower-asset/bootstrap": ">=3.3.7,<4.0.0",  
179 - "bower-asset/bootstrap-colorpicker": ">=2.3.3,<3.0.0",  
180 - "bower-asset/bootstrap-daterangepicker": "dev-master",  
181 - "bower-asset/bootstrap-progressbar": ">=0.9.0,<0.10.0",  
182 - "bower-asset/bootstrap-wysiwyg-steveathon": ">=1.0.5,<2.0.0",  
183 - "bower-asset/chart.js": ">=2.0.2,<3.0.0",  
184 - "bower-asset/cropper": ">=2.3.0,<3.0.0",  
185 - "bower-asset/datatables.net": ">=1.10.11,<2.0.0",  
186 - "bower-asset/datatables.net-bs": ">=1.10.11,<2.0.0",  
187 - "bower-asset/datatables.net-buttons": ">=1.1.2,<2.0.0",  
188 - "bower-asset/datatables.net-buttons-bs": ">=1.1.2,<2.0.0",  
189 - "bower-asset/datatables.net-fixedheader": ">=3.1.1,<4.0.0",  
190 - "bower-asset/datatables.net-fixedheader-bs": ">=3.1.1,<4.0.0",  
191 - "bower-asset/datatables.net-keytable": ">=2.1.1,<3.0.0",  
192 - "bower-asset/datatables.net-responsive": ">=2.0.2,<3.0.0",  
193 - "bower-asset/datatables.net-responsive-bs": ">=2.0.2,<3.0.0",  
194 - "bower-asset/datatables.net-scroller": ">=1.4.1,<2.0.0",  
195 - "bower-asset/datatables.net-scroller-bs": ">=1.4.1,<2.0.0",  
196 - "bower-asset/datejs": ">=1.0.0-RC3,<2.0.0",  
197 - "bower-asset/devbridge-autocomplete": ">=1.2.24,<2.0.0",  
198 - "bower-asset/dropzone": ">=4.3.0,<5.0.0",  
199 - "bower-asset/echarts": ">=3.1.7,<4.0.0",  
200 - "bower-asset/fastclick": ">=1.0.6,<2.0.0",  
201 - "bower-asset/flot": ">=0.8.3,<0.9.0",  
202 - "bower-asset/flot-spline": ">=0.8.2,<0.9.0",  
203 - "bower-asset/flot.curvedlines": ">=1.1.1,<2.0.0",  
204 - "bower-asset/flot.orderbars": "*",  
205 - "bower-asset/fontawesome": ">=4.6.1,<5.0.0",  
206 - "bower-asset/fullcalendar": ">=2.6.1,<3.0.0",  
207 - "bower-asset/gauge.js": ">=1.2.1,<2.0.0",  
208 - "bower-asset/icheck": ">=1.0.2,<2.0.0",  
209 - "bower-asset/ionrangeslider": ">=2.1.3,<3.0.0",  
210 - "bower-asset/jquery": ">=2.2.3,<3.0.0",  
211 - "bower-asset/jquery-knob": ">=1.2.13,<2.0.0",  
212 - "bower-asset/jquery-smart-wizard": ">=3.3.1,<4.0.0",  
213 - "bower-asset/jquery-sparkline": ">=2.1.3,<3.0.0",  
214 - "bower-asset/jquery.easy-pie-chart": ">=2.1.6,<3.0.0",  
215 - "bower-asset/jquery.inputmask": ">=3.3.1,<4.0.0",  
216 - "bower-asset/jquery.tagsinput": ">=1.3.6,<2.0.0",  
217 - "bower-asset/jqvmap": "dev-master",  
218 - "bower-asset/jszip": "2.6.0",  
219 - "bower-asset/malihu-custom-scrollbar-plugin": ">=3.1.3,<4.0.0",  
220 - "bower-asset/morris.js": ">=0.5.1,<0.6.0",  
221 - "bower-asset/normalize-css": ">=4.1.1,<5.0.0",  
222 - "bower-asset/nprogress": ">=0.2.0,<0.3.0",  
223 - "bower-asset/parsleyjs": ">=2.3.10,<3.0.0",  
224 - "bower-asset/pdfmake": ">=0.1.20,<0.2.0",  
225 - "bower-asset/pnotify": ">=3.0.0,<4.0.0",  
226 - "bower-asset/select2": ">=4.0.2,<5.0.0",  
227 - "bower-asset/skycons": "*",  
228 - "bower-asset/starrr": ">=2.0.0,<3.0.0",  
229 - "bower-asset/switchery": ">=0.8.1,<0.9.0",  
230 - "bower-asset/validator": ">=1.0.6,<2.0.0"  
231 - },  
232 - "type": "bower-asset-library",  
233 - "extra": {  
234 - "bower-asset-ignore": [  
235 - "**/.*",  
236 - "documentation"  
237 - ]  
238 - },  
239 - "license": [  
240 - "MIT"  
241 - ],  
242 - "description": "Gentelella Admin is a free to use Bootstrap admin template",  
243 - "keywords": [  
244 - "admin",  
245 - "backend",  
246 - "bootstrap",  
247 - "css",  
248 - "html",  
249 - "js",  
250 - "responsive",  
251 - "template",  
252 - "theme"  
253 - ]  
254 - },  
255 - {  
256 - "name": "bower-asset/icheck",  
257 - "version": "1.0.2",  
258 - "source": {  
259 - "type": "git",  
260 - "url": "https://github.com/fronteed/icheck.git",  
261 - "reference": "8a6eb37bd7dab1e843c1b630c91c6398ff409d05"  
262 - },  
263 - "dist": {  
264 - "type": "zip",  
265 - "url": "https://api.github.com/repos/fronteed/icheck/zipball/8a6eb37bd7dab1e843c1b630c91c6398ff409d05",  
266 - "reference": "8a6eb37bd7dab1e843c1b630c91c6398ff409d05",  
267 - "shasum": ""  
268 - },  
269 - "require": {  
270 - "bower-asset/jquery": ">=1.7"  
271 - },  
272 - "type": "bower-asset-library",  
273 - "extra": {  
274 - "bower-asset-main": [  
275 - "./icheck.min.js"  
276 - ],  
277 - "bower-asset-ignore": [  
278 - ".gitignore",  
279 - "CHANGELOG.md",  
280 - "README.md",  
281 - "demo/"  
282 - ]  
283 - },  
284 - "license": [  
285 - "MIT"  
286 - ],  
287 - "description": "Highly customizable checkboxes and radio buttons (jQuery & Zepto)",  
288 - "keywords": [  
289 - "accessibility",  
290 - "checkbox",  
291 - "checked",  
292 - "custom",  
293 - "disabled",  
294 - "field",  
295 - "form",  
296 - "icheck",  
297 - "indeterminate",  
298 - "input",  
299 - "radio",  
300 - "replacement",  
301 - "skins",  
302 - "ui"  
303 - ]  
304 - },  
305 - {  
306 - "name": "bower-asset/jquery",  
307 - "version": "2.2.4",  
308 - "source": {  
309 - "type": "git",  
310 - "url": "https://github.com/jquery/jquery-dist.git",  
311 - "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72"  
312 - },  
313 - "dist": {  
314 - "type": "zip",  
315 - "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/c0185ab7c75aab88762c5aae780b9d83b80eda72",  
316 - "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72",  
317 - "shasum": ""  
318 - },  
319 - "type": "bower-asset-library",  
320 - "extra": {  
321 - "bower-asset-main": "dist/jquery.js",  
322 - "bower-asset-ignore": [  
323 - "package.json"  
324 - ]  
325 - },  
326 - "license": [  
327 - "MIT"  
328 - ],  
329 - "keywords": [  
330 - "browser",  
331 - "javascript",  
332 - "jquery",  
333 - "library"  
334 - ]  
335 - },  
336 - {  
337 - "name": "bower-asset/jquery.inputmask",  
338 - "version": "3.3.4",  
339 - "source": {  
340 - "type": "git",  
341 - "url": "https://github.com/RobinHerbots/Inputmask.git",  
342 - "reference": "8a882bc471ba4077c4f8ecbe3d9d61c7558f3ef2"  
343 - },  
344 - "dist": {  
345 - "type": "zip",  
346 - "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/8a882bc471ba4077c4f8ecbe3d9d61c7558f3ef2",  
347 - "reference": "8a882bc471ba4077c4f8ecbe3d9d61c7558f3ef2",  
348 - "shasum": ""  
349 - },  
350 - "require": {  
351 - "bower-asset/jquery": ">=1.7"  
352 - },  
353 - "type": "bower-asset-library",  
354 - "extra": {  
355 - "bower-asset-main": [  
356 - "./dist/inputmask/inputmask.dependencyLib",  
357 - "./dist/inputmask/inputmask",  
358 - "./dist/inputmask/inputmask.extensions",  
359 - "./dist/inputmask/inputmask.date.extensions",  
360 - "./dist/inputmask/inputmask.numeric.extensions",  
361 - "./dist/inputmask/inputmask.phone.extensions",  
362 - "./dist/inputmask/inputmask.regex.extensions",  
363 - "./dist/inputmask/jquery.inputmask"  
364 - ],  
365 - "bower-asset-ignore": [  
366 - "**/*",  
367 - "!dist/*",  
368 - "!dist/inputmask/*",  
369 - "!dist/min/*",  
370 - "!dist/min/inputmask/*",  
371 - "!extra/bindings/*",  
372 - "!extra/dependencyLibs/*",  
373 - "!extra/phone-codes/*"  
374 - ]  
375 - },  
376 - "license": [  
377 - "http://opensource.org/licenses/mit-license.php"  
378 - ],  
379 - "description": "jquery.inputmask is a jquery plugin which create an input mask.",  
380 - "keywords": [  
381 - "form",  
382 - "input",  
383 - "inputmask",  
384 - "jquery",  
385 - "mask",  
386 - "plugins"  
387 - ]  
388 - },  
389 - {  
390 - "name": "bower-asset/pnotify",  
391 - "version": "2.1.0",  
392 - "source": {  
393 - "type": "git",  
394 - "url": "https://github.com/sciactive/pnotify.git",  
395 - "reference": "4ca6d8089ec45997ae7be37efc51f1ddad336933"  
396 - },  
397 - "dist": {  
398 - "type": "zip",  
399 - "url": "https://api.github.com/repos/sciactive/pnotify/zipball/4ca6d8089ec45997ae7be37efc51f1ddad336933",  
400 - "reference": "4ca6d8089ec45997ae7be37efc51f1ddad336933",  
401 - "shasum": ""  
402 - },  
403 - "type": "bower-asset-library",  
404 - "extra": {  
405 - "bower-asset-main": [  
406 - "src/pnotify.core.js",  
407 - "src/pnotify.core.min.js",  
408 - "src/pnotify.buttons.js",  
409 - "src/pnotify.buttons.min.js",  
410 - "src/pnotify.callbacks.js",  
411 - "src/pnotify.callbacks.min.js",  
412 - "src/pnotify.confirm.js",  
413 - "src/pnotify.confirm.min.js",  
414 - "src/pnotify.desktop.js",  
415 - "src/pnotify.desktop.min.js",  
416 - "src/pnotify.history.js",  
417 - "src/pnotify.history.min.js",  
418 - "src/pnotify.nonblock.js",  
419 - "src/pnotify.nonblock.min.js",  
420 - "src/pnotify.core.css",  
421 - "src/pnotify.core.min.css",  
422 - "src/pnotify.buttons.css",  
423 - "src/pnotify.buttons.min.css",  
424 - "src/pnotify.history.css",  
425 - "src/pnotify.history.min.css"  
426 - ],  
427 - "bower-asset-ignore": [  
428 - "build-cache/",  
429 - "build-tools/",  
430 - "includes/",  
431 - "oxygen/",  
432 - "devnote*.*",  
433 - "index.html",  
434 - "README.md",  
435 - "testing.html",  
436 - "buildcustom.php",  
437 - "package.json",  
438 - "src/pnotify.tooltip.js",  
439 - "src/pnotify.tooltip.min.js",  
440 - "src/pnotify.mobile.js",  
441 - "src/pnotify.mobile.min.js"  
442 - ]  
443 - },  
444 - "license": [  
445 - "GPL-3.0",  
446 - "LGPL-3.0",  
447 - "MPL-1.1"  
448 - ],  
449 - "description": "JavaScript notification plugin."  
450 - },  
451 - {  
452 - "name": "bower-asset/punycode",  
453 - "version": "v1.3.2",  
454 - "source": {  
455 - "type": "git",  
456 - "url": "https://github.com/bestiejs/punycode.js.git",  
457 - "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"  
458 - },  
459 - "dist": {  
460 - "type": "zip",  
461 - "url": "https://api.github.com/repos/bestiejs/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",  
462 - "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3",  
463 - "shasum": ""  
464 - },  
465 - "type": "bower-asset-library",  
466 - "extra": {  
467 - "bower-asset-main": "punycode.js",  
468 - "bower-asset-ignore": [  
469 - "coverage",  
470 - "tests",  
471 - ".*",  
472 - "component.json",  
473 - "Gruntfile.js",  
474 - "node_modules",  
475 - "package.json"  
476 - ]  
477 - }  
478 - },  
479 - {  
480 - "name": "bower-asset/yii2-pjax",  
481 - "version": "v2.0.6",  
482 - "source": {  
483 - "type": "git",  
484 - "url": "https://github.com/yiisoft/jquery-pjax.git",  
485 - "reference": "60728da6ade5879e807a49ce59ef9a72039b8978"  
486 - },  
487 - "dist": {  
488 - "type": "zip",  
489 - "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/60728da6ade5879e807a49ce59ef9a72039b8978",  
490 - "reference": "60728da6ade5879e807a49ce59ef9a72039b8978",  
491 - "shasum": ""  
492 - },  
493 - "require": {  
494 - "bower-asset/jquery": ">=1.8"  
495 - },  
496 - "type": "bower-asset-library",  
497 - "extra": {  
498 - "bower-asset-main": "./jquery.pjax.js",  
499 - "bower-asset-ignore": [  
500 - ".travis.yml",  
501 - "Gemfile",  
502 - "Gemfile.lock",  
503 - "CONTRIBUTING.md",  
504 - "vendor/",  
505 - "script/",  
506 - "test/"  
507 - ]  
508 - },  
509 - "license": [  
510 - "MIT"  
511 - ]  
512 - },  
513 - {  
514 - "name": "cebe/markdown",  
515 - "version": "1.1.1",  
516 - "source": {  
517 - "type": "git",  
518 - "url": "https://github.com/cebe/markdown.git",  
519 - "reference": "c30eb5e01fe021cc5bba2f9ee0eeef96d4931166"  
520 - },  
521 - "dist": {  
522 - "type": "zip",  
523 - "url": "https://api.github.com/repos/cebe/markdown/zipball/c30eb5e01fe021cc5bba2f9ee0eeef96d4931166",  
524 - "reference": "c30eb5e01fe021cc5bba2f9ee0eeef96d4931166",  
525 - "shasum": ""  
526 - },  
527 - "require": {  
528 - "lib-pcre": "*",  
529 - "php": ">=5.4.0"  
530 - },  
531 - "require-dev": {  
532 - "cebe/indent": "*",  
533 - "facebook/xhprof": "*@dev",  
534 - "phpunit/phpunit": "4.1.*"  
535 - },  
536 - "bin": [  
537 - "bin/markdown"  
538 - ],  
539 - "type": "library",  
540 - "extra": {  
541 - "branch-alias": {  
542 - "dev-master": "1.1.x-dev"  
543 - }  
544 - },  
545 - "autoload": {  
546 - "psr-4": {  
547 - "cebe\\markdown\\": ""  
548 - }  
549 - },  
550 - "notification-url": "https://packagist.org/downloads/",  
551 - "license": [  
552 - "MIT"  
553 - ],  
554 - "authors": [  
555 - {  
556 - "name": "Carsten Brandt",  
557 - "email": "mail@cebe.cc",  
558 - "homepage": "http://cebe.cc/",  
559 - "role": "Creator"  
560 - }  
561 - ],  
562 - "description": "A super fast, highly extensible markdown parser for PHP",  
563 - "homepage": "https://github.com/cebe/markdown#readme",  
564 - "keywords": [  
565 - "extensible",  
566 - "fast",  
567 - "gfm",  
568 - "markdown",  
569 - "markdown-extra"  
570 - ],  
571 - "time": "2016-09-14 20:40:20"  
572 - },  
573 - {  
574 - "name": "ezyang/htmlpurifier",  
575 - "version": "v4.9.2",  
576 - "source": {  
577 - "type": "git",  
578 - "url": "https://github.com/ezyang/htmlpurifier.git",  
579 - "reference": "6d50e5282afdfdfc3e0ff6d192aff56c5629b3d4"  
580 - },  
581 - "dist": {  
582 - "type": "zip",  
583 - "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/6d50e5282afdfdfc3e0ff6d192aff56c5629b3d4",  
584 - "reference": "6d50e5282afdfdfc3e0ff6d192aff56c5629b3d4",  
585 - "shasum": ""  
586 - },  
587 - "require": {  
588 - "php": ">=5.2"  
589 - },  
590 - "require-dev": {  
591 - "simpletest/simpletest": "^1.1"  
592 - },  
593 - "type": "library",  
594 - "autoload": {  
595 - "psr-0": {  
596 - "HTMLPurifier": "library/"  
597 - },  
598 - "files": [  
599 - "library/HTMLPurifier.composer.php"  
600 - ]  
601 - },  
602 - "notification-url": "https://packagist.org/downloads/",  
603 - "license": [  
604 - "LGPL"  
605 - ],  
606 - "authors": [  
607 - {  
608 - "name": "Edward Z. Yang",  
609 - "email": "admin@htmlpurifier.org",  
610 - "homepage": "http://ezyang.com"  
611 - }  
612 - ],  
613 - "description": "Standards compliant HTML filter written in PHP",  
614 - "homepage": "http://htmlpurifier.org/",  
615 - "keywords": [  
616 - "html"  
617 - ],  
618 - "time": "2017-03-13 06:30:53"  
619 - },  
620 - {  
621 - "name": "firebase/php-jwt",  
622 - "version": "v4.0.0",  
623 - "source": {  
624 - "type": "git",  
625 - "url": "https://github.com/firebase/php-jwt.git",  
626 - "reference": "dccf163dc8ed7ed6a00afc06c51ee5186a428d35"  
627 - },  
628 - "dist": {  
629 - "type": "zip",  
630 - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/dccf163dc8ed7ed6a00afc06c51ee5186a428d35",  
631 - "reference": "dccf163dc8ed7ed6a00afc06c51ee5186a428d35",  
632 - "shasum": ""  
633 - },  
634 - "require": {  
635 - "php": ">=5.3.0"  
636 - },  
637 - "type": "library",  
638 - "autoload": {  
639 - "psr-4": {  
640 - "Firebase\\JWT\\": "src"  
641 - }  
642 - },  
643 - "notification-url": "https://packagist.org/downloads/",  
644 - "license": [  
645 - "BSD-3-Clause"  
646 - ],  
647 - "authors": [  
648 - {  
649 - "name": "Neuman Vong",  
650 - "email": "neuman+pear@twilio.com",  
651 - "role": "Developer"  
652 - },  
653 - {  
654 - "name": "Anant Narayanan",  
655 - "email": "anant@php.net",  
656 - "role": "Developer"  
657 - }  
658 - ],  
659 - "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",  
660 - "homepage": "https://github.com/firebase/php-jwt",  
661 - "time": "2016-07-18 04:51:16"  
662 - },  
663 - {  
664 - "name": "fortawesome/font-awesome",  
665 - "version": "v4.7.0",  
666 - "source": {  
667 - "type": "git",  
668 - "url": "https://github.com/FortAwesome/Font-Awesome.git",  
669 - "reference": "a8386aae19e200ddb0f6845b5feeee5eb7013687"  
670 - },  
671 - "dist": {  
672 - "type": "zip",  
673 - "url": "https://api.github.com/repos/FortAwesome/Font-Awesome/zipball/a8386aae19e200ddb0f6845b5feeee5eb7013687",  
674 - "reference": "a8386aae19e200ddb0f6845b5feeee5eb7013687",  
675 - "shasum": ""  
676 - },  
677 - "require-dev": {  
678 - "jekyll": "1.0.2",  
679 - "lessc": "1.4.2"  
680 - },  
681 - "type": "library",  
682 - "extra": {  
683 - "branch-alias": {  
684 - "dev-master": "4.6.x-dev"  
685 - }  
686 - },  
687 - "notification-url": "https://packagist.org/downloads/",  
688 - "license": [  
689 - "OFL-1.1",  
690 - "MIT"  
691 - ],  
692 - "authors": [  
693 - {  
694 - "name": "Dave Gandy",  
695 - "email": "dave@fontawesome.io",  
696 - "homepage": "http://twitter.com/davegandy",  
697 - "role": "Developer"  
698 - }  
699 - ],  
700 - "description": "The iconic font and CSS framework",  
701 - "homepage": "http://fontawesome.io/",  
702 - "keywords": [  
703 - "FontAwesome",  
704 - "awesome",  
705 - "bootstrap",  
706 - "font",  
707 - "icon"  
708 - ],  
709 - "time": "2016-10-24 15:52:54"  
710 - },  
711 - {  
712 - "name": "google/apiclient",  
713 - "version": "v2.1.3",  
714 - "source": {  
715 - "type": "git",  
716 - "url": "https://github.com/google/google-api-php-client.git",  
717 - "reference": "43996f09df274158fd04fce98e8a82effe5f3717"  
718 - },  
719 - "dist": {  
720 - "type": "zip",  
721 - "url": "https://api.github.com/repos/google/google-api-php-client/zipball/43996f09df274158fd04fce98e8a82effe5f3717",  
722 - "reference": "43996f09df274158fd04fce98e8a82effe5f3717",  
723 - "shasum": ""  
724 - },  
725 - "require": {  
726 - "firebase/php-jwt": "~2.0|~3.0|~4.0",  
727 - "google/apiclient-services": "^0.11",  
728 - "google/auth": "^0.11",  
729 - "guzzlehttp/guzzle": "~5.2|~6.0",  
730 - "guzzlehttp/psr7": "^1.2",  
731 - "monolog/monolog": "^1.17",  
732 - "php": ">=5.4",  
733 - "phpseclib/phpseclib": "~0.3.10|~2.0"  
734 - },  
735 - "require-dev": {  
736 - "cache/filesystem-adapter": "^0.3.2",  
737 - "phpunit/phpunit": "~4",  
738 - "squizlabs/php_codesniffer": "~2.3",  
739 - "symfony/css-selector": "~2.1",  
740 - "symfony/dom-crawler": "~2.1"  
741 - },  
742 - "suggest": {  
743 - "cache/filesystem-adapter": "For caching certs and tokens (using Google_Client::setCache)"  
744 - },  
745 - "type": "library",  
746 - "extra": {  
747 - "branch-alias": {  
748 - "dev-master": "2.x-dev"  
749 - }  
750 - },  
751 - "autoload": {  
752 - "psr-0": {  
753 - "Google_": "src/"  
754 - },  
755 - "classmap": [  
756 - "src/Google/Service/"  
757 - ]  
758 - },  
759 - "notification-url": "https://packagist.org/downloads/",  
760 - "license": [  
761 - "Apache-2.0"  
762 - ],  
763 - "description": "Client library for Google APIs",  
764 - "homepage": "http://developers.google.com/api-client-library/php",  
765 - "keywords": [  
766 - "google"  
767 - ],  
768 - "time": "2017-03-22 18:32:04"  
769 - },  
770 - {  
771 - "name": "google/apiclient-services",  
772 - "version": "v0.11",  
773 - "source": {  
774 - "type": "git",  
775 - "url": "https://github.com/google/google-api-php-client-services.git",  
776 - "reference": "48c554aee06f2fd5700d7bdfa4fa6b82d184eb52"  
777 - },  
778 - "dist": {  
779 - "type": "zip",  
780 - "url": "https://api.github.com/repos/google/google-api-php-client-services/zipball/48c554aee06f2fd5700d7bdfa4fa6b82d184eb52",  
781 - "reference": "48c554aee06f2fd5700d7bdfa4fa6b82d184eb52",  
782 - "shasum": ""  
783 - },  
784 - "require": {  
785 - "php": ">=5.4"  
786 - },  
787 - "require-dev": {  
788 - "phpunit/phpunit": "~4.8"  
789 - },  
790 - "type": "library",  
791 - "autoload": {  
792 - "psr-0": {  
793 - "Google_Service_": "src"  
794 - }  
795 - },  
796 - "notification-url": "https://packagist.org/downloads/",  
797 - "license": [  
798 - "Apache-2.0"  
799 - ],  
800 - "description": "Client library for Google APIs",  
801 - "homepage": "http://developers.google.com/api-client-library/php",  
802 - "keywords": [  
803 - "google"  
804 - ],  
805 - "time": "2017-03-13 17:40:44"  
806 - },  
807 - {  
808 - "name": "google/auth",  
809 - "version": "v0.11.1",  
810 - "source": {  
811 - "type": "git",  
812 - "url": "https://github.com/google/google-auth-library-php.git",  
813 - "reference": "a240674b08a09949fd5597f7590b3ed83663a12d"  
814 - },  
815 - "dist": {  
816 - "type": "zip",  
817 - "url": "https://api.github.com/repos/google/google-auth-library-php/zipball/a240674b08a09949fd5597f7590b3ed83663a12d",  
818 - "reference": "a240674b08a09949fd5597f7590b3ed83663a12d",  
819 - "shasum": ""  
820 - },  
821 - "require": {  
822 - "firebase/php-jwt": "~2.0|~3.0|~4.0",  
823 - "guzzlehttp/guzzle": "~5.3|~6.0",  
824 - "guzzlehttp/psr7": "~1.2",  
825 - "php": ">=5.4",  
826 - "psr/cache": "^1.0",  
827 - "psr/http-message": "^1.0"  
828 - },  
829 - "require-dev": {  
830 - "friendsofphp/php-cs-fixer": "^1.11",  
831 - "phpunit/phpunit": "3.7.*"  
832 - },  
833 - "type": "library",  
834 - "autoload": {  
835 - "classmap": [  
836 - "src/"  
837 - ],  
838 - "psr-4": {  
839 - "Google\\Auth\\": "src"  
840 - }  
841 - },  
842 - "notification-url": "https://packagist.org/downloads/",  
843 - "license": [  
844 - "Apache-2.0"  
845 - ],  
846 - "description": "Google Auth Library for PHP",  
847 - "homepage": "http://github.com/google/google-auth-library-php",  
848 - "keywords": [  
849 - "Authentication",  
850 - "google",  
851 - "oauth2"  
852 - ],  
853 - "time": "2016-11-02 14:59:14"  
854 - },  
855 - {  
856 - "name": "guzzlehttp/guzzle",  
857 - "version": "6.2.3",  
858 - "source": {  
859 - "type": "git",  
860 - "url": "https://github.com/guzzle/guzzle.git",  
861 - "reference": "8d6c6cc55186db87b7dc5009827429ba4e9dc006"  
862 - },  
863 - "dist": {  
864 - "type": "zip",  
865 - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/8d6c6cc55186db87b7dc5009827429ba4e9dc006",  
866 - "reference": "8d6c6cc55186db87b7dc5009827429ba4e9dc006",  
867 - "shasum": ""  
868 - },  
869 - "require": {  
870 - "guzzlehttp/promises": "^1.0",  
871 - "guzzlehttp/psr7": "^1.4",  
872 - "php": ">=5.5"  
873 - },  
874 - "require-dev": {  
875 - "ext-curl": "*",  
876 - "phpunit/phpunit": "^4.0",  
877 - "psr/log": "^1.0"  
878 - },  
879 - "type": "library",  
880 - "extra": {  
881 - "branch-alias": {  
882 - "dev-master": "6.2-dev"  
883 - }  
884 - },  
885 - "autoload": {  
886 - "files": [  
887 - "src/functions_include.php"  
888 - ],  
889 - "psr-4": {  
890 - "GuzzleHttp\\": "src/"  
891 - }  
892 - },  
893 - "notification-url": "https://packagist.org/downloads/",  
894 - "license": [  
895 - "MIT"  
896 - ],  
897 - "authors": [  
898 - {  
899 - "name": "Michael Dowling",  
900 - "email": "mtdowling@gmail.com",  
901 - "homepage": "https://github.com/mtdowling"  
902 - }  
903 - ],  
904 - "description": "Guzzle is a PHP HTTP client library",  
905 - "homepage": "http://guzzlephp.org/",  
906 - "keywords": [  
907 - "client",  
908 - "curl",  
909 - "framework",  
910 - "http",  
911 - "http client",  
912 - "rest",  
913 - "web service"  
914 - ],  
915 - "time": "2017-02-28 22:50:30"  
916 - },  
917 - {  
918 - "name": "guzzlehttp/promises",  
919 - "version": "v1.3.1",  
920 - "source": {  
921 - "type": "git",  
922 - "url": "https://github.com/guzzle/promises.git",  
923 - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"  
924 - },  
925 - "dist": {  
926 - "type": "zip",  
927 - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",  
928 - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",  
929 - "shasum": ""  
930 - },  
931 - "require": {  
932 - "php": ">=5.5.0"  
933 - },  
934 - "require-dev": {  
935 - "phpunit/phpunit": "^4.0"  
936 - },  
937 - "type": "library",  
938 - "extra": {  
939 - "branch-alias": {  
940 - "dev-master": "1.4-dev"  
941 - }  
942 - },  
943 - "autoload": {  
944 - "psr-4": {  
945 - "GuzzleHttp\\Promise\\": "src/"  
946 - },  
947 - "files": [  
948 - "src/functions_include.php"  
949 - ]  
950 - },  
951 - "notification-url": "https://packagist.org/downloads/",  
952 - "license": [  
953 - "MIT"  
954 - ],  
955 - "authors": [  
956 - {  
957 - "name": "Michael Dowling",  
958 - "email": "mtdowling@gmail.com",  
959 - "homepage": "https://github.com/mtdowling"  
960 - }  
961 - ],  
962 - "description": "Guzzle promises library",  
963 - "keywords": [  
964 - "promise"  
965 - ],  
966 - "time": "2016-12-20 10:07:11"  
967 - },  
968 - {  
969 - "name": "guzzlehttp/psr7",  
970 - "version": "1.4.2",  
971 - "source": {  
972 - "type": "git",  
973 - "url": "https://github.com/guzzle/psr7.git",  
974 - "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"  
975 - },  
976 - "dist": {  
977 - "type": "zip",  
978 - "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",  
979 - "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",  
980 - "shasum": ""  
981 - },  
982 - "require": {  
983 - "php": ">=5.4.0",  
984 - "psr/http-message": "~1.0"  
985 - },  
986 - "provide": {  
987 - "psr/http-message-implementation": "1.0"  
988 - },  
989 - "require-dev": {  
990 - "phpunit/phpunit": "~4.0"  
991 - },  
992 - "type": "library",  
993 - "extra": {  
994 - "branch-alias": {  
995 - "dev-master": "1.4-dev"  
996 - }  
997 - },  
998 - "autoload": {  
999 - "psr-4": {  
1000 - "GuzzleHttp\\Psr7\\": "src/"  
1001 - },  
1002 - "files": [  
1003 - "src/functions_include.php"  
1004 - ]  
1005 - },  
1006 - "notification-url": "https://packagist.org/downloads/",  
1007 - "license": [  
1008 - "MIT"  
1009 - ],  
1010 - "authors": [  
1011 - {  
1012 - "name": "Michael Dowling",  
1013 - "email": "mtdowling@gmail.com",  
1014 - "homepage": "https://github.com/mtdowling"  
1015 - },  
1016 - {  
1017 - "name": "Tobias Schultze",  
1018 - "homepage": "https://github.com/Tobion"  
1019 - }  
1020 - ],  
1021 - "description": "PSR-7 message implementation that also provides common utility methods",  
1022 - "keywords": [  
1023 - "http",  
1024 - "message",  
1025 - "request",  
1026 - "response",  
1027 - "stream",  
1028 - "uri",  
1029 - "url"  
1030 - ],  
1031 - "time": "2017-03-20 17:10:46"  
1032 - },  
1033 - {  
1034 - "name": "hiqdev/yii2-asset-icheck",  
1035 - "version": "1.0.2.5",  
1036 - "source": {  
1037 - "type": "git",  
1038 - "url": "https://github.com/hiqdev/yii2-asset-icheck.git",  
1039 - "reference": "9dc8ea8e854f27bcff59198f8815da80dd696d18"  
1040 - },  
1041 - "dist": {  
1042 - "type": "zip",  
1043 - "url": "https://api.github.com/repos/hiqdev/yii2-asset-icheck/zipball/9dc8ea8e854f27bcff59198f8815da80dd696d18",  
1044 - "reference": "9dc8ea8e854f27bcff59198f8815da80dd696d18",  
1045 - "shasum": ""  
1046 - },  
1047 - "require": {  
1048 - "bower-asset/icheck": "1.0.2",  
1049 - "yiisoft/yii2": "~2.0"  
1050 - },  
1051 - "require-dev": {  
1052 - "hiqdev/composer-asset-plugin": "*@dev"  
1053 - },  
1054 - "type": "yii2-extension",  
1055 - "extra": {  
1056 - "bower-dependencies": {  
1057 - "icheck": "1.0.2"  
1058 - }  
1059 - },  
1060 - "autoload": {  
1061 - "psr-4": {  
1062 - "hiqdev\\assets\\icheck\\": "src"  
1063 - }  
1064 - },  
1065 - "notification-url": "https://packagist.org/downloads/",  
1066 - "license": [  
1067 - "BSD-3-Clause"  
1068 - ],  
1069 - "authors": [  
1070 - {  
1071 - "name": "Dmitry Naumenko",  
1072 - "email": "silverfire@hiqdev.com",  
1073 - "homepage": "http://silverfire.me/",  
1074 - "role": "Lead backend developer"  
1075 - },  
1076 - {  
1077 - "name": "Andrii Vasyliev",  
1078 - "email": "sol@hiqdev.com",  
1079 - "homepage": "http://hipanel.com/",  
1080 - "role": "Project lead"  
1081 - },  
1082 - {  
1083 - "name": "Andrey Klochok",  
1084 - "email": "tafid@hiqdev.com",  
1085 - "homepage": "http://hiqdev.com/",  
1086 - "role": "Lead frontend developer"  
1087 - },  
1088 - {  
1089 - "name": "Yuriy Myronchuk",  
1090 - "email": "bladeroot@hiqdev.com",  
1091 - "homepage": "http://hiqdev.com/",  
1092 - "role": "QA Lead"  
1093 - }  
1094 - ],  
1095 - "description": "Yii2 asset for bower iCheck",  
1096 - "homepage": "https://github.com/hiqdev/yii2-asset-icheck",  
1097 - "keywords": [  
1098 - "asset",  
1099 - "extension",  
1100 - "iCheck",  
1101 - "yii2"  
1102 - ],  
1103 - "time": "2016-03-30 10:59:26"  
1104 - },  
1105 - {  
1106 - "name": "hiqdev/yii2-asset-pnotify",  
1107 - "version": "2.1.0",  
1108 - "source": {  
1109 - "type": "git",  
1110 - "url": "https://github.com/hiqdev/yii2-asset-pnotify.git",  
1111 - "reference": "d5bfa39fba84741523238e53b85ef7c2f37b789f"  
1112 - },  
1113 - "dist": {  
1114 - "type": "zip",  
1115 - "url": "https://api.github.com/repos/hiqdev/yii2-asset-pnotify/zipball/d5bfa39fba84741523238e53b85ef7c2f37b789f",  
1116 - "reference": "d5bfa39fba84741523238e53b85ef7c2f37b789f",  
1117 - "shasum": ""  
1118 - },  
1119 - "require": {  
1120 - "bower-asset/pnotify": "2.1.0"  
1121 - },  
1122 - "type": "package",  
1123 - "autoload": {  
1124 - "psr-4": {  
1125 - "hiqdev\\assets\\pnotify\\": "src"  
1126 - }  
1127 - },  
1128 - "notification-url": "https://packagist.org/downloads/",  
1129 - "license": [  
1130 - "BSD-3-Clause"  
1131 - ],  
1132 - "authors": [  
1133 - {  
1134 - "name": "Andrii Vasyliev",  
1135 - "email": "sol@hiqdev.com",  
1136 - "homepage": "https://hipanel.com/",  
1137 - "role": "Project lead"  
1138 - },  
1139 - {  
1140 - "name": "Andrey Klochok",  
1141 - "email": "tafid@hiqdev.com",  
1142 - "homepage": "https://hiqdev.com/",  
1143 - "role": "Lead frontend developer"  
1144 - },  
1145 - {  
1146 - "name": "Yuriy Myronchuk",  
1147 - "email": "bladeroot@hiqdev.com",  
1148 - "homepage": "https://hiqdev.com/",  
1149 - "role": "QA Lead"  
1150 - },  
1151 - {  
1152 - "name": "Dmitry Naumenko",  
1153 - "email": "silverfire@hiqdev.com",  
1154 - "homepage": "http://silverfire.me/",  
1155 - "role": "Lead backend developer"  
1156 - }  
1157 - ],  
1158 - "description": "Yii2 Asset Pnotify",  
1159 - "homepage": "https://github.com/hiqdev/yii2-asset-pnotify",  
1160 - "keywords": [  
1161 - "asset",  
1162 - "pnotify",  
1163 - "yii2"  
1164 - ],  
1165 - "time": "2015-09-09 15:16:38"  
1166 - },  
1167 - {  
1168 - "name": "imagine/imagine",  
1169 - "version": "v0.6.3",  
1170 - "source": {  
1171 - "type": "git",  
1172 - "url": "https://github.com/avalanche123/Imagine.git",  
1173 - "reference": "149041d2a1b517107bfe270ca2b1a17aa341715d"  
1174 - },  
1175 - "dist": {  
1176 - "type": "zip",  
1177 - "url": "https://api.github.com/repos/avalanche123/Imagine/zipball/149041d2a1b517107bfe270ca2b1a17aa341715d",  
1178 - "reference": "149041d2a1b517107bfe270ca2b1a17aa341715d",  
1179 - "shasum": ""  
1180 - },  
1181 - "require": {  
1182 - "php": ">=5.3.2"  
1183 - },  
1184 - "require-dev": {  
1185 - "sami/sami": "dev-master"  
1186 - },  
1187 - "suggest": {  
1188 - "ext-gd": "to use the GD implementation",  
1189 - "ext-gmagick": "to use the Gmagick implementation",  
1190 - "ext-imagick": "to use the Imagick implementation"  
1191 - },  
1192 - "type": "library",  
1193 - "extra": {  
1194 - "branch-alias": {  
1195 - "dev-develop": "0.7-dev"  
1196 - }  
1197 - },  
1198 - "autoload": {  
1199 - "psr-0": {  
1200 - "Imagine": "lib/"  
1201 - }  
1202 - },  
1203 - "notification-url": "https://packagist.org/downloads/",  
1204 - "license": [  
1205 - "MIT"  
1206 - ],  
1207 - "authors": [  
1208 - {  
1209 - "name": "Bulat Shakirzyanov",  
1210 - "email": "mallluhuct@gmail.com",  
1211 - "homepage": "http://avalanche123.com"  
1212 - }  
1213 - ],  
1214 - "description": "Image processing for PHP 5.3",  
1215 - "homepage": "http://imagine.readthedocs.org/",  
1216 - "keywords": [  
1217 - "drawing",  
1218 - "graphics",  
1219 - "image manipulation",  
1220 - "image processing"  
1221 - ],  
1222 - "time": "2015-09-19 16:54:05"  
1223 - },  
1224 - {  
1225 - "name": "kartik-v/bootstrap-fileinput",  
1226 - "version": "v4.3.9",  
1227 - "source": {  
1228 - "type": "git",  
1229 - "url": "https://github.com/kartik-v/bootstrap-fileinput.git",  
1230 - "reference": "4aec9b00de25b4b3cca1f11ffbaa823c67c33590"  
1231 - },  
1232 - "dist": {  
1233 - "type": "zip",  
1234 - "url": "https://api.github.com/repos/kartik-v/bootstrap-fileinput/zipball/4aec9b00de25b4b3cca1f11ffbaa823c67c33590",  
1235 - "reference": "4aec9b00de25b4b3cca1f11ffbaa823c67c33590",  
1236 - "shasum": ""  
1237 - },  
1238 - "type": "library",  
1239 - "extra": {  
1240 - "branch-alias": {  
1241 - "dev-master": "4.3.x-dev"  
1242 - }  
1243 - },  
1244 - "autoload": {  
1245 - "psr-4": {  
1246 - "kartik\\plugins\\fileinput\\": ""  
1247 - }  
1248 - },  
1249 - "notification-url": "https://packagist.org/downloads/",  
1250 - "license": [  
1251 - "BSD-3-Clause"  
1252 - ],  
1253 - "authors": [  
1254 - {  
1255 - "name": "Kartik Visweswaran",  
1256 - "email": "kartikv2@gmail.com",  
1257 - "homepage": "http://www.krajee.com/"  
1258 - }  
1259 - ],  
1260 - "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.",  
1261 - "homepage": "https://github.com/kartik-v/bootstrap-fileinput",  
1262 - "keywords": [  
1263 - "ajax",  
1264 - "bootstrap",  
1265 - "delete",  
1266 - "file",  
1267 - "image",  
1268 - "input",  
1269 - "jquery",  
1270 - "multiple",  
1271 - "preview",  
1272 - "progress",  
1273 - "upload"  
1274 - ],  
1275 - "time": "2017-04-02 18:38:08"  
1276 - },  
1277 - {  
1278 - "name": "kartik-v/yii2-krajee-base",  
1279 - "version": "v1.8.8",  
1280 - "source": {  
1281 - "type": "git",  
1282 - "url": "https://github.com/kartik-v/yii2-krajee-base.git",  
1283 - "reference": "2479241c03c87995cfc528ae7b297f5ae9e733cb"  
1284 - },  
1285 - "dist": {  
1286 - "type": "zip",  
1287 - "url": "https://api.github.com/repos/kartik-v/yii2-krajee-base/zipball/2479241c03c87995cfc528ae7b297f5ae9e733cb",  
1288 - "reference": "2479241c03c87995cfc528ae7b297f5ae9e733cb",  
1289 - "shasum": ""  
1290 - },  
1291 - "require": {  
1292 - "yiisoft/yii2-bootstrap": "@dev"  
1293 - },  
1294 - "type": "yii2-extension",  
1295 - "extra": {  
1296 - "branch-alias": {  
1297 - "dev-master": "1.8.x-dev"  
1298 - }  
1299 - },  
1300 - "autoload": {  
1301 - "psr-4": {  
1302 - "kartik\\base\\": ""  
1303 - }  
1304 - },  
1305 - "notification-url": "https://packagist.org/downloads/",  
1306 - "license": [  
1307 - "BSD-3-Clause"  
1308 - ],  
1309 - "authors": [  
1310 - {  
1311 - "name": "Kartik Visweswaran",  
1312 - "email": "kartikv2@gmail.com",  
1313 - "homepage": "http://www.krajee.com/"  
1314 - }  
1315 - ],  
1316 - "description": "Base library and foundation components for all Yii2 Krajee extensions.",  
1317 - "homepage": "https://github.com/kartik-v/yii2-krajee-base",  
1318 - "keywords": [  
1319 - "base",  
1320 - "extension",  
1321 - "foundation",  
1322 - "krajee",  
1323 - "widget",  
1324 - "yii2"  
1325 - ],  
1326 - "time": "2017-02-22 05:58:53"  
1327 - },  
1328 - {  
1329 - "name": "kartik-v/yii2-widget-fileinput",  
1330 - "version": "v1.0.5",  
1331 - "source": {  
1332 - "type": "git",  
1333 - "url": "https://github.com/kartik-v/yii2-widget-fileinput.git",  
1334 - "reference": "3b8f6819f2cd01becff5251b8b952ac3e57b903a"  
1335 - },  
1336 - "dist": {  
1337 - "type": "zip",  
1338 - "url": "https://api.github.com/repos/kartik-v/yii2-widget-fileinput/zipball/3b8f6819f2cd01becff5251b8b952ac3e57b903a",  
1339 - "reference": "3b8f6819f2cd01becff5251b8b952ac3e57b903a",  
1340 - "shasum": ""  
1341 - },  
1342 - "require": {  
1343 - "kartik-v/bootstrap-fileinput": "~4.2",  
1344 - "kartik-v/yii2-krajee-base": "~1.7"  
1345 - },  
1346 - "type": "yii2-extension",  
1347 - "extra": {  
1348 - "branch-alias": {  
1349 - "dev-master": "1.0.x-dev"  
1350 - }  
1351 - },  
1352 - "autoload": {  
1353 - "psr-4": {  
1354 - "kartik\\file\\": ""  
1355 - }  
1356 - },  
1357 - "notification-url": "https://packagist.org/downloads/",  
1358 - "license": [  
1359 - "BSD-3-Clause"  
1360 - ],  
1361 - "authors": [  
1362 - {  
1363 - "name": "Kartik Visweswaran",  
1364 - "email": "kartikv2@gmail.com",  
1365 - "homepage": "http://www.krajee.com/"  
1366 - }  
1367 - ],  
1368 - "description": "An enhanced FileInput widget for Bootstrap 3.x with file preview, multiple selection, and more features (sub repo split from yii2-widgets)",  
1369 - "homepage": "https://github.com/kartik-v/yii2-widget-fileinput",  
1370 - "keywords": [  
1371 - "extension",  
1372 - "file",  
1373 - "form",  
1374 - "input",  
1375 - "jquery",  
1376 - "plugin",  
1377 - "upload",  
1378 - "widget",  
1379 - "yii2"  
1380 - ],  
1381 - "time": "2016-06-16 06:53:01"  
1382 - },  
1383 - {  
1384 - "name": "kartik-v/yii2-widget-select2",  
1385 - "version": "dev-master",  
1386 - "source": {  
1387 - "type": "git",  
1388 - "url": "https://github.com/kartik-v/yii2-widget-select2.git",  
1389 - "reference": "d345da5617c2c62f75dca81b564e54a6cc5142b6"  
1390 - },  
1391 - "dist": {  
1392 - "type": "zip",  
1393 - "url": "https://api.github.com/repos/kartik-v/yii2-widget-select2/zipball/d345da5617c2c62f75dca81b564e54a6cc5142b6",  
1394 - "reference": "d345da5617c2c62f75dca81b564e54a6cc5142b6",  
1395 - "shasum": ""  
1396 - },  
1397 - "require": {  
1398 - "kartik-v/yii2-krajee-base": "~1.7"  
1399 - },  
1400 - "type": "yii2-extension",  
1401 - "extra": {  
1402 - "branch-alias": {  
1403 - "dev-master": "2.0.x-dev"  
1404 - }  
1405 - },  
1406 - "autoload": {  
1407 - "psr-4": {  
1408 - "kartik\\select2\\": ""  
1409 - }  
1410 - },  
1411 - "notification-url": "https://packagist.org/downloads/",  
1412 - "license": [  
1413 - "BSD-3-Clause"  
1414 - ],  
1415 - "authors": [  
1416 - {  
1417 - "name": "Kartik Visweswaran",  
1418 - "email": "kartikv2@gmail.com",  
1419 - "homepage": "http://www.krajee.com/"  
1420 - }  
1421 - ],  
1422 - "description": "Enhanced Yii2 wrapper for the Select2 jQuery plugin (sub repo split from yii2-widgets).",  
1423 - "homepage": "https://github.com/kartik-v/yii2-widget-select2",  
1424 - "keywords": [  
1425 - "dropdown",  
1426 - "extension",  
1427 - "form",  
1428 - "jquery",  
1429 - "plugin",  
1430 - "select2",  
1431 - "widget",  
1432 - "yii2"  
1433 - ],  
1434 - "time": "2017-04-02 04:16:46"  
1435 - },  
1436 - {  
1437 - "name": "monolog/monolog",  
1438 - "version": "1.22.1",  
1439 - "source": {  
1440 - "type": "git",  
1441 - "url": "https://github.com/Seldaek/monolog.git",  
1442 - "reference": "1e044bc4b34e91743943479f1be7a1d5eb93add0"  
1443 - },  
1444 - "dist": {  
1445 - "type": "zip",  
1446 - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1e044bc4b34e91743943479f1be7a1d5eb93add0",  
1447 - "reference": "1e044bc4b34e91743943479f1be7a1d5eb93add0",  
1448 - "shasum": ""  
1449 - },  
1450 - "require": {  
1451 - "php": ">=5.3.0",  
1452 - "psr/log": "~1.0"  
1453 - },  
1454 - "provide": {  
1455 - "psr/log-implementation": "1.0.0"  
1456 - },  
1457 - "require-dev": {  
1458 - "aws/aws-sdk-php": "^2.4.9 || ^3.0",  
1459 - "doctrine/couchdb": "~1.0@dev",  
1460 - "graylog2/gelf-php": "~1.0",  
1461 - "jakub-onderka/php-parallel-lint": "0.9",  
1462 - "php-amqplib/php-amqplib": "~2.4",  
1463 - "php-console/php-console": "^3.1.3",  
1464 - "phpunit/phpunit": "~4.5",  
1465 - "phpunit/phpunit-mock-objects": "2.3.0",  
1466 - "ruflin/elastica": ">=0.90 <3.0",  
1467 - "sentry/sentry": "^0.13",  
1468 - "swiftmailer/swiftmailer": "~5.3"  
1469 - },  
1470 - "suggest": {  
1471 - "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",  
1472 - "doctrine/couchdb": "Allow sending log messages to a CouchDB server",  
1473 - "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",  
1474 - "ext-mongo": "Allow sending log messages to a MongoDB server",  
1475 - "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",  
1476 - "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",  
1477 - "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",  
1478 - "php-console/php-console": "Allow sending log messages to Google Chrome",  
1479 - "rollbar/rollbar": "Allow sending log messages to Rollbar",  
1480 - "ruflin/elastica": "Allow sending log messages to an Elastic Search server",  
1481 - "sentry/sentry": "Allow sending log messages to a Sentry server"  
1482 - },  
1483 - "type": "library",  
1484 - "extra": {  
1485 - "branch-alias": {  
1486 - "dev-master": "2.0.x-dev"  
1487 - }  
1488 - },  
1489 - "autoload": {  
1490 - "psr-4": {  
1491 - "Monolog\\": "src/Monolog"  
1492 - }  
1493 - },  
1494 - "notification-url": "https://packagist.org/downloads/",  
1495 - "license": [  
1496 - "MIT"  
1497 - ],  
1498 - "authors": [  
1499 - {  
1500 - "name": "Jordi Boggiano",  
1501 - "email": "j.boggiano@seld.be",  
1502 - "homepage": "http://seld.be"  
1503 - }  
1504 - ],  
1505 - "description": "Sends your logs to files, sockets, inboxes, databases and various web services",  
1506 - "homepage": "http://github.com/Seldaek/monolog",  
1507 - "keywords": [  
1508 - "log",  
1509 - "logging",  
1510 - "psr-3"  
1511 - ],  
1512 - "time": "2017-03-13 07:08:03"  
1513 - },  
1514 - {  
1515 - "name": "noam148/yii2-image-manager",  
1516 - "version": "1.2.1",  
1517 - "source": {  
1518 - "type": "git",  
1519 - "url": "https://github.com/noam148/yii2-image-manager.git",  
1520 - "reference": "fa1b8d9c405dec2404065d472105b77e783880ed"  
1521 - },  
1522 - "dist": {  
1523 - "type": "zip",  
1524 - "url": "https://api.github.com/repos/noam148/yii2-image-manager/zipball/fa1b8d9c405dec2404065d472105b77e783880ed",  
1525 - "reference": "fa1b8d9c405dec2404065d472105b77e783880ed",  
1526 - "shasum": ""  
1527 - },  
1528 - "require": {  
1529 - "kartik-v/yii2-widget-fileinput": "@dev",  
1530 - "noam148/yii2-image-resize": "*",  
1531 - "yiisoft/yii2": "*"  
1532 - },  
1533 - "type": "yii2-extension",  
1534 - "autoload": {  
1535 - "psr-4": {  
1536 - "noam148\\imagemanager\\": ""  
1537 - }  
1538 - },  
1539 - "notification-url": "https://packagist.org/downloads/",  
1540 - "license": [  
1541 - "BSD-3-Clause"  
1542 - ],  
1543 - "authors": [  
1544 - {  
1545 - "name": "Noam148",  
1546 - "homepage": "https://github.com/noam148/"  
1547 - }  
1548 - ],  
1549 - "description": "A Yii2 module/widget for upload and cropping images",  
1550 - "homepage": "https://github.com/noam148/yii2-image-manager",  
1551 - "keywords": [  
1552 - "crop",  
1553 - "extension",  
1554 - "image",  
1555 - "manager",  
1556 - "module",  
1557 - "upload",  
1558 - "widget",  
1559 - "yii2"  
1560 - ],  
1561 - "time": "2017-02-23 14:49:07"  
1562 - },  
1563 - {  
1564 - "name": "noam148/yii2-image-resize",  
1565 - "version": "1.0.1",  
1566 - "source": {  
1567 - "type": "git",  
1568 - "url": "https://github.com/noam148/yii2-image-resize.git",  
1569 - "reference": "75796bdbe9bd66e23f8aff9d44ab431936a5a15e"  
1570 - },  
1571 - "dist": {  
1572 - "type": "zip",  
1573 - "url": "https://api.github.com/repos/noam148/yii2-image-resize/zipball/75796bdbe9bd66e23f8aff9d44ab431936a5a15e",  
1574 - "reference": "75796bdbe9bd66e23f8aff9d44ab431936a5a15e",  
1575 - "shasum": ""  
1576 - },  
1577 - "require": {  
1578 - "yiisoft/yii2": "*",  
1579 - "yiisoft/yii2-imagine": "*"  
1580 - },  
1581 - "type": "yii2-extension",  
1582 - "autoload": {  
1583 - "psr-4": {  
1584 - "noam148\\imageresize\\": ""  
1585 - }  
1586 - },  
1587 - "notification-url": "https://packagist.org/downloads/",  
1588 - "license": [  
1589 - "BSD-3-Clause"  
1590 - ],  
1591 - "authors": [  
1592 - {  
1593 - "name": "Noam148",  
1594 - "homepage": "https://github.com/noam148/"  
1595 - }  
1596 - ],  
1597 - "description": "A Yii2 component for resizing images (on the fly)",  
1598 - "homepage": "https://github.com/noam148/yii2-image-resize",  
1599 - "keywords": [  
1600 - "component",  
1601 - "extension",  
1602 - "image",  
1603 - "on-the-fly",  
1604 - "resize",  
1605 - "yii2"  
1606 - ],  
1607 - "time": "2016-11-29 18:17:37"  
1608 - },  
1609 - {  
1610 - "name": "phpseclib/phpseclib",  
1611 - "version": "2.0.4",  
1612 - "source": {  
1613 - "type": "git",  
1614 - "url": "https://github.com/phpseclib/phpseclib.git",  
1615 - "reference": "ab8028c93c03cc8d9c824efa75dc94f1db2369bf"  
1616 - },  
1617 - "dist": {  
1618 - "type": "zip",  
1619 - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/ab8028c93c03cc8d9c824efa75dc94f1db2369bf",  
1620 - "reference": "ab8028c93c03cc8d9c824efa75dc94f1db2369bf",  
1621 - "shasum": ""  
1622 - },  
1623 - "require": {  
1624 - "php": ">=5.3.3"  
1625 - },  
1626 - "require-dev": {  
1627 - "phing/phing": "~2.7",  
1628 - "phpunit/phpunit": "~4.0",  
1629 - "sami/sami": "~2.0",  
1630 - "squizlabs/php_codesniffer": "~2.0"  
1631 - },  
1632 - "suggest": {  
1633 - "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",  
1634 - "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",  
1635 - "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",  
1636 - "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."  
1637 - },  
1638 - "type": "library",  
1639 - "autoload": {  
1640 - "files": [  
1641 - "phpseclib/bootstrap.php"  
1642 - ],  
1643 - "psr-4": {  
1644 - "phpseclib\\": "phpseclib/"  
1645 - }  
1646 - },  
1647 - "notification-url": "https://packagist.org/downloads/",  
1648 - "license": [  
1649 - "MIT"  
1650 - ],  
1651 - "authors": [  
1652 - {  
1653 - "name": "Jim Wigginton",  
1654 - "email": "terrafrost@php.net",  
1655 - "role": "Lead Developer"  
1656 - },  
1657 - {  
1658 - "name": "Patrick Monnerat",  
1659 - "email": "pm@datasphere.ch",  
1660 - "role": "Developer"  
1661 - },  
1662 - {  
1663 - "name": "Andreas Fischer",  
1664 - "email": "bantu@phpbb.com",  
1665 - "role": "Developer"  
1666 - },  
1667 - {  
1668 - "name": "Hans-Jürgen Petrich",  
1669 - "email": "petrich@tronic-media.com",  
1670 - "role": "Developer"  
1671 - },  
1672 - {  
1673 - "name": "Graham Campbell",  
1674 - "email": "graham@alt-three.com",  
1675 - "role": "Developer"  
1676 - }  
1677 - ],  
1678 - "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",  
1679 - "homepage": "http://phpseclib.sourceforge.net",  
1680 - "keywords": [  
1681 - "BigInteger",  
1682 - "aes",  
1683 - "asn.1",  
1684 - "asn1",  
1685 - "blowfish",  
1686 - "crypto",  
1687 - "cryptography",  
1688 - "encryption",  
1689 - "rsa",  
1690 - "security",  
1691 - "sftp",  
1692 - "signature",  
1693 - "signing",  
1694 - "ssh",  
1695 - "twofish",  
1696 - "x.509",  
1697 - "x509"  
1698 - ],  
1699 - "time": "2016-10-04 00:57:04"  
1700 - },  
1701 - {  
1702 - "name": "psr/cache",  
1703 - "version": "1.0.1",  
1704 - "source": {  
1705 - "type": "git",  
1706 - "url": "https://github.com/php-fig/cache.git",  
1707 - "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"  
1708 - },  
1709 - "dist": {  
1710 - "type": "zip",  
1711 - "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",  
1712 - "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",  
1713 - "shasum": ""  
1714 - },  
1715 - "require": {  
1716 - "php": ">=5.3.0"  
1717 - },  
1718 - "type": "library",  
1719 - "extra": {  
1720 - "branch-alias": {  
1721 - "dev-master": "1.0.x-dev"  
1722 - }  
1723 - },  
1724 - "autoload": {  
1725 - "psr-4": {  
1726 - "Psr\\Cache\\": "src/"  
1727 - }  
1728 - },  
1729 - "notification-url": "https://packagist.org/downloads/",  
1730 - "license": [  
1731 - "MIT"  
1732 - ],  
1733 - "authors": [  
1734 - {  
1735 - "name": "PHP-FIG",  
1736 - "homepage": "http://www.php-fig.org/"  
1737 - }  
1738 - ],  
1739 - "description": "Common interface for caching libraries",  
1740 - "keywords": [  
1741 - "cache",  
1742 - "psr",  
1743 - "psr-6"  
1744 - ],  
1745 - "time": "2016-08-06 20:24:11"  
1746 - },  
1747 - {  
1748 - "name": "psr/http-message",  
1749 - "version": "1.0.1",  
1750 - "source": {  
1751 - "type": "git",  
1752 - "url": "https://github.com/php-fig/http-message.git",  
1753 - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"  
1754 - },  
1755 - "dist": {  
1756 - "type": "zip",  
1757 - "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",  
1758 - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",  
1759 - "shasum": ""  
1760 - },  
1761 - "require": {  
1762 - "php": ">=5.3.0"  
1763 - },  
1764 - "type": "library",  
1765 - "extra": {  
1766 - "branch-alias": {  
1767 - "dev-master": "1.0.x-dev"  
1768 - }  
1769 - },  
1770 - "autoload": {  
1771 - "psr-4": {  
1772 - "Psr\\Http\\Message\\": "src/"  
1773 - }  
1774 - },  
1775 - "notification-url": "https://packagist.org/downloads/",  
1776 - "license": [  
1777 - "MIT"  
1778 - ],  
1779 - "authors": [  
1780 - {  
1781 - "name": "PHP-FIG",  
1782 - "homepage": "http://www.php-fig.org/"  
1783 - }  
1784 - ],  
1785 - "description": "Common interface for HTTP messages",  
1786 - "homepage": "https://github.com/php-fig/http-message",  
1787 - "keywords": [  
1788 - "http",  
1789 - "http-message",  
1790 - "psr",  
1791 - "psr-7",  
1792 - "request",  
1793 - "response"  
1794 - ],  
1795 - "time": "2016-08-06 14:39:51"  
1796 - },  
1797 - {  
1798 - "name": "psr/log",  
1799 - "version": "1.0.2",  
1800 - "source": {  
1801 - "type": "git",  
1802 - "url": "https://github.com/php-fig/log.git",  
1803 - "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"  
1804 - },  
1805 - "dist": {  
1806 - "type": "zip",  
1807 - "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",  
1808 - "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",  
1809 - "shasum": ""  
1810 - },  
1811 - "require": {  
1812 - "php": ">=5.3.0"  
1813 - },  
1814 - "type": "library",  
1815 - "extra": {  
1816 - "branch-alias": {  
1817 - "dev-master": "1.0.x-dev"  
1818 - }  
1819 - },  
1820 - "autoload": {  
1821 - "psr-4": {  
1822 - "Psr\\Log\\": "Psr/Log/"  
1823 - }  
1824 - },  
1825 - "notification-url": "https://packagist.org/downloads/",  
1826 - "license": [  
1827 - "MIT"  
1828 - ],  
1829 - "authors": [  
1830 - {  
1831 - "name": "PHP-FIG",  
1832 - "homepage": "http://www.php-fig.org/"  
1833 - }  
1834 - ],  
1835 - "description": "Common interface for logging libraries",  
1836 - "homepage": "https://github.com/php-fig/log",  
1837 - "keywords": [  
1838 - "log",  
1839 - "psr",  
1840 - "psr-3"  
1841 - ],  
1842 - "time": "2016-10-10 12:19:37"  
1843 - },  
1844 - {  
1845 - "name": "rmrevin/yii2-fontawesome",  
1846 - "version": "2.17.1",  
1847 - "source": {  
1848 - "type": "git",  
1849 - "url": "https://github.com/rmrevin/yii2-fontawesome.git",  
1850 - "reference": "65ce306da864f4d558348aeba040ed7876878090"  
1851 - },  
1852 - "dist": {  
1853 - "type": "zip",  
1854 - "url": "https://api.github.com/repos/rmrevin/yii2-fontawesome/zipball/65ce306da864f4d558348aeba040ed7876878090",  
1855 - "reference": "65ce306da864f4d558348aeba040ed7876878090",  
1856 - "shasum": ""  
1857 - },  
1858 - "require": {  
1859 - "fortawesome/font-awesome": "~4.7",  
1860 - "php": ">=5.4.0",  
1861 - "yiisoft/yii2": "2.0.*"  
1862 - },  
1863 - "type": "yii2-extension",  
1864 - "extra": {  
1865 - "asset-installer-paths": {  
1866 - "npm-asset-library": "vendor/npm",  
1867 - "bower-asset-library": "vendor/bower"  
1868 - }  
1869 - },  
1870 - "autoload": {  
1871 - "psr-4": {  
1872 - "rmrevin\\yii\\fontawesome\\": ""  
1873 - }  
1874 - },  
1875 - "notification-url": "https://packagist.org/downloads/",  
1876 - "license": [  
1877 - "MIT"  
1878 - ],  
1879 - "authors": [  
1880 - {  
1881 - "name": "Revin Roman",  
1882 - "email": "roman@rmrevin.com",  
1883 - "homepage": "https://rmrevin.com/"  
1884 - }  
1885 - ],  
1886 - "description": "Asset Bundle for Yii2 with Font Awesome",  
1887 - "keywords": [  
1888 - "asset",  
1889 - "awesome",  
1890 - "bundle",  
1891 - "font",  
1892 - "yii"  
1893 - ],  
1894 - "time": "2017-01-11 14:05:47"  
1895 - },  
1896 - {  
1897 - "name": "speixoto/yii2-amcharts",  
1898 - "version": "v0.1.1",  
1899 - "source": {  
1900 - "type": "git",  
1901 - "url": "https://github.com/speixoto/yii2-amcharts.git",  
1902 - "reference": "2a0c95360710e9a4317fd735fc3392772b75b8af"  
1903 - },  
1904 - "dist": {  
1905 - "type": "zip",  
1906 - "url": "https://api.github.com/repos/speixoto/yii2-amcharts/zipball/2a0c95360710e9a4317fd735fc3392772b75b8af",  
1907 - "reference": "2a0c95360710e9a4317fd735fc3392772b75b8af",  
1908 - "shasum": ""  
1909 - },  
1910 - "require": {  
1911 - "bower-asset/amcharts": "*",  
1912 - "bower-asset/amcharts-stock": "dev-master",  
1913 - "yiisoft/yii2": "*"  
1914 - },  
1915 - "type": "yii2-extension",  
1916 - "autoload": {  
1917 - "psr-4": {  
1918 - "speixoto\\amcharts\\": ""  
1919 - }  
1920 - },  
1921 - "notification-url": "https://packagist.org/downloads/",  
1922 - "license": [  
1923 - "MIT"  
1924 - ],  
1925 - "authors": [  
1926 - {  
1927 - "name": "Sérgio Peixoto",  
1928 - "email": "matematico2002@hotmail.com"  
1929 - }  
1930 - ],  
1931 - "description": "AmCharts Widget for Yii 2",  
1932 - "keywords": [  
1933 - "amcharts",  
1934 - "yii"  
1935 - ],  
1936 - "time": "2016-08-23 13:52:28"  
1937 - },  
1938 - {  
1939 - "name": "swiftmailer/swiftmailer",  
1940 - "version": "v5.4.6",  
1941 - "source": {  
1942 - "type": "git",  
1943 - "url": "https://github.com/swiftmailer/swiftmailer.git",  
1944 - "reference": "81fdccfaf8bdc5d5d7a1ef6bb3a61bbb1a6c4a3e"  
1945 - },  
1946 - "dist": {  
1947 - "type": "zip",  
1948 - "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/81fdccfaf8bdc5d5d7a1ef6bb3a61bbb1a6c4a3e",  
1949 - "reference": "81fdccfaf8bdc5d5d7a1ef6bb3a61bbb1a6c4a3e",  
1950 - "shasum": ""  
1951 - },  
1952 - "require": {  
1953 - "php": ">=5.3.3"  
1954 - },  
1955 - "require-dev": {  
1956 - "mockery/mockery": "~0.9.1",  
1957 - "symfony/phpunit-bridge": "~3.2"  
1958 - },  
1959 - "type": "library",  
1960 - "extra": {  
1961 - "branch-alias": {  
1962 - "dev-master": "5.4-dev"  
1963 - }  
1964 - },  
1965 - "autoload": {  
1966 - "files": [  
1967 - "lib/swift_required.php"  
1968 - ]  
1969 - },  
1970 - "notification-url": "https://packagist.org/downloads/",  
1971 - "license": [  
1972 - "MIT"  
1973 - ],  
1974 - "authors": [  
1975 - {  
1976 - "name": "Chris Corbyn"  
1977 - },  
1978 - {  
1979 - "name": "Fabien Potencier",  
1980 - "email": "fabien@symfony.com"  
1981 - }  
1982 - ],  
1983 - "description": "Swiftmailer, free feature-rich PHP mailer",  
1984 - "homepage": "http://swiftmailer.org",  
1985 - "keywords": [  
1986 - "email",  
1987 - "mail",  
1988 - "mailer"  
1989 - ],  
1990 - "time": "2017-02-13 07:52:53"  
1991 - },  
1992 - {  
1993 - "name": "tinymce/tinymce",  
1994 - "version": "4.5.6",  
1995 - "source": {  
1996 - "type": "git",  
1997 - "url": "https://github.com/tinymce/tinymce-dist.git",  
1998 - "reference": "87a20625963d051cce993130c6d8ebd5fbc96314"  
1999 - },  
2000 - "dist": {  
2001 - "type": "zip",  
2002 - "url": "https://api.github.com/repos/tinymce/tinymce-dist/zipball/87a20625963d051cce993130c6d8ebd5fbc96314",  
2003 - "reference": "87a20625963d051cce993130c6d8ebd5fbc96314",  
2004 - "shasum": ""  
2005 - },  
2006 - "type": "component",  
2007 - "extra": {  
2008 - "component": {  
2009 - "scripts": [  
2010 - "tinymce.js",  
2011 - "plugins/*/plugin.js",  
2012 - "themes/*/theme.js"  
2013 - ],  
2014 - "files": [  
2015 - "tinymce.min.js",  
2016 - "plugins/*/plugin.min.js",  
2017 - "themes/*/theme.min.js",  
2018 - "skins/**"  
2019 - ]  
2020 - }  
2021 - },  
2022 - "notification-url": "https://packagist.org/downloads/",  
2023 - "license": [  
2024 - "LGPL-2.1"  
2025 - ],  
2026 - "description": "Web based JavaScript HTML WYSIWYG editor control.",  
2027 - "homepage": "http://www.tinymce.com",  
2028 - "keywords": [  
2029 - "editor",  
2030 - "html",  
2031 - "javascript",  
2032 - "richtext",  
2033 - "tinymce",  
2034 - "wysiwyg"  
2035 - ],  
2036 - "time": "2017-03-30 13:48:40"  
2037 - },  
2038 - {  
2039 - "name": "yii2tech/filedb",  
2040 - "version": "1.0.3",  
2041 - "source": {  
2042 - "type": "git",  
2043 - "url": "https://github.com/yii2tech/filedb.git",  
2044 - "reference": "29af3a707fa2070b73b268e847b264f29c7dff31"  
2045 - },  
2046 - "dist": {  
2047 - "type": "zip",  
2048 - "url": "https://api.github.com/repos/yii2tech/filedb/zipball/29af3a707fa2070b73b268e847b264f29c7dff31",  
2049 - "reference": "29af3a707fa2070b73b268e847b264f29c7dff31",  
2050 - "shasum": ""  
2051 - },  
2052 - "require": {  
2053 - "yiisoft/yii2": "*"  
2054 - },  
2055 - "type": "yii2-extension",  
2056 - "extra": {  
2057 - "branch-alias": {  
2058 - "dev-master": "1.0.x-dev"  
2059 - }  
2060 - },  
2061 - "autoload": {  
2062 - "psr-4": {  
2063 - "yii2tech\\filedb\\": ""  
2064 - }  
2065 - },  
2066 - "notification-url": "https://packagist.org/downloads/",  
2067 - "license": [  
2068 - "BSD-3-Clause"  
2069 - ],  
2070 - "authors": [  
2071 - {  
2072 - "name": "Paul Klimov",  
2073 - "email": "klimov.paul@gmail.com"  
2074 - }  
2075 - ],  
2076 - "description": "Provides ActiveRecord interface for data declared in static files",  
2077 - "keywords": [  
2078 - "active",  
2079 - "filedb",  
2080 - "record",  
2081 - "static",  
2082 - "yii2"  
2083 - ],  
2084 - "time": "2017-02-06 10:58:30"  
2085 - },  
2086 - {  
2087 - "name": "yiisoft/yii2",  
2088 - "version": "2.0.11.2",  
2089 - "source": {  
2090 - "type": "git",  
2091 - "url": "https://github.com/yiisoft/yii2-framework.git",  
2092 - "reference": "ee996adec1dfd7babb67bd0c604f5bd6425fe5ab"  
2093 - },  
2094 - "dist": {  
2095 - "type": "zip",  
2096 - "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/ee996adec1dfd7babb67bd0c604f5bd6425fe5ab",  
2097 - "reference": "ee996adec1dfd7babb67bd0c604f5bd6425fe5ab",  
2098 - "shasum": ""  
2099 - },  
2100 - "require": {  
2101 - "bower-asset/jquery": "2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",  
2102 - "bower-asset/jquery.inputmask": "~3.2.2 | ~3.3.3",  
2103 - "bower-asset/punycode": "1.3.*",  
2104 - "bower-asset/yii2-pjax": "~2.0.1",  
2105 - "cebe/markdown": "~1.0.0 | ~1.1.0",  
2106 - "ext-ctype": "*",  
2107 - "ext-mbstring": "*",  
2108 - "ezyang/htmlpurifier": "~4.6",  
2109 - "lib-pcre": "*",  
2110 - "php": ">=5.4.0",  
2111 - "yiisoft/yii2-composer": "~2.0.4"  
2112 - },  
2113 - "bin": [  
2114 - "yii"  
2115 - ],  
2116 - "type": "library",  
2117 - "extra": {  
2118 - "branch-alias": {  
2119 - "dev-master": "2.0.x-dev"  
2120 - }  
2121 - },  
2122 - "autoload": {  
2123 - "psr-4": {  
2124 - "yii\\": ""  
2125 - }  
2126 - },  
2127 - "notification-url": "https://packagist.org/downloads/",  
2128 - "license": [  
2129 - "BSD-3-Clause"  
2130 - ],  
2131 - "authors": [  
2132 - {  
2133 - "name": "Qiang Xue",  
2134 - "email": "qiang.xue@gmail.com",  
2135 - "homepage": "http://www.yiiframework.com/",  
2136 - "role": "Founder and project lead"  
2137 - },  
2138 - {  
2139 - "name": "Alexander Makarov",  
2140 - "email": "sam@rmcreative.ru",  
2141 - "homepage": "http://rmcreative.ru/",  
2142 - "role": "Core framework development"  
2143 - },  
2144 - {  
2145 - "name": "Maurizio Domba",  
2146 - "homepage": "http://mdomba.info/",  
2147 - "role": "Core framework development"  
2148 - },  
2149 - {  
2150 - "name": "Carsten Brandt",  
2151 - "email": "mail@cebe.cc",  
2152 - "homepage": "http://cebe.cc/",  
2153 - "role": "Core framework development"  
2154 - },  
2155 - {  
2156 - "name": "Timur Ruziev",  
2157 - "email": "resurtm@gmail.com",  
2158 - "homepage": "http://resurtm.com/",  
2159 - "role": "Core framework development"  
2160 - },  
2161 - {  
2162 - "name": "Paul Klimov",  
2163 - "email": "klimov.paul@gmail.com",  
2164 - "role": "Core framework development"  
2165 - },  
2166 - {  
2167 - "name": "Dmitry Naumenko",  
2168 - "email": "d.naumenko.a@gmail.com",  
2169 - "role": "Core framework development"  
2170 - },  
2171 - {  
2172 - "name": "Boudewijn Vahrmeijer",  
2173 - "email": "info@dynasource.eu",  
2174 - "homepage": "http://dynasource.eu",  
2175 - "role": "Core framework development"  
2176 - }  
2177 - ],  
2178 - "description": "Yii PHP Framework Version 2",  
2179 - "homepage": "http://www.yiiframework.com/",  
2180 - "keywords": [  
2181 - "framework",  
2182 - "yii2"  
2183 - ],  
2184 - "time": "2017-02-08 09:04:32"  
2185 - },  
2186 - {  
2187 - "name": "yiisoft/yii2-bootstrap",  
2188 - "version": "2.0.6",  
2189 - "source": {  
2190 - "type": "git",  
2191 - "url": "https://github.com/yiisoft/yii2-bootstrap.git",  
2192 - "reference": "3fd2b8c950cce79d60e9702d6bcb24eb3c80f6c5"  
2193 - },  
2194 - "dist": {  
2195 - "type": "zip",  
2196 - "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/3fd2b8c950cce79d60e9702d6bcb24eb3c80f6c5",  
2197 - "reference": "3fd2b8c950cce79d60e9702d6bcb24eb3c80f6c5",  
2198 - "shasum": ""  
2199 - },  
2200 - "require": {  
2201 - "bower-asset/bootstrap": "3.3.* | 3.2.* | 3.1.*",  
2202 - "yiisoft/yii2": ">=2.0.6"  
2203 - },  
2204 - "type": "yii2-extension",  
2205 - "extra": {  
2206 - "branch-alias": {  
2207 - "dev-master": "2.0.x-dev"  
2208 - },  
2209 - "asset-installer-paths": {  
2210 - "npm-asset-library": "vendor/npm",  
2211 - "bower-asset-library": "vendor/bower"  
2212 - }  
2213 - },  
2214 - "autoload": {  
2215 - "psr-4": {  
2216 - "yii\\bootstrap\\": ""  
2217 - }  
2218 - },  
2219 - "notification-url": "https://packagist.org/downloads/",  
2220 - "license": [  
2221 - "BSD-3-Clause"  
2222 - ],  
2223 - "authors": [  
2224 - {  
2225 - "name": "Qiang Xue",  
2226 - "email": "qiang.xue@gmail.com"  
2227 - }  
2228 - ],  
2229 - "description": "The Twitter Bootstrap extension for the Yii framework",  
2230 - "keywords": [  
2231 - "bootstrap",  
2232 - "yii2"  
2233 - ],  
2234 - "time": "2016-03-17 03:29:28"  
2235 - },  
2236 - {  
2237 - "name": "yiisoft/yii2-composer",  
2238 - "version": "2.0.5",  
2239 - "source": {  
2240 - "type": "git",  
2241 - "url": "https://github.com/yiisoft/yii2-composer.git",  
2242 - "reference": "3f4923c2bde6caf3f5b88cc22fdd5770f52f8df2"  
2243 - },  
2244 - "dist": {  
2245 - "type": "zip",  
2246 - "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/3f4923c2bde6caf3f5b88cc22fdd5770f52f8df2",  
2247 - "reference": "3f4923c2bde6caf3f5b88cc22fdd5770f52f8df2",  
2248 - "shasum": ""  
2249 - },  
2250 - "require": {  
2251 - "composer-plugin-api": "^1.0"  
2252 - },  
2253 - "require-dev": {  
2254 - "composer/composer": "^1.0"  
2255 - },  
2256 - "type": "composer-plugin",  
2257 - "extra": {  
2258 - "class": "yii\\composer\\Plugin",  
2259 - "branch-alias": {  
2260 - "dev-master": "2.0.x-dev"  
2261 - }  
2262 - },  
2263 - "autoload": {  
2264 - "psr-4": {  
2265 - "yii\\composer\\": ""  
2266 - }  
2267 - },  
2268 - "notification-url": "https://packagist.org/downloads/",  
2269 - "license": [  
2270 - "BSD-3-Clause"  
2271 - ],  
2272 - "authors": [  
2273 - {  
2274 - "name": "Qiang Xue",  
2275 - "email": "qiang.xue@gmail.com"  
2276 - }  
2277 - ],  
2278 - "description": "The composer plugin for Yii extension installer",  
2279 - "keywords": [  
2280 - "composer",  
2281 - "extension installer",  
2282 - "yii2"  
2283 - ],  
2284 - "time": "2016-12-20 13:26:02"  
2285 - },  
2286 - {  
2287 - "name": "yiisoft/yii2-imagine",  
2288 - "version": "2.1.0",  
2289 - "source": {  
2290 - "type": "git",  
2291 - "url": "https://github.com/yiisoft/yii2-imagine.git",  
2292 - "reference": "59dcd0b43c2b0e5495c7e5c0320e2cbc1cd57411"  
2293 - },  
2294 - "dist": {  
2295 - "type": "zip",  
2296 - "url": "https://api.github.com/repos/yiisoft/yii2-imagine/zipball/59dcd0b43c2b0e5495c7e5c0320e2cbc1cd57411",  
2297 - "reference": "59dcd0b43c2b0e5495c7e5c0320e2cbc1cd57411",  
2298 - "shasum": ""  
2299 - },  
2300 - "require": {  
2301 - "imagine/imagine": "~0.6.0",  
2302 - "yiisoft/yii2": "~2.0.0"  
2303 - },  
2304 - "type": "yii2-extension",  
2305 - "extra": {  
2306 - "branch-alias": {  
2307 - "dev-master": "2.0.x-dev"  
2308 - }  
2309 - },  
2310 - "autoload": {  
2311 - "psr-4": {  
2312 - "yii\\imagine\\": ""  
2313 - }  
2314 - },  
2315 - "notification-url": "https://packagist.org/downloads/",  
2316 - "license": [  
2317 - "BSD-3-Clause"  
2318 - ],  
2319 - "authors": [  
2320 - {  
2321 - "name": "Antonio Ramirez",  
2322 - "email": "amigo.cobos@gmail.com"  
2323 - }  
2324 - ],  
2325 - "description": "The Imagine integration for the Yii framework",  
2326 - "keywords": [  
2327 - "helper",  
2328 - "image",  
2329 - "imagine",  
2330 - "yii2"  
2331 - ],  
2332 - "time": "2016-11-03 19:28:39"  
2333 - },  
2334 - {  
2335 - "name": "yiisoft/yii2-swiftmailer",  
2336 - "version": "2.0.6",  
2337 - "source": {  
2338 - "type": "git",  
2339 - "url": "https://github.com/yiisoft/yii2-swiftmailer.git",  
2340 - "reference": "26b900767f1031ff3a4668dfa36c10595875f0a5"  
2341 - },  
2342 - "dist": {  
2343 - "type": "zip",  
2344 - "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/26b900767f1031ff3a4668dfa36c10595875f0a5",  
2345 - "reference": "26b900767f1031ff3a4668dfa36c10595875f0a5",  
2346 - "shasum": ""  
2347 - },  
2348 - "require": {  
2349 - "swiftmailer/swiftmailer": "~5.0",  
2350 - "yiisoft/yii2": "~2.0.4"  
2351 - },  
2352 - "type": "yii2-extension",  
2353 - "extra": {  
2354 - "branch-alias": {  
2355 - "dev-master": "2.0.x-dev"  
2356 - }  
2357 - },  
2358 - "autoload": {  
2359 - "psr-4": {  
2360 - "yii\\swiftmailer\\": ""  
2361 - }  
2362 - },  
2363 - "notification-url": "https://packagist.org/downloads/",  
2364 - "license": [  
2365 - "BSD-3-Clause"  
2366 - ],  
2367 - "authors": [  
2368 - {  
2369 - "name": "Paul Klimov",  
2370 - "email": "klimov.paul@gmail.com"  
2371 - }  
2372 - ],  
2373 - "description": "The SwiftMailer integration for the Yii framework",  
2374 - "keywords": [  
2375 - "email",  
2376 - "mail",  
2377 - "mailer",  
2378 - "swift",  
2379 - "swiftmailer",  
2380 - "yii2"  
2381 - ],  
2382 - "time": "2016-09-09 11:48:11"  
2383 - },  
2384 - {  
2385 - "name": "yiister/yii2-gentelella",  
2386 - "version": "1.2.1",  
2387 - "source": {  
2388 - "type": "git",  
2389 - "url": "https://github.com/yiister/yii2-gentelella.git",  
2390 - "reference": "6b92d89dc43e5c310c9932e5369f7ef4b59f6ae1"  
2391 - },  
2392 - "dist": {  
2393 - "type": "zip",  
2394 - "url": "https://api.github.com/repos/yiister/yii2-gentelella/zipball/6b92d89dc43e5c310c9932e5369f7ef4b59f6ae1",  
2395 - "reference": "6b92d89dc43e5c310c9932e5369f7ef4b59f6ae1",  
2396 - "shasum": ""  
2397 - },  
2398 - "require": {  
2399 - "bower-asset/gentelella": "*",  
2400 - "php": ">=5.4.0",  
2401 - "rmrevin/yii2-fontawesome": "~2.0",  
2402 - "yiisoft/yii2": "~2.0.0",  
2403 - "yiisoft/yii2-bootstrap": "~2.0.0"  
2404 - },  
2405 - "type": "yii2-extension",  
2406 - "extra": {  
2407 - "asset-installer-paths": {  
2408 - "npm-asset-library": "vendor/npm",  
2409 - "bower-asset-library": "vendor/bower"  
2410 - }  
2411 - },  
2412 - "autoload": {  
2413 - "psr-4": {  
2414 - "yiister\\gentelella\\": ""  
2415 - }  
2416 - },  
2417 - "notification-url": "https://packagist.org/downloads/",  
2418 - "license": [  
2419 - "MIT"  
2420 - ],  
2421 - "authors": [  
2422 - {  
2423 - "name": "Pavel Fedotov",  
2424 - "email": "fps.06@mail.ru",  
2425 - "homepage": "https://github.com/fps01",  
2426 - "role": "Creator"  
2427 - }  
2428 - ],  
2429 - "description": "Free admin template for backend",  
2430 - "keywords": [  
2431 - "admin",  
2432 - "asset",  
2433 - "backend",  
2434 - "bootsprap3",  
2435 - "extension",  
2436 - "gentelella",  
2437 - "theme",  
2438 - "yii2"  
2439 - ],  
2440 - "time": "2017-03-21 14:59:58"  
2441 - }  
2442 - ],  
2443 - "packages-dev": [  
2444 - {  
2445 - "name": "behat/gherkin",  
2446 - "version": "v4.4.5",  
2447 - "source": {  
2448 - "type": "git",  
2449 - "url": "https://github.com/Behat/Gherkin.git",  
2450 - "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74"  
2451 - },  
2452 - "dist": {  
2453 - "type": "zip",  
2454 - "url": "https://api.github.com/repos/Behat/Gherkin/zipball/5c14cff4f955b17d20d088dec1bde61c0539ec74",  
2455 - "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74",  
2456 - "shasum": ""  
2457 - },  
2458 - "require": {  
2459 - "php": ">=5.3.1"  
2460 - },  
2461 - "require-dev": {  
2462 - "phpunit/phpunit": "~4.5|~5",  
2463 - "symfony/phpunit-bridge": "~2.7|~3",  
2464 - "symfony/yaml": "~2.3|~3"  
2465 - },  
2466 - "suggest": {  
2467 - "symfony/yaml": "If you want to parse features, represented in YAML files"  
2468 - },  
2469 - "type": "library",  
2470 - "extra": {  
2471 - "branch-alias": {  
2472 - "dev-master": "4.4-dev"  
2473 - }  
2474 - },  
2475 - "autoload": {  
2476 - "psr-0": {  
2477 - "Behat\\Gherkin": "src/"  
2478 - }  
2479 - },  
2480 - "notification-url": "https://packagist.org/downloads/",  
2481 - "license": [  
2482 - "MIT"  
2483 - ],  
2484 - "authors": [  
2485 - {  
2486 - "name": "Konstantin Kudryashov",  
2487 - "email": "ever.zet@gmail.com",  
2488 - "homepage": "http://everzet.com"  
2489 - }  
2490 - ],  
2491 - "description": "Gherkin DSL parser for PHP 5.3",  
2492 - "homepage": "http://behat.org/",  
2493 - "keywords": [  
2494 - "BDD",  
2495 - "Behat",  
2496 - "Cucumber",  
2497 - "DSL",  
2498 - "gherkin",  
2499 - "parser"  
2500 - ],  
2501 - "time": "2016-10-30 11:50:56"  
2502 - },  
2503 - {  
2504 - "name": "bower-asset/typeahead.js",  
2505 - "version": "v0.11.1",  
2506 - "source": {  
2507 - "type": "git",  
2508 - "url": "https://github.com/twitter/typeahead.js.git",  
2509 - "reference": "588440f66559714280628a4f9799f0c4eb880a4a"  
2510 - },  
2511 - "dist": {  
2512 - "type": "zip",  
2513 - "url": "https://api.github.com/repos/twitter/typeahead.js/zipball/588440f66559714280628a4f9799f0c4eb880a4a",  
2514 - "reference": "588440f66559714280628a4f9799f0c4eb880a4a",  
2515 - "shasum": ""  
2516 - },  
2517 - "require": {  
2518 - "bower-asset/jquery": ">=1.7"  
2519 - },  
2520 - "require-dev": {  
2521 - "bower-asset/jasmine-ajax": "~1.3.1",  
2522 - "bower-asset/jasmine-jquery": "~1.5.2",  
2523 - "bower-asset/jquery": "~1.7"  
2524 - },  
2525 - "type": "bower-asset-library",  
2526 - "extra": {  
2527 - "bower-asset-main": "dist/typeahead.bundle.js"  
2528 - }  
2529 - },  
2530 - {  
2531 - "name": "codeception/base",  
2532 - "version": "2.2.10",  
2533 - "source": {  
2534 - "type": "git",  
2535 - "url": "https://github.com/Codeception/base.git",  
2536 - "reference": "99142344c1c3ea147d2908473ee96bfef81a2349"  
2537 - },  
2538 - "dist": {  
2539 - "type": "zip",  
2540 - "url": "https://api.github.com/repos/Codeception/base/zipball/99142344c1c3ea147d2908473ee96bfef81a2349",  
2541 - "reference": "99142344c1c3ea147d2908473ee96bfef81a2349",  
2542 - "shasum": ""  
2543 - },  
2544 - "require": {  
2545 - "behat/gherkin": "~4.4.0",  
2546 - "ext-json": "*",  
2547 - "ext-mbstring": "*",  
2548 - "guzzlehttp/psr7": "~1.0",  
2549 - "php": ">=5.4.0 <8.0",  
2550 - "phpunit/php-code-coverage": ">=2.2.4 <5.0",  
2551 - "phpunit/phpunit": ">4.8.20 <6.0",  
2552 - "sebastian/comparator": "~1.1",  
2553 - "sebastian/diff": "^1.4",  
2554 - "stecman/symfony-console-completion": "^0.7.0",  
2555 - "symfony/browser-kit": ">=2.7 <4.0",  
2556 - "symfony/console": ">=2.7 <4.0",  
2557 - "symfony/css-selector": ">=2.7 <4.0",  
2558 - "symfony/dom-crawler": ">=2.7.5 <4.0",  
2559 - "symfony/event-dispatcher": ">=2.7 <4.0",  
2560 - "symfony/finder": ">=2.7 <4.0",  
2561 - "symfony/yaml": ">=2.7 <4.0"  
2562 - },  
2563 - "require-dev": {  
2564 - "codeception/specify": "~0.3",  
2565 - "facebook/graph-sdk": "~5.3",  
2566 - "flow/jsonpath": "~0.2",  
2567 - "league/factory-muffin": "^3.0",  
2568 - "league/factory-muffin-faker": "^1.0",  
2569 - "mongodb/mongodb": "^1.0",  
2570 - "monolog/monolog": "~1.8",  
2571 - "pda/pheanstalk": "~3.0",  
2572 - "php-amqplib/php-amqplib": "~2.4",  
2573 - "predis/predis": "^1.0",  
2574 - "squizlabs/php_codesniffer": "~2.0",  
2575 - "vlucas/phpdotenv": "^2.4.0"  
2576 - },  
2577 - "suggest": {  
2578 - "codeception/specify": "BDD-style code blocks",  
2579 - "codeception/verify": "BDD-style assertions",  
2580 - "flow/jsonpath": "For using JSONPath in REST module",  
2581 - "league/factory-muffin": "For DataFactory module",  
2582 - "league/factory-muffin-faker": "For Faker support in DataFactory module",  
2583 - "phpseclib/phpseclib": "for SFTP option in FTP Module",  
2584 - "symfony/phpunit-bridge": "For phpunit-bridge support"  
2585 - },  
2586 - "bin": [  
2587 - "codecept"  
2588 - ],  
2589 - "type": "library",  
2590 - "extra": {  
2591 - "branch-alias": []  
2592 - },  
2593 - "autoload": {  
2594 - "psr-4": {  
2595 - "Codeception\\": "src\\Codeception",  
2596 - "Codeception\\Extension\\": "ext"  
2597 - }  
2598 - },  
2599 - "notification-url": "https://packagist.org/downloads/",  
2600 - "license": [  
2601 - "MIT"  
2602 - ],  
2603 - "authors": [  
2604 - {  
2605 - "name": "Michael Bodnarchuk",  
2606 - "email": "davert@mail.ua",  
2607 - "homepage": "http://codegyre.com"  
2608 - }  
2609 - ],  
2610 - "description": "BDD-style testing framework",  
2611 - "homepage": "http://codeception.com/",  
2612 - "keywords": [  
2613 - "BDD",  
2614 - "TDD",  
2615 - "acceptance testing",  
2616 - "functional testing",  
2617 - "unit testing"  
2618 - ],  
2619 - "time": "2017-03-25 03:34:50"  
2620 - },  
2621 - {  
2622 - "name": "codeception/verify",  
2623 - "version": "0.3.3",  
2624 - "source": {  
2625 - "type": "git",  
2626 - "url": "https://github.com/Codeception/Verify.git",  
2627 - "reference": "5d649dda453cd814dadc4bb053060cd2c6bb4b4c"  
2628 - },  
2629 - "dist": {  
2630 - "type": "zip",  
2631 - "url": "https://api.github.com/repos/Codeception/Verify/zipball/5d649dda453cd814dadc4bb053060cd2c6bb4b4c",  
2632 - "reference": "5d649dda453cd814dadc4bb053060cd2c6bb4b4c",  
2633 - "shasum": ""  
2634 - },  
2635 - "require-dev": {  
2636 - "phpunit/phpunit": "~4.0"  
2637 - },  
2638 - "type": "library",  
2639 - "autoload": {  
2640 - "files": [  
2641 - "src/Codeception/function.php"  
2642 - ]  
2643 - },  
2644 - "notification-url": "https://packagist.org/downloads/",  
2645 - "license": [  
2646 - "MIT"  
2647 - ],  
2648 - "authors": [  
2649 - {  
2650 - "name": "Michael Bodnarchuk",  
2651 - "email": "davert.php@mailican.com"  
2652 - }  
2653 - ],  
2654 - "description": "BDD assertion library for PHPUnit",  
2655 - "time": "2017-01-09 10:58:51"  
2656 - },  
2657 - {  
2658 - "name": "doctrine/instantiator",  
2659 - "version": "1.0.5",  
2660 - "source": {  
2661 - "type": "git",  
2662 - "url": "https://github.com/doctrine/instantiator.git",  
2663 - "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"  
2664 - },  
2665 - "dist": {  
2666 - "type": "zip",  
2667 - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",  
2668 - "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",  
2669 - "shasum": ""  
2670 - },  
2671 - "require": {  
2672 - "php": ">=5.3,<8.0-DEV"  
2673 - },  
2674 - "require-dev": {  
2675 - "athletic/athletic": "~0.1.8",  
2676 - "ext-pdo": "*",  
2677 - "ext-phar": "*",  
2678 - "phpunit/phpunit": "~4.0",  
2679 - "squizlabs/php_codesniffer": "~2.0"  
2680 - },  
2681 - "type": "library",  
2682 - "extra": {  
2683 - "branch-alias": {  
2684 - "dev-master": "1.0.x-dev"  
2685 - }  
2686 - },  
2687 - "autoload": {  
2688 - "psr-4": {  
2689 - "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"  
2690 - }  
2691 - },  
2692 - "notification-url": "https://packagist.org/downloads/",  
2693 - "license": [  
2694 - "MIT"  
2695 - ],  
2696 - "authors": [  
2697 - {  
2698 - "name": "Marco Pivetta",  
2699 - "email": "ocramius@gmail.com",  
2700 - "homepage": "http://ocramius.github.com/"  
2701 - }  
2702 - ],  
2703 - "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",  
2704 - "homepage": "https://github.com/doctrine/instantiator",  
2705 - "keywords": [  
2706 - "constructor",  
2707 - "instantiate"  
2708 - ],  
2709 - "time": "2015-06-14 21:17:01"  
2710 - },  
2711 - {  
2712 - "name": "fzaninotto/faker",  
2713 - "version": "v1.6.0",  
2714 - "source": {  
2715 - "type": "git",  
2716 - "url": "https://github.com/fzaninotto/Faker.git",  
2717 - "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123"  
2718 - },  
2719 - "dist": {  
2720 - "type": "zip",  
2721 - "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/44f9a286a04b80c76a4e5fb7aad8bb539b920123",  
2722 - "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123",  
2723 - "shasum": ""  
2724 - },  
2725 - "require": {  
2726 - "php": "^5.3.3|^7.0"  
2727 - },  
2728 - "require-dev": {  
2729 - "ext-intl": "*",  
2730 - "phpunit/phpunit": "~4.0",  
2731 - "squizlabs/php_codesniffer": "~1.5"  
2732 - },  
2733 - "type": "library",  
2734 - "extra": {  
2735 - "branch-alias": []  
2736 - },  
2737 - "autoload": {  
2738 - "psr-4": {  
2739 - "Faker\\": "src/Faker/"  
2740 - }  
2741 - },  
2742 - "notification-url": "https://packagist.org/downloads/",  
2743 - "license": [  
2744 - "MIT"  
2745 - ],  
2746 - "authors": [  
2747 - {  
2748 - "name": "François Zaninotto"  
2749 - }  
2750 - ],  
2751 - "description": "Faker is a PHP library that generates fake data for you.",  
2752 - "keywords": [  
2753 - "data",  
2754 - "faker",  
2755 - "fixtures"  
2756 - ],  
2757 - "time": "2016-04-29 12:21:54"  
2758 - },  
2759 - {  
2760 - "name": "myclabs/deep-copy",  
2761 - "version": "1.6.0",  
2762 - "source": {  
2763 - "type": "git",  
2764 - "url": "https://github.com/myclabs/DeepCopy.git",  
2765 - "reference": "5a5a9fc8025a08d8919be87d6884d5a92520cefe"  
2766 - },  
2767 - "dist": {  
2768 - "type": "zip",  
2769 - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/5a5a9fc8025a08d8919be87d6884d5a92520cefe",  
2770 - "reference": "5a5a9fc8025a08d8919be87d6884d5a92520cefe",  
2771 - "shasum": ""  
2772 - },  
2773 - "require": {  
2774 - "php": ">=5.4.0"  
2775 - },  
2776 - "require-dev": {  
2777 - "doctrine/collections": "1.*",  
2778 - "phpunit/phpunit": "~4.1"  
2779 - },  
2780 - "type": "library",  
2781 - "autoload": {  
2782 - "psr-4": {  
2783 - "DeepCopy\\": "src/DeepCopy/"  
2784 - }  
2785 - },  
2786 - "notification-url": "https://packagist.org/downloads/",  
2787 - "license": [  
2788 - "MIT"  
2789 - ],  
2790 - "description": "Create deep copies (clones) of your objects",  
2791 - "homepage": "https://github.com/myclabs/DeepCopy",  
2792 - "keywords": [  
2793 - "clone",  
2794 - "copy",  
2795 - "duplicate",  
2796 - "object",  
2797 - "object graph"  
2798 - ],  
2799 - "time": "2017-01-26 22:05:40"  
2800 - },  
2801 - {  
2802 - "name": "phpdocumentor/reflection-common",  
2803 - "version": "1.0",  
2804 - "source": {  
2805 - "type": "git",  
2806 - "url": "https://github.com/phpDocumentor/ReflectionCommon.git",  
2807 - "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c"  
2808 - },  
2809 - "dist": {  
2810 - "type": "zip",  
2811 - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/144c307535e82c8fdcaacbcfc1d6d8eeb896687c",  
2812 - "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c",  
2813 - "shasum": ""  
2814 - },  
2815 - "require": {  
2816 - "php": ">=5.5"  
2817 - },  
2818 - "require-dev": {  
2819 - "phpunit/phpunit": "^4.6"  
2820 - },  
2821 - "type": "library",  
2822 - "extra": {  
2823 - "branch-alias": {  
2824 - "dev-master": "1.0.x-dev"  
2825 - }  
2826 - },  
2827 - "autoload": {  
2828 - "psr-4": {  
2829 - "phpDocumentor\\Reflection\\": [  
2830 - "src"  
2831 - ]  
2832 - }  
2833 - },  
2834 - "notification-url": "https://packagist.org/downloads/",  
2835 - "license": [  
2836 - "MIT"  
2837 - ],  
2838 - "authors": [  
2839 - {  
2840 - "name": "Jaap van Otterdijk",  
2841 - "email": "opensource@ijaap.nl"  
2842 - }  
2843 - ],  
2844 - "description": "Common reflection classes used by phpdocumentor to reflect the code structure",  
2845 - "homepage": "http://www.phpdoc.org",  
2846 - "keywords": [  
2847 - "FQSEN",  
2848 - "phpDocumentor",  
2849 - "phpdoc",  
2850 - "reflection",  
2851 - "static analysis"  
2852 - ],  
2853 - "time": "2015-12-27 11:43:31"  
2854 - },  
2855 - {  
2856 - "name": "phpdocumentor/reflection-docblock",  
2857 - "version": "3.1.1",  
2858 - "source": {  
2859 - "type": "git",  
2860 - "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",  
2861 - "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e"  
2862 - },  
2863 - "dist": {  
2864 - "type": "zip",  
2865 - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/8331b5efe816ae05461b7ca1e721c01b46bafb3e",  
2866 - "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e",  
2867 - "shasum": ""  
2868 - },  
2869 - "require": {  
2870 - "php": ">=5.5",  
2871 - "phpdocumentor/reflection-common": "^1.0@dev",  
2872 - "phpdocumentor/type-resolver": "^0.2.0",  
2873 - "webmozart/assert": "^1.0"  
2874 - },  
2875 - "require-dev": {  
2876 - "mockery/mockery": "^0.9.4",  
2877 - "phpunit/phpunit": "^4.4"  
2878 - },  
2879 - "type": "library",  
2880 - "autoload": {  
2881 - "psr-4": {  
2882 - "phpDocumentor\\Reflection\\": [  
2883 - "src/"  
2884 - ]  
2885 - }  
2886 - },  
2887 - "notification-url": "https://packagist.org/downloads/",  
2888 - "license": [  
2889 - "MIT"  
2890 - ],  
2891 - "authors": [  
2892 - {  
2893 - "name": "Mike van Riel",  
2894 - "email": "me@mikevanriel.com"  
2895 - }  
2896 - ],  
2897 - "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",  
2898 - "time": "2016-09-30 07:12:33"  
2899 - },  
2900 - {  
2901 - "name": "phpdocumentor/type-resolver",  
2902 - "version": "0.2.1",  
2903 - "source": {  
2904 - "type": "git",  
2905 - "url": "https://github.com/phpDocumentor/TypeResolver.git",  
2906 - "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb"  
2907 - },  
2908 - "dist": {  
2909 - "type": "zip",  
2910 - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb",  
2911 - "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb",  
2912 - "shasum": ""  
2913 - },  
2914 - "require": {  
2915 - "php": ">=5.5",  
2916 - "phpdocumentor/reflection-common": "^1.0"  
2917 - },  
2918 - "require-dev": {  
2919 - "mockery/mockery": "^0.9.4",  
2920 - "phpunit/phpunit": "^5.2||^4.8.24"  
2921 - },  
2922 - "type": "library",  
2923 - "extra": {  
2924 - "branch-alias": {  
2925 - "dev-master": "1.0.x-dev"  
2926 - }  
2927 - },  
2928 - "autoload": {  
2929 - "psr-4": {  
2930 - "phpDocumentor\\Reflection\\": [  
2931 - "src/"  
2932 - ]  
2933 - }  
2934 - },  
2935 - "notification-url": "https://packagist.org/downloads/",  
2936 - "license": [  
2937 - "MIT"  
2938 - ],  
2939 - "authors": [  
2940 - {  
2941 - "name": "Mike van Riel",  
2942 - "email": "me@mikevanriel.com"  
2943 - }  
2944 - ],  
2945 - "time": "2016-11-25 06:54:22"  
2946 - },  
2947 - {  
2948 - "name": "phpspec/php-diff",  
2949 - "version": "v1.1.0",  
2950 - "source": {  
2951 - "type": "git",  
2952 - "url": "https://github.com/phpspec/php-diff.git",  
2953 - "reference": "0464787bfa7cd13576c5a1e318709768798bec6a"  
2954 - },  
2955 - "dist": {  
2956 - "type": "zip",  
2957 - "url": "https://api.github.com/repos/phpspec/php-diff/zipball/0464787bfa7cd13576c5a1e318709768798bec6a",  
2958 - "reference": "0464787bfa7cd13576c5a1e318709768798bec6a",  
2959 - "shasum": ""  
2960 - },  
2961 - "type": "library",  
2962 - "extra": {  
2963 - "branch-alias": {  
2964 - "dev-master": "1.0.x-dev"  
2965 - }  
2966 - },  
2967 - "autoload": {  
2968 - "psr-0": {  
2969 - "Diff": "lib/"  
2970 - }  
2971 - },  
2972 - "notification-url": "https://packagist.org/downloads/",  
2973 - "license": [  
2974 - "BSD-3-Clause"  
2975 - ],  
2976 - "authors": [  
2977 - {  
2978 - "name": "Chris Boulton",  
2979 - "homepage": "http://github.com/chrisboulton"  
2980 - }  
2981 - ],  
2982 - "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",  
2983 - "time": "2016-04-07 12:29:16"  
2984 - },  
2985 - {  
2986 - "name": "phpspec/prophecy",  
2987 - "version": "v1.7.0",  
2988 - "source": {  
2989 - "type": "git",  
2990 - "url": "https://github.com/phpspec/prophecy.git",  
2991 - "reference": "93d39f1f7f9326d746203c7c056f300f7f126073"  
2992 - },  
2993 - "dist": {  
2994 - "type": "zip",  
2995 - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/93d39f1f7f9326d746203c7c056f300f7f126073",  
2996 - "reference": "93d39f1f7f9326d746203c7c056f300f7f126073",  
2997 - "shasum": ""  
2998 - },  
2999 - "require": {  
3000 - "doctrine/instantiator": "^1.0.2",  
3001 - "php": "^5.3|^7.0",  
3002 - "phpdocumentor/reflection-docblock": "^2.0|^3.0.2",  
3003 - "sebastian/comparator": "^1.1|^2.0",  
3004 - "sebastian/recursion-context": "^1.0|^2.0|^3.0"  
3005 - },  
3006 - "require-dev": {  
3007 - "phpspec/phpspec": "^2.5|^3.2",  
3008 - "phpunit/phpunit": "^4.8 || ^5.6.5"  
3009 - },  
3010 - "type": "library",  
3011 - "extra": {  
3012 - "branch-alias": {  
3013 - "dev-master": "1.6.x-dev"  
3014 - }  
3015 - },  
3016 - "autoload": {  
3017 - "psr-0": {  
3018 - "Prophecy\\": "src/"  
3019 - }  
3020 - },  
3021 - "notification-url": "https://packagist.org/downloads/",  
3022 - "license": [  
3023 - "MIT"  
3024 - ],  
3025 - "authors": [  
3026 - {  
3027 - "name": "Konstantin Kudryashov",  
3028 - "email": "ever.zet@gmail.com",  
3029 - "homepage": "http://everzet.com"  
3030 - },  
3031 - {  
3032 - "name": "Marcello Duarte",  
3033 - "email": "marcello.duarte@gmail.com"  
3034 - }  
3035 - ],  
3036 - "description": "Highly opinionated mocking framework for PHP 5.3+",  
3037 - "homepage": "https://github.com/phpspec/prophecy",  
3038 - "keywords": [  
3039 - "Double",  
3040 - "Dummy",  
3041 - "fake",  
3042 - "mock",  
3043 - "spy",  
3044 - "stub"  
3045 - ],  
3046 - "time": "2017-03-02 20:05:34"  
3047 - },  
3048 - {  
3049 - "name": "phpunit/php-code-coverage",  
3050 - "version": "4.0.8",  
3051 - "source": {  
3052 - "type": "git",  
3053 - "url": "https://github.com/sebastianbergmann/php-code-coverage.git",  
3054 - "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d"  
3055 - },  
3056 - "dist": {  
3057 - "type": "zip",  
3058 - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ef7b2f56815df854e66ceaee8ebe9393ae36a40d",  
3059 - "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d",  
3060 - "shasum": ""  
3061 - },  
3062 - "require": {  
3063 - "ext-dom": "*",  
3064 - "ext-xmlwriter": "*",  
3065 - "php": "^5.6 || ^7.0",  
3066 - "phpunit/php-file-iterator": "^1.3",  
3067 - "phpunit/php-text-template": "^1.2",  
3068 - "phpunit/php-token-stream": "^1.4.2 || ^2.0",  
3069 - "sebastian/code-unit-reverse-lookup": "^1.0",  
3070 - "sebastian/environment": "^1.3.2 || ^2.0",  
3071 - "sebastian/version": "^1.0 || ^2.0"  
3072 - },  
3073 - "require-dev": {  
3074 - "ext-xdebug": "^2.1.4",  
3075 - "phpunit/phpunit": "^5.7"  
3076 - },  
3077 - "suggest": {  
3078 - "ext-xdebug": "^2.5.1"  
3079 - },  
3080 - "type": "library",  
3081 - "extra": {  
3082 - "branch-alias": {  
3083 - "dev-master": "4.0.x-dev"  
3084 - }  
3085 - },  
3086 - "autoload": {  
3087 - "classmap": [  
3088 - "src/"  
3089 - ]  
3090 - },  
3091 - "notification-url": "https://packagist.org/downloads/",  
3092 - "license": [  
3093 - "BSD-3-Clause"  
3094 - ],  
3095 - "authors": [  
3096 - {  
3097 - "name": "Sebastian Bergmann",  
3098 - "email": "sb@sebastian-bergmann.de",  
3099 - "role": "lead"  
3100 - }  
3101 - ],  
3102 - "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",  
3103 - "homepage": "https://github.com/sebastianbergmann/php-code-coverage",  
3104 - "keywords": [  
3105 - "coverage",  
3106 - "testing",  
3107 - "xunit"  
3108 - ],  
3109 - "time": "2017-04-02 07:44:40"  
3110 - },  
3111 - {  
3112 - "name": "phpunit/php-file-iterator",  
3113 - "version": "1.4.2",  
3114 - "source": {  
3115 - "type": "git",  
3116 - "url": "https://github.com/sebastianbergmann/php-file-iterator.git",  
3117 - "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5"  
3118 - },  
3119 - "dist": {  
3120 - "type": "zip",  
3121 - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3cc8f69b3028d0f96a9078e6295d86e9bf019be5",  
3122 - "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5",  
3123 - "shasum": ""  
3124 - },  
3125 - "require": {  
3126 - "php": ">=5.3.3"  
3127 - },  
3128 - "type": "library",  
3129 - "extra": {  
3130 - "branch-alias": {  
3131 - "dev-master": "1.4.x-dev"  
3132 - }  
3133 - },  
3134 - "autoload": {  
3135 - "classmap": [  
3136 - "src/"  
3137 - ]  
3138 - },  
3139 - "notification-url": "https://packagist.org/downloads/",  
3140 - "license": [  
3141 - "BSD-3-Clause"  
3142 - ],  
3143 - "authors": [  
3144 - {  
3145 - "name": "Sebastian Bergmann",  
3146 - "email": "sb@sebastian-bergmann.de",  
3147 - "role": "lead"  
3148 - }  
3149 - ],  
3150 - "description": "FilterIterator implementation that filters files based on a list of suffixes.",  
3151 - "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",  
3152 - "keywords": [  
3153 - "filesystem",  
3154 - "iterator"  
3155 - ],  
3156 - "time": "2016-10-03 07:40:28"  
3157 - },  
3158 - {  
3159 - "name": "phpunit/php-text-template",  
3160 - "version": "1.2.1",  
3161 - "source": {  
3162 - "type": "git",  
3163 - "url": "https://github.com/sebastianbergmann/php-text-template.git",  
3164 - "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"  
3165 - },  
3166 - "dist": {  
3167 - "type": "zip",  
3168 - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",  
3169 - "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",  
3170 - "shasum": ""  
3171 - },  
3172 - "require": {  
3173 - "php": ">=5.3.3"  
3174 - },  
3175 - "type": "library",  
3176 - "autoload": {  
3177 - "classmap": [  
3178 - "src/"  
3179 - ]  
3180 - },  
3181 - "notification-url": "https://packagist.org/downloads/",  
3182 - "license": [  
3183 - "BSD-3-Clause"  
3184 - ],  
3185 - "authors": [  
3186 - {  
3187 - "name": "Sebastian Bergmann",  
3188 - "email": "sebastian@phpunit.de",  
3189 - "role": "lead"  
3190 - }  
3191 - ],  
3192 - "description": "Simple template engine.",  
3193 - "homepage": "https://github.com/sebastianbergmann/php-text-template/",  
3194 - "keywords": [  
3195 - "template"  
3196 - ],  
3197 - "time": "2015-06-21 13:50:34"  
3198 - },  
3199 - {  
3200 - "name": "phpunit/php-timer",  
3201 - "version": "1.0.9",  
3202 - "source": {  
3203 - "type": "git",  
3204 - "url": "https://github.com/sebastianbergmann/php-timer.git",  
3205 - "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"  
3206 - },  
3207 - "dist": {  
3208 - "type": "zip",  
3209 - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",  
3210 - "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",  
3211 - "shasum": ""  
3212 - },  
3213 - "require": {  
3214 - "php": "^5.3.3 || ^7.0"  
3215 - },  
3216 - "require-dev": {  
3217 - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"  
3218 - },  
3219 - "type": "library",  
3220 - "extra": {  
3221 - "branch-alias": {  
3222 - "dev-master": "1.0-dev"  
3223 - }  
3224 - },  
3225 - "autoload": {  
3226 - "classmap": [  
3227 - "src/"  
3228 - ]  
3229 - },  
3230 - "notification-url": "https://packagist.org/downloads/",  
3231 - "license": [  
3232 - "BSD-3-Clause"  
3233 - ],  
3234 - "authors": [  
3235 - {  
3236 - "name": "Sebastian Bergmann",  
3237 - "email": "sb@sebastian-bergmann.de",  
3238 - "role": "lead"  
3239 - }  
3240 - ],  
3241 - "description": "Utility class for timing",  
3242 - "homepage": "https://github.com/sebastianbergmann/php-timer/",  
3243 - "keywords": [  
3244 - "timer"  
3245 - ],  
3246 - "time": "2017-02-26 11:10:40"  
3247 - },  
3248 - {  
3249 - "name": "phpunit/php-token-stream",  
3250 - "version": "1.4.11",  
3251 - "source": {  
3252 - "type": "git",  
3253 - "url": "https://github.com/sebastianbergmann/php-token-stream.git",  
3254 - "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7"  
3255 - },  
3256 - "dist": {  
3257 - "type": "zip",  
3258 - "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/e03f8f67534427a787e21a385a67ec3ca6978ea7",  
3259 - "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7",  
3260 - "shasum": ""  
3261 - },  
3262 - "require": {  
3263 - "ext-tokenizer": "*",  
3264 - "php": ">=5.3.3"  
3265 - },  
3266 - "require-dev": {  
3267 - "phpunit/phpunit": "~4.2"  
3268 - },  
3269 - "type": "library",  
3270 - "extra": {  
3271 - "branch-alias": {  
3272 - "dev-master": "1.4-dev"  
3273 - }  
3274 - },  
3275 - "autoload": {  
3276 - "classmap": [  
3277 - "src/"  
3278 - ]  
3279 - },  
3280 - "notification-url": "https://packagist.org/downloads/",  
3281 - "license": [  
3282 - "BSD-3-Clause"  
3283 - ],  
3284 - "authors": [  
3285 - {  
3286 - "name": "Sebastian Bergmann",  
3287 - "email": "sebastian@phpunit.de"  
3288 - }  
3289 - ],  
3290 - "description": "Wrapper around PHP's tokenizer extension.",  
3291 - "homepage": "https://github.com/sebastianbergmann/php-token-stream/",  
3292 - "keywords": [  
3293 - "tokenizer"  
3294 - ],  
3295 - "time": "2017-02-27 10:12:30"  
3296 - },  
3297 - {  
3298 - "name": "phpunit/phpunit",  
3299 - "version": "5.7.19",  
3300 - "source": {  
3301 - "type": "git",  
3302 - "url": "https://github.com/sebastianbergmann/phpunit.git",  
3303 - "reference": "69c4f49ff376af2692bad9cebd883d17ebaa98a1"  
3304 - },  
3305 - "dist": {  
3306 - "type": "zip",  
3307 - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/69c4f49ff376af2692bad9cebd883d17ebaa98a1",  
3308 - "reference": "69c4f49ff376af2692bad9cebd883d17ebaa98a1",  
3309 - "shasum": ""  
3310 - },  
3311 - "require": {  
3312 - "ext-dom": "*",  
3313 - "ext-json": "*",  
3314 - "ext-libxml": "*",  
3315 - "ext-mbstring": "*",  
3316 - "ext-xml": "*",  
3317 - "myclabs/deep-copy": "~1.3",  
3318 - "php": "^5.6 || ^7.0",  
3319 - "phpspec/prophecy": "^1.6.2",  
3320 - "phpunit/php-code-coverage": "^4.0.4",  
3321 - "phpunit/php-file-iterator": "~1.4",  
3322 - "phpunit/php-text-template": "~1.2",  
3323 - "phpunit/php-timer": "^1.0.6",  
3324 - "phpunit/phpunit-mock-objects": "^3.2",  
3325 - "sebastian/comparator": "^1.2.4",  
3326 - "sebastian/diff": "~1.2",  
3327 - "sebastian/environment": "^1.3.4 || ^2.0",  
3328 - "sebastian/exporter": "~2.0",  
3329 - "sebastian/global-state": "^1.1",  
3330 - "sebastian/object-enumerator": "~2.0",  
3331 - "sebastian/resource-operations": "~1.0",  
3332 - "sebastian/version": "~1.0.3|~2.0",  
3333 - "symfony/yaml": "~2.1|~3.0"  
3334 - },  
3335 - "conflict": {  
3336 - "phpdocumentor/reflection-docblock": "3.0.2"  
3337 - },  
3338 - "require-dev": {  
3339 - "ext-pdo": "*"  
3340 - },  
3341 - "suggest": {  
3342 - "ext-xdebug": "*",  
3343 - "phpunit/php-invoker": "~1.1"  
3344 - },  
3345 - "bin": [  
3346 - "phpunit"  
3347 - ],  
3348 - "type": "library",  
3349 - "extra": {  
3350 - "branch-alias": {  
3351 - "dev-master": "5.7.x-dev"  
3352 - }  
3353 - },  
3354 - "autoload": {  
3355 - "classmap": [  
3356 - "src/"  
3357 - ]  
3358 - },  
3359 - "notification-url": "https://packagist.org/downloads/",  
3360 - "license": [  
3361 - "BSD-3-Clause"  
3362 - ],  
3363 - "authors": [  
3364 - {  
3365 - "name": "Sebastian Bergmann",  
3366 - "email": "sebastian@phpunit.de",  
3367 - "role": "lead"  
3368 - }  
3369 - ],  
3370 - "description": "The PHP Unit Testing framework.",  
3371 - "homepage": "https://phpunit.de/",  
3372 - "keywords": [  
3373 - "phpunit",  
3374 - "testing",  
3375 - "xunit"  
3376 - ],  
3377 - "time": "2017-04-03 02:22:27"  
3378 - },  
3379 - {  
3380 - "name": "phpunit/phpunit-mock-objects",  
3381 - "version": "3.4.3",  
3382 - "source": {  
3383 - "type": "git",  
3384 - "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",  
3385 - "reference": "3ab72b65b39b491e0c011e2e09bb2206c2aa8e24"  
3386 - },  
3387 - "dist": {  
3388 - "type": "zip",  
3389 - "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/3ab72b65b39b491e0c011e2e09bb2206c2aa8e24",  
3390 - "reference": "3ab72b65b39b491e0c011e2e09bb2206c2aa8e24",  
3391 - "shasum": ""  
3392 - },  
3393 - "require": {  
3394 - "doctrine/instantiator": "^1.0.2",  
3395 - "php": "^5.6 || ^7.0",  
3396 - "phpunit/php-text-template": "^1.2",  
3397 - "sebastian/exporter": "^1.2 || ^2.0"  
3398 - },  
3399 - "conflict": {  
3400 - "phpunit/phpunit": "<5.4.0"  
3401 - },  
3402 - "require-dev": {  
3403 - "phpunit/phpunit": "^5.4"  
3404 - },  
3405 - "suggest": {  
3406 - "ext-soap": "*"  
3407 - },  
3408 - "type": "library",  
3409 - "extra": {  
3410 - "branch-alias": {  
3411 - "dev-master": "3.2.x-dev"  
3412 - }  
3413 - },  
3414 - "autoload": {  
3415 - "classmap": [  
3416 - "src/"  
3417 - ]  
3418 - },  
3419 - "notification-url": "https://packagist.org/downloads/",  
3420 - "license": [  
3421 - "BSD-3-Clause"  
3422 - ],  
3423 - "authors": [  
3424 - {  
3425 - "name": "Sebastian Bergmann",  
3426 - "email": "sb@sebastian-bergmann.de",  
3427 - "role": "lead"  
3428 - }  
3429 - ],  
3430 - "description": "Mock Object library for PHPUnit",  
3431 - "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",  
3432 - "keywords": [  
3433 - "mock",  
3434 - "xunit"  
3435 - ],  
3436 - "time": "2016-12-08 20:27:08"  
3437 - },  
3438 - {  
3439 - "name": "sebastian/code-unit-reverse-lookup",  
3440 - "version": "1.0.1",  
3441 - "source": {  
3442 - "type": "git",  
3443 - "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",  
3444 - "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"  
3445 - },  
3446 - "dist": {  
3447 - "type": "zip",  
3448 - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",  
3449 - "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",  
3450 - "shasum": ""  
3451 - },  
3452 - "require": {  
3453 - "php": "^5.6 || ^7.0"  
3454 - },  
3455 - "require-dev": {  
3456 - "phpunit/phpunit": "^5.7 || ^6.0"  
3457 - },  
3458 - "type": "library",  
3459 - "extra": {  
3460 - "branch-alias": {  
3461 - "dev-master": "1.0.x-dev"  
3462 - }  
3463 - },  
3464 - "autoload": {  
3465 - "classmap": [  
3466 - "src/"  
3467 - ]  
3468 - },  
3469 - "notification-url": "https://packagist.org/downloads/",  
3470 - "license": [  
3471 - "BSD-3-Clause"  
3472 - ],  
3473 - "authors": [  
3474 - {  
3475 - "name": "Sebastian Bergmann",  
3476 - "email": "sebastian@phpunit.de"  
3477 - }  
3478 - ],  
3479 - "description": "Looks up which function or method a line of code belongs to",  
3480 - "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",  
3481 - "time": "2017-03-04 06:30:41"  
3482 - },  
3483 - {  
3484 - "name": "sebastian/comparator",  
3485 - "version": "1.2.4",  
3486 - "source": {  
3487 - "type": "git",  
3488 - "url": "https://github.com/sebastianbergmann/comparator.git",  
3489 - "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"  
3490 - },  
3491 - "dist": {  
3492 - "type": "zip",  
3493 - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",  
3494 - "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",  
3495 - "shasum": ""  
3496 - },  
3497 - "require": {  
3498 - "php": ">=5.3.3",  
3499 - "sebastian/diff": "~1.2",  
3500 - "sebastian/exporter": "~1.2 || ~2.0"  
3501 - },  
3502 - "require-dev": {  
3503 - "phpunit/phpunit": "~4.4"  
3504 - },  
3505 - "type": "library",  
3506 - "extra": {  
3507 - "branch-alias": {  
3508 - "dev-master": "1.2.x-dev"  
3509 - }  
3510 - },  
3511 - "autoload": {  
3512 - "classmap": [  
3513 - "src/"  
3514 - ]  
3515 - },  
3516 - "notification-url": "https://packagist.org/downloads/",  
3517 - "license": [  
3518 - "BSD-3-Clause"  
3519 - ],  
3520 - "authors": [  
3521 - {  
3522 - "name": "Jeff Welch",  
3523 - "email": "whatthejeff@gmail.com"  
3524 - },  
3525 - {  
3526 - "name": "Volker Dusch",  
3527 - "email": "github@wallbash.com"  
3528 - },  
3529 - {  
3530 - "name": "Bernhard Schussek",  
3531 - "email": "bschussek@2bepublished.at"  
3532 - },  
3533 - {  
3534 - "name": "Sebastian Bergmann",  
3535 - "email": "sebastian@phpunit.de"  
3536 - }  
3537 - ],  
3538 - "description": "Provides the functionality to compare PHP values for equality",  
3539 - "homepage": "http://www.github.com/sebastianbergmann/comparator",  
3540 - "keywords": [  
3541 - "comparator",  
3542 - "compare",  
3543 - "equality"  
3544 - ],  
3545 - "time": "2017-01-29 09:50:25"  
3546 - },  
3547 - {  
3548 - "name": "sebastian/diff",  
3549 - "version": "1.4.1",  
3550 - "source": {  
3551 - "type": "git",  
3552 - "url": "https://github.com/sebastianbergmann/diff.git",  
3553 - "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"  
3554 - },  
3555 - "dist": {  
3556 - "type": "zip",  
3557 - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e",  
3558 - "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",  
3559 - "shasum": ""  
3560 - },  
3561 - "require": {  
3562 - "php": ">=5.3.3"  
3563 - },  
3564 - "require-dev": {  
3565 - "phpunit/phpunit": "~4.8"  
3566 - },  
3567 - "type": "library",  
3568 - "extra": {  
3569 - "branch-alias": {  
3570 - "dev-master": "1.4-dev"  
3571 - }  
3572 - },  
3573 - "autoload": {  
3574 - "classmap": [  
3575 - "src/"  
3576 - ]  
3577 - },  
3578 - "notification-url": "https://packagist.org/downloads/",  
3579 - "license": [  
3580 - "BSD-3-Clause"  
3581 - ],  
3582 - "authors": [  
3583 - {  
3584 - "name": "Kore Nordmann",  
3585 - "email": "mail@kore-nordmann.de"  
3586 - },  
3587 - {  
3588 - "name": "Sebastian Bergmann",  
3589 - "email": "sebastian@phpunit.de"  
3590 - }  
3591 - ],  
3592 - "description": "Diff implementation",  
3593 - "homepage": "https://github.com/sebastianbergmann/diff",  
3594 - "keywords": [  
3595 - "diff"  
3596 - ],  
3597 - "time": "2015-12-08 07:14:41"  
3598 - },  
3599 - {  
3600 - "name": "sebastian/environment",  
3601 - "version": "2.0.0",  
3602 - "source": {  
3603 - "type": "git",  
3604 - "url": "https://github.com/sebastianbergmann/environment.git",  
3605 - "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac"  
3606 - },  
3607 - "dist": {  
3608 - "type": "zip",  
3609 - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac",  
3610 - "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac",  
3611 - "shasum": ""  
3612 - },  
3613 - "require": {  
3614 - "php": "^5.6 || ^7.0"  
3615 - },  
3616 - "require-dev": {  
3617 - "phpunit/phpunit": "^5.0"  
3618 - },  
3619 - "type": "library",  
3620 - "extra": {  
3621 - "branch-alias": {  
3622 - "dev-master": "2.0.x-dev"  
3623 - }  
3624 - },  
3625 - "autoload": {  
3626 - "classmap": [  
3627 - "src/"  
3628 - ]  
3629 - },  
3630 - "notification-url": "https://packagist.org/downloads/",  
3631 - "license": [  
3632 - "BSD-3-Clause"  
3633 - ],  
3634 - "authors": [  
3635 - {  
3636 - "name": "Sebastian Bergmann",  
3637 - "email": "sebastian@phpunit.de"  
3638 - }  
3639 - ],  
3640 - "description": "Provides functionality to handle HHVM/PHP environments",  
3641 - "homepage": "http://www.github.com/sebastianbergmann/environment",  
3642 - "keywords": [  
3643 - "Xdebug",  
3644 - "environment",  
3645 - "hhvm"  
3646 - ],  
3647 - "time": "2016-11-26 07:53:53"  
3648 - },  
3649 - {  
3650 - "name": "sebastian/exporter",  
3651 - "version": "2.0.0",  
3652 - "source": {  
3653 - "type": "git",  
3654 - "url": "https://github.com/sebastianbergmann/exporter.git",  
3655 - "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4"  
3656 - },  
3657 - "dist": {  
3658 - "type": "zip",  
3659 - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",  
3660 - "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",  
3661 - "shasum": ""  
3662 - },  
3663 - "require": {  
3664 - "php": ">=5.3.3",  
3665 - "sebastian/recursion-context": "~2.0"  
3666 - },  
3667 - "require-dev": {  
3668 - "ext-mbstring": "*",  
3669 - "phpunit/phpunit": "~4.4"  
3670 - },  
3671 - "type": "library",  
3672 - "extra": {  
3673 - "branch-alias": {  
3674 - "dev-master": "2.0.x-dev"  
3675 - }  
3676 - },  
3677 - "autoload": {  
3678 - "classmap": [  
3679 - "src/"  
3680 - ]  
3681 - },  
3682 - "notification-url": "https://packagist.org/downloads/",  
3683 - "license": [  
3684 - "BSD-3-Clause"  
3685 - ],  
3686 - "authors": [  
3687 - {  
3688 - "name": "Jeff Welch",  
3689 - "email": "whatthejeff@gmail.com"  
3690 - },  
3691 - {  
3692 - "name": "Volker Dusch",  
3693 - "email": "github@wallbash.com"  
3694 - },  
3695 - {  
3696 - "name": "Bernhard Schussek",  
3697 - "email": "bschussek@2bepublished.at"  
3698 - },  
3699 - {  
3700 - "name": "Sebastian Bergmann",  
3701 - "email": "sebastian@phpunit.de"  
3702 - },  
3703 - {  
3704 - "name": "Adam Harvey",  
3705 - "email": "aharvey@php.net"  
3706 - }  
3707 - ],  
3708 - "description": "Provides the functionality to export PHP variables for visualization",  
3709 - "homepage": "http://www.github.com/sebastianbergmann/exporter",  
3710 - "keywords": [  
3711 - "export",  
3712 - "exporter"  
3713 - ],  
3714 - "time": "2016-11-19 08:54:04"  
3715 - },  
3716 - {  
3717 - "name": "sebastian/global-state",  
3718 - "version": "1.1.1",  
3719 - "source": {  
3720 - "type": "git",  
3721 - "url": "https://github.com/sebastianbergmann/global-state.git",  
3722 - "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"  
3723 - },  
3724 - "dist": {  
3725 - "type": "zip",  
3726 - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",  
3727 - "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",  
3728 - "shasum": ""  
3729 - },  
3730 - "require": {  
3731 - "php": ">=5.3.3"  
3732 - },  
3733 - "require-dev": {  
3734 - "phpunit/phpunit": "~4.2"  
3735 - },  
3736 - "suggest": {  
3737 - "ext-uopz": "*"  
3738 - },  
3739 - "type": "library",  
3740 - "extra": {  
3741 - "branch-alias": {  
3742 - "dev-master": "1.0-dev"  
3743 - }  
3744 - },  
3745 - "autoload": {  
3746 - "classmap": [  
3747 - "src/"  
3748 - ]  
3749 - },  
3750 - "notification-url": "https://packagist.org/downloads/",  
3751 - "license": [  
3752 - "BSD-3-Clause"  
3753 - ],  
3754 - "authors": [  
3755 - {  
3756 - "name": "Sebastian Bergmann",  
3757 - "email": "sebastian@phpunit.de"  
3758 - }  
3759 - ],  
3760 - "description": "Snapshotting of global state",  
3761 - "homepage": "http://www.github.com/sebastianbergmann/global-state",  
3762 - "keywords": [  
3763 - "global state"  
3764 - ],  
3765 - "time": "2015-10-12 03:26:01"  
3766 - },  
3767 - {  
3768 - "name": "sebastian/object-enumerator",  
3769 - "version": "2.0.1",  
3770 - "source": {  
3771 - "type": "git",  
3772 - "url": "https://github.com/sebastianbergmann/object-enumerator.git",  
3773 - "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7"  
3774 - },  
3775 - "dist": {  
3776 - "type": "zip",  
3777 - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1311872ac850040a79c3c058bea3e22d0f09cbb7",  
3778 - "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7",  
3779 - "shasum": ""  
3780 - },  
3781 - "require": {  
3782 - "php": ">=5.6",  
3783 - "sebastian/recursion-context": "~2.0"  
3784 - },  
3785 - "require-dev": {  
3786 - "phpunit/phpunit": "~5"  
3787 - },  
3788 - "type": "library",  
3789 - "extra": {  
3790 - "branch-alias": {  
3791 - "dev-master": "2.0.x-dev"  
3792 - }  
3793 - },  
3794 - "autoload": {  
3795 - "classmap": [  
3796 - "src/"  
3797 - ]  
3798 - },  
3799 - "notification-url": "https://packagist.org/downloads/",  
3800 - "license": [  
3801 - "BSD-3-Clause"  
3802 - ],  
3803 - "authors": [  
3804 - {  
3805 - "name": "Sebastian Bergmann",  
3806 - "email": "sebastian@phpunit.de"  
3807 - }  
3808 - ],  
3809 - "description": "Traverses array structures and object graphs to enumerate all referenced objects",  
3810 - "homepage": "https://github.com/sebastianbergmann/object-enumerator/",  
3811 - "time": "2017-02-18 15:18:39"  
3812 - },  
3813 - {  
3814 - "name": "sebastian/recursion-context",  
3815 - "version": "2.0.0",  
3816 - "source": {  
3817 - "type": "git",  
3818 - "url": "https://github.com/sebastianbergmann/recursion-context.git",  
3819 - "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a"  
3820 - },  
3821 - "dist": {  
3822 - "type": "zip",  
3823 - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a",  
3824 - "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a",  
3825 - "shasum": ""  
3826 - },  
3827 - "require": {  
3828 - "php": ">=5.3.3"  
3829 - },  
3830 - "require-dev": {  
3831 - "phpunit/phpunit": "~4.4"  
3832 - },  
3833 - "type": "library",  
3834 - "extra": {  
3835 - "branch-alias": {  
3836 - "dev-master": "2.0.x-dev"  
3837 - }  
3838 - },  
3839 - "autoload": {  
3840 - "classmap": [  
3841 - "src/"  
3842 - ]  
3843 - },  
3844 - "notification-url": "https://packagist.org/downloads/",  
3845 - "license": [  
3846 - "BSD-3-Clause"  
3847 - ],  
3848 - "authors": [  
3849 - {  
3850 - "name": "Jeff Welch",  
3851 - "email": "whatthejeff@gmail.com"  
3852 - },  
3853 - {  
3854 - "name": "Sebastian Bergmann",  
3855 - "email": "sebastian@phpunit.de"  
3856 - },  
3857 - {  
3858 - "name": "Adam Harvey",  
3859 - "email": "aharvey@php.net"  
3860 - }  
3861 - ],  
3862 - "description": "Provides functionality to recursively process PHP variables",  
3863 - "homepage": "http://www.github.com/sebastianbergmann/recursion-context",  
3864 - "time": "2016-11-19 07:33:16"  
3865 - },  
3866 - {  
3867 - "name": "sebastian/resource-operations",  
3868 - "version": "1.0.0",  
3869 - "source": {  
3870 - "type": "git",  
3871 - "url": "https://github.com/sebastianbergmann/resource-operations.git",  
3872 - "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"  
3873 - },  
3874 - "dist": {  
3875 - "type": "zip",  
3876 - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",  
3877 - "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",  
3878 - "shasum": ""  
3879 - },  
3880 - "require": {  
3881 - "php": ">=5.6.0"  
3882 - },  
3883 - "type": "library",  
3884 - "extra": {  
3885 - "branch-alias": {  
3886 - "dev-master": "1.0.x-dev"  
3887 - }  
3888 - },  
3889 - "autoload": {  
3890 - "classmap": [  
3891 - "src/"  
3892 - ]  
3893 - },  
3894 - "notification-url": "https://packagist.org/downloads/",  
3895 - "license": [  
3896 - "BSD-3-Clause"  
3897 - ],  
3898 - "authors": [  
3899 - {  
3900 - "name": "Sebastian Bergmann",  
3901 - "email": "sebastian@phpunit.de"  
3902 - }  
3903 - ],  
3904 - "description": "Provides a list of PHP built-in functions that operate on resources",  
3905 - "homepage": "https://www.github.com/sebastianbergmann/resource-operations",  
3906 - "time": "2015-07-28 20:34:47"  
3907 - },  
3908 - {  
3909 - "name": "sebastian/version",  
3910 - "version": "2.0.1",  
3911 - "source": {  
3912 - "type": "git",  
3913 - "url": "https://github.com/sebastianbergmann/version.git",  
3914 - "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"  
3915 - },  
3916 - "dist": {  
3917 - "type": "zip",  
3918 - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",  
3919 - "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",  
3920 - "shasum": ""  
3921 - },  
3922 - "require": {  
3923 - "php": ">=5.6"  
3924 - },  
3925 - "type": "library",  
3926 - "extra": {  
3927 - "branch-alias": {  
3928 - "dev-master": "2.0.x-dev"  
3929 - }  
3930 - },  
3931 - "autoload": {  
3932 - "classmap": [  
3933 - "src/"  
3934 - ]  
3935 - },  
3936 - "notification-url": "https://packagist.org/downloads/",  
3937 - "license": [  
3938 - "BSD-3-Clause"  
3939 - ],  
3940 - "authors": [  
3941 - {  
3942 - "name": "Sebastian Bergmann",  
3943 - "email": "sebastian@phpunit.de",  
3944 - "role": "lead"  
3945 - }  
3946 - ],  
3947 - "description": "Library that helps with managing the version number of Git-hosted PHP projects",  
3948 - "homepage": "https://github.com/sebastianbergmann/version",  
3949 - "time": "2016-10-03 07:35:21"  
3950 - },  
3951 - {  
3952 - "name": "stecman/symfony-console-completion",  
3953 - "version": "0.7.0",  
3954 - "source": {  
3955 - "type": "git",  
3956 - "url": "https://github.com/stecman/symfony-console-completion.git",  
3957 - "reference": "5461d43e53092b3d3b9dbd9d999f2054730f4bbb"  
3958 - },  
3959 - "dist": {  
3960 - "type": "zip",  
3961 - "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/5461d43e53092b3d3b9dbd9d999f2054730f4bbb",  
3962 - "reference": "5461d43e53092b3d3b9dbd9d999f2054730f4bbb",  
3963 - "shasum": ""  
3964 - },  
3965 - "require": {  
3966 - "php": ">=5.3.2",  
3967 - "symfony/console": "~2.3 || ~3.0"  
3968 - },  
3969 - "require-dev": {  
3970 - "phpunit/phpunit": "~4.4"  
3971 - },  
3972 - "type": "library",  
3973 - "extra": {  
3974 - "branch-alias": {  
3975 - "dev-master": "0.6.x-dev"  
3976 - }  
3977 - },  
3978 - "autoload": {  
3979 - "psr-4": {  
3980 - "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"  
3981 - }  
3982 - },  
3983 - "notification-url": "https://packagist.org/downloads/",  
3984 - "license": [  
3985 - "MIT"  
3986 - ],  
3987 - "authors": [  
3988 - {  
3989 - "name": "Stephen Holdaway",  
3990 - "email": "stephen@stecman.co.nz"  
3991 - }  
3992 - ],  
3993 - "description": "Automatic BASH completion for Symfony Console Component based applications.",  
3994 - "time": "2016-02-24 05:08:54"  
3995 - },  
3996 - {  
3997 - "name": "symfony/browser-kit",  
3998 - "version": "v3.2.7",  
3999 - "source": {  
4000 - "type": "git",  
4001 - "url": "https://github.com/symfony/browser-kit.git",  
4002 - "reference": "2fe0caa60c1a1dfeefd0425741182687a9b382b8"  
4003 - },  
4004 - "dist": {  
4005 - "type": "zip",  
4006 - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/2fe0caa60c1a1dfeefd0425741182687a9b382b8",  
4007 - "reference": "2fe0caa60c1a1dfeefd0425741182687a9b382b8",  
4008 - "shasum": ""  
4009 - },  
4010 - "require": {  
4011 - "php": ">=5.5.9",  
4012 - "symfony/dom-crawler": "~2.8|~3.0"  
4013 - },  
4014 - "require-dev": {  
4015 - "symfony/css-selector": "~2.8|~3.0",  
4016 - "symfony/process": "~2.8|~3.0"  
4017 - },  
4018 - "suggest": {  
4019 - "symfony/process": ""  
4020 - },  
4021 - "type": "library",  
4022 - "extra": {  
4023 - "branch-alias": {  
4024 - "dev-master": "3.2-dev"  
4025 - }  
4026 - },  
4027 - "autoload": {  
4028 - "psr-4": {  
4029 - "Symfony\\Component\\BrowserKit\\": ""  
4030 - },  
4031 - "exclude-from-classmap": [  
4032 - "/Tests/"  
4033 - ]  
4034 - },  
4035 - "notification-url": "https://packagist.org/downloads/",  
4036 - "license": [  
4037 - "MIT"  
4038 - ],  
4039 - "authors": [  
4040 - {  
4041 - "name": "Fabien Potencier",  
4042 - "email": "fabien@symfony.com"  
4043 - },  
4044 - {  
4045 - "name": "Symfony Community",  
4046 - "homepage": "https://symfony.com/contributors"  
4047 - }  
4048 - ],  
4049 - "description": "Symfony BrowserKit Component",  
4050 - "homepage": "https://symfony.com",  
4051 - "time": "2017-02-21 09:12:04"  
4052 - },  
4053 - {  
4054 - "name": "symfony/console",  
4055 - "version": "v3.2.7",  
4056 - "source": {  
4057 - "type": "git",  
4058 - "url": "https://github.com/symfony/console.git",  
4059 - "reference": "c30243cc51f726812be3551316b109a2f5deaf8d"  
4060 - },  
4061 - "dist": {  
4062 - "type": "zip",  
4063 - "url": "https://api.github.com/repos/symfony/console/zipball/c30243cc51f726812be3551316b109a2f5deaf8d",  
4064 - "reference": "c30243cc51f726812be3551316b109a2f5deaf8d",  
4065 - "shasum": ""  
4066 - },  
4067 - "require": {  
4068 - "php": ">=5.5.9",  
4069 - "symfony/debug": "~2.8|~3.0",  
4070 - "symfony/polyfill-mbstring": "~1.0"  
4071 - },  
4072 - "require-dev": {  
4073 - "psr/log": "~1.0",  
4074 - "symfony/event-dispatcher": "~2.8|~3.0",  
4075 - "symfony/filesystem": "~2.8|~3.0",  
4076 - "symfony/process": "~2.8|~3.0"  
4077 - },  
4078 - "suggest": {  
4079 - "psr/log": "For using the console logger",  
4080 - "symfony/event-dispatcher": "",  
4081 - "symfony/filesystem": "",  
4082 - "symfony/process": ""  
4083 - },  
4084 - "type": "library",  
4085 - "extra": {  
4086 - "branch-alias": {  
4087 - "dev-master": "3.2-dev"  
4088 - }  
4089 - },  
4090 - "autoload": {  
4091 - "psr-4": {  
4092 - "Symfony\\Component\\Console\\": ""  
4093 - },  
4094 - "exclude-from-classmap": [  
4095 - "/Tests/"  
4096 - ]  
4097 - },  
4098 - "notification-url": "https://packagist.org/downloads/",  
4099 - "license": [  
4100 - "MIT"  
4101 - ],  
4102 - "authors": [  
4103 - {  
4104 - "name": "Fabien Potencier",  
4105 - "email": "fabien@symfony.com"  
4106 - },  
4107 - {  
4108 - "name": "Symfony Community",  
4109 - "homepage": "https://symfony.com/contributors"  
4110 - }  
4111 - ],  
4112 - "description": "Symfony Console Component",  
4113 - "homepage": "https://symfony.com",  
4114 - "time": "2017-04-04 14:33:42"  
4115 - },  
4116 - {  
4117 - "name": "symfony/css-selector",  
4118 - "version": "v3.2.7",  
4119 - "source": {  
4120 - "type": "git",  
4121 - "url": "https://github.com/symfony/css-selector.git",  
4122 - "reference": "a48f13dc83c168f1253a5d2a5a4fb46c36244c4c"  
4123 - },  
4124 - "dist": {  
4125 - "type": "zip",  
4126 - "url": "https://api.github.com/repos/symfony/css-selector/zipball/a48f13dc83c168f1253a5d2a5a4fb46c36244c4c",  
4127 - "reference": "a48f13dc83c168f1253a5d2a5a4fb46c36244c4c",  
4128 - "shasum": ""  
4129 - },  
4130 - "require": {  
4131 - "php": ">=5.5.9"  
4132 - },  
4133 - "type": "library",  
4134 - "extra": {  
4135 - "branch-alias": {  
4136 - "dev-master": "3.2-dev"  
4137 - }  
4138 - },  
4139 - "autoload": {  
4140 - "psr-4": {  
4141 - "Symfony\\Component\\CssSelector\\": ""  
4142 - },  
4143 - "exclude-from-classmap": [  
4144 - "/Tests/"  
4145 - ]  
4146 - },  
4147 - "notification-url": "https://packagist.org/downloads/",  
4148 - "license": [  
4149 - "MIT"  
4150 - ],  
4151 - "authors": [  
4152 - {  
4153 - "name": "Jean-François Simon",  
4154 - "email": "jeanfrancois.simon@sensiolabs.com"  
4155 - },  
4156 - {  
4157 - "name": "Fabien Potencier",  
4158 - "email": "fabien@symfony.com"  
4159 - },  
4160 - {  
4161 - "name": "Symfony Community",  
4162 - "homepage": "https://symfony.com/contributors"  
4163 - }  
4164 - ],  
4165 - "description": "Symfony CssSelector Component",  
4166 - "homepage": "https://symfony.com",  
4167 - "time": "2017-02-21 09:12:04"  
4168 - },  
4169 - {  
4170 - "name": "symfony/debug",  
4171 - "version": "v3.2.7",  
4172 - "source": {  
4173 - "type": "git",  
4174 - "url": "https://github.com/symfony/debug.git",  
4175 - "reference": "56f613406446a4a0a031475cfd0a01751de22659"  
4176 - },  
4177 - "dist": {  
4178 - "type": "zip",  
4179 - "url": "https://api.github.com/repos/symfony/debug/zipball/56f613406446a4a0a031475cfd0a01751de22659",  
4180 - "reference": "56f613406446a4a0a031475cfd0a01751de22659",  
4181 - "shasum": ""  
4182 - },  
4183 - "require": {  
4184 - "php": ">=5.5.9",  
4185 - "psr/log": "~1.0"  
4186 - },  
4187 - "conflict": {  
4188 - "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"  
4189 - },  
4190 - "require-dev": {  
4191 - "symfony/class-loader": "~2.8|~3.0",  
4192 - "symfony/http-kernel": "~2.8|~3.0"  
4193 - },  
4194 - "type": "library",  
4195 - "extra": {  
4196 - "branch-alias": {  
4197 - "dev-master": "3.2-dev"  
4198 - }  
4199 - },  
4200 - "autoload": {  
4201 - "psr-4": {  
4202 - "Symfony\\Component\\Debug\\": ""  
4203 - },  
4204 - "exclude-from-classmap": [  
4205 - "/Tests/"  
4206 - ]  
4207 - },  
4208 - "notification-url": "https://packagist.org/downloads/",  
4209 - "license": [  
4210 - "MIT"  
4211 - ],  
4212 - "authors": [  
4213 - {  
4214 - "name": "Fabien Potencier",  
4215 - "email": "fabien@symfony.com"  
4216 - },  
4217 - {  
4218 - "name": "Symfony Community",  
4219 - "homepage": "https://symfony.com/contributors"  
4220 - }  
4221 - ],  
4222 - "description": "Symfony Debug Component",  
4223 - "homepage": "https://symfony.com",  
4224 - "time": "2017-03-28 21:38:24"  
4225 - },  
4226 - {  
4227 - "name": "symfony/dom-crawler",  
4228 - "version": "v3.2.7",  
4229 - "source": {  
4230 - "type": "git",  
4231 - "url": "https://github.com/symfony/dom-crawler.git",  
4232 - "reference": "403944e294cf4ceb3b8447f54cbad88ea7b99cee"  
4233 - },  
4234 - "dist": {  
4235 - "type": "zip",  
4236 - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/403944e294cf4ceb3b8447f54cbad88ea7b99cee",  
4237 - "reference": "403944e294cf4ceb3b8447f54cbad88ea7b99cee",  
4238 - "shasum": ""  
4239 - },  
4240 - "require": {  
4241 - "php": ">=5.5.9",  
4242 - "symfony/polyfill-mbstring": "~1.0"  
4243 - },  
4244 - "require-dev": {  
4245 - "symfony/css-selector": "~2.8|~3.0"  
4246 - },  
4247 - "suggest": {  
4248 - "symfony/css-selector": ""  
4249 - },  
4250 - "type": "library",  
4251 - "extra": {  
4252 - "branch-alias": {  
4253 - "dev-master": "3.2-dev"  
4254 - }  
4255 - },  
4256 - "autoload": {  
4257 - "psr-4": {  
4258 - "Symfony\\Component\\DomCrawler\\": ""  
4259 - },  
4260 - "exclude-from-classmap": [  
4261 - "/Tests/"  
4262 - ]  
4263 - },  
4264 - "notification-url": "https://packagist.org/downloads/",  
4265 - "license": [  
4266 - "MIT"  
4267 - ],  
4268 - "authors": [  
4269 - {  
4270 - "name": "Fabien Potencier",  
4271 - "email": "fabien@symfony.com"  
4272 - },  
4273 - {  
4274 - "name": "Symfony Community",  
4275 - "homepage": "https://symfony.com/contributors"  
4276 - }  
4277 - ],  
4278 - "description": "Symfony DomCrawler Component",  
4279 - "homepage": "https://symfony.com",  
4280 - "time": "2017-02-21 09:12:04"  
4281 - },  
4282 - {  
4283 - "name": "symfony/event-dispatcher",  
4284 - "version": "v3.2.7",  
4285 - "source": {  
4286 - "type": "git",  
4287 - "url": "https://github.com/symfony/event-dispatcher.git",  
4288 - "reference": "154bb1ef7b0e42ccc792bd53edbce18ed73440ca"  
4289 - },  
4290 - "dist": {  
4291 - "type": "zip",  
4292 - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/154bb1ef7b0e42ccc792bd53edbce18ed73440ca",  
4293 - "reference": "154bb1ef7b0e42ccc792bd53edbce18ed73440ca",  
4294 - "shasum": ""  
4295 - },  
4296 - "require": {  
4297 - "php": ">=5.5.9"  
4298 - },  
4299 - "require-dev": {  
4300 - "psr/log": "~1.0",  
4301 - "symfony/config": "~2.8|~3.0",  
4302 - "symfony/dependency-injection": "~2.8|~3.0",  
4303 - "symfony/expression-language": "~2.8|~3.0",  
4304 - "symfony/stopwatch": "~2.8|~3.0"  
4305 - },  
4306 - "suggest": {  
4307 - "symfony/dependency-injection": "",  
4308 - "symfony/http-kernel": ""  
4309 - },  
4310 - "type": "library",  
4311 - "extra": {  
4312 - "branch-alias": {  
4313 - "dev-master": "3.2-dev"  
4314 - }  
4315 - },  
4316 - "autoload": {  
4317 - "psr-4": {  
4318 - "Symfony\\Component\\EventDispatcher\\": ""  
4319 - },  
4320 - "exclude-from-classmap": [  
4321 - "/Tests/"  
4322 - ]  
4323 - },  
4324 - "notification-url": "https://packagist.org/downloads/",  
4325 - "license": [  
4326 - "MIT"  
4327 - ],  
4328 - "authors": [  
4329 - {  
4330 - "name": "Fabien Potencier",  
4331 - "email": "fabien@symfony.com"  
4332 - },  
4333 - {  
4334 - "name": "Symfony Community",  
4335 - "homepage": "https://symfony.com/contributors"  
4336 - }  
4337 - ],  
4338 - "description": "Symfony EventDispatcher Component",  
4339 - "homepage": "https://symfony.com",  
4340 - "time": "2017-04-04 07:26:27"  
4341 - },  
4342 - {  
4343 - "name": "symfony/finder",  
4344 - "version": "v3.2.7",  
4345 - "source": {  
4346 - "type": "git",  
4347 - "url": "https://github.com/symfony/finder.git",  
4348 - "reference": "b20900ce5ea164cd9314af52725b0bb5a758217a"  
4349 - },  
4350 - "dist": {  
4351 - "type": "zip",  
4352 - "url": "https://api.github.com/repos/symfony/finder/zipball/b20900ce5ea164cd9314af52725b0bb5a758217a",  
4353 - "reference": "b20900ce5ea164cd9314af52725b0bb5a758217a",  
4354 - "shasum": ""  
4355 - },  
4356 - "require": {  
4357 - "php": ">=5.5.9"  
4358 - },  
4359 - "type": "library",  
4360 - "extra": {  
4361 - "branch-alias": {  
4362 - "dev-master": "3.2-dev"  
4363 - }  
4364 - },  
4365 - "autoload": {  
4366 - "psr-4": {  
4367 - "Symfony\\Component\\Finder\\": ""  
4368 - },  
4369 - "exclude-from-classmap": [  
4370 - "/Tests/"  
4371 - ]  
4372 - },  
4373 - "notification-url": "https://packagist.org/downloads/",  
4374 - "license": [  
4375 - "MIT"  
4376 - ],  
4377 - "authors": [  
4378 - {  
4379 - "name": "Fabien Potencier",  
4380 - "email": "fabien@symfony.com"  
4381 - },  
4382 - {  
4383 - "name": "Symfony Community",  
4384 - "homepage": "https://symfony.com/contributors"  
4385 - }  
4386 - ],  
4387 - "description": "Symfony Finder Component",  
4388 - "homepage": "https://symfony.com",  
4389 - "time": "2017-03-20 09:32:19"  
4390 - },  
4391 - {  
4392 - "name": "symfony/polyfill-mbstring",  
4393 - "version": "v1.3.0",  
4394 - "source": {  
4395 - "type": "git",  
4396 - "url": "https://github.com/symfony/polyfill-mbstring.git",  
4397 - "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4"  
4398 - },  
4399 - "dist": {  
4400 - "type": "zip",  
4401 - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/e79d363049d1c2128f133a2667e4f4190904f7f4",  
4402 - "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4",  
4403 - "shasum": ""  
4404 - },  
4405 - "require": {  
4406 - "php": ">=5.3.3"  
4407 - },  
4408 - "suggest": {  
4409 - "ext-mbstring": "For best performance"  
4410 - },  
4411 - "type": "library",  
4412 - "extra": {  
4413 - "branch-alias": {  
4414 - "dev-master": "1.3-dev"  
4415 - }  
4416 - },  
4417 - "autoload": {  
4418 - "psr-4": {  
4419 - "Symfony\\Polyfill\\Mbstring\\": ""  
4420 - },  
4421 - "files": [  
4422 - "bootstrap.php"  
4423 - ]  
4424 - },  
4425 - "notification-url": "https://packagist.org/downloads/",  
4426 - "license": [  
4427 - "MIT"  
4428 - ],  
4429 - "authors": [  
4430 - {  
4431 - "name": "Nicolas Grekas",  
4432 - "email": "p@tchwork.com"  
4433 - },  
4434 - {  
4435 - "name": "Symfony Community",  
4436 - "homepage": "https://symfony.com/contributors"  
4437 - }  
4438 - ],  
4439 - "description": "Symfony polyfill for the Mbstring extension",  
4440 - "homepage": "https://symfony.com",  
4441 - "keywords": [  
4442 - "compatibility",  
4443 - "mbstring",  
4444 - "polyfill",  
4445 - "portable",  
4446 - "shim"  
4447 - ],  
4448 - "time": "2016-11-14 01:06:16"  
4449 - },  
4450 - {  
4451 - "name": "symfony/yaml",  
4452 - "version": "v3.2.7",  
4453 - "source": {  
4454 - "type": "git",  
4455 - "url": "https://github.com/symfony/yaml.git",  
4456 - "reference": "62b4cdb99d52cb1ff253c465eb1532a80cebb621"  
4457 - },  
4458 - "dist": {  
4459 - "type": "zip",  
4460 - "url": "https://api.github.com/repos/symfony/yaml/zipball/62b4cdb99d52cb1ff253c465eb1532a80cebb621",  
4461 - "reference": "62b4cdb99d52cb1ff253c465eb1532a80cebb621",  
4462 - "shasum": ""  
4463 - },  
4464 - "require": {  
4465 - "php": ">=5.5.9"  
4466 - },  
4467 - "require-dev": {  
4468 - "symfony/console": "~2.8|~3.0"  
4469 - },  
4470 - "suggest": {  
4471 - "symfony/console": "For validating YAML files using the lint command"  
4472 - },  
4473 - "type": "library",  
4474 - "extra": {  
4475 - "branch-alias": {  
4476 - "dev-master": "3.2-dev"  
4477 - }  
4478 - },  
4479 - "autoload": {  
4480 - "psr-4": {  
4481 - "Symfony\\Component\\Yaml\\": ""  
4482 - },  
4483 - "exclude-from-classmap": [  
4484 - "/Tests/"  
4485 - ]  
4486 - },  
4487 - "notification-url": "https://packagist.org/downloads/",  
4488 - "license": [  
4489 - "MIT"  
4490 - ],  
4491 - "authors": [  
4492 - {  
4493 - "name": "Fabien Potencier",  
4494 - "email": "fabien@symfony.com"  
4495 - },  
4496 - {  
4497 - "name": "Symfony Community",  
4498 - "homepage": "https://symfony.com/contributors"  
4499 - }  
4500 - ],  
4501 - "description": "Symfony Yaml Component",  
4502 - "homepage": "https://symfony.com",  
4503 - "time": "2017-03-20 09:45:15"  
4504 - },  
4505 - {  
4506 - "name": "webmozart/assert",  
4507 - "version": "1.2.0",  
4508 - "source": {  
4509 - "type": "git",  
4510 - "url": "https://github.com/webmozart/assert.git",  
4511 - "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"  
4512 - },  
4513 - "dist": {  
4514 - "type": "zip",  
4515 - "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f",  
4516 - "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",  
4517 - "shasum": ""  
4518 - },  
4519 - "require": {  
4520 - "php": "^5.3.3 || ^7.0"  
4521 - },  
4522 - "require-dev": {  
4523 - "phpunit/phpunit": "^4.6",  
4524 - "sebastian/version": "^1.0.1"  
4525 - },  
4526 - "type": "library",  
4527 - "extra": {  
4528 - "branch-alias": {  
4529 - "dev-master": "1.3-dev"  
4530 - }  
4531 - },  
4532 - "autoload": {  
4533 - "psr-4": {  
4534 - "Webmozart\\Assert\\": "src/"  
4535 - }  
4536 - },  
4537 - "notification-url": "https://packagist.org/downloads/",  
4538 - "license": [  
4539 - "MIT"  
4540 - ],  
4541 - "authors": [  
4542 - {  
4543 - "name": "Bernhard Schussek",  
4544 - "email": "bschussek@gmail.com"  
4545 - }  
4546 - ],  
4547 - "description": "Assertions to validate method input/output with nice error messages.",  
4548 - "keywords": [  
4549 - "assert",  
4550 - "check",  
4551 - "validate"  
4552 - ],  
4553 - "time": "2016-11-23 20:04:58"  
4554 - },  
4555 - {  
4556 - "name": "yiisoft/yii2-debug",  
4557 - "version": "2.0.9",  
4558 - "source": {  
4559 - "type": "git",  
4560 - "url": "https://github.com/yiisoft/yii2-debug.git",  
4561 - "reference": "647be6c9d48dc2f3c2e2f33b9eba0a4ca78abde9"  
4562 - },  
4563 - "dist": {  
4564 - "type": "zip",  
4565 - "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/647be6c9d48dc2f3c2e2f33b9eba0a4ca78abde9",  
4566 - "reference": "647be6c9d48dc2f3c2e2f33b9eba0a4ca78abde9",  
4567 - "shasum": ""  
4568 - },  
4569 - "require": {  
4570 - "yiisoft/yii2": "~2.0.11",  
4571 - "yiisoft/yii2-bootstrap": "~2.0.0"  
4572 - },  
4573 - "type": "yii2-extension",  
4574 - "extra": {  
4575 - "branch-alias": {  
4576 - "dev-master": "2.0.x-dev"  
4577 - }  
4578 - },  
4579 - "autoload": {  
4580 - "psr-4": {  
4581 - "yii\\debug\\": ""  
4582 - }  
4583 - },  
4584 - "notification-url": "https://packagist.org/downloads/",  
4585 - "license": [  
4586 - "BSD-3-Clause"  
4587 - ],  
4588 - "authors": [  
4589 - {  
4590 - "name": "Qiang Xue",  
4591 - "email": "qiang.xue@gmail.com"  
4592 - }  
4593 - ],  
4594 - "description": "The debugger extension for the Yii framework",  
4595 - "keywords": [  
4596 - "debug",  
4597 - "debugger",  
4598 - "yii2"  
4599 - ],  
4600 - "time": "2017-02-21 10:30:50"  
4601 - },  
4602 - {  
4603 - "name": "yiisoft/yii2-faker",  
4604 - "version": "2.0.3",  
4605 - "source": {  
4606 - "type": "git",  
4607 - "url": "https://github.com/yiisoft/yii2-faker.git",  
4608 - "reference": "b88ca69ee226a3610b2c26c026c3203d7ac50f6c"  
4609 - },  
4610 - "dist": {  
4611 - "type": "zip",  
4612 - "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/b88ca69ee226a3610b2c26c026c3203d7ac50f6c",  
4613 - "reference": "b88ca69ee226a3610b2c26c026c3203d7ac50f6c",  
4614 - "shasum": ""  
4615 - },  
4616 - "require": {  
4617 - "fzaninotto/faker": "*",  
4618 - "yiisoft/yii2": "*"  
4619 - },  
4620 - "type": "yii2-extension",  
4621 - "extra": {  
4622 - "branch-alias": {  
4623 - "dev-master": "2.0.x-dev"  
4624 - }  
4625 - },  
4626 - "autoload": {  
4627 - "psr-4": {  
4628 - "yii\\faker\\": ""  
4629 - }  
4630 - },  
4631 - "notification-url": "https://packagist.org/downloads/",  
4632 - "license": [  
4633 - "BSD-3-Clause"  
4634 - ],  
4635 - "authors": [  
4636 - {  
4637 - "name": "Mark Jebri",  
4638 - "email": "mark.github@yandex.ru"  
4639 - }  
4640 - ],  
4641 - "description": "Fixture generator. The Faker integration for the Yii framework.",  
4642 - "keywords": [  
4643 - "Fixture",  
4644 - "faker",  
4645 - "yii2"  
4646 - ],  
4647 - "time": "2015-03-01 06:22:44"  
4648 - },  
4649 - {  
4650 - "name": "yiisoft/yii2-gii",  
4651 - "version": "2.0.5",  
4652 - "source": {  
4653 - "type": "git",  
4654 - "url": "https://github.com/yiisoft/yii2-gii.git",  
4655 - "reference": "1bd6df6804ca077ec022587905a0d43eb286f507"  
4656 - },  
4657 - "dist": {  
4658 - "type": "zip",  
4659 - "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/1bd6df6804ca077ec022587905a0d43eb286f507",  
4660 - "reference": "1bd6df6804ca077ec022587905a0d43eb286f507",  
4661 - "shasum": ""  
4662 - },  
4663 - "require": {  
4664 - "bower-asset/typeahead.js": "0.10.* | ~0.11.0",  
4665 - "phpspec/php-diff": ">=1.0.2",  
4666 - "yiisoft/yii2": ">=2.0.4",  
4667 - "yiisoft/yii2-bootstrap": "~2.0"  
4668 - },  
4669 - "type": "yii2-extension",  
4670 - "extra": {  
4671 - "branch-alias": {  
4672 - "dev-master": "2.0.x-dev"  
4673 - },  
4674 - "asset-installer-paths": {  
4675 - "npm-asset-library": "vendor/npm",  
4676 - "bower-asset-library": "vendor/bower"  
4677 - }  
4678 - },  
4679 - "autoload": {  
4680 - "psr-4": {  
4681 - "yii\\gii\\": ""  
4682 - }  
4683 - },  
4684 - "notification-url": "https://packagist.org/downloads/",  
4685 - "license": [  
4686 - "BSD-3-Clause"  
4687 - ],  
4688 - "authors": [  
4689 - {  
4690 - "name": "Qiang Xue",  
4691 - "email": "qiang.xue@gmail.com"  
4692 - }  
4693 - ],  
4694 - "description": "The Gii extension for the Yii framework",  
4695 - "keywords": [  
4696 - "code generator",  
4697 - "gii",  
4698 - "yii2"  
4699 - ],  
4700 - "time": "2016-03-18 14:09:46"  
4701 - }  
4702 - ],  
4703 - "aliases": [],  
4704 - "minimum-stability": "stable",  
4705 - "stability-flags": {  
4706 - "bower-asset/amcharts-stock": 20,  
4707 - "kartik-v/yii2-widget-select2": 20  
4708 - },  
4709 - "prefer-stable": false,  
4710 - "prefer-lowest": false,  
4711 - "platform": {  
4712 - "php": ">=7.0"  
4713 - },  
4714 - "platform-dev": []  
4715 -}