1 Star 0 Fork 5

liyang/dbmcloud

forked from 茹憶/dbmcloud 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
composer.lock 117.78 KB
一键复制 编辑 原始数据 按行查看 历史
ruzuojun 提交于 2016-04-08 21:45 . 提交第一版
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366
{
"_readme": [
"This file locks the dependencies of your project to a known state",
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically"
],
"hash": "ff610eed88df65a682b4b8af864206c2",
"content-hash": "26c64bed6ebc13edf7441d3a1cd28061",
"packages": [
{
"name": "2amigos/yii2-date-picker-widget",
"version": "1.0.5",
"source": {
"type": "git",
"url": "https://github.com/2amigos/yii2-date-picker-widget.git",
"reference": "89cd0d7f00785b608b4a9670016f2795f2e3984d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/2amigos/yii2-date-picker-widget/zipball/89cd0d7f00785b608b4a9670016f2795f2e3984d",
"reference": "89cd0d7f00785b608b4a9670016f2795f2e3984d",
"shasum": ""
},
"require": {
"bower-asset/bootstrap-datepicker": "1.4.0",
"yiisoft/yii2": "~2.0.0",
"yiisoft/yii2-bootstrap": "~2.0.3"
},
"require-dev": {
"phpunit/phpunit": "4.*"
},
"type": "yii2-extension",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"asset-installer-paths": {
"bower-asset-library": "vendor/bower"
}
},
"autoload": {
"psr-4": {
"dosamigos\\datepicker\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "2amigOS! Consulting Group",
"email": "hola@2amigos.us",
"homepage": "http://2amigos.us",
"role": "Developer"
}
],
"description": "Bootstrap DatePicker widget for Yii2.",
"homepage": "http://yiiwheels.com/extension/bootstrap-datepicker",
"keywords": [
"2amigos",
"datepicker",
"extension",
"widget",
"yii",
"yii 2",
"yii2"
],
"time": "2015-04-02 11:48:05"
},
{
"name": "2amigos/yii2-date-time-picker-widget",
"version": "1.0.2",
"source": {
"type": "git",
"url": "https://github.com/2amigos/yii2-date-time-picker-widget.git",
"reference": "1248491c959d7080ab45c5284429e3d9222ed282"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/2amigos/yii2-date-time-picker-widget/zipball/1248491c959d7080ab45c5284429e3d9222ed282",
"reference": "1248491c959d7080ab45c5284429e3d9222ed282",
"shasum": ""
},
"require": {
"bower-asset/smalot-bootstrap-datetimepicker": "2.3.1",
"yiisoft/yii2": "~2.0",
"yiisoft/yii2-bootstrap": "~2.0.0"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"scrutinizer/ocular": "~1.1"
},
"type": "yii2-extension",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"asset-installer-paths": {
"bower-asset-library": "vendor/bower"
}
},
"autoload": {
"psr-4": {
"dosamigos\\datetimepicker\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "2amigOS! Consulting Group",
"email": "hola@2amigos.us",
"homepage": "http://2amigos.us",
"role": "Developer"
}
],
"description": "Bootstrap DateTimePicker widget for Yii2.",
"homepage": "http://yiiwheels.com/extension/bootstrap-datetimepicker",
"keywords": [
"2amigos",
"DateTimePicker",
"extension",
"widget",
"yii",
"yii 2",
"yii2"
],
"time": "2015-04-02 10:59:30"
},
{
"name": "2amigos/yii2-dosamigos-asset-bundle",
"version": "0.1.0",
"source": {
"type": "git",
"url": "https://github.com/2amigos/yii2-dosamigos-asset-bundle.git",
"reference": "39316c82cf25a884b9037e758968e1323b4add33"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/2amigos/yii2-dosamigos-asset-bundle/zipball/39316c82cf25a884b9037e758968e1323b4add33",
"reference": "39316c82cf25a884b9037e758968e1323b4add33",
"shasum": ""
},
"require": {
"yiisoft/yii2": "*"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"dosamigos\\assets\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Antonio Ramirez",
"email": "ramirez.cobos@gmail.com",
"homepage": "http://2amigos.us"
}
],
"description": "2amigOS! Asset Bundle for Yii2.",
"keywords": [
"asset",
"component",
"extension",
"yii"
],
"time": "2014-09-01 13:43:36"
},
{
"name": "2amigos/yii2-file-upload-widget",
"version": "1.0.2",
"source": {
"type": "git",
"url": "https://github.com/2amigos/yii2-file-upload-widget.git",
"reference": "2ecf63e5f47e429e95ab598391399e0ed03e716f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/2amigos/yii2-file-upload-widget/zipball/2ecf63e5f47e429e95ab598391399e0ed03e716f",
"reference": "2ecf63e5f47e429e95ab598391399e0ed03e716f",
"shasum": ""
},
"require": {
"2amigos/yii2-gallery-widget": "~1.0",
"bower-asset/blueimp-file-upload": "~9.9.0",
"yiisoft/yii2": "~2.0.0",
"yiisoft/yii2-bootstrap": "~2.0.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"type": "yii2-extension",
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
},
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
"dosamigos\\fileupload\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "2amigOS! Consulting Group",
"email": "hola@2amigos.us",
"homepage": "http://2amigos.us",
"role": "Developer"
},
{
"name": "Alexander Kochetov",
"email": "creocoder@gmail.com",
"role": "Developer"
}
],
"description": "Blueimp file upload widget for the Yii framework",
"homepage": "https://github.com/2amigos/yii2-file-upload-widget",
"keywords": [
"2amigos",
"upload",
"widget",
"yii",
"yii 2",
"yii2"
],
"time": "2015-04-14 19:11:24"
},
{
"name": "2amigos/yii2-gallery-widget",
"version": "1.0.2",
"source": {
"type": "git",
"url": "https://github.com/2amigos/yii2-gallery-widget.git",
"reference": "77ae3c5e19b027f5c2f2147ce8c14a7a916ad6fc"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/2amigos/yii2-gallery-widget/zipball/77ae3c5e19b027f5c2f2147ce8c14a7a916ad6fc",
"reference": "77ae3c5e19b027f5c2f2147ce8c14a7a916ad6fc",
"shasum": ""
},
"require": {
"bower-asset/blueimp-gallery": "~2.15.0",
"yiisoft/yii2": "~2.0.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"scrutinizer/ocular": "~1.1"
},
"type": "yii2-extension",
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
},
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
"dosamigos\\gallery\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "2amigOS! Consulting Group",
"email": "hola@2amigos.us",
"homepage": "http://2amigos.us",
"role": "Developer"
}
],
"description": "Blueimp gallery widget for the Yii framework",
"homepage": "https://github.com/2amigos/yii2-gallery-widget",
"keywords": [
"2amigos",
"gallery",
"widget",
"yii",
"yii 2",
"yii2"
],
"time": "2016-01-04 06:27:31"
},
{
"name": "2amigos/yii2-multi-select-widget",
"version": "0.1.1",
"source": {
"type": "git",
"url": "https://github.com/2amigos/yii2-multi-select-widget.git",
"reference": "8e3d743ea48db77a78778e09c4ce0d20825a69cc"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/2amigos/yii2-multi-select-widget/zipball/8e3d743ea48db77a78778e09c4ce0d20825a69cc",
"reference": "8e3d743ea48db77a78778e09c4ce0d20825a69cc",
"shasum": ""
},
"require": {
"yiisoft/yii2": "*"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"dosamigos\\multiselect\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Antonio Ramirez",
"email": "ramirez.cobos@gmail.com",
"homepage": "http://www.ramirezcobos.com"
}
],
"description": "Multiselect Bootstrap widget for Yii2.",
"keywords": [
"extension",
"multiselect",
"widget",
"yii"
],
"time": "2014-05-10 18:32:51"
},
{
"name": "2amigos/yii2-selectize-widget",
"version": "1.0.1",
"source": {
"type": "git",
"url": "https://github.com/2amigos/yii2-selectize-widget.git",
"reference": "bc997df0769084f45dbdcaef95a028f5ca3fd028"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/2amigos/yii2-selectize-widget/zipball/bc997df0769084f45dbdcaef95a028f5ca3fd028",
"reference": "bc997df0769084f45dbdcaef95a028f5ca3fd028",
"shasum": ""
},
"require": {
"bower-asset/selectize": "~0.12.0",
"yiisoft/yii2": "~2.0.0",
"yiisoft/yii2-bootstrap": "~2.0.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"type": "yii2-extension",
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
},
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
"dosamigos\\selectize\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "2amigOS! Consulting Group",
"email": "hola@2amigos.us",
"homepage": "http://2amigos.us",
"role": "Developer"
},
{
"name": "Alexander Kochetov",
"email": "creocoder@gmail.com",
"role": "Developer"
}
],
"description": "The selectize.js widget for the Yii framework",
"homepage": "https://github.com/2amigos/yii2-selectize-widget",
"keywords": [
"2amigos",
"selectize",
"widget",
"yii",
"yii 2",
"yii2"
],
"time": "2015-03-20 18:56:41"
},
{
"name": "2amigos/yii2-table-export-widget",
"version": "0.1.0",
"source": {
"type": "git",
"url": "https://github.com/2amigos/yii2-table-export-widget.git",
"reference": "0af42eda7fdb6fdaea825582bf0be63f368e80c1"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/2amigos/yii2-table-export-widget/zipball/0af42eda7fdb6fdaea825582bf0be63f368e80c1",
"reference": "0af42eda7fdb6fdaea825582bf0be63f368e80c1",
"shasum": ""
},
"require": {
"2amigos/yii2-dosamigos-asset-bundle": "0.1.*",
"yiisoft/yii2": "*"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"dosamigos\\tableexport\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Antonio Ramirez",
"email": "ramirez.cobos@gmail.com",
"homepage": "http://2amigos.us"
}
],
"description": "Table Export Widget for Yii2.",
"keywords": [
"export",
"extension",
"widget",
"yii"
],
"time": "2014-09-01 22:06:17"
},
{
"name": "bower-asset/blueimp-canvas-to-blob",
"version": "v3.1.0",
"source": {
"type": "git",
"url": "https://github.com/blueimp/JavaScript-Canvas-to-Blob.git",
"reference": "28258354628fe0aca67e9d13ba60fe75a6dd13c0"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/blueimp/JavaScript-Canvas-to-Blob/zipball/28258354628fe0aca67e9d13ba60fe75a6dd13c0",
"reference": "28258354628fe0aca67e9d13ba60fe75a6dd13c0",
"shasum": ""
},
"type": "bower-asset-library"
},
{
"name": "bower-asset/blueimp-file-upload",
"version": "9.9.4",
"source": {
"type": "git",
"url": "https://github.com/blueimp/jQuery-File-Upload.git",
"reference": "ce33e8915c4e4b3e7930c9ed0ae45cf132944a88"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/blueimp/jQuery-File-Upload/zipball/ce33e8915c4e4b3e7930c9ed0ae45cf132944a88",
"reference": "ce33e8915c4e4b3e7930c9ed0ae45cf132944a88",
"shasum": ""
},
"require": {
"bower-asset/blueimp-canvas-to-blob": ">=2.1.1",
"bower-asset/blueimp-load-image": ">=1.13.0",
"bower-asset/blueimp-tmpl": ">=2.5.4",
"bower-asset/jquery": ">=1.6"
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": [
"css/jquery.fileupload.css",
"css/jquery.fileupload-ui.css",
"css/jquery.fileupload-noscript.css",
"css/jquery.fileupload-ui-noscript.css",
"js/cors/jquery.postmessage-transport.js",
"js/cors/jquery.xdr-transport.js",
"js/vendor/jquery.ui.widget.js",
"js/jquery.fileupload.js",
"js/jquery.fileupload-process.js",
"js/jquery.fileupload-validate.js",
"js/jquery.fileupload-image.js",
"js/jquery.fileupload-audio.js",
"js/jquery.fileupload-video.js",
"js/jquery.fileupload-ui.js",
"js/jquery.fileupload-jquery-ui.js",
"js/jquery.fileupload-angular.js",
"js/jquery.iframe-transport.js"
],
"bower-asset-ignore": [
"/*.*",
"/cors",
"css/demo-ie8.css",
"css/demo.css",
"css/style.css",
"js/app.js",
"js/main.js",
"server",
"test"
]
},
"description": "File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads.",
"keywords": [
"bootstrap",
"chunk",
"cross-domain",
"cross-site",
"drag",
"drop",
"file",
"gae",
"go",
"jquery",
"multiple",
"php",
"preview",
"progress",
"python",
"resume",
"selection",
"upload",
"widget"
]
},
{
"name": "bower-asset/blueimp-gallery",
"version": "2.15.4",
"source": {
"type": "git",
"url": "https://github.com/blueimp/Gallery.git",
"reference": "2b65bd364dd5945809f2eda61fb3eb4a0a6fa095"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/blueimp/Gallery/zipball/2b65bd364dd5945809f2eda61fb3eb4a0a6fa095",
"reference": "2b65bd364dd5945809f2eda61fb3eb4a0a6fa095",
"shasum": ""
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": [
"css/blueimp-gallery.css",
"css/blueimp-gallery-indicator.css",
"css/blueimp-gallery-video.css",
"img/error.png",
"img/error.svg",
"img/loading.gif",
"img/play-pause.png",
"img/play-pause.svg",
"img/video-play.png",
"img/video-play.svg",
"js/blueimp-helper.js",
"js/blueimp-gallery.js",
"js/blueimp-gallery-fullscreen.js",
"js/blueimp-gallery-indicator.js",
"js/blueimp-gallery-video.js",
"js/blueimp-gallery-vimeo.js",
"js/blueimp-gallery-youtube.js"
],
"bower-asset-ignore": [
"/*.*",
"css/demo.css",
"js/demo.js"
]
},
"license": [
"MIT"
],
"description": "blueimp Gallery is a touch-enabled, responsive and customizable image and video gallery, carousel and lightbox, optimized for both mobile and desktop web browsers. It features swipe, mouse and keyboard navigation, transition effects, slideshow functionality, fullscreen support and on-demand content loading and can be extended to display additional content types.",
"keywords": [
"carousel",
"desktop",
"effects",
"fullscreen",
"gallery",
"image",
"keyboard",
"lightbox",
"mobile",
"mouse",
"navigation",
"responsive",
"slideshow",
"swipe",
"touch",
"transition",
"video"
]
},
{
"name": "bower-asset/blueimp-load-image",
"version": "v2.1.0",
"source": {
"type": "git",
"url": "https://github.com/blueimp/JavaScript-Load-Image.git",
"reference": "dfadfa3b9a471b941040c33675a527f24a6db827"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/blueimp/JavaScript-Load-Image/zipball/dfadfa3b9a471b941040c33675a527f24a6db827",
"reference": "dfadfa3b9a471b941040c33675a527f24a6db827",
"shasum": ""
},
"type": "bower-asset-library"
},
{
"name": "bower-asset/blueimp-tmpl",
"version": "v3.1.0",
"source": {
"type": "git",
"url": "https://github.com/blueimp/JavaScript-Templates.git",
"reference": "42c8c31428d70d0f53ca1ab31b5c2b3a68af4c8a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/blueimp/JavaScript-Templates/zipball/42c8c31428d70d0f53ca1ab31b5c2b3a68af4c8a",
"reference": "42c8c31428d70d0f53ca1ab31b5c2b3a68af4c8a",
"shasum": ""
},
"type": "bower-asset-library"
},
{
"name": "bower-asset/bootstrap",
"version": "v3.2.0",
"source": {
"type": "git",
"url": "https://github.com/twbs/bootstrap.git",
"reference": "c068162161154a4b85110ea1e7dd3d7897ce2b72"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/twbs/bootstrap/zipball/c068162161154a4b85110ea1e7dd3d7897ce2b72",
"reference": "c068162161154a4b85110ea1e7dd3d7897ce2b72",
"shasum": ""
},
"require": {
"bower-asset/jquery": ">=1.9.0"
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": [
"less/bootstrap.less",
"dist/css/bootstrap.css",
"dist/js/bootstrap.js",
"dist/fonts/glyphicons-halflings-regular.eot",
"dist/fonts/glyphicons-halflings-regular.svg",
"dist/fonts/glyphicons-halflings-regular.ttf",
"dist/fonts/glyphicons-halflings-regular.woff"
],
"bower-asset-ignore": [
".*",
"_config.yml",
"CNAME",
"composer.json",
"CONTRIBUTING.md",
"docs",
"js/tests",
"test-infra"
]
},
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
"keywords": [
"css",
"framework",
"front-end",
"js",
"less",
"mobile-first",
"responsive",
"web"
]
},
{
"name": "bower-asset/bootstrap-datepicker",
"version": "v1.4.0",
"source": {
"type": "git",
"url": "https://github.com/eternicode/bootstrap-datepicker.git",
"reference": "e7ca6bb94dc483817f2ff10fc2b723b2b935e016"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/eternicode/bootstrap-datepicker/zipball/e7ca6bb94dc483817f2ff10fc2b723b2b935e016",
"reference": "e7ca6bb94dc483817f2ff10fc2b723b2b935e016",
"shasum": ""
},
"require": {
"bower-asset/bootstrap": ">=2.0.4,<4.0",
"bower-asset/jquery": ">=1.7.1"
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": [
"dist/css/bootstrap-datepicker.css",
"dist/css/bootstrap-datepicker3.css",
"js/bootstrap-datepicker.js"
],
"bower-asset-ignore": []
},
"license": [
"Apache-2.0"
]
},
{
"name": "bower-asset/jquery",
"version": "2.1.1",
"source": {
"type": "git",
"url": "https://github.com/jquery/jquery.git",
"reference": "4dec426aa2a6cbabb1b064319ba7c272d594a688"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/jquery/jquery/zipball/4dec426aa2a6cbabb1b064319ba7c272d594a688",
"reference": "4dec426aa2a6cbabb1b064319ba7c272d594a688",
"shasum": ""
},
"require-dev": {
"bower-asset/qunit": "1.14.0",
"bower-asset/requirejs": "2.1.10",
"bower-asset/sinon": "1.8.1",
"bower-asset/sizzle": "1.10.19"
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": "dist/jquery.js",
"bower-asset-ignore": [
"**/.*",
"build",
"speed",
"test",
"*.md",
"AUTHORS.txt",
"Gruntfile.js",
"package.json"
]
},
"license": [
"MIT"
],
"keywords": [
"javascript",
"jquery",
"library"
]
},
{
"name": "bower-asset/jquery-colorbox",
"version": "1.6.3",
"source": {
"type": "git",
"url": "https://github.com/jackmoore/colorbox.git",
"reference": "d9b74f2289b315c36b2e4b2bce01a799bf851aed"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/jackmoore/colorbox/zipball/d9b74f2289b315c36b2e4b2bce01a799bf851aed",
"reference": "d9b74f2289b315c36b2e4b2bce01a799bf851aed",
"shasum": ""
},
"require": {
"bower-asset/jquery": ">=1.3.2"
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": "jquery.colorbox.js",
"bower-asset-ignore": [
"colorbox.jquery.json",
"colorbox.ai",
"content",
"example1/index.html",
"example2/index.html",
"example3/index.html",
"example4/index.html",
"example5/index.html"
]
},
"description": "jQuery lightbox and modal window plugin",
"keywords": [
"gallery",
"jquery-plugin",
"lightbox",
"modal",
"popup",
"ui"
]
},
{
"name": "bower-asset/jquery-treegrid",
"version": "0.3.0",
"source": {
"type": "git",
"url": "https://github.com/maxazan/jquery-treegrid.git",
"reference": "c8ba9e9604620002155d01a947cceffe18d4428c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/maxazan/jquery-treegrid/zipball/c8ba9e9604620002155d01a947cceffe18d4428c",
"reference": "c8ba9e9604620002155d01a947cceffe18d4428c",
"shasum": ""
},
"require": {
"bower-asset/jquery": ">=1.9.1",
"bower-asset/jquery.cookie": ">=1.4.1"
},
"type": "bower-asset-library",
"extra": {
"bower-asset-ignore": [
"examples",
"tests",
"**/.*",
"composer.json",
"index.html",
"params.json",
"style.css",
"test.html",
"treegrid.jquery.json"
]
},
"license": [
"MIT"
],
"description": "TreeGrid plugin for jQuery.",
"keywords": [
"bootstrap",
"javascript",
"jquery",
"plugin",
"treegrid",
"treeview"
]
},
{
"name": "bower-asset/jquery-ui",
"version": "1.11.4",
"source": {
"type": "git",
"url": "https://github.com/components/jqueryui.git",
"reference": "c34f8dbf3ba57b3784b93f26119f436c0e8288e1"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/components/jqueryui/zipball/c34f8dbf3ba57b3784b93f26119f436c0e8288e1",
"reference": "c34f8dbf3ba57b3784b93f26119f436c0e8288e1",
"shasum": ""
},
"require": {
"bower-asset/jquery": ">=1.6"
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": [
"jquery-ui.js"
],
"bower-asset-ignore": []
}
},
{
"name": "bower-asset/jquery.cookie",
"version": "v1.4.1",
"source": {
"type": "git",
"url": "https://github.com/carhartl/jquery-cookie.git",
"reference": "7f88a4e631aba8a8c688fd8999ce6b9bcfd50718"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/carhartl/jquery-cookie/zipball/7f88a4e631aba8a8c688fd8999ce6b9bcfd50718",
"reference": "7f88a4e631aba8a8c688fd8999ce6b9bcfd50718",
"shasum": ""
},
"require": {
"bower-asset/jquery": ">=1.2"
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": [
"./jquery.cookie.js"
],
"bower-asset-ignore": [
"test",
".*",
"*.json",
"*.md",
"*.txt",
"Gruntfile.js"
]
}
},
{
"name": "bower-asset/jquery.inputmask",
"version": "3.1.44",
"source": {
"type": "git",
"url": "https://github.com/RobinHerbots/jquery.inputmask.git",
"reference": "c95fe993f91e1da2069a26d84eaa372835842286"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/RobinHerbots/jquery.inputmask/zipball/c95fe993f91e1da2069a26d84eaa372835842286",
"reference": "c95fe993f91e1da2069a26d84eaa372835842286",
"shasum": ""
},
"require": {
"bower-asset/jquery": ">=1.7"
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": [
"./dist/inputmask/jquery.inputmask.js",
"./dist/inputmask/jquery.inputmask.extensions.js",
"./dist/inputmask/jquery.inputmask.date.extensions.js",
"./dist/inputmask/jquery.inputmask.numeric.extensions.js",
"./dist/inputmask/jquery.inputmask.phone.extensions.js",
"./dist/inputmask/jquery.inputmask.regex.extensions.js"
],
"bower-asset-ignore": [
"**/.*",
"qunit/",
"nuget/",
"tools/",
"js/",
"*.md",
"build.properties",
"build.xml",
"jquery.inputmask.jquery.json"
]
},
"license": [
"http://opensource.org/licenses/mit-license.php"
],
"description": "jquery.inputmask is a jquery plugin which create an input mask.",
"keywords": [
"form",
"input",
"inputmask",
"jQuery",
"mask",
"plugins"
]
},
{
"name": "bower-asset/jstree",
"version": "3.2.1",
"source": {
"type": "git",
"url": "https://github.com/vakata/jstree.git",
"reference": "8ea6ce78bba5fefe4c3233844cbcb22b12826b31"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/vakata/jstree/zipball/8ea6ce78bba5fefe4c3233844cbcb22b12826b31",
"reference": "8ea6ce78bba5fefe4c3233844cbcb22b12826b31",
"shasum": ""
},
"require": {
"bower-asset/jquery": ">=1.9.1"
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": [
"./dist/jstree.js",
"./dist/themes/default/style.css"
],
"bower-asset-ignore": [
"**/.*",
"docs",
"demo",
"libs",
"node_modules",
"test",
"libs",
"jstree.jquery.json",
"gruntfile.js",
"package.json",
"bower.json",
"component.json",
"LICENCE-MIT",
"README.md"
]
},
"keywords": [
"jstree",
"tree",
"ui"
]
},
{
"name": "bower-asset/microplugin",
"version": "v0.0.3",
"source": {
"type": "git",
"url": "https://github.com/brianreavis/microplugin.js.git",
"reference": "d8671e6cc769938648f8735610534427cdeeaf67"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/brianreavis/microplugin.js/zipball/d8671e6cc769938648f8735610534427cdeeaf67",
"reference": "d8671e6cc769938648f8735610534427cdeeaf67",
"shasum": ""
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": [
"src/microplugin.js"
],
"bower-asset-ignore": [
"Makefile",
"test",
".travis.yml",
".npmignore.yml"
]
},
"license": [
"Apache License, Version 2.0"
],
"description": "A lightweight plugin / dependency system for javascript libraries.",
"keywords": [
"architecture",
"dependencies",
"extensibility",
"plugins",
"require"
]
},
{
"name": "bower-asset/punycode",
"version": "v1.3.2",
"source": {
"type": "git",
"url": "https://github.com/bestiejs/punycode.js.git",
"reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/bestiejs/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
"reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3",
"shasum": ""
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": "punycode.js",
"bower-asset-ignore": [
"coverage",
"tests",
".*",
"component.json",
"Gruntfile.js",
"node_modules",
"package.json"
]
}
},
{
"name": "bower-asset/selectize",
"version": "v0.12.1",
"source": {
"type": "git",
"url": "https://github.com/brianreavis/selectize.js.git",
"reference": "3dc07d40047cd98de8a8f8beacca06a73970139d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/brianreavis/selectize.js/zipball/3dc07d40047cd98de8a8f8beacca06a73970139d",
"reference": "3dc07d40047cd98de8a8f8beacca06a73970139d",
"shasum": ""
},
"require": {
"bower-asset/jquery": ">=1.7.0",
"bower-asset/microplugin": "dev-0.0.x|0.0.x",
"bower-asset/sifter": "dev-0.4.x|0.4.x"
},
"require-dev": {
"bower-asset/bootstrap-2": "2",
"bower-asset/bootstrap-3.2": "3.2"
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": [
"dist/css/selectize.css",
"dist/js/selectize.js"
],
"bower-asset-ignore": [
"Makefile",
"Gruntfile.js",
"examples",
"node_modules",
"bower_components",
"docs",
"src",
"test",
".travis.yml",
"testem.json",
"selectize.jquery.json",
"*.sh",
"package.json"
]
},
"license": [
"Apache License, Version 2.0"
],
"description": "Selectize is a jQuery-based custom <select> UI control. Useful for tagging, contact lists, country selectors, etc.",
"keywords": [
"autocomplete",
"control",
"form",
"input",
"select",
"tag",
"tagging",
"ui"
]
},
{
"name": "bower-asset/sifter",
"version": "v0.4.5",
"source": {
"type": "git",
"url": "https://github.com/brianreavis/sifter.js.git",
"reference": "facff802f388feba9bc4c649fe5acd3ad53d84e9"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/brianreavis/sifter.js/zipball/facff802f388feba9bc4c649fe5acd3ad53d84e9",
"reference": "facff802f388feba9bc4c649fe5acd3ad53d84e9",
"shasum": ""
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": [
"sifter.js"
],
"bower-asset-ignore": [
"Makefile",
"test",
"lib",
"bin",
"benchmark",
"node_modules",
".travis.yml"
]
},
"license": [
"Apache License, Version 2.0"
],
"description": "A library for textually searching arrays and hashes of objects by property (or multiple properties). Designed specifically for autocomplete.",
"keywords": [
"autocomplete",
"data",
"filter",
"match",
"results",
"search",
"sift",
"sort"
]
},
{
"name": "bower-asset/smalot-bootstrap-datetimepicker",
"version": "2.3.1",
"source": {
"type": "git",
"url": "https://github.com/smalot/bootstrap-datetimepicker.git",
"reference": "c893c91872d273bcea1bd806d03eb624c91a4cac"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/smalot/bootstrap-datetimepicker/zipball/c893c91872d273bcea1bd806d03eb624c91a4cac",
"reference": "c893c91872d273bcea1bd806d03eb624c91a4cac",
"shasum": ""
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": [
"js/bootstrap-datetimepicker.min.js",
"css/bootstrap-datetimepicker.min.css"
],
"bower-asset-ignore": [
"build",
"sample in bootstrap v2",
"sample in bootstrap v3",
"screenshot",
"tests",
".gitattributes",
".gitignore",
".travis.yml",
"minify.sh"
]
}
},
{
"name": "bower-asset/yii2-pjax",
"version": "v2.0.2",
"source": {
"type": "git",
"url": "https://github.com/yiisoft/jquery-pjax.git",
"reference": "fb92be865c0fd6583714475cb7d629020749d73f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/fb92be865c0fd6583714475cb7d629020749d73f",
"reference": "fb92be865c0fd6583714475cb7d629020749d73f",
"shasum": ""
},
"require": {
"bower-asset/jquery": ">=1.8"
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": "./jquery.pjax.js",
"bower-asset-ignore": [
".travis.yml",
"Gemfile",
"Gemfile.lock",
"vendor/",
"script/",
"test/"
]
}
},
{
"name": "cebe/markdown",
"version": "1.1.0",
"source": {
"type": "git",
"url": "https://github.com/cebe/markdown.git",
"reference": "54a2c49de31cc44e864ebf0500a35ef21d0010b2"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/cebe/markdown/zipball/54a2c49de31cc44e864ebf0500a35ef21d0010b2",
"reference": "54a2c49de31cc44e864ebf0500a35ef21d0010b2",
"shasum": ""
},
"require": {
"lib-pcre": "*",
"php": ">=5.4.0"
},
"require-dev": {
"cebe/indent": "*",
"facebook/xhprof": "*@dev",
"phpunit/phpunit": "4.1.*"
},
"bin": [
"bin/markdown"
],
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
},
"autoload": {
"psr-4": {
"cebe\\markdown\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Carsten Brandt",
"email": "mail@cebe.cc",
"homepage": "http://cebe.cc/",
"role": "Creator"
}
],
"description": "A super fast, highly extensible markdown parser for PHP",
"homepage": "https://github.com/cebe/markdown#readme",
"keywords": [
"extensible",
"fast",
"gfm",
"markdown",
"markdown-extra"
],
"time": "2015-03-06 05:28:07"
},
{
"name": "components/flag-icon-css",
"version": "0.8.2",
"source": {
"type": "git",
"url": "https://github.com/lipis/flag-icon-css.git",
"reference": "63b89f891914b589d12c6e71989a0eb54d35a7a3"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/lipis/flag-icon-css/zipball/63b89f891914b589d12c6e71989a0eb54d35a7a3",
"reference": "63b89f891914b589d12c6e71989a0eb54d35a7a3",
"shasum": ""
},
"type": "component",
"extra": {
"component": {
"name": "flag-icon-css",
"files": [
"less/**",
"css/**",
"flags/**"
]
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Panayiotis Lipiridis (Lipis)",
"email": "lipiridis@gmail.com"
}
],
"description": "CSS for vector based country flags",
"time": "2015-09-05 08:34:56"
},
{
"name": "daixianceng/yii2-smser",
"version": "v1.3.0",
"source": {
"type": "git",
"url": "https://github.com/daixianceng/yii2-smser.git",
"reference": "ef2d072afd887f5ab3a699c35d23a155c98d0781"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/daixianceng/yii2-smser/zipball/ef2d072afd887f5ab3a699c35d23a155c98d0781",
"reference": "ef2d072afd887f5ab3a699c35d23a155c98d0781",
"shasum": ""
},
"require": {
"yiisoft/yii2": "*"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"daixianceng\\smser\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD 3-Clause"
],
"authors": [
{
"name": "Cosmo",
"email": "daixianceng@gmail.com",
"homepage": "http://www.microwall.cn/",
"role": "Developer"
}
],
"description": "Yii2 SMS extension",
"homepage": "https://github.com/daixianceng/yii2-smser",
"keywords": [
"extension",
"plugin",
"sms",
"smser",
"yii2"
],
"time": "2015-07-29 05:06:29"
},
{
"name": "dektrium/yii2-rbac",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/dektrium/yii2-rbac.git",
"reference": "0c7ab2575d2856aa3e7b140432ec65c8a50216cb"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/dektrium/yii2-rbac/zipball/c6d315a3c9652b3b1ced19fe105f65e6e09f375b",
"reference": "0c7ab2575d2856aa3e7b140432ec65c8a50216cb",
"shasum": ""
},
"require": {
"kartik-v/yii2-widget-select2": "*",
"yiisoft/yii2": "2.0.*"
},
"type": "yii2-extension",
"extra": {
"bootstrap": "dektrium\\rbac\\Bootstrap"
},
"autoload": {
"psr-4": {
"dektrium\\rbac\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Dmitry Erofeev",
"email": "dmeroff@gmail.com",
"homepage": "http://dmeroff.ru"
}
],
"description": "RBAC management module for Yii2",
"keywords": [
"dektrium",
"rbac gui",
"rbac management",
"rbac module",
"yii rbac",
"yii2",
"yii2-rbac"
],
"time": "2015-10-03 18:34:36"
},
{
"name": "ezyang/htmlpurifier",
"version": "v4.6.0",
"source": {
"type": "git",
"url": "https://github.com/ezyang/htmlpurifier.git",
"reference": "6f389f0f25b90d0b495308efcfa073981177f0fd"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/6f389f0f25b90d0b495308efcfa073981177f0fd",
"reference": "6f389f0f25b90d0b495308efcfa073981177f0fd",
"shasum": ""
},
"require": {
"php": ">=5.2"
},
"type": "library",
"autoload": {
"psr-0": {
"HTMLPurifier": "library/"
},
"files": [
"library/HTMLPurifier.composer.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"LGPL"
],
"authors": [
{
"name": "Edward Z. Yang",
"email": "admin@htmlpurifier.org",
"homepage": "http://ezyang.com"
}
],
"description": "Standards compliant HTML filter written in PHP",
"homepage": "http://htmlpurifier.org/",
"keywords": [
"html"
],
"time": "2013-11-30 08:25:19"
},
{
"name": "forecho/yii2-jqtree",
"version": "0.1.0",
"source": {
"type": "git",
"url": "https://github.com/iiYii/yii2-jqTree.git",
"reference": "419b6af7cebd0114016c618232fc8823487ae1c7"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/iiYii/yii2-jqTree/zipball/419b6af7cebd0114016c618232fc8823487ae1c7",
"reference": "419b6af7cebd0114016c618232fc8823487ae1c7",
"shasum": ""
},
"require": {
"yiisoft/yii2": "*"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"forecho\\jqtree\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "forecho",
"email": "caizhenghai@gmail.com"
},
{
"name": "forecho",
"email": "caizhenghai@gmail.com",
"homepage": "http://www.getyii.com"
}
],
"description": "jqTree widget for Yii2.",
"homepage": "https://github.com/iiYii/yii2-jqtree",
"keywords": [
"extension",
"jqtree",
"widget",
"yii"
],
"time": "2015-01-21 06:18:14"
},
{
"name": "fortawesome/font-awesome",
"version": "v4.4.0",
"source": {
"type": "git",
"url": "https://github.com/FortAwesome/Font-Awesome.git",
"reference": "e554555d73a44e0a7d11b0361ad7a5325a5f551c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/FortAwesome/Font-Awesome/zipball/e554555d73a44e0a7d11b0361ad7a5325a5f551c",
"reference": "e554555d73a44e0a7d11b0361ad7a5325a5f551c",
"shasum": ""
},
"require-dev": {
"jekyll": "1.0.2",
"lessc": "1.4.2"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"OFL-1.1",
"MIT"
],
"authors": [
{
"name": "Dave Gandy",
"email": "dave@fontawesome.io",
"homepage": "http://twitter.com/davegandy",
"role": "Developer"
}
],
"description": "The iconic font and CSS framework",
"homepage": "http://fontawesome.io/",
"keywords": [
"FontAwesome",
"awesome",
"bootstrap",
"font",
"icon"
],
"time": "2015-07-28 21:55:03"
},
{
"name": "fxp/composer-asset-plugin",
"version": "v1.0.3",
"source": {
"type": "git",
"url": "https://github.com/francoispluchino/composer-asset-plugin.git",
"reference": "c2b0406ac19e9ea2d9556987e827d4e7f6924fde"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/francoispluchino/composer-asset-plugin/zipball/c2b0406ac19e9ea2d9556987e827d4e7f6924fde",
"reference": "c2b0406ac19e9ea2d9556987e827d4e7f6924fde",
"shasum": ""
},
"require": {
"composer-plugin-api": "^1.0",
"php": ">=5.3.3"
},
"require-dev": {
"composer/composer": "~1.0@dev"
},
"type": "composer-plugin",
"extra": {
"class": "Fxp\\Composer\\AssetPlugin\\FxpAssetPlugin",
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
"Fxp\\Composer\\AssetPlugin\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "François Pluchino",
"email": "francois.pluchino@gmail.com"
}
],
"description": "NPM/Bower Dependency Manager for Composer",
"homepage": "https://github.com/francoispluchino/composer-asset-plugin",
"keywords": [
"asset",
"bower",
"composer",
"dependency manager",
"nodejs",
"npm",
"package"
],
"time": "2015-07-29 12:23:21"
},
{
"name": "himiklab/yii2-colorbox-widget",
"version": "1.0.3",
"source": {
"type": "git",
"url": "https://github.com/himiklab/yii2-colorbox-widget.git",
"reference": "c4aee292cdeabe03e996eb4396719376c2252602"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/himiklab/yii2-colorbox-widget/zipball/c4aee292cdeabe03e996eb4396719376c2252602",
"reference": "c4aee292cdeabe03e996eb4396719376c2252602",
"shasum": ""
},
"require": {
"bower-asset/jquery-colorbox": "*",
"yiisoft/yii2": "*"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"himiklab\\colorbox\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "HimikLab",
"homepage": "https://github.com/himiklab/"
}
],
"description": "Customizable lightbox widget for Yii2",
"keywords": [
"colorbox",
"lightbox",
"widget",
"yii2"
],
"time": "2016-02-02 10:23:58"
},
{
"name": "imagine/imagine",
"version": "v0.5.0",
"source": {
"type": "git",
"url": "https://github.com/avalanche123/Imagine.git",
"reference": "f64ec666baaa800edcbf237db41121a569230709"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/avalanche123/Imagine/zipball/f64ec666baaa800edcbf237db41121a569230709",
"reference": "f64ec666baaa800edcbf237db41121a569230709",
"shasum": ""
},
"require": {
"php": ">=5.3.2"
},
"require-dev": {
"sami/sami": "dev-master"
},
"suggest": {
"ext-gd": "to use the GD implementation",
"ext-gmagick": "to use the Gmagick implementation",
"ext-imagick": "to use the Imagick implementation"
},
"type": "library",
"autoload": {
"psr-0": {
"Imagine": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Bulat Shakirzyanov",
"email": "mallluhuct@gmail.com",
"homepage": "http://avalanche123.com"
}
],
"description": "Image processing for PHP 5.3",
"homepage": "http://imagine.readthedocs.org/",
"keywords": [
"drawing",
"graphics",
"image manipulation",
"image processing"
],
"time": "2013-07-10 17:25:36"
},
{
"name": "kartik-v/bootstrap-fileinput",
"version": "v4.3.0",
"source": {
"type": "git",
"url": "https://github.com/kartik-v/bootstrap-fileinput.git",
"reference": "cde72929649da55470e0a81a5e85921f80f28f29"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/kartik-v/bootstrap-fileinput/zipball/cde72929649da55470e0a81a5e85921f80f28f29",
"reference": "cde72929649da55470e0a81a5e85921f80f28f29",
"shasum": ""
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "4.2.x-dev"
}
},
"autoload": {
"psr-4": {
"kartik\\plugins\\fileinput\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Kartik Visweswaran",
"email": "kartikv2@gmail.com",
"homepage": "http://www.krajee.com/"
}
],
"description": "An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.",
"homepage": "https://github.com/kartik-v/bootstrap-fileinput",
"keywords": [
"ajax",
"bootstrap",
"delete",
"file",
"image",
"input",
"jquery",
"multiple",
"preview",
"progress",
"upload"
],
"time": "2016-01-25 16:55:20"
},
{
"name": "kartik-v/yii2-date-range",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/kartik-v/yii2-date-range.git",
"reference": "41c471785333dbfd341affd36b1e07ddf81aa7f5"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/kartik-v/yii2-date-range/zipball/9d18dc36934a3d09411b31a156b6faec684f908d",
"reference": "41c471785333dbfd341affd36b1e07ddf81aa7f5",
"shasum": ""
},
"require": {
"kartik-v/yii2-krajee-base": "*"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"kartik\\daterange\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Kartik Visweswaran",
"email": "kartikv2@gmail.com",
"homepage": "http://www.krajee.com/"
}
],
"description": "An advanced Yii 2 date range picker input for based on bootstrap-daterangepicker plugin.",
"homepage": "https://github.com/kartik-v/yii2-date-range",
"keywords": [
"bootstrap",
"bootstrap 3",
"date",
"date-range",
"extension",
"range",
"time",
"widget",
"yii2"
],
"time": "2016-01-11 06:28:58"
},
{
"name": "kartik-v/yii2-export",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/kartik-v/yii2-export.git",
"reference": "0d43aec99000691c78284178ec09ef0ec7e76e87"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/kartik-v/yii2-export/zipball/5c2429fae2bc176fdc7f5edb3965ddf989b46e26",
"reference": "0d43aec99000691c78284178ec09ef0ec7e76e87",
"shasum": ""
},
"require": {
"kartik-v/yii2-grid": "~3.0",
"phpoffice/phpexcel": "~1.8.0"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"kartik\\export\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Kartik Visweswaran",
"email": "kartikv2@gmail.com",
"homepage": "http://www.krajee.com/"
}
],
"description": "A library to export server/db data in various formats (e.g. excel, html, pdf, csv etc.)",
"homepage": "https://github.com/kartik-v/yii2-export",
"keywords": [
"OpenXML",
"csv",
"export",
"extension",
"html",
"json",
"pdf",
"spreadsheet",
"text",
"widget",
"xls",
"xlsx",
"yii2"
],
"time": "2015-09-05 09:29:40"
},
{
"name": "kartik-v/yii2-grid",
"version": "v3.0.7",
"source": {
"type": "git",
"url": "https://github.com/kartik-v/yii2-grid.git",
"reference": "913fde8fbe41bf998d53a88d0443e25e1e696194"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/kartik-v/yii2-grid/zipball/913fde8fbe41bf998d53a88d0443e25e1e696194",
"reference": "913fde8fbe41bf998d53a88d0443e25e1e696194",
"shasum": ""
},
"require": {
"kartik-v/yii2-krajee-base": "~1.7"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"kartik\\grid\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Kartik Visweswaran",
"email": "kartikv2@gmail.com",
"homepage": "http://www.krajee.com/"
}
],
"description": "Yii 2 GridView on steroids. Various enhancements and utilities for the Yii 2.0 GridView widget.",
"homepage": "https://github.com/kartik-v/yii2-grid",
"keywords": [
"extension",
"grid",
"widget",
"yii2"
],
"time": "2015-09-12 19:41:22"
},
{
"name": "kartik-v/yii2-icons",
"version": "v1.4.1",
"source": {
"type": "git",
"url": "https://github.com/kartik-v/yii2-icons.git",
"reference": "58100d3278799e7a13771de6e6ca2865fb60454d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/kartik-v/yii2-icons/zipball/58100d3278799e7a13771de6e6ca2865fb60454d",
"reference": "58100d3278799e7a13771de6e6ca2865fb60454d",
"shasum": ""
},
"require": {
"components/flag-icon-css": "*",
"fortawesome/font-awesome": "*",
"kartik-v/yii2-krajee-base": "*",
"yiisoft/yii2-jui": "*"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"kartik\\icons\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD 3-Clause"
],
"authors": [
{
"name": "Kartik Visweswaran",
"email": "kartikv2@gmail.com",
"homepage": "http://demos.krajee.com/"
}
],
"description": "Set of icon frameworks for use in Yii Framework 2.0",
"homepage": "https://github.com/kartik-v/yii2-icons",
"keywords": [
"extension",
"font",
"icon",
"yii",
"yii2"
],
"time": "2015-12-13 16:27:46"
},
{
"name": "kartik-v/yii2-krajee-base",
"version": "v1.7.7",
"source": {
"type": "git",
"url": "https://github.com/kartik-v/yii2-krajee-base.git",
"reference": "c0adff9d9762f4fd3bf0e7cd0000fcab0bf00f19"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/kartik-v/yii2-krajee-base/zipball/c0adff9d9762f4fd3bf0e7cd0000fcab0bf00f19",
"reference": "c0adff9d9762f4fd3bf0e7cd0000fcab0bf00f19",
"shasum": ""
},
"require": {
"yiisoft/yii2-bootstrap": "@dev"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"kartik\\base\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Kartik Visweswaran",
"email": "kartikv2@gmail.com",
"homepage": "http://www.krajee.com/"
}
],
"description": "Base library and foundation components for all Yii2 Krajee extensions.",
"homepage": "https://github.com/kartik-v/yii2-krajee-base",
"keywords": [
"base",
"extension",
"foundation",
"krajee",
"widget",
"yii2"
],
"time": "2015-06-16 05:19:57"
},
{
"name": "kartik-v/yii2-widget-datetimepicker",
"version": "v1.4.1",
"source": {
"type": "git",
"url": "https://github.com/kartik-v/yii2-widget-datetimepicker.git",
"reference": "2ad71f7a8f4fdd03b999c4f50257f42b2c1b74fe"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/kartik-v/yii2-widget-datetimepicker/zipball/2ad71f7a8f4fdd03b999c4f50257f42b2c1b74fe",
"reference": "2ad71f7a8f4fdd03b999c4f50257f42b2c1b74fe",
"shasum": ""
},
"require": {
"kartik-v/yii2-krajee-base": "*"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"kartik\\datetime\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Kartik Visweswaran",
"email": "kartikv2@gmail.com",
"homepage": "http://www.krajee.com/"
}
],
"description": "Enhanced Yii2 wrapper for the bootstrap datetimepicker plugin (sub repo split from yii2-widgets)",
"homepage": "https://github.com/kartik-v/yii2-widget-datetimepicker",
"keywords": [
"datetime",
"extension",
"form",
"jquery",
"picker",
"plugin",
"select2",
"widget",
"yii2"
],
"time": "2015-11-04 18:46:05"
},
{
"name": "kartik-v/yii2-widget-fileinput",
"version": "v1.0.2",
"source": {
"type": "git",
"url": "https://github.com/kartik-v/yii2-widget-fileinput.git",
"reference": "c78637387dd5306002ae5613d9f9cab8a5df975d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/kartik-v/yii2-widget-fileinput/zipball/c78637387dd5306002ae5613d9f9cab8a5df975d",
"reference": "c78637387dd5306002ae5613d9f9cab8a5df975d",
"shasum": ""
},
"require": {
"kartik-v/bootstrap-fileinput": "*",
"kartik-v/yii2-krajee-base": "*"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"kartik\\file\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD 3-Clause"
],
"authors": [
{
"name": "Kartik Visweswaran",
"email": "kartikv2@gmail.com",
"homepage": "http://www.krajee.com/"
}
],
"description": "An enhanced FileInput widget for Bootstrap 3.x with file preview, multiple selection, and more features (sub repo split from yii2-widgets)",
"homepage": "https://github.com/kartik-v/yii2-widget-fileinput",
"keywords": [
"extension",
"file",
"form",
"input",
"jquery",
"plugin",
"upload",
"widget",
"yii2"
],
"time": "2015-05-03 14:11:04"
},
{
"name": "kartik-v/yii2-widget-select2",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/kartik-v/yii2-widget-select2.git",
"reference": "fa0175d936012eac3f7a382792cbb13948015c4e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/kartik-v/yii2-widget-select2/zipball/4d03239c1e28ef8d3b96ab7fe360f5cbda34fb69",
"reference": "fa0175d936012eac3f7a382792cbb13948015c4e",
"shasum": ""
},
"require": {
"kartik-v/yii2-krajee-base": "~1.7"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"kartik\\select2\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Kartik Visweswaran",
"email": "kartikv2@gmail.com",
"homepage": "http://www.krajee.com/"
}
],
"description": "Enhanced Yii2 wrapper for the Select2 jQuery plugin (sub repo split from yii2-widgets).",
"homepage": "https://github.com/kartik-v/yii2-widget-select2",
"keywords": [
"dropdown",
"extension",
"form",
"jquery",
"plugin",
"select2",
"widget",
"yii2"
],
"time": "2015-09-22 03:10:57"
},
{
"name": "kartik-v/yii2-widget-typeahead",
"version": "v1.0.1",
"source": {
"type": "git",
"url": "https://github.com/kartik-v/yii2-widget-typeahead.git",
"reference": "e369cd55cb2fb9d3a82b57ea6c9a62d69f14fb94"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/kartik-v/yii2-widget-typeahead/zipball/e369cd55cb2fb9d3a82b57ea6c9a62d69f14fb94",
"reference": "e369cd55cb2fb9d3a82b57ea6c9a62d69f14fb94",
"shasum": ""
},
"require": {
"kartik-v/yii2-krajee-base": "~1.7"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"kartik\\typeahead\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Kartik Visweswaran",
"email": "kartikv2@gmail.com",
"homepage": "http://www.krajee.com/"
}
],
"description": "Enhanced Yii2 wrapper for the Twitter Typeahead plugin (sub repo split from yii2-widgets).",
"homepage": "https://github.com/kartik-v/yii2-widget-typeahead",
"keywords": [
"dropdown",
"extension",
"form",
"jquery",
"plugin",
"typeahead",
"widget",
"yii2"
],
"time": "2015-06-28 18:05:41"
},
{
"name": "kucha/ueditor",
"version": "1.2",
"source": {
"type": "git",
"url": "https://github.com/BigKuCha/yii2-ueditor-widget.git",
"reference": "b41439ee0c69efc800a53087c20d8bfcea0f9507"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/BigKuCha/yii2-ueditor-widget/zipball/b41439ee0c69efc800a53087c20d8bfcea0f9507",
"reference": "b41439ee0c69efc800a53087c20d8bfcea0f9507",
"shasum": ""
},
"type": "library",
"autoload": {
"psr-4": {
"kucha\\ueditor\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"null"
],
"authors": [
{
"name": "BigKuCha",
"email": "nevermore1989@vip.qq.com"
}
],
"description": "desc",
"time": "2015-02-06 02:01:30"
},
{
"name": "leandrogehlen/yii2-treegrid",
"version": "1.0.0",
"source": {
"type": "git",
"url": "https://github.com/leandrogehlen/yii2-treegrid.git",
"reference": "cbca863963233e0daf95a85e3ecc2dbf938924ec"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/leandrogehlen/yii2-treegrid/zipball/cbca863963233e0daf95a85e3ecc2dbf938924ec",
"reference": "cbca863963233e0daf95a85e3ecc2dbf938924ec",
"shasum": ""
},
"require": {
"bower-asset/jquery-treegrid": "0.3.0",
"yiisoft/yii2": "2.0.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"leandrogehlen\\treegrid\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Leandro Guindani Gehlen",
"email": "leandrogehlen@gmail.com"
}
],
"description": "Extension for Yii2 Framework to work with jQuery TreeGrid",
"keywords": [
"interface",
"tree",
"treegrid",
"treeview",
"yii2"
],
"time": "2015-08-14 10:03:32"
},
{
"name": "marekpetras/yii2-calendarview-widget",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/marekpetras/yii2-calendarview-widget.git",
"reference": "e4e2ca6ea822e747ab82fdf00e47ddb9595b5740"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/marekpetras/yii2-calendarview-widget/zipball/e4e2ca6ea822e747ab82fdf00e47ddb9595b5740",
"reference": "e4e2ca6ea822e747ab82fdf00e47ddb9595b5740",
"shasum": ""
},
"require": {
"yiisoft/yii2": "*",
"yiisoft/yii2-bootstrap": "*"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"marekpetras\\calendarview\\": "/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Marek Petras",
"email": "mark@markpetras.eu"
}
],
"description": "CalendarView widget for Yii 2 Framework.",
"homepage": "https://github.com/marekpetras/yii2-calendarview-widget",
"keywords": [
"activerecord",
"calendar",
"dataprovider",
"extension",
"view",
"widget",
"yii2"
],
"time": "2015-11-10 04:11:31"
},
{
"name": "nemmo/yii2-attachments",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/Nemmo/yii2-attachments.git",
"reference": "efd598c4359415ba3ab7858eeb0b4e55e52016fa"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/Nemmo/yii2-attachments/zipball/efd598c4359415ba3ab7858eeb0b4e55e52016fa",
"reference": "efd598c4359415ba3ab7858eeb0b4e55e52016fa",
"shasum": ""
},
"require": {
"himiklab/yii2-colorbox-widget": "*",
"kartik-v/yii2-widget-fileinput": "v1.0.2",
"php": ">=5.4.0",
"yiisoft/yii2": "*"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"nemmo\\attachments\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-4-Clause"
],
"authors": [
{
"name": "Alimzhan Abuov aka Nemmo",
"email": "alimzhan.abu@yandex.kz"
}
],
"description": "Extension for file uploading and attaching to the models",
"keywords": [
"attachment",
"extension",
"file",
"upload",
"yii2"
],
"time": "2015-11-03 08:05:54"
},
{
"name": "ollieday/yii2-uuid",
"version": "v1.0.0",
"source": {
"type": "git",
"url": "https://github.com/OllieDay/yii2-uuid.git",
"reference": "c5b6a6bfda5b0db7a5e2a31f3a78870329709183"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/OllieDay/yii2-uuid/zipball/c5b6a6bfda5b0db7a5e2a31f3a78870329709183",
"reference": "c5b6a6bfda5b0db7a5e2a31f3a78870329709183",
"shasum": ""
},
"require": {
"ramsey/uuid": "3.*",
"yiisoft/yii2": "*"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"ollieday\\uuid\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Ollie Day"
}
],
"description": "Component for generating UUIDs with ramsey/uuid.",
"homepage": "https://github.com/ollieday",
"keywords": [
"extension",
"guid",
"identifier",
"uuid",
"yii2"
],
"time": "2015-11-01 12:11:57"
},
{
"name": "phpoffice/phpexcel",
"version": "1.8.1",
"source": {
"type": "git",
"url": "https://github.com/PHPOffice/PHPExcel.git",
"reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/372c7cbb695a6f6f1e62649381aeaa37e7e70b32",
"reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32",
"shasum": ""
},
"require": {
"ext-xml": "*",
"ext-xmlwriter": "*",
"php": ">=5.2.0"
},
"type": "library",
"autoload": {
"psr-0": {
"PHPExcel": "Classes/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"LGPL"
],
"authors": [
{
"name": "Maarten Balliauw",
"homepage": "http://blog.maartenballiauw.be"
},
{
"name": "Mark Baker"
},
{
"name": "Franck Lefevre",
"homepage": "http://blog.rootslabs.net"
},
{
"name": "Erik Tilt"
}
],
"description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
"homepage": "http://phpexcel.codeplex.com",
"keywords": [
"OpenXML",
"excel",
"php",
"spreadsheet",
"xls",
"xlsx"
],
"time": "2015-05-01 07:00:55"
},
{
"name": "ramsey/uuid",
"version": "3.0.1",
"source": {
"type": "git",
"url": "https://github.com/ramsey/uuid.git",
"reference": "3c84b9e2965a5fa666dec8617a3a66a8179c6ca8"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/ramsey/uuid/zipball/3c84b9e2965a5fa666dec8617a3a66a8179c6ca8",
"reference": "3c84b9e2965a5fa666dec8617a3a66a8179c6ca8",
"shasum": ""
},
"require": {
"php": ">=5.4"
},
"replace": {
"rhumsaa/uuid": "self.version"
},
"require-dev": {
"apigen/apigen": "^4.1",
"ircmaxell/random-lib": "^1.1",
"jakub-onderka/php-parallel-lint": "^0.9.0",
"moontoast/math": "^1.1",
"phpunit/phpunit": "^4.7",
"satooshi/php-coveralls": "^0.6.1",
"squizlabs/php_codesniffer": "^2.3"
},
"suggest": {
"ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
"ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
"moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
"ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
"ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
},
"type": "library",
"autoload": {
"psr-4": {
"Ramsey\\Uuid\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Marijn Huizendveld",
"email": "marijn.huizendveld@gmail.com"
},
{
"name": "Thibaud Fabre",
"email": "thibaud@aztech.io"
},
{
"name": "Ben Ramsey",
"email": "ben@benramsey.com",
"homepage": "https://benramsey.com"
}
],
"description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
"homepage": "https://github.com/ramsey/uuid",
"keywords": [
"guid",
"identifier",
"uuid"
],
"time": "2015-10-21 16:27:25"
},
{
"name": "swiftmailer/swiftmailer",
"version": "v5.4.1",
"source": {
"type": "git",
"url": "https://github.com/swiftmailer/swiftmailer.git",
"reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/0697e6aa65c83edf97bb0f23d8763f94e3f11421",
"reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421",
"shasum": ""
},
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"mockery/mockery": "~0.9.1,<0.9.4"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "5.4-dev"
}
},
"autoload": {
"files": [
"lib/swift_required.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Chris Corbyn"
},
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
}
],
"description": "Swiftmailer, free feature-rich PHP mailer",
"homepage": "http://swiftmailer.org",
"keywords": [
"email",
"mail",
"mailer"
],
"time": "2015-06-06 14:19:39"
},
{
"name": "thiagotalma/yii2-jstree",
"version": "v1.0.0",
"source": {
"type": "git",
"url": "https://github.com/thiagotalma/yii2-jstree-widget.git",
"reference": "68817a9c1c64218cfa606e9af7405a1c42f0bfd0"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/thiagotalma/yii2-jstree-widget/zipball/68817a9c1c64218cfa606e9af7405a1c42f0bfd0",
"reference": "68817a9c1c64218cfa606e9af7405a1c42f0bfd0",
"shasum": ""
},
"require": {
"bower-asset/jstree": "*",
"yiisoft/yii2": "*"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"talma\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD 3-Clause"
],
"authors": [
{
"name": "Thiago Talma",
"email": "thiago@thiagomt.com",
"homepage": "http://www.thiagomt.com/"
}
],
"description": "Widget for Yii Framework 2.0 to use JsTree",
"homepage": "https://github.com/thiagotalma/yii2-jstree-widget",
"keywords": [
"extension",
"form",
"jstree",
"widget",
"yii2"
],
"time": "2015-09-02 03:05:49"
},
{
"name": "yii-dream-team/yii2-jstree",
"version": "1.0.0",
"source": {
"type": "git",
"url": "https://github.com/yii-dream-team/yii2-jstree.git",
"reference": "42f46369fb504a2278b06ada6c120068a27f3460"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/yii-dream-team/yii2-jstree/zipball/42f46369fb504a2278b06ada6c120068a27f3460",
"reference": "42f46369fb504a2278b06ada6c120068a27f3460",
"shasum": ""
},
"require": {
"bower-asset/jstree": "~3",
"yiisoft/yii2": "~2"
},
"type": "yii2-extension",
"autoload": {
"psr-4": {
"yiidreamteam\\jstree\\": "./src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Alexey Samoylov",
"email": "alexey.samoylov@gmail.com",
"homepage": "http://yiiblog.ru",
"role": "Developer"
}
],
"description": "Yii2 JsTree assets and widget",
"homepage": "http://yiidreamteam.com/yii2/jstree",
"keywords": [
"jstree",
"widget",
"yii2"
],
"time": "2015-01-06 20:04:57"
},
{
"name": "yiisoft/yii2",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/yiisoft/yii2-framework.git",
"reference": "b4b13a0b901d16f37cb9a9bc4453c3f7c70da3f6"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/c47257db05de10b0924b1e47c855212b457c69a3",
"reference": "b4b13a0b901d16f37cb9a9bc4453c3f7c70da3f6",
"shasum": ""
},
"require": {
"bower-asset/jquery": "2.1.*@stable | 1.11.*@stable",
"bower-asset/jquery.inputmask": "3.1.*",
"bower-asset/punycode": "1.3.*",
"bower-asset/yii2-pjax": ">=2.0.1",
"cebe/markdown": "~1.0.0 | ~1.1.0",
"ext-ctype": "*",
"ext-mbstring": "*",
"ezyang/htmlpurifier": "4.6.*",
"lib-pcre": "*",
"php": ">=5.4.0",
"yiisoft/yii2-composer": "*"
},
"bin": [
"yii"
],
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
"yii\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Qiang Xue",
"email": "qiang.xue@gmail.com",
"homepage": "http://www.yiiframework.com/",
"role": "Founder and project lead"
},
{
"name": "Alexander Makarov",
"email": "sam@rmcreative.ru",
"homepage": "http://rmcreative.ru/",
"role": "Core framework development"
},
{
"name": "Maurizio Domba",
"homepage": "http://mdomba.info/",
"role": "Core framework development"
},
{
"name": "Carsten Brandt",
"email": "mail@cebe.cc",
"homepage": "http://cebe.cc/",
"role": "Core framework development"
},
{
"name": "Timur Ruziev",
"email": "resurtm@gmail.com",
"homepage": "http://resurtm.com/",
"role": "Core framework development"
},
{
"name": "Paul Klimov",
"email": "klimov.paul@gmail.com",
"role": "Core framework development"
}
],
"description": "Yii PHP Framework Version 2",
"homepage": "http://www.yiiframework.com/",
"keywords": [
"framework",
"yii2"
],
"time": "2015-09-16 14:38:02"
},
{
"name": "yiisoft/yii2-bootstrap",
"version": "2.0.4",
"source": {
"type": "git",
"url": "https://github.com/yiisoft/yii2-bootstrap.git",
"reference": "1b6b1e61cf91c3cdd517d6a7e71d30bb212e4af0"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/1b6b1e61cf91c3cdd517d6a7e71d30bb212e4af0",
"reference": "1b6b1e61cf91c3cdd517d6a7e71d30bb212e4af0",
"shasum": ""
},
"require": {
"bower-asset/bootstrap": "3.3.* | 3.2.* | 3.1.*",
"yiisoft/yii2": ">=2.0.4"
},
"type": "yii2-extension",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
},
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
},
"autoload": {
"psr-4": {
"yii\\bootstrap\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Qiang Xue",
"email": "qiang.xue@gmail.com"
}
],
"description": "The Twitter Bootstrap extension for the Yii framework",
"keywords": [
"bootstrap",
"yii2"
],
"time": "2015-05-10 22:08:17"
},
{
"name": "yiisoft/yii2-composer",
"version": "2.0.3",
"source": {
"type": "git",
"url": "https://github.com/yiisoft/yii2-composer.git",
"reference": "ca8d23707ae47d20b0454e4b135c156f6da6d7be"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/ca8d23707ae47d20b0454e4b135c156f6da6d7be",
"reference": "ca8d23707ae47d20b0454e4b135c156f6da6d7be",
"shasum": ""
},
"require": {
"composer-plugin-api": "1.0.0"
},
"type": "composer-plugin",
"extra": {
"class": "yii\\composer\\Plugin",
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
"yii\\composer\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Qiang Xue",
"email": "qiang.xue@gmail.com"
}
],
"description": "The composer plugin for Yii extension installer",
"keywords": [
"composer",
"extension installer",
"yii2"
],
"time": "2015-03-01 06:22:44"
},
{
"name": "yiisoft/yii2-imagine",
"version": "2.0.3",
"source": {
"type": "git",
"url": "https://github.com/yiisoft/yii2-imagine.git",
"reference": "0961343138b65bba447de84b2b300899617e6acc"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/yiisoft/yii2-imagine/zipball/0961343138b65bba447de84b2b300899617e6acc",
"reference": "0961343138b65bba447de84b2b300899617e6acc",
"shasum": ""
},
"require": {
"imagine/imagine": "0.5.*",
"yiisoft/yii2": "*"
},
"type": "yii2-extension",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
"yii\\imagine\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Antonio Ramirez",
"email": "amigo.cobos@gmail.com"
}
],
"description": "The Imagine integration for the Yii framework",
"keywords": [
"helper",
"image",
"imagine",
"yii2"
],
"time": "2015-03-01 06:22:44"
},
{
"name": "yiisoft/yii2-jui",
"version": "2.0.4",
"source": {
"type": "git",
"url": "https://github.com/yiisoft/yii2-jui.git",
"reference": "ce16f29cca654702c2ee500ccad9657a2d2e6a09"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/yiisoft/yii2-jui/zipball/ce16f29cca654702c2ee500ccad9657a2d2e6a09",
"reference": "ce16f29cca654702c2ee500ccad9657a2d2e6a09",
"shasum": ""
},
"require": {
"bower-asset/jquery-ui": "1.11.*@stable",
"yiisoft/yii2": ">=2.0.4"
},
"type": "yii2-extension",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
},
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
},
"autoload": {
"psr-4": {
"yii\\jui\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Qiang Xue",
"email": "qiang.xue@gmail.com"
}
],
"description": "The Jquery UI extension for the Yii framework",
"keywords": [
"jQuery UI",
"yii2"
],
"time": "2015-05-10 22:09:43"
},
{
"name": "yiisoft/yii2-swiftmailer",
"version": "2.0.4",
"source": {
"type": "git",
"url": "https://github.com/yiisoft/yii2-swiftmailer.git",
"reference": "4ec435a89e30b203cea99770910fb5499cb3627a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/4ec435a89e30b203cea99770910fb5499cb3627a",
"reference": "4ec435a89e30b203cea99770910fb5499cb3627a",
"shasum": ""
},
"require": {
"swiftmailer/swiftmailer": "~5.0",
"yiisoft/yii2": ">=2.0.4"
},
"type": "yii2-extension",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
"yii\\swiftmailer\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Paul Klimov",
"email": "klimov.paul@gmail.com"
}
],
"description": "The SwiftMailer integration for the Yii framework",
"keywords": [
"email",
"mail",
"mailer",
"swift",
"swiftmailer",
"yii2"
],
"time": "2015-05-10 22:12:32"
}
],
"packages-dev": [
{
"name": "bower-asset/typeahead.js",
"version": "v0.10.5",
"source": {
"type": "git",
"url": "https://github.com/twitter/typeahead.js.git",
"reference": "5f198b87d1af845da502ea9df93a5e84801ce742"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/twitter/typeahead.js/zipball/5f198b87d1af845da502ea9df93a5e84801ce742",
"reference": "5f198b87d1af845da502ea9df93a5e84801ce742",
"shasum": ""
},
"require": {
"bower-asset/jquery": ">=1.7"
},
"require-dev": {
"bower-asset/jasmine-ajax": ">=1.3.1,<1.4",
"bower-asset/jasmine-jquery": ">=1.5.2,<1.6",
"bower-asset/jquery": ">=1.7,<1.8"
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": "dist/typeahead.bundle.js"
}
},
{
"name": "fzaninotto/faker",
"version": "v1.5.0",
"source": {
"type": "git",
"url": "https://github.com/fzaninotto/Faker.git",
"reference": "d0190b156bcca848d401fb80f31f504f37141c8d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/fzaninotto/Faker/zipball/d0190b156bcca848d401fb80f31f504f37141c8d",
"reference": "d0190b156bcca848d401fb80f31f504f37141c8d",
"shasum": ""
},
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer": "~1.5"
},
"suggest": {
"ext-intl": "*"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.5.x-dev"
}
},
"autoload": {
"psr-4": {
"Faker\\": "src/Faker/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "François Zaninotto"
}
],
"description": "Faker is a PHP library that generates fake data for you.",
"keywords": [
"data",
"faker",
"fixtures"
],
"time": "2015-05-29 06:29:14"
},
{
"name": "phpspec/php-diff",
"version": "v1.0.2",
"source": {
"type": "git",
"url": "https://github.com/phpspec/php-diff.git",
"reference": "30e103d19519fe678ae64a60d77884ef3d71b28a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpspec/php-diff/zipball/30e103d19519fe678ae64a60d77884ef3d71b28a",
"reference": "30e103d19519fe678ae64a60d77884ef3d71b28a",
"shasum": ""
},
"type": "library",
"autoload": {
"psr-0": {
"Diff": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Chris Boulton",
"homepage": "http://github.com/chrisboulton",
"role": "Original developer"
}
],
"description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
"time": "2013-11-01 13:02:21"
},
{
"name": "yiisoft/yii2-codeception",
"version": "2.0.4",
"source": {
"type": "git",
"url": "https://github.com/yiisoft/yii2-codeception.git",
"reference": "de5007e7a99359597abbfe1c88dca3ce620061c5"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/yiisoft/yii2-codeception/zipball/de5007e7a99359597abbfe1c88dca3ce620061c5",
"reference": "de5007e7a99359597abbfe1c88dca3ce620061c5",
"shasum": ""
},
"require": {
"yiisoft/yii2": ">=2.0.4"
},
"type": "yii2-extension",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
"yii\\codeception\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Mark Jebri",
"email": "mark.github@yandex.ru"
}
],
"description": "The Codeception integration for the Yii framework",
"keywords": [
"codeception",
"yii2"
],
"time": "2015-05-10 22:08:30"
},
{
"name": "yiisoft/yii2-debug",
"version": "2.0.5",
"source": {
"type": "git",
"url": "https://github.com/yiisoft/yii2-debug.git",
"reference": "1b302e67521d46feb2413d9d96ca94ed82b39b0e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/1b302e67521d46feb2413d9d96ca94ed82b39b0e",
"reference": "1b302e67521d46feb2413d9d96ca94ed82b39b0e",
"shasum": ""
},
"require": {
"yiisoft/yii2": ">=2.0.4",
"yiisoft/yii2-bootstrap": "*"
},
"type": "yii2-extension",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
"yii\\debug\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Qiang Xue",
"email": "qiang.xue@gmail.com"
}
],
"description": "The debugger extension for the Yii framework",
"keywords": [
"debug",
"debugger",
"yii2"
],
"time": "2015-08-06 16:14:06"
},
{
"name": "yiisoft/yii2-faker",
"version": "2.0.3",
"source": {
"type": "git",
"url": "https://github.com/yiisoft/yii2-faker.git",
"reference": "b88ca69ee226a3610b2c26c026c3203d7ac50f6c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/b88ca69ee226a3610b2c26c026c3203d7ac50f6c",
"reference": "b88ca69ee226a3610b2c26c026c3203d7ac50f6c",
"shasum": ""
},
"require": {
"fzaninotto/faker": "*",
"yiisoft/yii2": "*"
},
"type": "yii2-extension",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
"yii\\faker\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Mark Jebri",
"email": "mark.github@yandex.ru"
}
],
"description": "Fixture generator. The Faker integration for the Yii framework.",
"keywords": [
"Fixture",
"faker",
"yii2"
],
"time": "2015-03-01 06:22:44"
},
{
"name": "yiisoft/yii2-gii",
"version": "2.0.4",
"source": {
"type": "git",
"url": "https://github.com/yiisoft/yii2-gii.git",
"reference": "e5a023e8779bd774194842ec1b8fb4917cf04007"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/e5a023e8779bd774194842ec1b8fb4917cf04007",
"reference": "e5a023e8779bd774194842ec1b8fb4917cf04007",
"shasum": ""
},
"require": {
"bower-asset/typeahead.js": "0.10.*",
"phpspec/php-diff": ">=1.0.2",
"yiisoft/yii2": ">=2.0.4",
"yiisoft/yii2-bootstrap": "~2.0"
},
"type": "yii2-extension",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
},
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
},
"autoload": {
"psr-4": {
"yii\\gii\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Qiang Xue",
"email": "qiang.xue@gmail.com"
}
],
"description": "The Gii extension for the Yii framework",
"keywords": [
"code generator",
"gii",
"yii2"
],
"time": "2015-05-10 22:09:31"
}
],
"aliases": [],
"minimum-stability": "stable",
"stability-flags": {
"yiisoft/yii2": 20,
"kartik-v/yii2-widget-select2": 20,
"kartik-v/yii2-export": 20,
"kartik-v/yii2-date-range": 20,
"dektrium/yii2-rbac": 20,
"marekpetras/yii2-calendarview-widget": 20,
"nemmo/yii2-attachments": 20
},
"prefer-stable": false,
"prefer-lowest": false,
"platform": {
"php": ">=5.4.0"
},
"platform-dev": []
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/jianor/dbmcloud.git
git@gitee.com:jianor/dbmcloud.git
jianor
dbmcloud
dbmcloud
master

搜索帮助