composer.lock 203 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784
  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": "bd5e2ccae4851be41ed513f3ec9161c3",
  8. "packages": [
  9. {
  10. "name": "bower-asset/bootstrap",
  11. "version": "v3.4.1",
  12. "source": {
  13. "type": "git",
  14. "url": "git@github.com:twbs/bootstrap.git",
  15. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/68b0d231a13201eb14acd3dc84e51543d16e5f7e",
  20. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e",
  21. "shasum": null
  22. },
  23. "require": {
  24. "bower-asset/jquery": ">=1.9.1,<4.0"
  25. },
  26. "type": "bower-asset",
  27. "license": [
  28. "MIT"
  29. ]
  30. },
  31. {
  32. "name": "bower-asset/inputmask",
  33. "version": "3.3.11",
  34. "source": {
  35. "type": "git",
  36. "url": "https://github.com/RobinHerbots/Inputmask.git",
  37. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  38. },
  39. "dist": {
  40. "type": "zip",
  41. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/5e670ad62f50c738388d4dcec78d2888505ad77b",
  42. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b",
  43. "shasum": null
  44. },
  45. "require": {
  46. "bower-asset/jquery": ">=1.7"
  47. },
  48. "type": "bower-asset",
  49. "license": [
  50. "http://opensource.org/licenses/mit-license.php"
  51. ]
  52. },
  53. {
  54. "name": "bower-asset/jquery",
  55. "version": "3.5.1",
  56. "source": {
  57. "type": "git",
  58. "url": "git@github.com:jquery/jquery-dist.git",
  59. "reference": "4c0e4becb8263bb5b3e6dadc448d8e7305ef8215"
  60. },
  61. "dist": {
  62. "type": "zip",
  63. "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/4c0e4becb8263bb5b3e6dadc448d8e7305ef8215",
  64. "reference": "4c0e4becb8263bb5b3e6dadc448d8e7305ef8215",
  65. "shasum": null
  66. },
  67. "type": "bower-asset",
  68. "license": [
  69. "MIT"
  70. ]
  71. },
  72. {
  73. "name": "bower-asset/punycode",
  74. "version": "v1.3.2",
  75. "source": {
  76. "type": "git",
  77. "url": "git@github.com:bestiejs/punycode.js.git",
  78. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  79. },
  80. "dist": {
  81. "type": "zip",
  82. "url": "https://api.github.com/repos/bestiejs/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  83. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  84. "shasum": null
  85. },
  86. "type": "bower-asset"
  87. },
  88. {
  89. "name": "bower-asset/yii2-pjax",
  90. "version": "2.0.7.1",
  91. "source": {
  92. "type": "git",
  93. "url": "https://github.com/yiisoft/jquery-pjax.git",
  94. "reference": "aef7b953107264f00234902a3880eb50dafc48be"
  95. },
  96. "dist": {
  97. "type": "zip",
  98. "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/aef7b953107264f00234902a3880eb50dafc48be",
  99. "reference": "aef7b953107264f00234902a3880eb50dafc48be",
  100. "shasum": null
  101. },
  102. "require": {
  103. "bower-asset/jquery": ">=1.8"
  104. },
  105. "type": "bower-asset",
  106. "license": [
  107. "MIT"
  108. ]
  109. },
  110. {
  111. "name": "cebe/markdown",
  112. "version": "1.2.1",
  113. "source": {
  114. "type": "git",
  115. "url": "https://github.com/cebe/markdown.git",
  116. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86"
  117. },
  118. "dist": {
  119. "type": "zip",
  120. "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  121. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  122. "shasum": "",
  123. "mirrors": [
  124. {
  125. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  126. "preferred": true
  127. }
  128. ]
  129. },
  130. "require": {
  131. "lib-pcre": "*",
  132. "php": ">=5.4.0"
  133. },
  134. "require-dev": {
  135. "cebe/indent": "*",
  136. "facebook/xhprof": "*@dev",
  137. "phpunit/phpunit": "4.1.*"
  138. },
  139. "bin": [
  140. "bin/markdown"
  141. ],
  142. "type": "library",
  143. "extra": {
  144. "branch-alias": {
  145. "dev-master": "1.2.x-dev"
  146. }
  147. },
  148. "autoload": {
  149. "psr-4": {
  150. "cebe\\markdown\\": ""
  151. }
  152. },
  153. "notification-url": "https://packagist.org/downloads/",
  154. "license": [
  155. "MIT"
  156. ],
  157. "authors": [
  158. {
  159. "name": "Carsten Brandt",
  160. "email": "mail@cebe.cc",
  161. "homepage": "http://cebe.cc/",
  162. "role": "Creator"
  163. }
  164. ],
  165. "description": "A super fast, highly extensible markdown parser for PHP",
  166. "homepage": "https://github.com/cebe/markdown#readme",
  167. "keywords": [
  168. "extensible",
  169. "fast",
  170. "gfm",
  171. "markdown",
  172. "markdown-extra"
  173. ],
  174. "time": "2018-03-26T11:24:36+00:00"
  175. },
  176. {
  177. "name": "doctrine/lexer",
  178. "version": "1.2.1",
  179. "source": {
  180. "type": "git",
  181. "url": "https://github.com/doctrine/lexer.git",
  182. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  183. },
  184. "dist": {
  185. "type": "zip",
  186. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  187. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  188. "shasum": "",
  189. "mirrors": [
  190. {
  191. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  192. "preferred": true
  193. }
  194. ]
  195. },
  196. "require": {
  197. "php": "^7.2 || ^8.0"
  198. },
  199. "require-dev": {
  200. "doctrine/coding-standard": "^6.0",
  201. "phpstan/phpstan": "^0.11.8",
  202. "phpunit/phpunit": "^8.2"
  203. },
  204. "type": "library",
  205. "extra": {
  206. "branch-alias": {
  207. "dev-master": "1.2.x-dev"
  208. }
  209. },
  210. "autoload": {
  211. "psr-4": {
  212. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  213. }
  214. },
  215. "notification-url": "https://packagist.org/downloads/",
  216. "license": [
  217. "MIT"
  218. ],
  219. "authors": [
  220. {
  221. "name": "Guilherme Blanco",
  222. "email": "guilhermeblanco@gmail.com"
  223. },
  224. {
  225. "name": "Roman Borschel",
  226. "email": "roman@code-factory.org"
  227. },
  228. {
  229. "name": "Johannes Schmitt",
  230. "email": "schmittjoh@gmail.com"
  231. }
  232. ],
  233. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  234. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  235. "keywords": [
  236. "annotations",
  237. "docblock",
  238. "lexer",
  239. "parser",
  240. "php"
  241. ],
  242. "time": "2020-05-25T17:44:05+00:00"
  243. },
  244. {
  245. "name": "egulias/email-validator",
  246. "version": "2.1.19",
  247. "source": {
  248. "type": "git",
  249. "url": "https://github.com/egulias/EmailValidator.git",
  250. "reference": "840d5603eb84cc81a6a0382adac3293e57c1c64c"
  251. },
  252. "dist": {
  253. "type": "zip",
  254. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/840d5603eb84cc81a6a0382adac3293e57c1c64c",
  255. "reference": "840d5603eb84cc81a6a0382adac3293e57c1c64c",
  256. "shasum": "",
  257. "mirrors": [
  258. {
  259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  260. "preferred": true
  261. }
  262. ]
  263. },
  264. "require": {
  265. "doctrine/lexer": "^1.0.1",
  266. "php": ">=5.5",
  267. "symfony/polyfill-intl-idn": "^1.10"
  268. },
  269. "require-dev": {
  270. "dominicsayers/isemail": "^3.0.7",
  271. "phpunit/phpunit": "^4.8.36|^7.5.15",
  272. "satooshi/php-coveralls": "^1.0.1"
  273. },
  274. "suggest": {
  275. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  276. },
  277. "type": "library",
  278. "extra": {
  279. "branch-alias": {
  280. "dev-master": "2.1.x-dev"
  281. }
  282. },
  283. "autoload": {
  284. "psr-4": {
  285. "Egulias\\EmailValidator\\": "src"
  286. }
  287. },
  288. "notification-url": "https://packagist.org/downloads/",
  289. "license": [
  290. "MIT"
  291. ],
  292. "authors": [
  293. {
  294. "name": "Eduardo Gulias Davis"
  295. }
  296. ],
  297. "description": "A library for validating emails against several RFCs",
  298. "homepage": "https://github.com/egulias/EmailValidator",
  299. "keywords": [
  300. "email",
  301. "emailvalidation",
  302. "emailvalidator",
  303. "validation",
  304. "validator"
  305. ],
  306. "time": "2020-08-08T21:28:19+00:00"
  307. },
  308. {
  309. "name": "ezyang/htmlpurifier",
  310. "version": "v4.13.0",
  311. "source": {
  312. "type": "git",
  313. "url": "https://github.com/ezyang/htmlpurifier.git",
  314. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  315. },
  316. "dist": {
  317. "type": "zip",
  318. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  319. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  320. "shasum": "",
  321. "mirrors": [
  322. {
  323. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  324. "preferred": true
  325. }
  326. ]
  327. },
  328. "require": {
  329. "php": ">=5.2"
  330. },
  331. "require-dev": {
  332. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  333. },
  334. "type": "library",
  335. "autoload": {
  336. "psr-0": {
  337. "HTMLPurifier": "library/"
  338. },
  339. "files": [
  340. "library/HTMLPurifier.composer.php"
  341. ],
  342. "exclude-from-classmap": [
  343. "/library/HTMLPurifier/Language/"
  344. ]
  345. },
  346. "notification-url": "https://packagist.org/downloads/",
  347. "license": [
  348. "LGPL-2.1-or-later"
  349. ],
  350. "authors": [
  351. {
  352. "name": "Edward Z. Yang",
  353. "email": "admin@htmlpurifier.org",
  354. "homepage": "http://ezyang.com"
  355. }
  356. ],
  357. "description": "Standards compliant HTML filter written in PHP",
  358. "homepage": "http://htmlpurifier.org/",
  359. "keywords": [
  360. "html"
  361. ],
  362. "time": "2020-06-29T00:56:53+00:00"
  363. },
  364. {
  365. "name": "kartik-v/yii2-krajee-base",
  366. "version": "v2.0.5",
  367. "source": {
  368. "type": "git",
  369. "url": "https://github.com/kartik-v/yii2-krajee-base.git",
  370. "reference": "9ddb662bdf49fdb671a90853912a40418a26a0dd"
  371. },
  372. "dist": {
  373. "type": "zip",
  374. "url": "https://api.github.com/repos/kartik-v/yii2-krajee-base/zipball/9ddb662bdf49fdb671a90853912a40418a26a0dd",
  375. "reference": "9ddb662bdf49fdb671a90853912a40418a26a0dd",
  376. "shasum": "",
  377. "mirrors": [
  378. {
  379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  380. "preferred": true
  381. }
  382. ]
  383. },
  384. "suggest": {
  385. "yiisoft/yii2-bootstrap": "for Krajee extensions to work with Bootstrap 3.x version",
  386. "yiisoft/yii2-bootstrap4": "for Krajee extensions to work with Bootstrap 4.x version"
  387. },
  388. "type": "yii2-extension",
  389. "extra": {
  390. "branch-alias": {
  391. "dev-master": "2.0.x-dev"
  392. }
  393. },
  394. "autoload": {
  395. "psr-4": {
  396. "kartik\\base\\": "src"
  397. }
  398. },
  399. "notification-url": "https://packagist.org/downloads/",
  400. "license": [
  401. "BSD-3-Clause"
  402. ],
  403. "authors": [
  404. {
  405. "name": "Kartik Visweswaran",
  406. "email": "kartikv2@gmail.com",
  407. "homepage": "http://www.krajee.com/"
  408. }
  409. ],
  410. "description": "Base library and foundation components for all Yii2 Krajee extensions.",
  411. "homepage": "https://github.com/kartik-v/yii2-krajee-base",
  412. "keywords": [
  413. "base",
  414. "extension",
  415. "foundation",
  416. "krajee",
  417. "widget",
  418. "yii2"
  419. ],
  420. "time": "2019-03-13T17:14:54+00:00"
  421. },
  422. {
  423. "name": "kartik-v/yii2-widget-datetimepicker",
  424. "version": "v1.4.9",
  425. "source": {
  426. "type": "git",
  427. "url": "https://github.com/kartik-v/yii2-widget-datetimepicker.git",
  428. "reference": "dadf042cf13cce84a877dff5f1e6893538f370cf"
  429. },
  430. "dist": {
  431. "type": "zip",
  432. "url": "https://api.github.com/repos/kartik-v/yii2-widget-datetimepicker/zipball/dadf042cf13cce84a877dff5f1e6893538f370cf",
  433. "reference": "dadf042cf13cce84a877dff5f1e6893538f370cf",
  434. "shasum": "",
  435. "mirrors": [
  436. {
  437. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  438. "preferred": true
  439. }
  440. ]
  441. },
  442. "require": {
  443. "kartik-v/yii2-krajee-base": ">=2.0.0"
  444. },
  445. "type": "yii2-extension",
  446. "extra": {
  447. "branch-alias": {
  448. "dev-master": "1.4.x-dev"
  449. }
  450. },
  451. "autoload": {
  452. "psr-4": {
  453. "kartik\\datetime\\": "src"
  454. }
  455. },
  456. "notification-url": "https://packagist.org/downloads/",
  457. "license": [
  458. "BSD-3-Clause"
  459. ],
  460. "authors": [
  461. {
  462. "name": "Kartik Visweswaran",
  463. "email": "kartikv2@gmail.com",
  464. "homepage": "http://www.krajee.com/"
  465. }
  466. ],
  467. "description": "Enhanced Yii2 wrapper for the bootstrap datetimepicker plugin (sub repo split from yii2-widgets)",
  468. "homepage": "https://github.com/kartik-v/yii2-widget-datetimepicker",
  469. "keywords": [
  470. "datetime",
  471. "extension",
  472. "form",
  473. "jquery",
  474. "picker",
  475. "plugin",
  476. "select2",
  477. "widget",
  478. "yii2"
  479. ],
  480. "time": "2019-05-29T12:28:51+00:00"
  481. },
  482. {
  483. "name": "maennchen/zipstream-php",
  484. "version": "2.1.0",
  485. "source": {
  486. "type": "git",
  487. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  488. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  489. },
  490. "dist": {
  491. "type": "zip",
  492. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  493. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  494. "shasum": "",
  495. "mirrors": [
  496. {
  497. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  498. "preferred": true
  499. }
  500. ]
  501. },
  502. "require": {
  503. "myclabs/php-enum": "^1.5",
  504. "php": ">= 7.1",
  505. "psr/http-message": "^1.0",
  506. "symfony/polyfill-mbstring": "^1.0"
  507. },
  508. "require-dev": {
  509. "ext-zip": "*",
  510. "guzzlehttp/guzzle": ">= 6.3",
  511. "mikey179/vfsstream": "^1.6",
  512. "phpunit/phpunit": ">= 7.5"
  513. },
  514. "type": "library",
  515. "autoload": {
  516. "psr-4": {
  517. "ZipStream\\": "src/"
  518. }
  519. },
  520. "notification-url": "https://packagist.org/downloads/",
  521. "license": [
  522. "MIT"
  523. ],
  524. "authors": [
  525. {
  526. "name": "Paul Duncan",
  527. "email": "pabs@pablotron.org"
  528. },
  529. {
  530. "name": "Jonatan Männchen",
  531. "email": "jonatan@maennchen.ch"
  532. },
  533. {
  534. "name": "Jesse Donat",
  535. "email": "donatj@gmail.com"
  536. },
  537. {
  538. "name": "András Kolesár",
  539. "email": "kolesar@kolesar.hu"
  540. }
  541. ],
  542. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  543. "keywords": [
  544. "stream",
  545. "zip"
  546. ],
  547. "time": "2020-05-30T13:11:16+00:00"
  548. },
  549. {
  550. "name": "markbaker/complex",
  551. "version": "1.4.8",
  552. "source": {
  553. "type": "git",
  554. "url": "https://github.com/MarkBaker/PHPComplex.git",
  555. "reference": "8eaa40cceec7bf0518187530b2e63871be661b72"
  556. },
  557. "dist": {
  558. "type": "zip",
  559. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/8eaa40cceec7bf0518187530b2e63871be661b72",
  560. "reference": "8eaa40cceec7bf0518187530b2e63871be661b72",
  561. "shasum": "",
  562. "mirrors": [
  563. {
  564. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  565. "preferred": true
  566. }
  567. ]
  568. },
  569. "require": {
  570. "php": "^5.6.0|^7.0.0"
  571. },
  572. "require-dev": {
  573. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  574. "phpcompatibility/php-compatibility": "^9.0",
  575. "phpdocumentor/phpdocumentor": "2.*",
  576. "phploc/phploc": "2.*",
  577. "phpmd/phpmd": "2.*",
  578. "phpunit/phpunit": "^4.8.35|^5.4.0",
  579. "sebastian/phpcpd": "2.*",
  580. "squizlabs/php_codesniffer": "^3.4.0"
  581. },
  582. "type": "library",
  583. "autoload": {
  584. "psr-4": {
  585. "Complex\\": "classes/src/"
  586. },
  587. "files": [
  588. "classes/src/functions/abs.php",
  589. "classes/src/functions/acos.php",
  590. "classes/src/functions/acosh.php",
  591. "classes/src/functions/acot.php",
  592. "classes/src/functions/acoth.php",
  593. "classes/src/functions/acsc.php",
  594. "classes/src/functions/acsch.php",
  595. "classes/src/functions/argument.php",
  596. "classes/src/functions/asec.php",
  597. "classes/src/functions/asech.php",
  598. "classes/src/functions/asin.php",
  599. "classes/src/functions/asinh.php",
  600. "classes/src/functions/atan.php",
  601. "classes/src/functions/atanh.php",
  602. "classes/src/functions/conjugate.php",
  603. "classes/src/functions/cos.php",
  604. "classes/src/functions/cosh.php",
  605. "classes/src/functions/cot.php",
  606. "classes/src/functions/coth.php",
  607. "classes/src/functions/csc.php",
  608. "classes/src/functions/csch.php",
  609. "classes/src/functions/exp.php",
  610. "classes/src/functions/inverse.php",
  611. "classes/src/functions/ln.php",
  612. "classes/src/functions/log2.php",
  613. "classes/src/functions/log10.php",
  614. "classes/src/functions/negative.php",
  615. "classes/src/functions/pow.php",
  616. "classes/src/functions/rho.php",
  617. "classes/src/functions/sec.php",
  618. "classes/src/functions/sech.php",
  619. "classes/src/functions/sin.php",
  620. "classes/src/functions/sinh.php",
  621. "classes/src/functions/sqrt.php",
  622. "classes/src/functions/tan.php",
  623. "classes/src/functions/tanh.php",
  624. "classes/src/functions/theta.php",
  625. "classes/src/operations/add.php",
  626. "classes/src/operations/subtract.php",
  627. "classes/src/operations/multiply.php",
  628. "classes/src/operations/divideby.php",
  629. "classes/src/operations/divideinto.php"
  630. ]
  631. },
  632. "notification-url": "https://packagist.org/downloads/",
  633. "license": [
  634. "MIT"
  635. ],
  636. "authors": [
  637. {
  638. "name": "Mark Baker",
  639. "email": "mark@lange.demon.co.uk"
  640. }
  641. ],
  642. "description": "PHP Class for working with complex numbers",
  643. "homepage": "https://github.com/MarkBaker/PHPComplex",
  644. "keywords": [
  645. "complex",
  646. "mathematics"
  647. ],
  648. "time": "2020-03-11T20:15:49+00:00"
  649. },
  650. {
  651. "name": "markbaker/matrix",
  652. "version": "1.2.0",
  653. "source": {
  654. "type": "git",
  655. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  656. "reference": "5348c5a67e3b75cd209d70103f916a93b1f1ed21"
  657. },
  658. "dist": {
  659. "type": "zip",
  660. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/5348c5a67e3b75cd209d70103f916a93b1f1ed21",
  661. "reference": "5348c5a67e3b75cd209d70103f916a93b1f1ed21",
  662. "shasum": "",
  663. "mirrors": [
  664. {
  665. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  666. "preferred": true
  667. }
  668. ]
  669. },
  670. "require": {
  671. "php": "^5.6.0|^7.0.0"
  672. },
  673. "require-dev": {
  674. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  675. "phpcompatibility/php-compatibility": "dev-master",
  676. "phploc/phploc": "^4",
  677. "phpmd/phpmd": "dev-master",
  678. "phpunit/phpunit": "^5.7",
  679. "sebastian/phpcpd": "^3.0",
  680. "squizlabs/php_codesniffer": "^3.0@dev"
  681. },
  682. "type": "library",
  683. "autoload": {
  684. "psr-4": {
  685. "Matrix\\": "classes/src/"
  686. },
  687. "files": [
  688. "classes/src/functions/adjoint.php",
  689. "classes/src/functions/antidiagonal.php",
  690. "classes/src/functions/cofactors.php",
  691. "classes/src/functions/determinant.php",
  692. "classes/src/functions/diagonal.php",
  693. "classes/src/functions/identity.php",
  694. "classes/src/functions/inverse.php",
  695. "classes/src/functions/minors.php",
  696. "classes/src/functions/trace.php",
  697. "classes/src/functions/transpose.php",
  698. "classes/src/operations/add.php",
  699. "classes/src/operations/directsum.php",
  700. "classes/src/operations/subtract.php",
  701. "classes/src/operations/multiply.php",
  702. "classes/src/operations/divideby.php",
  703. "classes/src/operations/divideinto.php"
  704. ]
  705. },
  706. "notification-url": "https://packagist.org/downloads/",
  707. "license": [
  708. "MIT"
  709. ],
  710. "authors": [
  711. {
  712. "name": "Mark Baker",
  713. "email": "mark@lange.demon.co.uk"
  714. }
  715. ],
  716. "description": "PHP Class for working with matrices",
  717. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  718. "keywords": [
  719. "mathematics",
  720. "matrix",
  721. "vector"
  722. ],
  723. "time": "2019-10-06T11:29:25+00:00"
  724. },
  725. {
  726. "name": "myclabs/php-enum",
  727. "version": "1.7.6",
  728. "source": {
  729. "type": "git",
  730. "url": "https://github.com/myclabs/php-enum.git",
  731. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c"
  732. },
  733. "dist": {
  734. "type": "zip",
  735. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  736. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  737. "shasum": "",
  738. "mirrors": [
  739. {
  740. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  741. "preferred": true
  742. }
  743. ]
  744. },
  745. "require": {
  746. "ext-json": "*",
  747. "php": ">=7.1"
  748. },
  749. "require-dev": {
  750. "phpunit/phpunit": "^7",
  751. "squizlabs/php_codesniffer": "1.*",
  752. "vimeo/psalm": "^3.8"
  753. },
  754. "type": "library",
  755. "autoload": {
  756. "psr-4": {
  757. "MyCLabs\\Enum\\": "src/"
  758. }
  759. },
  760. "notification-url": "https://packagist.org/downloads/",
  761. "license": [
  762. "MIT"
  763. ],
  764. "authors": [
  765. {
  766. "name": "PHP Enum contributors",
  767. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  768. }
  769. ],
  770. "description": "PHP Enum implementation",
  771. "homepage": "http://github.com/myclabs/php-enum",
  772. "keywords": [
  773. "enum"
  774. ],
  775. "time": "2020-02-14T08:15:52+00:00"
  776. },
  777. {
  778. "name": "paragonie/random_compat",
  779. "version": "v9.99.99",
  780. "source": {
  781. "type": "git",
  782. "url": "https://github.com/paragonie/random_compat.git",
  783. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  784. },
  785. "dist": {
  786. "type": "zip",
  787. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  788. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  789. "shasum": "",
  790. "mirrors": [
  791. {
  792. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  793. "preferred": true
  794. }
  795. ]
  796. },
  797. "require": {
  798. "php": "^7"
  799. },
  800. "require-dev": {
  801. "phpunit/phpunit": "4.*|5.*",
  802. "vimeo/psalm": "^1"
  803. },
  804. "suggest": {
  805. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  806. },
  807. "type": "library",
  808. "notification-url": "https://packagist.org/downloads/",
  809. "license": [
  810. "MIT"
  811. ],
  812. "authors": [
  813. {
  814. "name": "Paragon Initiative Enterprises",
  815. "email": "security@paragonie.com",
  816. "homepage": "https://paragonie.com"
  817. }
  818. ],
  819. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  820. "keywords": [
  821. "csprng",
  822. "polyfill",
  823. "pseudorandom",
  824. "random"
  825. ],
  826. "time": "2018-07-02T15:55:56+00:00"
  827. },
  828. {
  829. "name": "phpoffice/phpspreadsheet",
  830. "version": "1.14.1",
  831. "source": {
  832. "type": "git",
  833. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  834. "reference": "2383aad5689778470491581442aab38cec41bf1d"
  835. },
  836. "dist": {
  837. "type": "zip",
  838. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2383aad5689778470491581442aab38cec41bf1d",
  839. "reference": "2383aad5689778470491581442aab38cec41bf1d",
  840. "shasum": "",
  841. "mirrors": [
  842. {
  843. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  844. "preferred": true
  845. }
  846. ]
  847. },
  848. "require": {
  849. "ext-ctype": "*",
  850. "ext-dom": "*",
  851. "ext-fileinfo": "*",
  852. "ext-gd": "*",
  853. "ext-iconv": "*",
  854. "ext-libxml": "*",
  855. "ext-mbstring": "*",
  856. "ext-simplexml": "*",
  857. "ext-xml": "*",
  858. "ext-xmlreader": "*",
  859. "ext-xmlwriter": "*",
  860. "ext-zip": "*",
  861. "ext-zlib": "*",
  862. "maennchen/zipstream-php": "^2.1",
  863. "markbaker/complex": "^1.4",
  864. "markbaker/matrix": "^1.2",
  865. "php": "^7.2",
  866. "psr/http-client": "^1.0",
  867. "psr/http-factory": "^1.0",
  868. "psr/simple-cache": "^1.0"
  869. },
  870. "require-dev": {
  871. "dompdf/dompdf": "^0.8.5",
  872. "friendsofphp/php-cs-fixer": "^2.16",
  873. "jpgraph/jpgraph": "^4.0",
  874. "mpdf/mpdf": "^8.0",
  875. "phpcompatibility/php-compatibility": "^9.3",
  876. "phpunit/phpunit": "^8.5",
  877. "squizlabs/php_codesniffer": "^3.5",
  878. "tecnickcom/tcpdf": "^6.3"
  879. },
  880. "suggest": {
  881. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  882. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  883. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  884. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  885. },
  886. "type": "library",
  887. "autoload": {
  888. "psr-4": {
  889. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  890. }
  891. },
  892. "notification-url": "https://packagist.org/downloads/",
  893. "license": [
  894. "MIT"
  895. ],
  896. "authors": [
  897. {
  898. "name": "Maarten Balliauw",
  899. "homepage": "https://blog.maartenballiauw.be"
  900. },
  901. {
  902. "name": "Mark Baker",
  903. "homepage": "https://markbakeruk.net"
  904. },
  905. {
  906. "name": "Franck Lefevre",
  907. "homepage": "https://rootslabs.net"
  908. },
  909. {
  910. "name": "Erik Tilt"
  911. },
  912. {
  913. "name": "Adrien Crivelli"
  914. }
  915. ],
  916. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  917. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  918. "keywords": [
  919. "OpenXML",
  920. "excel",
  921. "gnumeric",
  922. "ods",
  923. "php",
  924. "spreadsheet",
  925. "xls",
  926. "xlsx"
  927. ],
  928. "time": "2020-07-19T09:51:35+00:00"
  929. },
  930. {
  931. "name": "psr/http-client",
  932. "version": "1.0.1",
  933. "source": {
  934. "type": "git",
  935. "url": "https://github.com/php-fig/http-client.git",
  936. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  937. },
  938. "dist": {
  939. "type": "zip",
  940. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  941. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  942. "shasum": "",
  943. "mirrors": [
  944. {
  945. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  946. "preferred": true
  947. }
  948. ]
  949. },
  950. "require": {
  951. "php": "^7.0 || ^8.0",
  952. "psr/http-message": "^1.0"
  953. },
  954. "type": "library",
  955. "extra": {
  956. "branch-alias": {
  957. "dev-master": "1.0.x-dev"
  958. }
  959. },
  960. "autoload": {
  961. "psr-4": {
  962. "Psr\\Http\\Client\\": "src/"
  963. }
  964. },
  965. "notification-url": "https://packagist.org/downloads/",
  966. "license": [
  967. "MIT"
  968. ],
  969. "authors": [
  970. {
  971. "name": "PHP-FIG",
  972. "homepage": "http://www.php-fig.org/"
  973. }
  974. ],
  975. "description": "Common interface for HTTP clients",
  976. "homepage": "https://github.com/php-fig/http-client",
  977. "keywords": [
  978. "http",
  979. "http-client",
  980. "psr",
  981. "psr-18"
  982. ],
  983. "time": "2020-06-29T06:28:15+00:00"
  984. },
  985. {
  986. "name": "psr/http-factory",
  987. "version": "1.0.1",
  988. "source": {
  989. "type": "git",
  990. "url": "https://github.com/php-fig/http-factory.git",
  991. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  992. },
  993. "dist": {
  994. "type": "zip",
  995. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  996. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  997. "shasum": "",
  998. "mirrors": [
  999. {
  1000. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1001. "preferred": true
  1002. }
  1003. ]
  1004. },
  1005. "require": {
  1006. "php": ">=7.0.0",
  1007. "psr/http-message": "^1.0"
  1008. },
  1009. "type": "library",
  1010. "extra": {
  1011. "branch-alias": {
  1012. "dev-master": "1.0.x-dev"
  1013. }
  1014. },
  1015. "autoload": {
  1016. "psr-4": {
  1017. "Psr\\Http\\Message\\": "src/"
  1018. }
  1019. },
  1020. "notification-url": "https://packagist.org/downloads/",
  1021. "license": [
  1022. "MIT"
  1023. ],
  1024. "authors": [
  1025. {
  1026. "name": "PHP-FIG",
  1027. "homepage": "http://www.php-fig.org/"
  1028. }
  1029. ],
  1030. "description": "Common interfaces for PSR-7 HTTP message factories",
  1031. "keywords": [
  1032. "factory",
  1033. "http",
  1034. "message",
  1035. "psr",
  1036. "psr-17",
  1037. "psr-7",
  1038. "request",
  1039. "response"
  1040. ],
  1041. "time": "2019-04-30T12:38:16+00:00"
  1042. },
  1043. {
  1044. "name": "psr/http-message",
  1045. "version": "1.0.1",
  1046. "source": {
  1047. "type": "git",
  1048. "url": "https://github.com/php-fig/http-message.git",
  1049. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1050. },
  1051. "dist": {
  1052. "type": "zip",
  1053. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1054. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1055. "shasum": "",
  1056. "mirrors": [
  1057. {
  1058. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1059. "preferred": true
  1060. }
  1061. ]
  1062. },
  1063. "require": {
  1064. "php": ">=5.3.0"
  1065. },
  1066. "type": "library",
  1067. "extra": {
  1068. "branch-alias": {
  1069. "dev-master": "1.0.x-dev"
  1070. }
  1071. },
  1072. "autoload": {
  1073. "psr-4": {
  1074. "Psr\\Http\\Message\\": "src/"
  1075. }
  1076. },
  1077. "notification-url": "https://packagist.org/downloads/",
  1078. "license": [
  1079. "MIT"
  1080. ],
  1081. "authors": [
  1082. {
  1083. "name": "PHP-FIG",
  1084. "homepage": "http://www.php-fig.org/"
  1085. }
  1086. ],
  1087. "description": "Common interface for HTTP messages",
  1088. "homepage": "https://github.com/php-fig/http-message",
  1089. "keywords": [
  1090. "http",
  1091. "http-message",
  1092. "psr",
  1093. "psr-7",
  1094. "request",
  1095. "response"
  1096. ],
  1097. "time": "2016-08-06T14:39:51+00:00"
  1098. },
  1099. {
  1100. "name": "psr/simple-cache",
  1101. "version": "1.0.1",
  1102. "source": {
  1103. "type": "git",
  1104. "url": "https://github.com/php-fig/simple-cache.git",
  1105. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1106. },
  1107. "dist": {
  1108. "type": "zip",
  1109. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1110. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1111. "shasum": "",
  1112. "mirrors": [
  1113. {
  1114. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1115. "preferred": true
  1116. }
  1117. ]
  1118. },
  1119. "require": {
  1120. "php": ">=5.3.0"
  1121. },
  1122. "type": "library",
  1123. "extra": {
  1124. "branch-alias": {
  1125. "dev-master": "1.0.x-dev"
  1126. }
  1127. },
  1128. "autoload": {
  1129. "psr-4": {
  1130. "Psr\\SimpleCache\\": "src/"
  1131. }
  1132. },
  1133. "notification-url": "https://packagist.org/downloads/",
  1134. "license": [
  1135. "MIT"
  1136. ],
  1137. "authors": [
  1138. {
  1139. "name": "PHP-FIG",
  1140. "homepage": "http://www.php-fig.org/"
  1141. }
  1142. ],
  1143. "description": "Common interfaces for simple caching",
  1144. "keywords": [
  1145. "cache",
  1146. "caching",
  1147. "psr",
  1148. "psr-16",
  1149. "simple-cache"
  1150. ],
  1151. "time": "2017-10-23T01:57:42+00:00"
  1152. },
  1153. {
  1154. "name": "swiftmailer/swiftmailer",
  1155. "version": "v6.2.3",
  1156. "source": {
  1157. "type": "git",
  1158. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1159. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  1160. },
  1161. "dist": {
  1162. "type": "zip",
  1163. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  1164. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  1165. "shasum": "",
  1166. "mirrors": [
  1167. {
  1168. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1169. "preferred": true
  1170. }
  1171. ]
  1172. },
  1173. "require": {
  1174. "egulias/email-validator": "~2.0",
  1175. "php": ">=7.0.0",
  1176. "symfony/polyfill-iconv": "^1.0",
  1177. "symfony/polyfill-intl-idn": "^1.10",
  1178. "symfony/polyfill-mbstring": "^1.0"
  1179. },
  1180. "require-dev": {
  1181. "mockery/mockery": "~0.9.1",
  1182. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  1183. },
  1184. "suggest": {
  1185. "ext-intl": "Needed to support internationalized email addresses",
  1186. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  1187. },
  1188. "type": "library",
  1189. "extra": {
  1190. "branch-alias": {
  1191. "dev-master": "6.2-dev"
  1192. }
  1193. },
  1194. "autoload": {
  1195. "files": [
  1196. "lib/swift_required.php"
  1197. ]
  1198. },
  1199. "notification-url": "https://packagist.org/downloads/",
  1200. "license": [
  1201. "MIT"
  1202. ],
  1203. "authors": [
  1204. {
  1205. "name": "Chris Corbyn"
  1206. },
  1207. {
  1208. "name": "Fabien Potencier",
  1209. "email": "fabien@symfony.com"
  1210. }
  1211. ],
  1212. "description": "Swiftmailer, free feature-rich PHP mailer",
  1213. "homepage": "https://swiftmailer.symfony.com",
  1214. "keywords": [
  1215. "email",
  1216. "mail",
  1217. "mailer"
  1218. ],
  1219. "time": "2019-11-12T09:31:26+00:00"
  1220. },
  1221. {
  1222. "name": "symfony/polyfill-iconv",
  1223. "version": "v1.18.1",
  1224. "source": {
  1225. "type": "git",
  1226. "url": "https://github.com/symfony/polyfill-iconv.git",
  1227. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36"
  1228. },
  1229. "dist": {
  1230. "type": "zip",
  1231. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  1232. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  1233. "shasum": "",
  1234. "mirrors": [
  1235. {
  1236. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1237. "preferred": true
  1238. }
  1239. ]
  1240. },
  1241. "require": {
  1242. "php": ">=5.3.3"
  1243. },
  1244. "suggest": {
  1245. "ext-iconv": "For best performance"
  1246. },
  1247. "type": "library",
  1248. "extra": {
  1249. "branch-alias": {
  1250. "dev-master": "1.18-dev"
  1251. },
  1252. "thanks": {
  1253. "name": "symfony/polyfill",
  1254. "url": "https://github.com/symfony/polyfill"
  1255. }
  1256. },
  1257. "autoload": {
  1258. "psr-4": {
  1259. "Symfony\\Polyfill\\Iconv\\": ""
  1260. },
  1261. "files": [
  1262. "bootstrap.php"
  1263. ]
  1264. },
  1265. "notification-url": "https://packagist.org/downloads/",
  1266. "license": [
  1267. "MIT"
  1268. ],
  1269. "authors": [
  1270. {
  1271. "name": "Nicolas Grekas",
  1272. "email": "p@tchwork.com"
  1273. },
  1274. {
  1275. "name": "Symfony Community",
  1276. "homepage": "https://symfony.com/contributors"
  1277. }
  1278. ],
  1279. "description": "Symfony polyfill for the Iconv extension",
  1280. "homepage": "https://symfony.com",
  1281. "keywords": [
  1282. "compatibility",
  1283. "iconv",
  1284. "polyfill",
  1285. "portable",
  1286. "shim"
  1287. ],
  1288. "time": "2020-07-14T12:35:20+00:00"
  1289. },
  1290. {
  1291. "name": "symfony/polyfill-intl-idn",
  1292. "version": "v1.18.1",
  1293. "source": {
  1294. "type": "git",
  1295. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  1296. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251"
  1297. },
  1298. "dist": {
  1299. "type": "zip",
  1300. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  1301. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  1302. "shasum": "",
  1303. "mirrors": [
  1304. {
  1305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1306. "preferred": true
  1307. }
  1308. ]
  1309. },
  1310. "require": {
  1311. "php": ">=5.3.3",
  1312. "symfony/polyfill-intl-normalizer": "^1.10",
  1313. "symfony/polyfill-php70": "^1.10",
  1314. "symfony/polyfill-php72": "^1.10"
  1315. },
  1316. "suggest": {
  1317. "ext-intl": "For best performance"
  1318. },
  1319. "type": "library",
  1320. "extra": {
  1321. "branch-alias": {
  1322. "dev-master": "1.18-dev"
  1323. },
  1324. "thanks": {
  1325. "name": "symfony/polyfill",
  1326. "url": "https://github.com/symfony/polyfill"
  1327. }
  1328. },
  1329. "autoload": {
  1330. "psr-4": {
  1331. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  1332. },
  1333. "files": [
  1334. "bootstrap.php"
  1335. ]
  1336. },
  1337. "notification-url": "https://packagist.org/downloads/",
  1338. "license": [
  1339. "MIT"
  1340. ],
  1341. "authors": [
  1342. {
  1343. "name": "Laurent Bassin",
  1344. "email": "laurent@bassin.info"
  1345. },
  1346. {
  1347. "name": "Trevor Rowbotham",
  1348. "email": "trevor.rowbotham@pm.me"
  1349. },
  1350. {
  1351. "name": "Symfony Community",
  1352. "homepage": "https://symfony.com/contributors"
  1353. }
  1354. ],
  1355. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  1356. "homepage": "https://symfony.com",
  1357. "keywords": [
  1358. "compatibility",
  1359. "idn",
  1360. "intl",
  1361. "polyfill",
  1362. "portable",
  1363. "shim"
  1364. ],
  1365. "time": "2020-08-04T06:02:08+00:00"
  1366. },
  1367. {
  1368. "name": "symfony/polyfill-intl-normalizer",
  1369. "version": "v1.18.1",
  1370. "source": {
  1371. "type": "git",
  1372. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  1373. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e"
  1374. },
  1375. "dist": {
  1376. "type": "zip",
  1377. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  1378. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  1379. "shasum": "",
  1380. "mirrors": [
  1381. {
  1382. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1383. "preferred": true
  1384. }
  1385. ]
  1386. },
  1387. "require": {
  1388. "php": ">=5.3.3"
  1389. },
  1390. "suggest": {
  1391. "ext-intl": "For best performance"
  1392. },
  1393. "type": "library",
  1394. "extra": {
  1395. "branch-alias": {
  1396. "dev-master": "1.18-dev"
  1397. },
  1398. "thanks": {
  1399. "name": "symfony/polyfill",
  1400. "url": "https://github.com/symfony/polyfill"
  1401. }
  1402. },
  1403. "autoload": {
  1404. "psr-4": {
  1405. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  1406. },
  1407. "files": [
  1408. "bootstrap.php"
  1409. ],
  1410. "classmap": [
  1411. "Resources/stubs"
  1412. ]
  1413. },
  1414. "notification-url": "https://packagist.org/downloads/",
  1415. "license": [
  1416. "MIT"
  1417. ],
  1418. "authors": [
  1419. {
  1420. "name": "Nicolas Grekas",
  1421. "email": "p@tchwork.com"
  1422. },
  1423. {
  1424. "name": "Symfony Community",
  1425. "homepage": "https://symfony.com/contributors"
  1426. }
  1427. ],
  1428. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  1429. "homepage": "https://symfony.com",
  1430. "keywords": [
  1431. "compatibility",
  1432. "intl",
  1433. "normalizer",
  1434. "polyfill",
  1435. "portable",
  1436. "shim"
  1437. ],
  1438. "time": "2020-07-14T12:35:20+00:00"
  1439. },
  1440. {
  1441. "name": "symfony/polyfill-mbstring",
  1442. "version": "v1.18.1",
  1443. "source": {
  1444. "type": "git",
  1445. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1446. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a"
  1447. },
  1448. "dist": {
  1449. "type": "zip",
  1450. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a",
  1451. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a",
  1452. "shasum": "",
  1453. "mirrors": [
  1454. {
  1455. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1456. "preferred": true
  1457. }
  1458. ]
  1459. },
  1460. "require": {
  1461. "php": ">=5.3.3"
  1462. },
  1463. "suggest": {
  1464. "ext-mbstring": "For best performance"
  1465. },
  1466. "type": "library",
  1467. "extra": {
  1468. "branch-alias": {
  1469. "dev-master": "1.18-dev"
  1470. },
  1471. "thanks": {
  1472. "name": "symfony/polyfill",
  1473. "url": "https://github.com/symfony/polyfill"
  1474. }
  1475. },
  1476. "autoload": {
  1477. "psr-4": {
  1478. "Symfony\\Polyfill\\Mbstring\\": ""
  1479. },
  1480. "files": [
  1481. "bootstrap.php"
  1482. ]
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "license": [
  1486. "MIT"
  1487. ],
  1488. "authors": [
  1489. {
  1490. "name": "Nicolas Grekas",
  1491. "email": "p@tchwork.com"
  1492. },
  1493. {
  1494. "name": "Symfony Community",
  1495. "homepage": "https://symfony.com/contributors"
  1496. }
  1497. ],
  1498. "description": "Symfony polyfill for the Mbstring extension",
  1499. "homepage": "https://symfony.com",
  1500. "keywords": [
  1501. "compatibility",
  1502. "mbstring",
  1503. "polyfill",
  1504. "portable",
  1505. "shim"
  1506. ],
  1507. "time": "2020-07-14T12:35:20+00:00"
  1508. },
  1509. {
  1510. "name": "symfony/polyfill-php70",
  1511. "version": "v1.18.1",
  1512. "source": {
  1513. "type": "git",
  1514. "url": "https://github.com/symfony/polyfill-php70.git",
  1515. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3"
  1516. },
  1517. "dist": {
  1518. "type": "zip",
  1519. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  1520. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  1521. "shasum": "",
  1522. "mirrors": [
  1523. {
  1524. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1525. "preferred": true
  1526. }
  1527. ]
  1528. },
  1529. "require": {
  1530. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  1531. "php": ">=5.3.3"
  1532. },
  1533. "type": "library",
  1534. "extra": {
  1535. "branch-alias": {
  1536. "dev-master": "1.18-dev"
  1537. },
  1538. "thanks": {
  1539. "name": "symfony/polyfill",
  1540. "url": "https://github.com/symfony/polyfill"
  1541. }
  1542. },
  1543. "autoload": {
  1544. "psr-4": {
  1545. "Symfony\\Polyfill\\Php70\\": ""
  1546. },
  1547. "files": [
  1548. "bootstrap.php"
  1549. ],
  1550. "classmap": [
  1551. "Resources/stubs"
  1552. ]
  1553. },
  1554. "notification-url": "https://packagist.org/downloads/",
  1555. "license": [
  1556. "MIT"
  1557. ],
  1558. "authors": [
  1559. {
  1560. "name": "Nicolas Grekas",
  1561. "email": "p@tchwork.com"
  1562. },
  1563. {
  1564. "name": "Symfony Community",
  1565. "homepage": "https://symfony.com/contributors"
  1566. }
  1567. ],
  1568. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  1569. "homepage": "https://symfony.com",
  1570. "keywords": [
  1571. "compatibility",
  1572. "polyfill",
  1573. "portable",
  1574. "shim"
  1575. ],
  1576. "time": "2020-07-14T12:35:20+00:00"
  1577. },
  1578. {
  1579. "name": "symfony/polyfill-php72",
  1580. "version": "v1.18.1",
  1581. "source": {
  1582. "type": "git",
  1583. "url": "https://github.com/symfony/polyfill-php72.git",
  1584. "reference": "639447d008615574653fb3bc60d1986d7172eaae"
  1585. },
  1586. "dist": {
  1587. "type": "zip",
  1588. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae",
  1589. "reference": "639447d008615574653fb3bc60d1986d7172eaae",
  1590. "shasum": "",
  1591. "mirrors": [
  1592. {
  1593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1594. "preferred": true
  1595. }
  1596. ]
  1597. },
  1598. "require": {
  1599. "php": ">=5.3.3"
  1600. },
  1601. "type": "library",
  1602. "extra": {
  1603. "branch-alias": {
  1604. "dev-master": "1.18-dev"
  1605. },
  1606. "thanks": {
  1607. "name": "symfony/polyfill",
  1608. "url": "https://github.com/symfony/polyfill"
  1609. }
  1610. },
  1611. "autoload": {
  1612. "psr-4": {
  1613. "Symfony\\Polyfill\\Php72\\": ""
  1614. },
  1615. "files": [
  1616. "bootstrap.php"
  1617. ]
  1618. },
  1619. "notification-url": "https://packagist.org/downloads/",
  1620. "license": [
  1621. "MIT"
  1622. ],
  1623. "authors": [
  1624. {
  1625. "name": "Nicolas Grekas",
  1626. "email": "p@tchwork.com"
  1627. },
  1628. {
  1629. "name": "Symfony Community",
  1630. "homepage": "https://symfony.com/contributors"
  1631. }
  1632. ],
  1633. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  1634. "homepage": "https://symfony.com",
  1635. "keywords": [
  1636. "compatibility",
  1637. "polyfill",
  1638. "portable",
  1639. "shim"
  1640. ],
  1641. "time": "2020-07-14T12:35:20+00:00"
  1642. },
  1643. {
  1644. "name": "yiisoft/yii2",
  1645. "version": "2.0.37",
  1646. "source": {
  1647. "type": "git",
  1648. "url": "https://github.com/yiisoft/yii2-framework.git",
  1649. "reference": "e8094d1aa9e807fbea970bc1360ab836ffb1b738"
  1650. },
  1651. "dist": {
  1652. "type": "zip",
  1653. "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/e8094d1aa9e807fbea970bc1360ab836ffb1b738",
  1654. "reference": "e8094d1aa9e807fbea970bc1360ab836ffb1b738",
  1655. "shasum": "",
  1656. "mirrors": [
  1657. {
  1658. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1659. "preferred": true
  1660. }
  1661. ]
  1662. },
  1663. "require": {
  1664. "bower-asset/inputmask": "~3.2.2 | ~3.3.5",
  1665. "bower-asset/jquery": "3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  1666. "bower-asset/punycode": "1.3.*",
  1667. "bower-asset/yii2-pjax": "~2.0.1",
  1668. "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
  1669. "ext-ctype": "*",
  1670. "ext-mbstring": "*",
  1671. "ezyang/htmlpurifier": "~4.6",
  1672. "lib-pcre": "*",
  1673. "php": ">=5.4.0",
  1674. "yiisoft/yii2-composer": "~2.0.4"
  1675. },
  1676. "bin": [
  1677. "yii"
  1678. ],
  1679. "type": "library",
  1680. "extra": {
  1681. "branch-alias": {
  1682. "dev-master": "2.0.x-dev"
  1683. }
  1684. },
  1685. "autoload": {
  1686. "psr-4": {
  1687. "yii\\": ""
  1688. }
  1689. },
  1690. "notification-url": "https://packagist.org/downloads/",
  1691. "license": [
  1692. "BSD-3-Clause"
  1693. ],
  1694. "authors": [
  1695. {
  1696. "name": "Qiang Xue",
  1697. "email": "qiang.xue@gmail.com",
  1698. "homepage": "http://www.yiiframework.com/",
  1699. "role": "Founder and project lead"
  1700. },
  1701. {
  1702. "name": "Alexander Makarov",
  1703. "email": "sam@rmcreative.ru",
  1704. "homepage": "http://rmcreative.ru/",
  1705. "role": "Core framework development"
  1706. },
  1707. {
  1708. "name": "Maurizio Domba",
  1709. "homepage": "http://mdomba.info/",
  1710. "role": "Core framework development"
  1711. },
  1712. {
  1713. "name": "Carsten Brandt",
  1714. "email": "mail@cebe.cc",
  1715. "homepage": "http://cebe.cc/",
  1716. "role": "Core framework development"
  1717. },
  1718. {
  1719. "name": "Timur Ruziev",
  1720. "email": "resurtm@gmail.com",
  1721. "homepage": "http://resurtm.com/",
  1722. "role": "Core framework development"
  1723. },
  1724. {
  1725. "name": "Paul Klimov",
  1726. "email": "klimov.paul@gmail.com",
  1727. "role": "Core framework development"
  1728. },
  1729. {
  1730. "name": "Dmitry Naumenko",
  1731. "email": "d.naumenko.a@gmail.com",
  1732. "role": "Core framework development"
  1733. },
  1734. {
  1735. "name": "Boudewijn Vahrmeijer",
  1736. "email": "info@dynasource.eu",
  1737. "homepage": "http://dynasource.eu",
  1738. "role": "Core framework development"
  1739. }
  1740. ],
  1741. "description": "Yii PHP Framework Version 2",
  1742. "homepage": "http://www.yiiframework.com/",
  1743. "keywords": [
  1744. "framework",
  1745. "yii2"
  1746. ],
  1747. "time": "2020-08-07T20:11:56+00:00"
  1748. },
  1749. {
  1750. "name": "yiisoft/yii2-bootstrap",
  1751. "version": "2.0.10",
  1752. "source": {
  1753. "type": "git",
  1754. "url": "https://github.com/yiisoft/yii2-bootstrap.git",
  1755. "reference": "073c9ab0a4eb71f2485d84c96a1967130300d8fc"
  1756. },
  1757. "dist": {
  1758. "type": "zip",
  1759. "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/073c9ab0a4eb71f2485d84c96a1967130300d8fc",
  1760. "reference": "073c9ab0a4eb71f2485d84c96a1967130300d8fc",
  1761. "shasum": "",
  1762. "mirrors": [
  1763. {
  1764. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1765. "preferred": true
  1766. }
  1767. ]
  1768. },
  1769. "require": {
  1770. "bower-asset/bootstrap": "3.4.* | 3.3.* | 3.2.* | 3.1.*",
  1771. "yiisoft/yii2": "~2.0.6"
  1772. },
  1773. "require-dev": {
  1774. "phpunit/phpunit": "<7"
  1775. },
  1776. "type": "yii2-extension",
  1777. "extra": {
  1778. "branch-alias": {
  1779. "dev-master": "2.0.x-dev"
  1780. }
  1781. },
  1782. "autoload": {
  1783. "psr-4": {
  1784. "yii\\bootstrap\\": "src"
  1785. }
  1786. },
  1787. "notification-url": "https://packagist.org/downloads/",
  1788. "license": [
  1789. "BSD-3-Clause"
  1790. ],
  1791. "authors": [
  1792. {
  1793. "name": "Paul Klimov",
  1794. "email": "klimov.paul@gmail.com"
  1795. },
  1796. {
  1797. "name": "Alexander Makarov",
  1798. "email": "sam@rmcreative.ru",
  1799. "homepage": "http://rmcreative.ru/"
  1800. },
  1801. {
  1802. "name": "Antonio Ramirez",
  1803. "email": "amigo.cobos@gmail.com"
  1804. },
  1805. {
  1806. "name": "Qiang Xue",
  1807. "email": "qiang.xue@gmail.com",
  1808. "homepage": "http://www.yiiframework.com/"
  1809. }
  1810. ],
  1811. "description": "The Twitter Bootstrap extension for the Yii framework",
  1812. "keywords": [
  1813. "bootstrap",
  1814. "yii2"
  1815. ],
  1816. "time": "2019-04-23T13:18:43+00:00"
  1817. },
  1818. {
  1819. "name": "yiisoft/yii2-composer",
  1820. "version": "2.0.10",
  1821. "source": {
  1822. "type": "git",
  1823. "url": "https://github.com/yiisoft/yii2-composer.git",
  1824. "reference": "94bb3f66e779e2774f8776d6e1bdeab402940510"
  1825. },
  1826. "dist": {
  1827. "type": "zip",
  1828. "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/94bb3f66e779e2774f8776d6e1bdeab402940510",
  1829. "reference": "94bb3f66e779e2774f8776d6e1bdeab402940510",
  1830. "shasum": "",
  1831. "mirrors": [
  1832. {
  1833. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1834. "preferred": true
  1835. }
  1836. ]
  1837. },
  1838. "require": {
  1839. "composer-plugin-api": "^1.0 | ^2.0"
  1840. },
  1841. "require-dev": {
  1842. "composer/composer": "^1.0 | ^2.0@dev",
  1843. "phpunit/phpunit": "<7"
  1844. },
  1845. "type": "composer-plugin",
  1846. "extra": {
  1847. "class": "yii\\composer\\Plugin",
  1848. "branch-alias": {
  1849. "dev-master": "2.0.x-dev"
  1850. }
  1851. },
  1852. "autoload": {
  1853. "psr-4": {
  1854. "yii\\composer\\": ""
  1855. }
  1856. },
  1857. "notification-url": "https://packagist.org/downloads/",
  1858. "license": [
  1859. "BSD-3-Clause"
  1860. ],
  1861. "authors": [
  1862. {
  1863. "name": "Qiang Xue",
  1864. "email": "qiang.xue@gmail.com"
  1865. },
  1866. {
  1867. "name": "Carsten Brandt",
  1868. "email": "mail@cebe.cc"
  1869. }
  1870. ],
  1871. "description": "The composer plugin for Yii extension installer",
  1872. "keywords": [
  1873. "composer",
  1874. "extension installer",
  1875. "yii2"
  1876. ],
  1877. "time": "2020-06-24T00:04:01+00:00"
  1878. },
  1879. {
  1880. "name": "yiisoft/yii2-swiftmailer",
  1881. "version": "2.1.2",
  1882. "source": {
  1883. "type": "git",
  1884. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  1885. "reference": "09659a55959f9e64b8178d842b64a9ffae42b994"
  1886. },
  1887. "dist": {
  1888. "type": "zip",
  1889. "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/09659a55959f9e64b8178d842b64a9ffae42b994",
  1890. "reference": "09659a55959f9e64b8178d842b64a9ffae42b994",
  1891. "shasum": "",
  1892. "mirrors": [
  1893. {
  1894. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1895. "preferred": true
  1896. }
  1897. ]
  1898. },
  1899. "require": {
  1900. "swiftmailer/swiftmailer": "~6.0",
  1901. "yiisoft/yii2": ">=2.0.4"
  1902. },
  1903. "type": "yii2-extension",
  1904. "extra": {
  1905. "branch-alias": {
  1906. "dev-master": "2.1.x-dev"
  1907. }
  1908. },
  1909. "autoload": {
  1910. "psr-4": {
  1911. "yii\\swiftmailer\\": "src"
  1912. }
  1913. },
  1914. "notification-url": "https://packagist.org/downloads/",
  1915. "license": [
  1916. "BSD-3-Clause"
  1917. ],
  1918. "authors": [
  1919. {
  1920. "name": "Paul Klimov",
  1921. "email": "klimov.paul@gmail.com"
  1922. }
  1923. ],
  1924. "description": "The SwiftMailer integration for the Yii framework",
  1925. "keywords": [
  1926. "email",
  1927. "mail",
  1928. "mailer",
  1929. "swift",
  1930. "swiftmailer",
  1931. "yii2"
  1932. ],
  1933. "time": "2018-09-23T22:00:47+00:00"
  1934. }
  1935. ],
  1936. "packages-dev": [
  1937. {
  1938. "name": "behat/gherkin",
  1939. "version": "v4.6.2",
  1940. "source": {
  1941. "type": "git",
  1942. "url": "https://github.com/Behat/Gherkin.git",
  1943. "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31"
  1944. },
  1945. "dist": {
  1946. "type": "zip",
  1947. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/51ac4500c4dc30cbaaabcd2f25694299df666a31",
  1948. "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31",
  1949. "shasum": "",
  1950. "mirrors": [
  1951. {
  1952. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1953. "preferred": true
  1954. }
  1955. ]
  1956. },
  1957. "require": {
  1958. "php": ">=5.3.1"
  1959. },
  1960. "require-dev": {
  1961. "phpunit/phpunit": "~4.5|~5",
  1962. "symfony/phpunit-bridge": "~2.7|~3|~4",
  1963. "symfony/yaml": "~2.3|~3|~4"
  1964. },
  1965. "suggest": {
  1966. "symfony/yaml": "If you want to parse features, represented in YAML files"
  1967. },
  1968. "type": "library",
  1969. "extra": {
  1970. "branch-alias": {
  1971. "dev-master": "4.4-dev"
  1972. }
  1973. },
  1974. "autoload": {
  1975. "psr-0": {
  1976. "Behat\\Gherkin": "src/"
  1977. }
  1978. },
  1979. "notification-url": "https://packagist.org/downloads/",
  1980. "license": [
  1981. "MIT"
  1982. ],
  1983. "authors": [
  1984. {
  1985. "name": "Konstantin Kudryashov",
  1986. "email": "ever.zet@gmail.com",
  1987. "homepage": "http://everzet.com"
  1988. }
  1989. ],
  1990. "description": "Gherkin DSL parser for PHP 5.3",
  1991. "homepage": "http://behat.org/",
  1992. "keywords": [
  1993. "BDD",
  1994. "Behat",
  1995. "Cucumber",
  1996. "DSL",
  1997. "gherkin",
  1998. "parser"
  1999. ],
  2000. "time": "2020-03-17T14:03:26+00:00"
  2001. },
  2002. {
  2003. "name": "codeception/codeception",
  2004. "version": "4.1.6",
  2005. "source": {
  2006. "type": "git",
  2007. "url": "https://github.com/Codeception/Codeception.git",
  2008. "reference": "5515b6a6c6f1e1c909aaff2e5f3a15c177dfd1a9"
  2009. },
  2010. "dist": {
  2011. "type": "zip",
  2012. "url": "https://api.github.com/repos/Codeception/Codeception/zipball/5515b6a6c6f1e1c909aaff2e5f3a15c177dfd1a9",
  2013. "reference": "5515b6a6c6f1e1c909aaff2e5f3a15c177dfd1a9",
  2014. "shasum": "",
  2015. "mirrors": [
  2016. {
  2017. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2018. "preferred": true
  2019. }
  2020. ]
  2021. },
  2022. "require": {
  2023. "behat/gherkin": "^4.4.0",
  2024. "codeception/lib-asserts": "^1.0",
  2025. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.1.1 | ^9.0",
  2026. "codeception/stub": "^2.0 | ^3.0",
  2027. "ext-curl": "*",
  2028. "ext-json": "*",
  2029. "ext-mbstring": "*",
  2030. "guzzlehttp/psr7": "~1.4",
  2031. "php": ">=5.6.0 <8.0",
  2032. "symfony/console": ">=2.7 <6.0",
  2033. "symfony/css-selector": ">=2.7 <6.0",
  2034. "symfony/event-dispatcher": ">=2.7 <6.0",
  2035. "symfony/finder": ">=2.7 <6.0",
  2036. "symfony/yaml": ">=2.7 <6.0"
  2037. },
  2038. "require-dev": {
  2039. "codeception/module-asserts": "*@dev",
  2040. "codeception/module-cli": "*@dev",
  2041. "codeception/module-db": "*@dev",
  2042. "codeception/module-filesystem": "*@dev",
  2043. "codeception/module-phpbrowser": "*@dev",
  2044. "codeception/specify": "~0.3",
  2045. "codeception/util-universalframework": "*@dev",
  2046. "monolog/monolog": "~1.8",
  2047. "squizlabs/php_codesniffer": "~2.0",
  2048. "symfony/process": ">=2.7 <6.0",
  2049. "vlucas/phpdotenv": "^2.0 | ^3.0 | ^4.0"
  2050. },
  2051. "suggest": {
  2052. "codeception/specify": "BDD-style code blocks",
  2053. "codeception/verify": "BDD-style assertions",
  2054. "hoa/console": "For interactive console functionality",
  2055. "stecman/symfony-console-completion": "For BASH autocompletion",
  2056. "symfony/phpunit-bridge": "For phpunit-bridge support"
  2057. },
  2058. "bin": [
  2059. "codecept"
  2060. ],
  2061. "type": "library",
  2062. "extra": {
  2063. "branch-alias": []
  2064. },
  2065. "autoload": {
  2066. "psr-4": {
  2067. "Codeception\\": "src/Codeception",
  2068. "Codeception\\Extension\\": "ext"
  2069. }
  2070. },
  2071. "notification-url": "https://packagist.org/downloads/",
  2072. "license": [
  2073. "MIT"
  2074. ],
  2075. "authors": [
  2076. {
  2077. "name": "Michael Bodnarchuk",
  2078. "email": "davert@mail.ua",
  2079. "homepage": "http://codegyre.com"
  2080. }
  2081. ],
  2082. "description": "BDD-style testing framework",
  2083. "homepage": "http://codeception.com/",
  2084. "keywords": [
  2085. "BDD",
  2086. "TDD",
  2087. "acceptance testing",
  2088. "functional testing",
  2089. "unit testing"
  2090. ],
  2091. "time": "2020-06-07T16:31:51+00:00"
  2092. },
  2093. {
  2094. "name": "codeception/lib-asserts",
  2095. "version": "1.12.0",
  2096. "source": {
  2097. "type": "git",
  2098. "url": "https://github.com/Codeception/lib-asserts.git",
  2099. "reference": "acd0dc8b394595a74b58dcc889f72569ff7d8e71"
  2100. },
  2101. "dist": {
  2102. "type": "zip",
  2103. "url": "https://api.github.com/repos/Codeception/lib-asserts/zipball/acd0dc8b394595a74b58dcc889f72569ff7d8e71",
  2104. "reference": "acd0dc8b394595a74b58dcc889f72569ff7d8e71",
  2105. "shasum": "",
  2106. "mirrors": [
  2107. {
  2108. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2109. "preferred": true
  2110. }
  2111. ]
  2112. },
  2113. "require": {
  2114. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3 | ^9.0",
  2115. "php": ">=5.6.0 <8.0"
  2116. },
  2117. "type": "library",
  2118. "autoload": {
  2119. "classmap": [
  2120. "src/"
  2121. ]
  2122. },
  2123. "notification-url": "https://packagist.org/downloads/",
  2124. "license": [
  2125. "MIT"
  2126. ],
  2127. "authors": [
  2128. {
  2129. "name": "Michael Bodnarchuk",
  2130. "email": "davert@mail.ua",
  2131. "homepage": "http://codegyre.com"
  2132. },
  2133. {
  2134. "name": "Gintautas Miselis"
  2135. }
  2136. ],
  2137. "description": "Assertion methods used by Codeception core and Asserts module",
  2138. "homepage": "http://codeception.com/",
  2139. "keywords": [
  2140. "codeception"
  2141. ],
  2142. "time": "2020-04-17T18:20:46+00:00"
  2143. },
  2144. {
  2145. "name": "codeception/lib-innerbrowser",
  2146. "version": "1.3.2",
  2147. "source": {
  2148. "type": "git",
  2149. "url": "https://github.com/Codeception/lib-innerbrowser.git",
  2150. "reference": "7bdcee4cf654cfeeedd00405edd4f06f85255659"
  2151. },
  2152. "dist": {
  2153. "type": "zip",
  2154. "url": "https://api.github.com/repos/Codeception/lib-innerbrowser/zipball/7bdcee4cf654cfeeedd00405edd4f06f85255659",
  2155. "reference": "7bdcee4cf654cfeeedd00405edd4f06f85255659",
  2156. "shasum": "",
  2157. "mirrors": [
  2158. {
  2159. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2160. "preferred": true
  2161. }
  2162. ]
  2163. },
  2164. "require": {
  2165. "codeception/codeception": "*@dev",
  2166. "ext-dom": "*",
  2167. "ext-json": "*",
  2168. "ext-mbstring": "*",
  2169. "php": ">=5.6.0 <8.0",
  2170. "symfony/browser-kit": ">=2.7 <6.0",
  2171. "symfony/dom-crawler": ">=2.7 <6.0"
  2172. },
  2173. "conflict": {
  2174. "codeception/codeception": "<4.0"
  2175. },
  2176. "require-dev": {
  2177. "codeception/util-universalframework": "dev-master"
  2178. },
  2179. "type": "library",
  2180. "autoload": {
  2181. "classmap": [
  2182. "src/"
  2183. ]
  2184. },
  2185. "notification-url": "https://packagist.org/downloads/",
  2186. "license": [
  2187. "MIT"
  2188. ],
  2189. "authors": [
  2190. {
  2191. "name": "Michael Bodnarchuk",
  2192. "email": "davert@mail.ua",
  2193. "homepage": "http://codegyre.com"
  2194. },
  2195. {
  2196. "name": "Gintautas Miselis"
  2197. }
  2198. ],
  2199. "description": "Parent library for all Codeception framework modules and PhpBrowser",
  2200. "homepage": "http://codeception.com/",
  2201. "keywords": [
  2202. "codeception"
  2203. ],
  2204. "time": "2020-07-05T14:21:45+00:00"
  2205. },
  2206. {
  2207. "name": "codeception/module-asserts",
  2208. "version": "1.2.1",
  2209. "source": {
  2210. "type": "git",
  2211. "url": "https://github.com/Codeception/module-asserts.git",
  2212. "reference": "79f13d05b63f2fceba4d0e78044bab668c9b2a6b"
  2213. },
  2214. "dist": {
  2215. "type": "zip",
  2216. "url": "https://api.github.com/repos/Codeception/module-asserts/zipball/79f13d05b63f2fceba4d0e78044bab668c9b2a6b",
  2217. "reference": "79f13d05b63f2fceba4d0e78044bab668c9b2a6b",
  2218. "shasum": "",
  2219. "mirrors": [
  2220. {
  2221. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2222. "preferred": true
  2223. }
  2224. ]
  2225. },
  2226. "require": {
  2227. "codeception/codeception": "*@dev",
  2228. "codeception/lib-asserts": "^1.12.0",
  2229. "php": ">=5.6.0 <8.0"
  2230. },
  2231. "conflict": {
  2232. "codeception/codeception": "<4.0"
  2233. },
  2234. "require-dev": {
  2235. "codeception/util-robohelpers": "dev-master"
  2236. },
  2237. "type": "library",
  2238. "autoload": {
  2239. "classmap": [
  2240. "src/"
  2241. ]
  2242. },
  2243. "notification-url": "https://packagist.org/downloads/",
  2244. "license": [
  2245. "MIT"
  2246. ],
  2247. "authors": [
  2248. {
  2249. "name": "Michael Bodnarchuk"
  2250. },
  2251. {
  2252. "name": "Gintautas Miselis"
  2253. }
  2254. ],
  2255. "description": "Codeception module containing various assertions",
  2256. "homepage": "http://codeception.com/",
  2257. "keywords": [
  2258. "assertions",
  2259. "asserts",
  2260. "codeception"
  2261. ],
  2262. "time": "2020-04-20T07:26:11+00:00"
  2263. },
  2264. {
  2265. "name": "codeception/module-filesystem",
  2266. "version": "1.0.2",
  2267. "source": {
  2268. "type": "git",
  2269. "url": "https://github.com/Codeception/module-filesystem.git",
  2270. "reference": "fe3c352479924ec0aaf6a6c3d6825dc14242b81e"
  2271. },
  2272. "dist": {
  2273. "type": "zip",
  2274. "url": "https://api.github.com/repos/Codeception/module-filesystem/zipball/fe3c352479924ec0aaf6a6c3d6825dc14242b81e",
  2275. "reference": "fe3c352479924ec0aaf6a6c3d6825dc14242b81e",
  2276. "shasum": "",
  2277. "mirrors": [
  2278. {
  2279. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2280. "preferred": true
  2281. }
  2282. ]
  2283. },
  2284. "require": {
  2285. "codeception/codeception": "*@dev",
  2286. "php": ">=5.6.0 <8.0",
  2287. "symfony/finder": ">=2.7 <6.0"
  2288. },
  2289. "conflict": {
  2290. "codeception/codeception": "<4.0"
  2291. },
  2292. "require-dev": {
  2293. "codeception/util-robohelpers": "dev-master"
  2294. },
  2295. "type": "library",
  2296. "autoload": {
  2297. "classmap": [
  2298. "src/"
  2299. ]
  2300. },
  2301. "notification-url": "https://packagist.org/downloads/",
  2302. "license": [
  2303. "MIT"
  2304. ],
  2305. "authors": [
  2306. {
  2307. "name": "Michael Bodnarchuk"
  2308. },
  2309. {
  2310. "name": "Gintautas Miselis"
  2311. }
  2312. ],
  2313. "description": "Codeception module for testing local filesystem",
  2314. "homepage": "http://codeception.com/",
  2315. "keywords": [
  2316. "codeception",
  2317. "filesystem"
  2318. ],
  2319. "time": "2019-12-04T17:13:39+00:00"
  2320. },
  2321. {
  2322. "name": "codeception/module-yii2",
  2323. "version": "1.1.0",
  2324. "source": {
  2325. "type": "git",
  2326. "url": "https://github.com/Codeception/module-yii2.git",
  2327. "reference": "89ec2b34db0fe1c80d404d939ecc7ab07051b4b7"
  2328. },
  2329. "dist": {
  2330. "type": "zip",
  2331. "url": "https://api.github.com/repos/Codeception/module-yii2/zipball/89ec2b34db0fe1c80d404d939ecc7ab07051b4b7",
  2332. "reference": "89ec2b34db0fe1c80d404d939ecc7ab07051b4b7",
  2333. "shasum": "",
  2334. "mirrors": [
  2335. {
  2336. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2337. "preferred": true
  2338. }
  2339. ]
  2340. },
  2341. "require": {
  2342. "codeception/codeception": "4.0.x-dev | ^4.0",
  2343. "codeception/lib-innerbrowser": "^1.0",
  2344. "php": ">=5.6.0 <8.0"
  2345. },
  2346. "require-dev": {
  2347. "codeception/util-robohelpers": "dev-master"
  2348. },
  2349. "type": "library",
  2350. "autoload": {
  2351. "classmap": [
  2352. "src/"
  2353. ]
  2354. },
  2355. "notification-url": "https://packagist.org/downloads/",
  2356. "license": [
  2357. "MIT"
  2358. ],
  2359. "authors": [
  2360. {
  2361. "name": "Alexander Makarov"
  2362. },
  2363. {
  2364. "name": "Sam Mouse"
  2365. },
  2366. {
  2367. "name": "Michael Bodnarchuk"
  2368. }
  2369. ],
  2370. "description": "Codeception module for Yii2 framework",
  2371. "homepage": "http://codeception.com/",
  2372. "keywords": [
  2373. "codeception",
  2374. "yii2"
  2375. ],
  2376. "time": "2020-01-28T12:56:17+00:00"
  2377. },
  2378. {
  2379. "name": "codeception/phpunit-wrapper",
  2380. "version": "8.1.2",
  2381. "source": {
  2382. "type": "git",
  2383. "url": "https://github.com/Codeception/phpunit-wrapper.git",
  2384. "reference": "e610200adf75ebc1ea7cf10d7cdb43e0f5fff3cc"
  2385. },
  2386. "dist": {
  2387. "type": "zip",
  2388. "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/e610200adf75ebc1ea7cf10d7cdb43e0f5fff3cc",
  2389. "reference": "e610200adf75ebc1ea7cf10d7cdb43e0f5fff3cc",
  2390. "shasum": "",
  2391. "mirrors": [
  2392. {
  2393. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2394. "preferred": true
  2395. }
  2396. ]
  2397. },
  2398. "require": {
  2399. "php": ">=7.2",
  2400. "phpunit/php-code-coverage": "^7.0",
  2401. "phpunit/phpunit": "^8.0",
  2402. "sebastian/comparator": "^3.0",
  2403. "sebastian/diff": "^3.0"
  2404. },
  2405. "require-dev": {
  2406. "codeception/specify": "*",
  2407. "vlucas/phpdotenv": "^3.0"
  2408. },
  2409. "type": "library",
  2410. "autoload": {
  2411. "psr-4": {
  2412. "Codeception\\PHPUnit\\": "src/"
  2413. }
  2414. },
  2415. "notification-url": "https://packagist.org/downloads/",
  2416. "license": [
  2417. "MIT"
  2418. ],
  2419. "authors": [
  2420. {
  2421. "name": "Davert",
  2422. "email": "davert.php@resend.cc"
  2423. }
  2424. ],
  2425. "description": "PHPUnit classes used by Codeception",
  2426. "time": "2020-04-17T18:30:51+00:00"
  2427. },
  2428. {
  2429. "name": "codeception/specify",
  2430. "version": "0.4.6",
  2431. "source": {
  2432. "type": "git",
  2433. "url": "https://github.com/Codeception/Specify.git",
  2434. "reference": "21b586f503ca444aa519dd9cafb32f113a05f286"
  2435. },
  2436. "dist": {
  2437. "type": "zip",
  2438. "url": "https://api.github.com/repos/Codeception/Specify/zipball/21b586f503ca444aa519dd9cafb32f113a05f286",
  2439. "reference": "21b586f503ca444aa519dd9cafb32f113a05f286",
  2440. "shasum": "",
  2441. "mirrors": [
  2442. {
  2443. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2444. "preferred": true
  2445. }
  2446. ]
  2447. },
  2448. "require": {
  2449. "myclabs/deep-copy": "~1.1",
  2450. "php": ">=5.4.0"
  2451. },
  2452. "require-dev": {
  2453. "phpunit/phpunit": "~4.0"
  2454. },
  2455. "type": "library",
  2456. "autoload": {
  2457. "psr-0": {
  2458. "Codeception\\": "src/"
  2459. }
  2460. },
  2461. "notification-url": "https://packagist.org/downloads/",
  2462. "license": [
  2463. "MIT"
  2464. ],
  2465. "authors": [
  2466. {
  2467. "name": "Michael Bodnarchuk",
  2468. "email": "davert.php@mailican.com"
  2469. }
  2470. ],
  2471. "description": "BDD code blocks for PHPUnit and Codeception",
  2472. "time": "2016-10-21T09:42:00+00:00"
  2473. },
  2474. {
  2475. "name": "codeception/stub",
  2476. "version": "3.7.0",
  2477. "source": {
  2478. "type": "git",
  2479. "url": "https://github.com/Codeception/Stub.git",
  2480. "reference": "468dd5fe659f131fc997f5196aad87512f9b1304"
  2481. },
  2482. "dist": {
  2483. "type": "zip",
  2484. "url": "https://api.github.com/repos/Codeception/Stub/zipball/468dd5fe659f131fc997f5196aad87512f9b1304",
  2485. "reference": "468dd5fe659f131fc997f5196aad87512f9b1304",
  2486. "shasum": "",
  2487. "mirrors": [
  2488. {
  2489. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2490. "preferred": true
  2491. }
  2492. ]
  2493. },
  2494. "require": {
  2495. "phpunit/phpunit": "^8.4 | ^9.0"
  2496. },
  2497. "type": "library",
  2498. "autoload": {
  2499. "psr-4": {
  2500. "Codeception\\": "src/"
  2501. }
  2502. },
  2503. "notification-url": "https://packagist.org/downloads/",
  2504. "license": [
  2505. "MIT"
  2506. ],
  2507. "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
  2508. "time": "2020-07-03T15:54:43+00:00"
  2509. },
  2510. {
  2511. "name": "codeception/verify",
  2512. "version": "1.1.0",
  2513. "source": {
  2514. "type": "git",
  2515. "url": "https://github.com/Codeception/Verify.git",
  2516. "reference": "fa0bb946b6d61279f461bcc5a677ac0ed5eab9b3"
  2517. },
  2518. "dist": {
  2519. "type": "zip",
  2520. "url": "https://api.github.com/repos/Codeception/Verify/zipball/fa0bb946b6d61279f461bcc5a677ac0ed5eab9b3",
  2521. "reference": "fa0bb946b6d61279f461bcc5a677ac0ed5eab9b3",
  2522. "shasum": "",
  2523. "mirrors": [
  2524. {
  2525. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2526. "preferred": true
  2527. }
  2528. ]
  2529. },
  2530. "require": {
  2531. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.4",
  2532. "php": ">= 7.0",
  2533. "phpunit/phpunit": "> 6.0"
  2534. },
  2535. "type": "library",
  2536. "autoload": {
  2537. "files": [
  2538. "src/Codeception/function.php"
  2539. ],
  2540. "psr-4": {
  2541. "Codeception\\": "src\\Codeception"
  2542. }
  2543. },
  2544. "notification-url": "https://packagist.org/downloads/",
  2545. "license": [
  2546. "MIT"
  2547. ],
  2548. "authors": [
  2549. {
  2550. "name": "Michael Bodnarchuk",
  2551. "email": "davert@codeception.com"
  2552. }
  2553. ],
  2554. "description": "BDD assertion library for PHPUnit",
  2555. "time": "2019-07-30T18:21:46+00:00"
  2556. },
  2557. {
  2558. "name": "doctrine/instantiator",
  2559. "version": "1.3.1",
  2560. "source": {
  2561. "type": "git",
  2562. "url": "https://github.com/doctrine/instantiator.git",
  2563. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  2564. },
  2565. "dist": {
  2566. "type": "zip",
  2567. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  2568. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  2569. "shasum": "",
  2570. "mirrors": [
  2571. {
  2572. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2573. "preferred": true
  2574. }
  2575. ]
  2576. },
  2577. "require": {
  2578. "php": "^7.1 || ^8.0"
  2579. },
  2580. "require-dev": {
  2581. "doctrine/coding-standard": "^6.0",
  2582. "ext-pdo": "*",
  2583. "ext-phar": "*",
  2584. "phpbench/phpbench": "^0.13",
  2585. "phpstan/phpstan-phpunit": "^0.11",
  2586. "phpstan/phpstan-shim": "^0.11",
  2587. "phpunit/phpunit": "^7.0"
  2588. },
  2589. "type": "library",
  2590. "extra": {
  2591. "branch-alias": {
  2592. "dev-master": "1.2.x-dev"
  2593. }
  2594. },
  2595. "autoload": {
  2596. "psr-4": {
  2597. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2598. }
  2599. },
  2600. "notification-url": "https://packagist.org/downloads/",
  2601. "license": [
  2602. "MIT"
  2603. ],
  2604. "authors": [
  2605. {
  2606. "name": "Marco Pivetta",
  2607. "email": "ocramius@gmail.com",
  2608. "homepage": "http://ocramius.github.com/"
  2609. }
  2610. ],
  2611. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2612. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  2613. "keywords": [
  2614. "constructor",
  2615. "instantiate"
  2616. ],
  2617. "time": "2020-05-29T17:27:14+00:00"
  2618. },
  2619. {
  2620. "name": "fzaninotto/faker",
  2621. "version": "v1.9.1",
  2622. "source": {
  2623. "type": "git",
  2624. "url": "https://github.com/fzaninotto/Faker.git",
  2625. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  2626. },
  2627. "dist": {
  2628. "type": "zip",
  2629. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  2630. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  2631. "shasum": "",
  2632. "mirrors": [
  2633. {
  2634. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2635. "preferred": true
  2636. }
  2637. ]
  2638. },
  2639. "require": {
  2640. "php": "^5.3.3 || ^7.0"
  2641. },
  2642. "require-dev": {
  2643. "ext-intl": "*",
  2644. "phpunit/phpunit": "^4.8.35 || ^5.7",
  2645. "squizlabs/php_codesniffer": "^2.9.2"
  2646. },
  2647. "type": "library",
  2648. "extra": {
  2649. "branch-alias": {
  2650. "dev-master": "1.9-dev"
  2651. }
  2652. },
  2653. "autoload": {
  2654. "psr-4": {
  2655. "Faker\\": "src/Faker/"
  2656. }
  2657. },
  2658. "notification-url": "https://packagist.org/downloads/",
  2659. "license": [
  2660. "MIT"
  2661. ],
  2662. "authors": [
  2663. {
  2664. "name": "François Zaninotto"
  2665. }
  2666. ],
  2667. "description": "Faker is a PHP library that generates fake data for you.",
  2668. "keywords": [
  2669. "data",
  2670. "faker",
  2671. "fixtures"
  2672. ],
  2673. "time": "2019-12-12T13:22:17+00:00"
  2674. },
  2675. {
  2676. "name": "guzzlehttp/psr7",
  2677. "version": "1.6.1",
  2678. "source": {
  2679. "type": "git",
  2680. "url": "https://github.com/guzzle/psr7.git",
  2681. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  2682. },
  2683. "dist": {
  2684. "type": "zip",
  2685. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  2686. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  2687. "shasum": "",
  2688. "mirrors": [
  2689. {
  2690. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2691. "preferred": true
  2692. }
  2693. ]
  2694. },
  2695. "require": {
  2696. "php": ">=5.4.0",
  2697. "psr/http-message": "~1.0",
  2698. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  2699. },
  2700. "provide": {
  2701. "psr/http-message-implementation": "1.0"
  2702. },
  2703. "require-dev": {
  2704. "ext-zlib": "*",
  2705. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  2706. },
  2707. "suggest": {
  2708. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  2709. },
  2710. "type": "library",
  2711. "extra": {
  2712. "branch-alias": {
  2713. "dev-master": "1.6-dev"
  2714. }
  2715. },
  2716. "autoload": {
  2717. "psr-4": {
  2718. "GuzzleHttp\\Psr7\\": "src/"
  2719. },
  2720. "files": [
  2721. "src/functions_include.php"
  2722. ]
  2723. },
  2724. "notification-url": "https://packagist.org/downloads/",
  2725. "license": [
  2726. "MIT"
  2727. ],
  2728. "authors": [
  2729. {
  2730. "name": "Michael Dowling",
  2731. "email": "mtdowling@gmail.com",
  2732. "homepage": "https://github.com/mtdowling"
  2733. },
  2734. {
  2735. "name": "Tobias Schultze",
  2736. "homepage": "https://github.com/Tobion"
  2737. }
  2738. ],
  2739. "description": "PSR-7 message implementation that also provides common utility methods",
  2740. "keywords": [
  2741. "http",
  2742. "message",
  2743. "psr-7",
  2744. "request",
  2745. "response",
  2746. "stream",
  2747. "uri",
  2748. "url"
  2749. ],
  2750. "time": "2019-07-01T23:21:34+00:00"
  2751. },
  2752. {
  2753. "name": "myclabs/deep-copy",
  2754. "version": "1.10.1",
  2755. "source": {
  2756. "type": "git",
  2757. "url": "https://github.com/myclabs/DeepCopy.git",
  2758. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5"
  2759. },
  2760. "dist": {
  2761. "type": "zip",
  2762. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  2763. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  2764. "shasum": "",
  2765. "mirrors": [
  2766. {
  2767. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2768. "preferred": true
  2769. }
  2770. ]
  2771. },
  2772. "require": {
  2773. "php": "^7.1 || ^8.0"
  2774. },
  2775. "replace": {
  2776. "myclabs/deep-copy": "self.version"
  2777. },
  2778. "require-dev": {
  2779. "doctrine/collections": "^1.0",
  2780. "doctrine/common": "^2.6",
  2781. "phpunit/phpunit": "^7.1"
  2782. },
  2783. "type": "library",
  2784. "autoload": {
  2785. "psr-4": {
  2786. "DeepCopy\\": "src/DeepCopy/"
  2787. },
  2788. "files": [
  2789. "src/DeepCopy/deep_copy.php"
  2790. ]
  2791. },
  2792. "notification-url": "https://packagist.org/downloads/",
  2793. "license": [
  2794. "MIT"
  2795. ],
  2796. "description": "Create deep copies (clones) of your objects",
  2797. "keywords": [
  2798. "clone",
  2799. "copy",
  2800. "duplicate",
  2801. "object",
  2802. "object graph"
  2803. ],
  2804. "time": "2020-06-29T13:22:24+00:00"
  2805. },
  2806. {
  2807. "name": "opis/closure",
  2808. "version": "3.5.6",
  2809. "source": {
  2810. "type": "git",
  2811. "url": "https://github.com/opis/closure.git",
  2812. "reference": "e8d34df855b0a0549a300cb8cb4db472556e8aa9"
  2813. },
  2814. "dist": {
  2815. "type": "zip",
  2816. "url": "https://api.github.com/repos/opis/closure/zipball/e8d34df855b0a0549a300cb8cb4db472556e8aa9",
  2817. "reference": "e8d34df855b0a0549a300cb8cb4db472556e8aa9",
  2818. "shasum": "",
  2819. "mirrors": [
  2820. {
  2821. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2822. "preferred": true
  2823. }
  2824. ]
  2825. },
  2826. "require": {
  2827. "php": "^5.4 || ^7.0"
  2828. },
  2829. "require-dev": {
  2830. "jeremeamia/superclosure": "^2.0",
  2831. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  2832. },
  2833. "type": "library",
  2834. "extra": {
  2835. "branch-alias": {
  2836. "dev-master": "3.5.x-dev"
  2837. }
  2838. },
  2839. "autoload": {
  2840. "psr-4": {
  2841. "Opis\\Closure\\": "src/"
  2842. },
  2843. "files": [
  2844. "functions.php"
  2845. ]
  2846. },
  2847. "notification-url": "https://packagist.org/downloads/",
  2848. "license": [
  2849. "MIT"
  2850. ],
  2851. "authors": [
  2852. {
  2853. "name": "Marius Sarca",
  2854. "email": "marius.sarca@gmail.com"
  2855. },
  2856. {
  2857. "name": "Sorin Sarca",
  2858. "email": "sarca_sorin@hotmail.com"
  2859. }
  2860. ],
  2861. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2862. "homepage": "https://opis.io/closure",
  2863. "keywords": [
  2864. "anonymous functions",
  2865. "closure",
  2866. "function",
  2867. "serializable",
  2868. "serialization",
  2869. "serialize"
  2870. ],
  2871. "time": "2020-08-11T08:46:50+00:00"
  2872. },
  2873. {
  2874. "name": "phar-io/manifest",
  2875. "version": "1.0.3",
  2876. "source": {
  2877. "type": "git",
  2878. "url": "https://github.com/phar-io/manifest.git",
  2879. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  2880. },
  2881. "dist": {
  2882. "type": "zip",
  2883. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  2884. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  2885. "shasum": "",
  2886. "mirrors": [
  2887. {
  2888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2889. "preferred": true
  2890. }
  2891. ]
  2892. },
  2893. "require": {
  2894. "ext-dom": "*",
  2895. "ext-phar": "*",
  2896. "phar-io/version": "^2.0",
  2897. "php": "^5.6 || ^7.0"
  2898. },
  2899. "type": "library",
  2900. "extra": {
  2901. "branch-alias": {
  2902. "dev-master": "1.0.x-dev"
  2903. }
  2904. },
  2905. "autoload": {
  2906. "classmap": [
  2907. "src/"
  2908. ]
  2909. },
  2910. "notification-url": "https://packagist.org/downloads/",
  2911. "license": [
  2912. "BSD-3-Clause"
  2913. ],
  2914. "authors": [
  2915. {
  2916. "name": "Arne Blankerts",
  2917. "email": "arne@blankerts.de",
  2918. "role": "Developer"
  2919. },
  2920. {
  2921. "name": "Sebastian Heuer",
  2922. "email": "sebastian@phpeople.de",
  2923. "role": "Developer"
  2924. },
  2925. {
  2926. "name": "Sebastian Bergmann",
  2927. "email": "sebastian@phpunit.de",
  2928. "role": "Developer"
  2929. }
  2930. ],
  2931. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  2932. "time": "2018-07-08T19:23:20+00:00"
  2933. },
  2934. {
  2935. "name": "phar-io/version",
  2936. "version": "2.0.1",
  2937. "source": {
  2938. "type": "git",
  2939. "url": "https://github.com/phar-io/version.git",
  2940. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  2941. },
  2942. "dist": {
  2943. "type": "zip",
  2944. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  2945. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  2946. "shasum": "",
  2947. "mirrors": [
  2948. {
  2949. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2950. "preferred": true
  2951. }
  2952. ]
  2953. },
  2954. "require": {
  2955. "php": "^5.6 || ^7.0"
  2956. },
  2957. "type": "library",
  2958. "autoload": {
  2959. "classmap": [
  2960. "src/"
  2961. ]
  2962. },
  2963. "notification-url": "https://packagist.org/downloads/",
  2964. "license": [
  2965. "BSD-3-Clause"
  2966. ],
  2967. "authors": [
  2968. {
  2969. "name": "Arne Blankerts",
  2970. "email": "arne@blankerts.de",
  2971. "role": "Developer"
  2972. },
  2973. {
  2974. "name": "Sebastian Heuer",
  2975. "email": "sebastian@phpeople.de",
  2976. "role": "Developer"
  2977. },
  2978. {
  2979. "name": "Sebastian Bergmann",
  2980. "email": "sebastian@phpunit.de",
  2981. "role": "Developer"
  2982. }
  2983. ],
  2984. "description": "Library for handling version information and constraints",
  2985. "time": "2018-07-08T19:19:57+00:00"
  2986. },
  2987. {
  2988. "name": "phpdocumentor/reflection-common",
  2989. "version": "2.2.0",
  2990. "source": {
  2991. "type": "git",
  2992. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2993. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2994. },
  2995. "dist": {
  2996. "type": "zip",
  2997. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2998. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2999. "shasum": "",
  3000. "mirrors": [
  3001. {
  3002. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3003. "preferred": true
  3004. }
  3005. ]
  3006. },
  3007. "require": {
  3008. "php": "^7.2 || ^8.0"
  3009. },
  3010. "type": "library",
  3011. "extra": {
  3012. "branch-alias": {
  3013. "dev-2.x": "2.x-dev"
  3014. }
  3015. },
  3016. "autoload": {
  3017. "psr-4": {
  3018. "phpDocumentor\\Reflection\\": "src/"
  3019. }
  3020. },
  3021. "notification-url": "https://packagist.org/downloads/",
  3022. "license": [
  3023. "MIT"
  3024. ],
  3025. "authors": [
  3026. {
  3027. "name": "Jaap van Otterdijk",
  3028. "email": "opensource@ijaap.nl"
  3029. }
  3030. ],
  3031. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3032. "homepage": "http://www.phpdoc.org",
  3033. "keywords": [
  3034. "FQSEN",
  3035. "phpDocumentor",
  3036. "phpdoc",
  3037. "reflection",
  3038. "static analysis"
  3039. ],
  3040. "time": "2020-06-27T09:03:43+00:00"
  3041. },
  3042. {
  3043. "name": "phpdocumentor/reflection-docblock",
  3044. "version": "5.2.1",
  3045. "source": {
  3046. "type": "git",
  3047. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3048. "reference": "d870572532cd70bc3fab58f2e23ad423c8404c44"
  3049. },
  3050. "dist": {
  3051. "type": "zip",
  3052. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d870572532cd70bc3fab58f2e23ad423c8404c44",
  3053. "reference": "d870572532cd70bc3fab58f2e23ad423c8404c44",
  3054. "shasum": "",
  3055. "mirrors": [
  3056. {
  3057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3058. "preferred": true
  3059. }
  3060. ]
  3061. },
  3062. "require": {
  3063. "ext-filter": "*",
  3064. "php": "^7.2 || ^8.0",
  3065. "phpdocumentor/reflection-common": "^2.2",
  3066. "phpdocumentor/type-resolver": "^1.3",
  3067. "webmozart/assert": "^1.9.1"
  3068. },
  3069. "require-dev": {
  3070. "mockery/mockery": "~1.3.2"
  3071. },
  3072. "type": "library",
  3073. "extra": {
  3074. "branch-alias": {
  3075. "dev-master": "5.x-dev"
  3076. }
  3077. },
  3078. "autoload": {
  3079. "psr-4": {
  3080. "phpDocumentor\\Reflection\\": "src"
  3081. }
  3082. },
  3083. "notification-url": "https://packagist.org/downloads/",
  3084. "license": [
  3085. "MIT"
  3086. ],
  3087. "authors": [
  3088. {
  3089. "name": "Mike van Riel",
  3090. "email": "me@mikevanriel.com"
  3091. },
  3092. {
  3093. "name": "Jaap van Otterdijk",
  3094. "email": "account@ijaap.nl"
  3095. }
  3096. ],
  3097. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3098. "time": "2020-08-15T11:14:08+00:00"
  3099. },
  3100. {
  3101. "name": "phpdocumentor/type-resolver",
  3102. "version": "1.3.0",
  3103. "source": {
  3104. "type": "git",
  3105. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3106. "reference": "e878a14a65245fbe78f8080eba03b47c3b705651"
  3107. },
  3108. "dist": {
  3109. "type": "zip",
  3110. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e878a14a65245fbe78f8080eba03b47c3b705651",
  3111. "reference": "e878a14a65245fbe78f8080eba03b47c3b705651",
  3112. "shasum": "",
  3113. "mirrors": [
  3114. {
  3115. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3116. "preferred": true
  3117. }
  3118. ]
  3119. },
  3120. "require": {
  3121. "php": "^7.2 || ^8.0",
  3122. "phpdocumentor/reflection-common": "^2.0"
  3123. },
  3124. "require-dev": {
  3125. "ext-tokenizer": "*"
  3126. },
  3127. "type": "library",
  3128. "extra": {
  3129. "branch-alias": {
  3130. "dev-1.x": "1.x-dev"
  3131. }
  3132. },
  3133. "autoload": {
  3134. "psr-4": {
  3135. "phpDocumentor\\Reflection\\": "src"
  3136. }
  3137. },
  3138. "notification-url": "https://packagist.org/downloads/",
  3139. "license": [
  3140. "MIT"
  3141. ],
  3142. "authors": [
  3143. {
  3144. "name": "Mike van Riel",
  3145. "email": "me@mikevanriel.com"
  3146. }
  3147. ],
  3148. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  3149. "time": "2020-06-27T10:12:23+00:00"
  3150. },
  3151. {
  3152. "name": "phpspec/php-diff",
  3153. "version": "v1.1.0",
  3154. "source": {
  3155. "type": "git",
  3156. "url": "https://github.com/phpspec/php-diff.git",
  3157. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a"
  3158. },
  3159. "dist": {
  3160. "type": "zip",
  3161. "url": "https://api.github.com/repos/phpspec/php-diff/zipball/0464787bfa7cd13576c5a1e318709768798bec6a",
  3162. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a",
  3163. "shasum": "",
  3164. "mirrors": [
  3165. {
  3166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3167. "preferred": true
  3168. }
  3169. ]
  3170. },
  3171. "type": "library",
  3172. "extra": {
  3173. "branch-alias": {
  3174. "dev-master": "1.0.x-dev"
  3175. }
  3176. },
  3177. "autoload": {
  3178. "psr-0": {
  3179. "Diff": "lib/"
  3180. }
  3181. },
  3182. "notification-url": "https://packagist.org/downloads/",
  3183. "license": [
  3184. "BSD-3-Clause"
  3185. ],
  3186. "authors": [
  3187. {
  3188. "name": "Chris Boulton",
  3189. "homepage": "http://github.com/chrisboulton"
  3190. }
  3191. ],
  3192. "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
  3193. "time": "2016-04-07T12:29:16+00:00"
  3194. },
  3195. {
  3196. "name": "phpspec/prophecy",
  3197. "version": "1.11.1",
  3198. "source": {
  3199. "type": "git",
  3200. "url": "https://github.com/phpspec/prophecy.git",
  3201. "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160"
  3202. },
  3203. "dist": {
  3204. "type": "zip",
  3205. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b20034be5efcdab4fb60ca3a29cba2949aead160",
  3206. "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160",
  3207. "shasum": "",
  3208. "mirrors": [
  3209. {
  3210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3211. "preferred": true
  3212. }
  3213. ]
  3214. },
  3215. "require": {
  3216. "doctrine/instantiator": "^1.2",
  3217. "php": "^7.2",
  3218. "phpdocumentor/reflection-docblock": "^5.0",
  3219. "sebastian/comparator": "^3.0 || ^4.0",
  3220. "sebastian/recursion-context": "^3.0 || ^4.0"
  3221. },
  3222. "require-dev": {
  3223. "phpspec/phpspec": "^6.0",
  3224. "phpunit/phpunit": "^8.0"
  3225. },
  3226. "type": "library",
  3227. "extra": {
  3228. "branch-alias": {
  3229. "dev-master": "1.11.x-dev"
  3230. }
  3231. },
  3232. "autoload": {
  3233. "psr-4": {
  3234. "Prophecy\\": "src/Prophecy"
  3235. }
  3236. },
  3237. "notification-url": "https://packagist.org/downloads/",
  3238. "license": [
  3239. "MIT"
  3240. ],
  3241. "authors": [
  3242. {
  3243. "name": "Konstantin Kudryashov",
  3244. "email": "ever.zet@gmail.com",
  3245. "homepage": "http://everzet.com"
  3246. },
  3247. {
  3248. "name": "Marcello Duarte",
  3249. "email": "marcello.duarte@gmail.com"
  3250. }
  3251. ],
  3252. "description": "Highly opinionated mocking framework for PHP 5.3+",
  3253. "homepage": "https://github.com/phpspec/prophecy",
  3254. "keywords": [
  3255. "Double",
  3256. "Dummy",
  3257. "fake",
  3258. "mock",
  3259. "spy",
  3260. "stub"
  3261. ],
  3262. "time": "2020-07-08T12:44:21+00:00"
  3263. },
  3264. {
  3265. "name": "phpunit/php-code-coverage",
  3266. "version": "7.0.10",
  3267. "source": {
  3268. "type": "git",
  3269. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3270. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
  3271. },
  3272. "dist": {
  3273. "type": "zip",
  3274. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
  3275. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
  3276. "shasum": "",
  3277. "mirrors": [
  3278. {
  3279. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3280. "preferred": true
  3281. }
  3282. ]
  3283. },
  3284. "require": {
  3285. "ext-dom": "*",
  3286. "ext-xmlwriter": "*",
  3287. "php": "^7.2",
  3288. "phpunit/php-file-iterator": "^2.0.2",
  3289. "phpunit/php-text-template": "^1.2.1",
  3290. "phpunit/php-token-stream": "^3.1.1",
  3291. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  3292. "sebastian/environment": "^4.2.2",
  3293. "sebastian/version": "^2.0.1",
  3294. "theseer/tokenizer": "^1.1.3"
  3295. },
  3296. "require-dev": {
  3297. "phpunit/phpunit": "^8.2.2"
  3298. },
  3299. "suggest": {
  3300. "ext-xdebug": "^2.7.2"
  3301. },
  3302. "type": "library",
  3303. "extra": {
  3304. "branch-alias": {
  3305. "dev-master": "7.0-dev"
  3306. }
  3307. },
  3308. "autoload": {
  3309. "classmap": [
  3310. "src/"
  3311. ]
  3312. },
  3313. "notification-url": "https://packagist.org/downloads/",
  3314. "license": [
  3315. "BSD-3-Clause"
  3316. ],
  3317. "authors": [
  3318. {
  3319. "name": "Sebastian Bergmann",
  3320. "email": "sebastian@phpunit.de",
  3321. "role": "lead"
  3322. }
  3323. ],
  3324. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3325. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3326. "keywords": [
  3327. "coverage",
  3328. "testing",
  3329. "xunit"
  3330. ],
  3331. "time": "2019-11-20T13:55:58+00:00"
  3332. },
  3333. {
  3334. "name": "phpunit/php-file-iterator",
  3335. "version": "2.0.2",
  3336. "source": {
  3337. "type": "git",
  3338. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3339. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  3340. },
  3341. "dist": {
  3342. "type": "zip",
  3343. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  3344. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  3345. "shasum": "",
  3346. "mirrors": [
  3347. {
  3348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3349. "preferred": true
  3350. }
  3351. ]
  3352. },
  3353. "require": {
  3354. "php": "^7.1"
  3355. },
  3356. "require-dev": {
  3357. "phpunit/phpunit": "^7.1"
  3358. },
  3359. "type": "library",
  3360. "extra": {
  3361. "branch-alias": {
  3362. "dev-master": "2.0.x-dev"
  3363. }
  3364. },
  3365. "autoload": {
  3366. "classmap": [
  3367. "src/"
  3368. ]
  3369. },
  3370. "notification-url": "https://packagist.org/downloads/",
  3371. "license": [
  3372. "BSD-3-Clause"
  3373. ],
  3374. "authors": [
  3375. {
  3376. "name": "Sebastian Bergmann",
  3377. "email": "sebastian@phpunit.de",
  3378. "role": "lead"
  3379. }
  3380. ],
  3381. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3382. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3383. "keywords": [
  3384. "filesystem",
  3385. "iterator"
  3386. ],
  3387. "time": "2018-09-13T20:33:42+00:00"
  3388. },
  3389. {
  3390. "name": "phpunit/php-text-template",
  3391. "version": "1.2.1",
  3392. "source": {
  3393. "type": "git",
  3394. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3395. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  3396. },
  3397. "dist": {
  3398. "type": "zip",
  3399. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3400. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3401. "shasum": "",
  3402. "mirrors": [
  3403. {
  3404. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3405. "preferred": true
  3406. }
  3407. ]
  3408. },
  3409. "require": {
  3410. "php": ">=5.3.3"
  3411. },
  3412. "type": "library",
  3413. "autoload": {
  3414. "classmap": [
  3415. "src/"
  3416. ]
  3417. },
  3418. "notification-url": "https://packagist.org/downloads/",
  3419. "license": [
  3420. "BSD-3-Clause"
  3421. ],
  3422. "authors": [
  3423. {
  3424. "name": "Sebastian Bergmann",
  3425. "email": "sebastian@phpunit.de",
  3426. "role": "lead"
  3427. }
  3428. ],
  3429. "description": "Simple template engine.",
  3430. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  3431. "keywords": [
  3432. "template"
  3433. ],
  3434. "time": "2015-06-21T13:50:34+00:00"
  3435. },
  3436. {
  3437. "name": "phpunit/php-timer",
  3438. "version": "2.1.2",
  3439. "source": {
  3440. "type": "git",
  3441. "url": "https://github.com/sebastianbergmann/php-timer.git",
  3442. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  3443. },
  3444. "dist": {
  3445. "type": "zip",
  3446. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  3447. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  3448. "shasum": "",
  3449. "mirrors": [
  3450. {
  3451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3452. "preferred": true
  3453. }
  3454. ]
  3455. },
  3456. "require": {
  3457. "php": "^7.1"
  3458. },
  3459. "require-dev": {
  3460. "phpunit/phpunit": "^7.0"
  3461. },
  3462. "type": "library",
  3463. "extra": {
  3464. "branch-alias": {
  3465. "dev-master": "2.1-dev"
  3466. }
  3467. },
  3468. "autoload": {
  3469. "classmap": [
  3470. "src/"
  3471. ]
  3472. },
  3473. "notification-url": "https://packagist.org/downloads/",
  3474. "license": [
  3475. "BSD-3-Clause"
  3476. ],
  3477. "authors": [
  3478. {
  3479. "name": "Sebastian Bergmann",
  3480. "email": "sebastian@phpunit.de",
  3481. "role": "lead"
  3482. }
  3483. ],
  3484. "description": "Utility class for timing",
  3485. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  3486. "keywords": [
  3487. "timer"
  3488. ],
  3489. "time": "2019-06-07T04:22:29+00:00"
  3490. },
  3491. {
  3492. "name": "phpunit/php-token-stream",
  3493. "version": "3.1.1",
  3494. "source": {
  3495. "type": "git",
  3496. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  3497. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  3498. },
  3499. "dist": {
  3500. "type": "zip",
  3501. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  3502. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  3503. "shasum": "",
  3504. "mirrors": [
  3505. {
  3506. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3507. "preferred": true
  3508. }
  3509. ]
  3510. },
  3511. "require": {
  3512. "ext-tokenizer": "*",
  3513. "php": "^7.1"
  3514. },
  3515. "require-dev": {
  3516. "phpunit/phpunit": "^7.0"
  3517. },
  3518. "type": "library",
  3519. "extra": {
  3520. "branch-alias": {
  3521. "dev-master": "3.1-dev"
  3522. }
  3523. },
  3524. "autoload": {
  3525. "classmap": [
  3526. "src/"
  3527. ]
  3528. },
  3529. "notification-url": "https://packagist.org/downloads/",
  3530. "license": [
  3531. "BSD-3-Clause"
  3532. ],
  3533. "authors": [
  3534. {
  3535. "name": "Sebastian Bergmann",
  3536. "email": "sebastian@phpunit.de"
  3537. }
  3538. ],
  3539. "description": "Wrapper around PHP's tokenizer extension.",
  3540. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  3541. "keywords": [
  3542. "tokenizer"
  3543. ],
  3544. "abandoned": true,
  3545. "time": "2019-09-17T06:23:10+00:00"
  3546. },
  3547. {
  3548. "name": "phpunit/phpunit",
  3549. "version": "8.5.8",
  3550. "source": {
  3551. "type": "git",
  3552. "url": "https://github.com/sebastianbergmann/phpunit.git",
  3553. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997"
  3554. },
  3555. "dist": {
  3556. "type": "zip",
  3557. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/34c18baa6a44f1d1fbf0338907139e9dce95b997",
  3558. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997",
  3559. "shasum": "",
  3560. "mirrors": [
  3561. {
  3562. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3563. "preferred": true
  3564. }
  3565. ]
  3566. },
  3567. "require": {
  3568. "doctrine/instantiator": "^1.2.0",
  3569. "ext-dom": "*",
  3570. "ext-json": "*",
  3571. "ext-libxml": "*",
  3572. "ext-mbstring": "*",
  3573. "ext-xml": "*",
  3574. "ext-xmlwriter": "*",
  3575. "myclabs/deep-copy": "^1.9.1",
  3576. "phar-io/manifest": "^1.0.3",
  3577. "phar-io/version": "^2.0.1",
  3578. "php": "^7.2",
  3579. "phpspec/prophecy": "^1.8.1",
  3580. "phpunit/php-code-coverage": "^7.0.7",
  3581. "phpunit/php-file-iterator": "^2.0.2",
  3582. "phpunit/php-text-template": "^1.2.1",
  3583. "phpunit/php-timer": "^2.1.2",
  3584. "sebastian/comparator": "^3.0.2",
  3585. "sebastian/diff": "^3.0.2",
  3586. "sebastian/environment": "^4.2.2",
  3587. "sebastian/exporter": "^3.1.1",
  3588. "sebastian/global-state": "^3.0.0",
  3589. "sebastian/object-enumerator": "^3.0.3",
  3590. "sebastian/resource-operations": "^2.0.1",
  3591. "sebastian/type": "^1.1.3",
  3592. "sebastian/version": "^2.0.1"
  3593. },
  3594. "require-dev": {
  3595. "ext-pdo": "*"
  3596. },
  3597. "suggest": {
  3598. "ext-soap": "*",
  3599. "ext-xdebug": "*",
  3600. "phpunit/php-invoker": "^2.0.0"
  3601. },
  3602. "bin": [
  3603. "phpunit"
  3604. ],
  3605. "type": "library",
  3606. "extra": {
  3607. "branch-alias": {
  3608. "dev-master": "8.5-dev"
  3609. }
  3610. },
  3611. "autoload": {
  3612. "classmap": [
  3613. "src/"
  3614. ]
  3615. },
  3616. "notification-url": "https://packagist.org/downloads/",
  3617. "license": [
  3618. "BSD-3-Clause"
  3619. ],
  3620. "authors": [
  3621. {
  3622. "name": "Sebastian Bergmann",
  3623. "email": "sebastian@phpunit.de",
  3624. "role": "lead"
  3625. }
  3626. ],
  3627. "description": "The PHP Unit Testing framework.",
  3628. "homepage": "https://phpunit.de/",
  3629. "keywords": [
  3630. "phpunit",
  3631. "testing",
  3632. "xunit"
  3633. ],
  3634. "time": "2020-06-22T07:06:58+00:00"
  3635. },
  3636. {
  3637. "name": "psr/container",
  3638. "version": "1.0.0",
  3639. "source": {
  3640. "type": "git",
  3641. "url": "https://github.com/php-fig/container.git",
  3642. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3643. },
  3644. "dist": {
  3645. "type": "zip",
  3646. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3647. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3648. "shasum": "",
  3649. "mirrors": [
  3650. {
  3651. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3652. "preferred": true
  3653. }
  3654. ]
  3655. },
  3656. "require": {
  3657. "php": ">=5.3.0"
  3658. },
  3659. "type": "library",
  3660. "extra": {
  3661. "branch-alias": {
  3662. "dev-master": "1.0.x-dev"
  3663. }
  3664. },
  3665. "autoload": {
  3666. "psr-4": {
  3667. "Psr\\Container\\": "src/"
  3668. }
  3669. },
  3670. "notification-url": "https://packagist.org/downloads/",
  3671. "license": [
  3672. "MIT"
  3673. ],
  3674. "authors": [
  3675. {
  3676. "name": "PHP-FIG",
  3677. "homepage": "http://www.php-fig.org/"
  3678. }
  3679. ],
  3680. "description": "Common Container Interface (PHP FIG PSR-11)",
  3681. "homepage": "https://github.com/php-fig/container",
  3682. "keywords": [
  3683. "PSR-11",
  3684. "container",
  3685. "container-interface",
  3686. "container-interop",
  3687. "psr"
  3688. ],
  3689. "time": "2017-02-14T16:28:37+00:00"
  3690. },
  3691. {
  3692. "name": "psr/event-dispatcher",
  3693. "version": "1.0.0",
  3694. "source": {
  3695. "type": "git",
  3696. "url": "https://github.com/php-fig/event-dispatcher.git",
  3697. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3698. },
  3699. "dist": {
  3700. "type": "zip",
  3701. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3702. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3703. "shasum": "",
  3704. "mirrors": [
  3705. {
  3706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3707. "preferred": true
  3708. }
  3709. ]
  3710. },
  3711. "require": {
  3712. "php": ">=7.2.0"
  3713. },
  3714. "type": "library",
  3715. "extra": {
  3716. "branch-alias": {
  3717. "dev-master": "1.0.x-dev"
  3718. }
  3719. },
  3720. "autoload": {
  3721. "psr-4": {
  3722. "Psr\\EventDispatcher\\": "src/"
  3723. }
  3724. },
  3725. "notification-url": "https://packagist.org/downloads/",
  3726. "license": [
  3727. "MIT"
  3728. ],
  3729. "authors": [
  3730. {
  3731. "name": "PHP-FIG",
  3732. "homepage": "http://www.php-fig.org/"
  3733. }
  3734. ],
  3735. "description": "Standard interfaces for event handling.",
  3736. "keywords": [
  3737. "events",
  3738. "psr",
  3739. "psr-14"
  3740. ],
  3741. "time": "2019-01-08T18:20:26+00:00"
  3742. },
  3743. {
  3744. "name": "ralouphie/getallheaders",
  3745. "version": "3.0.3",
  3746. "source": {
  3747. "type": "git",
  3748. "url": "https://github.com/ralouphie/getallheaders.git",
  3749. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3750. },
  3751. "dist": {
  3752. "type": "zip",
  3753. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3754. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3755. "shasum": "",
  3756. "mirrors": [
  3757. {
  3758. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3759. "preferred": true
  3760. }
  3761. ]
  3762. },
  3763. "require": {
  3764. "php": ">=5.6"
  3765. },
  3766. "require-dev": {
  3767. "php-coveralls/php-coveralls": "^2.1",
  3768. "phpunit/phpunit": "^5 || ^6.5"
  3769. },
  3770. "type": "library",
  3771. "autoload": {
  3772. "files": [
  3773. "src/getallheaders.php"
  3774. ]
  3775. },
  3776. "notification-url": "https://packagist.org/downloads/",
  3777. "license": [
  3778. "MIT"
  3779. ],
  3780. "authors": [
  3781. {
  3782. "name": "Ralph Khattar",
  3783. "email": "ralph.khattar@gmail.com"
  3784. }
  3785. ],
  3786. "description": "A polyfill for getallheaders.",
  3787. "time": "2019-03-08T08:55:37+00:00"
  3788. },
  3789. {
  3790. "name": "sebastian/code-unit-reverse-lookup",
  3791. "version": "1.0.1",
  3792. "source": {
  3793. "type": "git",
  3794. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  3795. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  3796. },
  3797. "dist": {
  3798. "type": "zip",
  3799. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3800. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3801. "shasum": "",
  3802. "mirrors": [
  3803. {
  3804. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3805. "preferred": true
  3806. }
  3807. ]
  3808. },
  3809. "require": {
  3810. "php": "^5.6 || ^7.0"
  3811. },
  3812. "require-dev": {
  3813. "phpunit/phpunit": "^5.7 || ^6.0"
  3814. },
  3815. "type": "library",
  3816. "extra": {
  3817. "branch-alias": {
  3818. "dev-master": "1.0.x-dev"
  3819. }
  3820. },
  3821. "autoload": {
  3822. "classmap": [
  3823. "src/"
  3824. ]
  3825. },
  3826. "notification-url": "https://packagist.org/downloads/",
  3827. "license": [
  3828. "BSD-3-Clause"
  3829. ],
  3830. "authors": [
  3831. {
  3832. "name": "Sebastian Bergmann",
  3833. "email": "sebastian@phpunit.de"
  3834. }
  3835. ],
  3836. "description": "Looks up which function or method a line of code belongs to",
  3837. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  3838. "time": "2017-03-04T06:30:41+00:00"
  3839. },
  3840. {
  3841. "name": "sebastian/comparator",
  3842. "version": "3.0.2",
  3843. "source": {
  3844. "type": "git",
  3845. "url": "https://github.com/sebastianbergmann/comparator.git",
  3846. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  3847. },
  3848. "dist": {
  3849. "type": "zip",
  3850. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  3851. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  3852. "shasum": "",
  3853. "mirrors": [
  3854. {
  3855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3856. "preferred": true
  3857. }
  3858. ]
  3859. },
  3860. "require": {
  3861. "php": "^7.1",
  3862. "sebastian/diff": "^3.0",
  3863. "sebastian/exporter": "^3.1"
  3864. },
  3865. "require-dev": {
  3866. "phpunit/phpunit": "^7.1"
  3867. },
  3868. "type": "library",
  3869. "extra": {
  3870. "branch-alias": {
  3871. "dev-master": "3.0-dev"
  3872. }
  3873. },
  3874. "autoload": {
  3875. "classmap": [
  3876. "src/"
  3877. ]
  3878. },
  3879. "notification-url": "https://packagist.org/downloads/",
  3880. "license": [
  3881. "BSD-3-Clause"
  3882. ],
  3883. "authors": [
  3884. {
  3885. "name": "Jeff Welch",
  3886. "email": "whatthejeff@gmail.com"
  3887. },
  3888. {
  3889. "name": "Volker Dusch",
  3890. "email": "github@wallbash.com"
  3891. },
  3892. {
  3893. "name": "Bernhard Schussek",
  3894. "email": "bschussek@2bepublished.at"
  3895. },
  3896. {
  3897. "name": "Sebastian Bergmann",
  3898. "email": "sebastian@phpunit.de"
  3899. }
  3900. ],
  3901. "description": "Provides the functionality to compare PHP values for equality",
  3902. "homepage": "https://github.com/sebastianbergmann/comparator",
  3903. "keywords": [
  3904. "comparator",
  3905. "compare",
  3906. "equality"
  3907. ],
  3908. "time": "2018-07-12T15:12:46+00:00"
  3909. },
  3910. {
  3911. "name": "sebastian/diff",
  3912. "version": "3.0.2",
  3913. "source": {
  3914. "type": "git",
  3915. "url": "https://github.com/sebastianbergmann/diff.git",
  3916. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  3917. },
  3918. "dist": {
  3919. "type": "zip",
  3920. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  3921. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  3922. "shasum": "",
  3923. "mirrors": [
  3924. {
  3925. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3926. "preferred": true
  3927. }
  3928. ]
  3929. },
  3930. "require": {
  3931. "php": "^7.1"
  3932. },
  3933. "require-dev": {
  3934. "phpunit/phpunit": "^7.5 || ^8.0",
  3935. "symfony/process": "^2 || ^3.3 || ^4"
  3936. },
  3937. "type": "library",
  3938. "extra": {
  3939. "branch-alias": {
  3940. "dev-master": "3.0-dev"
  3941. }
  3942. },
  3943. "autoload": {
  3944. "classmap": [
  3945. "src/"
  3946. ]
  3947. },
  3948. "notification-url": "https://packagist.org/downloads/",
  3949. "license": [
  3950. "BSD-3-Clause"
  3951. ],
  3952. "authors": [
  3953. {
  3954. "name": "Kore Nordmann",
  3955. "email": "mail@kore-nordmann.de"
  3956. },
  3957. {
  3958. "name": "Sebastian Bergmann",
  3959. "email": "sebastian@phpunit.de"
  3960. }
  3961. ],
  3962. "description": "Diff implementation",
  3963. "homepage": "https://github.com/sebastianbergmann/diff",
  3964. "keywords": [
  3965. "diff",
  3966. "udiff",
  3967. "unidiff",
  3968. "unified diff"
  3969. ],
  3970. "time": "2019-02-04T06:01:07+00:00"
  3971. },
  3972. {
  3973. "name": "sebastian/environment",
  3974. "version": "4.2.3",
  3975. "source": {
  3976. "type": "git",
  3977. "url": "https://github.com/sebastianbergmann/environment.git",
  3978. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  3979. },
  3980. "dist": {
  3981. "type": "zip",
  3982. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  3983. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  3984. "shasum": "",
  3985. "mirrors": [
  3986. {
  3987. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3988. "preferred": true
  3989. }
  3990. ]
  3991. },
  3992. "require": {
  3993. "php": "^7.1"
  3994. },
  3995. "require-dev": {
  3996. "phpunit/phpunit": "^7.5"
  3997. },
  3998. "suggest": {
  3999. "ext-posix": "*"
  4000. },
  4001. "type": "library",
  4002. "extra": {
  4003. "branch-alias": {
  4004. "dev-master": "4.2-dev"
  4005. }
  4006. },
  4007. "autoload": {
  4008. "classmap": [
  4009. "src/"
  4010. ]
  4011. },
  4012. "notification-url": "https://packagist.org/downloads/",
  4013. "license": [
  4014. "BSD-3-Clause"
  4015. ],
  4016. "authors": [
  4017. {
  4018. "name": "Sebastian Bergmann",
  4019. "email": "sebastian@phpunit.de"
  4020. }
  4021. ],
  4022. "description": "Provides functionality to handle HHVM/PHP environments",
  4023. "homepage": "http://www.github.com/sebastianbergmann/environment",
  4024. "keywords": [
  4025. "Xdebug",
  4026. "environment",
  4027. "hhvm"
  4028. ],
  4029. "time": "2019-11-20T08:46:58+00:00"
  4030. },
  4031. {
  4032. "name": "sebastian/exporter",
  4033. "version": "3.1.2",
  4034. "source": {
  4035. "type": "git",
  4036. "url": "https://github.com/sebastianbergmann/exporter.git",
  4037. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  4038. },
  4039. "dist": {
  4040. "type": "zip",
  4041. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  4042. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  4043. "shasum": "",
  4044. "mirrors": [
  4045. {
  4046. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4047. "preferred": true
  4048. }
  4049. ]
  4050. },
  4051. "require": {
  4052. "php": "^7.0",
  4053. "sebastian/recursion-context": "^3.0"
  4054. },
  4055. "require-dev": {
  4056. "ext-mbstring": "*",
  4057. "phpunit/phpunit": "^6.0"
  4058. },
  4059. "type": "library",
  4060. "extra": {
  4061. "branch-alias": {
  4062. "dev-master": "3.1.x-dev"
  4063. }
  4064. },
  4065. "autoload": {
  4066. "classmap": [
  4067. "src/"
  4068. ]
  4069. },
  4070. "notification-url": "https://packagist.org/downloads/",
  4071. "license": [
  4072. "BSD-3-Clause"
  4073. ],
  4074. "authors": [
  4075. {
  4076. "name": "Sebastian Bergmann",
  4077. "email": "sebastian@phpunit.de"
  4078. },
  4079. {
  4080. "name": "Jeff Welch",
  4081. "email": "whatthejeff@gmail.com"
  4082. },
  4083. {
  4084. "name": "Volker Dusch",
  4085. "email": "github@wallbash.com"
  4086. },
  4087. {
  4088. "name": "Adam Harvey",
  4089. "email": "aharvey@php.net"
  4090. },
  4091. {
  4092. "name": "Bernhard Schussek",
  4093. "email": "bschussek@gmail.com"
  4094. }
  4095. ],
  4096. "description": "Provides the functionality to export PHP variables for visualization",
  4097. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  4098. "keywords": [
  4099. "export",
  4100. "exporter"
  4101. ],
  4102. "time": "2019-09-14T09:02:43+00:00"
  4103. },
  4104. {
  4105. "name": "sebastian/global-state",
  4106. "version": "3.0.0",
  4107. "source": {
  4108. "type": "git",
  4109. "url": "https://github.com/sebastianbergmann/global-state.git",
  4110. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  4111. },
  4112. "dist": {
  4113. "type": "zip",
  4114. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  4115. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  4116. "shasum": "",
  4117. "mirrors": [
  4118. {
  4119. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4120. "preferred": true
  4121. }
  4122. ]
  4123. },
  4124. "require": {
  4125. "php": "^7.2",
  4126. "sebastian/object-reflector": "^1.1.1",
  4127. "sebastian/recursion-context": "^3.0"
  4128. },
  4129. "require-dev": {
  4130. "ext-dom": "*",
  4131. "phpunit/phpunit": "^8.0"
  4132. },
  4133. "suggest": {
  4134. "ext-uopz": "*"
  4135. },
  4136. "type": "library",
  4137. "extra": {
  4138. "branch-alias": {
  4139. "dev-master": "3.0-dev"
  4140. }
  4141. },
  4142. "autoload": {
  4143. "classmap": [
  4144. "src/"
  4145. ]
  4146. },
  4147. "notification-url": "https://packagist.org/downloads/",
  4148. "license": [
  4149. "BSD-3-Clause"
  4150. ],
  4151. "authors": [
  4152. {
  4153. "name": "Sebastian Bergmann",
  4154. "email": "sebastian@phpunit.de"
  4155. }
  4156. ],
  4157. "description": "Snapshotting of global state",
  4158. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  4159. "keywords": [
  4160. "global state"
  4161. ],
  4162. "time": "2019-02-01T05:30:01+00:00"
  4163. },
  4164. {
  4165. "name": "sebastian/object-enumerator",
  4166. "version": "3.0.3",
  4167. "source": {
  4168. "type": "git",
  4169. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  4170. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  4171. },
  4172. "dist": {
  4173. "type": "zip",
  4174. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  4175. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  4176. "shasum": "",
  4177. "mirrors": [
  4178. {
  4179. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4180. "preferred": true
  4181. }
  4182. ]
  4183. },
  4184. "require": {
  4185. "php": "^7.0",
  4186. "sebastian/object-reflector": "^1.1.1",
  4187. "sebastian/recursion-context": "^3.0"
  4188. },
  4189. "require-dev": {
  4190. "phpunit/phpunit": "^6.0"
  4191. },
  4192. "type": "library",
  4193. "extra": {
  4194. "branch-alias": {
  4195. "dev-master": "3.0.x-dev"
  4196. }
  4197. },
  4198. "autoload": {
  4199. "classmap": [
  4200. "src/"
  4201. ]
  4202. },
  4203. "notification-url": "https://packagist.org/downloads/",
  4204. "license": [
  4205. "BSD-3-Clause"
  4206. ],
  4207. "authors": [
  4208. {
  4209. "name": "Sebastian Bergmann",
  4210. "email": "sebastian@phpunit.de"
  4211. }
  4212. ],
  4213. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  4214. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  4215. "time": "2017-08-03T12:35:26+00:00"
  4216. },
  4217. {
  4218. "name": "sebastian/object-reflector",
  4219. "version": "1.1.1",
  4220. "source": {
  4221. "type": "git",
  4222. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  4223. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  4224. },
  4225. "dist": {
  4226. "type": "zip",
  4227. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  4228. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  4229. "shasum": "",
  4230. "mirrors": [
  4231. {
  4232. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4233. "preferred": true
  4234. }
  4235. ]
  4236. },
  4237. "require": {
  4238. "php": "^7.0"
  4239. },
  4240. "require-dev": {
  4241. "phpunit/phpunit": "^6.0"
  4242. },
  4243. "type": "library",
  4244. "extra": {
  4245. "branch-alias": {
  4246. "dev-master": "1.1-dev"
  4247. }
  4248. },
  4249. "autoload": {
  4250. "classmap": [
  4251. "src/"
  4252. ]
  4253. },
  4254. "notification-url": "https://packagist.org/downloads/",
  4255. "license": [
  4256. "BSD-3-Clause"
  4257. ],
  4258. "authors": [
  4259. {
  4260. "name": "Sebastian Bergmann",
  4261. "email": "sebastian@phpunit.de"
  4262. }
  4263. ],
  4264. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  4265. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  4266. "time": "2017-03-29T09:07:27+00:00"
  4267. },
  4268. {
  4269. "name": "sebastian/recursion-context",
  4270. "version": "3.0.0",
  4271. "source": {
  4272. "type": "git",
  4273. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  4274. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  4275. },
  4276. "dist": {
  4277. "type": "zip",
  4278. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  4279. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  4280. "shasum": "",
  4281. "mirrors": [
  4282. {
  4283. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4284. "preferred": true
  4285. }
  4286. ]
  4287. },
  4288. "require": {
  4289. "php": "^7.0"
  4290. },
  4291. "require-dev": {
  4292. "phpunit/phpunit": "^6.0"
  4293. },
  4294. "type": "library",
  4295. "extra": {
  4296. "branch-alias": {
  4297. "dev-master": "3.0.x-dev"
  4298. }
  4299. },
  4300. "autoload": {
  4301. "classmap": [
  4302. "src/"
  4303. ]
  4304. },
  4305. "notification-url": "https://packagist.org/downloads/",
  4306. "license": [
  4307. "BSD-3-Clause"
  4308. ],
  4309. "authors": [
  4310. {
  4311. "name": "Jeff Welch",
  4312. "email": "whatthejeff@gmail.com"
  4313. },
  4314. {
  4315. "name": "Sebastian Bergmann",
  4316. "email": "sebastian@phpunit.de"
  4317. },
  4318. {
  4319. "name": "Adam Harvey",
  4320. "email": "aharvey@php.net"
  4321. }
  4322. ],
  4323. "description": "Provides functionality to recursively process PHP variables",
  4324. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  4325. "time": "2017-03-03T06:23:57+00:00"
  4326. },
  4327. {
  4328. "name": "sebastian/resource-operations",
  4329. "version": "2.0.1",
  4330. "source": {
  4331. "type": "git",
  4332. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  4333. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  4334. },
  4335. "dist": {
  4336. "type": "zip",
  4337. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  4338. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  4339. "shasum": "",
  4340. "mirrors": [
  4341. {
  4342. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4343. "preferred": true
  4344. }
  4345. ]
  4346. },
  4347. "require": {
  4348. "php": "^7.1"
  4349. },
  4350. "type": "library",
  4351. "extra": {
  4352. "branch-alias": {
  4353. "dev-master": "2.0-dev"
  4354. }
  4355. },
  4356. "autoload": {
  4357. "classmap": [
  4358. "src/"
  4359. ]
  4360. },
  4361. "notification-url": "https://packagist.org/downloads/",
  4362. "license": [
  4363. "BSD-3-Clause"
  4364. ],
  4365. "authors": [
  4366. {
  4367. "name": "Sebastian Bergmann",
  4368. "email": "sebastian@phpunit.de"
  4369. }
  4370. ],
  4371. "description": "Provides a list of PHP built-in functions that operate on resources",
  4372. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  4373. "time": "2018-10-04T04:07:39+00:00"
  4374. },
  4375. {
  4376. "name": "sebastian/type",
  4377. "version": "1.1.3",
  4378. "source": {
  4379. "type": "git",
  4380. "url": "https://github.com/sebastianbergmann/type.git",
  4381. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  4382. },
  4383. "dist": {
  4384. "type": "zip",
  4385. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  4386. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  4387. "shasum": "",
  4388. "mirrors": [
  4389. {
  4390. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4391. "preferred": true
  4392. }
  4393. ]
  4394. },
  4395. "require": {
  4396. "php": "^7.2"
  4397. },
  4398. "require-dev": {
  4399. "phpunit/phpunit": "^8.2"
  4400. },
  4401. "type": "library",
  4402. "extra": {
  4403. "branch-alias": {
  4404. "dev-master": "1.1-dev"
  4405. }
  4406. },
  4407. "autoload": {
  4408. "classmap": [
  4409. "src/"
  4410. ]
  4411. },
  4412. "notification-url": "https://packagist.org/downloads/",
  4413. "license": [
  4414. "BSD-3-Clause"
  4415. ],
  4416. "authors": [
  4417. {
  4418. "name": "Sebastian Bergmann",
  4419. "email": "sebastian@phpunit.de",
  4420. "role": "lead"
  4421. }
  4422. ],
  4423. "description": "Collection of value objects that represent the types of the PHP type system",
  4424. "homepage": "https://github.com/sebastianbergmann/type",
  4425. "time": "2019-07-02T08:10:15+00:00"
  4426. },
  4427. {
  4428. "name": "sebastian/version",
  4429. "version": "2.0.1",
  4430. "source": {
  4431. "type": "git",
  4432. "url": "https://github.com/sebastianbergmann/version.git",
  4433. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  4434. },
  4435. "dist": {
  4436. "type": "zip",
  4437. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  4438. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  4439. "shasum": "",
  4440. "mirrors": [
  4441. {
  4442. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4443. "preferred": true
  4444. }
  4445. ]
  4446. },
  4447. "require": {
  4448. "php": ">=5.6"
  4449. },
  4450. "type": "library",
  4451. "extra": {
  4452. "branch-alias": {
  4453. "dev-master": "2.0.x-dev"
  4454. }
  4455. },
  4456. "autoload": {
  4457. "classmap": [
  4458. "src/"
  4459. ]
  4460. },
  4461. "notification-url": "https://packagist.org/downloads/",
  4462. "license": [
  4463. "BSD-3-Clause"
  4464. ],
  4465. "authors": [
  4466. {
  4467. "name": "Sebastian Bergmann",
  4468. "email": "sebastian@phpunit.de",
  4469. "role": "lead"
  4470. }
  4471. ],
  4472. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  4473. "homepage": "https://github.com/sebastianbergmann/version",
  4474. "time": "2016-10-03T07:35:21+00:00"
  4475. },
  4476. {
  4477. "name": "symfony/browser-kit",
  4478. "version": "v4.2.4",
  4479. "source": {
  4480. "type": "git",
  4481. "url": "https://github.com/symfony/browser-kit.git",
  4482. "reference": "61d85c5af2fc058014c7c89504c3944e73a086f0"
  4483. },
  4484. "dist": {
  4485. "type": "zip",
  4486. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/61d85c5af2fc058014c7c89504c3944e73a086f0",
  4487. "reference": "61d85c5af2fc058014c7c89504c3944e73a086f0",
  4488. "shasum": "",
  4489. "mirrors": [
  4490. {
  4491. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4492. "preferred": true
  4493. }
  4494. ]
  4495. },
  4496. "require": {
  4497. "php": "^7.1.3",
  4498. "symfony/dom-crawler": "~3.4|~4.0"
  4499. },
  4500. "require-dev": {
  4501. "symfony/css-selector": "~3.4|~4.0",
  4502. "symfony/process": "~3.4|~4.0"
  4503. },
  4504. "suggest": {
  4505. "symfony/process": ""
  4506. },
  4507. "type": "library",
  4508. "extra": {
  4509. "branch-alias": {
  4510. "dev-master": "4.2-dev"
  4511. }
  4512. },
  4513. "autoload": {
  4514. "psr-4": {
  4515. "Symfony\\Component\\BrowserKit\\": ""
  4516. },
  4517. "exclude-from-classmap": [
  4518. "/Tests/"
  4519. ]
  4520. },
  4521. "notification-url": "https://packagist.org/downloads/",
  4522. "license": [
  4523. "MIT"
  4524. ],
  4525. "authors": [
  4526. {
  4527. "name": "Fabien Potencier",
  4528. "email": "fabien@symfony.com"
  4529. },
  4530. {
  4531. "name": "Symfony Community",
  4532. "homepage": "https://symfony.com/contributors"
  4533. }
  4534. ],
  4535. "description": "Symfony BrowserKit Component",
  4536. "homepage": "https://symfony.com",
  4537. "time": "2019-02-23T15:17:42+00:00"
  4538. },
  4539. {
  4540. "name": "symfony/console",
  4541. "version": "v5.1.3",
  4542. "source": {
  4543. "type": "git",
  4544. "url": "https://github.com/symfony/console.git",
  4545. "reference": "2226c68009627934b8cfc01260b4d287eab070df"
  4546. },
  4547. "dist": {
  4548. "type": "zip",
  4549. "url": "https://api.github.com/repos/symfony/console/zipball/2226c68009627934b8cfc01260b4d287eab070df",
  4550. "reference": "2226c68009627934b8cfc01260b4d287eab070df",
  4551. "shasum": "",
  4552. "mirrors": [
  4553. {
  4554. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4555. "preferred": true
  4556. }
  4557. ]
  4558. },
  4559. "require": {
  4560. "php": ">=7.2.5",
  4561. "symfony/polyfill-mbstring": "~1.0",
  4562. "symfony/polyfill-php73": "^1.8",
  4563. "symfony/polyfill-php80": "^1.15",
  4564. "symfony/service-contracts": "^1.1|^2",
  4565. "symfony/string": "^5.1"
  4566. },
  4567. "conflict": {
  4568. "symfony/dependency-injection": "<4.4",
  4569. "symfony/dotenv": "<5.1",
  4570. "symfony/event-dispatcher": "<4.4",
  4571. "symfony/lock": "<4.4",
  4572. "symfony/process": "<4.4"
  4573. },
  4574. "provide": {
  4575. "psr/log-implementation": "1.0"
  4576. },
  4577. "require-dev": {
  4578. "psr/log": "~1.0",
  4579. "symfony/config": "^4.4|^5.0",
  4580. "symfony/dependency-injection": "^4.4|^5.0",
  4581. "symfony/event-dispatcher": "^4.4|^5.0",
  4582. "symfony/lock": "^4.4|^5.0",
  4583. "symfony/process": "^4.4|^5.0",
  4584. "symfony/var-dumper": "^4.4|^5.0"
  4585. },
  4586. "suggest": {
  4587. "psr/log": "For using the console logger",
  4588. "symfony/event-dispatcher": "",
  4589. "symfony/lock": "",
  4590. "symfony/process": ""
  4591. },
  4592. "type": "library",
  4593. "extra": {
  4594. "branch-alias": {
  4595. "dev-master": "5.1-dev"
  4596. }
  4597. },
  4598. "autoload": {
  4599. "psr-4": {
  4600. "Symfony\\Component\\Console\\": ""
  4601. },
  4602. "exclude-from-classmap": [
  4603. "/Tests/"
  4604. ]
  4605. },
  4606. "notification-url": "https://packagist.org/downloads/",
  4607. "license": [
  4608. "MIT"
  4609. ],
  4610. "authors": [
  4611. {
  4612. "name": "Fabien Potencier",
  4613. "email": "fabien@symfony.com"
  4614. },
  4615. {
  4616. "name": "Symfony Community",
  4617. "homepage": "https://symfony.com/contributors"
  4618. }
  4619. ],
  4620. "description": "Symfony Console Component",
  4621. "homepage": "https://symfony.com",
  4622. "time": "2020-07-06T13:23:11+00:00"
  4623. },
  4624. {
  4625. "name": "symfony/css-selector",
  4626. "version": "v5.1.3",
  4627. "source": {
  4628. "type": "git",
  4629. "url": "https://github.com/symfony/css-selector.git",
  4630. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9"
  4631. },
  4632. "dist": {
  4633. "type": "zip",
  4634. "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9",
  4635. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9",
  4636. "shasum": "",
  4637. "mirrors": [
  4638. {
  4639. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4640. "preferred": true
  4641. }
  4642. ]
  4643. },
  4644. "require": {
  4645. "php": ">=7.2.5"
  4646. },
  4647. "type": "library",
  4648. "extra": {
  4649. "branch-alias": {
  4650. "dev-master": "5.1-dev"
  4651. }
  4652. },
  4653. "autoload": {
  4654. "psr-4": {
  4655. "Symfony\\Component\\CssSelector\\": ""
  4656. },
  4657. "exclude-from-classmap": [
  4658. "/Tests/"
  4659. ]
  4660. },
  4661. "notification-url": "https://packagist.org/downloads/",
  4662. "license": [
  4663. "MIT"
  4664. ],
  4665. "authors": [
  4666. {
  4667. "name": "Fabien Potencier",
  4668. "email": "fabien@symfony.com"
  4669. },
  4670. {
  4671. "name": "Jean-François Simon",
  4672. "email": "jeanfrancois.simon@sensiolabs.com"
  4673. },
  4674. {
  4675. "name": "Symfony Community",
  4676. "homepage": "https://symfony.com/contributors"
  4677. }
  4678. ],
  4679. "description": "Symfony CssSelector Component",
  4680. "homepage": "https://symfony.com",
  4681. "time": "2020-05-20T17:43:50+00:00"
  4682. },
  4683. {
  4684. "name": "symfony/deprecation-contracts",
  4685. "version": "v2.1.3",
  4686. "source": {
  4687. "type": "git",
  4688. "url": "https://github.com/symfony/deprecation-contracts.git",
  4689. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14"
  4690. },
  4691. "dist": {
  4692. "type": "zip",
  4693. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  4694. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  4695. "shasum": "",
  4696. "mirrors": [
  4697. {
  4698. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4699. "preferred": true
  4700. }
  4701. ]
  4702. },
  4703. "require": {
  4704. "php": ">=7.1"
  4705. },
  4706. "type": "library",
  4707. "extra": {
  4708. "branch-alias": {
  4709. "dev-master": "2.1-dev"
  4710. },
  4711. "thanks": {
  4712. "name": "symfony/contracts",
  4713. "url": "https://github.com/symfony/contracts"
  4714. }
  4715. },
  4716. "autoload": {
  4717. "files": [
  4718. "function.php"
  4719. ]
  4720. },
  4721. "notification-url": "https://packagist.org/downloads/",
  4722. "license": [
  4723. "MIT"
  4724. ],
  4725. "authors": [
  4726. {
  4727. "name": "Nicolas Grekas",
  4728. "email": "p@tchwork.com"
  4729. },
  4730. {
  4731. "name": "Symfony Community",
  4732. "homepage": "https://symfony.com/contributors"
  4733. }
  4734. ],
  4735. "description": "A generic function and convention to trigger deprecation notices",
  4736. "homepage": "https://symfony.com",
  4737. "time": "2020-06-06T08:49:21+00:00"
  4738. },
  4739. {
  4740. "name": "symfony/dom-crawler",
  4741. "version": "v4.4.11",
  4742. "source": {
  4743. "type": "git",
  4744. "url": "https://github.com/symfony/dom-crawler.git",
  4745. "reference": "72b3a65ddd5052cf6d65eac6669748ed311f39bf"
  4746. },
  4747. "dist": {
  4748. "type": "zip",
  4749. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/72b3a65ddd5052cf6d65eac6669748ed311f39bf",
  4750. "reference": "72b3a65ddd5052cf6d65eac6669748ed311f39bf",
  4751. "shasum": "",
  4752. "mirrors": [
  4753. {
  4754. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4755. "preferred": true
  4756. }
  4757. ]
  4758. },
  4759. "require": {
  4760. "php": ">=7.1.3",
  4761. "symfony/polyfill-ctype": "~1.8",
  4762. "symfony/polyfill-mbstring": "~1.0"
  4763. },
  4764. "conflict": {
  4765. "masterminds/html5": "<2.6"
  4766. },
  4767. "require-dev": {
  4768. "masterminds/html5": "^2.6",
  4769. "symfony/css-selector": "^3.4|^4.0|^5.0"
  4770. },
  4771. "suggest": {
  4772. "symfony/css-selector": ""
  4773. },
  4774. "type": "library",
  4775. "extra": {
  4776. "branch-alias": {
  4777. "dev-master": "4.4-dev"
  4778. }
  4779. },
  4780. "autoload": {
  4781. "psr-4": {
  4782. "Symfony\\Component\\DomCrawler\\": ""
  4783. },
  4784. "exclude-from-classmap": [
  4785. "/Tests/"
  4786. ]
  4787. },
  4788. "notification-url": "https://packagist.org/downloads/",
  4789. "license": [
  4790. "MIT"
  4791. ],
  4792. "authors": [
  4793. {
  4794. "name": "Fabien Potencier",
  4795. "email": "fabien@symfony.com"
  4796. },
  4797. {
  4798. "name": "Symfony Community",
  4799. "homepage": "https://symfony.com/contributors"
  4800. }
  4801. ],
  4802. "description": "Symfony DomCrawler Component",
  4803. "homepage": "https://symfony.com",
  4804. "time": "2020-07-23T08:31:43+00:00"
  4805. },
  4806. {
  4807. "name": "symfony/event-dispatcher",
  4808. "version": "v5.1.3",
  4809. "source": {
  4810. "type": "git",
  4811. "url": "https://github.com/symfony/event-dispatcher.git",
  4812. "reference": "7827d55911f91c070fc293ea51a06eec80797d76"
  4813. },
  4814. "dist": {
  4815. "type": "zip",
  4816. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/7827d55911f91c070fc293ea51a06eec80797d76",
  4817. "reference": "7827d55911f91c070fc293ea51a06eec80797d76",
  4818. "shasum": "",
  4819. "mirrors": [
  4820. {
  4821. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4822. "preferred": true
  4823. }
  4824. ]
  4825. },
  4826. "require": {
  4827. "php": ">=7.2.5",
  4828. "symfony/deprecation-contracts": "^2.1",
  4829. "symfony/event-dispatcher-contracts": "^2",
  4830. "symfony/polyfill-php80": "^1.15"
  4831. },
  4832. "conflict": {
  4833. "symfony/dependency-injection": "<4.4"
  4834. },
  4835. "provide": {
  4836. "psr/event-dispatcher-implementation": "1.0",
  4837. "symfony/event-dispatcher-implementation": "2.0"
  4838. },
  4839. "require-dev": {
  4840. "psr/log": "~1.0",
  4841. "symfony/config": "^4.4|^5.0",
  4842. "symfony/dependency-injection": "^4.4|^5.0",
  4843. "symfony/expression-language": "^4.4|^5.0",
  4844. "symfony/http-foundation": "^4.4|^5.0",
  4845. "symfony/service-contracts": "^1.1|^2",
  4846. "symfony/stopwatch": "^4.4|^5.0"
  4847. },
  4848. "suggest": {
  4849. "symfony/dependency-injection": "",
  4850. "symfony/http-kernel": ""
  4851. },
  4852. "type": "library",
  4853. "extra": {
  4854. "branch-alias": {
  4855. "dev-master": "5.1-dev"
  4856. }
  4857. },
  4858. "autoload": {
  4859. "psr-4": {
  4860. "Symfony\\Component\\EventDispatcher\\": ""
  4861. },
  4862. "exclude-from-classmap": [
  4863. "/Tests/"
  4864. ]
  4865. },
  4866. "notification-url": "https://packagist.org/downloads/",
  4867. "license": [
  4868. "MIT"
  4869. ],
  4870. "authors": [
  4871. {
  4872. "name": "Fabien Potencier",
  4873. "email": "fabien@symfony.com"
  4874. },
  4875. {
  4876. "name": "Symfony Community",
  4877. "homepage": "https://symfony.com/contributors"
  4878. }
  4879. ],
  4880. "description": "Symfony EventDispatcher Component",
  4881. "homepage": "https://symfony.com",
  4882. "time": "2020-06-18T18:24:02+00:00"
  4883. },
  4884. {
  4885. "name": "symfony/event-dispatcher-contracts",
  4886. "version": "v2.1.3",
  4887. "source": {
  4888. "type": "git",
  4889. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4890. "reference": "f6f613d74cfc5a623fc36294d3451eb7fa5a042b"
  4891. },
  4892. "dist": {
  4893. "type": "zip",
  4894. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f6f613d74cfc5a623fc36294d3451eb7fa5a042b",
  4895. "reference": "f6f613d74cfc5a623fc36294d3451eb7fa5a042b",
  4896. "shasum": "",
  4897. "mirrors": [
  4898. {
  4899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4900. "preferred": true
  4901. }
  4902. ]
  4903. },
  4904. "require": {
  4905. "php": ">=7.2.5",
  4906. "psr/event-dispatcher": "^1"
  4907. },
  4908. "suggest": {
  4909. "symfony/event-dispatcher-implementation": ""
  4910. },
  4911. "type": "library",
  4912. "extra": {
  4913. "branch-alias": {
  4914. "dev-master": "2.1-dev"
  4915. },
  4916. "thanks": {
  4917. "name": "symfony/contracts",
  4918. "url": "https://github.com/symfony/contracts"
  4919. }
  4920. },
  4921. "autoload": {
  4922. "psr-4": {
  4923. "Symfony\\Contracts\\EventDispatcher\\": ""
  4924. }
  4925. },
  4926. "notification-url": "https://packagist.org/downloads/",
  4927. "license": [
  4928. "MIT"
  4929. ],
  4930. "authors": [
  4931. {
  4932. "name": "Nicolas Grekas",
  4933. "email": "p@tchwork.com"
  4934. },
  4935. {
  4936. "name": "Symfony Community",
  4937. "homepage": "https://symfony.com/contributors"
  4938. }
  4939. ],
  4940. "description": "Generic abstractions related to dispatching event",
  4941. "homepage": "https://symfony.com",
  4942. "keywords": [
  4943. "abstractions",
  4944. "contracts",
  4945. "decoupling",
  4946. "interfaces",
  4947. "interoperability",
  4948. "standards"
  4949. ],
  4950. "time": "2020-07-06T13:23:11+00:00"
  4951. },
  4952. {
  4953. "name": "symfony/finder",
  4954. "version": "v5.1.3",
  4955. "source": {
  4956. "type": "git",
  4957. "url": "https://github.com/symfony/finder.git",
  4958. "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187"
  4959. },
  4960. "dist": {
  4961. "type": "zip",
  4962. "url": "https://api.github.com/repos/symfony/finder/zipball/4298870062bfc667cb78d2b379be4bf5dec5f187",
  4963. "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187",
  4964. "shasum": "",
  4965. "mirrors": [
  4966. {
  4967. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4968. "preferred": true
  4969. }
  4970. ]
  4971. },
  4972. "require": {
  4973. "php": ">=7.2.5"
  4974. },
  4975. "type": "library",
  4976. "extra": {
  4977. "branch-alias": {
  4978. "dev-master": "5.1-dev"
  4979. }
  4980. },
  4981. "autoload": {
  4982. "psr-4": {
  4983. "Symfony\\Component\\Finder\\": ""
  4984. },
  4985. "exclude-from-classmap": [
  4986. "/Tests/"
  4987. ]
  4988. },
  4989. "notification-url": "https://packagist.org/downloads/",
  4990. "license": [
  4991. "MIT"
  4992. ],
  4993. "authors": [
  4994. {
  4995. "name": "Fabien Potencier",
  4996. "email": "fabien@symfony.com"
  4997. },
  4998. {
  4999. "name": "Symfony Community",
  5000. "homepage": "https://symfony.com/contributors"
  5001. }
  5002. ],
  5003. "description": "Symfony Finder Component",
  5004. "homepage": "https://symfony.com",
  5005. "time": "2020-05-20T17:43:50+00:00"
  5006. },
  5007. {
  5008. "name": "symfony/polyfill-ctype",
  5009. "version": "v1.18.1",
  5010. "source": {
  5011. "type": "git",
  5012. "url": "https://github.com/symfony/polyfill-ctype.git",
  5013. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454"
  5014. },
  5015. "dist": {
  5016. "type": "zip",
  5017. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454",
  5018. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454",
  5019. "shasum": "",
  5020. "mirrors": [
  5021. {
  5022. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5023. "preferred": true
  5024. }
  5025. ]
  5026. },
  5027. "require": {
  5028. "php": ">=5.3.3"
  5029. },
  5030. "suggest": {
  5031. "ext-ctype": "For best performance"
  5032. },
  5033. "type": "library",
  5034. "extra": {
  5035. "branch-alias": {
  5036. "dev-master": "1.18-dev"
  5037. },
  5038. "thanks": {
  5039. "name": "symfony/polyfill",
  5040. "url": "https://github.com/symfony/polyfill"
  5041. }
  5042. },
  5043. "autoload": {
  5044. "psr-4": {
  5045. "Symfony\\Polyfill\\Ctype\\": ""
  5046. },
  5047. "files": [
  5048. "bootstrap.php"
  5049. ]
  5050. },
  5051. "notification-url": "https://packagist.org/downloads/",
  5052. "license": [
  5053. "MIT"
  5054. ],
  5055. "authors": [
  5056. {
  5057. "name": "Gert de Pagter",
  5058. "email": "BackEndTea@gmail.com"
  5059. },
  5060. {
  5061. "name": "Symfony Community",
  5062. "homepage": "https://symfony.com/contributors"
  5063. }
  5064. ],
  5065. "description": "Symfony polyfill for ctype functions",
  5066. "homepage": "https://symfony.com",
  5067. "keywords": [
  5068. "compatibility",
  5069. "ctype",
  5070. "polyfill",
  5071. "portable"
  5072. ],
  5073. "time": "2020-07-14T12:35:20+00:00"
  5074. },
  5075. {
  5076. "name": "symfony/polyfill-intl-grapheme",
  5077. "version": "v1.18.1",
  5078. "source": {
  5079. "type": "git",
  5080. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5081. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5"
  5082. },
  5083. "dist": {
  5084. "type": "zip",
  5085. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  5086. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  5087. "shasum": "",
  5088. "mirrors": [
  5089. {
  5090. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5091. "preferred": true
  5092. }
  5093. ]
  5094. },
  5095. "require": {
  5096. "php": ">=5.3.3"
  5097. },
  5098. "suggest": {
  5099. "ext-intl": "For best performance"
  5100. },
  5101. "type": "library",
  5102. "extra": {
  5103. "branch-alias": {
  5104. "dev-master": "1.18-dev"
  5105. },
  5106. "thanks": {
  5107. "name": "symfony/polyfill",
  5108. "url": "https://github.com/symfony/polyfill"
  5109. }
  5110. },
  5111. "autoload": {
  5112. "psr-4": {
  5113. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5114. },
  5115. "files": [
  5116. "bootstrap.php"
  5117. ]
  5118. },
  5119. "notification-url": "https://packagist.org/downloads/",
  5120. "license": [
  5121. "MIT"
  5122. ],
  5123. "authors": [
  5124. {
  5125. "name": "Nicolas Grekas",
  5126. "email": "p@tchwork.com"
  5127. },
  5128. {
  5129. "name": "Symfony Community",
  5130. "homepage": "https://symfony.com/contributors"
  5131. }
  5132. ],
  5133. "description": "Symfony polyfill for intl's grapheme_* functions",
  5134. "homepage": "https://symfony.com",
  5135. "keywords": [
  5136. "compatibility",
  5137. "grapheme",
  5138. "intl",
  5139. "polyfill",
  5140. "portable",
  5141. "shim"
  5142. ],
  5143. "time": "2020-07-14T12:35:20+00:00"
  5144. },
  5145. {
  5146. "name": "symfony/polyfill-php73",
  5147. "version": "v1.18.1",
  5148. "source": {
  5149. "type": "git",
  5150. "url": "https://github.com/symfony/polyfill-php73.git",
  5151. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca"
  5152. },
  5153. "dist": {
  5154. "type": "zip",
  5155. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  5156. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  5157. "shasum": "",
  5158. "mirrors": [
  5159. {
  5160. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5161. "preferred": true
  5162. }
  5163. ]
  5164. },
  5165. "require": {
  5166. "php": ">=5.3.3"
  5167. },
  5168. "type": "library",
  5169. "extra": {
  5170. "branch-alias": {
  5171. "dev-master": "1.18-dev"
  5172. },
  5173. "thanks": {
  5174. "name": "symfony/polyfill",
  5175. "url": "https://github.com/symfony/polyfill"
  5176. }
  5177. },
  5178. "autoload": {
  5179. "psr-4": {
  5180. "Symfony\\Polyfill\\Php73\\": ""
  5181. },
  5182. "files": [
  5183. "bootstrap.php"
  5184. ],
  5185. "classmap": [
  5186. "Resources/stubs"
  5187. ]
  5188. },
  5189. "notification-url": "https://packagist.org/downloads/",
  5190. "license": [
  5191. "MIT"
  5192. ],
  5193. "authors": [
  5194. {
  5195. "name": "Nicolas Grekas",
  5196. "email": "p@tchwork.com"
  5197. },
  5198. {
  5199. "name": "Symfony Community",
  5200. "homepage": "https://symfony.com/contributors"
  5201. }
  5202. ],
  5203. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5204. "homepage": "https://symfony.com",
  5205. "keywords": [
  5206. "compatibility",
  5207. "polyfill",
  5208. "portable",
  5209. "shim"
  5210. ],
  5211. "time": "2020-07-14T12:35:20+00:00"
  5212. },
  5213. {
  5214. "name": "symfony/polyfill-php80",
  5215. "version": "v1.18.1",
  5216. "source": {
  5217. "type": "git",
  5218. "url": "https://github.com/symfony/polyfill-php80.git",
  5219. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981"
  5220. },
  5221. "dist": {
  5222. "type": "zip",
  5223. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  5224. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  5225. "shasum": "",
  5226. "mirrors": [
  5227. {
  5228. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5229. "preferred": true
  5230. }
  5231. ]
  5232. },
  5233. "require": {
  5234. "php": ">=7.0.8"
  5235. },
  5236. "type": "library",
  5237. "extra": {
  5238. "branch-alias": {
  5239. "dev-master": "1.18-dev"
  5240. },
  5241. "thanks": {
  5242. "name": "symfony/polyfill",
  5243. "url": "https://github.com/symfony/polyfill"
  5244. }
  5245. },
  5246. "autoload": {
  5247. "psr-4": {
  5248. "Symfony\\Polyfill\\Php80\\": ""
  5249. },
  5250. "files": [
  5251. "bootstrap.php"
  5252. ],
  5253. "classmap": [
  5254. "Resources/stubs"
  5255. ]
  5256. },
  5257. "notification-url": "https://packagist.org/downloads/",
  5258. "license": [
  5259. "MIT"
  5260. ],
  5261. "authors": [
  5262. {
  5263. "name": "Ion Bazan",
  5264. "email": "ion.bazan@gmail.com"
  5265. },
  5266. {
  5267. "name": "Nicolas Grekas",
  5268. "email": "p@tchwork.com"
  5269. },
  5270. {
  5271. "name": "Symfony Community",
  5272. "homepage": "https://symfony.com/contributors"
  5273. }
  5274. ],
  5275. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5276. "homepage": "https://symfony.com",
  5277. "keywords": [
  5278. "compatibility",
  5279. "polyfill",
  5280. "portable",
  5281. "shim"
  5282. ],
  5283. "time": "2020-07-14T12:35:20+00:00"
  5284. },
  5285. {
  5286. "name": "symfony/service-contracts",
  5287. "version": "v2.1.3",
  5288. "source": {
  5289. "type": "git",
  5290. "url": "https://github.com/symfony/service-contracts.git",
  5291. "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442"
  5292. },
  5293. "dist": {
  5294. "type": "zip",
  5295. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442",
  5296. "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442",
  5297. "shasum": "",
  5298. "mirrors": [
  5299. {
  5300. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5301. "preferred": true
  5302. }
  5303. ]
  5304. },
  5305. "require": {
  5306. "php": ">=7.2.5",
  5307. "psr/container": "^1.0"
  5308. },
  5309. "suggest": {
  5310. "symfony/service-implementation": ""
  5311. },
  5312. "type": "library",
  5313. "extra": {
  5314. "branch-alias": {
  5315. "dev-master": "2.1-dev"
  5316. },
  5317. "thanks": {
  5318. "name": "symfony/contracts",
  5319. "url": "https://github.com/symfony/contracts"
  5320. }
  5321. },
  5322. "autoload": {
  5323. "psr-4": {
  5324. "Symfony\\Contracts\\Service\\": ""
  5325. }
  5326. },
  5327. "notification-url": "https://packagist.org/downloads/",
  5328. "license": [
  5329. "MIT"
  5330. ],
  5331. "authors": [
  5332. {
  5333. "name": "Nicolas Grekas",
  5334. "email": "p@tchwork.com"
  5335. },
  5336. {
  5337. "name": "Symfony Community",
  5338. "homepage": "https://symfony.com/contributors"
  5339. }
  5340. ],
  5341. "description": "Generic abstractions related to writing services",
  5342. "homepage": "https://symfony.com",
  5343. "keywords": [
  5344. "abstractions",
  5345. "contracts",
  5346. "decoupling",
  5347. "interfaces",
  5348. "interoperability",
  5349. "standards"
  5350. ],
  5351. "time": "2020-07-06T13:23:11+00:00"
  5352. },
  5353. {
  5354. "name": "symfony/string",
  5355. "version": "v5.1.3",
  5356. "source": {
  5357. "type": "git",
  5358. "url": "https://github.com/symfony/string.git",
  5359. "reference": "f629ba9b611c76224feb21fe2bcbf0b6f992300b"
  5360. },
  5361. "dist": {
  5362. "type": "zip",
  5363. "url": "https://api.github.com/repos/symfony/string/zipball/f629ba9b611c76224feb21fe2bcbf0b6f992300b",
  5364. "reference": "f629ba9b611c76224feb21fe2bcbf0b6f992300b",
  5365. "shasum": "",
  5366. "mirrors": [
  5367. {
  5368. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5369. "preferred": true
  5370. }
  5371. ]
  5372. },
  5373. "require": {
  5374. "php": ">=7.2.5",
  5375. "symfony/polyfill-ctype": "~1.8",
  5376. "symfony/polyfill-intl-grapheme": "~1.0",
  5377. "symfony/polyfill-intl-normalizer": "~1.0",
  5378. "symfony/polyfill-mbstring": "~1.0",
  5379. "symfony/polyfill-php80": "~1.15"
  5380. },
  5381. "require-dev": {
  5382. "symfony/error-handler": "^4.4|^5.0",
  5383. "symfony/http-client": "^4.4|^5.0",
  5384. "symfony/translation-contracts": "^1.1|^2",
  5385. "symfony/var-exporter": "^4.4|^5.0"
  5386. },
  5387. "type": "library",
  5388. "extra": {
  5389. "branch-alias": {
  5390. "dev-master": "5.1-dev"
  5391. }
  5392. },
  5393. "autoload": {
  5394. "psr-4": {
  5395. "Symfony\\Component\\String\\": ""
  5396. },
  5397. "files": [
  5398. "Resources/functions.php"
  5399. ],
  5400. "exclude-from-classmap": [
  5401. "/Tests/"
  5402. ]
  5403. },
  5404. "notification-url": "https://packagist.org/downloads/",
  5405. "license": [
  5406. "MIT"
  5407. ],
  5408. "authors": [
  5409. {
  5410. "name": "Nicolas Grekas",
  5411. "email": "p@tchwork.com"
  5412. },
  5413. {
  5414. "name": "Symfony Community",
  5415. "homepage": "https://symfony.com/contributors"
  5416. }
  5417. ],
  5418. "description": "Symfony String component",
  5419. "homepage": "https://symfony.com",
  5420. "keywords": [
  5421. "grapheme",
  5422. "i18n",
  5423. "string",
  5424. "unicode",
  5425. "utf-8",
  5426. "utf8"
  5427. ],
  5428. "time": "2020-07-08T08:27:49+00:00"
  5429. },
  5430. {
  5431. "name": "symfony/yaml",
  5432. "version": "v5.1.3",
  5433. "source": {
  5434. "type": "git",
  5435. "url": "https://github.com/symfony/yaml.git",
  5436. "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23"
  5437. },
  5438. "dist": {
  5439. "type": "zip",
  5440. "url": "https://api.github.com/repos/symfony/yaml/zipball/ea342353a3ef4f453809acc4ebc55382231d4d23",
  5441. "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23",
  5442. "shasum": "",
  5443. "mirrors": [
  5444. {
  5445. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5446. "preferred": true
  5447. }
  5448. ]
  5449. },
  5450. "require": {
  5451. "php": ">=7.2.5",
  5452. "symfony/deprecation-contracts": "^2.1",
  5453. "symfony/polyfill-ctype": "~1.8"
  5454. },
  5455. "conflict": {
  5456. "symfony/console": "<4.4"
  5457. },
  5458. "require-dev": {
  5459. "symfony/console": "^4.4|^5.0"
  5460. },
  5461. "suggest": {
  5462. "symfony/console": "For validating YAML files using the lint command"
  5463. },
  5464. "bin": [
  5465. "Resources/bin/yaml-lint"
  5466. ],
  5467. "type": "library",
  5468. "extra": {
  5469. "branch-alias": {
  5470. "dev-master": "5.1-dev"
  5471. }
  5472. },
  5473. "autoload": {
  5474. "psr-4": {
  5475. "Symfony\\Component\\Yaml\\": ""
  5476. },
  5477. "exclude-from-classmap": [
  5478. "/Tests/"
  5479. ]
  5480. },
  5481. "notification-url": "https://packagist.org/downloads/",
  5482. "license": [
  5483. "MIT"
  5484. ],
  5485. "authors": [
  5486. {
  5487. "name": "Fabien Potencier",
  5488. "email": "fabien@symfony.com"
  5489. },
  5490. {
  5491. "name": "Symfony Community",
  5492. "homepage": "https://symfony.com/contributors"
  5493. }
  5494. ],
  5495. "description": "Symfony Yaml Component",
  5496. "homepage": "https://symfony.com",
  5497. "time": "2020-05-20T17:43:50+00:00"
  5498. },
  5499. {
  5500. "name": "theseer/tokenizer",
  5501. "version": "1.2.0",
  5502. "source": {
  5503. "type": "git",
  5504. "url": "https://github.com/theseer/tokenizer.git",
  5505. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  5506. },
  5507. "dist": {
  5508. "type": "zip",
  5509. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  5510. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  5511. "shasum": "",
  5512. "mirrors": [
  5513. {
  5514. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5515. "preferred": true
  5516. }
  5517. ]
  5518. },
  5519. "require": {
  5520. "ext-dom": "*",
  5521. "ext-tokenizer": "*",
  5522. "ext-xmlwriter": "*",
  5523. "php": "^7.2 || ^8.0"
  5524. },
  5525. "type": "library",
  5526. "autoload": {
  5527. "classmap": [
  5528. "src/"
  5529. ]
  5530. },
  5531. "notification-url": "https://packagist.org/downloads/",
  5532. "license": [
  5533. "BSD-3-Clause"
  5534. ],
  5535. "authors": [
  5536. {
  5537. "name": "Arne Blankerts",
  5538. "email": "arne@blankerts.de",
  5539. "role": "Developer"
  5540. }
  5541. ],
  5542. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  5543. "time": "2020-07-12T23:59:07+00:00"
  5544. },
  5545. {
  5546. "name": "webmozart/assert",
  5547. "version": "1.9.1",
  5548. "source": {
  5549. "type": "git",
  5550. "url": "https://github.com/webmozart/assert.git",
  5551. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  5552. },
  5553. "dist": {
  5554. "type": "zip",
  5555. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  5556. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  5557. "shasum": "",
  5558. "mirrors": [
  5559. {
  5560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5561. "preferred": true
  5562. }
  5563. ]
  5564. },
  5565. "require": {
  5566. "php": "^5.3.3 || ^7.0 || ^8.0",
  5567. "symfony/polyfill-ctype": "^1.8"
  5568. },
  5569. "conflict": {
  5570. "phpstan/phpstan": "<0.12.20",
  5571. "vimeo/psalm": "<3.9.1"
  5572. },
  5573. "require-dev": {
  5574. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  5575. },
  5576. "type": "library",
  5577. "autoload": {
  5578. "psr-4": {
  5579. "Webmozart\\Assert\\": "src/"
  5580. }
  5581. },
  5582. "notification-url": "https://packagist.org/downloads/",
  5583. "license": [
  5584. "MIT"
  5585. ],
  5586. "authors": [
  5587. {
  5588. "name": "Bernhard Schussek",
  5589. "email": "bschussek@gmail.com"
  5590. }
  5591. ],
  5592. "description": "Assertions to validate method input/output with nice error messages.",
  5593. "keywords": [
  5594. "assert",
  5595. "check",
  5596. "validate"
  5597. ],
  5598. "time": "2020-07-08T17:02:28+00:00"
  5599. },
  5600. {
  5601. "name": "yiisoft/yii2-debug",
  5602. "version": "2.1.13",
  5603. "source": {
  5604. "type": "git",
  5605. "url": "https://github.com/yiisoft/yii2-debug.git",
  5606. "reference": "696712a2a3565b1a072ad3c9d298e262967e8282"
  5607. },
  5608. "dist": {
  5609. "type": "zip",
  5610. "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/696712a2a3565b1a072ad3c9d298e262967e8282",
  5611. "reference": "696712a2a3565b1a072ad3c9d298e262967e8282",
  5612. "shasum": "",
  5613. "mirrors": [
  5614. {
  5615. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5616. "preferred": true
  5617. }
  5618. ]
  5619. },
  5620. "require": {
  5621. "ext-mbstring": "*",
  5622. "opis/closure": "^3.3",
  5623. "php": ">=5.4",
  5624. "yiisoft/yii2": "~2.0.13"
  5625. },
  5626. "require-dev": {
  5627. "phpunit/phpunit": "<7",
  5628. "yiisoft/yii2-coding-standards": "~2.0",
  5629. "yiisoft/yii2-swiftmailer": "*"
  5630. },
  5631. "type": "yii2-extension",
  5632. "extra": {
  5633. "branch-alias": {
  5634. "dev-master": "2.0.x-dev"
  5635. }
  5636. },
  5637. "autoload": {
  5638. "psr-4": {
  5639. "yii\\debug\\": "src"
  5640. }
  5641. },
  5642. "notification-url": "https://packagist.org/downloads/",
  5643. "license": [
  5644. "BSD-3-Clause"
  5645. ],
  5646. "authors": [
  5647. {
  5648. "name": "Qiang Xue",
  5649. "email": "qiang.xue@gmail.com"
  5650. },
  5651. {
  5652. "name": "Simon Karlen",
  5653. "email": "simi.albi@outlook.com"
  5654. }
  5655. ],
  5656. "description": "The debugger extension for the Yii framework",
  5657. "keywords": [
  5658. "debug",
  5659. "debugger",
  5660. "yii2"
  5661. ],
  5662. "time": "2020-01-17T13:40:32+00:00"
  5663. },
  5664. {
  5665. "name": "yiisoft/yii2-faker",
  5666. "version": "2.0.4",
  5667. "source": {
  5668. "type": "git",
  5669. "url": "https://github.com/yiisoft/yii2-faker.git",
  5670. "reference": "3df62b1dcb272a8413f9c6e532c9d73f325ccde1"
  5671. },
  5672. "dist": {
  5673. "type": "zip",
  5674. "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/3df62b1dcb272a8413f9c6e532c9d73f325ccde1",
  5675. "reference": "3df62b1dcb272a8413f9c6e532c9d73f325ccde1",
  5676. "shasum": "",
  5677. "mirrors": [
  5678. {
  5679. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5680. "preferred": true
  5681. }
  5682. ]
  5683. },
  5684. "require": {
  5685. "fzaninotto/faker": "~1.4",
  5686. "yiisoft/yii2": "~2.0.0"
  5687. },
  5688. "type": "yii2-extension",
  5689. "extra": {
  5690. "branch-alias": {
  5691. "dev-master": "2.0.x-dev"
  5692. }
  5693. },
  5694. "autoload": {
  5695. "psr-4": {
  5696. "yii\\faker\\": ""
  5697. }
  5698. },
  5699. "notification-url": "https://packagist.org/downloads/",
  5700. "license": [
  5701. "BSD-3-Clause"
  5702. ],
  5703. "authors": [
  5704. {
  5705. "name": "Mark Jebri",
  5706. "email": "mark.github@yandex.ru"
  5707. }
  5708. ],
  5709. "description": "Fixture generator. The Faker integration for the Yii framework.",
  5710. "keywords": [
  5711. "Fixture",
  5712. "faker",
  5713. "yii2"
  5714. ],
  5715. "time": "2018-02-19T20:27:10+00:00"
  5716. },
  5717. {
  5718. "name": "yiisoft/yii2-gii",
  5719. "version": "2.1.4",
  5720. "source": {
  5721. "type": "git",
  5722. "url": "https://github.com/yiisoft/yii2-gii.git",
  5723. "reference": "d879cb186361fbc6f71a2d994d580b5a071a5642"
  5724. },
  5725. "dist": {
  5726. "type": "zip",
  5727. "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/d879cb186361fbc6f71a2d994d580b5a071a5642",
  5728. "reference": "d879cb186361fbc6f71a2d994d580b5a071a5642",
  5729. "shasum": "",
  5730. "mirrors": [
  5731. {
  5732. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5733. "preferred": true
  5734. }
  5735. ]
  5736. },
  5737. "require": {
  5738. "phpspec/php-diff": "^1.1.0",
  5739. "yiisoft/yii2": "~2.0.14"
  5740. },
  5741. "require-dev": {
  5742. "phpunit/phpunit": "<7",
  5743. "yiisoft/yii2-coding-standards": "~2.0"
  5744. },
  5745. "type": "yii2-extension",
  5746. "extra": {
  5747. "branch-alias": {
  5748. "dev-master": "2.0.x-dev"
  5749. }
  5750. },
  5751. "autoload": {
  5752. "psr-4": {
  5753. "yii\\gii\\": "src"
  5754. }
  5755. },
  5756. "notification-url": "https://packagist.org/downloads/",
  5757. "license": [
  5758. "BSD-3-Clause"
  5759. ],
  5760. "authors": [
  5761. {
  5762. "name": "Qiang Xue",
  5763. "email": "qiang.xue@gmail.com"
  5764. }
  5765. ],
  5766. "description": "The Gii extension for the Yii framework",
  5767. "keywords": [
  5768. "code generator",
  5769. "gii",
  5770. "yii2"
  5771. ],
  5772. "time": "2020-01-17T13:33:30+00:00"
  5773. }
  5774. ],
  5775. "aliases": [],
  5776. "minimum-stability": "stable",
  5777. "stability-flags": [],
  5778. "prefer-stable": false,
  5779. "prefer-lowest": false,
  5780. "platform": {
  5781. "php": ">=5.6.0"
  5782. },
  5783. "platform-dev": []
  5784. }