composer.lock 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729
  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#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "d742d6b0e5071b72203c42050e70ff1e",
  8. "packages": [
  9. {
  10. "name": "2amigos/yii2-editable-widget",
  11. "version": "0.1.4",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/2amigos/yii2-editable-widget.git",
  15. "reference": "4ef78e7bfd575dc39e43e85ef23196382cb72783"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/2amigos/yii2-editable-widget/zipball/4ef78e7bfd575dc39e43e85ef23196382cb72783",
  20. "reference": "4ef78e7bfd575dc39e43e85ef23196382cb72783",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "bower-asset/select2": "3.5.2",
  25. "yiisoft/yii2": "*"
  26. },
  27. "type": "yii2-extension",
  28. "autoload": {
  29. "psr-4": {
  30. "dosamigos\\editable\\": ""
  31. }
  32. },
  33. "notification-url": "https://packagist.org/downloads/",
  34. "license": [
  35. "BSD-3-Clause"
  36. ],
  37. "authors": [
  38. {
  39. "name": "Antonio Ramirez",
  40. "email": "ramirez.cobos@gmail.com",
  41. "homepage": "http://2amigos.us"
  42. }
  43. ],
  44. "description": "X-Editable widget for Yii2.",
  45. "keywords": [
  46. "extension",
  47. "widget",
  48. "x-editable",
  49. "yii"
  50. ],
  51. "time": "2015-02-20T15:13:36+00:00"
  52. },
  53. {
  54. "name": "abei2017/yii2-wx",
  55. "version": "1.3.1",
  56. "source": {
  57. "type": "git",
  58. "url": "https://github.com/abei2017/yii2-wx.git",
  59. "reference": "be8c8d003583fd6e2ed423d212feea0062f1e20e"
  60. },
  61. "dist": {
  62. "type": "zip",
  63. "url": "https://api.github.com/repos/abei2017/yii2-wx/zipball/be8c8d003583fd6e2ed423d212feea0062f1e20e",
  64. "reference": "be8c8d003583fd6e2ed423d212feea0062f1e20e",
  65. "shasum": ""
  66. },
  67. "require": {
  68. "php": ">=5.4",
  69. "yiisoft/yii2": "*",
  70. "yiisoft/yii2-httpclient": "^2.0"
  71. },
  72. "type": "yii2-extension",
  73. "autoload": {
  74. "psr-4": {
  75. "abei2017\\wx\\": "src"
  76. }
  77. },
  78. "notification-url": "https://packagist.org/downloads/",
  79. "license": [
  80. "MIT"
  81. ],
  82. "authors": [
  83. {
  84. "name": "abei",
  85. "email": "abei@nai8.me"
  86. }
  87. ],
  88. "description": "一个专注于yii2的微信sdk",
  89. "keywords": [
  90. "extension",
  91. "wechat",
  92. "yii2"
  93. ],
  94. "time": "2018-10-20T07:52:22+00:00"
  95. },
  96. {
  97. "name": "aferrandini/phpqrcode",
  98. "version": "1.0.1",
  99. "source": {
  100. "type": "git",
  101. "url": "https://github.com/aferrandini/PHPQRCode.git",
  102. "reference": "3c1c0454d43710ab5bbe19a51ad4cb41c22e3d46"
  103. },
  104. "dist": {
  105. "type": "zip",
  106. "url": "https://api.github.com/repos/aferrandini/PHPQRCode/zipball/3c1c0454d43710ab5bbe19a51ad4cb41c22e3d46",
  107. "reference": "3c1c0454d43710ab5bbe19a51ad4cb41c22e3d46",
  108. "shasum": ""
  109. },
  110. "require": {
  111. "php": ">=5.3.0"
  112. },
  113. "type": "library",
  114. "autoload": {
  115. "psr-0": {
  116. "PHPQRCode": "lib/"
  117. }
  118. },
  119. "notification-url": "https://packagist.org/downloads/",
  120. "license": [
  121. "MIT"
  122. ],
  123. "authors": [
  124. {
  125. "name": "Ariel Ferrandini",
  126. "email": "arielferrandini@gmail.com",
  127. "homepage": "http://www.ferrandini.com/",
  128. "role": "Developer"
  129. }
  130. ],
  131. "description": "PHPQRCode porting and changed for PHP 5.3 compatibility",
  132. "homepage": "https://github.com/aferrandini/PHPQRCode",
  133. "keywords": [
  134. "barcode",
  135. "php",
  136. "qrcode"
  137. ],
  138. "abandoned": "endroid/qr-code",
  139. "time": "2013-07-08T09:39:08+00:00"
  140. },
  141. {
  142. "name": "bower-asset/blueimp-canvas-to-blob",
  143. "version": "v3.8.0",
  144. "source": {
  145. "type": "git",
  146. "url": "https://github.com/blueimp/JavaScript-Canvas-to-Blob.git",
  147. "reference": "ce0b6f09ff8c4c94e9efe69763f7a34d41ee57df"
  148. },
  149. "dist": {
  150. "type": "zip",
  151. "url": "https://api.github.com/repos/blueimp/JavaScript-Canvas-to-Blob/zipball/ce0b6f09ff8c4c94e9efe69763f7a34d41ee57df",
  152. "reference": "ce0b6f09ff8c4c94e9efe69763f7a34d41ee57df",
  153. "shasum": ""
  154. },
  155. "type": "bower-asset-library"
  156. },
  157. {
  158. "name": "bower-asset/blueimp-file-upload",
  159. "version": "v9.18.0",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/blueimp/jQuery-File-Upload.git",
  163. "reference": "0b4af3c57b86b3c7147c4d7c75deb71a0133f0e3"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/blueimp/jQuery-File-Upload/zipball/0b4af3c57b86b3c7147c4d7c75deb71a0133f0e3",
  168. "reference": "0b4af3c57b86b3c7147c4d7c75deb71a0133f0e3",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "bower-asset/blueimp-canvas-to-blob": ">=2.1.1",
  173. "bower-asset/blueimp-load-image": ">=1.13.0",
  174. "bower-asset/blueimp-tmpl": ">=2.5.4",
  175. "bower-asset/jquery": ">=1.6"
  176. },
  177. "type": "bower-asset-library",
  178. "extra": {
  179. "bower-asset-main": [
  180. "js/jquery.fileupload.js"
  181. ],
  182. "bower-asset-ignore": [
  183. "/*.*",
  184. "/cors",
  185. "css/demo-ie8.css",
  186. "css/demo.css",
  187. "css/style.css",
  188. "js/app.js",
  189. "js/main.js",
  190. "server",
  191. "test"
  192. ]
  193. },
  194. "license": [
  195. "MIT"
  196. ],
  197. "description": "File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images.",
  198. "keywords": [
  199. "bootstrap",
  200. "chunk",
  201. "cross-domain",
  202. "cross-site",
  203. "drag",
  204. "drop",
  205. "file",
  206. "gae",
  207. "go",
  208. "jquery",
  209. "multiple",
  210. "php",
  211. "preview",
  212. "progress",
  213. "python",
  214. "resume",
  215. "selection",
  216. "upload",
  217. "widget"
  218. ]
  219. },
  220. {
  221. "name": "bower-asset/blueimp-load-image",
  222. "version": "v2.12.2",
  223. "source": {
  224. "type": "git",
  225. "url": "https://github.com/blueimp/JavaScript-Load-Image.git",
  226. "reference": "caf36d45d843b38b8763cb4a921d7ce51681a08c"
  227. },
  228. "dist": {
  229. "type": "zip",
  230. "url": "https://api.github.com/repos/blueimp/JavaScript-Load-Image/zipball/caf36d45d843b38b8763cb4a921d7ce51681a08c",
  231. "reference": "caf36d45d843b38b8763cb4a921d7ce51681a08c",
  232. "shasum": ""
  233. },
  234. "type": "bower-asset-library"
  235. },
  236. {
  237. "name": "bower-asset/blueimp-tmpl",
  238. "version": "v3.8.0",
  239. "source": {
  240. "type": "git",
  241. "url": "https://github.com/blueimp/JavaScript-Templates.git",
  242. "reference": "dc7631396cd541db5644aa2c651e342c68511aad"
  243. },
  244. "dist": {
  245. "type": "zip",
  246. "url": "https://api.github.com/repos/blueimp/JavaScript-Templates/zipball/dc7631396cd541db5644aa2c651e342c68511aad",
  247. "reference": "dc7631396cd541db5644aa2c651e342c68511aad",
  248. "shasum": ""
  249. },
  250. "type": "bower-asset-library"
  251. },
  252. {
  253. "name": "bower-asset/bootstrap",
  254. "version": "v3.3.7",
  255. "source": {
  256. "type": "git",
  257. "url": "https://github.com/twbs/bootstrap.git",
  258. "reference": "0b9c4a4007c44201dce9a6cc1a38407005c26c86"
  259. },
  260. "dist": {
  261. "type": "zip",
  262. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/0b9c4a4007c44201dce9a6cc1a38407005c26c86",
  263. "reference": "0b9c4a4007c44201dce9a6cc1a38407005c26c86",
  264. "shasum": ""
  265. },
  266. "require": {
  267. "bower-asset/jquery": ">=1.9.1,<=3"
  268. },
  269. "type": "bower-asset-library",
  270. "extra": {
  271. "bower-asset-main": [
  272. "less/bootstrap.less",
  273. "dist/js/bootstrap.js"
  274. ],
  275. "bower-asset-ignore": [
  276. "/.*",
  277. "_config.yml",
  278. "CNAME",
  279. "composer.json",
  280. "CONTRIBUTING.md",
  281. "docs",
  282. "js/tests",
  283. "test-infra"
  284. ]
  285. },
  286. "license": [
  287. "MIT"
  288. ],
  289. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  290. "keywords": [
  291. "css",
  292. "framework",
  293. "front-end",
  294. "js",
  295. "less",
  296. "mobile-first",
  297. "responsive",
  298. "web"
  299. ]
  300. },
  301. {
  302. "name": "bower-asset/editor.md",
  303. "version": "v1.5.0",
  304. "source": {
  305. "type": "git",
  306. "url": "https://github.com/pandao/editor.md.git",
  307. "reference": "af08536772e34f6ef95870bb4cfd85d09bf1c932"
  308. },
  309. "dist": {
  310. "type": "zip",
  311. "url": "https://api.github.com/repos/pandao/editor.md/zipball/af08536772e34f6ef95870bb4cfd85d09bf1c932",
  312. "reference": "af08536772e34f6ef95870bb4cfd85d09bf1c932",
  313. "shasum": ""
  314. },
  315. "type": "bower-asset-library",
  316. "extra": {
  317. "bower-asset-ignore": [
  318. "**/.*",
  319. "research",
  320. "docs",
  321. "node_modules",
  322. "bower_components",
  323. "test",
  324. "tests"
  325. ]
  326. },
  327. "license": [
  328. "MIT"
  329. ],
  330. "description": "Open source online markdown editor.",
  331. "keywords": [
  332. "editor",
  333. "editor.md",
  334. "markdown"
  335. ]
  336. },
  337. {
  338. "name": "bower-asset/jquery",
  339. "version": "2.2.4",
  340. "source": {
  341. "type": "git",
  342. "url": "https://github.com/jquery/jquery-dist.git",
  343. "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72"
  344. },
  345. "dist": {
  346. "type": "zip",
  347. "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/c0185ab7c75aab88762c5aae780b9d83b80eda72",
  348. "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72",
  349. "shasum": ""
  350. },
  351. "type": "bower-asset-library",
  352. "extra": {
  353. "bower-asset-main": "dist/jquery.js",
  354. "bower-asset-ignore": [
  355. "package.json"
  356. ]
  357. },
  358. "license": [
  359. "MIT"
  360. ],
  361. "keywords": [
  362. "browser",
  363. "javascript",
  364. "jquery",
  365. "library"
  366. ]
  367. },
  368. {
  369. "name": "bower-asset/jquery.inputmask",
  370. "version": "3.3.7",
  371. "source": {
  372. "type": "git",
  373. "url": "https://github.com/RobinHerbots/Inputmask.git",
  374. "reference": "9835731cb78cac749734d94a1cb5bd70da4d3b10"
  375. },
  376. "dist": {
  377. "type": "zip",
  378. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/9835731cb78cac749734d94a1cb5bd70da4d3b10",
  379. "reference": "9835731cb78cac749734d94a1cb5bd70da4d3b10",
  380. "shasum": ""
  381. },
  382. "require": {
  383. "bower-asset/jquery": ">=1.7"
  384. },
  385. "type": "bower-asset-library",
  386. "extra": {
  387. "bower-asset-main": [
  388. "./dist/inputmask/inputmask.js",
  389. "./dist/inputmask/inputmask.extensions.js",
  390. "./dist/inputmask/inputmask.date.extensions.js",
  391. "./dist/inputmask/inputmask.numeric.extensions.js",
  392. "./dist/inputmask/inputmask.phone.extensions.js",
  393. "./dist/inputmask/jquery.inputmask.js",
  394. "./dist/inputmask/global/document.js",
  395. "./dist/inputmask/global/window.js",
  396. "./dist/inputmask/phone-codes/phone.js",
  397. "./dist/inputmask/phone-codes/phone-be.js",
  398. "./dist/inputmask/phone-codes/phone-nl.js",
  399. "./dist/inputmask/phone-codes/phone-ru.js",
  400. "./dist/inputmask/phone-codes/phone-uk.js",
  401. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jqlite.js",
  402. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jquery.js",
  403. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.js",
  404. "./dist/inputmask/bindings/inputmask.binding.js"
  405. ],
  406. "bower-asset-ignore": [
  407. "**/*",
  408. "!dist/*",
  409. "!dist/inputmask/*",
  410. "!dist/min/*",
  411. "!dist/min/inputmask/*"
  412. ]
  413. },
  414. "license": [
  415. "http://opensource.org/licenses/mit-license.php"
  416. ],
  417. "description": "Inputmask is a javascript library which creates an input mask. Inputmask can run against vanilla javascript, jQuery and jqlite.",
  418. "keywords": [
  419. "form",
  420. "input",
  421. "inputmask",
  422. "jquery",
  423. "mask",
  424. "plugins"
  425. ]
  426. },
  427. {
  428. "name": "bower-asset/punycode",
  429. "version": "v1.3.2",
  430. "source": {
  431. "type": "git",
  432. "url": "https://github.com/bestiejs/punycode.js.git",
  433. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  434. },
  435. "dist": {
  436. "type": "zip",
  437. "url": "https://api.github.com/repos/bestiejs/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  438. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  439. "shasum": ""
  440. },
  441. "type": "bower-asset-library",
  442. "extra": {
  443. "bower-asset-main": "punycode.js",
  444. "bower-asset-ignore": [
  445. "coverage",
  446. "tests",
  447. ".*",
  448. "component.json",
  449. "Gruntfile.js",
  450. "node_modules",
  451. "package.json"
  452. ]
  453. }
  454. },
  455. {
  456. "name": "bower-asset/select2",
  457. "version": "3.5.2",
  458. "source": {
  459. "type": "git",
  460. "url": "https://github.com/select2/select2.git",
  461. "reference": "6633cda9061d9fc65075dd140c63f9a6adbcbd72"
  462. },
  463. "dist": {
  464. "type": "zip",
  465. "url": "https://api.github.com/repos/select2/select2/zipball/6633cda9061d9fc65075dd140c63f9a6adbcbd72",
  466. "reference": "6633cda9061d9fc65075dd140c63f9a6adbcbd72",
  467. "shasum": ""
  468. },
  469. "require": {
  470. "bower-asset/jquery": ">=1.7.1"
  471. },
  472. "type": "bower-asset-library",
  473. "extra": {
  474. "bower-asset-main": [
  475. "select2.js",
  476. "select2.css",
  477. "select2.png",
  478. "select2x2.png",
  479. "select2-spinner.gif"
  480. ]
  481. }
  482. },
  483. {
  484. "name": "bower-asset/yii2-pjax",
  485. "version": "v2.0.6",
  486. "source": {
  487. "type": "git",
  488. "url": "https://github.com/yiisoft/jquery-pjax.git",
  489. "reference": "60728da6ade5879e807a49ce59ef9a72039b8978"
  490. },
  491. "dist": {
  492. "type": "zip",
  493. "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/60728da6ade5879e807a49ce59ef9a72039b8978",
  494. "reference": "60728da6ade5879e807a49ce59ef9a72039b8978",
  495. "shasum": ""
  496. },
  497. "require": {
  498. "bower-asset/jquery": ">=1.8"
  499. },
  500. "type": "bower-asset-library",
  501. "extra": {
  502. "bower-asset-main": "./jquery.pjax.js",
  503. "bower-asset-ignore": [
  504. ".travis.yml",
  505. "Gemfile",
  506. "Gemfile.lock",
  507. "CONTRIBUTING.md",
  508. "vendor/",
  509. "script/",
  510. "test/"
  511. ]
  512. },
  513. "license": [
  514. "MIT"
  515. ]
  516. },
  517. {
  518. "name": "cebe/markdown",
  519. "version": "1.1.1",
  520. "source": {
  521. "type": "git",
  522. "url": "https://github.com/cebe/markdown.git",
  523. "reference": "c30eb5e01fe021cc5bba2f9ee0eeef96d4931166"
  524. },
  525. "dist": {
  526. "type": "zip",
  527. "url": "https://api.github.com/repos/cebe/markdown/zipball/c30eb5e01fe021cc5bba2f9ee0eeef96d4931166",
  528. "reference": "c30eb5e01fe021cc5bba2f9ee0eeef96d4931166",
  529. "shasum": ""
  530. },
  531. "require": {
  532. "lib-pcre": "*",
  533. "php": ">=5.4.0"
  534. },
  535. "require-dev": {
  536. "cebe/indent": "*",
  537. "facebook/xhprof": "*@dev",
  538. "phpunit/phpunit": "4.1.*"
  539. },
  540. "bin": [
  541. "bin/markdown"
  542. ],
  543. "type": "library",
  544. "extra": {
  545. "branch-alias": {
  546. "dev-master": "1.1.x-dev"
  547. }
  548. },
  549. "autoload": {
  550. "psr-4": {
  551. "cebe\\markdown\\": ""
  552. }
  553. },
  554. "notification-url": "https://packagist.org/downloads/",
  555. "license": [
  556. "MIT"
  557. ],
  558. "authors": [
  559. {
  560. "name": "Carsten Brandt",
  561. "email": "mail@cebe.cc",
  562. "homepage": "http://cebe.cc/",
  563. "role": "Creator"
  564. }
  565. ],
  566. "description": "A super fast, highly extensible markdown parser for PHP",
  567. "homepage": "https://github.com/cebe/markdown#readme",
  568. "keywords": [
  569. "extensible",
  570. "fast",
  571. "gfm",
  572. "markdown",
  573. "markdown-extra"
  574. ],
  575. "time": "2016-09-14T20:40:20+00:00"
  576. },
  577. {
  578. "name": "chenkby/yii2-region",
  579. "version": "dev-master",
  580. "source": {
  581. "type": "git",
  582. "url": "https://github.com/chenkby/yii2-region.git",
  583. "reference": "b377af6986f0372bb0707512e52a7b54f7d323c2"
  584. },
  585. "dist": {
  586. "type": "zip",
  587. "url": "https://api.github.com/repos/chenkby/yii2-region/zipball/b377af6986f0372bb0707512e52a7b54f7d323c2",
  588. "reference": "b377af6986f0372bb0707512e52a7b54f7d323c2",
  589. "shasum": ""
  590. },
  591. "require": {
  592. "yiisoft/yii2": "*"
  593. },
  594. "type": "yii2-widget",
  595. "autoload": {
  596. "psr-4": {
  597. "chenkby\\region\\": ""
  598. }
  599. },
  600. "notification-url": "https://packagist.org/downloads/",
  601. "license": [
  602. "BSD-3-Clause"
  603. ],
  604. "authors": [
  605. {
  606. "name": "ChenGuanQun",
  607. "email": "99912250@qq.com"
  608. }
  609. ],
  610. "description": "Yii2中国省市区三级联动",
  611. "keywords": [
  612. "city",
  613. "district",
  614. "province",
  615. "region",
  616. "yii2"
  617. ],
  618. "time": "2017-02-22T07:06:12+00:00"
  619. },
  620. {
  621. "name": "creocoder/yii2-flysystem",
  622. "version": "0.9.0",
  623. "source": {
  624. "type": "git",
  625. "url": "https://github.com/creocoder/yii2-flysystem.git",
  626. "reference": "0209d17a68027889a10a9133e4eb11f8dd6333cf"
  627. },
  628. "dist": {
  629. "type": "zip",
  630. "url": "https://api.github.com/repos/creocoder/yii2-flysystem/zipball/0209d17a68027889a10a9133e4eb11f8dd6333cf",
  631. "reference": "0209d17a68027889a10a9133e4eb11f8dd6333cf",
  632. "shasum": ""
  633. },
  634. "require": {
  635. "league/flysystem": "~1.0",
  636. "yiisoft/yii2": "~2.0.0"
  637. },
  638. "require-dev": {
  639. "league/flysystem-aws-s3-v3": "~1.0",
  640. "league/flysystem-azure": "~1.0",
  641. "league/flysystem-cached-adapter": "~1.0",
  642. "league/flysystem-copy": "~1.0",
  643. "league/flysystem-dropbox": "~1.0",
  644. "league/flysystem-gridfs": "~1.0",
  645. "league/flysystem-rackspace": "~1.0",
  646. "league/flysystem-replicate-adapter": "~1.0",
  647. "league/flysystem-sftp": "~1.0",
  648. "league/flysystem-webdav": "~1.0",
  649. "league/flysystem-ziparchive": "~1.0"
  650. },
  651. "type": "yii2-extension",
  652. "autoload": {
  653. "psr-4": {
  654. "creocoder\\flysystem\\": "src"
  655. }
  656. },
  657. "notification-url": "https://packagist.org/downloads/",
  658. "license": [
  659. "BSD-3-Clause"
  660. ],
  661. "authors": [
  662. {
  663. "name": "Alexander Kochetov",
  664. "email": "creocoder@gmail.com"
  665. }
  666. ],
  667. "description": "The flysystem extension for the Yii framework",
  668. "keywords": [
  669. "Flysystem",
  670. "GridFS",
  671. "WebDAV",
  672. "aws",
  673. "azure",
  674. "copy.com",
  675. "dropbox",
  676. "files",
  677. "filesystem",
  678. "ftp",
  679. "rackspace",
  680. "s3",
  681. "sftp",
  682. "yii2"
  683. ],
  684. "time": "2017-02-08T10:23:22+00:00"
  685. },
  686. {
  687. "name": "ezyang/htmlpurifier",
  688. "version": "v4.9.3",
  689. "source": {
  690. "type": "git",
  691. "url": "https://github.com/ezyang/htmlpurifier.git",
  692. "reference": "95e1bae3182efc0f3422896a3236e991049dac69"
  693. },
  694. "dist": {
  695. "type": "zip",
  696. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/95e1bae3182efc0f3422896a3236e991049dac69",
  697. "reference": "95e1bae3182efc0f3422896a3236e991049dac69",
  698. "shasum": ""
  699. },
  700. "require": {
  701. "php": ">=5.2"
  702. },
  703. "require-dev": {
  704. "simpletest/simpletest": "^1.1"
  705. },
  706. "type": "library",
  707. "autoload": {
  708. "psr-0": {
  709. "HTMLPurifier": "library/"
  710. },
  711. "files": [
  712. "library/HTMLPurifier.composer.php"
  713. ]
  714. },
  715. "notification-url": "https://packagist.org/downloads/",
  716. "license": [
  717. "LGPL"
  718. ],
  719. "authors": [
  720. {
  721. "name": "Edward Z. Yang",
  722. "email": "admin@htmlpurifier.org",
  723. "homepage": "http://ezyang.com"
  724. }
  725. ],
  726. "description": "Standards compliant HTML filter written in PHP",
  727. "homepage": "http://htmlpurifier.org/",
  728. "keywords": [
  729. "html"
  730. ],
  731. "time": "2017-06-03T02:28:16+00:00"
  732. },
  733. {
  734. "name": "fabpot/goutte",
  735. "version": "v3.2.1",
  736. "source": {
  737. "type": "git",
  738. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  739. "reference": "db5c28f4a010b4161d507d5304e28a7ebf211638"
  740. },
  741. "dist": {
  742. "type": "zip",
  743. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/db5c28f4a010b4161d507d5304e28a7ebf211638",
  744. "reference": "db5c28f4a010b4161d507d5304e28a7ebf211638",
  745. "shasum": ""
  746. },
  747. "require": {
  748. "guzzlehttp/guzzle": "^6.0",
  749. "php": ">=5.5.0",
  750. "symfony/browser-kit": "~2.1|~3.0",
  751. "symfony/css-selector": "~2.1|~3.0",
  752. "symfony/dom-crawler": "~2.1|~3.0"
  753. },
  754. "type": "application",
  755. "extra": {
  756. "branch-alias": {
  757. "dev-master": "3.2-dev"
  758. }
  759. },
  760. "autoload": {
  761. "psr-4": {
  762. "Goutte\\": "Goutte"
  763. }
  764. },
  765. "notification-url": "https://packagist.org/downloads/",
  766. "license": [
  767. "MIT"
  768. ],
  769. "authors": [
  770. {
  771. "name": "Fabien Potencier",
  772. "email": "fabien@symfony.com"
  773. }
  774. ],
  775. "description": "A simple PHP Web Scraper",
  776. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  777. "keywords": [
  778. "scraper"
  779. ],
  780. "abandoned": "symfony/browser-kit",
  781. "time": "2017-01-03T13:21:43+00:00"
  782. },
  783. {
  784. "name": "fxp/composer-asset-plugin",
  785. "version": "v1.3.1",
  786. "source": {
  787. "type": "git",
  788. "url": "https://github.com/fxpio/composer-asset-plugin.git",
  789. "reference": "0bfdd307d2cddbc42c634b14247f3f3a8525b836"
  790. },
  791. "dist": {
  792. "type": "zip",
  793. "url": "https://api.github.com/repos/fxpio/composer-asset-plugin/zipball/0bfdd307d2cddbc42c634b14247f3f3a8525b836",
  794. "reference": "0bfdd307d2cddbc42c634b14247f3f3a8525b836",
  795. "shasum": ""
  796. },
  797. "require": {
  798. "composer-plugin-api": "^1.0",
  799. "php": ">=5.3.3"
  800. },
  801. "require-dev": {
  802. "composer/composer": "^1.4.0"
  803. },
  804. "type": "composer-plugin",
  805. "extra": {
  806. "class": "Fxp\\Composer\\AssetPlugin\\FxpAssetPlugin",
  807. "branch-alias": {
  808. "dev-master": "1.3-dev"
  809. }
  810. },
  811. "autoload": {
  812. "psr-4": {
  813. "Fxp\\Composer\\AssetPlugin\\": ""
  814. },
  815. "exclude-from-classmap": [
  816. "/Tests/"
  817. ]
  818. },
  819. "notification-url": "https://packagist.org/downloads/",
  820. "license": [
  821. "MIT"
  822. ],
  823. "authors": [
  824. {
  825. "name": "François Pluchino",
  826. "email": "francois.pluchino@gmail.com"
  827. }
  828. ],
  829. "description": "NPM/Bower Dependency Manager for Composer",
  830. "homepage": "https://github.com/fxpio/composer-asset-plugin",
  831. "keywords": [
  832. "asset",
  833. "bower",
  834. "composer",
  835. "dependency manager",
  836. "nodejs",
  837. "npm",
  838. "package"
  839. ],
  840. "time": "2017-04-09T11:49:10+00:00"
  841. },
  842. {
  843. "name": "guzzlehttp/guzzle",
  844. "version": "6.3.0",
  845. "source": {
  846. "type": "git",
  847. "url": "https://github.com/guzzle/guzzle.git",
  848. "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699"
  849. },
  850. "dist": {
  851. "type": "zip",
  852. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  853. "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  854. "shasum": ""
  855. },
  856. "require": {
  857. "guzzlehttp/promises": "^1.0",
  858. "guzzlehttp/psr7": "^1.4",
  859. "php": ">=5.5"
  860. },
  861. "require-dev": {
  862. "ext-curl": "*",
  863. "phpunit/phpunit": "^4.0 || ^5.0",
  864. "psr/log": "^1.0"
  865. },
  866. "suggest": {
  867. "psr/log": "Required for using the Log middleware"
  868. },
  869. "type": "library",
  870. "extra": {
  871. "branch-alias": {
  872. "dev-master": "6.2-dev"
  873. }
  874. },
  875. "autoload": {
  876. "files": [
  877. "src/functions_include.php"
  878. ],
  879. "psr-4": {
  880. "GuzzleHttp\\": "src/"
  881. }
  882. },
  883. "notification-url": "https://packagist.org/downloads/",
  884. "license": [
  885. "MIT"
  886. ],
  887. "authors": [
  888. {
  889. "name": "Michael Dowling",
  890. "email": "mtdowling@gmail.com",
  891. "homepage": "https://github.com/mtdowling"
  892. }
  893. ],
  894. "description": "Guzzle is a PHP HTTP client library",
  895. "homepage": "http://guzzlephp.org/",
  896. "keywords": [
  897. "client",
  898. "curl",
  899. "framework",
  900. "http",
  901. "http client",
  902. "rest",
  903. "web service"
  904. ],
  905. "time": "2017-06-22T18:50:49+00:00"
  906. },
  907. {
  908. "name": "guzzlehttp/promises",
  909. "version": "v1.3.1",
  910. "source": {
  911. "type": "git",
  912. "url": "https://github.com/guzzle/promises.git",
  913. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  914. },
  915. "dist": {
  916. "type": "zip",
  917. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  918. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  919. "shasum": ""
  920. },
  921. "require": {
  922. "php": ">=5.5.0"
  923. },
  924. "require-dev": {
  925. "phpunit/phpunit": "^4.0"
  926. },
  927. "type": "library",
  928. "extra": {
  929. "branch-alias": {
  930. "dev-master": "1.4-dev"
  931. }
  932. },
  933. "autoload": {
  934. "psr-4": {
  935. "GuzzleHttp\\Promise\\": "src/"
  936. },
  937. "files": [
  938. "src/functions_include.php"
  939. ]
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "authors": [
  946. {
  947. "name": "Michael Dowling",
  948. "email": "mtdowling@gmail.com",
  949. "homepage": "https://github.com/mtdowling"
  950. }
  951. ],
  952. "description": "Guzzle promises library",
  953. "keywords": [
  954. "promise"
  955. ],
  956. "time": "2016-12-20T10:07:11+00:00"
  957. },
  958. {
  959. "name": "guzzlehttp/psr7",
  960. "version": "1.4.2",
  961. "source": {
  962. "type": "git",
  963. "url": "https://github.com/guzzle/psr7.git",
  964. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  965. },
  966. "dist": {
  967. "type": "zip",
  968. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  969. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  970. "shasum": ""
  971. },
  972. "require": {
  973. "php": ">=5.4.0",
  974. "psr/http-message": "~1.0"
  975. },
  976. "provide": {
  977. "psr/http-message-implementation": "1.0"
  978. },
  979. "require-dev": {
  980. "phpunit/phpunit": "~4.0"
  981. },
  982. "type": "library",
  983. "extra": {
  984. "branch-alias": {
  985. "dev-master": "1.4-dev"
  986. }
  987. },
  988. "autoload": {
  989. "psr-4": {
  990. "GuzzleHttp\\Psr7\\": "src/"
  991. },
  992. "files": [
  993. "src/functions_include.php"
  994. ]
  995. },
  996. "notification-url": "https://packagist.org/downloads/",
  997. "license": [
  998. "MIT"
  999. ],
  1000. "authors": [
  1001. {
  1002. "name": "Michael Dowling",
  1003. "email": "mtdowling@gmail.com",
  1004. "homepage": "https://github.com/mtdowling"
  1005. },
  1006. {
  1007. "name": "Tobias Schultze",
  1008. "homepage": "https://github.com/Tobion"
  1009. }
  1010. ],
  1011. "description": "PSR-7 message implementation that also provides common utility methods",
  1012. "keywords": [
  1013. "http",
  1014. "message",
  1015. "request",
  1016. "response",
  1017. "stream",
  1018. "uri",
  1019. "url"
  1020. ],
  1021. "time": "2017-03-20T17:10:46+00:00"
  1022. },
  1023. {
  1024. "name": "hightman/xunsearch",
  1025. "version": "1.4.10",
  1026. "source": {
  1027. "type": "git",
  1028. "url": "https://github.com/hightman/xs-sdk-php.git",
  1029. "reference": "20ecf25fd4281b8490594557d039ad1a5b3b16f6"
  1030. },
  1031. "dist": {
  1032. "type": "zip",
  1033. "url": "https://api.github.com/repos/hightman/xs-sdk-php/zipball/20ecf25fd4281b8490594557d039ad1a5b3b16f6",
  1034. "reference": "20ecf25fd4281b8490594557d039ad1a5b3b16f6",
  1035. "shasum": ""
  1036. },
  1037. "require": {
  1038. "ext-mbstring": "*",
  1039. "lib-pcre": "*",
  1040. "php": ">=5.3.0"
  1041. },
  1042. "bin": [
  1043. "util/xs"
  1044. ],
  1045. "type": "library",
  1046. "extra": {
  1047. "branch-alias": {
  1048. "dev-master": "1.4.x-dev"
  1049. }
  1050. },
  1051. "autoload": {
  1052. "classmap": [
  1053. "lib/",
  1054. "wrapper/yii-ext/"
  1055. ],
  1056. "psr-4": {
  1057. "hightman\\xunsearch\\": "wrapper/yii2-ext/"
  1058. }
  1059. },
  1060. "notification-url": "https://packagist.org/downloads/",
  1061. "license": [
  1062. "GPL-2.0+"
  1063. ],
  1064. "authors": [
  1065. {
  1066. "name": "hightman",
  1067. "email": "hightman@twomice.net",
  1068. "role": "Founder and project leader"
  1069. }
  1070. ],
  1071. "description": "xunsearch php sdk, include yii, yii2 supports",
  1072. "homepage": "http://www.xunsearch.com/",
  1073. "keywords": [
  1074. "search engine",
  1075. "xunsearch",
  1076. "yii",
  1077. "yii2"
  1078. ],
  1079. "time": "2016-03-23T15:34:06+00:00"
  1080. },
  1081. {
  1082. "name": "imagine/imagine",
  1083. "version": "v0.6.3",
  1084. "source": {
  1085. "type": "git",
  1086. "url": "https://github.com/php-imagine/Imagine.git",
  1087. "reference": "149041d2a1b517107bfe270ca2b1a17aa341715d"
  1088. },
  1089. "dist": {
  1090. "type": "zip",
  1091. "url": "https://api.github.com/repos/php-imagine/Imagine/zipball/149041d2a1b517107bfe270ca2b1a17aa341715d",
  1092. "reference": "149041d2a1b517107bfe270ca2b1a17aa341715d",
  1093. "shasum": ""
  1094. },
  1095. "require": {
  1096. "php": ">=5.3.2"
  1097. },
  1098. "require-dev": {
  1099. "sami/sami": "dev-master"
  1100. },
  1101. "suggest": {
  1102. "ext-gd": "to use the GD implementation",
  1103. "ext-gmagick": "to use the Gmagick implementation",
  1104. "ext-imagick": "to use the Imagick implementation"
  1105. },
  1106. "type": "library",
  1107. "extra": {
  1108. "branch-alias": {
  1109. "dev-develop": "0.7-dev"
  1110. }
  1111. },
  1112. "autoload": {
  1113. "psr-0": {
  1114. "Imagine": "lib/"
  1115. }
  1116. },
  1117. "notification-url": "https://packagist.org/downloads/",
  1118. "license": [
  1119. "MIT"
  1120. ],
  1121. "authors": [
  1122. {
  1123. "name": "Bulat Shakirzyanov",
  1124. "email": "mallluhuct@gmail.com",
  1125. "homepage": "http://avalanche123.com"
  1126. }
  1127. ],
  1128. "description": "Image processing for PHP 5.3",
  1129. "homepage": "http://imagine.readthedocs.org/",
  1130. "keywords": [
  1131. "drawing",
  1132. "graphics",
  1133. "image manipulation",
  1134. "image processing"
  1135. ],
  1136. "time": "2015-09-19T16:54:05+00:00"
  1137. },
  1138. {
  1139. "name": "kartik-v/bootstrap-popover-x",
  1140. "version": "v1.4.7",
  1141. "source": {
  1142. "type": "git",
  1143. "url": "https://github.com/kartik-v/bootstrap-popover-x.git",
  1144. "reference": "d4fc84a0776250f47840eb1594950a1702d8424d"
  1145. },
  1146. "dist": {
  1147. "type": "zip",
  1148. "url": "https://api.github.com/repos/kartik-v/bootstrap-popover-x/zipball/d4fc84a0776250f47840eb1594950a1702d8424d",
  1149. "reference": "d4fc84a0776250f47840eb1594950a1702d8424d",
  1150. "shasum": ""
  1151. },
  1152. "type": "library",
  1153. "extra": {
  1154. "branch-alias": {
  1155. "dev-master": "1.4.x-dev"
  1156. }
  1157. },
  1158. "autoload": {
  1159. "psr-4": {
  1160. "kartik\\plugins\\popover\\": ""
  1161. }
  1162. },
  1163. "notification-url": "https://packagist.org/downloads/",
  1164. "license": [
  1165. "BSD-3-Clause"
  1166. ],
  1167. "authors": [
  1168. {
  1169. "name": "Kartik Visweswaran",
  1170. "email": "kartikv2@gmail.com",
  1171. "homepage": "http://www.krajee.com/"
  1172. }
  1173. ],
  1174. "description": "Bootstrap Popover Extended - Popover with modal behavior, styling enhancements and more.",
  1175. "homepage": "https://github.com/kartik-v/bootstrap-popover-x",
  1176. "keywords": [
  1177. "bootstrap",
  1178. "extended",
  1179. "jquery",
  1180. "modal",
  1181. "modal-popover",
  1182. "popover",
  1183. "popover-x"
  1184. ],
  1185. "time": "2018-09-14T05:15:26+00:00"
  1186. },
  1187. {
  1188. "name": "kartik-v/yii2-editable",
  1189. "version": "v1.7.6",
  1190. "source": {
  1191. "type": "git",
  1192. "url": "https://github.com/kartik-v/yii2-editable.git",
  1193. "reference": "e07d78660e1d74cf831824855c46742d7ff784da"
  1194. },
  1195. "dist": {
  1196. "type": "zip",
  1197. "url": "https://api.github.com/repos/kartik-v/yii2-editable/zipball/e07d78660e1d74cf831824855c46742d7ff784da",
  1198. "reference": "e07d78660e1d74cf831824855c46742d7ff784da",
  1199. "shasum": ""
  1200. },
  1201. "require": {
  1202. "kartik-v/yii2-krajee-base": "~1.7",
  1203. "kartik-v/yii2-popover-x": "~1.3"
  1204. },
  1205. "type": "yii2-extension",
  1206. "extra": {
  1207. "branch-alias": {
  1208. "dev-master": "1.7.x-dev"
  1209. }
  1210. },
  1211. "autoload": {
  1212. "psr-4": {
  1213. "kartik\\editable\\": ""
  1214. }
  1215. },
  1216. "notification-url": "https://packagist.org/downloads/",
  1217. "license": [
  1218. "BSD-3-Clause"
  1219. ],
  1220. "authors": [
  1221. {
  1222. "name": "Kartik Visweswaran",
  1223. "email": "kartikv2@gmail.com",
  1224. "homepage": "http://www.krajee.com/"
  1225. }
  1226. ],
  1227. "description": "An enhanced editable widget for Yii 2.0 that allows easy editing of displayed data with numerous configuration possibilities.",
  1228. "homepage": "https://github.com/kartik-v/yii2-editable",
  1229. "keywords": [
  1230. "bootstrap",
  1231. "editable",
  1232. "input",
  1233. "jquery",
  1234. "popover",
  1235. "popover-x",
  1236. "widget"
  1237. ],
  1238. "time": "2017-06-28T05:11:45+00:00"
  1239. },
  1240. {
  1241. "name": "kartik-v/yii2-grid",
  1242. "version": "v3.1.1",
  1243. "source": {
  1244. "type": "git",
  1245. "url": "https://github.com/kartik-v/yii2-grid.git",
  1246. "reference": "fe29bcf8f46bde42aa3eb067851b38dc07cd4d8a"
  1247. },
  1248. "dist": {
  1249. "type": "zip",
  1250. "url": "https://api.github.com/repos/kartik-v/yii2-grid/zipball/fe29bcf8f46bde42aa3eb067851b38dc07cd4d8a",
  1251. "reference": "fe29bcf8f46bde42aa3eb067851b38dc07cd4d8a",
  1252. "shasum": ""
  1253. },
  1254. "require": {
  1255. "kartik-v/yii2-krajee-base": "~1.7"
  1256. },
  1257. "type": "yii2-extension",
  1258. "extra": {
  1259. "branch-alias": {
  1260. "dev-master": "3.1.x-dev"
  1261. }
  1262. },
  1263. "autoload": {
  1264. "psr-4": {
  1265. "kartik\\grid\\": ""
  1266. }
  1267. },
  1268. "notification-url": "https://packagist.org/downloads/",
  1269. "license": [
  1270. "BSD-3-Clause"
  1271. ],
  1272. "authors": [
  1273. {
  1274. "name": "Kartik Visweswaran",
  1275. "email": "kartikv2@gmail.com",
  1276. "homepage": "http://www.krajee.com/"
  1277. }
  1278. ],
  1279. "description": "Yii 2 GridView on steroids. Various enhancements and utilities for the Yii 2.0 GridView widget.",
  1280. "homepage": "https://github.com/kartik-v/yii2-grid",
  1281. "keywords": [
  1282. "extension",
  1283. "grid",
  1284. "widget",
  1285. "yii2"
  1286. ],
  1287. "time": "2016-04-09T20:31:20+00:00"
  1288. },
  1289. {
  1290. "name": "kartik-v/yii2-krajee-base",
  1291. "version": "v1.8.8",
  1292. "source": {
  1293. "type": "git",
  1294. "url": "https://github.com/kartik-v/yii2-krajee-base.git",
  1295. "reference": "2479241c03c87995cfc528ae7b297f5ae9e733cb"
  1296. },
  1297. "dist": {
  1298. "type": "zip",
  1299. "url": "https://api.github.com/repos/kartik-v/yii2-krajee-base/zipball/2479241c03c87995cfc528ae7b297f5ae9e733cb",
  1300. "reference": "2479241c03c87995cfc528ae7b297f5ae9e733cb",
  1301. "shasum": ""
  1302. },
  1303. "require": {
  1304. "yiisoft/yii2-bootstrap": "@dev"
  1305. },
  1306. "type": "yii2-extension",
  1307. "extra": {
  1308. "branch-alias": {
  1309. "dev-master": "1.8.x-dev"
  1310. }
  1311. },
  1312. "autoload": {
  1313. "psr-4": {
  1314. "kartik\\base\\": ""
  1315. }
  1316. },
  1317. "notification-url": "https://packagist.org/downloads/",
  1318. "license": [
  1319. "BSD-3-Clause"
  1320. ],
  1321. "authors": [
  1322. {
  1323. "name": "Kartik Visweswaran",
  1324. "email": "kartikv2@gmail.com",
  1325. "homepage": "http://www.krajee.com/"
  1326. }
  1327. ],
  1328. "description": "Base library and foundation components for all Yii2 Krajee extensions.",
  1329. "homepage": "https://github.com/kartik-v/yii2-krajee-base",
  1330. "keywords": [
  1331. "base",
  1332. "extension",
  1333. "foundation",
  1334. "krajee",
  1335. "widget",
  1336. "yii2"
  1337. ],
  1338. "time": "2017-02-22T05:58:53+00:00"
  1339. },
  1340. {
  1341. "name": "kartik-v/yii2-popover-x",
  1342. "version": "v1.3.4",
  1343. "source": {
  1344. "type": "git",
  1345. "url": "https://github.com/kartik-v/yii2-popover-x.git",
  1346. "reference": "58837d63e65caa41f0c13e671d1e2abeec17887d"
  1347. },
  1348. "dist": {
  1349. "type": "zip",
  1350. "url": "https://api.github.com/repos/kartik-v/yii2-popover-x/zipball/58837d63e65caa41f0c13e671d1e2abeec17887d",
  1351. "reference": "58837d63e65caa41f0c13e671d1e2abeec17887d",
  1352. "shasum": ""
  1353. },
  1354. "require": {
  1355. "kartik-v/bootstrap-popover-x": "~1.4",
  1356. "kartik-v/yii2-krajee-base": "~1.7"
  1357. },
  1358. "type": "yii2-extension",
  1359. "autoload": {
  1360. "psr-4": {
  1361. "kartik\\popover\\": ""
  1362. }
  1363. },
  1364. "notification-url": "https://packagist.org/downloads/",
  1365. "license": [
  1366. "BSD-3-Clause"
  1367. ],
  1368. "authors": [
  1369. {
  1370. "name": "Kartik Visweswaran",
  1371. "email": "kartikv2@gmail.com",
  1372. "homepage": "http://www.krajee.com/"
  1373. }
  1374. ],
  1375. "description": "An extended bootstrap 3.0 popover widget which combines both the bootstrap popover and modal features and includes various new styling enhancements.",
  1376. "homepage": "https://github.com/kartik-v/yii2-popover-x",
  1377. "keywords": [
  1378. "bootstrap",
  1379. "extended",
  1380. "jquery",
  1381. "modal",
  1382. "modal-popover",
  1383. "popover",
  1384. "popover-x"
  1385. ],
  1386. "time": "2017-09-08T04:30:42+00:00"
  1387. },
  1388. {
  1389. "name": "kartik-v/yii2-widget-datepicker",
  1390. "version": "v1.4.2",
  1391. "source": {
  1392. "type": "git",
  1393. "url": "https://github.com/kartik-v/yii2-widget-datepicker.git",
  1394. "reference": "8738f6dc3211d949b05189ba103aab786143fc6c"
  1395. },
  1396. "dist": {
  1397. "type": "zip",
  1398. "url": "https://api.github.com/repos/kartik-v/yii2-widget-datepicker/zipball/8738f6dc3211d949b05189ba103aab786143fc6c",
  1399. "reference": "8738f6dc3211d949b05189ba103aab786143fc6c",
  1400. "shasum": ""
  1401. },
  1402. "require": {
  1403. "kartik-v/yii2-krajee-base": "~1.7"
  1404. },
  1405. "type": "yii2-extension",
  1406. "extra": {
  1407. "branch-alias": {
  1408. "dev-master": "1.4.x-dev"
  1409. }
  1410. },
  1411. "autoload": {
  1412. "psr-4": {
  1413. "kartik\\date\\": ""
  1414. }
  1415. },
  1416. "notification-url": "https://packagist.org/downloads/",
  1417. "license": [
  1418. "BSD-3-Clause"
  1419. ],
  1420. "authors": [
  1421. {
  1422. "name": "Kartik Visweswaran",
  1423. "email": "kartikv2@gmail.com",
  1424. "homepage": "http://www.krajee.com/"
  1425. }
  1426. ],
  1427. "description": "Enhanced Yii2 wrapper for the bootstrap datepicker plugin (sub repo split from yii2-widgets).",
  1428. "homepage": "https://github.com/kartik-v/yii2-widget-datepicker",
  1429. "keywords": [
  1430. "date",
  1431. "extension",
  1432. "form",
  1433. "jquery",
  1434. "picker",
  1435. "plugin",
  1436. "select2",
  1437. "widget",
  1438. "yii2"
  1439. ],
  1440. "time": "2016-09-04T10:52:50+00:00"
  1441. },
  1442. {
  1443. "name": "kartik-v/yii2-widget-datetimepicker",
  1444. "version": "v1.4.4",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/kartik-v/yii2-widget-datetimepicker.git",
  1448. "reference": "e843520aca008dc0807aa7ea99bfab2cc03c9a3c"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/kartik-v/yii2-widget-datetimepicker/zipball/e843520aca008dc0807aa7ea99bfab2cc03c9a3c",
  1453. "reference": "e843520aca008dc0807aa7ea99bfab2cc03c9a3c",
  1454. "shasum": ""
  1455. },
  1456. "require": {
  1457. "kartik-v/yii2-krajee-base": "*"
  1458. },
  1459. "type": "yii2-extension",
  1460. "autoload": {
  1461. "psr-4": {
  1462. "kartik\\datetime\\": ""
  1463. }
  1464. },
  1465. "notification-url": "https://packagist.org/downloads/",
  1466. "license": [
  1467. "BSD-3-Clause"
  1468. ],
  1469. "authors": [
  1470. {
  1471. "name": "Kartik Visweswaran",
  1472. "email": "kartikv2@gmail.com",
  1473. "homepage": "http://www.krajee.com/"
  1474. }
  1475. ],
  1476. "description": "Enhanced Yii2 wrapper for the bootstrap datetimepicker plugin (sub repo split from yii2-widgets)",
  1477. "homepage": "https://github.com/kartik-v/yii2-widget-datetimepicker",
  1478. "keywords": [
  1479. "datetime",
  1480. "extension",
  1481. "form",
  1482. "jquery",
  1483. "picker",
  1484. "plugin",
  1485. "select2",
  1486. "widget",
  1487. "yii2"
  1488. ],
  1489. "time": "2017-06-08T05:53:28+00:00"
  1490. },
  1491. {
  1492. "name": "kartik-v/yii2-widget-select2",
  1493. "version": "v2.0.9",
  1494. "source": {
  1495. "type": "git",
  1496. "url": "https://github.com/kartik-v/yii2-widget-select2.git",
  1497. "reference": "03f202e9e2415f4c84e93a64074d85677fd0cc51"
  1498. },
  1499. "dist": {
  1500. "type": "zip",
  1501. "url": "https://api.github.com/repos/kartik-v/yii2-widget-select2/zipball/03f202e9e2415f4c84e93a64074d85677fd0cc51",
  1502. "reference": "03f202e9e2415f4c84e93a64074d85677fd0cc51",
  1503. "shasum": ""
  1504. },
  1505. "require": {
  1506. "kartik-v/yii2-krajee-base": "~1.7"
  1507. },
  1508. "type": "yii2-extension",
  1509. "extra": {
  1510. "branch-alias": {
  1511. "dev-master": "2.0.x-dev"
  1512. }
  1513. },
  1514. "autoload": {
  1515. "psr-4": {
  1516. "kartik\\select2\\": ""
  1517. }
  1518. },
  1519. "notification-url": "https://packagist.org/downloads/",
  1520. "license": [
  1521. "BSD-3-Clause"
  1522. ],
  1523. "authors": [
  1524. {
  1525. "name": "Kartik Visweswaran",
  1526. "email": "kartikv2@gmail.com",
  1527. "homepage": "http://www.krajee.com/"
  1528. }
  1529. ],
  1530. "description": "Enhanced Yii2 wrapper for the Select2 jQuery plugin (sub repo split from yii2-widgets).",
  1531. "homepage": "https://github.com/kartik-v/yii2-widget-select2",
  1532. "keywords": [
  1533. "dropdown",
  1534. "extension",
  1535. "form",
  1536. "jquery",
  1537. "plugin",
  1538. "select2",
  1539. "widget",
  1540. "yii2"
  1541. ],
  1542. "time": "2017-04-12T09:00:24+00:00"
  1543. },
  1544. {
  1545. "name": "kosinix/grafika",
  1546. "version": "2.0.8",
  1547. "source": {
  1548. "type": "git",
  1549. "url": "https://github.com/kosinix/grafika.git",
  1550. "reference": "211f61fc334b8b36616b23e8af7c5727971d96ee"
  1551. },
  1552. "dist": {
  1553. "type": "zip",
  1554. "url": "https://api.github.com/repos/kosinix/grafika/zipball/211f61fc334b8b36616b23e8af7c5727971d96ee",
  1555. "reference": "211f61fc334b8b36616b23e8af7c5727971d96ee",
  1556. "shasum": ""
  1557. },
  1558. "require": {
  1559. "php": ">=5.3"
  1560. },
  1561. "type": "library",
  1562. "autoload": {
  1563. "psr-4": {
  1564. "Grafika\\": "src/Grafika"
  1565. }
  1566. },
  1567. "notification-url": "https://packagist.org/downloads/",
  1568. "license": [
  1569. "MIT",
  1570. "GPL-2.0+"
  1571. ],
  1572. "authors": [
  1573. {
  1574. "name": "Nico Amarilla",
  1575. "homepage": "https://www.kosinix.com"
  1576. }
  1577. ],
  1578. "description": "An image manipulation library for PHP.",
  1579. "homepage": "http://kosinix.github.io/grafika",
  1580. "keywords": [
  1581. "grafika"
  1582. ],
  1583. "time": "2017-06-20T03:13:49+00:00"
  1584. },
  1585. {
  1586. "name": "league/flysystem",
  1587. "version": "1.0.40",
  1588. "source": {
  1589. "type": "git",
  1590. "url": "https://github.com/thephpleague/flysystem.git",
  1591. "reference": "3828f0b24e2c1918bb362d57a53205d6dc8fde61"
  1592. },
  1593. "dist": {
  1594. "type": "zip",
  1595. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3828f0b24e2c1918bb362d57a53205d6dc8fde61",
  1596. "reference": "3828f0b24e2c1918bb362d57a53205d6dc8fde61",
  1597. "shasum": ""
  1598. },
  1599. "require": {
  1600. "php": ">=5.5.9"
  1601. },
  1602. "conflict": {
  1603. "league/flysystem-sftp": "<1.0.6"
  1604. },
  1605. "require-dev": {
  1606. "ext-fileinfo": "*",
  1607. "mockery/mockery": "~0.9",
  1608. "phpspec/phpspec": "^2.2",
  1609. "phpunit/phpunit": "~4.8"
  1610. },
  1611. "suggest": {
  1612. "ext-fileinfo": "Required for MimeType",
  1613. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1614. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1615. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1616. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1617. "league/flysystem-copy": "Allows you to use Copy.com storage",
  1618. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1619. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1620. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1621. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1622. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1623. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage"
  1624. },
  1625. "type": "library",
  1626. "extra": {
  1627. "branch-alias": {
  1628. "dev-master": "1.1-dev"
  1629. }
  1630. },
  1631. "autoload": {
  1632. "psr-4": {
  1633. "League\\Flysystem\\": "src/"
  1634. }
  1635. },
  1636. "notification-url": "https://packagist.org/downloads/",
  1637. "license": [
  1638. "MIT"
  1639. ],
  1640. "authors": [
  1641. {
  1642. "name": "Frank de Jonge",
  1643. "email": "info@frenky.net"
  1644. }
  1645. ],
  1646. "description": "Filesystem abstraction: Many filesystems, one API.",
  1647. "keywords": [
  1648. "Cloud Files",
  1649. "WebDAV",
  1650. "abstraction",
  1651. "aws",
  1652. "cloud",
  1653. "copy.com",
  1654. "dropbox",
  1655. "file systems",
  1656. "files",
  1657. "filesystem",
  1658. "filesystems",
  1659. "ftp",
  1660. "rackspace",
  1661. "remote",
  1662. "s3",
  1663. "sftp",
  1664. "storage"
  1665. ],
  1666. "time": "2017-04-28T10:15:08+00:00"
  1667. },
  1668. {
  1669. "name": "light/yii2-layer",
  1670. "version": "0.1.2",
  1671. "source": {
  1672. "type": "git",
  1673. "url": "https://github.com/lichunqiang/yii2-layer.git",
  1674. "reference": "fb592a63b2e3200169c191f9cebecf527f843263"
  1675. },
  1676. "dist": {
  1677. "type": "zip",
  1678. "url": "https://api.github.com/repos/lichunqiang/yii2-layer/zipball/fb592a63b2e3200169c191f9cebecf527f843263",
  1679. "reference": "fb592a63b2e3200169c191f9cebecf527f843263",
  1680. "shasum": ""
  1681. },
  1682. "require": {
  1683. "php": ">=5.4.0",
  1684. "yiisoft/yii2": "*"
  1685. },
  1686. "type": "library",
  1687. "autoload": {
  1688. "psr-4": {
  1689. "light\\assets\\": ""
  1690. }
  1691. },
  1692. "notification-url": "https://packagist.org/downloads/",
  1693. "license": [
  1694. "MIT"
  1695. ],
  1696. "authors": [
  1697. {
  1698. "name": "lichunqiang",
  1699. "email": "light-li@hotmail.com"
  1700. }
  1701. ],
  1702. "description": "yii2 asset plugin for layer",
  1703. "time": "2015-04-24T16:07:16+00:00"
  1704. },
  1705. {
  1706. "name": "lvht/geohash",
  1707. "version": "v1.1.0",
  1708. "source": {
  1709. "type": "git",
  1710. "url": "https://github.com/lvht/geohash.git",
  1711. "reference": "bbba3e1b487f0ec2e5e666c1bc9d1d4277990a29"
  1712. },
  1713. "dist": {
  1714. "type": "zip",
  1715. "url": "https://api.github.com/repos/lvht/geohash/zipball/bbba3e1b487f0ec2e5e666c1bc9d1d4277990a29",
  1716. "reference": "bbba3e1b487f0ec2e5e666c1bc9d1d4277990a29",
  1717. "shasum": ""
  1718. },
  1719. "require": {
  1720. "php": ">=5.4.0"
  1721. },
  1722. "type": "library",
  1723. "autoload": {
  1724. "psr-4": {
  1725. "Lvht\\": "src"
  1726. }
  1727. },
  1728. "notification-url": "https://packagist.org/downloads/",
  1729. "license": [
  1730. "MIT"
  1731. ],
  1732. "authors": [
  1733. {
  1734. "name": "吕海涛",
  1735. "email": "git@lvht.net",
  1736. "homepage": "https://github.com/lvht"
  1737. }
  1738. ],
  1739. "description": "geohash like python-geohash",
  1740. "homepage": "http://github.com/lvht/geohash",
  1741. "keywords": [
  1742. "geohash"
  1743. ],
  1744. "time": "2017-08-24T11:05:30+00:00"
  1745. },
  1746. {
  1747. "name": "markbaker/complex",
  1748. "version": "1.5.0",
  1749. "source": {
  1750. "type": "git",
  1751. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1752. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2"
  1753. },
  1754. "dist": {
  1755. "type": "zip",
  1756. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1757. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1758. "shasum": ""
  1759. },
  1760. "require": {
  1761. "php": "^5.6.0|^7.0"
  1762. },
  1763. "require-dev": {
  1764. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  1765. "phpcompatibility/php-compatibility": "^9.0",
  1766. "phpdocumentor/phpdocumentor": "2.*",
  1767. "phploc/phploc": "^4.0|^5.0|^6.0|^7.0",
  1768. "phpmd/phpmd": "2.*",
  1769. "phpunit/phpunit": "^4.8.35|^5.0|^6.0|^7.0",
  1770. "sebastian/phpcpd": "2.*",
  1771. "squizlabs/php_codesniffer": "^3.4.0"
  1772. },
  1773. "type": "library",
  1774. "autoload": {
  1775. "files": [
  1776. "classes/src/functions/abs.php",
  1777. "classes/src/functions/acos.php",
  1778. "classes/src/functions/acosh.php",
  1779. "classes/src/functions/acot.php",
  1780. "classes/src/functions/acoth.php",
  1781. "classes/src/functions/acsc.php",
  1782. "classes/src/functions/acsch.php",
  1783. "classes/src/functions/argument.php",
  1784. "classes/src/functions/asec.php",
  1785. "classes/src/functions/asech.php",
  1786. "classes/src/functions/asin.php",
  1787. "classes/src/functions/asinh.php",
  1788. "classes/src/functions/atan.php",
  1789. "classes/src/functions/atanh.php",
  1790. "classes/src/functions/conjugate.php",
  1791. "classes/src/functions/cos.php",
  1792. "classes/src/functions/cosh.php",
  1793. "classes/src/functions/cot.php",
  1794. "classes/src/functions/coth.php",
  1795. "classes/src/functions/csc.php",
  1796. "classes/src/functions/csch.php",
  1797. "classes/src/functions/exp.php",
  1798. "classes/src/functions/inverse.php",
  1799. "classes/src/functions/ln.php",
  1800. "classes/src/functions/log2.php",
  1801. "classes/src/functions/log10.php",
  1802. "classes/src/functions/negative.php",
  1803. "classes/src/functions/pow.php",
  1804. "classes/src/functions/rho.php",
  1805. "classes/src/functions/sec.php",
  1806. "classes/src/functions/sech.php",
  1807. "classes/src/functions/sin.php",
  1808. "classes/src/functions/sinh.php",
  1809. "classes/src/functions/sqrt.php",
  1810. "classes/src/functions/tan.php",
  1811. "classes/src/functions/tanh.php",
  1812. "classes/src/functions/theta.php",
  1813. "classes/src/operations/add.php",
  1814. "classes/src/operations/subtract.php",
  1815. "classes/src/operations/multiply.php",
  1816. "classes/src/operations/divideby.php",
  1817. "classes/src/operations/divideinto.php"
  1818. ],
  1819. "psr-4": {
  1820. "Complex\\": "classes/src/"
  1821. }
  1822. },
  1823. "notification-url": "https://packagist.org/downloads/",
  1824. "license": [
  1825. "MIT"
  1826. ],
  1827. "authors": [
  1828. {
  1829. "name": "Mark Baker",
  1830. "email": "mark@lange.demon.co.uk"
  1831. }
  1832. ],
  1833. "description": "PHP Class for working with complex numbers",
  1834. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1835. "keywords": [
  1836. "complex",
  1837. "mathematics"
  1838. ],
  1839. "time": "2020-08-26T19:47:57+00:00"
  1840. },
  1841. {
  1842. "name": "markbaker/matrix",
  1843. "version": "1.2.3",
  1844. "source": {
  1845. "type": "git",
  1846. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1847. "reference": "44bb1ab01811116f01fe216ab37d921dccc6c10d"
  1848. },
  1849. "dist": {
  1850. "type": "zip",
  1851. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/44bb1ab01811116f01fe216ab37d921dccc6c10d",
  1852. "reference": "44bb1ab01811116f01fe216ab37d921dccc6c10d",
  1853. "shasum": ""
  1854. },
  1855. "require": {
  1856. "php": "^5.6.0|^7.0.0"
  1857. },
  1858. "require-dev": {
  1859. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1860. "phpcompatibility/php-compatibility": "dev-master",
  1861. "phploc/phploc": "^4",
  1862. "phpmd/phpmd": "dev-master",
  1863. "phpunit/phpunit": "^5.7|^6.0|7.0",
  1864. "sebastian/phpcpd": "^3.0",
  1865. "squizlabs/php_codesniffer": "^3.0@dev"
  1866. },
  1867. "type": "library",
  1868. "autoload": {
  1869. "files": [
  1870. "classes/src/Functions/adjoint.php",
  1871. "classes/src/Functions/antidiagonal.php",
  1872. "classes/src/Functions/cofactors.php",
  1873. "classes/src/Functions/determinant.php",
  1874. "classes/src/Functions/diagonal.php",
  1875. "classes/src/Functions/identity.php",
  1876. "classes/src/Functions/inverse.php",
  1877. "classes/src/Functions/minors.php",
  1878. "classes/src/Functions/trace.php",
  1879. "classes/src/Functions/transpose.php",
  1880. "classes/src/Operations/add.php",
  1881. "classes/src/Operations/directsum.php",
  1882. "classes/src/Operations/subtract.php",
  1883. "classes/src/Operations/multiply.php",
  1884. "classes/src/Operations/divideby.php",
  1885. "classes/src/Operations/divideinto.php"
  1886. ],
  1887. "psr-4": {
  1888. "Matrix\\": "classes/src/"
  1889. }
  1890. },
  1891. "notification-url": "https://packagist.org/downloads/",
  1892. "license": [
  1893. "MIT"
  1894. ],
  1895. "authors": [
  1896. {
  1897. "name": "Mark Baker",
  1898. "email": "mark@lange.demon.co.uk"
  1899. }
  1900. ],
  1901. "description": "PHP Class for working with matrices",
  1902. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1903. "keywords": [
  1904. "mathematics",
  1905. "matrix",
  1906. "vector"
  1907. ],
  1908. "time": "2021-01-26T14:36:01+00:00"
  1909. },
  1910. {
  1911. "name": "mobiledetect/mobiledetectlib",
  1912. "version": "2.8.25",
  1913. "source": {
  1914. "type": "git",
  1915. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  1916. "reference": "f0896b5c7274d1450023b0b376240be902c3251c"
  1917. },
  1918. "dist": {
  1919. "type": "zip",
  1920. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/f0896b5c7274d1450023b0b376240be902c3251c",
  1921. "reference": "f0896b5c7274d1450023b0b376240be902c3251c",
  1922. "shasum": ""
  1923. },
  1924. "require": {
  1925. "php": ">=5.0.0"
  1926. },
  1927. "require-dev": {
  1928. "phpunit/phpunit": "*"
  1929. },
  1930. "type": "library",
  1931. "autoload": {
  1932. "classmap": [
  1933. "Mobile_Detect.php"
  1934. ],
  1935. "psr-0": {
  1936. "Detection": "namespaced/"
  1937. }
  1938. },
  1939. "notification-url": "https://packagist.org/downloads/",
  1940. "license": [
  1941. "MIT"
  1942. ],
  1943. "authors": [
  1944. {
  1945. "name": "Serban Ghita",
  1946. "email": "serbanghita@gmail.com",
  1947. "homepage": "http://mobiledetect.net",
  1948. "role": "Developer"
  1949. }
  1950. ],
  1951. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  1952. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  1953. "keywords": [
  1954. "detect mobile devices",
  1955. "mobile",
  1956. "mobile detect",
  1957. "mobile detector",
  1958. "php mobile detect"
  1959. ],
  1960. "time": "2017-03-29T13:59:30+00:00"
  1961. },
  1962. {
  1963. "name": "mtdowling/cron-expression",
  1964. "version": "v1.2.0",
  1965. "source": {
  1966. "type": "git",
  1967. "url": "https://github.com/mtdowling/cron-expression.git",
  1968. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  1969. },
  1970. "dist": {
  1971. "type": "zip",
  1972. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
  1973. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  1974. "shasum": ""
  1975. },
  1976. "require": {
  1977. "php": ">=5.3.2"
  1978. },
  1979. "require-dev": {
  1980. "phpunit/phpunit": "~4.0|~5.0"
  1981. },
  1982. "type": "library",
  1983. "autoload": {
  1984. "psr-4": {
  1985. "Cron\\": "src/Cron/"
  1986. }
  1987. },
  1988. "notification-url": "https://packagist.org/downloads/",
  1989. "license": [
  1990. "MIT"
  1991. ],
  1992. "authors": [
  1993. {
  1994. "name": "Michael Dowling",
  1995. "email": "mtdowling@gmail.com",
  1996. "homepage": "https://github.com/mtdowling"
  1997. }
  1998. ],
  1999. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  2000. "keywords": [
  2001. "cron",
  2002. "schedule"
  2003. ],
  2004. "abandoned": "dragonmantank/cron-expression",
  2005. "time": "2017-01-23T04:29:33+00:00"
  2006. },
  2007. {
  2008. "name": "omnilight/yii2-scheduling",
  2009. "version": "1.0.7",
  2010. "source": {
  2011. "type": "git",
  2012. "url": "https://github.com/omnilight/yii2-scheduling.git",
  2013. "reference": "e71404bc7a62ed86c78d841b70b5fb8cf96155da"
  2014. },
  2015. "dist": {
  2016. "type": "zip",
  2017. "url": "https://api.github.com/repos/omnilight/yii2-scheduling/zipball/e71404bc7a62ed86c78d841b70b5fb8cf96155da",
  2018. "reference": "e71404bc7a62ed86c78d841b70b5fb8cf96155da",
  2019. "shasum": ""
  2020. },
  2021. "require": {
  2022. "mtdowling/cron-expression": "~1.0",
  2023. "php": ">=5.4.0",
  2024. "symfony/process": "2.6.*",
  2025. "yiisoft/yii2": "2.0.*"
  2026. },
  2027. "suggest": {
  2028. "guzzlehttp/guzzle": "Required to use the thenPing method on schedules (~5.0)."
  2029. },
  2030. "type": "yii2-extension",
  2031. "extra": {
  2032. "bootstrap": "omnilight\\scheduling\\Bootstrap"
  2033. },
  2034. "autoload": {
  2035. "psr-4": {
  2036. "omnilight\\scheduling\\": ""
  2037. }
  2038. },
  2039. "notification-url": "https://packagist.org/downloads/",
  2040. "authors": [
  2041. {
  2042. "name": "Pavel Agalecky",
  2043. "email": "pavel.agalecky@gmail.com"
  2044. }
  2045. ],
  2046. "description": "Scheduling extension for Yii2 framework",
  2047. "keywords": [
  2048. "cron",
  2049. "scheduling",
  2050. "yii"
  2051. ],
  2052. "time": "2016-07-09T17:56:42+00:00"
  2053. },
  2054. {
  2055. "name": "phpoffice/phpspreadsheet",
  2056. "version": "1.8.2",
  2057. "source": {
  2058. "type": "git",
  2059. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2060. "reference": "0c1346a1956347590b7db09533966307d20cb7cc"
  2061. },
  2062. "dist": {
  2063. "type": "zip",
  2064. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/0c1346a1956347590b7db09533966307d20cb7cc",
  2065. "reference": "0c1346a1956347590b7db09533966307d20cb7cc",
  2066. "shasum": ""
  2067. },
  2068. "require": {
  2069. "ext-ctype": "*",
  2070. "ext-dom": "*",
  2071. "ext-fileinfo": "*",
  2072. "ext-gd": "*",
  2073. "ext-iconv": "*",
  2074. "ext-libxml": "*",
  2075. "ext-mbstring": "*",
  2076. "ext-simplexml": "*",
  2077. "ext-xml": "*",
  2078. "ext-xmlreader": "*",
  2079. "ext-xmlwriter": "*",
  2080. "ext-zip": "*",
  2081. "ext-zlib": "*",
  2082. "markbaker/complex": "^1.4",
  2083. "markbaker/matrix": "^1.1",
  2084. "php": "^5.6|^7.0",
  2085. "psr/simple-cache": "^1.0"
  2086. },
  2087. "require-dev": {
  2088. "doctrine/instantiator": "^1.0.0",
  2089. "dompdf/dompdf": "^0.8.0",
  2090. "friendsofphp/php-cs-fixer": "@stable",
  2091. "jpgraph/jpgraph": "^4.0",
  2092. "mpdf/mpdf": "^7.0.0",
  2093. "phpcompatibility/php-compatibility": "^8.0",
  2094. "phpunit/phpunit": "^5.7",
  2095. "squizlabs/php_codesniffer": "^3.3",
  2096. "tecnickcom/tcpdf": "^6.2"
  2097. },
  2098. "suggest": {
  2099. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2100. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2101. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2102. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2103. },
  2104. "type": "library",
  2105. "autoload": {
  2106. "psr-4": {
  2107. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2108. }
  2109. },
  2110. "notification-url": "https://packagist.org/downloads/",
  2111. "license": [
  2112. "LGPL-2.1-or-later"
  2113. ],
  2114. "authors": [
  2115. {
  2116. "name": "Erik Tilt"
  2117. },
  2118. {
  2119. "name": "Adrien Crivelli"
  2120. },
  2121. {
  2122. "name": "Maarten Balliauw",
  2123. "homepage": "https://blog.maartenballiauw.be"
  2124. },
  2125. {
  2126. "name": "Mark Baker",
  2127. "homepage": "https://markbakeruk.net"
  2128. },
  2129. {
  2130. "name": "Franck Lefevre",
  2131. "homepage": "https://rootslabs.net"
  2132. }
  2133. ],
  2134. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2135. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2136. "keywords": [
  2137. "OpenXML",
  2138. "excel",
  2139. "gnumeric",
  2140. "ods",
  2141. "php",
  2142. "spreadsheet",
  2143. "xls",
  2144. "xlsx"
  2145. ],
  2146. "time": "2019-07-08T21:21:25+00:00"
  2147. },
  2148. {
  2149. "name": "pimple/pimple",
  2150. "version": "v3.1.0",
  2151. "source": {
  2152. "type": "git",
  2153. "url": "https://github.com/silexphp/Pimple.git",
  2154. "reference": "279b56046fb368deacf77e2f8f3bdcea45cc367a"
  2155. },
  2156. "dist": {
  2157. "type": "zip",
  2158. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/279b56046fb368deacf77e2f8f3bdcea45cc367a",
  2159. "reference": "279b56046fb368deacf77e2f8f3bdcea45cc367a",
  2160. "shasum": ""
  2161. },
  2162. "require": {
  2163. "php": ">=5.3.0",
  2164. "psr/container": "^1.0"
  2165. },
  2166. "require-dev": {
  2167. "symfony/phpunit-bridge": "^3.2"
  2168. },
  2169. "type": "library",
  2170. "extra": {
  2171. "branch-alias": {
  2172. "dev-master": "3.1.x-dev"
  2173. }
  2174. },
  2175. "autoload": {
  2176. "psr-0": {
  2177. "Pimple": "src/"
  2178. }
  2179. },
  2180. "notification-url": "https://packagist.org/downloads/",
  2181. "license": [
  2182. "MIT"
  2183. ],
  2184. "authors": [
  2185. {
  2186. "name": "Fabien Potencier",
  2187. "email": "fabien@symfony.com"
  2188. }
  2189. ],
  2190. "description": "Pimple, a simple Dependency Injection Container",
  2191. "homepage": "http://pimple.sensiolabs.org",
  2192. "keywords": [
  2193. "container",
  2194. "dependency injection"
  2195. ],
  2196. "time": "2017-07-03T14:06:46+00:00"
  2197. },
  2198. {
  2199. "name": "psr/container",
  2200. "version": "1.0.0",
  2201. "source": {
  2202. "type": "git",
  2203. "url": "https://github.com/php-fig/container.git",
  2204. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2205. },
  2206. "dist": {
  2207. "type": "zip",
  2208. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2209. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2210. "shasum": ""
  2211. },
  2212. "require": {
  2213. "php": ">=5.3.0"
  2214. },
  2215. "type": "library",
  2216. "extra": {
  2217. "branch-alias": {
  2218. "dev-master": "1.0.x-dev"
  2219. }
  2220. },
  2221. "autoload": {
  2222. "psr-4": {
  2223. "Psr\\Container\\": "src/"
  2224. }
  2225. },
  2226. "notification-url": "https://packagist.org/downloads/",
  2227. "license": [
  2228. "MIT"
  2229. ],
  2230. "authors": [
  2231. {
  2232. "name": "PHP-FIG",
  2233. "homepage": "http://www.php-fig.org/"
  2234. }
  2235. ],
  2236. "description": "Common Container Interface (PHP FIG PSR-11)",
  2237. "homepage": "https://github.com/php-fig/container",
  2238. "keywords": [
  2239. "PSR-11",
  2240. "container",
  2241. "container-interface",
  2242. "container-interop",
  2243. "psr"
  2244. ],
  2245. "time": "2017-02-14T16:28:37+00:00"
  2246. },
  2247. {
  2248. "name": "psr/http-message",
  2249. "version": "1.0.1",
  2250. "source": {
  2251. "type": "git",
  2252. "url": "https://github.com/php-fig/http-message.git",
  2253. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2254. },
  2255. "dist": {
  2256. "type": "zip",
  2257. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2258. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2259. "shasum": ""
  2260. },
  2261. "require": {
  2262. "php": ">=5.3.0"
  2263. },
  2264. "type": "library",
  2265. "extra": {
  2266. "branch-alias": {
  2267. "dev-master": "1.0.x-dev"
  2268. }
  2269. },
  2270. "autoload": {
  2271. "psr-4": {
  2272. "Psr\\Http\\Message\\": "src/"
  2273. }
  2274. },
  2275. "notification-url": "https://packagist.org/downloads/",
  2276. "license": [
  2277. "MIT"
  2278. ],
  2279. "authors": [
  2280. {
  2281. "name": "PHP-FIG",
  2282. "homepage": "http://www.php-fig.org/"
  2283. }
  2284. ],
  2285. "description": "Common interface for HTTP messages",
  2286. "homepage": "https://github.com/php-fig/http-message",
  2287. "keywords": [
  2288. "http",
  2289. "http-message",
  2290. "psr",
  2291. "psr-7",
  2292. "request",
  2293. "response"
  2294. ],
  2295. "time": "2016-08-06T14:39:51+00:00"
  2296. },
  2297. {
  2298. "name": "psr/simple-cache",
  2299. "version": "1.0.1",
  2300. "source": {
  2301. "type": "git",
  2302. "url": "https://github.com/php-fig/simple-cache.git",
  2303. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2304. },
  2305. "dist": {
  2306. "type": "zip",
  2307. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2308. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2309. "shasum": ""
  2310. },
  2311. "require": {
  2312. "php": ">=5.3.0"
  2313. },
  2314. "type": "library",
  2315. "extra": {
  2316. "branch-alias": {
  2317. "dev-master": "1.0.x-dev"
  2318. }
  2319. },
  2320. "autoload": {
  2321. "psr-4": {
  2322. "Psr\\SimpleCache\\": "src/"
  2323. }
  2324. },
  2325. "notification-url": "https://packagist.org/downloads/",
  2326. "license": [
  2327. "MIT"
  2328. ],
  2329. "authors": [
  2330. {
  2331. "name": "PHP-FIG",
  2332. "homepage": "http://www.php-fig.org/"
  2333. }
  2334. ],
  2335. "description": "Common interfaces for simple caching",
  2336. "keywords": [
  2337. "cache",
  2338. "caching",
  2339. "psr",
  2340. "psr-16",
  2341. "simple-cache"
  2342. ],
  2343. "time": "2017-10-23T01:57:42+00:00"
  2344. },
  2345. {
  2346. "name": "qiniu/php-sdk",
  2347. "version": "v7.1.3",
  2348. "source": {
  2349. "type": "git",
  2350. "url": "https://github.com/qiniu/php-sdk.git",
  2351. "reference": "b91653485e36b4797d7a302cc86c49695e47a642"
  2352. },
  2353. "dist": {
  2354. "type": "zip",
  2355. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/b91653485e36b4797d7a302cc86c49695e47a642",
  2356. "reference": "b91653485e36b4797d7a302cc86c49695e47a642",
  2357. "shasum": ""
  2358. },
  2359. "require": {
  2360. "php": ">=5.3.3"
  2361. },
  2362. "require-dev": {
  2363. "phpunit/phpunit": "~4.0",
  2364. "squizlabs/php_codesniffer": "~2.3"
  2365. },
  2366. "type": "library",
  2367. "autoload": {
  2368. "psr-4": {
  2369. "Qiniu\\": "src/Qiniu"
  2370. },
  2371. "files": [
  2372. "src/Qiniu/functions.php"
  2373. ]
  2374. },
  2375. "notification-url": "https://packagist.org/downloads/",
  2376. "license": [
  2377. "MIT"
  2378. ],
  2379. "authors": [
  2380. {
  2381. "name": "Qiniu",
  2382. "email": "sdk@qiniu.com",
  2383. "homepage": "http://www.qiniu.com"
  2384. }
  2385. ],
  2386. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  2387. "homepage": "http://developer.qiniu.com/",
  2388. "keywords": [
  2389. "cloud",
  2390. "qiniu",
  2391. "sdk",
  2392. "storage"
  2393. ],
  2394. "time": "2016-11-18T02:57:31+00:00"
  2395. },
  2396. {
  2397. "name": "raulfraile/distill",
  2398. "version": "v0.9.10",
  2399. "source": {
  2400. "type": "git",
  2401. "url": "https://github.com/raulfraile/distill.git",
  2402. "reference": "9ab33b98651bd15c2d6d70bf8c78eda0068fe52b"
  2403. },
  2404. "dist": {
  2405. "type": "zip",
  2406. "url": "https://api.github.com/repos/raulfraile/distill/zipball/9ab33b98651bd15c2d6d70bf8c78eda0068fe52b",
  2407. "reference": "9ab33b98651bd15c2d6d70bf8c78eda0068fe52b",
  2408. "shasum": ""
  2409. },
  2410. "require": {
  2411. "php": ">=5.4.0",
  2412. "pimple/pimple": "~3.0",
  2413. "symfony/filesystem": "~2.4|^3.0",
  2414. "symfony/process": "~2.4|^3.0"
  2415. },
  2416. "require-dev": {
  2417. "mockery/mockery": "0.9.1",
  2418. "raulfraile/ladybug": "~1.0",
  2419. "symfony/finder": "~2.4|^3.0"
  2420. },
  2421. "suggest": {
  2422. "ext-rar": "Allows to uncompress rar files using RarArchive",
  2423. "ext-zip": "Allows to uncompress zip files using ZipArchive"
  2424. },
  2425. "type": "library",
  2426. "autoload": {
  2427. "psr-4": {
  2428. "Distill\\": "src/"
  2429. }
  2430. },
  2431. "notification-url": "https://packagist.org/downloads/",
  2432. "license": [
  2433. "MIT"
  2434. ],
  2435. "authors": [
  2436. {
  2437. "name": "Raul Fraile",
  2438. "email": "raulfraile@gmail.com"
  2439. }
  2440. ],
  2441. "description": "Smart compressed files extractor",
  2442. "keywords": [
  2443. "7zip",
  2444. "archive",
  2445. "bz2",
  2446. "bzip",
  2447. "bzip2",
  2448. "cab",
  2449. "compression",
  2450. "epub",
  2451. "extractor",
  2452. "gzip",
  2453. "phar",
  2454. "rar",
  2455. "strategy",
  2456. "tar.gz",
  2457. "tar.xz",
  2458. "tgz",
  2459. "unzip",
  2460. "xz",
  2461. "zip"
  2462. ],
  2463. "time": "2015-12-15T06:50:39+00:00"
  2464. },
  2465. {
  2466. "name": "slavkovrn/yii2-lightbox",
  2467. "version": "v1.0.1",
  2468. "source": {
  2469. "type": "git",
  2470. "url": "https://github.com/SlavKoVrn/yii2-lightbox.git",
  2471. "reference": "e2bc3c51a29fda59cb710cf309bcd1b4de75c311"
  2472. },
  2473. "dist": {
  2474. "type": "zip",
  2475. "url": "https://api.github.com/repos/SlavKoVrn/yii2-lightbox/zipball/e2bc3c51a29fda59cb710cf309bcd1b4de75c311",
  2476. "reference": "e2bc3c51a29fda59cb710cf309bcd1b4de75c311",
  2477. "shasum": ""
  2478. },
  2479. "require": {
  2480. "yiisoft/yii2": "~2.0"
  2481. },
  2482. "type": "yii2-extension",
  2483. "extra": {
  2484. "asset-installer-paths": {
  2485. "npm-asset-library": "vendor/npm",
  2486. "bower-asset-library": "vendor/bower"
  2487. }
  2488. },
  2489. "autoload": {
  2490. "psr-4": {
  2491. "slavkovrn\\lightbox\\": "src/"
  2492. }
  2493. },
  2494. "notification-url": "https://packagist.org/downloads/",
  2495. "license": [
  2496. "BSD-3-Clause"
  2497. ],
  2498. "authors": [
  2499. {
  2500. "name": "Viacheslav Kolesnikov",
  2501. "email": "slavko.chita@gmail.com",
  2502. "homepage": "http://yii2.kadastrcard.ru"
  2503. }
  2504. ],
  2505. "description": "Yii2 LightBox image galary widget uses Lightbox v2.10.0 by Lokesh Dhakar",
  2506. "keywords": [
  2507. "Image galary widget",
  2508. "jQuery Lightbox v2.10.0 by Lokesh Dhakar",
  2509. "yii 2",
  2510. "yii2"
  2511. ],
  2512. "time": "2018-10-14T11:49:11+00:00"
  2513. },
  2514. {
  2515. "name": "swiftmailer/swiftmailer",
  2516. "version": "v5.4.8",
  2517. "source": {
  2518. "type": "git",
  2519. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2520. "reference": "9a06dc570a0367850280eefd3f1dc2da45aef517"
  2521. },
  2522. "dist": {
  2523. "type": "zip",
  2524. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/9a06dc570a0367850280eefd3f1dc2da45aef517",
  2525. "reference": "9a06dc570a0367850280eefd3f1dc2da45aef517",
  2526. "shasum": ""
  2527. },
  2528. "require": {
  2529. "php": ">=5.3.3"
  2530. },
  2531. "require-dev": {
  2532. "mockery/mockery": "~0.9.1",
  2533. "symfony/phpunit-bridge": "~3.2"
  2534. },
  2535. "type": "library",
  2536. "extra": {
  2537. "branch-alias": {
  2538. "dev-master": "5.4-dev"
  2539. }
  2540. },
  2541. "autoload": {
  2542. "files": [
  2543. "lib/swift_required.php"
  2544. ]
  2545. },
  2546. "notification-url": "https://packagist.org/downloads/",
  2547. "license": [
  2548. "MIT"
  2549. ],
  2550. "authors": [
  2551. {
  2552. "name": "Chris Corbyn"
  2553. },
  2554. {
  2555. "name": "Fabien Potencier",
  2556. "email": "fabien@symfony.com"
  2557. }
  2558. ],
  2559. "description": "Swiftmailer, free feature-rich PHP mailer",
  2560. "homepage": "http://swiftmailer.org",
  2561. "keywords": [
  2562. "email",
  2563. "mail",
  2564. "mailer"
  2565. ],
  2566. "abandoned": "symfony/mailer",
  2567. "time": "2017-05-01T15:54:03+00:00"
  2568. },
  2569. {
  2570. "name": "symfony/browser-kit",
  2571. "version": "v3.3.4",
  2572. "source": {
  2573. "type": "git",
  2574. "url": "https://github.com/symfony/browser-kit.git",
  2575. "reference": "3a4435e79a8401746e8525e98039199d0924b4e5"
  2576. },
  2577. "dist": {
  2578. "type": "zip",
  2579. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/3a4435e79a8401746e8525e98039199d0924b4e5",
  2580. "reference": "3a4435e79a8401746e8525e98039199d0924b4e5",
  2581. "shasum": ""
  2582. },
  2583. "require": {
  2584. "php": ">=5.5.9",
  2585. "symfony/dom-crawler": "~2.8|~3.0"
  2586. },
  2587. "require-dev": {
  2588. "symfony/css-selector": "~2.8|~3.0",
  2589. "symfony/process": "~2.8|~3.0"
  2590. },
  2591. "suggest": {
  2592. "symfony/process": ""
  2593. },
  2594. "type": "library",
  2595. "extra": {
  2596. "branch-alias": {
  2597. "dev-master": "3.3-dev"
  2598. }
  2599. },
  2600. "autoload": {
  2601. "psr-4": {
  2602. "Symfony\\Component\\BrowserKit\\": ""
  2603. },
  2604. "exclude-from-classmap": [
  2605. "/Tests/"
  2606. ]
  2607. },
  2608. "notification-url": "https://packagist.org/downloads/",
  2609. "license": [
  2610. "MIT"
  2611. ],
  2612. "authors": [
  2613. {
  2614. "name": "Fabien Potencier",
  2615. "email": "fabien@symfony.com"
  2616. },
  2617. {
  2618. "name": "Symfony Community",
  2619. "homepage": "https://symfony.com/contributors"
  2620. }
  2621. ],
  2622. "description": "Symfony BrowserKit Component",
  2623. "homepage": "https://symfony.com",
  2624. "time": "2017-06-24T09:29:48+00:00"
  2625. },
  2626. {
  2627. "name": "symfony/css-selector",
  2628. "version": "v3.3.4",
  2629. "source": {
  2630. "type": "git",
  2631. "url": "https://github.com/symfony/css-selector.git",
  2632. "reference": "4d882dced7b995d5274293039370148e291808f2"
  2633. },
  2634. "dist": {
  2635. "type": "zip",
  2636. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4d882dced7b995d5274293039370148e291808f2",
  2637. "reference": "4d882dced7b995d5274293039370148e291808f2",
  2638. "shasum": ""
  2639. },
  2640. "require": {
  2641. "php": ">=5.5.9"
  2642. },
  2643. "type": "library",
  2644. "extra": {
  2645. "branch-alias": {
  2646. "dev-master": "3.3-dev"
  2647. }
  2648. },
  2649. "autoload": {
  2650. "psr-4": {
  2651. "Symfony\\Component\\CssSelector\\": ""
  2652. },
  2653. "exclude-from-classmap": [
  2654. "/Tests/"
  2655. ]
  2656. },
  2657. "notification-url": "https://packagist.org/downloads/",
  2658. "license": [
  2659. "MIT"
  2660. ],
  2661. "authors": [
  2662. {
  2663. "name": "Jean-François Simon",
  2664. "email": "jeanfrancois.simon@sensiolabs.com"
  2665. },
  2666. {
  2667. "name": "Fabien Potencier",
  2668. "email": "fabien@symfony.com"
  2669. },
  2670. {
  2671. "name": "Symfony Community",
  2672. "homepage": "https://symfony.com/contributors"
  2673. }
  2674. ],
  2675. "description": "Symfony CssSelector Component",
  2676. "homepage": "https://symfony.com",
  2677. "time": "2017-05-01T15:01:29+00:00"
  2678. },
  2679. {
  2680. "name": "symfony/dom-crawler",
  2681. "version": "v3.3.4",
  2682. "source": {
  2683. "type": "git",
  2684. "url": "https://github.com/symfony/dom-crawler.git",
  2685. "reference": "fc2c588ce376e9fe04a7b8c79e3ec62fe32d95b1"
  2686. },
  2687. "dist": {
  2688. "type": "zip",
  2689. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/fc2c588ce376e9fe04a7b8c79e3ec62fe32d95b1",
  2690. "reference": "fc2c588ce376e9fe04a7b8c79e3ec62fe32d95b1",
  2691. "shasum": ""
  2692. },
  2693. "require": {
  2694. "php": ">=5.5.9",
  2695. "symfony/polyfill-mbstring": "~1.0"
  2696. },
  2697. "require-dev": {
  2698. "symfony/css-selector": "~2.8|~3.0"
  2699. },
  2700. "suggest": {
  2701. "symfony/css-selector": ""
  2702. },
  2703. "type": "library",
  2704. "extra": {
  2705. "branch-alias": {
  2706. "dev-master": "3.3-dev"
  2707. }
  2708. },
  2709. "autoload": {
  2710. "psr-4": {
  2711. "Symfony\\Component\\DomCrawler\\": ""
  2712. },
  2713. "exclude-from-classmap": [
  2714. "/Tests/"
  2715. ]
  2716. },
  2717. "notification-url": "https://packagist.org/downloads/",
  2718. "license": [
  2719. "MIT"
  2720. ],
  2721. "authors": [
  2722. {
  2723. "name": "Fabien Potencier",
  2724. "email": "fabien@symfony.com"
  2725. },
  2726. {
  2727. "name": "Symfony Community",
  2728. "homepage": "https://symfony.com/contributors"
  2729. }
  2730. ],
  2731. "description": "Symfony DomCrawler Component",
  2732. "homepage": "https://symfony.com",
  2733. "time": "2017-05-25T23:10:31+00:00"
  2734. },
  2735. {
  2736. "name": "symfony/filesystem",
  2737. "version": "v3.3.4",
  2738. "source": {
  2739. "type": "git",
  2740. "url": "https://github.com/symfony/filesystem.git",
  2741. "reference": "311fa718389efbd8b627c272b9324a62437018cc"
  2742. },
  2743. "dist": {
  2744. "type": "zip",
  2745. "url": "https://api.github.com/repos/symfony/filesystem/zipball/311fa718389efbd8b627c272b9324a62437018cc",
  2746. "reference": "311fa718389efbd8b627c272b9324a62437018cc",
  2747. "shasum": ""
  2748. },
  2749. "require": {
  2750. "php": ">=5.5.9"
  2751. },
  2752. "type": "library",
  2753. "extra": {
  2754. "branch-alias": {
  2755. "dev-master": "3.3-dev"
  2756. }
  2757. },
  2758. "autoload": {
  2759. "psr-4": {
  2760. "Symfony\\Component\\Filesystem\\": ""
  2761. },
  2762. "exclude-from-classmap": [
  2763. "/Tests/"
  2764. ]
  2765. },
  2766. "notification-url": "https://packagist.org/downloads/",
  2767. "license": [
  2768. "MIT"
  2769. ],
  2770. "authors": [
  2771. {
  2772. "name": "Fabien Potencier",
  2773. "email": "fabien@symfony.com"
  2774. },
  2775. {
  2776. "name": "Symfony Community",
  2777. "homepage": "https://symfony.com/contributors"
  2778. }
  2779. ],
  2780. "description": "Symfony Filesystem Component",
  2781. "homepage": "https://symfony.com",
  2782. "time": "2017-06-24T09:29:48+00:00"
  2783. },
  2784. {
  2785. "name": "symfony/polyfill-mbstring",
  2786. "version": "v1.4.0",
  2787. "source": {
  2788. "type": "git",
  2789. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2790. "reference": "f29dca382a6485c3cbe6379f0c61230167681937"
  2791. },
  2792. "dist": {
  2793. "type": "zip",
  2794. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f29dca382a6485c3cbe6379f0c61230167681937",
  2795. "reference": "f29dca382a6485c3cbe6379f0c61230167681937",
  2796. "shasum": ""
  2797. },
  2798. "require": {
  2799. "php": ">=5.3.3"
  2800. },
  2801. "suggest": {
  2802. "ext-mbstring": "For best performance"
  2803. },
  2804. "type": "library",
  2805. "extra": {
  2806. "branch-alias": {
  2807. "dev-master": "1.4-dev"
  2808. }
  2809. },
  2810. "autoload": {
  2811. "psr-4": {
  2812. "Symfony\\Polyfill\\Mbstring\\": ""
  2813. },
  2814. "files": [
  2815. "bootstrap.php"
  2816. ]
  2817. },
  2818. "notification-url": "https://packagist.org/downloads/",
  2819. "license": [
  2820. "MIT"
  2821. ],
  2822. "authors": [
  2823. {
  2824. "name": "Nicolas Grekas",
  2825. "email": "p@tchwork.com"
  2826. },
  2827. {
  2828. "name": "Symfony Community",
  2829. "homepage": "https://symfony.com/contributors"
  2830. }
  2831. ],
  2832. "description": "Symfony polyfill for the Mbstring extension",
  2833. "homepage": "https://symfony.com",
  2834. "keywords": [
  2835. "compatibility",
  2836. "mbstring",
  2837. "polyfill",
  2838. "portable",
  2839. "shim"
  2840. ],
  2841. "time": "2017-06-09T14:24:12+00:00"
  2842. },
  2843. {
  2844. "name": "symfony/process",
  2845. "version": "v2.6.13",
  2846. "target-dir": "Symfony/Component/Process",
  2847. "source": {
  2848. "type": "git",
  2849. "url": "https://github.com/symfony/process.git",
  2850. "reference": "57f1e88bb5dafa449b83f9f265b11d52d517b3e9"
  2851. },
  2852. "dist": {
  2853. "type": "zip",
  2854. "url": "https://api.github.com/repos/symfony/process/zipball/57f1e88bb5dafa449b83f9f265b11d52d517b3e9",
  2855. "reference": "57f1e88bb5dafa449b83f9f265b11d52d517b3e9",
  2856. "shasum": ""
  2857. },
  2858. "require": {
  2859. "php": ">=5.3.3"
  2860. },
  2861. "require-dev": {
  2862. "symfony/phpunit-bridge": "~2.7"
  2863. },
  2864. "type": "library",
  2865. "extra": {
  2866. "branch-alias": {
  2867. "dev-master": "2.6-dev"
  2868. }
  2869. },
  2870. "autoload": {
  2871. "psr-0": {
  2872. "Symfony\\Component\\Process\\": ""
  2873. }
  2874. },
  2875. "notification-url": "https://packagist.org/downloads/",
  2876. "license": [
  2877. "MIT"
  2878. ],
  2879. "authors": [
  2880. {
  2881. "name": "Fabien Potencier",
  2882. "email": "fabien@symfony.com"
  2883. },
  2884. {
  2885. "name": "Symfony Community",
  2886. "homepage": "https://symfony.com/contributors"
  2887. }
  2888. ],
  2889. "description": "Symfony Process Component",
  2890. "homepage": "https://symfony.com",
  2891. "time": "2015-06-30T16:10:16+00:00"
  2892. },
  2893. {
  2894. "name": "vlucas/phpdotenv",
  2895. "version": "v2.4.0",
  2896. "source": {
  2897. "type": "git",
  2898. "url": "https://github.com/vlucas/phpdotenv.git",
  2899. "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c"
  2900. },
  2901. "dist": {
  2902. "type": "zip",
  2903. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c",
  2904. "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c",
  2905. "shasum": ""
  2906. },
  2907. "require": {
  2908. "php": ">=5.3.9"
  2909. },
  2910. "require-dev": {
  2911. "phpunit/phpunit": "^4.8 || ^5.0"
  2912. },
  2913. "type": "library",
  2914. "extra": {
  2915. "branch-alias": {
  2916. "dev-master": "2.4-dev"
  2917. }
  2918. },
  2919. "autoload": {
  2920. "psr-4": {
  2921. "Dotenv\\": "src/"
  2922. }
  2923. },
  2924. "notification-url": "https://packagist.org/downloads/",
  2925. "license": [
  2926. "BSD-3-Clause-Attribution"
  2927. ],
  2928. "authors": [
  2929. {
  2930. "name": "Vance Lucas",
  2931. "email": "vance@vancelucas.com",
  2932. "homepage": "http://www.vancelucas.com"
  2933. }
  2934. ],
  2935. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2936. "keywords": [
  2937. "dotenv",
  2938. "env",
  2939. "environment"
  2940. ],
  2941. "time": "2016-09-01T10:05:43+00:00"
  2942. },
  2943. {
  2944. "name": "vova07/yii2-imperavi-widget",
  2945. "version": "1.2.10",
  2946. "source": {
  2947. "type": "git",
  2948. "url": "https://github.com/vova07/yii2-imperavi-widget.git",
  2949. "reference": "6835bfe3c6d77d00c3033a7f8a54e85ac446d5ac"
  2950. },
  2951. "dist": {
  2952. "type": "zip",
  2953. "url": "https://api.github.com/repos/vova07/yii2-imperavi-widget/zipball/6835bfe3c6d77d00c3033a7f8a54e85ac446d5ac",
  2954. "reference": "6835bfe3c6d77d00c3033a7f8a54e85ac446d5ac",
  2955. "shasum": ""
  2956. },
  2957. "require": {
  2958. "yiisoft/yii2": "*"
  2959. },
  2960. "require-dev": {
  2961. "mikey179/vfsstream": "~1",
  2962. "phpunit/phpunit": "4.*",
  2963. "scrutinizer/ocular": "~1.1"
  2964. },
  2965. "type": "yii2-extension",
  2966. "extra": {
  2967. "branch-alias": {
  2968. "dev-master": "1.0.x-dev"
  2969. },
  2970. "asset-installer-paths": {
  2971. "bower-asset-library": "vendor/bower"
  2972. }
  2973. },
  2974. "autoload": {
  2975. "psr-4": {
  2976. "vova07\\imperavi\\": "src"
  2977. }
  2978. },
  2979. "notification-url": "https://packagist.org/downloads/",
  2980. "license": [
  2981. "BSD-3-Clause"
  2982. ],
  2983. "authors": [
  2984. {
  2985. "name": "Crudu Vasile",
  2986. "email": "bazillio07@yandex.ru",
  2987. "homepage": "https://github.com/vova07",
  2988. "role": "Developer"
  2989. }
  2990. ],
  2991. "description": "The imperavi redactor widget for Yii 2 framework.",
  2992. "homepage": "https://github.com/vova07/yii2-imperavi-widget",
  2993. "keywords": [
  2994. "Redactor",
  2995. "extension",
  2996. "imperavi",
  2997. "widget",
  2998. "wysiwyg",
  2999. "yii",
  3000. "yii 2",
  3001. "yii2"
  3002. ],
  3003. "time": "2015-12-10T21:16:23+00:00"
  3004. },
  3005. {
  3006. "name": "yiisoft/yii2",
  3007. "version": "2.0.12",
  3008. "source": {
  3009. "type": "git",
  3010. "url": "https://github.com/yiisoft/yii2-framework.git",
  3011. "reference": "70acbecc75cb26b6cd66d16be0b06e4b73db190d"
  3012. },
  3013. "dist": {
  3014. "type": "zip",
  3015. "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/70acbecc75cb26b6cd66d16be0b06e4b73db190d",
  3016. "reference": "70acbecc75cb26b6cd66d16be0b06e4b73db190d",
  3017. "shasum": ""
  3018. },
  3019. "require": {
  3020. "bower-asset/jquery": "2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  3021. "bower-asset/jquery.inputmask": "~3.2.2 | ~3.3.5",
  3022. "bower-asset/punycode": "1.3.*",
  3023. "bower-asset/yii2-pjax": "~2.0.1",
  3024. "cebe/markdown": "~1.0.0 | ~1.1.0",
  3025. "ext-ctype": "*",
  3026. "ext-mbstring": "*",
  3027. "ezyang/htmlpurifier": "~4.6",
  3028. "lib-pcre": "*",
  3029. "php": ">=5.4.0",
  3030. "yiisoft/yii2-composer": "~2.0.4"
  3031. },
  3032. "bin": [
  3033. "yii"
  3034. ],
  3035. "type": "library",
  3036. "extra": {
  3037. "branch-alias": {
  3038. "dev-master": "2.0.x-dev"
  3039. }
  3040. },
  3041. "autoload": {
  3042. "psr-4": {
  3043. "yii\\": ""
  3044. }
  3045. },
  3046. "notification-url": "https://packagist.org/downloads/",
  3047. "license": [
  3048. "BSD-3-Clause"
  3049. ],
  3050. "authors": [
  3051. {
  3052. "name": "Qiang Xue",
  3053. "email": "qiang.xue@gmail.com",
  3054. "homepage": "http://www.yiiframework.com/",
  3055. "role": "Founder and project lead"
  3056. },
  3057. {
  3058. "name": "Alexander Makarov",
  3059. "email": "sam@rmcreative.ru",
  3060. "homepage": "http://rmcreative.ru/",
  3061. "role": "Core framework development"
  3062. },
  3063. {
  3064. "name": "Maurizio Domba",
  3065. "homepage": "http://mdomba.info/",
  3066. "role": "Core framework development"
  3067. },
  3068. {
  3069. "name": "Carsten Brandt",
  3070. "email": "mail@cebe.cc",
  3071. "homepage": "http://cebe.cc/",
  3072. "role": "Core framework development"
  3073. },
  3074. {
  3075. "name": "Timur Ruziev",
  3076. "email": "resurtm@gmail.com",
  3077. "homepage": "http://resurtm.com/",
  3078. "role": "Core framework development"
  3079. },
  3080. {
  3081. "name": "Paul Klimov",
  3082. "email": "klimov.paul@gmail.com",
  3083. "role": "Core framework development"
  3084. },
  3085. {
  3086. "name": "Dmitry Naumenko",
  3087. "email": "d.naumenko.a@gmail.com",
  3088. "role": "Core framework development"
  3089. },
  3090. {
  3091. "name": "Boudewijn Vahrmeijer",
  3092. "email": "info@dynasource.eu",
  3093. "homepage": "http://dynasource.eu",
  3094. "role": "Core framework development"
  3095. }
  3096. ],
  3097. "description": "Yii PHP Framework Version 2",
  3098. "homepage": "http://www.yiiframework.com/",
  3099. "keywords": [
  3100. "framework",
  3101. "yii2"
  3102. ],
  3103. "time": "2017-06-05T14:33:41+00:00"
  3104. },
  3105. {
  3106. "name": "yiisoft/yii2-authclient",
  3107. "version": "2.1.3",
  3108. "source": {
  3109. "type": "git",
  3110. "url": "https://github.com/yiisoft/yii2-authclient.git",
  3111. "reference": "eec33d8584558aac1ec8d68ba605a898cee2d6e8"
  3112. },
  3113. "dist": {
  3114. "type": "zip",
  3115. "url": "https://api.github.com/repos/yiisoft/yii2-authclient/zipball/eec33d8584558aac1ec8d68ba605a898cee2d6e8",
  3116. "reference": "eec33d8584558aac1ec8d68ba605a898cee2d6e8",
  3117. "shasum": ""
  3118. },
  3119. "require": {
  3120. "yiisoft/yii2-httpclient": "~2.0.1"
  3121. },
  3122. "suggest": {
  3123. "spomky-labs/jose": "required for JWS,JWT or JWK related flows like OpenIDConnect"
  3124. },
  3125. "type": "yii2-extension",
  3126. "extra": {
  3127. "branch-alias": {
  3128. "dev-master": "2.0.x-dev"
  3129. }
  3130. },
  3131. "autoload": {
  3132. "psr-4": {
  3133. "yii\\authclient\\": ""
  3134. }
  3135. },
  3136. "notification-url": "https://packagist.org/downloads/",
  3137. "license": [
  3138. "BSD-3-Clause"
  3139. ],
  3140. "authors": [
  3141. {
  3142. "name": "Paul Klimov",
  3143. "email": "klimov.paul@gmail.com"
  3144. }
  3145. ],
  3146. "description": "External authentication via OAuth and OpenID for the Yii framework",
  3147. "keywords": [
  3148. "OpenID Connect",
  3149. "OpenId",
  3150. "api",
  3151. "auth",
  3152. "oauth",
  3153. "yii2"
  3154. ],
  3155. "time": "2017-06-23T09:45:49+00:00"
  3156. },
  3157. {
  3158. "name": "yiisoft/yii2-bootstrap",
  3159. "version": "2.0.6",
  3160. "source": {
  3161. "type": "git",
  3162. "url": "https://github.com/yiisoft/yii2-bootstrap.git",
  3163. "reference": "3fd2b8c950cce79d60e9702d6bcb24eb3c80f6c5"
  3164. },
  3165. "dist": {
  3166. "type": "zip",
  3167. "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/3fd2b8c950cce79d60e9702d6bcb24eb3c80f6c5",
  3168. "reference": "3fd2b8c950cce79d60e9702d6bcb24eb3c80f6c5",
  3169. "shasum": ""
  3170. },
  3171. "require": {
  3172. "bower-asset/bootstrap": "3.3.* | 3.2.* | 3.1.*",
  3173. "yiisoft/yii2": ">=2.0.6"
  3174. },
  3175. "type": "yii2-extension",
  3176. "extra": {
  3177. "branch-alias": {
  3178. "dev-master": "2.0.x-dev"
  3179. },
  3180. "asset-installer-paths": {
  3181. "npm-asset-library": "vendor/npm",
  3182. "bower-asset-library": "vendor/bower"
  3183. }
  3184. },
  3185. "autoload": {
  3186. "psr-4": {
  3187. "yii\\bootstrap\\": ""
  3188. }
  3189. },
  3190. "notification-url": "https://packagist.org/downloads/",
  3191. "license": [
  3192. "BSD-3-Clause"
  3193. ],
  3194. "authors": [
  3195. {
  3196. "name": "Qiang Xue",
  3197. "email": "qiang.xue@gmail.com"
  3198. }
  3199. ],
  3200. "description": "The Twitter Bootstrap extension for the Yii framework",
  3201. "keywords": [
  3202. "bootstrap",
  3203. "yii2"
  3204. ],
  3205. "time": "2016-03-17T03:29:28+00:00"
  3206. },
  3207. {
  3208. "name": "yiisoft/yii2-composer",
  3209. "version": "2.0.5",
  3210. "source": {
  3211. "type": "git",
  3212. "url": "https://github.com/yiisoft/yii2-composer.git",
  3213. "reference": "3f4923c2bde6caf3f5b88cc22fdd5770f52f8df2"
  3214. },
  3215. "dist": {
  3216. "type": "zip",
  3217. "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/3f4923c2bde6caf3f5b88cc22fdd5770f52f8df2",
  3218. "reference": "3f4923c2bde6caf3f5b88cc22fdd5770f52f8df2",
  3219. "shasum": ""
  3220. },
  3221. "require": {
  3222. "composer-plugin-api": "^1.0"
  3223. },
  3224. "require-dev": {
  3225. "composer/composer": "^1.0"
  3226. },
  3227. "type": "composer-plugin",
  3228. "extra": {
  3229. "class": "yii\\composer\\Plugin",
  3230. "branch-alias": {
  3231. "dev-master": "2.0.x-dev"
  3232. }
  3233. },
  3234. "autoload": {
  3235. "psr-4": {
  3236. "yii\\composer\\": ""
  3237. }
  3238. },
  3239. "notification-url": "https://packagist.org/downloads/",
  3240. "license": [
  3241. "BSD-3-Clause"
  3242. ],
  3243. "authors": [
  3244. {
  3245. "name": "Qiang Xue",
  3246. "email": "qiang.xue@gmail.com"
  3247. }
  3248. ],
  3249. "description": "The composer plugin for Yii extension installer",
  3250. "keywords": [
  3251. "composer",
  3252. "extension installer",
  3253. "yii2"
  3254. ],
  3255. "time": "2016-12-20T13:26:02+00:00"
  3256. },
  3257. {
  3258. "name": "yiisoft/yii2-httpclient",
  3259. "version": "2.0.4",
  3260. "source": {
  3261. "type": "git",
  3262. "url": "https://github.com/yiisoft/yii2-httpclient.git",
  3263. "reference": "720e3c9bdda260abffe61babfe39b91c4308ac4c"
  3264. },
  3265. "dist": {
  3266. "type": "zip",
  3267. "url": "https://api.github.com/repos/yiisoft/yii2-httpclient/zipball/720e3c9bdda260abffe61babfe39b91c4308ac4c",
  3268. "reference": "720e3c9bdda260abffe61babfe39b91c4308ac4c",
  3269. "shasum": ""
  3270. },
  3271. "require": {
  3272. "yiisoft/yii2": "~2.0.0"
  3273. },
  3274. "type": "yii2-extension",
  3275. "extra": {
  3276. "branch-alias": {
  3277. "dev-master": "2.0.x-dev"
  3278. }
  3279. },
  3280. "autoload": {
  3281. "psr-4": {
  3282. "yii\\httpclient\\": ""
  3283. }
  3284. },
  3285. "notification-url": "https://packagist.org/downloads/",
  3286. "license": [
  3287. "BSD-3-Clause"
  3288. ],
  3289. "authors": [
  3290. {
  3291. "name": "Paul Klimov",
  3292. "email": "klimov.paul@gmail.com"
  3293. }
  3294. ],
  3295. "description": "HTTP client extension for the Yii framework",
  3296. "keywords": [
  3297. "curl",
  3298. "http",
  3299. "httpclient",
  3300. "yii2"
  3301. ],
  3302. "time": "2017-06-23T09:36:13+00:00"
  3303. },
  3304. {
  3305. "name": "yiisoft/yii2-imagine",
  3306. "version": "2.1.0",
  3307. "source": {
  3308. "type": "git",
  3309. "url": "https://github.com/yiisoft/yii2-imagine.git",
  3310. "reference": "59dcd0b43c2b0e5495c7e5c0320e2cbc1cd57411"
  3311. },
  3312. "dist": {
  3313. "type": "zip",
  3314. "url": "https://api.github.com/repos/yiisoft/yii2-imagine/zipball/59dcd0b43c2b0e5495c7e5c0320e2cbc1cd57411",
  3315. "reference": "59dcd0b43c2b0e5495c7e5c0320e2cbc1cd57411",
  3316. "shasum": ""
  3317. },
  3318. "require": {
  3319. "imagine/imagine": "~0.6.0",
  3320. "yiisoft/yii2": "~2.0.0"
  3321. },
  3322. "type": "yii2-extension",
  3323. "extra": {
  3324. "branch-alias": {
  3325. "dev-master": "2.0.x-dev"
  3326. }
  3327. },
  3328. "autoload": {
  3329. "psr-4": {
  3330. "yii\\imagine\\": ""
  3331. }
  3332. },
  3333. "notification-url": "https://packagist.org/downloads/",
  3334. "license": [
  3335. "BSD-3-Clause"
  3336. ],
  3337. "authors": [
  3338. {
  3339. "name": "Antonio Ramirez",
  3340. "email": "amigo.cobos@gmail.com"
  3341. }
  3342. ],
  3343. "description": "The Imagine integration for the Yii framework",
  3344. "keywords": [
  3345. "helper",
  3346. "image",
  3347. "imagine",
  3348. "yii2"
  3349. ],
  3350. "time": "2016-11-03T19:28:39+00:00"
  3351. },
  3352. {
  3353. "name": "yiisoft/yii2-redis",
  3354. "version": "2.0.6",
  3355. "source": {
  3356. "type": "git",
  3357. "url": "https://github.com/yiisoft/yii2-redis.git",
  3358. "reference": "5dc55d5187923219e9db86d149d56acf1f5a6ee8"
  3359. },
  3360. "dist": {
  3361. "type": "zip",
  3362. "url": "https://api.github.com/repos/yiisoft/yii2-redis/zipball/5dc55d5187923219e9db86d149d56acf1f5a6ee8",
  3363. "reference": "5dc55d5187923219e9db86d149d56acf1f5a6ee8",
  3364. "shasum": ""
  3365. },
  3366. "require": {
  3367. "yiisoft/yii2": "~2.0.11"
  3368. },
  3369. "type": "yii2-extension",
  3370. "extra": {
  3371. "branch-alias": {
  3372. "dev-master": "2.0.x-dev"
  3373. }
  3374. },
  3375. "autoload": {
  3376. "psr-4": {
  3377. "yii\\redis\\": ""
  3378. }
  3379. },
  3380. "notification-url": "https://packagist.org/downloads/",
  3381. "license": [
  3382. "BSD-3-Clause"
  3383. ],
  3384. "authors": [
  3385. {
  3386. "name": "Carsten Brandt",
  3387. "email": "mail@cebe.cc"
  3388. }
  3389. ],
  3390. "description": "Redis Cache, Session and ActiveRecord for the Yii framework",
  3391. "keywords": [
  3392. "active-record",
  3393. "cache",
  3394. "redis",
  3395. "session",
  3396. "yii2"
  3397. ],
  3398. "time": "2017-04-05T13:42:11+00:00"
  3399. },
  3400. {
  3401. "name": "yiisoft/yii2-swiftmailer",
  3402. "version": "2.0.7",
  3403. "source": {
  3404. "type": "git",
  3405. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  3406. "reference": "8a03a62cbcb82e7697d3002eb43a8d2637f566ec"
  3407. },
  3408. "dist": {
  3409. "type": "zip",
  3410. "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/8a03a62cbcb82e7697d3002eb43a8d2637f566ec",
  3411. "reference": "8a03a62cbcb82e7697d3002eb43a8d2637f566ec",
  3412. "shasum": ""
  3413. },
  3414. "require": {
  3415. "swiftmailer/swiftmailer": "~5.0",
  3416. "yiisoft/yii2": "~2.0.4"
  3417. },
  3418. "type": "yii2-extension",
  3419. "extra": {
  3420. "branch-alias": {
  3421. "dev-master": "2.0.x-dev"
  3422. }
  3423. },
  3424. "autoload": {
  3425. "psr-4": {
  3426. "yii\\swiftmailer\\": ""
  3427. }
  3428. },
  3429. "notification-url": "https://packagist.org/downloads/",
  3430. "license": [
  3431. "BSD-3-Clause"
  3432. ],
  3433. "authors": [
  3434. {
  3435. "name": "Paul Klimov",
  3436. "email": "klimov.paul@gmail.com"
  3437. }
  3438. ],
  3439. "description": "The SwiftMailer integration for the Yii framework",
  3440. "keywords": [
  3441. "email",
  3442. "mail",
  3443. "mailer",
  3444. "swift",
  3445. "swiftmailer",
  3446. "yii2"
  3447. ],
  3448. "time": "2017-05-01T08:29:00+00:00"
  3449. }
  3450. ],
  3451. "packages-dev": [
  3452. {
  3453. "name": "bower-asset/typeahead.js",
  3454. "version": "v0.11.1",
  3455. "source": {
  3456. "type": "git",
  3457. "url": "https://github.com/twitter/typeahead.js.git",
  3458. "reference": "588440f66559714280628a4f9799f0c4eb880a4a"
  3459. },
  3460. "dist": {
  3461. "type": "zip",
  3462. "url": "https://api.github.com/repos/twitter/typeahead.js/zipball/588440f66559714280628a4f9799f0c4eb880a4a",
  3463. "reference": "588440f66559714280628a4f9799f0c4eb880a4a",
  3464. "shasum": ""
  3465. },
  3466. "require": {
  3467. "bower-asset/jquery": ">=1.7"
  3468. },
  3469. "require-dev": {
  3470. "bower-asset/jasmine-ajax": "~1.3.1",
  3471. "bower-asset/jasmine-jquery": "~1.5.2",
  3472. "bower-asset/jquery": "~1.7"
  3473. },
  3474. "type": "bower-asset-library",
  3475. "extra": {
  3476. "bower-asset-main": "dist/typeahead.bundle.js"
  3477. }
  3478. },
  3479. {
  3480. "name": "fzaninotto/faker",
  3481. "version": "v1.6.0",
  3482. "source": {
  3483. "type": "git",
  3484. "url": "https://github.com/fzaninotto/Faker.git",
  3485. "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123"
  3486. },
  3487. "dist": {
  3488. "type": "zip",
  3489. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/44f9a286a04b80c76a4e5fb7aad8bb539b920123",
  3490. "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123",
  3491. "shasum": ""
  3492. },
  3493. "require": {
  3494. "php": "^5.3.3|^7.0"
  3495. },
  3496. "require-dev": {
  3497. "ext-intl": "*",
  3498. "phpunit/phpunit": "~4.0",
  3499. "squizlabs/php_codesniffer": "~1.5"
  3500. },
  3501. "type": "library",
  3502. "extra": {
  3503. "branch-alias": []
  3504. },
  3505. "autoload": {
  3506. "psr-4": {
  3507. "Faker\\": "src/Faker/"
  3508. }
  3509. },
  3510. "notification-url": "https://packagist.org/downloads/",
  3511. "license": [
  3512. "MIT"
  3513. ],
  3514. "authors": [
  3515. {
  3516. "name": "François Zaninotto"
  3517. }
  3518. ],
  3519. "description": "Faker is a PHP library that generates fake data for you.",
  3520. "keywords": [
  3521. "data",
  3522. "faker",
  3523. "fixtures"
  3524. ],
  3525. "time": "2016-04-29T12:21:54+00:00"
  3526. },
  3527. {
  3528. "name": "phpspec/php-diff",
  3529. "version": "v1.1.0",
  3530. "source": {
  3531. "type": "git",
  3532. "url": "https://github.com/phpspec/php-diff.git",
  3533. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a"
  3534. },
  3535. "dist": {
  3536. "type": "zip",
  3537. "url": "https://api.github.com/repos/phpspec/php-diff/zipball/0464787bfa7cd13576c5a1e318709768798bec6a",
  3538. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a",
  3539. "shasum": ""
  3540. },
  3541. "type": "library",
  3542. "extra": {
  3543. "branch-alias": {
  3544. "dev-master": "1.0.x-dev"
  3545. }
  3546. },
  3547. "autoload": {
  3548. "psr-0": {
  3549. "Diff": "lib/"
  3550. }
  3551. },
  3552. "notification-url": "https://packagist.org/downloads/",
  3553. "license": [
  3554. "BSD-3-Clause"
  3555. ],
  3556. "authors": [
  3557. {
  3558. "name": "Chris Boulton",
  3559. "homepage": "http://github.com/chrisboulton"
  3560. }
  3561. ],
  3562. "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
  3563. "time": "2016-04-07T12:29:16+00:00"
  3564. },
  3565. {
  3566. "name": "yiisoft/yii2-debug",
  3567. "version": "2.0.9",
  3568. "source": {
  3569. "type": "git",
  3570. "url": "https://github.com/yiisoft/yii2-debug.git",
  3571. "reference": "647be6c9d48dc2f3c2e2f33b9eba0a4ca78abde9"
  3572. },
  3573. "dist": {
  3574. "type": "zip",
  3575. "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/647be6c9d48dc2f3c2e2f33b9eba0a4ca78abde9",
  3576. "reference": "647be6c9d48dc2f3c2e2f33b9eba0a4ca78abde9",
  3577. "shasum": ""
  3578. },
  3579. "require": {
  3580. "yiisoft/yii2": "~2.0.11",
  3581. "yiisoft/yii2-bootstrap": "~2.0.0"
  3582. },
  3583. "type": "yii2-extension",
  3584. "extra": {
  3585. "branch-alias": {
  3586. "dev-master": "2.0.x-dev"
  3587. }
  3588. },
  3589. "autoload": {
  3590. "psr-4": {
  3591. "yii\\debug\\": ""
  3592. }
  3593. },
  3594. "notification-url": "https://packagist.org/downloads/",
  3595. "license": [
  3596. "BSD-3-Clause"
  3597. ],
  3598. "authors": [
  3599. {
  3600. "name": "Qiang Xue",
  3601. "email": "qiang.xue@gmail.com"
  3602. }
  3603. ],
  3604. "description": "The debugger extension for the Yii framework",
  3605. "keywords": [
  3606. "debug",
  3607. "debugger",
  3608. "yii2"
  3609. ],
  3610. "time": "2017-02-21T10:30:50+00:00"
  3611. },
  3612. {
  3613. "name": "yiisoft/yii2-faker",
  3614. "version": "2.0.3",
  3615. "source": {
  3616. "type": "git",
  3617. "url": "https://github.com/yiisoft/yii2-faker.git",
  3618. "reference": "b88ca69ee226a3610b2c26c026c3203d7ac50f6c"
  3619. },
  3620. "dist": {
  3621. "type": "zip",
  3622. "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/b88ca69ee226a3610b2c26c026c3203d7ac50f6c",
  3623. "reference": "b88ca69ee226a3610b2c26c026c3203d7ac50f6c",
  3624. "shasum": ""
  3625. },
  3626. "require": {
  3627. "fzaninotto/faker": "*",
  3628. "yiisoft/yii2": "*"
  3629. },
  3630. "type": "yii2-extension",
  3631. "extra": {
  3632. "branch-alias": {
  3633. "dev-master": "2.0.x-dev"
  3634. }
  3635. },
  3636. "autoload": {
  3637. "psr-4": {
  3638. "yii\\faker\\": ""
  3639. }
  3640. },
  3641. "notification-url": "https://packagist.org/downloads/",
  3642. "license": [
  3643. "BSD-3-Clause"
  3644. ],
  3645. "authors": [
  3646. {
  3647. "name": "Mark Jebri",
  3648. "email": "mark.github@yandex.ru"
  3649. }
  3650. ],
  3651. "description": "Fixture generator. The Faker integration for the Yii framework.",
  3652. "keywords": [
  3653. "Fixture",
  3654. "faker",
  3655. "yii2"
  3656. ],
  3657. "time": "2015-03-01T06:22:44+00:00"
  3658. },
  3659. {
  3660. "name": "yiisoft/yii2-gii",
  3661. "version": "2.0.5",
  3662. "source": {
  3663. "type": "git",
  3664. "url": "https://github.com/yiisoft/yii2-gii.git",
  3665. "reference": "1bd6df6804ca077ec022587905a0d43eb286f507"
  3666. },
  3667. "dist": {
  3668. "type": "zip",
  3669. "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/1bd6df6804ca077ec022587905a0d43eb286f507",
  3670. "reference": "1bd6df6804ca077ec022587905a0d43eb286f507",
  3671. "shasum": ""
  3672. },
  3673. "require": {
  3674. "bower-asset/typeahead.js": "0.10.* | ~0.11.0",
  3675. "phpspec/php-diff": ">=1.0.2",
  3676. "yiisoft/yii2": ">=2.0.4",
  3677. "yiisoft/yii2-bootstrap": "~2.0"
  3678. },
  3679. "type": "yii2-extension",
  3680. "extra": {
  3681. "branch-alias": {
  3682. "dev-master": "2.0.x-dev"
  3683. },
  3684. "asset-installer-paths": {
  3685. "npm-asset-library": "vendor/npm",
  3686. "bower-asset-library": "vendor/bower"
  3687. }
  3688. },
  3689. "autoload": {
  3690. "psr-4": {
  3691. "yii\\gii\\": ""
  3692. }
  3693. },
  3694. "notification-url": "https://packagist.org/downloads/",
  3695. "license": [
  3696. "BSD-3-Clause"
  3697. ],
  3698. "authors": [
  3699. {
  3700. "name": "Qiang Xue",
  3701. "email": "qiang.xue@gmail.com"
  3702. }
  3703. ],
  3704. "description": "The Gii extension for the Yii framework",
  3705. "keywords": [
  3706. "code generator",
  3707. "gii",
  3708. "yii2"
  3709. ],
  3710. "time": "2016-03-18T14:09:46+00:00"
  3711. }
  3712. ],
  3713. "aliases": [],
  3714. "minimum-stability": "stable",
  3715. "stability-flags": {
  3716. "raulfraile/distill": 0,
  3717. "hightman/xunsearch": 10,
  3718. "chenkby/yii2-region": 20,
  3719. "kartik-v/yii2-grid": 20,
  3720. "kartik-v/yii2-editable": 20
  3721. },
  3722. "prefer-stable": false,
  3723. "prefer-lowest": false,
  3724. "platform": {
  3725. "php": ">=5.4.0"
  3726. },
  3727. "platform-dev": [],
  3728. "plugin-api-version": "1.1.0"
  3729. }