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