composer.lock 288 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136
  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": "1ad1cc757ebfef8726b54f0f69c8ba1e",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/eaac909da3ccc32b748a65b127acd8918f58d9b0",
  20. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "dasprid/enum": "^1.0",
  31. "ext-iconv": "*",
  32. "php": "^7.1"
  33. },
  34. "require-dev": {
  35. "phly/keep-a-changelog": "^1.4",
  36. "phpunit/phpunit": "^6.4",
  37. "squizlabs/php_codesniffer": "^3.1"
  38. },
  39. "suggest": {
  40. "ext-imagick": "to generate QR code images"
  41. },
  42. "type": "library",
  43. "autoload": {
  44. "psr-4": {
  45. "BaconQrCode\\": "src/"
  46. }
  47. },
  48. "notification-url": "https://packagist.org/downloads/",
  49. "license": [
  50. "BSD-2-Clause"
  51. ],
  52. "authors": [
  53. {
  54. "name": "Ben Scholzen 'DASPRiD'",
  55. "email": "mail@dasprids.de",
  56. "homepage": "http://www.dasprids.de",
  57. "role": "Developer"
  58. }
  59. ],
  60. "description": "BaconQrCode is a QR code generator for PHP.",
  61. "homepage": "https://github.com/Bacon/BaconQrCode",
  62. "time": "2018-04-25T17:53:56+00:00"
  63. },
  64. {
  65. "name": "brick/math",
  66. "version": "0.8.15",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/brick/math.git",
  70. "reference": "9b08d412b9da9455b210459ff71414de7e6241cd"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/brick/math/zipball/9b08d412b9da9455b210459ff71414de7e6241cd",
  75. "reference": "9b08d412b9da9455b210459ff71414de7e6241cd",
  76. "shasum": "",
  77. "mirrors": [
  78. {
  79. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  80. "preferred": true
  81. }
  82. ]
  83. },
  84. "require": {
  85. "ext-json": "*",
  86. "php": "^7.1|^8.0"
  87. },
  88. "require-dev": {
  89. "php-coveralls/php-coveralls": "^2.2",
  90. "phpunit/phpunit": "^7.5.15|^8.5",
  91. "vimeo/psalm": "^3.5"
  92. },
  93. "type": "library",
  94. "autoload": {
  95. "psr-4": {
  96. "Brick\\Math\\": "src/"
  97. }
  98. },
  99. "notification-url": "https://packagist.org/downloads/",
  100. "license": [
  101. "MIT"
  102. ],
  103. "description": "Arbitrary-precision arithmetic library",
  104. "keywords": [
  105. "Arbitrary-precision",
  106. "BigInteger",
  107. "BigRational",
  108. "arithmetic",
  109. "bigdecimal",
  110. "bignum",
  111. "brick",
  112. "math"
  113. ],
  114. "time": "2020-04-15T15:59:35+00:00"
  115. },
  116. {
  117. "name": "dasprid/enum",
  118. "version": "1.0.0",
  119. "source": {
  120. "type": "git",
  121. "url": "https://github.com/DASPRiD/Enum.git",
  122. "reference": "631ef6e638e9494b0310837fa531bedd908fc22b"
  123. },
  124. "dist": {
  125. "type": "zip",
  126. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/631ef6e638e9494b0310837fa531bedd908fc22b",
  127. "reference": "631ef6e638e9494b0310837fa531bedd908fc22b",
  128. "shasum": "",
  129. "mirrors": [
  130. {
  131. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  132. "preferred": true
  133. }
  134. ]
  135. },
  136. "require-dev": {
  137. "phpunit/phpunit": "^6.4",
  138. "squizlabs/php_codesniffer": "^3.1"
  139. },
  140. "type": "library",
  141. "autoload": {
  142. "psr-4": {
  143. "DASPRiD\\Enum\\": "src/"
  144. }
  145. },
  146. "notification-url": "https://packagist.org/downloads/",
  147. "license": [
  148. "BSD-2-Clause"
  149. ],
  150. "authors": [
  151. {
  152. "name": "Ben Scholzen 'DASPRiD'",
  153. "email": "mail@dasprids.de",
  154. "homepage": "https://dasprids.de/"
  155. }
  156. ],
  157. "description": "PHP 7.1 enum implementation",
  158. "keywords": [
  159. "enum",
  160. "map"
  161. ],
  162. "time": "2017-10-25T22:45:27+00:00"
  163. },
  164. {
  165. "name": "dnoegel/php-xdg-base-dir",
  166. "version": "v0.1.1",
  167. "source": {
  168. "type": "git",
  169. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  170. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  171. },
  172. "dist": {
  173. "type": "zip",
  174. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  175. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  176. "shasum": "",
  177. "mirrors": [
  178. {
  179. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  180. "preferred": true
  181. }
  182. ]
  183. },
  184. "require": {
  185. "php": ">=5.3.2"
  186. },
  187. "require-dev": {
  188. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  189. },
  190. "type": "library",
  191. "autoload": {
  192. "psr-4": {
  193. "XdgBaseDir\\": "src/"
  194. }
  195. },
  196. "notification-url": "https://packagist.org/downloads/",
  197. "license": [
  198. "MIT"
  199. ],
  200. "description": "implementation of xdg base directory specification for php",
  201. "time": "2019-12-04T15:06:13+00:00"
  202. },
  203. {
  204. "name": "doctrine/cache",
  205. "version": "1.10.0",
  206. "source": {
  207. "type": "git",
  208. "url": "https://github.com/doctrine/cache.git",
  209. "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62"
  210. },
  211. "dist": {
  212. "type": "zip",
  213. "url": "https://api.github.com/repos/doctrine/cache/zipball/382e7f4db9a12dc6c19431743a2b096041bcdd62",
  214. "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62",
  215. "shasum": "",
  216. "mirrors": [
  217. {
  218. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  219. "preferred": true
  220. }
  221. ]
  222. },
  223. "require": {
  224. "php": "~7.1"
  225. },
  226. "conflict": {
  227. "doctrine/common": ">2.2,<2.4"
  228. },
  229. "require-dev": {
  230. "alcaeus/mongo-php-adapter": "^1.1",
  231. "doctrine/coding-standard": "^6.0",
  232. "mongodb/mongodb": "^1.1",
  233. "phpunit/phpunit": "^7.0",
  234. "predis/predis": "~1.0"
  235. },
  236. "suggest": {
  237. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  238. },
  239. "type": "library",
  240. "extra": {
  241. "branch-alias": {
  242. "dev-master": "1.9.x-dev"
  243. }
  244. },
  245. "autoload": {
  246. "psr-4": {
  247. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  248. }
  249. },
  250. "notification-url": "https://packagist.org/downloads/",
  251. "license": [
  252. "MIT"
  253. ],
  254. "authors": [
  255. {
  256. "name": "Guilherme Blanco",
  257. "email": "guilhermeblanco@gmail.com"
  258. },
  259. {
  260. "name": "Roman Borschel",
  261. "email": "roman@code-factory.org"
  262. },
  263. {
  264. "name": "Benjamin Eberlei",
  265. "email": "kontakt@beberlei.de"
  266. },
  267. {
  268. "name": "Jonathan Wage",
  269. "email": "jonwage@gmail.com"
  270. },
  271. {
  272. "name": "Johannes Schmitt",
  273. "email": "schmittjoh@gmail.com"
  274. }
  275. ],
  276. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  277. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  278. "keywords": [
  279. "abstraction",
  280. "apcu",
  281. "cache",
  282. "caching",
  283. "couchdb",
  284. "memcached",
  285. "php",
  286. "redis",
  287. "xcache"
  288. ],
  289. "time": "2019-11-29T15:36:20+00:00"
  290. },
  291. {
  292. "name": "doctrine/dbal",
  293. "version": "2.10.2",
  294. "source": {
  295. "type": "git",
  296. "url": "https://github.com/doctrine/dbal.git",
  297. "reference": "aab745e7b6b2de3b47019da81e7225e14dcfdac8"
  298. },
  299. "dist": {
  300. "type": "zip",
  301. "url": "https://api.github.com/repos/doctrine/dbal/zipball/aab745e7b6b2de3b47019da81e7225e14dcfdac8",
  302. "reference": "aab745e7b6b2de3b47019da81e7225e14dcfdac8",
  303. "shasum": "",
  304. "mirrors": [
  305. {
  306. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  307. "preferred": true
  308. }
  309. ]
  310. },
  311. "require": {
  312. "doctrine/cache": "^1.0",
  313. "doctrine/event-manager": "^1.0",
  314. "ext-pdo": "*",
  315. "php": "^7.2"
  316. },
  317. "require-dev": {
  318. "doctrine/coding-standard": "^6.0",
  319. "jetbrains/phpstorm-stubs": "^2019.1",
  320. "nikic/php-parser": "^4.4",
  321. "phpstan/phpstan": "^0.12",
  322. "phpunit/phpunit": "^8.4.1",
  323. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  324. "vimeo/psalm": "^3.11"
  325. },
  326. "suggest": {
  327. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  328. },
  329. "bin": [
  330. "bin/doctrine-dbal"
  331. ],
  332. "type": "library",
  333. "extra": {
  334. "branch-alias": {
  335. "dev-master": "2.10.x-dev",
  336. "dev-develop": "3.0.x-dev"
  337. }
  338. },
  339. "autoload": {
  340. "psr-4": {
  341. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  342. }
  343. },
  344. "notification-url": "https://packagist.org/downloads/",
  345. "license": [
  346. "MIT"
  347. ],
  348. "authors": [
  349. {
  350. "name": "Guilherme Blanco",
  351. "email": "guilhermeblanco@gmail.com"
  352. },
  353. {
  354. "name": "Roman Borschel",
  355. "email": "roman@code-factory.org"
  356. },
  357. {
  358. "name": "Benjamin Eberlei",
  359. "email": "kontakt@beberlei.de"
  360. },
  361. {
  362. "name": "Jonathan Wage",
  363. "email": "jonwage@gmail.com"
  364. }
  365. ],
  366. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  367. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  368. "keywords": [
  369. "abstraction",
  370. "database",
  371. "db2",
  372. "dbal",
  373. "mariadb",
  374. "mssql",
  375. "mysql",
  376. "oci8",
  377. "oracle",
  378. "pdo",
  379. "pgsql",
  380. "postgresql",
  381. "queryobject",
  382. "sasql",
  383. "sql",
  384. "sqlanywhere",
  385. "sqlite",
  386. "sqlserver",
  387. "sqlsrv"
  388. ],
  389. "time": "2020-04-20T17:19:26+00:00"
  390. },
  391. {
  392. "name": "doctrine/event-manager",
  393. "version": "1.1.0",
  394. "source": {
  395. "type": "git",
  396. "url": "https://github.com/doctrine/event-manager.git",
  397. "reference": "629572819973f13486371cb611386eb17851e85c"
  398. },
  399. "dist": {
  400. "type": "zip",
  401. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/629572819973f13486371cb611386eb17851e85c",
  402. "reference": "629572819973f13486371cb611386eb17851e85c",
  403. "shasum": "",
  404. "mirrors": [
  405. {
  406. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  407. "preferred": true
  408. }
  409. ]
  410. },
  411. "require": {
  412. "php": "^7.1"
  413. },
  414. "conflict": {
  415. "doctrine/common": "<2.9@dev"
  416. },
  417. "require-dev": {
  418. "doctrine/coding-standard": "^6.0",
  419. "phpunit/phpunit": "^7.0"
  420. },
  421. "type": "library",
  422. "extra": {
  423. "branch-alias": {
  424. "dev-master": "1.0.x-dev"
  425. }
  426. },
  427. "autoload": {
  428. "psr-4": {
  429. "Doctrine\\Common\\": "lib/Doctrine/Common"
  430. }
  431. },
  432. "notification-url": "https://packagist.org/downloads/",
  433. "license": [
  434. "MIT"
  435. ],
  436. "authors": [
  437. {
  438. "name": "Guilherme Blanco",
  439. "email": "guilhermeblanco@gmail.com"
  440. },
  441. {
  442. "name": "Roman Borschel",
  443. "email": "roman@code-factory.org"
  444. },
  445. {
  446. "name": "Benjamin Eberlei",
  447. "email": "kontakt@beberlei.de"
  448. },
  449. {
  450. "name": "Jonathan Wage",
  451. "email": "jonwage@gmail.com"
  452. },
  453. {
  454. "name": "Johannes Schmitt",
  455. "email": "schmittjoh@gmail.com"
  456. },
  457. {
  458. "name": "Marco Pivetta",
  459. "email": "ocramius@gmail.com"
  460. }
  461. ],
  462. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  463. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  464. "keywords": [
  465. "event",
  466. "event dispatcher",
  467. "event manager",
  468. "event system",
  469. "events"
  470. ],
  471. "time": "2019-11-10T09:48:07+00:00"
  472. },
  473. {
  474. "name": "doctrine/inflector",
  475. "version": "2.0.2",
  476. "source": {
  477. "type": "git",
  478. "url": "https://github.com/doctrine/inflector.git",
  479. "reference": "3fc171224a316569faad2df6b18a1fd8cce5a56d"
  480. },
  481. "dist": {
  482. "type": "zip",
  483. "url": "https://api.github.com/repos/doctrine/inflector/zipball/3fc171224a316569faad2df6b18a1fd8cce5a56d",
  484. "reference": "3fc171224a316569faad2df6b18a1fd8cce5a56d",
  485. "shasum": "",
  486. "mirrors": [
  487. {
  488. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  489. "preferred": true
  490. }
  491. ]
  492. },
  493. "require": {
  494. "php": "^7.2 || ^8.0"
  495. },
  496. "require-dev": {
  497. "doctrine/coding-standard": "^7.0",
  498. "phpstan/phpstan": "^0.11",
  499. "phpstan/phpstan-phpunit": "^0.11",
  500. "phpstan/phpstan-strict-rules": "^0.11",
  501. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  502. },
  503. "type": "library",
  504. "extra": {
  505. "branch-alias": {
  506. "dev-master": "2.0.x-dev"
  507. }
  508. },
  509. "autoload": {
  510. "psr-4": {
  511. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  512. }
  513. },
  514. "notification-url": "https://packagist.org/downloads/",
  515. "license": [
  516. "MIT"
  517. ],
  518. "authors": [
  519. {
  520. "name": "Guilherme Blanco",
  521. "email": "guilhermeblanco@gmail.com"
  522. },
  523. {
  524. "name": "Roman Borschel",
  525. "email": "roman@code-factory.org"
  526. },
  527. {
  528. "name": "Benjamin Eberlei",
  529. "email": "kontakt@beberlei.de"
  530. },
  531. {
  532. "name": "Jonathan Wage",
  533. "email": "jonwage@gmail.com"
  534. },
  535. {
  536. "name": "Johannes Schmitt",
  537. "email": "schmittjoh@gmail.com"
  538. }
  539. ],
  540. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  541. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  542. "keywords": [
  543. "inflection",
  544. "inflector",
  545. "lowercase",
  546. "manipulation",
  547. "php",
  548. "plural",
  549. "singular",
  550. "strings",
  551. "uppercase",
  552. "words"
  553. ],
  554. "funding": [
  555. {
  556. "url": "https://www.doctrine-project.org/sponsorship.html",
  557. "type": "custom"
  558. },
  559. {
  560. "url": "https://www.patreon.com/phpdoctrine",
  561. "type": "patreon"
  562. },
  563. {
  564. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  565. "type": "tidelift"
  566. }
  567. ],
  568. "time": "2020-05-25T20:08:47+00:00"
  569. },
  570. {
  571. "name": "doctrine/lexer",
  572. "version": "1.2.1",
  573. "source": {
  574. "type": "git",
  575. "url": "https://github.com/doctrine/lexer.git",
  576. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  577. },
  578. "dist": {
  579. "type": "zip",
  580. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  581. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  582. "shasum": "",
  583. "mirrors": [
  584. {
  585. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  586. "preferred": true
  587. }
  588. ]
  589. },
  590. "require": {
  591. "php": "^7.2 || ^8.0"
  592. },
  593. "require-dev": {
  594. "doctrine/coding-standard": "^6.0",
  595. "phpstan/phpstan": "^0.11.8",
  596. "phpunit/phpunit": "^8.2"
  597. },
  598. "type": "library",
  599. "extra": {
  600. "branch-alias": {
  601. "dev-master": "1.2.x-dev"
  602. }
  603. },
  604. "autoload": {
  605. "psr-4": {
  606. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  607. }
  608. },
  609. "notification-url": "https://packagist.org/downloads/",
  610. "license": [
  611. "MIT"
  612. ],
  613. "authors": [
  614. {
  615. "name": "Guilherme Blanco",
  616. "email": "guilhermeblanco@gmail.com"
  617. },
  618. {
  619. "name": "Roman Borschel",
  620. "email": "roman@code-factory.org"
  621. },
  622. {
  623. "name": "Johannes Schmitt",
  624. "email": "schmittjoh@gmail.com"
  625. }
  626. ],
  627. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  628. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  629. "keywords": [
  630. "annotations",
  631. "docblock",
  632. "lexer",
  633. "parser",
  634. "php"
  635. ],
  636. "funding": [
  637. {
  638. "url": "https://www.doctrine-project.org/sponsorship.html",
  639. "type": "custom"
  640. },
  641. {
  642. "url": "https://www.patreon.com/phpdoctrine",
  643. "type": "patreon"
  644. },
  645. {
  646. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  647. "type": "tidelift"
  648. }
  649. ],
  650. "time": "2020-05-25T17:44:05+00:00"
  651. },
  652. {
  653. "name": "dragonmantank/cron-expression",
  654. "version": "v2.3.0",
  655. "source": {
  656. "type": "git",
  657. "url": "https://github.com/dragonmantank/cron-expression.git",
  658. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
  659. },
  660. "dist": {
  661. "type": "zip",
  662. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  663. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  664. "shasum": "",
  665. "mirrors": [
  666. {
  667. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  668. "preferred": true
  669. }
  670. ]
  671. },
  672. "require": {
  673. "php": "^7.0"
  674. },
  675. "require-dev": {
  676. "phpunit/phpunit": "^6.4|^7.0"
  677. },
  678. "type": "library",
  679. "extra": {
  680. "branch-alias": {
  681. "dev-master": "2.3-dev"
  682. }
  683. },
  684. "autoload": {
  685. "psr-4": {
  686. "Cron\\": "src/Cron/"
  687. }
  688. },
  689. "notification-url": "https://packagist.org/downloads/",
  690. "license": [
  691. "MIT"
  692. ],
  693. "authors": [
  694. {
  695. "name": "Michael Dowling",
  696. "email": "mtdowling@gmail.com",
  697. "homepage": "https://github.com/mtdowling"
  698. },
  699. {
  700. "name": "Chris Tankersley",
  701. "email": "chris@ctankersley.com",
  702. "homepage": "https://github.com/dragonmantank"
  703. }
  704. ],
  705. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  706. "keywords": [
  707. "cron",
  708. "schedule"
  709. ],
  710. "time": "2019-03-31T00:38:28+00:00"
  711. },
  712. {
  713. "name": "egulias/email-validator",
  714. "version": "2.1.17",
  715. "source": {
  716. "type": "git",
  717. "url": "https://github.com/egulias/EmailValidator.git",
  718. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  719. },
  720. "dist": {
  721. "type": "zip",
  722. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  723. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  724. "shasum": "",
  725. "mirrors": [
  726. {
  727. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  728. "preferred": true
  729. }
  730. ]
  731. },
  732. "require": {
  733. "doctrine/lexer": "^1.0.1",
  734. "php": ">=5.5",
  735. "symfony/polyfill-intl-idn": "^1.10"
  736. },
  737. "require-dev": {
  738. "dominicsayers/isemail": "^3.0.7",
  739. "phpunit/phpunit": "^4.8.36|^7.5.15",
  740. "satooshi/php-coveralls": "^1.0.1"
  741. },
  742. "suggest": {
  743. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  744. },
  745. "type": "library",
  746. "extra": {
  747. "branch-alias": {
  748. "dev-master": "2.1.x-dev"
  749. }
  750. },
  751. "autoload": {
  752. "psr-4": {
  753. "Egulias\\EmailValidator\\": "EmailValidator"
  754. }
  755. },
  756. "notification-url": "https://packagist.org/downloads/",
  757. "license": [
  758. "MIT"
  759. ],
  760. "authors": [
  761. {
  762. "name": "Eduardo Gulias Davis"
  763. }
  764. ],
  765. "description": "A library for validating emails against several RFCs",
  766. "homepage": "https://github.com/egulias/EmailValidator",
  767. "keywords": [
  768. "email",
  769. "emailvalidation",
  770. "emailvalidator",
  771. "validation",
  772. "validator"
  773. ],
  774. "time": "2020-02-13T22:36:52+00:00"
  775. },
  776. {
  777. "name": "endroid/qr-code",
  778. "version": "3.8.0",
  779. "source": {
  780. "type": "git",
  781. "url": "https://github.com/endroid/qr-code.git",
  782. "reference": "a44bae807b5f3722695920e4e494a466cbd79bec"
  783. },
  784. "dist": {
  785. "type": "zip",
  786. "url": "https://api.github.com/repos/endroid/qr-code/zipball/a44bae807b5f3722695920e4e494a466cbd79bec",
  787. "reference": "a44bae807b5f3722695920e4e494a466cbd79bec",
  788. "shasum": "",
  789. "mirrors": [
  790. {
  791. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  792. "preferred": true
  793. }
  794. ]
  795. },
  796. "require": {
  797. "bacon/bacon-qr-code": "^2.0",
  798. "ext-gd": "*",
  799. "khanamiryan/qrcode-detector-decoder": "^1.0.2",
  800. "myclabs/php-enum": "^1.5",
  801. "php": ">=7.2",
  802. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  803. "symfony/property-access": "^3.4||^4.4||^5.0"
  804. },
  805. "require-dev": {
  806. "endroid/quality": "dev-master"
  807. },
  808. "suggest": {
  809. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  810. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  811. },
  812. "type": "library",
  813. "extra": {
  814. "branch-alias": {
  815. "dev-master": "3.x-dev"
  816. }
  817. },
  818. "autoload": {
  819. "psr-4": {
  820. "Endroid\\QrCode\\": "src/"
  821. }
  822. },
  823. "notification-url": "https://packagist.org/downloads/",
  824. "license": [
  825. "MIT"
  826. ],
  827. "authors": [
  828. {
  829. "name": "Jeroen van den Enden",
  830. "email": "info@endroid.nl"
  831. }
  832. ],
  833. "description": "Endroid QR Code",
  834. "homepage": "https://github.com/endroid/qr-code",
  835. "keywords": [
  836. "bundle",
  837. "code",
  838. "endroid",
  839. "php",
  840. "qr",
  841. "qrcode"
  842. ],
  843. "funding": [
  844. {
  845. "url": "https://github.com/endroid",
  846. "type": "github"
  847. }
  848. ],
  849. "time": "2020-05-25T20:02:47+00:00"
  850. },
  851. {
  852. "name": "facade/flare-client-php",
  853. "version": "1.3.2",
  854. "source": {
  855. "type": "git",
  856. "url": "https://github.com/facade/flare-client-php.git",
  857. "reference": "db1e03426e7f9472c9ecd1092aff00f56aa6c004"
  858. },
  859. "dist": {
  860. "type": "zip",
  861. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/db1e03426e7f9472c9ecd1092aff00f56aa6c004",
  862. "reference": "db1e03426e7f9472c9ecd1092aff00f56aa6c004",
  863. "shasum": "",
  864. "mirrors": [
  865. {
  866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  867. "preferred": true
  868. }
  869. ]
  870. },
  871. "require": {
  872. "facade/ignition-contracts": "~1.0",
  873. "illuminate/pipeline": "^5.5|^6.0|^7.0",
  874. "php": "^7.1",
  875. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  876. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  877. },
  878. "require-dev": {
  879. "larapack/dd": "^1.1",
  880. "phpunit/phpunit": "^7.5.16",
  881. "spatie/phpunit-snapshot-assertions": "^2.0"
  882. },
  883. "type": "library",
  884. "extra": {
  885. "branch-alias": {
  886. "dev-master": "1.0-dev"
  887. }
  888. },
  889. "autoload": {
  890. "psr-4": {
  891. "Facade\\FlareClient\\": "src"
  892. },
  893. "files": [
  894. "src/helpers.php"
  895. ]
  896. },
  897. "notification-url": "https://packagist.org/downloads/",
  898. "license": [
  899. "MIT"
  900. ],
  901. "description": "Send PHP errors to Flare",
  902. "homepage": "https://github.com/facade/flare-client-php",
  903. "keywords": [
  904. "exception",
  905. "facade",
  906. "flare",
  907. "reporting"
  908. ],
  909. "time": "2020-03-02T15:52:04+00:00"
  910. },
  911. {
  912. "name": "facade/ignition",
  913. "version": "2.0.4",
  914. "source": {
  915. "type": "git",
  916. "url": "https://github.com/facade/ignition.git",
  917. "reference": "749fba7bf560fe2600ea55bf8734a7c9b8c30cfd"
  918. },
  919. "dist": {
  920. "type": "zip",
  921. "url": "https://api.github.com/repos/facade/ignition/zipball/749fba7bf560fe2600ea55bf8734a7c9b8c30cfd",
  922. "reference": "749fba7bf560fe2600ea55bf8734a7c9b8c30cfd",
  923. "shasum": "",
  924. "mirrors": [
  925. {
  926. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  927. "preferred": true
  928. }
  929. ]
  930. },
  931. "require": {
  932. "ext-json": "*",
  933. "ext-mbstring": "*",
  934. "facade/flare-client-php": "^1.0",
  935. "facade/ignition-contracts": "^1.0",
  936. "filp/whoops": "^2.4",
  937. "illuminate/support": "^7.0|^8.0",
  938. "monolog/monolog": "^2.0",
  939. "php": "^7.2.5",
  940. "scrivo/highlight.php": "^9.15",
  941. "symfony/console": "^5.0",
  942. "symfony/var-dumper": "^5.0"
  943. },
  944. "require-dev": {
  945. "friendsofphp/php-cs-fixer": "^2.14",
  946. "mockery/mockery": "^1.3",
  947. "orchestra/testbench": "5.0"
  948. },
  949. "suggest": {
  950. "laravel/telescope": "^3.1"
  951. },
  952. "type": "library",
  953. "extra": {
  954. "branch-alias": {
  955. "dev-master": "2.x-dev"
  956. },
  957. "laravel": {
  958. "providers": [
  959. "Facade\\Ignition\\IgnitionServiceProvider"
  960. ],
  961. "aliases": {
  962. "Flare": "Facade\\Ignition\\Facades\\Flare"
  963. }
  964. }
  965. },
  966. "autoload": {
  967. "psr-4": {
  968. "Facade\\Ignition\\": "src"
  969. },
  970. "files": [
  971. "src/helpers.php"
  972. ]
  973. },
  974. "notification-url": "https://packagist.org/downloads/",
  975. "license": [
  976. "MIT"
  977. ],
  978. "description": "A beautiful error page for Laravel applications.",
  979. "homepage": "https://github.com/facade/ignition",
  980. "keywords": [
  981. "error",
  982. "flare",
  983. "laravel",
  984. "page"
  985. ],
  986. "time": "2020-05-18T15:20:13+00:00"
  987. },
  988. {
  989. "name": "facade/ignition-contracts",
  990. "version": "1.0.0",
  991. "source": {
  992. "type": "git",
  993. "url": "https://github.com/facade/ignition-contracts.git",
  994. "reference": "f445db0fb86f48e205787b2592840dd9c80ded28"
  995. },
  996. "dist": {
  997. "type": "zip",
  998. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/f445db0fb86f48e205787b2592840dd9c80ded28",
  999. "reference": "f445db0fb86f48e205787b2592840dd9c80ded28",
  1000. "shasum": "",
  1001. "mirrors": [
  1002. {
  1003. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1004. "preferred": true
  1005. }
  1006. ]
  1007. },
  1008. "require": {
  1009. "php": "^7.1"
  1010. },
  1011. "type": "library",
  1012. "autoload": {
  1013. "psr-4": {
  1014. "Facade\\IgnitionContracts\\": "src"
  1015. }
  1016. },
  1017. "notification-url": "https://packagist.org/downloads/",
  1018. "license": [
  1019. "MIT"
  1020. ],
  1021. "authors": [
  1022. {
  1023. "name": "Freek Van der Herten",
  1024. "email": "freek@spatie.be",
  1025. "homepage": "https://flareapp.io",
  1026. "role": "Developer"
  1027. }
  1028. ],
  1029. "description": "Solution contracts for Ignition",
  1030. "homepage": "https://github.com/facade/ignition-contracts",
  1031. "keywords": [
  1032. "contracts",
  1033. "flare",
  1034. "ignition"
  1035. ],
  1036. "time": "2019-08-30T14:06:08+00:00"
  1037. },
  1038. {
  1039. "name": "fideloper/proxy",
  1040. "version": "4.3.0",
  1041. "source": {
  1042. "type": "git",
  1043. "url": "https://github.com/fideloper/TrustedProxy.git",
  1044. "reference": "ec38ad69ee378a1eec04fb0e417a97cfaf7ed11a"
  1045. },
  1046. "dist": {
  1047. "type": "zip",
  1048. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/ec38ad69ee378a1eec04fb0e417a97cfaf7ed11a",
  1049. "reference": "ec38ad69ee378a1eec04fb0e417a97cfaf7ed11a",
  1050. "shasum": "",
  1051. "mirrors": [
  1052. {
  1053. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1054. "preferred": true
  1055. }
  1056. ]
  1057. },
  1058. "require": {
  1059. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0",
  1060. "php": ">=5.4.0"
  1061. },
  1062. "require-dev": {
  1063. "illuminate/http": "^5.0|^6.0|^7.0|^8.0",
  1064. "mockery/mockery": "^1.0",
  1065. "phpunit/phpunit": "^6.0"
  1066. },
  1067. "type": "library",
  1068. "extra": {
  1069. "laravel": {
  1070. "providers": [
  1071. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1072. ]
  1073. }
  1074. },
  1075. "autoload": {
  1076. "psr-4": {
  1077. "Fideloper\\Proxy\\": "src/"
  1078. }
  1079. },
  1080. "notification-url": "https://packagist.org/downloads/",
  1081. "license": [
  1082. "MIT"
  1083. ],
  1084. "authors": [
  1085. {
  1086. "name": "Chris Fidao",
  1087. "email": "fideloper@gmail.com"
  1088. }
  1089. ],
  1090. "description": "Set trusted proxies for Laravel",
  1091. "keywords": [
  1092. "load balancing",
  1093. "proxy",
  1094. "trusted proxy"
  1095. ],
  1096. "time": "2020-02-22T01:51:47+00:00"
  1097. },
  1098. {
  1099. "name": "filp/whoops",
  1100. "version": "2.7.2",
  1101. "source": {
  1102. "type": "git",
  1103. "url": "https://github.com/filp/whoops.git",
  1104. "reference": "17d0d3f266c8f925ebd035cd36f83cf802b47d4a"
  1105. },
  1106. "dist": {
  1107. "type": "zip",
  1108. "url": "https://api.github.com/repos/filp/whoops/zipball/17d0d3f266c8f925ebd035cd36f83cf802b47d4a",
  1109. "reference": "17d0d3f266c8f925ebd035cd36f83cf802b47d4a",
  1110. "shasum": "",
  1111. "mirrors": [
  1112. {
  1113. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1114. "preferred": true
  1115. }
  1116. ]
  1117. },
  1118. "require": {
  1119. "php": "^5.5.9 || ^7.0",
  1120. "psr/log": "^1.0.1"
  1121. },
  1122. "require-dev": {
  1123. "mockery/mockery": "^0.9 || ^1.0",
  1124. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0",
  1125. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  1126. },
  1127. "suggest": {
  1128. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  1129. "whoops/soap": "Formats errors as SOAP responses"
  1130. },
  1131. "type": "library",
  1132. "extra": {
  1133. "branch-alias": {
  1134. "dev-master": "2.6-dev"
  1135. }
  1136. },
  1137. "autoload": {
  1138. "psr-4": {
  1139. "Whoops\\": "src/Whoops/"
  1140. }
  1141. },
  1142. "notification-url": "https://packagist.org/downloads/",
  1143. "license": [
  1144. "MIT"
  1145. ],
  1146. "authors": [
  1147. {
  1148. "name": "Filipe Dobreira",
  1149. "homepage": "https://github.com/filp",
  1150. "role": "Developer"
  1151. }
  1152. ],
  1153. "description": "php error handling for cool kids",
  1154. "homepage": "https://filp.github.io/whoops/",
  1155. "keywords": [
  1156. "error",
  1157. "exception",
  1158. "handling",
  1159. "library",
  1160. "throwable",
  1161. "whoops"
  1162. ],
  1163. "time": "2020-05-05T12:28:07+00:00"
  1164. },
  1165. {
  1166. "name": "guzzlehttp/guzzle",
  1167. "version": "6.5.4",
  1168. "source": {
  1169. "type": "git",
  1170. "url": "https://github.com/guzzle/guzzle.git",
  1171. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  1172. },
  1173. "dist": {
  1174. "type": "zip",
  1175. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  1176. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  1177. "shasum": "",
  1178. "mirrors": [
  1179. {
  1180. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1181. "preferred": true
  1182. }
  1183. ]
  1184. },
  1185. "require": {
  1186. "ext-json": "*",
  1187. "guzzlehttp/promises": "^1.0",
  1188. "guzzlehttp/psr7": "^1.6.1",
  1189. "php": ">=5.5",
  1190. "symfony/polyfill-intl-idn": "1.17.0"
  1191. },
  1192. "require-dev": {
  1193. "ext-curl": "*",
  1194. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1195. "psr/log": "^1.1"
  1196. },
  1197. "suggest": {
  1198. "psr/log": "Required for using the Log middleware"
  1199. },
  1200. "type": "library",
  1201. "extra": {
  1202. "branch-alias": {
  1203. "dev-master": "6.5-dev"
  1204. }
  1205. },
  1206. "autoload": {
  1207. "psr-4": {
  1208. "GuzzleHttp\\": "src/"
  1209. },
  1210. "files": [
  1211. "src/functions_include.php"
  1212. ]
  1213. },
  1214. "notification-url": "https://packagist.org/downloads/",
  1215. "license": [
  1216. "MIT"
  1217. ],
  1218. "authors": [
  1219. {
  1220. "name": "Michael Dowling",
  1221. "email": "mtdowling@gmail.com",
  1222. "homepage": "https://github.com/mtdowling"
  1223. }
  1224. ],
  1225. "description": "Guzzle is a PHP HTTP client library",
  1226. "homepage": "http://guzzlephp.org/",
  1227. "keywords": [
  1228. "client",
  1229. "curl",
  1230. "framework",
  1231. "http",
  1232. "http client",
  1233. "rest",
  1234. "web service"
  1235. ],
  1236. "time": "2020-05-25T19:35:05+00:00"
  1237. },
  1238. {
  1239. "name": "guzzlehttp/promises",
  1240. "version": "v1.3.1",
  1241. "source": {
  1242. "type": "git",
  1243. "url": "https://github.com/guzzle/promises.git",
  1244. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1245. },
  1246. "dist": {
  1247. "type": "zip",
  1248. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1249. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1250. "shasum": "",
  1251. "mirrors": [
  1252. {
  1253. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1254. "preferred": true
  1255. }
  1256. ]
  1257. },
  1258. "require": {
  1259. "php": ">=5.5.0"
  1260. },
  1261. "require-dev": {
  1262. "phpunit/phpunit": "^4.0"
  1263. },
  1264. "type": "library",
  1265. "extra": {
  1266. "branch-alias": {
  1267. "dev-master": "1.4-dev"
  1268. }
  1269. },
  1270. "autoload": {
  1271. "psr-4": {
  1272. "GuzzleHttp\\Promise\\": "src/"
  1273. },
  1274. "files": [
  1275. "src/functions_include.php"
  1276. ]
  1277. },
  1278. "notification-url": "https://packagist.org/downloads/",
  1279. "license": [
  1280. "MIT"
  1281. ],
  1282. "authors": [
  1283. {
  1284. "name": "Michael Dowling",
  1285. "email": "mtdowling@gmail.com",
  1286. "homepage": "https://github.com/mtdowling"
  1287. }
  1288. ],
  1289. "description": "Guzzle promises library",
  1290. "keywords": [
  1291. "promise"
  1292. ],
  1293. "time": "2016-12-20T10:07:11+00:00"
  1294. },
  1295. {
  1296. "name": "guzzlehttp/psr7",
  1297. "version": "1.6.1",
  1298. "source": {
  1299. "type": "git",
  1300. "url": "https://github.com/guzzle/psr7.git",
  1301. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  1302. },
  1303. "dist": {
  1304. "type": "zip",
  1305. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  1306. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  1307. "shasum": "",
  1308. "mirrors": [
  1309. {
  1310. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1311. "preferred": true
  1312. }
  1313. ]
  1314. },
  1315. "require": {
  1316. "php": ">=5.4.0",
  1317. "psr/http-message": "~1.0",
  1318. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1319. },
  1320. "provide": {
  1321. "psr/http-message-implementation": "1.0"
  1322. },
  1323. "require-dev": {
  1324. "ext-zlib": "*",
  1325. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  1326. },
  1327. "suggest": {
  1328. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  1329. },
  1330. "type": "library",
  1331. "extra": {
  1332. "branch-alias": {
  1333. "dev-master": "1.6-dev"
  1334. }
  1335. },
  1336. "autoload": {
  1337. "psr-4": {
  1338. "GuzzleHttp\\Psr7\\": "src/"
  1339. },
  1340. "files": [
  1341. "src/functions_include.php"
  1342. ]
  1343. },
  1344. "notification-url": "https://packagist.org/downloads/",
  1345. "license": [
  1346. "MIT"
  1347. ],
  1348. "authors": [
  1349. {
  1350. "name": "Michael Dowling",
  1351. "email": "mtdowling@gmail.com",
  1352. "homepage": "https://github.com/mtdowling"
  1353. },
  1354. {
  1355. "name": "Tobias Schultze",
  1356. "homepage": "https://github.com/Tobion"
  1357. }
  1358. ],
  1359. "description": "PSR-7 message implementation that also provides common utility methods",
  1360. "keywords": [
  1361. "http",
  1362. "message",
  1363. "psr-7",
  1364. "request",
  1365. "response",
  1366. "stream",
  1367. "uri",
  1368. "url"
  1369. ],
  1370. "time": "2019-07-01T23:21:34+00:00"
  1371. },
  1372. {
  1373. "name": "khanamiryan/qrcode-detector-decoder",
  1374. "version": "1.0.3",
  1375. "source": {
  1376. "type": "git",
  1377. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1378. "reference": "89b57f2d9939dd57394b83f6ccbd3e1a74659e34"
  1379. },
  1380. "dist": {
  1381. "type": "zip",
  1382. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/89b57f2d9939dd57394b83f6ccbd3e1a74659e34",
  1383. "reference": "89b57f2d9939dd57394b83f6ccbd3e1a74659e34",
  1384. "shasum": "",
  1385. "mirrors": [
  1386. {
  1387. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1388. "preferred": true
  1389. }
  1390. ]
  1391. },
  1392. "require": {
  1393. "php": "^5.6|^7.0"
  1394. },
  1395. "require-dev": {
  1396. "phpunit/phpunit": "^5.7"
  1397. },
  1398. "type": "library",
  1399. "autoload": {
  1400. "psr-4": {
  1401. "Zxing\\": "lib/"
  1402. },
  1403. "files": [
  1404. "lib/Common/customFunctions.php"
  1405. ]
  1406. },
  1407. "notification-url": "https://packagist.org/downloads/",
  1408. "license": [
  1409. "MIT"
  1410. ],
  1411. "authors": [
  1412. {
  1413. "name": "Ashot Khanamiryan",
  1414. "email": "a.khanamiryan@gmail.com",
  1415. "homepage": "https://github.com/khanamiryan",
  1416. "role": "Developer"
  1417. }
  1418. ],
  1419. "description": "QR code decoder / reader",
  1420. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1421. "keywords": [
  1422. "barcode",
  1423. "qr",
  1424. "zxing"
  1425. ],
  1426. "time": "2020-04-19T16:18:51+00:00"
  1427. },
  1428. {
  1429. "name": "kitetail/zttp",
  1430. "version": "v0.6.0",
  1431. "source": {
  1432. "type": "git",
  1433. "url": "https://github.com/kitetail/zttp.git",
  1434. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1435. },
  1436. "dist": {
  1437. "type": "zip",
  1438. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1439. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1440. "shasum": "",
  1441. "mirrors": [
  1442. {
  1443. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1444. "preferred": true
  1445. }
  1446. ]
  1447. },
  1448. "require": {
  1449. "guzzlehttp/guzzle": "^6.0",
  1450. "php": ">=7.0",
  1451. "tightenco/collect": "^5.4"
  1452. },
  1453. "require-dev": {
  1454. "laravel/lumen-framework": "5.5.*",
  1455. "phpunit/phpunit": "^6.0"
  1456. },
  1457. "type": "library",
  1458. "autoload": {
  1459. "files": [
  1460. "src/Zttp.php"
  1461. ]
  1462. },
  1463. "notification-url": "https://packagist.org/downloads/",
  1464. "license": [
  1465. "MIT"
  1466. ],
  1467. "authors": [
  1468. {
  1469. "name": "Adam Wathan",
  1470. "email": "adam.wathan@gmail.com"
  1471. }
  1472. ],
  1473. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1474. "keywords": [
  1475. "Guzzle",
  1476. "http"
  1477. ],
  1478. "time": "2019-06-10T12:18:52+00:00"
  1479. },
  1480. {
  1481. "name": "laravel/framework",
  1482. "version": "v7.13.0",
  1483. "source": {
  1484. "type": "git",
  1485. "url": "https://github.com/laravel/framework.git",
  1486. "reference": "6fa69bfbd57744a5bbec5538ce483919b3fd625f"
  1487. },
  1488. "dist": {
  1489. "type": "zip",
  1490. "url": "https://api.github.com/repos/laravel/framework/zipball/6fa69bfbd57744a5bbec5538ce483919b3fd625f",
  1491. "reference": "6fa69bfbd57744a5bbec5538ce483919b3fd625f",
  1492. "shasum": "",
  1493. "mirrors": [
  1494. {
  1495. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1496. "preferred": true
  1497. }
  1498. ]
  1499. },
  1500. "require": {
  1501. "doctrine/inflector": "^1.4|^2.0",
  1502. "dragonmantank/cron-expression": "^2.0",
  1503. "egulias/email-validator": "^2.1.10",
  1504. "ext-json": "*",
  1505. "ext-mbstring": "*",
  1506. "ext-openssl": "*",
  1507. "league/commonmark": "^1.3",
  1508. "league/flysystem": "^1.0.8",
  1509. "monolog/monolog": "^2.0",
  1510. "nesbot/carbon": "^2.17",
  1511. "opis/closure": "^3.1",
  1512. "php": "^7.2.5",
  1513. "psr/container": "^1.0",
  1514. "psr/simple-cache": "^1.0",
  1515. "ramsey/uuid": "^3.7|^4.0",
  1516. "swiftmailer/swiftmailer": "^6.0",
  1517. "symfony/console": "^5.0",
  1518. "symfony/error-handler": "^5.0",
  1519. "symfony/finder": "^5.0",
  1520. "symfony/http-foundation": "^5.0",
  1521. "symfony/http-kernel": "^5.0",
  1522. "symfony/mime": "^5.0",
  1523. "symfony/polyfill-php73": "^1.17",
  1524. "symfony/process": "^5.0",
  1525. "symfony/routing": "^5.0",
  1526. "symfony/var-dumper": "^5.0",
  1527. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1528. "vlucas/phpdotenv": "^4.0",
  1529. "voku/portable-ascii": "^1.4.8"
  1530. },
  1531. "conflict": {
  1532. "tightenco/collect": "<5.5.33"
  1533. },
  1534. "replace": {
  1535. "illuminate/auth": "self.version",
  1536. "illuminate/broadcasting": "self.version",
  1537. "illuminate/bus": "self.version",
  1538. "illuminate/cache": "self.version",
  1539. "illuminate/config": "self.version",
  1540. "illuminate/console": "self.version",
  1541. "illuminate/container": "self.version",
  1542. "illuminate/contracts": "self.version",
  1543. "illuminate/cookie": "self.version",
  1544. "illuminate/database": "self.version",
  1545. "illuminate/encryption": "self.version",
  1546. "illuminate/events": "self.version",
  1547. "illuminate/filesystem": "self.version",
  1548. "illuminate/hashing": "self.version",
  1549. "illuminate/http": "self.version",
  1550. "illuminate/log": "self.version",
  1551. "illuminate/mail": "self.version",
  1552. "illuminate/notifications": "self.version",
  1553. "illuminate/pagination": "self.version",
  1554. "illuminate/pipeline": "self.version",
  1555. "illuminate/queue": "self.version",
  1556. "illuminate/redis": "self.version",
  1557. "illuminate/routing": "self.version",
  1558. "illuminate/session": "self.version",
  1559. "illuminate/support": "self.version",
  1560. "illuminate/testing": "self.version",
  1561. "illuminate/translation": "self.version",
  1562. "illuminate/validation": "self.version",
  1563. "illuminate/view": "self.version"
  1564. },
  1565. "require-dev": {
  1566. "aws/aws-sdk-php": "^3.0",
  1567. "doctrine/dbal": "^2.6",
  1568. "filp/whoops": "^2.4",
  1569. "guzzlehttp/guzzle": "^6.3.1|^7.0",
  1570. "league/flysystem-cached-adapter": "^1.0",
  1571. "mockery/mockery": "^1.3.1",
  1572. "moontoast/math": "^1.1",
  1573. "orchestra/testbench-core": "^5.0",
  1574. "pda/pheanstalk": "^4.0",
  1575. "phpunit/phpunit": "^8.4|^9.0",
  1576. "predis/predis": "^1.1.1",
  1577. "symfony/cache": "^5.0"
  1578. },
  1579. "suggest": {
  1580. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.0).",
  1581. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1582. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1583. "ext-memcached": "Required to use the memcache cache driver.",
  1584. "ext-pcntl": "Required to use all features of the queue worker.",
  1585. "ext-posix": "Required to use all features of the queue worker.",
  1586. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1587. "filp/whoops": "Required for friendly error pages in development (^2.4).",
  1588. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1589. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0).",
  1590. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1591. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1592. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1593. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1594. "mockery/mockery": "Required to use mocking (^1.3.1).",
  1595. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1596. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1597. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1598. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.0).",
  1599. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1600. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1601. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1602. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1603. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1604. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1605. },
  1606. "type": "library",
  1607. "extra": {
  1608. "branch-alias": {
  1609. "dev-master": "7.x-dev"
  1610. }
  1611. },
  1612. "autoload": {
  1613. "files": [
  1614. "src/Illuminate/Foundation/helpers.php",
  1615. "src/Illuminate/Support/helpers.php"
  1616. ],
  1617. "psr-4": {
  1618. "Illuminate\\": "src/Illuminate/"
  1619. }
  1620. },
  1621. "notification-url": "https://packagist.org/downloads/",
  1622. "license": [
  1623. "MIT"
  1624. ],
  1625. "authors": [
  1626. {
  1627. "name": "Taylor Otwell",
  1628. "email": "taylor@laravel.com"
  1629. }
  1630. ],
  1631. "description": "The Laravel Framework.",
  1632. "homepage": "https://laravel.com",
  1633. "keywords": [
  1634. "framework",
  1635. "laravel"
  1636. ],
  1637. "time": "2020-05-26T14:32:43+00:00"
  1638. },
  1639. {
  1640. "name": "laravel/tinker",
  1641. "version": "v2.4.0",
  1642. "source": {
  1643. "type": "git",
  1644. "url": "https://github.com/laravel/tinker.git",
  1645. "reference": "cde90a7335a2130a4488beb68f4b2141869241db"
  1646. },
  1647. "dist": {
  1648. "type": "zip",
  1649. "url": "https://api.github.com/repos/laravel/tinker/zipball/cde90a7335a2130a4488beb68f4b2141869241db",
  1650. "reference": "cde90a7335a2130a4488beb68f4b2141869241db",
  1651. "shasum": "",
  1652. "mirrors": [
  1653. {
  1654. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1655. "preferred": true
  1656. }
  1657. ]
  1658. },
  1659. "require": {
  1660. "illuminate/console": "^6.0|^7.0|^8.0",
  1661. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1662. "illuminate/support": "^6.0|^7.0|^8.0",
  1663. "php": "^7.2",
  1664. "psy/psysh": "^0.10.3",
  1665. "symfony/var-dumper": "^4.3|^5.0"
  1666. },
  1667. "require-dev": {
  1668. "mockery/mockery": "^1.3.1",
  1669. "phpunit/phpunit": "^8.4|^9.0"
  1670. },
  1671. "suggest": {
  1672. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1673. },
  1674. "type": "library",
  1675. "extra": {
  1676. "branch-alias": {
  1677. "dev-master": "2.x-dev"
  1678. },
  1679. "laravel": {
  1680. "providers": [
  1681. "Laravel\\Tinker\\TinkerServiceProvider"
  1682. ]
  1683. }
  1684. },
  1685. "autoload": {
  1686. "psr-4": {
  1687. "Laravel\\Tinker\\": "src/"
  1688. }
  1689. },
  1690. "notification-url": "https://packagist.org/downloads/",
  1691. "license": [
  1692. "MIT"
  1693. ],
  1694. "authors": [
  1695. {
  1696. "name": "Taylor Otwell",
  1697. "email": "taylor@laravel.com"
  1698. }
  1699. ],
  1700. "description": "Powerful REPL for the Laravel framework.",
  1701. "keywords": [
  1702. "REPL",
  1703. "Tinker",
  1704. "laravel",
  1705. "psysh"
  1706. ],
  1707. "time": "2020-04-07T15:01:31+00:00"
  1708. },
  1709. {
  1710. "name": "laravel/ui",
  1711. "version": "v2.0.3",
  1712. "source": {
  1713. "type": "git",
  1714. "url": "https://github.com/laravel/ui.git",
  1715. "reference": "15368c5328efb7ce94f35ca750acde9b496ab1b1"
  1716. },
  1717. "dist": {
  1718. "type": "zip",
  1719. "url": "https://api.github.com/repos/laravel/ui/zipball/15368c5328efb7ce94f35ca750acde9b496ab1b1",
  1720. "reference": "15368c5328efb7ce94f35ca750acde9b496ab1b1",
  1721. "shasum": "",
  1722. "mirrors": [
  1723. {
  1724. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1725. "preferred": true
  1726. }
  1727. ]
  1728. },
  1729. "require": {
  1730. "illuminate/console": "^7.0",
  1731. "illuminate/filesystem": "^7.0",
  1732. "illuminate/support": "^7.0",
  1733. "php": "^7.2.5"
  1734. },
  1735. "require-dev": {
  1736. "mockery/mockery": "^1.0",
  1737. "phpunit/phpunit": "^8.0"
  1738. },
  1739. "type": "library",
  1740. "extra": {
  1741. "laravel": {
  1742. "providers": [
  1743. "Laravel\\Ui\\UiServiceProvider"
  1744. ]
  1745. }
  1746. },
  1747. "autoload": {
  1748. "psr-4": {
  1749. "Laravel\\Ui\\": "src/",
  1750. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  1751. }
  1752. },
  1753. "notification-url": "https://packagist.org/downloads/",
  1754. "license": [
  1755. "MIT"
  1756. ],
  1757. "authors": [
  1758. {
  1759. "name": "Taylor Otwell",
  1760. "email": "taylor@laravel.com"
  1761. }
  1762. ],
  1763. "description": "Laravel UI utilities and presets.",
  1764. "keywords": [
  1765. "laravel",
  1766. "ui"
  1767. ],
  1768. "time": "2020-04-29T15:06:45+00:00"
  1769. },
  1770. {
  1771. "name": "league/commonmark",
  1772. "version": "1.4.3",
  1773. "source": {
  1774. "type": "git",
  1775. "url": "https://github.com/thephpleague/commonmark.git",
  1776. "reference": "412639f7cfbc0b31ad2455b2fe965095f66ae505"
  1777. },
  1778. "dist": {
  1779. "type": "zip",
  1780. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/412639f7cfbc0b31ad2455b2fe965095f66ae505",
  1781. "reference": "412639f7cfbc0b31ad2455b2fe965095f66ae505",
  1782. "shasum": "",
  1783. "mirrors": [
  1784. {
  1785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1786. "preferred": true
  1787. }
  1788. ]
  1789. },
  1790. "require": {
  1791. "ext-mbstring": "*",
  1792. "php": "^7.1"
  1793. },
  1794. "conflict": {
  1795. "scrutinizer/ocular": "1.7.*"
  1796. },
  1797. "require-dev": {
  1798. "cebe/markdown": "~1.0",
  1799. "commonmark/commonmark.js": "0.29.1",
  1800. "erusev/parsedown": "~1.0",
  1801. "ext-json": "*",
  1802. "github/gfm": "0.29.0",
  1803. "michelf/php-markdown": "~1.4",
  1804. "mikehaertl/php-shellcommand": "^1.4",
  1805. "phpstan/phpstan": "^0.12",
  1806. "phpunit/phpunit": "^7.5",
  1807. "scrutinizer/ocular": "^1.5",
  1808. "symfony/finder": "^4.2"
  1809. },
  1810. "bin": [
  1811. "bin/commonmark"
  1812. ],
  1813. "type": "library",
  1814. "extra": {
  1815. "branch-alias": {
  1816. "dev-master": "1.4-dev"
  1817. }
  1818. },
  1819. "autoload": {
  1820. "psr-4": {
  1821. "League\\CommonMark\\": "src"
  1822. }
  1823. },
  1824. "notification-url": "https://packagist.org/downloads/",
  1825. "license": [
  1826. "BSD-3-Clause"
  1827. ],
  1828. "authors": [
  1829. {
  1830. "name": "Colin O'Dell",
  1831. "email": "colinodell@gmail.com",
  1832. "homepage": "https://www.colinodell.com",
  1833. "role": "Lead Developer"
  1834. }
  1835. ],
  1836. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1837. "homepage": "https://commonmark.thephpleague.com",
  1838. "keywords": [
  1839. "commonmark",
  1840. "flavored",
  1841. "gfm",
  1842. "github",
  1843. "github-flavored",
  1844. "markdown",
  1845. "md",
  1846. "parser"
  1847. ],
  1848. "time": "2020-05-04T22:15:21+00:00"
  1849. },
  1850. {
  1851. "name": "league/flysystem",
  1852. "version": "1.0.69",
  1853. "source": {
  1854. "type": "git",
  1855. "url": "https://github.com/thephpleague/flysystem.git",
  1856. "reference": "7106f78428a344bc4f643c233a94e48795f10967"
  1857. },
  1858. "dist": {
  1859. "type": "zip",
  1860. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/7106f78428a344bc4f643c233a94e48795f10967",
  1861. "reference": "7106f78428a344bc4f643c233a94e48795f10967",
  1862. "shasum": "",
  1863. "mirrors": [
  1864. {
  1865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1866. "preferred": true
  1867. }
  1868. ]
  1869. },
  1870. "require": {
  1871. "ext-fileinfo": "*",
  1872. "php": ">=5.5.9"
  1873. },
  1874. "conflict": {
  1875. "league/flysystem-sftp": "<1.0.6"
  1876. },
  1877. "require-dev": {
  1878. "phpspec/phpspec": "^3.4",
  1879. "phpunit/phpunit": "^5.7.26"
  1880. },
  1881. "suggest": {
  1882. "ext-fileinfo": "Required for MimeType",
  1883. "ext-ftp": "Allows you to use FTP server storage",
  1884. "ext-openssl": "Allows you to use FTPS server storage",
  1885. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1886. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1887. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1888. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1889. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1890. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1891. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1892. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1893. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1894. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1895. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1896. },
  1897. "type": "library",
  1898. "extra": {
  1899. "branch-alias": {
  1900. "dev-master": "1.1-dev"
  1901. }
  1902. },
  1903. "autoload": {
  1904. "psr-4": {
  1905. "League\\Flysystem\\": "src/"
  1906. }
  1907. },
  1908. "notification-url": "https://packagist.org/downloads/",
  1909. "license": [
  1910. "MIT"
  1911. ],
  1912. "authors": [
  1913. {
  1914. "name": "Frank de Jonge",
  1915. "email": "info@frenky.net"
  1916. }
  1917. ],
  1918. "description": "Filesystem abstraction: Many filesystems, one API.",
  1919. "keywords": [
  1920. "Cloud Files",
  1921. "WebDAV",
  1922. "abstraction",
  1923. "aws",
  1924. "cloud",
  1925. "copy.com",
  1926. "dropbox",
  1927. "file systems",
  1928. "files",
  1929. "filesystem",
  1930. "filesystems",
  1931. "ftp",
  1932. "rackspace",
  1933. "remote",
  1934. "s3",
  1935. "sftp",
  1936. "storage"
  1937. ],
  1938. "funding": [
  1939. {
  1940. "url": "https://offset.earth/frankdejonge",
  1941. "type": "other"
  1942. }
  1943. ],
  1944. "time": "2020-05-18T15:13:39+00:00"
  1945. },
  1946. {
  1947. "name": "maatwebsite/excel",
  1948. "version": "3.1.19",
  1949. "source": {
  1950. "type": "git",
  1951. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  1952. "reference": "96527a9ebc2e79e9a5fa7eaef7e23c9e9bcc587c"
  1953. },
  1954. "dist": {
  1955. "type": "zip",
  1956. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/96527a9ebc2e79e9a5fa7eaef7e23c9e9bcc587c",
  1957. "reference": "96527a9ebc2e79e9a5fa7eaef7e23c9e9bcc587c",
  1958. "shasum": "",
  1959. "mirrors": [
  1960. {
  1961. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1962. "preferred": true
  1963. }
  1964. ]
  1965. },
  1966. "require": {
  1967. "ext-json": "*",
  1968. "illuminate/support": "5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0",
  1969. "php": "^7.0",
  1970. "phpoffice/phpspreadsheet": "^1.10"
  1971. },
  1972. "require-dev": {
  1973. "mockery/mockery": "^1.1",
  1974. "orchestra/database": "^4.0",
  1975. "orchestra/testbench": "^4.0",
  1976. "phpunit/phpunit": "^8.0",
  1977. "predis/predis": "^1.1"
  1978. },
  1979. "type": "library",
  1980. "extra": {
  1981. "laravel": {
  1982. "providers": [
  1983. "Maatwebsite\\Excel\\ExcelServiceProvider"
  1984. ],
  1985. "aliases": {
  1986. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  1987. }
  1988. }
  1989. },
  1990. "autoload": {
  1991. "psr-4": {
  1992. "Maatwebsite\\Excel\\": "src/"
  1993. }
  1994. },
  1995. "notification-url": "https://packagist.org/downloads/",
  1996. "license": [
  1997. "MIT"
  1998. ],
  1999. "authors": [
  2000. {
  2001. "name": "Patrick Brouwers",
  2002. "email": "patrick@maatwebsite.nl"
  2003. }
  2004. ],
  2005. "description": "Supercharged Excel exports and imports in Laravel",
  2006. "keywords": [
  2007. "PHPExcel",
  2008. "batch",
  2009. "csv",
  2010. "excel",
  2011. "export",
  2012. "import",
  2013. "laravel",
  2014. "php",
  2015. "phpspreadsheet"
  2016. ],
  2017. "time": "2020-02-28T15:47:45+00:00"
  2018. },
  2019. {
  2020. "name": "markbaker/complex",
  2021. "version": "1.4.8",
  2022. "source": {
  2023. "type": "git",
  2024. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2025. "reference": "8eaa40cceec7bf0518187530b2e63871be661b72"
  2026. },
  2027. "dist": {
  2028. "type": "zip",
  2029. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/8eaa40cceec7bf0518187530b2e63871be661b72",
  2030. "reference": "8eaa40cceec7bf0518187530b2e63871be661b72",
  2031. "shasum": "",
  2032. "mirrors": [
  2033. {
  2034. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2035. "preferred": true
  2036. }
  2037. ]
  2038. },
  2039. "require": {
  2040. "php": "^5.6.0|^7.0.0"
  2041. },
  2042. "require-dev": {
  2043. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  2044. "phpcompatibility/php-compatibility": "^9.0",
  2045. "phpdocumentor/phpdocumentor": "2.*",
  2046. "phploc/phploc": "2.*",
  2047. "phpmd/phpmd": "2.*",
  2048. "phpunit/phpunit": "^4.8.35|^5.4.0",
  2049. "sebastian/phpcpd": "2.*",
  2050. "squizlabs/php_codesniffer": "^3.4.0"
  2051. },
  2052. "type": "library",
  2053. "autoload": {
  2054. "psr-4": {
  2055. "Complex\\": "classes/src/"
  2056. },
  2057. "files": [
  2058. "classes/src/functions/abs.php",
  2059. "classes/src/functions/acos.php",
  2060. "classes/src/functions/acosh.php",
  2061. "classes/src/functions/acot.php",
  2062. "classes/src/functions/acoth.php",
  2063. "classes/src/functions/acsc.php",
  2064. "classes/src/functions/acsch.php",
  2065. "classes/src/functions/argument.php",
  2066. "classes/src/functions/asec.php",
  2067. "classes/src/functions/asech.php",
  2068. "classes/src/functions/asin.php",
  2069. "classes/src/functions/asinh.php",
  2070. "classes/src/functions/atan.php",
  2071. "classes/src/functions/atanh.php",
  2072. "classes/src/functions/conjugate.php",
  2073. "classes/src/functions/cos.php",
  2074. "classes/src/functions/cosh.php",
  2075. "classes/src/functions/cot.php",
  2076. "classes/src/functions/coth.php",
  2077. "classes/src/functions/csc.php",
  2078. "classes/src/functions/csch.php",
  2079. "classes/src/functions/exp.php",
  2080. "classes/src/functions/inverse.php",
  2081. "classes/src/functions/ln.php",
  2082. "classes/src/functions/log2.php",
  2083. "classes/src/functions/log10.php",
  2084. "classes/src/functions/negative.php",
  2085. "classes/src/functions/pow.php",
  2086. "classes/src/functions/rho.php",
  2087. "classes/src/functions/sec.php",
  2088. "classes/src/functions/sech.php",
  2089. "classes/src/functions/sin.php",
  2090. "classes/src/functions/sinh.php",
  2091. "classes/src/functions/sqrt.php",
  2092. "classes/src/functions/tan.php",
  2093. "classes/src/functions/tanh.php",
  2094. "classes/src/functions/theta.php",
  2095. "classes/src/operations/add.php",
  2096. "classes/src/operations/subtract.php",
  2097. "classes/src/operations/multiply.php",
  2098. "classes/src/operations/divideby.php",
  2099. "classes/src/operations/divideinto.php"
  2100. ]
  2101. },
  2102. "notification-url": "https://packagist.org/downloads/",
  2103. "license": [
  2104. "MIT"
  2105. ],
  2106. "authors": [
  2107. {
  2108. "name": "Mark Baker",
  2109. "email": "mark@lange.demon.co.uk"
  2110. }
  2111. ],
  2112. "description": "PHP Class for working with complex numbers",
  2113. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2114. "keywords": [
  2115. "complex",
  2116. "mathematics"
  2117. ],
  2118. "time": "2020-03-11T20:15:49+00:00"
  2119. },
  2120. {
  2121. "name": "markbaker/matrix",
  2122. "version": "1.2.0",
  2123. "source": {
  2124. "type": "git",
  2125. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2126. "reference": "5348c5a67e3b75cd209d70103f916a93b1f1ed21"
  2127. },
  2128. "dist": {
  2129. "type": "zip",
  2130. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/5348c5a67e3b75cd209d70103f916a93b1f1ed21",
  2131. "reference": "5348c5a67e3b75cd209d70103f916a93b1f1ed21",
  2132. "shasum": "",
  2133. "mirrors": [
  2134. {
  2135. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2136. "preferred": true
  2137. }
  2138. ]
  2139. },
  2140. "require": {
  2141. "php": "^5.6.0|^7.0.0"
  2142. },
  2143. "require-dev": {
  2144. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2145. "phpcompatibility/php-compatibility": "dev-master",
  2146. "phploc/phploc": "^4",
  2147. "phpmd/phpmd": "dev-master",
  2148. "phpunit/phpunit": "^5.7",
  2149. "sebastian/phpcpd": "^3.0",
  2150. "squizlabs/php_codesniffer": "^3.0@dev"
  2151. },
  2152. "type": "library",
  2153. "autoload": {
  2154. "psr-4": {
  2155. "Matrix\\": "classes/src/"
  2156. },
  2157. "files": [
  2158. "classes/src/functions/adjoint.php",
  2159. "classes/src/functions/antidiagonal.php",
  2160. "classes/src/functions/cofactors.php",
  2161. "classes/src/functions/determinant.php",
  2162. "classes/src/functions/diagonal.php",
  2163. "classes/src/functions/identity.php",
  2164. "classes/src/functions/inverse.php",
  2165. "classes/src/functions/minors.php",
  2166. "classes/src/functions/trace.php",
  2167. "classes/src/functions/transpose.php",
  2168. "classes/src/operations/add.php",
  2169. "classes/src/operations/directsum.php",
  2170. "classes/src/operations/subtract.php",
  2171. "classes/src/operations/multiply.php",
  2172. "classes/src/operations/divideby.php",
  2173. "classes/src/operations/divideinto.php"
  2174. ]
  2175. },
  2176. "notification-url": "https://packagist.org/downloads/",
  2177. "license": [
  2178. "MIT"
  2179. ],
  2180. "authors": [
  2181. {
  2182. "name": "Mark Baker",
  2183. "email": "mark@lange.demon.co.uk"
  2184. }
  2185. ],
  2186. "description": "PHP Class for working with matrices",
  2187. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2188. "keywords": [
  2189. "mathematics",
  2190. "matrix",
  2191. "vector"
  2192. ],
  2193. "time": "2019-10-06T11:29:25+00:00"
  2194. },
  2195. {
  2196. "name": "monolog/monolog",
  2197. "version": "2.1.0",
  2198. "source": {
  2199. "type": "git",
  2200. "url": "https://github.com/Seldaek/monolog.git",
  2201. "reference": "38914429aac460e8e4616c8cb486ecb40ec90bb1"
  2202. },
  2203. "dist": {
  2204. "type": "zip",
  2205. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/38914429aac460e8e4616c8cb486ecb40ec90bb1",
  2206. "reference": "38914429aac460e8e4616c8cb486ecb40ec90bb1",
  2207. "shasum": "",
  2208. "mirrors": [
  2209. {
  2210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2211. "preferred": true
  2212. }
  2213. ]
  2214. },
  2215. "require": {
  2216. "php": ">=7.2",
  2217. "psr/log": "^1.0.1"
  2218. },
  2219. "provide": {
  2220. "psr/log-implementation": "1.0.0"
  2221. },
  2222. "require-dev": {
  2223. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2224. "doctrine/couchdb": "~1.0@dev",
  2225. "elasticsearch/elasticsearch": "^6.0",
  2226. "graylog2/gelf-php": "^1.4.2",
  2227. "php-amqplib/php-amqplib": "~2.4",
  2228. "php-console/php-console": "^3.1.3",
  2229. "php-parallel-lint/php-parallel-lint": "^1.0",
  2230. "phpspec/prophecy": "^1.6.1",
  2231. "phpunit/phpunit": "^8.5",
  2232. "predis/predis": "^1.1",
  2233. "rollbar/rollbar": "^1.3",
  2234. "ruflin/elastica": ">=0.90 <3.0",
  2235. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2236. },
  2237. "suggest": {
  2238. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2239. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2240. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2241. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2242. "ext-mbstring": "Allow to work properly with unicode symbols",
  2243. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2244. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2245. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2246. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2247. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2248. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2249. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2250. },
  2251. "type": "library",
  2252. "extra": {
  2253. "branch-alias": {
  2254. "dev-master": "2.x-dev"
  2255. }
  2256. },
  2257. "autoload": {
  2258. "psr-4": {
  2259. "Monolog\\": "src/Monolog"
  2260. }
  2261. },
  2262. "notification-url": "https://packagist.org/downloads/",
  2263. "license": [
  2264. "MIT"
  2265. ],
  2266. "authors": [
  2267. {
  2268. "name": "Jordi Boggiano",
  2269. "email": "j.boggiano@seld.be",
  2270. "homepage": "http://seld.be"
  2271. }
  2272. ],
  2273. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2274. "homepage": "http://github.com/Seldaek/monolog",
  2275. "keywords": [
  2276. "log",
  2277. "logging",
  2278. "psr-3"
  2279. ],
  2280. "funding": [
  2281. {
  2282. "url": "https://github.com/Seldaek",
  2283. "type": "github"
  2284. },
  2285. {
  2286. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2287. "type": "tidelift"
  2288. }
  2289. ],
  2290. "time": "2020-05-22T08:12:19+00:00"
  2291. },
  2292. {
  2293. "name": "myclabs/php-enum",
  2294. "version": "1.7.6",
  2295. "source": {
  2296. "type": "git",
  2297. "url": "https://github.com/myclabs/php-enum.git",
  2298. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c"
  2299. },
  2300. "dist": {
  2301. "type": "zip",
  2302. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2303. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2304. "shasum": "",
  2305. "mirrors": [
  2306. {
  2307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2308. "preferred": true
  2309. }
  2310. ]
  2311. },
  2312. "require": {
  2313. "ext-json": "*",
  2314. "php": ">=7.1"
  2315. },
  2316. "require-dev": {
  2317. "phpunit/phpunit": "^7",
  2318. "squizlabs/php_codesniffer": "1.*",
  2319. "vimeo/psalm": "^3.8"
  2320. },
  2321. "type": "library",
  2322. "autoload": {
  2323. "psr-4": {
  2324. "MyCLabs\\Enum\\": "src/"
  2325. }
  2326. },
  2327. "notification-url": "https://packagist.org/downloads/",
  2328. "license": [
  2329. "MIT"
  2330. ],
  2331. "authors": [
  2332. {
  2333. "name": "PHP Enum contributors",
  2334. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2335. }
  2336. ],
  2337. "description": "PHP Enum implementation",
  2338. "homepage": "http://github.com/myclabs/php-enum",
  2339. "keywords": [
  2340. "enum"
  2341. ],
  2342. "time": "2020-02-14T08:15:52+00:00"
  2343. },
  2344. {
  2345. "name": "nesbot/carbon",
  2346. "version": "2.34.2",
  2347. "source": {
  2348. "type": "git",
  2349. "url": "https://github.com/briannesbitt/Carbon.git",
  2350. "reference": "3e87404329b8072295ea11d548b47a1eefe5a162"
  2351. },
  2352. "dist": {
  2353. "type": "zip",
  2354. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/3e87404329b8072295ea11d548b47a1eefe5a162",
  2355. "reference": "3e87404329b8072295ea11d548b47a1eefe5a162",
  2356. "shasum": "",
  2357. "mirrors": [
  2358. {
  2359. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2360. "preferred": true
  2361. }
  2362. ]
  2363. },
  2364. "require": {
  2365. "ext-json": "*",
  2366. "php": "^7.1.8 || ^8.0",
  2367. "symfony/polyfill-mbstring": "^1.0",
  2368. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  2369. },
  2370. "require-dev": {
  2371. "doctrine/orm": "^2.7",
  2372. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  2373. "kylekatarnls/multi-tester": "^1.1",
  2374. "phpmd/phpmd": "^2.8",
  2375. "phpstan/phpstan": "^0.11",
  2376. "phpunit/phpunit": "^7.5 || ^8.0",
  2377. "squizlabs/php_codesniffer": "^3.4"
  2378. },
  2379. "bin": [
  2380. "bin/carbon"
  2381. ],
  2382. "type": "library",
  2383. "extra": {
  2384. "branch-alias": {
  2385. "dev-master": "2.x-dev",
  2386. "dev-3.x": "3.x-dev"
  2387. },
  2388. "laravel": {
  2389. "providers": [
  2390. "Carbon\\Laravel\\ServiceProvider"
  2391. ]
  2392. }
  2393. },
  2394. "autoload": {
  2395. "psr-4": {
  2396. "Carbon\\": "src/Carbon/"
  2397. }
  2398. },
  2399. "notification-url": "https://packagist.org/downloads/",
  2400. "license": [
  2401. "MIT"
  2402. ],
  2403. "authors": [
  2404. {
  2405. "name": "Brian Nesbitt",
  2406. "email": "brian@nesbot.com",
  2407. "homepage": "http://nesbot.com"
  2408. },
  2409. {
  2410. "name": "kylekatarnls",
  2411. "homepage": "http://github.com/kylekatarnls"
  2412. }
  2413. ],
  2414. "description": "An API extension for DateTime that supports 281 different languages.",
  2415. "homepage": "http://carbon.nesbot.com",
  2416. "keywords": [
  2417. "date",
  2418. "datetime",
  2419. "time"
  2420. ],
  2421. "funding": [
  2422. {
  2423. "url": "https://opencollective.com/Carbon",
  2424. "type": "open_collective"
  2425. },
  2426. {
  2427. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  2428. "type": "tidelift"
  2429. }
  2430. ],
  2431. "time": "2020-05-19T22:14:16+00:00"
  2432. },
  2433. {
  2434. "name": "nikic/php-parser",
  2435. "version": "v4.4.0",
  2436. "source": {
  2437. "type": "git",
  2438. "url": "https://github.com/nikic/PHP-Parser.git",
  2439. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  2440. },
  2441. "dist": {
  2442. "type": "zip",
  2443. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  2444. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  2445. "shasum": "",
  2446. "mirrors": [
  2447. {
  2448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2449. "preferred": true
  2450. }
  2451. ]
  2452. },
  2453. "require": {
  2454. "ext-tokenizer": "*",
  2455. "php": ">=7.0"
  2456. },
  2457. "require-dev": {
  2458. "ircmaxell/php-yacc": "0.0.5",
  2459. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  2460. },
  2461. "bin": [
  2462. "bin/php-parse"
  2463. ],
  2464. "type": "library",
  2465. "extra": {
  2466. "branch-alias": {
  2467. "dev-master": "4.3-dev"
  2468. }
  2469. },
  2470. "autoload": {
  2471. "psr-4": {
  2472. "PhpParser\\": "lib/PhpParser"
  2473. }
  2474. },
  2475. "notification-url": "https://packagist.org/downloads/",
  2476. "license": [
  2477. "BSD-3-Clause"
  2478. ],
  2479. "authors": [
  2480. {
  2481. "name": "Nikita Popov"
  2482. }
  2483. ],
  2484. "description": "A PHP parser written in PHP",
  2485. "keywords": [
  2486. "parser",
  2487. "php"
  2488. ],
  2489. "time": "2020-04-10T16:34:50+00:00"
  2490. },
  2491. {
  2492. "name": "opis/closure",
  2493. "version": "3.5.3",
  2494. "source": {
  2495. "type": "git",
  2496. "url": "https://github.com/opis/closure.git",
  2497. "reference": "cac47092144043d5d676e2e7cf8d0d2f83fc89ca"
  2498. },
  2499. "dist": {
  2500. "type": "zip",
  2501. "url": "https://api.github.com/repos/opis/closure/zipball/cac47092144043d5d676e2e7cf8d0d2f83fc89ca",
  2502. "reference": "cac47092144043d5d676e2e7cf8d0d2f83fc89ca",
  2503. "shasum": "",
  2504. "mirrors": [
  2505. {
  2506. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2507. "preferred": true
  2508. }
  2509. ]
  2510. },
  2511. "require": {
  2512. "php": "^5.4 || ^7.0"
  2513. },
  2514. "require-dev": {
  2515. "jeremeamia/superclosure": "^2.0",
  2516. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  2517. },
  2518. "type": "library",
  2519. "extra": {
  2520. "branch-alias": {
  2521. "dev-master": "3.5.x-dev"
  2522. }
  2523. },
  2524. "autoload": {
  2525. "psr-4": {
  2526. "Opis\\Closure\\": "src/"
  2527. },
  2528. "files": [
  2529. "functions.php"
  2530. ]
  2531. },
  2532. "notification-url": "https://packagist.org/downloads/",
  2533. "license": [
  2534. "MIT"
  2535. ],
  2536. "authors": [
  2537. {
  2538. "name": "Marius Sarca",
  2539. "email": "marius.sarca@gmail.com"
  2540. },
  2541. {
  2542. "name": "Sorin Sarca",
  2543. "email": "sarca_sorin@hotmail.com"
  2544. }
  2545. ],
  2546. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2547. "homepage": "https://opis.io/closure",
  2548. "keywords": [
  2549. "anonymous functions",
  2550. "closure",
  2551. "function",
  2552. "serializable",
  2553. "serialization",
  2554. "serialize"
  2555. ],
  2556. "time": "2020-05-25T09:32:45+00:00"
  2557. },
  2558. {
  2559. "name": "overtrue/laravel-pinyin",
  2560. "version": "4.0.0",
  2561. "source": {
  2562. "type": "git",
  2563. "url": "https://github.com/overtrue/laravel-pinyin.git",
  2564. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  2565. },
  2566. "dist": {
  2567. "type": "zip",
  2568. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  2569. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  2570. "shasum": "",
  2571. "mirrors": [
  2572. {
  2573. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2574. "preferred": true
  2575. }
  2576. ]
  2577. },
  2578. "require": {
  2579. "overtrue/pinyin": "~4.0"
  2580. },
  2581. "type": "library",
  2582. "extra": {
  2583. "laravel": {
  2584. "providers": [
  2585. "Overtrue\\LaravelPinyin\\ServiceProvider"
  2586. ],
  2587. "aliases": {
  2588. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  2589. }
  2590. }
  2591. },
  2592. "autoload": {
  2593. "psr-4": {
  2594. "Overtrue\\LaravelPinyin\\": "src/"
  2595. },
  2596. "files": [
  2597. "src/helpers.php"
  2598. ]
  2599. },
  2600. "notification-url": "https://packagist.org/downloads/",
  2601. "license": [
  2602. "MIT"
  2603. ],
  2604. "authors": [
  2605. {
  2606. "name": "overtrue",
  2607. "email": "anzhengchao@gmail.com"
  2608. }
  2609. ],
  2610. "description": "Chinese to Pinyin translator.",
  2611. "keywords": [
  2612. "Chinese",
  2613. "Pinyin",
  2614. "laravel",
  2615. "overtrue"
  2616. ],
  2617. "time": "2018-10-10T09:02:46+00:00"
  2618. },
  2619. {
  2620. "name": "overtrue/pinyin",
  2621. "version": "4.0.6",
  2622. "source": {
  2623. "type": "git",
  2624. "url": "https://github.com/overtrue/pinyin.git",
  2625. "reference": "9836dae1783bcf5934508a2abe32eca9ea5ee15d"
  2626. },
  2627. "dist": {
  2628. "type": "zip",
  2629. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/9836dae1783bcf5934508a2abe32eca9ea5ee15d",
  2630. "reference": "9836dae1783bcf5934508a2abe32eca9ea5ee15d",
  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": ">=7.1"
  2641. },
  2642. "require-dev": {
  2643. "brainmaestro/composer-git-hooks": "^2.7",
  2644. "friendsofphp/php-cs-fixer": "^2.16",
  2645. "phpunit/phpunit": "~8.0"
  2646. },
  2647. "type": "library",
  2648. "extra": {
  2649. "hooks": {
  2650. "pre-commit": [
  2651. "composer test",
  2652. "composer fix-style"
  2653. ],
  2654. "pre-push": [
  2655. "composer test",
  2656. "composer check-style"
  2657. ]
  2658. }
  2659. },
  2660. "autoload": {
  2661. "psr-4": {
  2662. "Overtrue\\Pinyin\\": "src/"
  2663. },
  2664. "files": [
  2665. "src/const.php"
  2666. ]
  2667. },
  2668. "notification-url": "https://packagist.org/downloads/",
  2669. "license": [
  2670. "MIT"
  2671. ],
  2672. "authors": [
  2673. {
  2674. "name": "overtrue",
  2675. "email": "anzhengchao@gmail.com",
  2676. "homepage": "http://github.com/overtrue"
  2677. }
  2678. ],
  2679. "description": "Chinese to pinyin translator.",
  2680. "homepage": "https://github.com/overtrue/pinyin",
  2681. "keywords": [
  2682. "Chinese",
  2683. "Pinyin",
  2684. "cn2pinyin"
  2685. ],
  2686. "time": "2020-04-13T08:53:30+00:00"
  2687. },
  2688. {
  2689. "name": "paragonie/random_compat",
  2690. "version": "v9.99.99",
  2691. "source": {
  2692. "type": "git",
  2693. "url": "https://github.com/paragonie/random_compat.git",
  2694. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  2695. },
  2696. "dist": {
  2697. "type": "zip",
  2698. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2699. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2700. "shasum": "",
  2701. "mirrors": [
  2702. {
  2703. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2704. "preferred": true
  2705. }
  2706. ]
  2707. },
  2708. "require": {
  2709. "php": "^7"
  2710. },
  2711. "require-dev": {
  2712. "phpunit/phpunit": "4.*|5.*",
  2713. "vimeo/psalm": "^1"
  2714. },
  2715. "suggest": {
  2716. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2717. },
  2718. "type": "library",
  2719. "notification-url": "https://packagist.org/downloads/",
  2720. "license": [
  2721. "MIT"
  2722. ],
  2723. "authors": [
  2724. {
  2725. "name": "Paragon Initiative Enterprises",
  2726. "email": "security@paragonie.com",
  2727. "homepage": "https://paragonie.com"
  2728. }
  2729. ],
  2730. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2731. "keywords": [
  2732. "csprng",
  2733. "polyfill",
  2734. "pseudorandom",
  2735. "random"
  2736. ],
  2737. "time": "2018-07-02T15:55:56+00:00"
  2738. },
  2739. {
  2740. "name": "paragonie/sodium_compat",
  2741. "version": "v1.13.0",
  2742. "source": {
  2743. "type": "git",
  2744. "url": "https://github.com/paragonie/sodium_compat.git",
  2745. "reference": "bbade402cbe84c69b718120911506a3aa2bae653"
  2746. },
  2747. "dist": {
  2748. "type": "zip",
  2749. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/bbade402cbe84c69b718120911506a3aa2bae653",
  2750. "reference": "bbade402cbe84c69b718120911506a3aa2bae653",
  2751. "shasum": "",
  2752. "mirrors": [
  2753. {
  2754. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2755. "preferred": true
  2756. }
  2757. ]
  2758. },
  2759. "require": {
  2760. "paragonie/random_compat": ">=1",
  2761. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  2762. },
  2763. "require-dev": {
  2764. "phpunit/phpunit": "^3|^4|^5|^6|^7"
  2765. },
  2766. "suggest": {
  2767. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  2768. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  2769. },
  2770. "type": "library",
  2771. "autoload": {
  2772. "files": [
  2773. "autoload.php"
  2774. ]
  2775. },
  2776. "notification-url": "https://packagist.org/downloads/",
  2777. "license": [
  2778. "ISC"
  2779. ],
  2780. "authors": [
  2781. {
  2782. "name": "Paragon Initiative Enterprises",
  2783. "email": "security@paragonie.com"
  2784. },
  2785. {
  2786. "name": "Frank Denis",
  2787. "email": "jedisct1@pureftpd.org"
  2788. }
  2789. ],
  2790. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  2791. "keywords": [
  2792. "Authentication",
  2793. "BLAKE2b",
  2794. "ChaCha20",
  2795. "ChaCha20-Poly1305",
  2796. "Chapoly",
  2797. "Curve25519",
  2798. "Ed25519",
  2799. "EdDSA",
  2800. "Edwards-curve Digital Signature Algorithm",
  2801. "Elliptic Curve Diffie-Hellman",
  2802. "Poly1305",
  2803. "Pure-PHP cryptography",
  2804. "RFC 7748",
  2805. "RFC 8032",
  2806. "Salpoly",
  2807. "Salsa20",
  2808. "X25519",
  2809. "XChaCha20-Poly1305",
  2810. "XSalsa20-Poly1305",
  2811. "Xchacha20",
  2812. "Xsalsa20",
  2813. "aead",
  2814. "cryptography",
  2815. "ecdh",
  2816. "elliptic curve",
  2817. "elliptic curve cryptography",
  2818. "encryption",
  2819. "libsodium",
  2820. "php",
  2821. "public-key cryptography",
  2822. "secret-key cryptography",
  2823. "side-channel resistant"
  2824. ],
  2825. "time": "2020-03-20T21:48:09+00:00"
  2826. },
  2827. {
  2828. "name": "phpoffice/phpspreadsheet",
  2829. "version": "1.12.0",
  2830. "source": {
  2831. "type": "git",
  2832. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2833. "reference": "f79611d6dc1f6b7e8e30b738fc371b392001dbfd"
  2834. },
  2835. "dist": {
  2836. "type": "zip",
  2837. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/f79611d6dc1f6b7e8e30b738fc371b392001dbfd",
  2838. "reference": "f79611d6dc1f6b7e8e30b738fc371b392001dbfd",
  2839. "shasum": "",
  2840. "mirrors": [
  2841. {
  2842. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2843. "preferred": true
  2844. }
  2845. ]
  2846. },
  2847. "require": {
  2848. "ext-ctype": "*",
  2849. "ext-dom": "*",
  2850. "ext-fileinfo": "*",
  2851. "ext-gd": "*",
  2852. "ext-iconv": "*",
  2853. "ext-libxml": "*",
  2854. "ext-mbstring": "*",
  2855. "ext-simplexml": "*",
  2856. "ext-xml": "*",
  2857. "ext-xmlreader": "*",
  2858. "ext-xmlwriter": "*",
  2859. "ext-zip": "*",
  2860. "ext-zlib": "*",
  2861. "markbaker/complex": "^1.4",
  2862. "markbaker/matrix": "^1.2",
  2863. "php": "^7.1",
  2864. "psr/simple-cache": "^1.0"
  2865. },
  2866. "require-dev": {
  2867. "dompdf/dompdf": "^0.8.3",
  2868. "friendsofphp/php-cs-fixer": "^2.16",
  2869. "jpgraph/jpgraph": "^4.0",
  2870. "mpdf/mpdf": "^8.0",
  2871. "phpcompatibility/php-compatibility": "^9.3",
  2872. "phpunit/phpunit": "^7.5",
  2873. "squizlabs/php_codesniffer": "^3.5",
  2874. "tecnickcom/tcpdf": "^6.3"
  2875. },
  2876. "suggest": {
  2877. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2878. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2879. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2880. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2881. },
  2882. "type": "library",
  2883. "autoload": {
  2884. "psr-4": {
  2885. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2886. }
  2887. },
  2888. "notification-url": "https://packagist.org/downloads/",
  2889. "license": [
  2890. "MIT"
  2891. ],
  2892. "authors": [
  2893. {
  2894. "name": "Maarten Balliauw",
  2895. "homepage": "https://blog.maartenballiauw.be"
  2896. },
  2897. {
  2898. "name": "Mark Baker",
  2899. "homepage": "https://markbakeruk.net"
  2900. },
  2901. {
  2902. "name": "Franck Lefevre",
  2903. "homepage": "https://rootslabs.net"
  2904. },
  2905. {
  2906. "name": "Erik Tilt"
  2907. },
  2908. {
  2909. "name": "Adrien Crivelli"
  2910. }
  2911. ],
  2912. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2913. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2914. "keywords": [
  2915. "OpenXML",
  2916. "excel",
  2917. "gnumeric",
  2918. "ods",
  2919. "php",
  2920. "spreadsheet",
  2921. "xls",
  2922. "xlsx"
  2923. ],
  2924. "time": "2020-04-27T08:12:48+00:00"
  2925. },
  2926. {
  2927. "name": "phpoption/phpoption",
  2928. "version": "1.7.3",
  2929. "source": {
  2930. "type": "git",
  2931. "url": "https://github.com/schmittjoh/php-option.git",
  2932. "reference": "4acfd6a4b33a509d8c88f50e5222f734b6aeebae"
  2933. },
  2934. "dist": {
  2935. "type": "zip",
  2936. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/4acfd6a4b33a509d8c88f50e5222f734b6aeebae",
  2937. "reference": "4acfd6a4b33a509d8c88f50e5222f734b6aeebae",
  2938. "shasum": "",
  2939. "mirrors": [
  2940. {
  2941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2942. "preferred": true
  2943. }
  2944. ]
  2945. },
  2946. "require": {
  2947. "php": "^5.5.9 || ^7.0 || ^8.0"
  2948. },
  2949. "require-dev": {
  2950. "bamarni/composer-bin-plugin": "^1.3",
  2951. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  2952. },
  2953. "type": "library",
  2954. "extra": {
  2955. "branch-alias": {
  2956. "dev-master": "1.7-dev"
  2957. }
  2958. },
  2959. "autoload": {
  2960. "psr-4": {
  2961. "PhpOption\\": "src/PhpOption/"
  2962. }
  2963. },
  2964. "notification-url": "https://packagist.org/downloads/",
  2965. "license": [
  2966. "Apache-2.0"
  2967. ],
  2968. "authors": [
  2969. {
  2970. "name": "Johannes M. Schmitt",
  2971. "email": "schmittjoh@gmail.com"
  2972. },
  2973. {
  2974. "name": "Graham Campbell",
  2975. "email": "graham@alt-three.com"
  2976. }
  2977. ],
  2978. "description": "Option Type for PHP",
  2979. "keywords": [
  2980. "language",
  2981. "option",
  2982. "php",
  2983. "type"
  2984. ],
  2985. "time": "2020-03-21T18:07:53+00:00"
  2986. },
  2987. {
  2988. "name": "predis/predis",
  2989. "version": "v1.1.1",
  2990. "source": {
  2991. "type": "git",
  2992. "url": "https://github.com/nrk/predis.git",
  2993. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  2994. },
  2995. "dist": {
  2996. "type": "zip",
  2997. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  2998. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  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": ">=5.3.9"
  3009. },
  3010. "require-dev": {
  3011. "phpunit/phpunit": "~4.8"
  3012. },
  3013. "suggest": {
  3014. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3015. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3016. },
  3017. "type": "library",
  3018. "autoload": {
  3019. "psr-4": {
  3020. "Predis\\": "src/"
  3021. }
  3022. },
  3023. "notification-url": "https://packagist.org/downloads/",
  3024. "license": [
  3025. "MIT"
  3026. ],
  3027. "authors": [
  3028. {
  3029. "name": "Daniele Alessandri",
  3030. "email": "suppakilla@gmail.com",
  3031. "homepage": "http://clorophilla.net"
  3032. }
  3033. ],
  3034. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3035. "homepage": "http://github.com/nrk/predis",
  3036. "keywords": [
  3037. "nosql",
  3038. "predis",
  3039. "redis"
  3040. ],
  3041. "time": "2016-06-16T16:22:20+00:00"
  3042. },
  3043. {
  3044. "name": "psr/container",
  3045. "version": "1.0.0",
  3046. "source": {
  3047. "type": "git",
  3048. "url": "https://github.com/php-fig/container.git",
  3049. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3050. },
  3051. "dist": {
  3052. "type": "zip",
  3053. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3054. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3055. "shasum": "",
  3056. "mirrors": [
  3057. {
  3058. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3059. "preferred": true
  3060. }
  3061. ]
  3062. },
  3063. "require": {
  3064. "php": ">=5.3.0"
  3065. },
  3066. "type": "library",
  3067. "extra": {
  3068. "branch-alias": {
  3069. "dev-master": "1.0.x-dev"
  3070. }
  3071. },
  3072. "autoload": {
  3073. "psr-4": {
  3074. "Psr\\Container\\": "src/"
  3075. }
  3076. },
  3077. "notification-url": "https://packagist.org/downloads/",
  3078. "license": [
  3079. "MIT"
  3080. ],
  3081. "authors": [
  3082. {
  3083. "name": "PHP-FIG",
  3084. "homepage": "http://www.php-fig.org/"
  3085. }
  3086. ],
  3087. "description": "Common Container Interface (PHP FIG PSR-11)",
  3088. "homepage": "https://github.com/php-fig/container",
  3089. "keywords": [
  3090. "PSR-11",
  3091. "container",
  3092. "container-interface",
  3093. "container-interop",
  3094. "psr"
  3095. ],
  3096. "time": "2017-02-14T16:28:37+00:00"
  3097. },
  3098. {
  3099. "name": "psr/event-dispatcher",
  3100. "version": "1.0.0",
  3101. "source": {
  3102. "type": "git",
  3103. "url": "https://github.com/php-fig/event-dispatcher.git",
  3104. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3105. },
  3106. "dist": {
  3107. "type": "zip",
  3108. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3109. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3110. "shasum": "",
  3111. "mirrors": [
  3112. {
  3113. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3114. "preferred": true
  3115. }
  3116. ]
  3117. },
  3118. "require": {
  3119. "php": ">=7.2.0"
  3120. },
  3121. "type": "library",
  3122. "extra": {
  3123. "branch-alias": {
  3124. "dev-master": "1.0.x-dev"
  3125. }
  3126. },
  3127. "autoload": {
  3128. "psr-4": {
  3129. "Psr\\EventDispatcher\\": "src/"
  3130. }
  3131. },
  3132. "notification-url": "https://packagist.org/downloads/",
  3133. "license": [
  3134. "MIT"
  3135. ],
  3136. "authors": [
  3137. {
  3138. "name": "PHP-FIG",
  3139. "homepage": "http://www.php-fig.org/"
  3140. }
  3141. ],
  3142. "description": "Standard interfaces for event handling.",
  3143. "keywords": [
  3144. "events",
  3145. "psr",
  3146. "psr-14"
  3147. ],
  3148. "time": "2019-01-08T18:20:26+00:00"
  3149. },
  3150. {
  3151. "name": "psr/http-message",
  3152. "version": "1.0.1",
  3153. "source": {
  3154. "type": "git",
  3155. "url": "https://github.com/php-fig/http-message.git",
  3156. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3157. },
  3158. "dist": {
  3159. "type": "zip",
  3160. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3161. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3162. "shasum": "",
  3163. "mirrors": [
  3164. {
  3165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3166. "preferred": true
  3167. }
  3168. ]
  3169. },
  3170. "require": {
  3171. "php": ">=5.3.0"
  3172. },
  3173. "type": "library",
  3174. "extra": {
  3175. "branch-alias": {
  3176. "dev-master": "1.0.x-dev"
  3177. }
  3178. },
  3179. "autoload": {
  3180. "psr-4": {
  3181. "Psr\\Http\\Message\\": "src/"
  3182. }
  3183. },
  3184. "notification-url": "https://packagist.org/downloads/",
  3185. "license": [
  3186. "MIT"
  3187. ],
  3188. "authors": [
  3189. {
  3190. "name": "PHP-FIG",
  3191. "homepage": "http://www.php-fig.org/"
  3192. }
  3193. ],
  3194. "description": "Common interface for HTTP messages",
  3195. "homepage": "https://github.com/php-fig/http-message",
  3196. "keywords": [
  3197. "http",
  3198. "http-message",
  3199. "psr",
  3200. "psr-7",
  3201. "request",
  3202. "response"
  3203. ],
  3204. "time": "2016-08-06T14:39:51+00:00"
  3205. },
  3206. {
  3207. "name": "psr/log",
  3208. "version": "1.1.3",
  3209. "source": {
  3210. "type": "git",
  3211. "url": "https://github.com/php-fig/log.git",
  3212. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3213. },
  3214. "dist": {
  3215. "type": "zip",
  3216. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3217. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3218. "shasum": "",
  3219. "mirrors": [
  3220. {
  3221. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3222. "preferred": true
  3223. }
  3224. ]
  3225. },
  3226. "require": {
  3227. "php": ">=5.3.0"
  3228. },
  3229. "type": "library",
  3230. "extra": {
  3231. "branch-alias": {
  3232. "dev-master": "1.1.x-dev"
  3233. }
  3234. },
  3235. "autoload": {
  3236. "psr-4": {
  3237. "Psr\\Log\\": "Psr/Log/"
  3238. }
  3239. },
  3240. "notification-url": "https://packagist.org/downloads/",
  3241. "license": [
  3242. "MIT"
  3243. ],
  3244. "authors": [
  3245. {
  3246. "name": "PHP-FIG",
  3247. "homepage": "http://www.php-fig.org/"
  3248. }
  3249. ],
  3250. "description": "Common interface for logging libraries",
  3251. "homepage": "https://github.com/php-fig/log",
  3252. "keywords": [
  3253. "log",
  3254. "psr",
  3255. "psr-3"
  3256. ],
  3257. "time": "2020-03-23T09:12:05+00:00"
  3258. },
  3259. {
  3260. "name": "psr/simple-cache",
  3261. "version": "1.0.1",
  3262. "source": {
  3263. "type": "git",
  3264. "url": "https://github.com/php-fig/simple-cache.git",
  3265. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3266. },
  3267. "dist": {
  3268. "type": "zip",
  3269. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3270. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3271. "shasum": "",
  3272. "mirrors": [
  3273. {
  3274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3275. "preferred": true
  3276. }
  3277. ]
  3278. },
  3279. "require": {
  3280. "php": ">=5.3.0"
  3281. },
  3282. "type": "library",
  3283. "extra": {
  3284. "branch-alias": {
  3285. "dev-master": "1.0.x-dev"
  3286. }
  3287. },
  3288. "autoload": {
  3289. "psr-4": {
  3290. "Psr\\SimpleCache\\": "src/"
  3291. }
  3292. },
  3293. "notification-url": "https://packagist.org/downloads/",
  3294. "license": [
  3295. "MIT"
  3296. ],
  3297. "authors": [
  3298. {
  3299. "name": "PHP-FIG",
  3300. "homepage": "http://www.php-fig.org/"
  3301. }
  3302. ],
  3303. "description": "Common interfaces for simple caching",
  3304. "keywords": [
  3305. "cache",
  3306. "caching",
  3307. "psr",
  3308. "psr-16",
  3309. "simple-cache"
  3310. ],
  3311. "time": "2017-10-23T01:57:42+00:00"
  3312. },
  3313. {
  3314. "name": "psy/psysh",
  3315. "version": "v0.10.4",
  3316. "source": {
  3317. "type": "git",
  3318. "url": "https://github.com/bobthecow/psysh.git",
  3319. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  3320. },
  3321. "dist": {
  3322. "type": "zip",
  3323. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  3324. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  3325. "shasum": "",
  3326. "mirrors": [
  3327. {
  3328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3329. "preferred": true
  3330. }
  3331. ]
  3332. },
  3333. "require": {
  3334. "dnoegel/php-xdg-base-dir": "0.1.*",
  3335. "ext-json": "*",
  3336. "ext-tokenizer": "*",
  3337. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  3338. "php": "^8.0 || ^7.0 || ^5.5.9",
  3339. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  3340. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  3341. },
  3342. "require-dev": {
  3343. "bamarni/composer-bin-plugin": "^1.2",
  3344. "hoa/console": "3.17.*"
  3345. },
  3346. "suggest": {
  3347. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3348. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3349. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3350. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3351. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3352. },
  3353. "bin": [
  3354. "bin/psysh"
  3355. ],
  3356. "type": "library",
  3357. "extra": {
  3358. "branch-alias": {
  3359. "dev-master": "0.10.x-dev"
  3360. }
  3361. },
  3362. "autoload": {
  3363. "files": [
  3364. "src/functions.php"
  3365. ],
  3366. "psr-4": {
  3367. "Psy\\": "src/"
  3368. }
  3369. },
  3370. "notification-url": "https://packagist.org/downloads/",
  3371. "license": [
  3372. "MIT"
  3373. ],
  3374. "authors": [
  3375. {
  3376. "name": "Justin Hileman",
  3377. "email": "justin@justinhileman.info",
  3378. "homepage": "http://justinhileman.com"
  3379. }
  3380. ],
  3381. "description": "An interactive shell for modern PHP.",
  3382. "homepage": "http://psysh.org",
  3383. "keywords": [
  3384. "REPL",
  3385. "console",
  3386. "interactive",
  3387. "shell"
  3388. ],
  3389. "time": "2020-05-03T19:32:03+00:00"
  3390. },
  3391. {
  3392. "name": "pusher/pusher-php-server",
  3393. "version": "v4.1.4",
  3394. "source": {
  3395. "type": "git",
  3396. "url": "https://github.com/pusher/pusher-http-php.git",
  3397. "reference": "e75e5715e3b651ec20dee5844095aadefab81acb"
  3398. },
  3399. "dist": {
  3400. "type": "zip",
  3401. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/e75e5715e3b651ec20dee5844095aadefab81acb",
  3402. "reference": "e75e5715e3b651ec20dee5844095aadefab81acb",
  3403. "shasum": "",
  3404. "mirrors": [
  3405. {
  3406. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3407. "preferred": true
  3408. }
  3409. ]
  3410. },
  3411. "require": {
  3412. "ext-curl": "*",
  3413. "paragonie/sodium_compat": "^1.6",
  3414. "php": "^7.1",
  3415. "psr/log": "^1.0"
  3416. },
  3417. "require-dev": {
  3418. "phpunit/phpunit": "^7.2"
  3419. },
  3420. "type": "library",
  3421. "extra": {
  3422. "branch-alias": {
  3423. "dev-master": "3.4-dev"
  3424. }
  3425. },
  3426. "autoload": {
  3427. "psr-4": {
  3428. "Pusher\\": "src/"
  3429. }
  3430. },
  3431. "notification-url": "https://packagist.org/downloads/",
  3432. "license": [
  3433. "MIT"
  3434. ],
  3435. "description": "Library for interacting with the Pusher REST API",
  3436. "keywords": [
  3437. "events",
  3438. "messaging",
  3439. "php-pusher-server",
  3440. "publish",
  3441. "push",
  3442. "pusher",
  3443. "real time",
  3444. "real-time",
  3445. "realtime",
  3446. "rest",
  3447. "trigger"
  3448. ],
  3449. "time": "2020-04-14T15:20:04+00:00"
  3450. },
  3451. {
  3452. "name": "ralouphie/getallheaders",
  3453. "version": "3.0.3",
  3454. "source": {
  3455. "type": "git",
  3456. "url": "https://github.com/ralouphie/getallheaders.git",
  3457. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3458. },
  3459. "dist": {
  3460. "type": "zip",
  3461. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3462. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3463. "shasum": "",
  3464. "mirrors": [
  3465. {
  3466. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3467. "preferred": true
  3468. }
  3469. ]
  3470. },
  3471. "require": {
  3472. "php": ">=5.6"
  3473. },
  3474. "require-dev": {
  3475. "php-coveralls/php-coveralls": "^2.1",
  3476. "phpunit/phpunit": "^5 || ^6.5"
  3477. },
  3478. "type": "library",
  3479. "autoload": {
  3480. "files": [
  3481. "src/getallheaders.php"
  3482. ]
  3483. },
  3484. "notification-url": "https://packagist.org/downloads/",
  3485. "license": [
  3486. "MIT"
  3487. ],
  3488. "authors": [
  3489. {
  3490. "name": "Ralph Khattar",
  3491. "email": "ralph.khattar@gmail.com"
  3492. }
  3493. ],
  3494. "description": "A polyfill for getallheaders.",
  3495. "time": "2019-03-08T08:55:37+00:00"
  3496. },
  3497. {
  3498. "name": "ramsey/collection",
  3499. "version": "1.0.1",
  3500. "source": {
  3501. "type": "git",
  3502. "url": "https://github.com/ramsey/collection.git",
  3503. "reference": "925ad8cf55ba7a3fc92e332c58fd0478ace3e1ca"
  3504. },
  3505. "dist": {
  3506. "type": "zip",
  3507. "url": "https://api.github.com/repos/ramsey/collection/zipball/925ad8cf55ba7a3fc92e332c58fd0478ace3e1ca",
  3508. "reference": "925ad8cf55ba7a3fc92e332c58fd0478ace3e1ca",
  3509. "shasum": "",
  3510. "mirrors": [
  3511. {
  3512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3513. "preferred": true
  3514. }
  3515. ]
  3516. },
  3517. "require": {
  3518. "php": "^7.2"
  3519. },
  3520. "require-dev": {
  3521. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  3522. "fzaninotto/faker": "^1.5",
  3523. "jakub-onderka/php-parallel-lint": "^1",
  3524. "jangregor/phpstan-prophecy": "^0.6",
  3525. "mockery/mockery": "^1.3",
  3526. "phpstan/extension-installer": "^1",
  3527. "phpstan/phpdoc-parser": "0.4.1",
  3528. "phpstan/phpstan": "^0.12",
  3529. "phpstan/phpstan-mockery": "^0.12",
  3530. "phpstan/phpstan-phpunit": "^0.12",
  3531. "phpunit/phpunit": "^8.5",
  3532. "slevomat/coding-standard": "^6.0",
  3533. "squizlabs/php_codesniffer": "^3.5"
  3534. },
  3535. "type": "library",
  3536. "autoload": {
  3537. "psr-4": {
  3538. "Ramsey\\Collection\\": "src/"
  3539. }
  3540. },
  3541. "notification-url": "https://packagist.org/downloads/",
  3542. "license": [
  3543. "MIT"
  3544. ],
  3545. "authors": [
  3546. {
  3547. "name": "Ben Ramsey",
  3548. "email": "ben@benramsey.com",
  3549. "homepage": "https://benramsey.com"
  3550. }
  3551. ],
  3552. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  3553. "homepage": "https://github.com/ramsey/collection",
  3554. "keywords": [
  3555. "array",
  3556. "collection",
  3557. "hash",
  3558. "map",
  3559. "queue",
  3560. "set"
  3561. ],
  3562. "time": "2020-01-05T00:22:59+00:00"
  3563. },
  3564. {
  3565. "name": "ramsey/uuid",
  3566. "version": "4.0.1",
  3567. "source": {
  3568. "type": "git",
  3569. "url": "https://github.com/ramsey/uuid.git",
  3570. "reference": "ba8fff1d3abb8bb4d35a135ed22a31c6ef3ede3d"
  3571. },
  3572. "dist": {
  3573. "type": "zip",
  3574. "url": "https://api.github.com/repos/ramsey/uuid/zipball/ba8fff1d3abb8bb4d35a135ed22a31c6ef3ede3d",
  3575. "reference": "ba8fff1d3abb8bb4d35a135ed22a31c6ef3ede3d",
  3576. "shasum": "",
  3577. "mirrors": [
  3578. {
  3579. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3580. "preferred": true
  3581. }
  3582. ]
  3583. },
  3584. "require": {
  3585. "brick/math": "^0.8",
  3586. "ext-json": "*",
  3587. "php": "^7.2 || ^8",
  3588. "ramsey/collection": "^1.0",
  3589. "symfony/polyfill-ctype": "^1.8"
  3590. },
  3591. "replace": {
  3592. "rhumsaa/uuid": "self.version"
  3593. },
  3594. "require-dev": {
  3595. "codeception/aspect-mock": "^3",
  3596. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2",
  3597. "doctrine/annotations": "^1.8",
  3598. "goaop/framework": "^2",
  3599. "mockery/mockery": "^1.3",
  3600. "moontoast/math": "^1.1",
  3601. "paragonie/random-lib": "^2",
  3602. "php-mock/php-mock-mockery": "^1.3",
  3603. "php-mock/php-mock-phpunit": "^2.5",
  3604. "php-parallel-lint/php-parallel-lint": "^1.1",
  3605. "phpstan/extension-installer": "^1.0",
  3606. "phpstan/phpdoc-parser": "0.4.3",
  3607. "phpstan/phpstan": "^0.12",
  3608. "phpstan/phpstan-mockery": "^0.12",
  3609. "phpstan/phpstan-phpunit": "^0.12",
  3610. "phpunit/phpunit": "^8.5",
  3611. "psy/psysh": "^0.10.0",
  3612. "slevomat/coding-standard": "^6.0",
  3613. "squizlabs/php_codesniffer": "^3.5",
  3614. "vimeo/psalm": "3.9.4"
  3615. },
  3616. "suggest": {
  3617. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3618. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  3619. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3620. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3621. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3622. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3623. },
  3624. "type": "library",
  3625. "extra": {
  3626. "branch-alias": {
  3627. "dev-master": "4.x-dev"
  3628. }
  3629. },
  3630. "autoload": {
  3631. "psr-4": {
  3632. "Ramsey\\Uuid\\": "src/"
  3633. },
  3634. "files": [
  3635. "src/functions.php"
  3636. ]
  3637. },
  3638. "notification-url": "https://packagist.org/downloads/",
  3639. "license": [
  3640. "MIT"
  3641. ],
  3642. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3643. "homepage": "https://github.com/ramsey/uuid",
  3644. "keywords": [
  3645. "guid",
  3646. "identifier",
  3647. "uuid"
  3648. ],
  3649. "time": "2020-03-29T20:13:32+00:00"
  3650. },
  3651. {
  3652. "name": "scrivo/highlight.php",
  3653. "version": "v9.18.1.1",
  3654. "source": {
  3655. "type": "git",
  3656. "url": "https://github.com/scrivo/highlight.php.git",
  3657. "reference": "52fc21c99fd888e33aed4879e55a3646f8d40558"
  3658. },
  3659. "dist": {
  3660. "type": "zip",
  3661. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/52fc21c99fd888e33aed4879e55a3646f8d40558",
  3662. "reference": "52fc21c99fd888e33aed4879e55a3646f8d40558",
  3663. "shasum": "",
  3664. "mirrors": [
  3665. {
  3666. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3667. "preferred": true
  3668. }
  3669. ]
  3670. },
  3671. "require": {
  3672. "ext-json": "*",
  3673. "ext-mbstring": "*",
  3674. "php": ">=5.4"
  3675. },
  3676. "require-dev": {
  3677. "phpunit/phpunit": "^4.8|^5.7",
  3678. "sabberworm/php-css-parser": "^8.3",
  3679. "symfony/finder": "^2.8|^3.4",
  3680. "symfony/var-dumper": "^2.8|^3.4"
  3681. },
  3682. "suggest": {
  3683. "ext-dom": "Needed to make use of the features in the utilities namespace"
  3684. },
  3685. "type": "library",
  3686. "autoload": {
  3687. "psr-0": {
  3688. "Highlight\\": "",
  3689. "HighlightUtilities\\": ""
  3690. },
  3691. "files": [
  3692. "HighlightUtilities/functions.php"
  3693. ]
  3694. },
  3695. "notification-url": "https://packagist.org/downloads/",
  3696. "license": [
  3697. "BSD-3-Clause"
  3698. ],
  3699. "authors": [
  3700. {
  3701. "name": "Geert Bergman",
  3702. "homepage": "http://www.scrivo.org/",
  3703. "role": "Project Author"
  3704. },
  3705. {
  3706. "name": "Vladimir Jimenez",
  3707. "homepage": "https://allejo.io",
  3708. "role": "Maintainer"
  3709. },
  3710. {
  3711. "name": "Martin Folkers",
  3712. "homepage": "https://twobrain.io",
  3713. "role": "Contributor"
  3714. }
  3715. ],
  3716. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  3717. "keywords": [
  3718. "code",
  3719. "highlight",
  3720. "highlight.js",
  3721. "highlight.php",
  3722. "syntax"
  3723. ],
  3724. "time": "2020-03-02T05:59:21+00:00"
  3725. },
  3726. {
  3727. "name": "swiftmailer/swiftmailer",
  3728. "version": "v6.2.3",
  3729. "source": {
  3730. "type": "git",
  3731. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3732. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  3733. },
  3734. "dist": {
  3735. "type": "zip",
  3736. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3737. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3738. "shasum": "",
  3739. "mirrors": [
  3740. {
  3741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3742. "preferred": true
  3743. }
  3744. ]
  3745. },
  3746. "require": {
  3747. "egulias/email-validator": "~2.0",
  3748. "php": ">=7.0.0",
  3749. "symfony/polyfill-iconv": "^1.0",
  3750. "symfony/polyfill-intl-idn": "^1.10",
  3751. "symfony/polyfill-mbstring": "^1.0"
  3752. },
  3753. "require-dev": {
  3754. "mockery/mockery": "~0.9.1",
  3755. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  3756. },
  3757. "suggest": {
  3758. "ext-intl": "Needed to support internationalized email addresses",
  3759. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  3760. },
  3761. "type": "library",
  3762. "extra": {
  3763. "branch-alias": {
  3764. "dev-master": "6.2-dev"
  3765. }
  3766. },
  3767. "autoload": {
  3768. "files": [
  3769. "lib/swift_required.php"
  3770. ]
  3771. },
  3772. "notification-url": "https://packagist.org/downloads/",
  3773. "license": [
  3774. "MIT"
  3775. ],
  3776. "authors": [
  3777. {
  3778. "name": "Chris Corbyn"
  3779. },
  3780. {
  3781. "name": "Fabien Potencier",
  3782. "email": "fabien@symfony.com"
  3783. }
  3784. ],
  3785. "description": "Swiftmailer, free feature-rich PHP mailer",
  3786. "homepage": "https://swiftmailer.symfony.com",
  3787. "keywords": [
  3788. "email",
  3789. "mail",
  3790. "mailer"
  3791. ],
  3792. "time": "2019-11-12T09:31:26+00:00"
  3793. },
  3794. {
  3795. "name": "symfony/console",
  3796. "version": "v5.0.8",
  3797. "source": {
  3798. "type": "git",
  3799. "url": "https://github.com/symfony/console.git",
  3800. "reference": "5fa1caadc8cdaa17bcfb25219f3b53fe294a9935"
  3801. },
  3802. "dist": {
  3803. "type": "zip",
  3804. "url": "https://api.github.com/repos/symfony/console/zipball/5fa1caadc8cdaa17bcfb25219f3b53fe294a9935",
  3805. "reference": "5fa1caadc8cdaa17bcfb25219f3b53fe294a9935",
  3806. "shasum": "",
  3807. "mirrors": [
  3808. {
  3809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3810. "preferred": true
  3811. }
  3812. ]
  3813. },
  3814. "require": {
  3815. "php": "^7.2.5",
  3816. "symfony/polyfill-mbstring": "~1.0",
  3817. "symfony/polyfill-php73": "^1.8",
  3818. "symfony/service-contracts": "^1.1|^2"
  3819. },
  3820. "conflict": {
  3821. "symfony/dependency-injection": "<4.4",
  3822. "symfony/event-dispatcher": "<4.4",
  3823. "symfony/lock": "<4.4",
  3824. "symfony/process": "<4.4"
  3825. },
  3826. "provide": {
  3827. "psr/log-implementation": "1.0"
  3828. },
  3829. "require-dev": {
  3830. "psr/log": "~1.0",
  3831. "symfony/config": "^4.4|^5.0",
  3832. "symfony/dependency-injection": "^4.4|^5.0",
  3833. "symfony/event-dispatcher": "^4.4|^5.0",
  3834. "symfony/lock": "^4.4|^5.0",
  3835. "symfony/process": "^4.4|^5.0",
  3836. "symfony/var-dumper": "^4.4|^5.0"
  3837. },
  3838. "suggest": {
  3839. "psr/log": "For using the console logger",
  3840. "symfony/event-dispatcher": "",
  3841. "symfony/lock": "",
  3842. "symfony/process": ""
  3843. },
  3844. "type": "library",
  3845. "extra": {
  3846. "branch-alias": {
  3847. "dev-master": "5.0-dev"
  3848. }
  3849. },
  3850. "autoload": {
  3851. "psr-4": {
  3852. "Symfony\\Component\\Console\\": ""
  3853. },
  3854. "exclude-from-classmap": [
  3855. "/Tests/"
  3856. ]
  3857. },
  3858. "notification-url": "https://packagist.org/downloads/",
  3859. "license": [
  3860. "MIT"
  3861. ],
  3862. "authors": [
  3863. {
  3864. "name": "Fabien Potencier",
  3865. "email": "fabien@symfony.com"
  3866. },
  3867. {
  3868. "name": "Symfony Community",
  3869. "homepage": "https://symfony.com/contributors"
  3870. }
  3871. ],
  3872. "description": "Symfony Console Component",
  3873. "homepage": "https://symfony.com",
  3874. "time": "2020-03-30T11:42:42+00:00"
  3875. },
  3876. {
  3877. "name": "symfony/css-selector",
  3878. "version": "v5.0.8",
  3879. "source": {
  3880. "type": "git",
  3881. "url": "https://github.com/symfony/css-selector.git",
  3882. "reference": "5f8d5271303dad260692ba73dfa21777d38e124e"
  3883. },
  3884. "dist": {
  3885. "type": "zip",
  3886. "url": "https://api.github.com/repos/symfony/css-selector/zipball/5f8d5271303dad260692ba73dfa21777d38e124e",
  3887. "reference": "5f8d5271303dad260692ba73dfa21777d38e124e",
  3888. "shasum": "",
  3889. "mirrors": [
  3890. {
  3891. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3892. "preferred": true
  3893. }
  3894. ]
  3895. },
  3896. "require": {
  3897. "php": "^7.2.5"
  3898. },
  3899. "type": "library",
  3900. "extra": {
  3901. "branch-alias": {
  3902. "dev-master": "5.0-dev"
  3903. }
  3904. },
  3905. "autoload": {
  3906. "psr-4": {
  3907. "Symfony\\Component\\CssSelector\\": ""
  3908. },
  3909. "exclude-from-classmap": [
  3910. "/Tests/"
  3911. ]
  3912. },
  3913. "notification-url": "https://packagist.org/downloads/",
  3914. "license": [
  3915. "MIT"
  3916. ],
  3917. "authors": [
  3918. {
  3919. "name": "Fabien Potencier",
  3920. "email": "fabien@symfony.com"
  3921. },
  3922. {
  3923. "name": "Jean-François Simon",
  3924. "email": "jeanfrancois.simon@sensiolabs.com"
  3925. },
  3926. {
  3927. "name": "Symfony Community",
  3928. "homepage": "https://symfony.com/contributors"
  3929. }
  3930. ],
  3931. "description": "Symfony CssSelector Component",
  3932. "homepage": "https://symfony.com",
  3933. "time": "2020-03-27T16:56:45+00:00"
  3934. },
  3935. {
  3936. "name": "symfony/error-handler",
  3937. "version": "v5.0.8",
  3938. "source": {
  3939. "type": "git",
  3940. "url": "https://github.com/symfony/error-handler.git",
  3941. "reference": "949ffc17c3ac3a9f8e6232220e2da33913c04ea4"
  3942. },
  3943. "dist": {
  3944. "type": "zip",
  3945. "url": "https://api.github.com/repos/symfony/error-handler/zipball/949ffc17c3ac3a9f8e6232220e2da33913c04ea4",
  3946. "reference": "949ffc17c3ac3a9f8e6232220e2da33913c04ea4",
  3947. "shasum": "",
  3948. "mirrors": [
  3949. {
  3950. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3951. "preferred": true
  3952. }
  3953. ]
  3954. },
  3955. "require": {
  3956. "php": "^7.2.5",
  3957. "psr/log": "^1.0",
  3958. "symfony/var-dumper": "^4.4|^5.0"
  3959. },
  3960. "require-dev": {
  3961. "symfony/http-kernel": "^4.4|^5.0",
  3962. "symfony/serializer": "^4.4|^5.0"
  3963. },
  3964. "type": "library",
  3965. "extra": {
  3966. "branch-alias": {
  3967. "dev-master": "5.0-dev"
  3968. }
  3969. },
  3970. "autoload": {
  3971. "psr-4": {
  3972. "Symfony\\Component\\ErrorHandler\\": ""
  3973. },
  3974. "exclude-from-classmap": [
  3975. "/Tests/"
  3976. ]
  3977. },
  3978. "notification-url": "https://packagist.org/downloads/",
  3979. "license": [
  3980. "MIT"
  3981. ],
  3982. "authors": [
  3983. {
  3984. "name": "Fabien Potencier",
  3985. "email": "fabien@symfony.com"
  3986. },
  3987. {
  3988. "name": "Symfony Community",
  3989. "homepage": "https://symfony.com/contributors"
  3990. }
  3991. ],
  3992. "description": "Symfony ErrorHandler Component",
  3993. "homepage": "https://symfony.com",
  3994. "time": "2020-03-30T14:14:32+00:00"
  3995. },
  3996. {
  3997. "name": "symfony/event-dispatcher",
  3998. "version": "v5.0.8",
  3999. "source": {
  4000. "type": "git",
  4001. "url": "https://github.com/symfony/event-dispatcher.git",
  4002. "reference": "24f40d95385774ed5c71dbf014edd047e2f2f3dc"
  4003. },
  4004. "dist": {
  4005. "type": "zip",
  4006. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/24f40d95385774ed5c71dbf014edd047e2f2f3dc",
  4007. "reference": "24f40d95385774ed5c71dbf014edd047e2f2f3dc",
  4008. "shasum": "",
  4009. "mirrors": [
  4010. {
  4011. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4012. "preferred": true
  4013. }
  4014. ]
  4015. },
  4016. "require": {
  4017. "php": "^7.2.5",
  4018. "symfony/event-dispatcher-contracts": "^2"
  4019. },
  4020. "conflict": {
  4021. "symfony/dependency-injection": "<4.4"
  4022. },
  4023. "provide": {
  4024. "psr/event-dispatcher-implementation": "1.0",
  4025. "symfony/event-dispatcher-implementation": "2.0"
  4026. },
  4027. "require-dev": {
  4028. "psr/log": "~1.0",
  4029. "symfony/config": "^4.4|^5.0",
  4030. "symfony/dependency-injection": "^4.4|^5.0",
  4031. "symfony/expression-language": "^4.4|^5.0",
  4032. "symfony/http-foundation": "^4.4|^5.0",
  4033. "symfony/service-contracts": "^1.1|^2",
  4034. "symfony/stopwatch": "^4.4|^5.0"
  4035. },
  4036. "suggest": {
  4037. "symfony/dependency-injection": "",
  4038. "symfony/http-kernel": ""
  4039. },
  4040. "type": "library",
  4041. "extra": {
  4042. "branch-alias": {
  4043. "dev-master": "5.0-dev"
  4044. }
  4045. },
  4046. "autoload": {
  4047. "psr-4": {
  4048. "Symfony\\Component\\EventDispatcher\\": ""
  4049. },
  4050. "exclude-from-classmap": [
  4051. "/Tests/"
  4052. ]
  4053. },
  4054. "notification-url": "https://packagist.org/downloads/",
  4055. "license": [
  4056. "MIT"
  4057. ],
  4058. "authors": [
  4059. {
  4060. "name": "Fabien Potencier",
  4061. "email": "fabien@symfony.com"
  4062. },
  4063. {
  4064. "name": "Symfony Community",
  4065. "homepage": "https://symfony.com/contributors"
  4066. }
  4067. ],
  4068. "description": "Symfony EventDispatcher Component",
  4069. "homepage": "https://symfony.com",
  4070. "time": "2020-03-27T16:56:45+00:00"
  4071. },
  4072. {
  4073. "name": "symfony/event-dispatcher-contracts",
  4074. "version": "v2.0.1",
  4075. "source": {
  4076. "type": "git",
  4077. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4078. "reference": "af23c2584d4577d54661c434446fb8fbed6025dd"
  4079. },
  4080. "dist": {
  4081. "type": "zip",
  4082. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/af23c2584d4577d54661c434446fb8fbed6025dd",
  4083. "reference": "af23c2584d4577d54661c434446fb8fbed6025dd",
  4084. "shasum": "",
  4085. "mirrors": [
  4086. {
  4087. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4088. "preferred": true
  4089. }
  4090. ]
  4091. },
  4092. "require": {
  4093. "php": "^7.2.5",
  4094. "psr/event-dispatcher": "^1"
  4095. },
  4096. "suggest": {
  4097. "symfony/event-dispatcher-implementation": ""
  4098. },
  4099. "type": "library",
  4100. "extra": {
  4101. "branch-alias": {
  4102. "dev-master": "2.0-dev"
  4103. }
  4104. },
  4105. "autoload": {
  4106. "psr-4": {
  4107. "Symfony\\Contracts\\EventDispatcher\\": ""
  4108. }
  4109. },
  4110. "notification-url": "https://packagist.org/downloads/",
  4111. "license": [
  4112. "MIT"
  4113. ],
  4114. "authors": [
  4115. {
  4116. "name": "Nicolas Grekas",
  4117. "email": "p@tchwork.com"
  4118. },
  4119. {
  4120. "name": "Symfony Community",
  4121. "homepage": "https://symfony.com/contributors"
  4122. }
  4123. ],
  4124. "description": "Generic abstractions related to dispatching event",
  4125. "homepage": "https://symfony.com",
  4126. "keywords": [
  4127. "abstractions",
  4128. "contracts",
  4129. "decoupling",
  4130. "interfaces",
  4131. "interoperability",
  4132. "standards"
  4133. ],
  4134. "time": "2019-11-18T17:27:11+00:00"
  4135. },
  4136. {
  4137. "name": "symfony/finder",
  4138. "version": "v5.0.8",
  4139. "source": {
  4140. "type": "git",
  4141. "url": "https://github.com/symfony/finder.git",
  4142. "reference": "600a52c29afc0d1caa74acbec8d3095ca7e9910d"
  4143. },
  4144. "dist": {
  4145. "type": "zip",
  4146. "url": "https://api.github.com/repos/symfony/finder/zipball/600a52c29afc0d1caa74acbec8d3095ca7e9910d",
  4147. "reference": "600a52c29afc0d1caa74acbec8d3095ca7e9910d",
  4148. "shasum": "",
  4149. "mirrors": [
  4150. {
  4151. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4152. "preferred": true
  4153. }
  4154. ]
  4155. },
  4156. "require": {
  4157. "php": "^7.2.5"
  4158. },
  4159. "type": "library",
  4160. "extra": {
  4161. "branch-alias": {
  4162. "dev-master": "5.0-dev"
  4163. }
  4164. },
  4165. "autoload": {
  4166. "psr-4": {
  4167. "Symfony\\Component\\Finder\\": ""
  4168. },
  4169. "exclude-from-classmap": [
  4170. "/Tests/"
  4171. ]
  4172. },
  4173. "notification-url": "https://packagist.org/downloads/",
  4174. "license": [
  4175. "MIT"
  4176. ],
  4177. "authors": [
  4178. {
  4179. "name": "Fabien Potencier",
  4180. "email": "fabien@symfony.com"
  4181. },
  4182. {
  4183. "name": "Symfony Community",
  4184. "homepage": "https://symfony.com/contributors"
  4185. }
  4186. ],
  4187. "description": "Symfony Finder Component",
  4188. "homepage": "https://symfony.com",
  4189. "time": "2020-03-27T16:56:45+00:00"
  4190. },
  4191. {
  4192. "name": "symfony/http-foundation",
  4193. "version": "v5.0.8",
  4194. "source": {
  4195. "type": "git",
  4196. "url": "https://github.com/symfony/http-foundation.git",
  4197. "reference": "e47fdf8b24edc12022ba52923150ec6484d7f57d"
  4198. },
  4199. "dist": {
  4200. "type": "zip",
  4201. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e47fdf8b24edc12022ba52923150ec6484d7f57d",
  4202. "reference": "e47fdf8b24edc12022ba52923150ec6484d7f57d",
  4203. "shasum": "",
  4204. "mirrors": [
  4205. {
  4206. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4207. "preferred": true
  4208. }
  4209. ]
  4210. },
  4211. "require": {
  4212. "php": "^7.2.5",
  4213. "symfony/mime": "^4.4|^5.0",
  4214. "symfony/polyfill-mbstring": "~1.1"
  4215. },
  4216. "require-dev": {
  4217. "predis/predis": "~1.0",
  4218. "symfony/expression-language": "^4.4|^5.0"
  4219. },
  4220. "type": "library",
  4221. "extra": {
  4222. "branch-alias": {
  4223. "dev-master": "5.0-dev"
  4224. }
  4225. },
  4226. "autoload": {
  4227. "psr-4": {
  4228. "Symfony\\Component\\HttpFoundation\\": ""
  4229. },
  4230. "exclude-from-classmap": [
  4231. "/Tests/"
  4232. ]
  4233. },
  4234. "notification-url": "https://packagist.org/downloads/",
  4235. "license": [
  4236. "MIT"
  4237. ],
  4238. "authors": [
  4239. {
  4240. "name": "Fabien Potencier",
  4241. "email": "fabien@symfony.com"
  4242. },
  4243. {
  4244. "name": "Symfony Community",
  4245. "homepage": "https://symfony.com/contributors"
  4246. }
  4247. ],
  4248. "description": "Symfony HttpFoundation Component",
  4249. "homepage": "https://symfony.com",
  4250. "time": "2020-04-18T20:50:06+00:00"
  4251. },
  4252. {
  4253. "name": "symfony/http-kernel",
  4254. "version": "v5.0.8",
  4255. "source": {
  4256. "type": "git",
  4257. "url": "https://github.com/symfony/http-kernel.git",
  4258. "reference": "3565e51eecd06106304baba5ccb7ba89db2d7d2b"
  4259. },
  4260. "dist": {
  4261. "type": "zip",
  4262. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/3565e51eecd06106304baba5ccb7ba89db2d7d2b",
  4263. "reference": "3565e51eecd06106304baba5ccb7ba89db2d7d2b",
  4264. "shasum": "",
  4265. "mirrors": [
  4266. {
  4267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4268. "preferred": true
  4269. }
  4270. ]
  4271. },
  4272. "require": {
  4273. "php": "^7.2.5",
  4274. "psr/log": "~1.0",
  4275. "symfony/error-handler": "^4.4|^5.0",
  4276. "symfony/event-dispatcher": "^5.0",
  4277. "symfony/http-foundation": "^4.4|^5.0",
  4278. "symfony/polyfill-ctype": "^1.8",
  4279. "symfony/polyfill-php73": "^1.9"
  4280. },
  4281. "conflict": {
  4282. "symfony/browser-kit": "<4.4",
  4283. "symfony/cache": "<5.0",
  4284. "symfony/config": "<5.0",
  4285. "symfony/console": "<4.4",
  4286. "symfony/dependency-injection": "<4.4",
  4287. "symfony/doctrine-bridge": "<5.0",
  4288. "symfony/form": "<5.0",
  4289. "symfony/http-client": "<5.0",
  4290. "symfony/mailer": "<5.0",
  4291. "symfony/messenger": "<5.0",
  4292. "symfony/translation": "<5.0",
  4293. "symfony/twig-bridge": "<5.0",
  4294. "symfony/validator": "<5.0",
  4295. "twig/twig": "<2.4"
  4296. },
  4297. "provide": {
  4298. "psr/log-implementation": "1.0"
  4299. },
  4300. "require-dev": {
  4301. "psr/cache": "~1.0",
  4302. "symfony/browser-kit": "^4.4|^5.0",
  4303. "symfony/config": "^5.0",
  4304. "symfony/console": "^4.4|^5.0",
  4305. "symfony/css-selector": "^4.4|^5.0",
  4306. "symfony/dependency-injection": "^4.4|^5.0",
  4307. "symfony/dom-crawler": "^4.4|^5.0",
  4308. "symfony/expression-language": "^4.4|^5.0",
  4309. "symfony/finder": "^4.4|^5.0",
  4310. "symfony/process": "^4.4|^5.0",
  4311. "symfony/routing": "^4.4|^5.0",
  4312. "symfony/stopwatch": "^4.4|^5.0",
  4313. "symfony/translation": "^4.4|^5.0",
  4314. "symfony/translation-contracts": "^1.1|^2",
  4315. "twig/twig": "^2.4|^3.0"
  4316. },
  4317. "suggest": {
  4318. "symfony/browser-kit": "",
  4319. "symfony/config": "",
  4320. "symfony/console": "",
  4321. "symfony/dependency-injection": ""
  4322. },
  4323. "type": "library",
  4324. "extra": {
  4325. "branch-alias": {
  4326. "dev-master": "5.0-dev"
  4327. }
  4328. },
  4329. "autoload": {
  4330. "psr-4": {
  4331. "Symfony\\Component\\HttpKernel\\": ""
  4332. },
  4333. "exclude-from-classmap": [
  4334. "/Tests/"
  4335. ]
  4336. },
  4337. "notification-url": "https://packagist.org/downloads/",
  4338. "license": [
  4339. "MIT"
  4340. ],
  4341. "authors": [
  4342. {
  4343. "name": "Fabien Potencier",
  4344. "email": "fabien@symfony.com"
  4345. },
  4346. {
  4347. "name": "Symfony Community",
  4348. "homepage": "https://symfony.com/contributors"
  4349. }
  4350. ],
  4351. "description": "Symfony HttpKernel Component",
  4352. "homepage": "https://symfony.com",
  4353. "time": "2020-04-28T18:53:25+00:00"
  4354. },
  4355. {
  4356. "name": "symfony/inflector",
  4357. "version": "v5.0.8",
  4358. "source": {
  4359. "type": "git",
  4360. "url": "https://github.com/symfony/inflector.git",
  4361. "reference": "70c25c66427e2bb6ba0827d668366d60b0a90cbf"
  4362. },
  4363. "dist": {
  4364. "type": "zip",
  4365. "url": "https://api.github.com/repos/symfony/inflector/zipball/70c25c66427e2bb6ba0827d668366d60b0a90cbf",
  4366. "reference": "70c25c66427e2bb6ba0827d668366d60b0a90cbf",
  4367. "shasum": "",
  4368. "mirrors": [
  4369. {
  4370. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4371. "preferred": true
  4372. }
  4373. ]
  4374. },
  4375. "require": {
  4376. "php": "^7.2.5",
  4377. "symfony/polyfill-ctype": "~1.8"
  4378. },
  4379. "type": "library",
  4380. "extra": {
  4381. "branch-alias": {
  4382. "dev-master": "5.0-dev"
  4383. }
  4384. },
  4385. "autoload": {
  4386. "psr-4": {
  4387. "Symfony\\Component\\Inflector\\": ""
  4388. },
  4389. "exclude-from-classmap": [
  4390. "/Tests/"
  4391. ]
  4392. },
  4393. "notification-url": "https://packagist.org/downloads/",
  4394. "license": [
  4395. "MIT"
  4396. ],
  4397. "authors": [
  4398. {
  4399. "name": "Bernhard Schussek",
  4400. "email": "bschussek@gmail.com"
  4401. },
  4402. {
  4403. "name": "Symfony Community",
  4404. "homepage": "https://symfony.com/contributors"
  4405. }
  4406. ],
  4407. "description": "Symfony Inflector Component",
  4408. "homepage": "https://symfony.com",
  4409. "keywords": [
  4410. "inflection",
  4411. "pluralize",
  4412. "singularize",
  4413. "string",
  4414. "symfony",
  4415. "words"
  4416. ],
  4417. "time": "2020-03-27T16:56:45+00:00"
  4418. },
  4419. {
  4420. "name": "symfony/mime",
  4421. "version": "v5.0.8",
  4422. "source": {
  4423. "type": "git",
  4424. "url": "https://github.com/symfony/mime.git",
  4425. "reference": "5d6c81c39225a750f3f43bee15f03093fb9aaa0b"
  4426. },
  4427. "dist": {
  4428. "type": "zip",
  4429. "url": "https://api.github.com/repos/symfony/mime/zipball/5d6c81c39225a750f3f43bee15f03093fb9aaa0b",
  4430. "reference": "5d6c81c39225a750f3f43bee15f03093fb9aaa0b",
  4431. "shasum": "",
  4432. "mirrors": [
  4433. {
  4434. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4435. "preferred": true
  4436. }
  4437. ]
  4438. },
  4439. "require": {
  4440. "php": "^7.2.5",
  4441. "symfony/polyfill-intl-idn": "^1.10",
  4442. "symfony/polyfill-mbstring": "^1.0"
  4443. },
  4444. "conflict": {
  4445. "symfony/mailer": "<4.4"
  4446. },
  4447. "require-dev": {
  4448. "egulias/email-validator": "^2.1.10",
  4449. "symfony/dependency-injection": "^4.4|^5.0"
  4450. },
  4451. "type": "library",
  4452. "extra": {
  4453. "branch-alias": {
  4454. "dev-master": "5.0-dev"
  4455. }
  4456. },
  4457. "autoload": {
  4458. "psr-4": {
  4459. "Symfony\\Component\\Mime\\": ""
  4460. },
  4461. "exclude-from-classmap": [
  4462. "/Tests/"
  4463. ]
  4464. },
  4465. "notification-url": "https://packagist.org/downloads/",
  4466. "license": [
  4467. "MIT"
  4468. ],
  4469. "authors": [
  4470. {
  4471. "name": "Fabien Potencier",
  4472. "email": "fabien@symfony.com"
  4473. },
  4474. {
  4475. "name": "Symfony Community",
  4476. "homepage": "https://symfony.com/contributors"
  4477. }
  4478. ],
  4479. "description": "A library to manipulate MIME messages",
  4480. "homepage": "https://symfony.com",
  4481. "keywords": [
  4482. "mime",
  4483. "mime-type"
  4484. ],
  4485. "time": "2020-04-17T03:29:44+00:00"
  4486. },
  4487. {
  4488. "name": "symfony/options-resolver",
  4489. "version": "v5.0.8",
  4490. "source": {
  4491. "type": "git",
  4492. "url": "https://github.com/symfony/options-resolver.git",
  4493. "reference": "3707e3caeff2b797c0bfaadd5eba723dd44e6bf1"
  4494. },
  4495. "dist": {
  4496. "type": "zip",
  4497. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/3707e3caeff2b797c0bfaadd5eba723dd44e6bf1",
  4498. "reference": "3707e3caeff2b797c0bfaadd5eba723dd44e6bf1",
  4499. "shasum": "",
  4500. "mirrors": [
  4501. {
  4502. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4503. "preferred": true
  4504. }
  4505. ]
  4506. },
  4507. "require": {
  4508. "php": "^7.2.5"
  4509. },
  4510. "type": "library",
  4511. "extra": {
  4512. "branch-alias": {
  4513. "dev-master": "5.0-dev"
  4514. }
  4515. },
  4516. "autoload": {
  4517. "psr-4": {
  4518. "Symfony\\Component\\OptionsResolver\\": ""
  4519. },
  4520. "exclude-from-classmap": [
  4521. "/Tests/"
  4522. ]
  4523. },
  4524. "notification-url": "https://packagist.org/downloads/",
  4525. "license": [
  4526. "MIT"
  4527. ],
  4528. "authors": [
  4529. {
  4530. "name": "Fabien Potencier",
  4531. "email": "fabien@symfony.com"
  4532. },
  4533. {
  4534. "name": "Symfony Community",
  4535. "homepage": "https://symfony.com/contributors"
  4536. }
  4537. ],
  4538. "description": "Symfony OptionsResolver Component",
  4539. "homepage": "https://symfony.com",
  4540. "keywords": [
  4541. "config",
  4542. "configuration",
  4543. "options"
  4544. ],
  4545. "time": "2020-04-06T10:40:56+00:00"
  4546. },
  4547. {
  4548. "name": "symfony/polyfill-ctype",
  4549. "version": "v1.17.0",
  4550. "source": {
  4551. "type": "git",
  4552. "url": "https://github.com/symfony/polyfill-ctype.git",
  4553. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  4554. },
  4555. "dist": {
  4556. "type": "zip",
  4557. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  4558. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  4559. "shasum": "",
  4560. "mirrors": [
  4561. {
  4562. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4563. "preferred": true
  4564. }
  4565. ]
  4566. },
  4567. "require": {
  4568. "php": ">=5.3.3"
  4569. },
  4570. "suggest": {
  4571. "ext-ctype": "For best performance"
  4572. },
  4573. "type": "library",
  4574. "extra": {
  4575. "branch-alias": {
  4576. "dev-master": "1.17-dev"
  4577. }
  4578. },
  4579. "autoload": {
  4580. "psr-4": {
  4581. "Symfony\\Polyfill\\Ctype\\": ""
  4582. },
  4583. "files": [
  4584. "bootstrap.php"
  4585. ]
  4586. },
  4587. "notification-url": "https://packagist.org/downloads/",
  4588. "license": [
  4589. "MIT"
  4590. ],
  4591. "authors": [
  4592. {
  4593. "name": "Gert de Pagter",
  4594. "email": "BackEndTea@gmail.com"
  4595. },
  4596. {
  4597. "name": "Symfony Community",
  4598. "homepage": "https://symfony.com/contributors"
  4599. }
  4600. ],
  4601. "description": "Symfony polyfill for ctype functions",
  4602. "homepage": "https://symfony.com",
  4603. "keywords": [
  4604. "compatibility",
  4605. "ctype",
  4606. "polyfill",
  4607. "portable"
  4608. ],
  4609. "funding": [
  4610. {
  4611. "url": "https://symfony.com/sponsor",
  4612. "type": "custom"
  4613. },
  4614. {
  4615. "url": "https://github.com/fabpot",
  4616. "type": "github"
  4617. },
  4618. {
  4619. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4620. "type": "tidelift"
  4621. }
  4622. ],
  4623. "time": "2020-05-12T16:14:59+00:00"
  4624. },
  4625. {
  4626. "name": "symfony/polyfill-iconv",
  4627. "version": "v1.17.0",
  4628. "source": {
  4629. "type": "git",
  4630. "url": "https://github.com/symfony/polyfill-iconv.git",
  4631. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  4632. },
  4633. "dist": {
  4634. "type": "zip",
  4635. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  4636. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  4637. "shasum": "",
  4638. "mirrors": [
  4639. {
  4640. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4641. "preferred": true
  4642. }
  4643. ]
  4644. },
  4645. "require": {
  4646. "php": ">=5.3.3"
  4647. },
  4648. "suggest": {
  4649. "ext-iconv": "For best performance"
  4650. },
  4651. "type": "library",
  4652. "extra": {
  4653. "branch-alias": {
  4654. "dev-master": "1.17-dev"
  4655. }
  4656. },
  4657. "autoload": {
  4658. "psr-4": {
  4659. "Symfony\\Polyfill\\Iconv\\": ""
  4660. },
  4661. "files": [
  4662. "bootstrap.php"
  4663. ]
  4664. },
  4665. "notification-url": "https://packagist.org/downloads/",
  4666. "license": [
  4667. "MIT"
  4668. ],
  4669. "authors": [
  4670. {
  4671. "name": "Nicolas Grekas",
  4672. "email": "p@tchwork.com"
  4673. },
  4674. {
  4675. "name": "Symfony Community",
  4676. "homepage": "https://symfony.com/contributors"
  4677. }
  4678. ],
  4679. "description": "Symfony polyfill for the Iconv extension",
  4680. "homepage": "https://symfony.com",
  4681. "keywords": [
  4682. "compatibility",
  4683. "iconv",
  4684. "polyfill",
  4685. "portable",
  4686. "shim"
  4687. ],
  4688. "funding": [
  4689. {
  4690. "url": "https://symfony.com/sponsor",
  4691. "type": "custom"
  4692. },
  4693. {
  4694. "url": "https://github.com/fabpot",
  4695. "type": "github"
  4696. },
  4697. {
  4698. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4699. "type": "tidelift"
  4700. }
  4701. ],
  4702. "time": "2020-05-12T16:47:27+00:00"
  4703. },
  4704. {
  4705. "name": "symfony/polyfill-intl-idn",
  4706. "version": "v1.17.0",
  4707. "source": {
  4708. "type": "git",
  4709. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4710. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  4711. },
  4712. "dist": {
  4713. "type": "zip",
  4714. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  4715. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  4716. "shasum": "",
  4717. "mirrors": [
  4718. {
  4719. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4720. "preferred": true
  4721. }
  4722. ]
  4723. },
  4724. "require": {
  4725. "php": ">=5.3.3",
  4726. "symfony/polyfill-mbstring": "^1.3",
  4727. "symfony/polyfill-php72": "^1.10"
  4728. },
  4729. "suggest": {
  4730. "ext-intl": "For best performance"
  4731. },
  4732. "type": "library",
  4733. "extra": {
  4734. "branch-alias": {
  4735. "dev-master": "1.17-dev"
  4736. }
  4737. },
  4738. "autoload": {
  4739. "psr-4": {
  4740. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4741. },
  4742. "files": [
  4743. "bootstrap.php"
  4744. ]
  4745. },
  4746. "notification-url": "https://packagist.org/downloads/",
  4747. "license": [
  4748. "MIT"
  4749. ],
  4750. "authors": [
  4751. {
  4752. "name": "Laurent Bassin",
  4753. "email": "laurent@bassin.info"
  4754. },
  4755. {
  4756. "name": "Symfony Community",
  4757. "homepage": "https://symfony.com/contributors"
  4758. }
  4759. ],
  4760. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4761. "homepage": "https://symfony.com",
  4762. "keywords": [
  4763. "compatibility",
  4764. "idn",
  4765. "intl",
  4766. "polyfill",
  4767. "portable",
  4768. "shim"
  4769. ],
  4770. "funding": [
  4771. {
  4772. "url": "https://symfony.com/sponsor",
  4773. "type": "custom"
  4774. },
  4775. {
  4776. "url": "https://github.com/fabpot",
  4777. "type": "github"
  4778. },
  4779. {
  4780. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4781. "type": "tidelift"
  4782. }
  4783. ],
  4784. "time": "2020-05-12T16:47:27+00:00"
  4785. },
  4786. {
  4787. "name": "symfony/polyfill-mbstring",
  4788. "version": "v1.17.0",
  4789. "source": {
  4790. "type": "git",
  4791. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4792. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  4793. },
  4794. "dist": {
  4795. "type": "zip",
  4796. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  4797. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  4798. "shasum": "",
  4799. "mirrors": [
  4800. {
  4801. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4802. "preferred": true
  4803. }
  4804. ]
  4805. },
  4806. "require": {
  4807. "php": ">=5.3.3"
  4808. },
  4809. "suggest": {
  4810. "ext-mbstring": "For best performance"
  4811. },
  4812. "type": "library",
  4813. "extra": {
  4814. "branch-alias": {
  4815. "dev-master": "1.17-dev"
  4816. }
  4817. },
  4818. "autoload": {
  4819. "psr-4": {
  4820. "Symfony\\Polyfill\\Mbstring\\": ""
  4821. },
  4822. "files": [
  4823. "bootstrap.php"
  4824. ]
  4825. },
  4826. "notification-url": "https://packagist.org/downloads/",
  4827. "license": [
  4828. "MIT"
  4829. ],
  4830. "authors": [
  4831. {
  4832. "name": "Nicolas Grekas",
  4833. "email": "p@tchwork.com"
  4834. },
  4835. {
  4836. "name": "Symfony Community",
  4837. "homepage": "https://symfony.com/contributors"
  4838. }
  4839. ],
  4840. "description": "Symfony polyfill for the Mbstring extension",
  4841. "homepage": "https://symfony.com",
  4842. "keywords": [
  4843. "compatibility",
  4844. "mbstring",
  4845. "polyfill",
  4846. "portable",
  4847. "shim"
  4848. ],
  4849. "funding": [
  4850. {
  4851. "url": "https://symfony.com/sponsor",
  4852. "type": "custom"
  4853. },
  4854. {
  4855. "url": "https://github.com/fabpot",
  4856. "type": "github"
  4857. },
  4858. {
  4859. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4860. "type": "tidelift"
  4861. }
  4862. ],
  4863. "time": "2020-05-12T16:47:27+00:00"
  4864. },
  4865. {
  4866. "name": "symfony/polyfill-php72",
  4867. "version": "v1.17.0",
  4868. "source": {
  4869. "type": "git",
  4870. "url": "https://github.com/symfony/polyfill-php72.git",
  4871. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  4872. },
  4873. "dist": {
  4874. "type": "zip",
  4875. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  4876. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  4877. "shasum": "",
  4878. "mirrors": [
  4879. {
  4880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4881. "preferred": true
  4882. }
  4883. ]
  4884. },
  4885. "require": {
  4886. "php": ">=5.3.3"
  4887. },
  4888. "type": "library",
  4889. "extra": {
  4890. "branch-alias": {
  4891. "dev-master": "1.17-dev"
  4892. }
  4893. },
  4894. "autoload": {
  4895. "psr-4": {
  4896. "Symfony\\Polyfill\\Php72\\": ""
  4897. },
  4898. "files": [
  4899. "bootstrap.php"
  4900. ]
  4901. },
  4902. "notification-url": "https://packagist.org/downloads/",
  4903. "license": [
  4904. "MIT"
  4905. ],
  4906. "authors": [
  4907. {
  4908. "name": "Nicolas Grekas",
  4909. "email": "p@tchwork.com"
  4910. },
  4911. {
  4912. "name": "Symfony Community",
  4913. "homepage": "https://symfony.com/contributors"
  4914. }
  4915. ],
  4916. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4917. "homepage": "https://symfony.com",
  4918. "keywords": [
  4919. "compatibility",
  4920. "polyfill",
  4921. "portable",
  4922. "shim"
  4923. ],
  4924. "funding": [
  4925. {
  4926. "url": "https://symfony.com/sponsor",
  4927. "type": "custom"
  4928. },
  4929. {
  4930. "url": "https://github.com/fabpot",
  4931. "type": "github"
  4932. },
  4933. {
  4934. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4935. "type": "tidelift"
  4936. }
  4937. ],
  4938. "time": "2020-05-12T16:47:27+00:00"
  4939. },
  4940. {
  4941. "name": "symfony/polyfill-php73",
  4942. "version": "v1.17.0",
  4943. "source": {
  4944. "type": "git",
  4945. "url": "https://github.com/symfony/polyfill-php73.git",
  4946. "reference": "a760d8964ff79ab9bf057613a5808284ec852ccc"
  4947. },
  4948. "dist": {
  4949. "type": "zip",
  4950. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a760d8964ff79ab9bf057613a5808284ec852ccc",
  4951. "reference": "a760d8964ff79ab9bf057613a5808284ec852ccc",
  4952. "shasum": "",
  4953. "mirrors": [
  4954. {
  4955. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4956. "preferred": true
  4957. }
  4958. ]
  4959. },
  4960. "require": {
  4961. "php": ">=5.3.3"
  4962. },
  4963. "type": "library",
  4964. "extra": {
  4965. "branch-alias": {
  4966. "dev-master": "1.17-dev"
  4967. }
  4968. },
  4969. "autoload": {
  4970. "psr-4": {
  4971. "Symfony\\Polyfill\\Php73\\": ""
  4972. },
  4973. "files": [
  4974. "bootstrap.php"
  4975. ],
  4976. "classmap": [
  4977. "Resources/stubs"
  4978. ]
  4979. },
  4980. "notification-url": "https://packagist.org/downloads/",
  4981. "license": [
  4982. "MIT"
  4983. ],
  4984. "authors": [
  4985. {
  4986. "name": "Nicolas Grekas",
  4987. "email": "p@tchwork.com"
  4988. },
  4989. {
  4990. "name": "Symfony Community",
  4991. "homepage": "https://symfony.com/contributors"
  4992. }
  4993. ],
  4994. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4995. "homepage": "https://symfony.com",
  4996. "keywords": [
  4997. "compatibility",
  4998. "polyfill",
  4999. "portable",
  5000. "shim"
  5001. ],
  5002. "funding": [
  5003. {
  5004. "url": "https://symfony.com/sponsor",
  5005. "type": "custom"
  5006. },
  5007. {
  5008. "url": "https://github.com/fabpot",
  5009. "type": "github"
  5010. },
  5011. {
  5012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5013. "type": "tidelift"
  5014. }
  5015. ],
  5016. "time": "2020-05-12T16:47:27+00:00"
  5017. },
  5018. {
  5019. "name": "symfony/process",
  5020. "version": "v5.0.8",
  5021. "source": {
  5022. "type": "git",
  5023. "url": "https://github.com/symfony/process.git",
  5024. "reference": "3179f68dff5bad14d38c4114a1dab98030801fd7"
  5025. },
  5026. "dist": {
  5027. "type": "zip",
  5028. "url": "https://api.github.com/repos/symfony/process/zipball/3179f68dff5bad14d38c4114a1dab98030801fd7",
  5029. "reference": "3179f68dff5bad14d38c4114a1dab98030801fd7",
  5030. "shasum": "",
  5031. "mirrors": [
  5032. {
  5033. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5034. "preferred": true
  5035. }
  5036. ]
  5037. },
  5038. "require": {
  5039. "php": "^7.2.5"
  5040. },
  5041. "type": "library",
  5042. "extra": {
  5043. "branch-alias": {
  5044. "dev-master": "5.0-dev"
  5045. }
  5046. },
  5047. "autoload": {
  5048. "psr-4": {
  5049. "Symfony\\Component\\Process\\": ""
  5050. },
  5051. "exclude-from-classmap": [
  5052. "/Tests/"
  5053. ]
  5054. },
  5055. "notification-url": "https://packagist.org/downloads/",
  5056. "license": [
  5057. "MIT"
  5058. ],
  5059. "authors": [
  5060. {
  5061. "name": "Fabien Potencier",
  5062. "email": "fabien@symfony.com"
  5063. },
  5064. {
  5065. "name": "Symfony Community",
  5066. "homepage": "https://symfony.com/contributors"
  5067. }
  5068. ],
  5069. "description": "Symfony Process Component",
  5070. "homepage": "https://symfony.com",
  5071. "time": "2020-04-15T15:59:10+00:00"
  5072. },
  5073. {
  5074. "name": "symfony/property-access",
  5075. "version": "v5.0.8",
  5076. "source": {
  5077. "type": "git",
  5078. "url": "https://github.com/symfony/property-access.git",
  5079. "reference": "259f26529231ab653fc96fb358e5e41dbb438aed"
  5080. },
  5081. "dist": {
  5082. "type": "zip",
  5083. "url": "https://api.github.com/repos/symfony/property-access/zipball/259f26529231ab653fc96fb358e5e41dbb438aed",
  5084. "reference": "259f26529231ab653fc96fb358e5e41dbb438aed",
  5085. "shasum": "",
  5086. "mirrors": [
  5087. {
  5088. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5089. "preferred": true
  5090. }
  5091. ]
  5092. },
  5093. "require": {
  5094. "php": "^7.2.5",
  5095. "symfony/inflector": "^4.4|^5.0"
  5096. },
  5097. "require-dev": {
  5098. "symfony/cache": "^4.4|^5.0"
  5099. },
  5100. "suggest": {
  5101. "psr/cache-implementation": "To cache access methods."
  5102. },
  5103. "type": "library",
  5104. "extra": {
  5105. "branch-alias": {
  5106. "dev-master": "5.0-dev"
  5107. }
  5108. },
  5109. "autoload": {
  5110. "psr-4": {
  5111. "Symfony\\Component\\PropertyAccess\\": ""
  5112. },
  5113. "exclude-from-classmap": [
  5114. "/Tests/"
  5115. ]
  5116. },
  5117. "notification-url": "https://packagist.org/downloads/",
  5118. "license": [
  5119. "MIT"
  5120. ],
  5121. "authors": [
  5122. {
  5123. "name": "Fabien Potencier",
  5124. "email": "fabien@symfony.com"
  5125. },
  5126. {
  5127. "name": "Symfony Community",
  5128. "homepage": "https://symfony.com/contributors"
  5129. }
  5130. ],
  5131. "description": "Symfony PropertyAccess Component",
  5132. "homepage": "https://symfony.com",
  5133. "keywords": [
  5134. "access",
  5135. "array",
  5136. "extraction",
  5137. "index",
  5138. "injection",
  5139. "object",
  5140. "property",
  5141. "property path",
  5142. "reflection"
  5143. ],
  5144. "time": "2020-04-15T15:59:10+00:00"
  5145. },
  5146. {
  5147. "name": "symfony/routing",
  5148. "version": "v5.0.8",
  5149. "source": {
  5150. "type": "git",
  5151. "url": "https://github.com/symfony/routing.git",
  5152. "reference": "9b18480a6e101f8d9ab7c483ace7c19441be5111"
  5153. },
  5154. "dist": {
  5155. "type": "zip",
  5156. "url": "https://api.github.com/repos/symfony/routing/zipball/9b18480a6e101f8d9ab7c483ace7c19441be5111",
  5157. "reference": "9b18480a6e101f8d9ab7c483ace7c19441be5111",
  5158. "shasum": "",
  5159. "mirrors": [
  5160. {
  5161. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5162. "preferred": true
  5163. }
  5164. ]
  5165. },
  5166. "require": {
  5167. "php": "^7.2.5"
  5168. },
  5169. "conflict": {
  5170. "symfony/config": "<5.0",
  5171. "symfony/dependency-injection": "<4.4",
  5172. "symfony/yaml": "<4.4"
  5173. },
  5174. "require-dev": {
  5175. "doctrine/annotations": "~1.2",
  5176. "psr/log": "~1.0",
  5177. "symfony/config": "^5.0",
  5178. "symfony/dependency-injection": "^4.4|^5.0",
  5179. "symfony/expression-language": "^4.4|^5.0",
  5180. "symfony/http-foundation": "^4.4|^5.0",
  5181. "symfony/yaml": "^4.4|^5.0"
  5182. },
  5183. "suggest": {
  5184. "doctrine/annotations": "For using the annotation loader",
  5185. "symfony/config": "For using the all-in-one router or any loader",
  5186. "symfony/expression-language": "For using expression matching",
  5187. "symfony/http-foundation": "For using a Symfony Request object",
  5188. "symfony/yaml": "For using the YAML loader"
  5189. },
  5190. "type": "library",
  5191. "extra": {
  5192. "branch-alias": {
  5193. "dev-master": "5.0-dev"
  5194. }
  5195. },
  5196. "autoload": {
  5197. "psr-4": {
  5198. "Symfony\\Component\\Routing\\": ""
  5199. },
  5200. "exclude-from-classmap": [
  5201. "/Tests/"
  5202. ]
  5203. },
  5204. "notification-url": "https://packagist.org/downloads/",
  5205. "license": [
  5206. "MIT"
  5207. ],
  5208. "authors": [
  5209. {
  5210. "name": "Fabien Potencier",
  5211. "email": "fabien@symfony.com"
  5212. },
  5213. {
  5214. "name": "Symfony Community",
  5215. "homepage": "https://symfony.com/contributors"
  5216. }
  5217. ],
  5218. "description": "Symfony Routing Component",
  5219. "homepage": "https://symfony.com",
  5220. "keywords": [
  5221. "router",
  5222. "routing",
  5223. "uri",
  5224. "url"
  5225. ],
  5226. "time": "2020-04-21T21:02:50+00:00"
  5227. },
  5228. {
  5229. "name": "symfony/service-contracts",
  5230. "version": "v2.0.1",
  5231. "source": {
  5232. "type": "git",
  5233. "url": "https://github.com/symfony/service-contracts.git",
  5234. "reference": "144c5e51266b281231e947b51223ba14acf1a749"
  5235. },
  5236. "dist": {
  5237. "type": "zip",
  5238. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/144c5e51266b281231e947b51223ba14acf1a749",
  5239. "reference": "144c5e51266b281231e947b51223ba14acf1a749",
  5240. "shasum": "",
  5241. "mirrors": [
  5242. {
  5243. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5244. "preferred": true
  5245. }
  5246. ]
  5247. },
  5248. "require": {
  5249. "php": "^7.2.5",
  5250. "psr/container": "^1.0"
  5251. },
  5252. "suggest": {
  5253. "symfony/service-implementation": ""
  5254. },
  5255. "type": "library",
  5256. "extra": {
  5257. "branch-alias": {
  5258. "dev-master": "2.0-dev"
  5259. }
  5260. },
  5261. "autoload": {
  5262. "psr-4": {
  5263. "Symfony\\Contracts\\Service\\": ""
  5264. }
  5265. },
  5266. "notification-url": "https://packagist.org/downloads/",
  5267. "license": [
  5268. "MIT"
  5269. ],
  5270. "authors": [
  5271. {
  5272. "name": "Nicolas Grekas",
  5273. "email": "p@tchwork.com"
  5274. },
  5275. {
  5276. "name": "Symfony Community",
  5277. "homepage": "https://symfony.com/contributors"
  5278. }
  5279. ],
  5280. "description": "Generic abstractions related to writing services",
  5281. "homepage": "https://symfony.com",
  5282. "keywords": [
  5283. "abstractions",
  5284. "contracts",
  5285. "decoupling",
  5286. "interfaces",
  5287. "interoperability",
  5288. "standards"
  5289. ],
  5290. "time": "2019-11-18T17:27:11+00:00"
  5291. },
  5292. {
  5293. "name": "symfony/translation",
  5294. "version": "v5.0.8",
  5295. "source": {
  5296. "type": "git",
  5297. "url": "https://github.com/symfony/translation.git",
  5298. "reference": "c3879db7a68fe3e12b41263b05879412c87b27fd"
  5299. },
  5300. "dist": {
  5301. "type": "zip",
  5302. "url": "https://api.github.com/repos/symfony/translation/zipball/c3879db7a68fe3e12b41263b05879412c87b27fd",
  5303. "reference": "c3879db7a68fe3e12b41263b05879412c87b27fd",
  5304. "shasum": "",
  5305. "mirrors": [
  5306. {
  5307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5308. "preferred": true
  5309. }
  5310. ]
  5311. },
  5312. "require": {
  5313. "php": "^7.2.5",
  5314. "symfony/polyfill-mbstring": "~1.0",
  5315. "symfony/translation-contracts": "^2"
  5316. },
  5317. "conflict": {
  5318. "symfony/config": "<4.4",
  5319. "symfony/dependency-injection": "<5.0",
  5320. "symfony/http-kernel": "<5.0",
  5321. "symfony/twig-bundle": "<5.0",
  5322. "symfony/yaml": "<4.4"
  5323. },
  5324. "provide": {
  5325. "symfony/translation-implementation": "2.0"
  5326. },
  5327. "require-dev": {
  5328. "psr/log": "~1.0",
  5329. "symfony/config": "^4.4|^5.0",
  5330. "symfony/console": "^4.4|^5.0",
  5331. "symfony/dependency-injection": "^5.0",
  5332. "symfony/finder": "^4.4|^5.0",
  5333. "symfony/http-kernel": "^5.0",
  5334. "symfony/intl": "^4.4|^5.0",
  5335. "symfony/service-contracts": "^1.1.2|^2",
  5336. "symfony/yaml": "^4.4|^5.0"
  5337. },
  5338. "suggest": {
  5339. "psr/log-implementation": "To use logging capability in translator",
  5340. "symfony/config": "",
  5341. "symfony/yaml": ""
  5342. },
  5343. "type": "library",
  5344. "extra": {
  5345. "branch-alias": {
  5346. "dev-master": "5.0-dev"
  5347. }
  5348. },
  5349. "autoload": {
  5350. "psr-4": {
  5351. "Symfony\\Component\\Translation\\": ""
  5352. },
  5353. "exclude-from-classmap": [
  5354. "/Tests/"
  5355. ]
  5356. },
  5357. "notification-url": "https://packagist.org/downloads/",
  5358. "license": [
  5359. "MIT"
  5360. ],
  5361. "authors": [
  5362. {
  5363. "name": "Fabien Potencier",
  5364. "email": "fabien@symfony.com"
  5365. },
  5366. {
  5367. "name": "Symfony Community",
  5368. "homepage": "https://symfony.com/contributors"
  5369. }
  5370. ],
  5371. "description": "Symfony Translation Component",
  5372. "homepage": "https://symfony.com",
  5373. "time": "2020-04-12T16:45:47+00:00"
  5374. },
  5375. {
  5376. "name": "symfony/translation-contracts",
  5377. "version": "v2.0.1",
  5378. "source": {
  5379. "type": "git",
  5380. "url": "https://github.com/symfony/translation-contracts.git",
  5381. "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed"
  5382. },
  5383. "dist": {
  5384. "type": "zip",
  5385. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/8cc682ac458d75557203b2f2f14b0b92e1c744ed",
  5386. "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed",
  5387. "shasum": "",
  5388. "mirrors": [
  5389. {
  5390. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5391. "preferred": true
  5392. }
  5393. ]
  5394. },
  5395. "require": {
  5396. "php": "^7.2.5"
  5397. },
  5398. "suggest": {
  5399. "symfony/translation-implementation": ""
  5400. },
  5401. "type": "library",
  5402. "extra": {
  5403. "branch-alias": {
  5404. "dev-master": "2.0-dev"
  5405. }
  5406. },
  5407. "autoload": {
  5408. "psr-4": {
  5409. "Symfony\\Contracts\\Translation\\": ""
  5410. }
  5411. },
  5412. "notification-url": "https://packagist.org/downloads/",
  5413. "license": [
  5414. "MIT"
  5415. ],
  5416. "authors": [
  5417. {
  5418. "name": "Nicolas Grekas",
  5419. "email": "p@tchwork.com"
  5420. },
  5421. {
  5422. "name": "Symfony Community",
  5423. "homepage": "https://symfony.com/contributors"
  5424. }
  5425. ],
  5426. "description": "Generic abstractions related to translation",
  5427. "homepage": "https://symfony.com",
  5428. "keywords": [
  5429. "abstractions",
  5430. "contracts",
  5431. "decoupling",
  5432. "interfaces",
  5433. "interoperability",
  5434. "standards"
  5435. ],
  5436. "time": "2019-11-18T17:27:11+00:00"
  5437. },
  5438. {
  5439. "name": "symfony/var-dumper",
  5440. "version": "v5.0.8",
  5441. "source": {
  5442. "type": "git",
  5443. "url": "https://github.com/symfony/var-dumper.git",
  5444. "reference": "09de28632f16f81058a85fcf318397218272a07b"
  5445. },
  5446. "dist": {
  5447. "type": "zip",
  5448. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/09de28632f16f81058a85fcf318397218272a07b",
  5449. "reference": "09de28632f16f81058a85fcf318397218272a07b",
  5450. "shasum": "",
  5451. "mirrors": [
  5452. {
  5453. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5454. "preferred": true
  5455. }
  5456. ]
  5457. },
  5458. "require": {
  5459. "php": "^7.2.5",
  5460. "symfony/polyfill-mbstring": "~1.0"
  5461. },
  5462. "conflict": {
  5463. "phpunit/phpunit": "<5.4.3",
  5464. "symfony/console": "<4.4"
  5465. },
  5466. "require-dev": {
  5467. "ext-iconv": "*",
  5468. "symfony/console": "^4.4|^5.0",
  5469. "symfony/process": "^4.4|^5.0",
  5470. "twig/twig": "^2.4|^3.0"
  5471. },
  5472. "suggest": {
  5473. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5474. "ext-intl": "To show region name in time zone dump",
  5475. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5476. },
  5477. "bin": [
  5478. "Resources/bin/var-dump-server"
  5479. ],
  5480. "type": "library",
  5481. "extra": {
  5482. "branch-alias": {
  5483. "dev-master": "5.0-dev"
  5484. }
  5485. },
  5486. "autoload": {
  5487. "files": [
  5488. "Resources/functions/dump.php"
  5489. ],
  5490. "psr-4": {
  5491. "Symfony\\Component\\VarDumper\\": ""
  5492. },
  5493. "exclude-from-classmap": [
  5494. "/Tests/"
  5495. ]
  5496. },
  5497. "notification-url": "https://packagist.org/downloads/",
  5498. "license": [
  5499. "MIT"
  5500. ],
  5501. "authors": [
  5502. {
  5503. "name": "Nicolas Grekas",
  5504. "email": "p@tchwork.com"
  5505. },
  5506. {
  5507. "name": "Symfony Community",
  5508. "homepage": "https://symfony.com/contributors"
  5509. }
  5510. ],
  5511. "description": "Symfony mechanism for exploring and dumping PHP variables",
  5512. "homepage": "https://symfony.com",
  5513. "keywords": [
  5514. "debug",
  5515. "dump"
  5516. ],
  5517. "time": "2020-04-12T16:45:47+00:00"
  5518. },
  5519. {
  5520. "name": "te7a-houdini/laravel-trix",
  5521. "version": "2.0.1",
  5522. "source": {
  5523. "type": "git",
  5524. "url": "https://github.com/Te7a-Houdini/laravel-trix.git",
  5525. "reference": "495c4637eafc549a3933f9d9d11f4703e9b75967"
  5526. },
  5527. "dist": {
  5528. "type": "zip",
  5529. "url": "https://api.github.com/repos/Te7a-Houdini/laravel-trix/zipball/495c4637eafc549a3933f9d9d11f4703e9b75967",
  5530. "reference": "495c4637eafc549a3933f9d9d11f4703e9b75967",
  5531. "shasum": "",
  5532. "mirrors": [
  5533. {
  5534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5535. "preferred": true
  5536. }
  5537. ]
  5538. },
  5539. "require": {
  5540. "laravel/framework": "~5.8.0|~6.0|~7.0",
  5541. "php": "^7.1"
  5542. },
  5543. "require-dev": {
  5544. "orchestra/testbench": "^3.5|~4.0|~5.0"
  5545. },
  5546. "type": "library",
  5547. "extra": {
  5548. "laravel": {
  5549. "providers": [
  5550. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  5551. ]
  5552. }
  5553. },
  5554. "autoload": {
  5555. "psr-4": {
  5556. "Te7aHoudini\\LaravelTrix\\": "src"
  5557. }
  5558. },
  5559. "notification-url": "https://packagist.org/downloads/",
  5560. "license": [
  5561. "MIT"
  5562. ],
  5563. "authors": [
  5564. {
  5565. "name": "Ahmed Abd El Ftah",
  5566. "email": "ahmedabdelftah95165@gmail.com",
  5567. "role": "Developer"
  5568. }
  5569. ],
  5570. "description": "trix editor for laravel inspired by ActionText for rails",
  5571. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  5572. "keywords": [
  5573. "laravel-trix",
  5574. "te7a-houdini"
  5575. ],
  5576. "time": "2020-03-06T15:33:35+00:00"
  5577. },
  5578. {
  5579. "name": "tightenco/collect",
  5580. "version": "v5.6.33",
  5581. "source": {
  5582. "type": "git",
  5583. "url": "https://github.com/tightenco/collect.git",
  5584. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  5585. },
  5586. "dist": {
  5587. "type": "zip",
  5588. "url": "https://api.github.com/repos/tightenco/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  5589. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  5590. "shasum": "",
  5591. "mirrors": [
  5592. {
  5593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5594. "preferred": true
  5595. }
  5596. ]
  5597. },
  5598. "require": {
  5599. "php": ">=7.1.3",
  5600. "symfony/var-dumper": ">=3.1.10"
  5601. },
  5602. "require-dev": {
  5603. "mockery/mockery": "~1.0",
  5604. "nesbot/carbon": "~1.20",
  5605. "phpunit/phpunit": "~7.0"
  5606. },
  5607. "type": "library",
  5608. "autoload": {
  5609. "files": [
  5610. "src/Collect/Support/helpers.php",
  5611. "src/Collect/Support/alias.php"
  5612. ],
  5613. "psr-4": {
  5614. "Tightenco\\Collect\\": "src/Collect"
  5615. }
  5616. },
  5617. "notification-url": "https://packagist.org/downloads/",
  5618. "license": [
  5619. "MIT"
  5620. ],
  5621. "authors": [
  5622. {
  5623. "name": "Taylor Otwell",
  5624. "email": "taylorotwell@gmail.com"
  5625. }
  5626. ],
  5627. "description": "Collect - Illuminate Collections as a separate package.",
  5628. "keywords": [
  5629. "collection",
  5630. "laravel"
  5631. ],
  5632. "time": "2018-08-09T16:56:26+00:00"
  5633. },
  5634. {
  5635. "name": "tijsverkoyen/css-to-inline-styles",
  5636. "version": "2.2.2",
  5637. "source": {
  5638. "type": "git",
  5639. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5640. "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15"
  5641. },
  5642. "dist": {
  5643. "type": "zip",
  5644. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
  5645. "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
  5646. "shasum": "",
  5647. "mirrors": [
  5648. {
  5649. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5650. "preferred": true
  5651. }
  5652. ]
  5653. },
  5654. "require": {
  5655. "ext-dom": "*",
  5656. "ext-libxml": "*",
  5657. "php": "^5.5 || ^7.0",
  5658. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  5659. },
  5660. "require-dev": {
  5661. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  5662. },
  5663. "type": "library",
  5664. "extra": {
  5665. "branch-alias": {
  5666. "dev-master": "2.2.x-dev"
  5667. }
  5668. },
  5669. "autoload": {
  5670. "psr-4": {
  5671. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5672. }
  5673. },
  5674. "notification-url": "https://packagist.org/downloads/",
  5675. "license": [
  5676. "BSD-3-Clause"
  5677. ],
  5678. "authors": [
  5679. {
  5680. "name": "Tijs Verkoyen",
  5681. "email": "css_to_inline_styles@verkoyen.eu",
  5682. "role": "Developer"
  5683. }
  5684. ],
  5685. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  5686. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5687. "time": "2019-10-24T08:53:34+00:00"
  5688. },
  5689. {
  5690. "name": "vlucas/phpdotenv",
  5691. "version": "v4.1.6",
  5692. "source": {
  5693. "type": "git",
  5694. "url": "https://github.com/vlucas/phpdotenv.git",
  5695. "reference": "0b32505d67c1abbfa829283c86bfc0642a661bf6"
  5696. },
  5697. "dist": {
  5698. "type": "zip",
  5699. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/0b32505d67c1abbfa829283c86bfc0642a661bf6",
  5700. "reference": "0b32505d67c1abbfa829283c86bfc0642a661bf6",
  5701. "shasum": "",
  5702. "mirrors": [
  5703. {
  5704. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5705. "preferred": true
  5706. }
  5707. ]
  5708. },
  5709. "require": {
  5710. "php": "^5.5.9 || ^7.0 || ^8.0",
  5711. "phpoption/phpoption": "^1.7.2",
  5712. "symfony/polyfill-ctype": "^1.9"
  5713. },
  5714. "require-dev": {
  5715. "bamarni/composer-bin-plugin": "^1.3",
  5716. "ext-filter": "*",
  5717. "ext-pcre": "*",
  5718. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  5719. },
  5720. "suggest": {
  5721. "ext-filter": "Required to use the boolean validator.",
  5722. "ext-pcre": "Required to use most of the library."
  5723. },
  5724. "type": "library",
  5725. "extra": {
  5726. "branch-alias": {
  5727. "dev-master": "4.1-dev"
  5728. }
  5729. },
  5730. "autoload": {
  5731. "psr-4": {
  5732. "Dotenv\\": "src/"
  5733. }
  5734. },
  5735. "notification-url": "https://packagist.org/downloads/",
  5736. "license": [
  5737. "BSD-3-Clause"
  5738. ],
  5739. "authors": [
  5740. {
  5741. "name": "Graham Campbell",
  5742. "email": "graham@alt-three.com",
  5743. "homepage": "https://gjcampbell.co.uk/"
  5744. },
  5745. {
  5746. "name": "Vance Lucas",
  5747. "email": "vance@vancelucas.com",
  5748. "homepage": "https://vancelucas.com/"
  5749. }
  5750. ],
  5751. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5752. "keywords": [
  5753. "dotenv",
  5754. "env",
  5755. "environment"
  5756. ],
  5757. "funding": [
  5758. {
  5759. "url": "https://github.com/GrahamCampbell",
  5760. "type": "github"
  5761. },
  5762. {
  5763. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  5764. "type": "tidelift"
  5765. }
  5766. ],
  5767. "time": "2020-05-23T09:43:32+00:00"
  5768. },
  5769. {
  5770. "name": "voku/portable-ascii",
  5771. "version": "1.5.1",
  5772. "source": {
  5773. "type": "git",
  5774. "url": "https://github.com/voku/portable-ascii.git",
  5775. "reference": "e7f9bd5deff09a57318f9b900ab33a05acfcf4d3"
  5776. },
  5777. "dist": {
  5778. "type": "zip",
  5779. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/e7f9bd5deff09a57318f9b900ab33a05acfcf4d3",
  5780. "reference": "e7f9bd5deff09a57318f9b900ab33a05acfcf4d3",
  5781. "shasum": "",
  5782. "mirrors": [
  5783. {
  5784. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5785. "preferred": true
  5786. }
  5787. ]
  5788. },
  5789. "require": {
  5790. "php": ">=7.0.0"
  5791. },
  5792. "require-dev": {
  5793. "phpunit/phpunit": "~6.0 || ~7.0"
  5794. },
  5795. "suggest": {
  5796. "ext-intl": "Use Intl for transliterator_transliterate() support"
  5797. },
  5798. "type": "library",
  5799. "autoload": {
  5800. "psr-4": {
  5801. "voku\\": "src/voku/"
  5802. }
  5803. },
  5804. "notification-url": "https://packagist.org/downloads/",
  5805. "license": [
  5806. "MIT"
  5807. ],
  5808. "authors": [
  5809. {
  5810. "name": "Lars Moelleken",
  5811. "homepage": "http://www.moelleken.org/"
  5812. }
  5813. ],
  5814. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  5815. "homepage": "https://github.com/voku/portable-ascii",
  5816. "keywords": [
  5817. "ascii",
  5818. "clean",
  5819. "php"
  5820. ],
  5821. "funding": [
  5822. {
  5823. "url": "https://www.paypal.me/moelleken",
  5824. "type": "custom"
  5825. },
  5826. {
  5827. "url": "https://github.com/voku",
  5828. "type": "github"
  5829. },
  5830. {
  5831. "url": "https://www.patreon.com/voku",
  5832. "type": "patreon"
  5833. },
  5834. {
  5835. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  5836. "type": "tidelift"
  5837. }
  5838. ],
  5839. "time": "2020-05-26T06:40:44+00:00"
  5840. },
  5841. {
  5842. "name": "yajra/laravel-oci8",
  5843. "version": "v7.0.0",
  5844. "source": {
  5845. "type": "git",
  5846. "url": "https://github.com/yajra/laravel-oci8.git",
  5847. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  5848. },
  5849. "dist": {
  5850. "type": "zip",
  5851. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  5852. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  5853. "shasum": "",
  5854. "mirrors": [
  5855. {
  5856. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5857. "preferred": true
  5858. }
  5859. ]
  5860. },
  5861. "require": {
  5862. "ext-oci8": ">=2.0.0",
  5863. "ext-pdo": "*",
  5864. "illuminate/database": "^7",
  5865. "illuminate/support": "^7",
  5866. "php": "^7.2.5",
  5867. "yajra/laravel-pdo-via-oci8": "^2"
  5868. },
  5869. "require-dev": {
  5870. "mockery/mockery": "^1.3.1",
  5871. "phpunit/phpunit": "^8.4|^9.0",
  5872. "scrutinizer/ocular": "~1.1"
  5873. },
  5874. "type": "library",
  5875. "extra": {
  5876. "branch-alias": {
  5877. "dev-master": "7.x-dev"
  5878. },
  5879. "laravel": {
  5880. "providers": [
  5881. "Yajra\\Oci8\\Oci8ServiceProvider"
  5882. ]
  5883. }
  5884. },
  5885. "autoload": {
  5886. "files": [
  5887. "src/helper.php"
  5888. ],
  5889. "psr-4": {
  5890. "Yajra\\": "src/"
  5891. }
  5892. },
  5893. "notification-url": "https://packagist.org/downloads/",
  5894. "license": [
  5895. "MIT"
  5896. ],
  5897. "authors": [
  5898. {
  5899. "name": "Arjay Angeles",
  5900. "email": "aqangeles@gmail.com"
  5901. }
  5902. ],
  5903. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  5904. "keywords": [
  5905. "laravel",
  5906. "oci8",
  5907. "oracle",
  5908. "pdo_oci"
  5909. ],
  5910. "time": "2020-03-04T02:15:19+00:00"
  5911. },
  5912. {
  5913. "name": "yajra/laravel-pdo-via-oci8",
  5914. "version": "v2.1.1",
  5915. "source": {
  5916. "type": "git",
  5917. "url": "https://github.com/yajra/pdo-via-oci8.git",
  5918. "reference": "7295ed52a724887f66d01180a500ecdb76a22f4c"
  5919. },
  5920. "dist": {
  5921. "type": "zip",
  5922. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/7295ed52a724887f66d01180a500ecdb76a22f4c",
  5923. "reference": "7295ed52a724887f66d01180a500ecdb76a22f4c",
  5924. "shasum": "",
  5925. "mirrors": [
  5926. {
  5927. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5928. "preferred": true
  5929. }
  5930. ]
  5931. },
  5932. "require-dev": {
  5933. "phpunit/phpunit": "^6.4"
  5934. },
  5935. "type": "library",
  5936. "extra": {
  5937. "branch-alias": {
  5938. "dev-master": "2.0-dev"
  5939. }
  5940. },
  5941. "autoload": {
  5942. "psr-4": {
  5943. "Yajra\\": "src/"
  5944. }
  5945. },
  5946. "notification-url": "https://packagist.org/downloads/",
  5947. "license": [
  5948. "MIT"
  5949. ],
  5950. "authors": [
  5951. {
  5952. "name": "Arjay Angeles",
  5953. "email": "aqangeles@gmail.com"
  5954. }
  5955. ],
  5956. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  5957. "time": "2019-12-05T06:00:56+00:00"
  5958. }
  5959. ],
  5960. "packages-dev": [
  5961. {
  5962. "name": "barryvdh/laravel-debugbar",
  5963. "version": "v3.3.3",
  5964. "source": {
  5965. "type": "git",
  5966. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  5967. "reference": "57f2219f6d9efe41ed1bc880d86701c52f261bf5"
  5968. },
  5969. "dist": {
  5970. "type": "zip",
  5971. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/57f2219f6d9efe41ed1bc880d86701c52f261bf5",
  5972. "reference": "57f2219f6d9efe41ed1bc880d86701c52f261bf5",
  5973. "shasum": "",
  5974. "mirrors": [
  5975. {
  5976. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5977. "preferred": true
  5978. }
  5979. ]
  5980. },
  5981. "require": {
  5982. "illuminate/routing": "^5.5|^6|^7",
  5983. "illuminate/session": "^5.5|^6|^7",
  5984. "illuminate/support": "^5.5|^6|^7",
  5985. "maximebf/debugbar": "^1.15.1",
  5986. "php": ">=7.0",
  5987. "symfony/debug": "^3|^4|^5",
  5988. "symfony/finder": "^3|^4|^5"
  5989. },
  5990. "require-dev": {
  5991. "laravel/framework": "5.5.x"
  5992. },
  5993. "type": "library",
  5994. "extra": {
  5995. "branch-alias": {
  5996. "dev-master": "3.2-dev"
  5997. },
  5998. "laravel": {
  5999. "providers": [
  6000. "Barryvdh\\Debugbar\\ServiceProvider"
  6001. ],
  6002. "aliases": {
  6003. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  6004. }
  6005. }
  6006. },
  6007. "autoload": {
  6008. "psr-4": {
  6009. "Barryvdh\\Debugbar\\": "src/"
  6010. },
  6011. "files": [
  6012. "src/helpers.php"
  6013. ]
  6014. },
  6015. "notification-url": "https://packagist.org/downloads/",
  6016. "license": [
  6017. "MIT"
  6018. ],
  6019. "authors": [
  6020. {
  6021. "name": "Barry vd. Heuvel",
  6022. "email": "barryvdh@gmail.com"
  6023. }
  6024. ],
  6025. "description": "PHP Debugbar integration for Laravel",
  6026. "keywords": [
  6027. "debug",
  6028. "debugbar",
  6029. "laravel",
  6030. "profiler",
  6031. "webprofiler"
  6032. ],
  6033. "time": "2020-05-05T10:53:32+00:00"
  6034. },
  6035. {
  6036. "name": "beyondcode/laravel-dump-server",
  6037. "version": "1.4.0",
  6038. "source": {
  6039. "type": "git",
  6040. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  6041. "reference": "1f1d18a2e43f96fd67c9f0269c53f8c3814867d9"
  6042. },
  6043. "dist": {
  6044. "type": "zip",
  6045. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/1f1d18a2e43f96fd67c9f0269c53f8c3814867d9",
  6046. "reference": "1f1d18a2e43f96fd67c9f0269c53f8c3814867d9",
  6047. "shasum": "",
  6048. "mirrors": [
  6049. {
  6050. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6051. "preferred": true
  6052. }
  6053. ]
  6054. },
  6055. "require": {
  6056. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0",
  6057. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0",
  6058. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0",
  6059. "php": "^7.1",
  6060. "symfony/var-dumper": "^5.0"
  6061. },
  6062. "require-dev": {
  6063. "larapack/dd": "^1.0",
  6064. "phpunit/phpunit": "^7.0"
  6065. },
  6066. "type": "library",
  6067. "extra": {
  6068. "laravel": {
  6069. "providers": [
  6070. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  6071. ]
  6072. }
  6073. },
  6074. "autoload": {
  6075. "psr-4": {
  6076. "BeyondCode\\DumpServer\\": "src"
  6077. },
  6078. "files": [
  6079. "helpers.php"
  6080. ]
  6081. },
  6082. "notification-url": "https://packagist.org/downloads/",
  6083. "license": [
  6084. "MIT"
  6085. ],
  6086. "authors": [
  6087. {
  6088. "name": "Marcel Pociot",
  6089. "email": "marcel@beyondco.de",
  6090. "homepage": "https://beyondco.de",
  6091. "role": "Developer"
  6092. }
  6093. ],
  6094. "description": "Symfony Var-Dump Server for Laravel",
  6095. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  6096. "keywords": [
  6097. "beyondcode",
  6098. "laravel-dump-server"
  6099. ],
  6100. "time": "2020-03-04T15:23:26+00:00"
  6101. },
  6102. {
  6103. "name": "doctrine/instantiator",
  6104. "version": "1.3.0",
  6105. "source": {
  6106. "type": "git",
  6107. "url": "https://github.com/doctrine/instantiator.git",
  6108. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1"
  6109. },
  6110. "dist": {
  6111. "type": "zip",
  6112. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1",
  6113. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1",
  6114. "shasum": "",
  6115. "mirrors": [
  6116. {
  6117. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6118. "preferred": true
  6119. }
  6120. ]
  6121. },
  6122. "require": {
  6123. "php": "^7.1"
  6124. },
  6125. "require-dev": {
  6126. "doctrine/coding-standard": "^6.0",
  6127. "ext-pdo": "*",
  6128. "ext-phar": "*",
  6129. "phpbench/phpbench": "^0.13",
  6130. "phpstan/phpstan-phpunit": "^0.11",
  6131. "phpstan/phpstan-shim": "^0.11",
  6132. "phpunit/phpunit": "^7.0"
  6133. },
  6134. "type": "library",
  6135. "extra": {
  6136. "branch-alias": {
  6137. "dev-master": "1.2.x-dev"
  6138. }
  6139. },
  6140. "autoload": {
  6141. "psr-4": {
  6142. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  6143. }
  6144. },
  6145. "notification-url": "https://packagist.org/downloads/",
  6146. "license": [
  6147. "MIT"
  6148. ],
  6149. "authors": [
  6150. {
  6151. "name": "Marco Pivetta",
  6152. "email": "ocramius@gmail.com",
  6153. "homepage": "http://ocramius.github.com/"
  6154. }
  6155. ],
  6156. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  6157. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  6158. "keywords": [
  6159. "constructor",
  6160. "instantiate"
  6161. ],
  6162. "time": "2019-10-21T16:45:58+00:00"
  6163. },
  6164. {
  6165. "name": "fzaninotto/faker",
  6166. "version": "v1.9.1",
  6167. "source": {
  6168. "type": "git",
  6169. "url": "https://github.com/fzaninotto/Faker.git",
  6170. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  6171. },
  6172. "dist": {
  6173. "type": "zip",
  6174. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  6175. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  6176. "shasum": "",
  6177. "mirrors": [
  6178. {
  6179. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6180. "preferred": true
  6181. }
  6182. ]
  6183. },
  6184. "require": {
  6185. "php": "^5.3.3 || ^7.0"
  6186. },
  6187. "require-dev": {
  6188. "ext-intl": "*",
  6189. "phpunit/phpunit": "^4.8.35 || ^5.7",
  6190. "squizlabs/php_codesniffer": "^2.9.2"
  6191. },
  6192. "type": "library",
  6193. "extra": {
  6194. "branch-alias": {
  6195. "dev-master": "1.9-dev"
  6196. }
  6197. },
  6198. "autoload": {
  6199. "psr-4": {
  6200. "Faker\\": "src/Faker/"
  6201. }
  6202. },
  6203. "notification-url": "https://packagist.org/downloads/",
  6204. "license": [
  6205. "MIT"
  6206. ],
  6207. "authors": [
  6208. {
  6209. "name": "François Zaninotto"
  6210. }
  6211. ],
  6212. "description": "Faker is a PHP library that generates fake data for you.",
  6213. "keywords": [
  6214. "data",
  6215. "faker",
  6216. "fixtures"
  6217. ],
  6218. "time": "2019-12-12T13:22:17+00:00"
  6219. },
  6220. {
  6221. "name": "hamcrest/hamcrest-php",
  6222. "version": "v2.0.0",
  6223. "source": {
  6224. "type": "git",
  6225. "url": "https://github.com/hamcrest/hamcrest-php.git",
  6226. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  6227. },
  6228. "dist": {
  6229. "type": "zip",
  6230. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  6231. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  6232. "shasum": "",
  6233. "mirrors": [
  6234. {
  6235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6236. "preferred": true
  6237. }
  6238. ]
  6239. },
  6240. "require": {
  6241. "php": "^5.3|^7.0"
  6242. },
  6243. "replace": {
  6244. "cordoval/hamcrest-php": "*",
  6245. "davedevelopment/hamcrest-php": "*",
  6246. "kodova/hamcrest-php": "*"
  6247. },
  6248. "require-dev": {
  6249. "phpunit/php-file-iterator": "1.3.3",
  6250. "phpunit/phpunit": "~4.0",
  6251. "satooshi/php-coveralls": "^1.0"
  6252. },
  6253. "type": "library",
  6254. "extra": {
  6255. "branch-alias": {
  6256. "dev-master": "2.0-dev"
  6257. }
  6258. },
  6259. "autoload": {
  6260. "classmap": [
  6261. "hamcrest"
  6262. ]
  6263. },
  6264. "notification-url": "https://packagist.org/downloads/",
  6265. "license": [
  6266. "BSD"
  6267. ],
  6268. "description": "This is the PHP port of Hamcrest Matchers",
  6269. "keywords": [
  6270. "test"
  6271. ],
  6272. "time": "2016-01-20T08:20:44+00:00"
  6273. },
  6274. {
  6275. "name": "maximebf/debugbar",
  6276. "version": "v1.16.3",
  6277. "source": {
  6278. "type": "git",
  6279. "url": "https://github.com/maximebf/php-debugbar.git",
  6280. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372"
  6281. },
  6282. "dist": {
  6283. "type": "zip",
  6284. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/1a1605b8e9bacb34cc0c6278206d699772e1d372",
  6285. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372",
  6286. "shasum": "",
  6287. "mirrors": [
  6288. {
  6289. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6290. "preferred": true
  6291. }
  6292. ]
  6293. },
  6294. "require": {
  6295. "php": "^7.1",
  6296. "psr/log": "^1.0",
  6297. "symfony/var-dumper": "^2.6|^3|^4|^5"
  6298. },
  6299. "require-dev": {
  6300. "phpunit/phpunit": "^5"
  6301. },
  6302. "suggest": {
  6303. "kriswallsmith/assetic": "The best way to manage assets",
  6304. "monolog/monolog": "Log using Monolog",
  6305. "predis/predis": "Redis storage"
  6306. },
  6307. "type": "library",
  6308. "extra": {
  6309. "branch-alias": {
  6310. "dev-master": "1.16-dev"
  6311. }
  6312. },
  6313. "autoload": {
  6314. "psr-4": {
  6315. "DebugBar\\": "src/DebugBar/"
  6316. }
  6317. },
  6318. "notification-url": "https://packagist.org/downloads/",
  6319. "license": [
  6320. "MIT"
  6321. ],
  6322. "authors": [
  6323. {
  6324. "name": "Maxime Bouroumeau-Fuseau",
  6325. "email": "maxime.bouroumeau@gmail.com",
  6326. "homepage": "http://maximebf.com"
  6327. },
  6328. {
  6329. "name": "Barry vd. Heuvel",
  6330. "email": "barryvdh@gmail.com"
  6331. }
  6332. ],
  6333. "description": "Debug bar in the browser for php application",
  6334. "homepage": "https://github.com/maximebf/php-debugbar",
  6335. "keywords": [
  6336. "debug",
  6337. "debugbar"
  6338. ],
  6339. "time": "2020-05-06T07:06:27+00:00"
  6340. },
  6341. {
  6342. "name": "mockery/mockery",
  6343. "version": "1.3.1",
  6344. "source": {
  6345. "type": "git",
  6346. "url": "https://github.com/mockery/mockery.git",
  6347. "reference": "f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be"
  6348. },
  6349. "dist": {
  6350. "type": "zip",
  6351. "url": "https://api.github.com/repos/mockery/mockery/zipball/f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be",
  6352. "reference": "f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be",
  6353. "shasum": "",
  6354. "mirrors": [
  6355. {
  6356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6357. "preferred": true
  6358. }
  6359. ]
  6360. },
  6361. "require": {
  6362. "hamcrest/hamcrest-php": "~2.0",
  6363. "lib-pcre": ">=7.0",
  6364. "php": ">=5.6.0"
  6365. },
  6366. "require-dev": {
  6367. "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
  6368. },
  6369. "type": "library",
  6370. "extra": {
  6371. "branch-alias": {
  6372. "dev-master": "1.3.x-dev"
  6373. }
  6374. },
  6375. "autoload": {
  6376. "psr-0": {
  6377. "Mockery": "library/"
  6378. }
  6379. },
  6380. "notification-url": "https://packagist.org/downloads/",
  6381. "license": [
  6382. "BSD-3-Clause"
  6383. ],
  6384. "authors": [
  6385. {
  6386. "name": "Pádraic Brady",
  6387. "email": "padraic.brady@gmail.com",
  6388. "homepage": "http://blog.astrumfutura.com"
  6389. },
  6390. {
  6391. "name": "Dave Marshall",
  6392. "email": "dave.marshall@atstsolutions.co.uk",
  6393. "homepage": "http://davedevelopment.co.uk"
  6394. }
  6395. ],
  6396. "description": "Mockery is a simple yet flexible PHP mock object framework",
  6397. "homepage": "https://github.com/mockery/mockery",
  6398. "keywords": [
  6399. "BDD",
  6400. "TDD",
  6401. "library",
  6402. "mock",
  6403. "mock objects",
  6404. "mockery",
  6405. "stub",
  6406. "test",
  6407. "test double",
  6408. "testing"
  6409. ],
  6410. "time": "2019-12-26T09:49:15+00:00"
  6411. },
  6412. {
  6413. "name": "myclabs/deep-copy",
  6414. "version": "1.9.5",
  6415. "source": {
  6416. "type": "git",
  6417. "url": "https://github.com/myclabs/DeepCopy.git",
  6418. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef"
  6419. },
  6420. "dist": {
  6421. "type": "zip",
  6422. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef",
  6423. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef",
  6424. "shasum": "",
  6425. "mirrors": [
  6426. {
  6427. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6428. "preferred": true
  6429. }
  6430. ]
  6431. },
  6432. "require": {
  6433. "php": "^7.1"
  6434. },
  6435. "replace": {
  6436. "myclabs/deep-copy": "self.version"
  6437. },
  6438. "require-dev": {
  6439. "doctrine/collections": "^1.0",
  6440. "doctrine/common": "^2.6",
  6441. "phpunit/phpunit": "^7.1"
  6442. },
  6443. "type": "library",
  6444. "autoload": {
  6445. "psr-4": {
  6446. "DeepCopy\\": "src/DeepCopy/"
  6447. },
  6448. "files": [
  6449. "src/DeepCopy/deep_copy.php"
  6450. ]
  6451. },
  6452. "notification-url": "https://packagist.org/downloads/",
  6453. "license": [
  6454. "MIT"
  6455. ],
  6456. "description": "Create deep copies (clones) of your objects",
  6457. "keywords": [
  6458. "clone",
  6459. "copy",
  6460. "duplicate",
  6461. "object",
  6462. "object graph"
  6463. ],
  6464. "time": "2020-01-17T21:11:47+00:00"
  6465. },
  6466. {
  6467. "name": "nunomaduro/collision",
  6468. "version": "v4.2.0",
  6469. "source": {
  6470. "type": "git",
  6471. "url": "https://github.com/nunomaduro/collision.git",
  6472. "reference": "d50490417eded97be300a92cd7df7badc37a9018"
  6473. },
  6474. "dist": {
  6475. "type": "zip",
  6476. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/d50490417eded97be300a92cd7df7badc37a9018",
  6477. "reference": "d50490417eded97be300a92cd7df7badc37a9018",
  6478. "shasum": "",
  6479. "mirrors": [
  6480. {
  6481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6482. "preferred": true
  6483. }
  6484. ]
  6485. },
  6486. "require": {
  6487. "facade/ignition-contracts": "^1.0",
  6488. "filp/whoops": "^2.4",
  6489. "php": "^7.2.5",
  6490. "symfony/console": "^5.0"
  6491. },
  6492. "require-dev": {
  6493. "facade/ignition": "^2.0",
  6494. "fideloper/proxy": "^4.2",
  6495. "friendsofphp/php-cs-fixer": "^2.16",
  6496. "fruitcake/laravel-cors": "^1.0",
  6497. "laravel/framework": "^7.0",
  6498. "laravel/tinker": "^2.0",
  6499. "nunomaduro/larastan": "^0.5",
  6500. "orchestra/testbench": "^5.0",
  6501. "phpstan/phpstan": "^0.12.3",
  6502. "phpunit/phpunit": "^8.5.1 || ^9.0"
  6503. },
  6504. "type": "library",
  6505. "extra": {
  6506. "laravel": {
  6507. "providers": [
  6508. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  6509. ]
  6510. }
  6511. },
  6512. "autoload": {
  6513. "psr-4": {
  6514. "NunoMaduro\\Collision\\": "src/"
  6515. }
  6516. },
  6517. "notification-url": "https://packagist.org/downloads/",
  6518. "license": [
  6519. "MIT"
  6520. ],
  6521. "authors": [
  6522. {
  6523. "name": "Nuno Maduro",
  6524. "email": "enunomaduro@gmail.com"
  6525. }
  6526. ],
  6527. "description": "Cli error handling for console/command-line PHP applications.",
  6528. "keywords": [
  6529. "artisan",
  6530. "cli",
  6531. "command-line",
  6532. "console",
  6533. "error",
  6534. "handling",
  6535. "laravel",
  6536. "laravel-zero",
  6537. "php",
  6538. "symfony"
  6539. ],
  6540. "time": "2020-04-04T19:56:08+00:00"
  6541. },
  6542. {
  6543. "name": "phar-io/manifest",
  6544. "version": "1.0.3",
  6545. "source": {
  6546. "type": "git",
  6547. "url": "https://github.com/phar-io/manifest.git",
  6548. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  6549. },
  6550. "dist": {
  6551. "type": "zip",
  6552. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6553. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6554. "shasum": "",
  6555. "mirrors": [
  6556. {
  6557. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6558. "preferred": true
  6559. }
  6560. ]
  6561. },
  6562. "require": {
  6563. "ext-dom": "*",
  6564. "ext-phar": "*",
  6565. "phar-io/version": "^2.0",
  6566. "php": "^5.6 || ^7.0"
  6567. },
  6568. "type": "library",
  6569. "extra": {
  6570. "branch-alias": {
  6571. "dev-master": "1.0.x-dev"
  6572. }
  6573. },
  6574. "autoload": {
  6575. "classmap": [
  6576. "src/"
  6577. ]
  6578. },
  6579. "notification-url": "https://packagist.org/downloads/",
  6580. "license": [
  6581. "BSD-3-Clause"
  6582. ],
  6583. "authors": [
  6584. {
  6585. "name": "Arne Blankerts",
  6586. "email": "arne@blankerts.de",
  6587. "role": "Developer"
  6588. },
  6589. {
  6590. "name": "Sebastian Heuer",
  6591. "email": "sebastian@phpeople.de",
  6592. "role": "Developer"
  6593. },
  6594. {
  6595. "name": "Sebastian Bergmann",
  6596. "email": "sebastian@phpunit.de",
  6597. "role": "Developer"
  6598. }
  6599. ],
  6600. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6601. "time": "2018-07-08T19:23:20+00:00"
  6602. },
  6603. {
  6604. "name": "phar-io/version",
  6605. "version": "2.0.1",
  6606. "source": {
  6607. "type": "git",
  6608. "url": "https://github.com/phar-io/version.git",
  6609. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  6610. },
  6611. "dist": {
  6612. "type": "zip",
  6613. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6614. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6615. "shasum": "",
  6616. "mirrors": [
  6617. {
  6618. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6619. "preferred": true
  6620. }
  6621. ]
  6622. },
  6623. "require": {
  6624. "php": "^5.6 || ^7.0"
  6625. },
  6626. "type": "library",
  6627. "autoload": {
  6628. "classmap": [
  6629. "src/"
  6630. ]
  6631. },
  6632. "notification-url": "https://packagist.org/downloads/",
  6633. "license": [
  6634. "BSD-3-Clause"
  6635. ],
  6636. "authors": [
  6637. {
  6638. "name": "Arne Blankerts",
  6639. "email": "arne@blankerts.de",
  6640. "role": "Developer"
  6641. },
  6642. {
  6643. "name": "Sebastian Heuer",
  6644. "email": "sebastian@phpeople.de",
  6645. "role": "Developer"
  6646. },
  6647. {
  6648. "name": "Sebastian Bergmann",
  6649. "email": "sebastian@phpunit.de",
  6650. "role": "Developer"
  6651. }
  6652. ],
  6653. "description": "Library for handling version information and constraints",
  6654. "time": "2018-07-08T19:19:57+00:00"
  6655. },
  6656. {
  6657. "name": "phpdocumentor/reflection-common",
  6658. "version": "2.1.0",
  6659. "source": {
  6660. "type": "git",
  6661. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  6662. "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b"
  6663. },
  6664. "dist": {
  6665. "type": "zip",
  6666. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
  6667. "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
  6668. "shasum": "",
  6669. "mirrors": [
  6670. {
  6671. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6672. "preferred": true
  6673. }
  6674. ]
  6675. },
  6676. "require": {
  6677. "php": ">=7.1"
  6678. },
  6679. "type": "library",
  6680. "extra": {
  6681. "branch-alias": {
  6682. "dev-master": "2.x-dev"
  6683. }
  6684. },
  6685. "autoload": {
  6686. "psr-4": {
  6687. "phpDocumentor\\Reflection\\": "src/"
  6688. }
  6689. },
  6690. "notification-url": "https://packagist.org/downloads/",
  6691. "license": [
  6692. "MIT"
  6693. ],
  6694. "authors": [
  6695. {
  6696. "name": "Jaap van Otterdijk",
  6697. "email": "opensource@ijaap.nl"
  6698. }
  6699. ],
  6700. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  6701. "homepage": "http://www.phpdoc.org",
  6702. "keywords": [
  6703. "FQSEN",
  6704. "phpDocumentor",
  6705. "phpdoc",
  6706. "reflection",
  6707. "static analysis"
  6708. ],
  6709. "time": "2020-04-27T09:25:28+00:00"
  6710. },
  6711. {
  6712. "name": "phpdocumentor/reflection-docblock",
  6713. "version": "5.1.0",
  6714. "source": {
  6715. "type": "git",
  6716. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  6717. "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e"
  6718. },
  6719. "dist": {
  6720. "type": "zip",
  6721. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
  6722. "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
  6723. "shasum": "",
  6724. "mirrors": [
  6725. {
  6726. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6727. "preferred": true
  6728. }
  6729. ]
  6730. },
  6731. "require": {
  6732. "ext-filter": "^7.1",
  6733. "php": "^7.2",
  6734. "phpdocumentor/reflection-common": "^2.0",
  6735. "phpdocumentor/type-resolver": "^1.0",
  6736. "webmozart/assert": "^1"
  6737. },
  6738. "require-dev": {
  6739. "doctrine/instantiator": "^1",
  6740. "mockery/mockery": "^1"
  6741. },
  6742. "type": "library",
  6743. "extra": {
  6744. "branch-alias": {
  6745. "dev-master": "5.x-dev"
  6746. }
  6747. },
  6748. "autoload": {
  6749. "psr-4": {
  6750. "phpDocumentor\\Reflection\\": "src"
  6751. }
  6752. },
  6753. "notification-url": "https://packagist.org/downloads/",
  6754. "license": [
  6755. "MIT"
  6756. ],
  6757. "authors": [
  6758. {
  6759. "name": "Mike van Riel",
  6760. "email": "me@mikevanriel.com"
  6761. },
  6762. {
  6763. "name": "Jaap van Otterdijk",
  6764. "email": "account@ijaap.nl"
  6765. }
  6766. ],
  6767. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  6768. "time": "2020-02-22T12:28:44+00:00"
  6769. },
  6770. {
  6771. "name": "phpdocumentor/type-resolver",
  6772. "version": "1.1.0",
  6773. "source": {
  6774. "type": "git",
  6775. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  6776. "reference": "7462d5f123dfc080dfdf26897032a6513644fc95"
  6777. },
  6778. "dist": {
  6779. "type": "zip",
  6780. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/7462d5f123dfc080dfdf26897032a6513644fc95",
  6781. "reference": "7462d5f123dfc080dfdf26897032a6513644fc95",
  6782. "shasum": "",
  6783. "mirrors": [
  6784. {
  6785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6786. "preferred": true
  6787. }
  6788. ]
  6789. },
  6790. "require": {
  6791. "php": "^7.2",
  6792. "phpdocumentor/reflection-common": "^2.0"
  6793. },
  6794. "require-dev": {
  6795. "ext-tokenizer": "^7.2",
  6796. "mockery/mockery": "~1"
  6797. },
  6798. "type": "library",
  6799. "extra": {
  6800. "branch-alias": {
  6801. "dev-master": "1.x-dev"
  6802. }
  6803. },
  6804. "autoload": {
  6805. "psr-4": {
  6806. "phpDocumentor\\Reflection\\": "src"
  6807. }
  6808. },
  6809. "notification-url": "https://packagist.org/downloads/",
  6810. "license": [
  6811. "MIT"
  6812. ],
  6813. "authors": [
  6814. {
  6815. "name": "Mike van Riel",
  6816. "email": "me@mikevanriel.com"
  6817. }
  6818. ],
  6819. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  6820. "time": "2020-02-18T18:59:58+00:00"
  6821. },
  6822. {
  6823. "name": "phpspec/prophecy",
  6824. "version": "v1.10.3",
  6825. "source": {
  6826. "type": "git",
  6827. "url": "https://github.com/phpspec/prophecy.git",
  6828. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  6829. },
  6830. "dist": {
  6831. "type": "zip",
  6832. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  6833. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  6834. "shasum": "",
  6835. "mirrors": [
  6836. {
  6837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6838. "preferred": true
  6839. }
  6840. ]
  6841. },
  6842. "require": {
  6843. "doctrine/instantiator": "^1.0.2",
  6844. "php": "^5.3|^7.0",
  6845. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  6846. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  6847. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  6848. },
  6849. "require-dev": {
  6850. "phpspec/phpspec": "^2.5 || ^3.2",
  6851. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  6852. },
  6853. "type": "library",
  6854. "extra": {
  6855. "branch-alias": {
  6856. "dev-master": "1.10.x-dev"
  6857. }
  6858. },
  6859. "autoload": {
  6860. "psr-4": {
  6861. "Prophecy\\": "src/Prophecy"
  6862. }
  6863. },
  6864. "notification-url": "https://packagist.org/downloads/",
  6865. "license": [
  6866. "MIT"
  6867. ],
  6868. "authors": [
  6869. {
  6870. "name": "Konstantin Kudryashov",
  6871. "email": "ever.zet@gmail.com",
  6872. "homepage": "http://everzet.com"
  6873. },
  6874. {
  6875. "name": "Marcello Duarte",
  6876. "email": "marcello.duarte@gmail.com"
  6877. }
  6878. ],
  6879. "description": "Highly opinionated mocking framework for PHP 5.3+",
  6880. "homepage": "https://github.com/phpspec/prophecy",
  6881. "keywords": [
  6882. "Double",
  6883. "Dummy",
  6884. "fake",
  6885. "mock",
  6886. "spy",
  6887. "stub"
  6888. ],
  6889. "time": "2020-03-05T15:02:03+00:00"
  6890. },
  6891. {
  6892. "name": "phpunit/php-code-coverage",
  6893. "version": "7.0.10",
  6894. "source": {
  6895. "type": "git",
  6896. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6897. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
  6898. },
  6899. "dist": {
  6900. "type": "zip",
  6901. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
  6902. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
  6903. "shasum": "",
  6904. "mirrors": [
  6905. {
  6906. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6907. "preferred": true
  6908. }
  6909. ]
  6910. },
  6911. "require": {
  6912. "ext-dom": "*",
  6913. "ext-xmlwriter": "*",
  6914. "php": "^7.2",
  6915. "phpunit/php-file-iterator": "^2.0.2",
  6916. "phpunit/php-text-template": "^1.2.1",
  6917. "phpunit/php-token-stream": "^3.1.1",
  6918. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  6919. "sebastian/environment": "^4.2.2",
  6920. "sebastian/version": "^2.0.1",
  6921. "theseer/tokenizer": "^1.1.3"
  6922. },
  6923. "require-dev": {
  6924. "phpunit/phpunit": "^8.2.2"
  6925. },
  6926. "suggest": {
  6927. "ext-xdebug": "^2.7.2"
  6928. },
  6929. "type": "library",
  6930. "extra": {
  6931. "branch-alias": {
  6932. "dev-master": "7.0-dev"
  6933. }
  6934. },
  6935. "autoload": {
  6936. "classmap": [
  6937. "src/"
  6938. ]
  6939. },
  6940. "notification-url": "https://packagist.org/downloads/",
  6941. "license": [
  6942. "BSD-3-Clause"
  6943. ],
  6944. "authors": [
  6945. {
  6946. "name": "Sebastian Bergmann",
  6947. "email": "sebastian@phpunit.de",
  6948. "role": "lead"
  6949. }
  6950. ],
  6951. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6952. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6953. "keywords": [
  6954. "coverage",
  6955. "testing",
  6956. "xunit"
  6957. ],
  6958. "time": "2019-11-20T13:55:58+00:00"
  6959. },
  6960. {
  6961. "name": "phpunit/php-file-iterator",
  6962. "version": "2.0.2",
  6963. "source": {
  6964. "type": "git",
  6965. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6966. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  6967. },
  6968. "dist": {
  6969. "type": "zip",
  6970. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  6971. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  6972. "shasum": "",
  6973. "mirrors": [
  6974. {
  6975. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6976. "preferred": true
  6977. }
  6978. ]
  6979. },
  6980. "require": {
  6981. "php": "^7.1"
  6982. },
  6983. "require-dev": {
  6984. "phpunit/phpunit": "^7.1"
  6985. },
  6986. "type": "library",
  6987. "extra": {
  6988. "branch-alias": {
  6989. "dev-master": "2.0.x-dev"
  6990. }
  6991. },
  6992. "autoload": {
  6993. "classmap": [
  6994. "src/"
  6995. ]
  6996. },
  6997. "notification-url": "https://packagist.org/downloads/",
  6998. "license": [
  6999. "BSD-3-Clause"
  7000. ],
  7001. "authors": [
  7002. {
  7003. "name": "Sebastian Bergmann",
  7004. "email": "sebastian@phpunit.de",
  7005. "role": "lead"
  7006. }
  7007. ],
  7008. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7009. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7010. "keywords": [
  7011. "filesystem",
  7012. "iterator"
  7013. ],
  7014. "time": "2018-09-13T20:33:42+00:00"
  7015. },
  7016. {
  7017. "name": "phpunit/php-text-template",
  7018. "version": "1.2.1",
  7019. "source": {
  7020. "type": "git",
  7021. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7022. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7023. },
  7024. "dist": {
  7025. "type": "zip",
  7026. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7027. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7028. "shasum": "",
  7029. "mirrors": [
  7030. {
  7031. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7032. "preferred": true
  7033. }
  7034. ]
  7035. },
  7036. "require": {
  7037. "php": ">=5.3.3"
  7038. },
  7039. "type": "library",
  7040. "autoload": {
  7041. "classmap": [
  7042. "src/"
  7043. ]
  7044. },
  7045. "notification-url": "https://packagist.org/downloads/",
  7046. "license": [
  7047. "BSD-3-Clause"
  7048. ],
  7049. "authors": [
  7050. {
  7051. "name": "Sebastian Bergmann",
  7052. "email": "sebastian@phpunit.de",
  7053. "role": "lead"
  7054. }
  7055. ],
  7056. "description": "Simple template engine.",
  7057. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7058. "keywords": [
  7059. "template"
  7060. ],
  7061. "time": "2015-06-21T13:50:34+00:00"
  7062. },
  7063. {
  7064. "name": "phpunit/php-timer",
  7065. "version": "2.1.2",
  7066. "source": {
  7067. "type": "git",
  7068. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7069. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  7070. },
  7071. "dist": {
  7072. "type": "zip",
  7073. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  7074. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  7075. "shasum": "",
  7076. "mirrors": [
  7077. {
  7078. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7079. "preferred": true
  7080. }
  7081. ]
  7082. },
  7083. "require": {
  7084. "php": "^7.1"
  7085. },
  7086. "require-dev": {
  7087. "phpunit/phpunit": "^7.0"
  7088. },
  7089. "type": "library",
  7090. "extra": {
  7091. "branch-alias": {
  7092. "dev-master": "2.1-dev"
  7093. }
  7094. },
  7095. "autoload": {
  7096. "classmap": [
  7097. "src/"
  7098. ]
  7099. },
  7100. "notification-url": "https://packagist.org/downloads/",
  7101. "license": [
  7102. "BSD-3-Clause"
  7103. ],
  7104. "authors": [
  7105. {
  7106. "name": "Sebastian Bergmann",
  7107. "email": "sebastian@phpunit.de",
  7108. "role": "lead"
  7109. }
  7110. ],
  7111. "description": "Utility class for timing",
  7112. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7113. "keywords": [
  7114. "timer"
  7115. ],
  7116. "time": "2019-06-07T04:22:29+00:00"
  7117. },
  7118. {
  7119. "name": "phpunit/php-token-stream",
  7120. "version": "3.1.1",
  7121. "source": {
  7122. "type": "git",
  7123. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  7124. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  7125. },
  7126. "dist": {
  7127. "type": "zip",
  7128. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  7129. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  7130. "shasum": "",
  7131. "mirrors": [
  7132. {
  7133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7134. "preferred": true
  7135. }
  7136. ]
  7137. },
  7138. "require": {
  7139. "ext-tokenizer": "*",
  7140. "php": "^7.1"
  7141. },
  7142. "require-dev": {
  7143. "phpunit/phpunit": "^7.0"
  7144. },
  7145. "type": "library",
  7146. "extra": {
  7147. "branch-alias": {
  7148. "dev-master": "3.1-dev"
  7149. }
  7150. },
  7151. "autoload": {
  7152. "classmap": [
  7153. "src/"
  7154. ]
  7155. },
  7156. "notification-url": "https://packagist.org/downloads/",
  7157. "license": [
  7158. "BSD-3-Clause"
  7159. ],
  7160. "authors": [
  7161. {
  7162. "name": "Sebastian Bergmann",
  7163. "email": "sebastian@phpunit.de"
  7164. }
  7165. ],
  7166. "description": "Wrapper around PHP's tokenizer extension.",
  7167. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  7168. "keywords": [
  7169. "tokenizer"
  7170. ],
  7171. "time": "2019-09-17T06:23:10+00:00"
  7172. },
  7173. {
  7174. "name": "phpunit/phpunit",
  7175. "version": "8.5.5",
  7176. "source": {
  7177. "type": "git",
  7178. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7179. "reference": "63dda3b212a0025d380a745f91bdb4d8c985adb7"
  7180. },
  7181. "dist": {
  7182. "type": "zip",
  7183. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/63dda3b212a0025d380a745f91bdb4d8c985adb7",
  7184. "reference": "63dda3b212a0025d380a745f91bdb4d8c985adb7",
  7185. "shasum": "",
  7186. "mirrors": [
  7187. {
  7188. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7189. "preferred": true
  7190. }
  7191. ]
  7192. },
  7193. "require": {
  7194. "doctrine/instantiator": "^1.2.0",
  7195. "ext-dom": "*",
  7196. "ext-json": "*",
  7197. "ext-libxml": "*",
  7198. "ext-mbstring": "*",
  7199. "ext-xml": "*",
  7200. "ext-xmlwriter": "*",
  7201. "myclabs/deep-copy": "^1.9.1",
  7202. "phar-io/manifest": "^1.0.3",
  7203. "phar-io/version": "^2.0.1",
  7204. "php": "^7.2",
  7205. "phpspec/prophecy": "^1.8.1",
  7206. "phpunit/php-code-coverage": "^7.0.7",
  7207. "phpunit/php-file-iterator": "^2.0.2",
  7208. "phpunit/php-text-template": "^1.2.1",
  7209. "phpunit/php-timer": "^2.1.2",
  7210. "sebastian/comparator": "^3.0.2",
  7211. "sebastian/diff": "^3.0.2",
  7212. "sebastian/environment": "^4.2.2",
  7213. "sebastian/exporter": "^3.1.1",
  7214. "sebastian/global-state": "^3.0.0",
  7215. "sebastian/object-enumerator": "^3.0.3",
  7216. "sebastian/resource-operations": "^2.0.1",
  7217. "sebastian/type": "^1.1.3",
  7218. "sebastian/version": "^2.0.1"
  7219. },
  7220. "require-dev": {
  7221. "ext-pdo": "*"
  7222. },
  7223. "suggest": {
  7224. "ext-soap": "*",
  7225. "ext-xdebug": "*",
  7226. "phpunit/php-invoker": "^2.0.0"
  7227. },
  7228. "bin": [
  7229. "phpunit"
  7230. ],
  7231. "type": "library",
  7232. "extra": {
  7233. "branch-alias": {
  7234. "dev-master": "8.5-dev"
  7235. }
  7236. },
  7237. "autoload": {
  7238. "classmap": [
  7239. "src/"
  7240. ]
  7241. },
  7242. "notification-url": "https://packagist.org/downloads/",
  7243. "license": [
  7244. "BSD-3-Clause"
  7245. ],
  7246. "authors": [
  7247. {
  7248. "name": "Sebastian Bergmann",
  7249. "email": "sebastian@phpunit.de",
  7250. "role": "lead"
  7251. }
  7252. ],
  7253. "description": "The PHP Unit Testing framework.",
  7254. "homepage": "https://phpunit.de/",
  7255. "keywords": [
  7256. "phpunit",
  7257. "testing",
  7258. "xunit"
  7259. ],
  7260. "funding": [
  7261. {
  7262. "url": "https://phpunit.de/donate.html",
  7263. "type": "custom"
  7264. },
  7265. {
  7266. "url": "https://github.com/sebastianbergmann",
  7267. "type": "github"
  7268. }
  7269. ],
  7270. "time": "2020-05-22T13:51:52+00:00"
  7271. },
  7272. {
  7273. "name": "sebastian/code-unit-reverse-lookup",
  7274. "version": "1.0.1",
  7275. "source": {
  7276. "type": "git",
  7277. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7278. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  7279. },
  7280. "dist": {
  7281. "type": "zip",
  7282. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7283. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7284. "shasum": "",
  7285. "mirrors": [
  7286. {
  7287. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7288. "preferred": true
  7289. }
  7290. ]
  7291. },
  7292. "require": {
  7293. "php": "^5.6 || ^7.0"
  7294. },
  7295. "require-dev": {
  7296. "phpunit/phpunit": "^5.7 || ^6.0"
  7297. },
  7298. "type": "library",
  7299. "extra": {
  7300. "branch-alias": {
  7301. "dev-master": "1.0.x-dev"
  7302. }
  7303. },
  7304. "autoload": {
  7305. "classmap": [
  7306. "src/"
  7307. ]
  7308. },
  7309. "notification-url": "https://packagist.org/downloads/",
  7310. "license": [
  7311. "BSD-3-Clause"
  7312. ],
  7313. "authors": [
  7314. {
  7315. "name": "Sebastian Bergmann",
  7316. "email": "sebastian@phpunit.de"
  7317. }
  7318. ],
  7319. "description": "Looks up which function or method a line of code belongs to",
  7320. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7321. "time": "2017-03-04T06:30:41+00:00"
  7322. },
  7323. {
  7324. "name": "sebastian/comparator",
  7325. "version": "3.0.2",
  7326. "source": {
  7327. "type": "git",
  7328. "url": "https://github.com/sebastianbergmann/comparator.git",
  7329. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  7330. },
  7331. "dist": {
  7332. "type": "zip",
  7333. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  7334. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  7335. "shasum": "",
  7336. "mirrors": [
  7337. {
  7338. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7339. "preferred": true
  7340. }
  7341. ]
  7342. },
  7343. "require": {
  7344. "php": "^7.1",
  7345. "sebastian/diff": "^3.0",
  7346. "sebastian/exporter": "^3.1"
  7347. },
  7348. "require-dev": {
  7349. "phpunit/phpunit": "^7.1"
  7350. },
  7351. "type": "library",
  7352. "extra": {
  7353. "branch-alias": {
  7354. "dev-master": "3.0-dev"
  7355. }
  7356. },
  7357. "autoload": {
  7358. "classmap": [
  7359. "src/"
  7360. ]
  7361. },
  7362. "notification-url": "https://packagist.org/downloads/",
  7363. "license": [
  7364. "BSD-3-Clause"
  7365. ],
  7366. "authors": [
  7367. {
  7368. "name": "Jeff Welch",
  7369. "email": "whatthejeff@gmail.com"
  7370. },
  7371. {
  7372. "name": "Volker Dusch",
  7373. "email": "github@wallbash.com"
  7374. },
  7375. {
  7376. "name": "Bernhard Schussek",
  7377. "email": "bschussek@2bepublished.at"
  7378. },
  7379. {
  7380. "name": "Sebastian Bergmann",
  7381. "email": "sebastian@phpunit.de"
  7382. }
  7383. ],
  7384. "description": "Provides the functionality to compare PHP values for equality",
  7385. "homepage": "https://github.com/sebastianbergmann/comparator",
  7386. "keywords": [
  7387. "comparator",
  7388. "compare",
  7389. "equality"
  7390. ],
  7391. "time": "2018-07-12T15:12:46+00:00"
  7392. },
  7393. {
  7394. "name": "sebastian/diff",
  7395. "version": "3.0.2",
  7396. "source": {
  7397. "type": "git",
  7398. "url": "https://github.com/sebastianbergmann/diff.git",
  7399. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  7400. },
  7401. "dist": {
  7402. "type": "zip",
  7403. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  7404. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  7405. "shasum": "",
  7406. "mirrors": [
  7407. {
  7408. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7409. "preferred": true
  7410. }
  7411. ]
  7412. },
  7413. "require": {
  7414. "php": "^7.1"
  7415. },
  7416. "require-dev": {
  7417. "phpunit/phpunit": "^7.5 || ^8.0",
  7418. "symfony/process": "^2 || ^3.3 || ^4"
  7419. },
  7420. "type": "library",
  7421. "extra": {
  7422. "branch-alias": {
  7423. "dev-master": "3.0-dev"
  7424. }
  7425. },
  7426. "autoload": {
  7427. "classmap": [
  7428. "src/"
  7429. ]
  7430. },
  7431. "notification-url": "https://packagist.org/downloads/",
  7432. "license": [
  7433. "BSD-3-Clause"
  7434. ],
  7435. "authors": [
  7436. {
  7437. "name": "Kore Nordmann",
  7438. "email": "mail@kore-nordmann.de"
  7439. },
  7440. {
  7441. "name": "Sebastian Bergmann",
  7442. "email": "sebastian@phpunit.de"
  7443. }
  7444. ],
  7445. "description": "Diff implementation",
  7446. "homepage": "https://github.com/sebastianbergmann/diff",
  7447. "keywords": [
  7448. "diff",
  7449. "udiff",
  7450. "unidiff",
  7451. "unified diff"
  7452. ],
  7453. "time": "2019-02-04T06:01:07+00:00"
  7454. },
  7455. {
  7456. "name": "sebastian/environment",
  7457. "version": "4.2.3",
  7458. "source": {
  7459. "type": "git",
  7460. "url": "https://github.com/sebastianbergmann/environment.git",
  7461. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  7462. },
  7463. "dist": {
  7464. "type": "zip",
  7465. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  7466. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  7467. "shasum": "",
  7468. "mirrors": [
  7469. {
  7470. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7471. "preferred": true
  7472. }
  7473. ]
  7474. },
  7475. "require": {
  7476. "php": "^7.1"
  7477. },
  7478. "require-dev": {
  7479. "phpunit/phpunit": "^7.5"
  7480. },
  7481. "suggest": {
  7482. "ext-posix": "*"
  7483. },
  7484. "type": "library",
  7485. "extra": {
  7486. "branch-alias": {
  7487. "dev-master": "4.2-dev"
  7488. }
  7489. },
  7490. "autoload": {
  7491. "classmap": [
  7492. "src/"
  7493. ]
  7494. },
  7495. "notification-url": "https://packagist.org/downloads/",
  7496. "license": [
  7497. "BSD-3-Clause"
  7498. ],
  7499. "authors": [
  7500. {
  7501. "name": "Sebastian Bergmann",
  7502. "email": "sebastian@phpunit.de"
  7503. }
  7504. ],
  7505. "description": "Provides functionality to handle HHVM/PHP environments",
  7506. "homepage": "http://www.github.com/sebastianbergmann/environment",
  7507. "keywords": [
  7508. "Xdebug",
  7509. "environment",
  7510. "hhvm"
  7511. ],
  7512. "time": "2019-11-20T08:46:58+00:00"
  7513. },
  7514. {
  7515. "name": "sebastian/exporter",
  7516. "version": "3.1.2",
  7517. "source": {
  7518. "type": "git",
  7519. "url": "https://github.com/sebastianbergmann/exporter.git",
  7520. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  7521. },
  7522. "dist": {
  7523. "type": "zip",
  7524. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  7525. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  7526. "shasum": "",
  7527. "mirrors": [
  7528. {
  7529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7530. "preferred": true
  7531. }
  7532. ]
  7533. },
  7534. "require": {
  7535. "php": "^7.0",
  7536. "sebastian/recursion-context": "^3.0"
  7537. },
  7538. "require-dev": {
  7539. "ext-mbstring": "*",
  7540. "phpunit/phpunit": "^6.0"
  7541. },
  7542. "type": "library",
  7543. "extra": {
  7544. "branch-alias": {
  7545. "dev-master": "3.1.x-dev"
  7546. }
  7547. },
  7548. "autoload": {
  7549. "classmap": [
  7550. "src/"
  7551. ]
  7552. },
  7553. "notification-url": "https://packagist.org/downloads/",
  7554. "license": [
  7555. "BSD-3-Clause"
  7556. ],
  7557. "authors": [
  7558. {
  7559. "name": "Sebastian Bergmann",
  7560. "email": "sebastian@phpunit.de"
  7561. },
  7562. {
  7563. "name": "Jeff Welch",
  7564. "email": "whatthejeff@gmail.com"
  7565. },
  7566. {
  7567. "name": "Volker Dusch",
  7568. "email": "github@wallbash.com"
  7569. },
  7570. {
  7571. "name": "Adam Harvey",
  7572. "email": "aharvey@php.net"
  7573. },
  7574. {
  7575. "name": "Bernhard Schussek",
  7576. "email": "bschussek@gmail.com"
  7577. }
  7578. ],
  7579. "description": "Provides the functionality to export PHP variables for visualization",
  7580. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  7581. "keywords": [
  7582. "export",
  7583. "exporter"
  7584. ],
  7585. "time": "2019-09-14T09:02:43+00:00"
  7586. },
  7587. {
  7588. "name": "sebastian/global-state",
  7589. "version": "3.0.0",
  7590. "source": {
  7591. "type": "git",
  7592. "url": "https://github.com/sebastianbergmann/global-state.git",
  7593. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  7594. },
  7595. "dist": {
  7596. "type": "zip",
  7597. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  7598. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  7599. "shasum": "",
  7600. "mirrors": [
  7601. {
  7602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7603. "preferred": true
  7604. }
  7605. ]
  7606. },
  7607. "require": {
  7608. "php": "^7.2",
  7609. "sebastian/object-reflector": "^1.1.1",
  7610. "sebastian/recursion-context": "^3.0"
  7611. },
  7612. "require-dev": {
  7613. "ext-dom": "*",
  7614. "phpunit/phpunit": "^8.0"
  7615. },
  7616. "suggest": {
  7617. "ext-uopz": "*"
  7618. },
  7619. "type": "library",
  7620. "extra": {
  7621. "branch-alias": {
  7622. "dev-master": "3.0-dev"
  7623. }
  7624. },
  7625. "autoload": {
  7626. "classmap": [
  7627. "src/"
  7628. ]
  7629. },
  7630. "notification-url": "https://packagist.org/downloads/",
  7631. "license": [
  7632. "BSD-3-Clause"
  7633. ],
  7634. "authors": [
  7635. {
  7636. "name": "Sebastian Bergmann",
  7637. "email": "sebastian@phpunit.de"
  7638. }
  7639. ],
  7640. "description": "Snapshotting of global state",
  7641. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7642. "keywords": [
  7643. "global state"
  7644. ],
  7645. "time": "2019-02-01T05:30:01+00:00"
  7646. },
  7647. {
  7648. "name": "sebastian/object-enumerator",
  7649. "version": "3.0.3",
  7650. "source": {
  7651. "type": "git",
  7652. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7653. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  7654. },
  7655. "dist": {
  7656. "type": "zip",
  7657. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  7658. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  7659. "shasum": "",
  7660. "mirrors": [
  7661. {
  7662. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7663. "preferred": true
  7664. }
  7665. ]
  7666. },
  7667. "require": {
  7668. "php": "^7.0",
  7669. "sebastian/object-reflector": "^1.1.1",
  7670. "sebastian/recursion-context": "^3.0"
  7671. },
  7672. "require-dev": {
  7673. "phpunit/phpunit": "^6.0"
  7674. },
  7675. "type": "library",
  7676. "extra": {
  7677. "branch-alias": {
  7678. "dev-master": "3.0.x-dev"
  7679. }
  7680. },
  7681. "autoload": {
  7682. "classmap": [
  7683. "src/"
  7684. ]
  7685. },
  7686. "notification-url": "https://packagist.org/downloads/",
  7687. "license": [
  7688. "BSD-3-Clause"
  7689. ],
  7690. "authors": [
  7691. {
  7692. "name": "Sebastian Bergmann",
  7693. "email": "sebastian@phpunit.de"
  7694. }
  7695. ],
  7696. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7697. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7698. "time": "2017-08-03T12:35:26+00:00"
  7699. },
  7700. {
  7701. "name": "sebastian/object-reflector",
  7702. "version": "1.1.1",
  7703. "source": {
  7704. "type": "git",
  7705. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7706. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  7707. },
  7708. "dist": {
  7709. "type": "zip",
  7710. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  7711. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  7712. "shasum": "",
  7713. "mirrors": [
  7714. {
  7715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7716. "preferred": true
  7717. }
  7718. ]
  7719. },
  7720. "require": {
  7721. "php": "^7.0"
  7722. },
  7723. "require-dev": {
  7724. "phpunit/phpunit": "^6.0"
  7725. },
  7726. "type": "library",
  7727. "extra": {
  7728. "branch-alias": {
  7729. "dev-master": "1.1-dev"
  7730. }
  7731. },
  7732. "autoload": {
  7733. "classmap": [
  7734. "src/"
  7735. ]
  7736. },
  7737. "notification-url": "https://packagist.org/downloads/",
  7738. "license": [
  7739. "BSD-3-Clause"
  7740. ],
  7741. "authors": [
  7742. {
  7743. "name": "Sebastian Bergmann",
  7744. "email": "sebastian@phpunit.de"
  7745. }
  7746. ],
  7747. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7748. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7749. "time": "2017-03-29T09:07:27+00:00"
  7750. },
  7751. {
  7752. "name": "sebastian/recursion-context",
  7753. "version": "3.0.0",
  7754. "source": {
  7755. "type": "git",
  7756. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7757. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  7758. },
  7759. "dist": {
  7760. "type": "zip",
  7761. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  7762. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  7763. "shasum": "",
  7764. "mirrors": [
  7765. {
  7766. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7767. "preferred": true
  7768. }
  7769. ]
  7770. },
  7771. "require": {
  7772. "php": "^7.0"
  7773. },
  7774. "require-dev": {
  7775. "phpunit/phpunit": "^6.0"
  7776. },
  7777. "type": "library",
  7778. "extra": {
  7779. "branch-alias": {
  7780. "dev-master": "3.0.x-dev"
  7781. }
  7782. },
  7783. "autoload": {
  7784. "classmap": [
  7785. "src/"
  7786. ]
  7787. },
  7788. "notification-url": "https://packagist.org/downloads/",
  7789. "license": [
  7790. "BSD-3-Clause"
  7791. ],
  7792. "authors": [
  7793. {
  7794. "name": "Jeff Welch",
  7795. "email": "whatthejeff@gmail.com"
  7796. },
  7797. {
  7798. "name": "Sebastian Bergmann",
  7799. "email": "sebastian@phpunit.de"
  7800. },
  7801. {
  7802. "name": "Adam Harvey",
  7803. "email": "aharvey@php.net"
  7804. }
  7805. ],
  7806. "description": "Provides functionality to recursively process PHP variables",
  7807. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  7808. "time": "2017-03-03T06:23:57+00:00"
  7809. },
  7810. {
  7811. "name": "sebastian/resource-operations",
  7812. "version": "2.0.1",
  7813. "source": {
  7814. "type": "git",
  7815. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7816. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  7817. },
  7818. "dist": {
  7819. "type": "zip",
  7820. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  7821. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  7822. "shasum": "",
  7823. "mirrors": [
  7824. {
  7825. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7826. "preferred": true
  7827. }
  7828. ]
  7829. },
  7830. "require": {
  7831. "php": "^7.1"
  7832. },
  7833. "type": "library",
  7834. "extra": {
  7835. "branch-alias": {
  7836. "dev-master": "2.0-dev"
  7837. }
  7838. },
  7839. "autoload": {
  7840. "classmap": [
  7841. "src/"
  7842. ]
  7843. },
  7844. "notification-url": "https://packagist.org/downloads/",
  7845. "license": [
  7846. "BSD-3-Clause"
  7847. ],
  7848. "authors": [
  7849. {
  7850. "name": "Sebastian Bergmann",
  7851. "email": "sebastian@phpunit.de"
  7852. }
  7853. ],
  7854. "description": "Provides a list of PHP built-in functions that operate on resources",
  7855. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7856. "time": "2018-10-04T04:07:39+00:00"
  7857. },
  7858. {
  7859. "name": "sebastian/type",
  7860. "version": "1.1.3",
  7861. "source": {
  7862. "type": "git",
  7863. "url": "https://github.com/sebastianbergmann/type.git",
  7864. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  7865. },
  7866. "dist": {
  7867. "type": "zip",
  7868. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  7869. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  7870. "shasum": "",
  7871. "mirrors": [
  7872. {
  7873. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7874. "preferred": true
  7875. }
  7876. ]
  7877. },
  7878. "require": {
  7879. "php": "^7.2"
  7880. },
  7881. "require-dev": {
  7882. "phpunit/phpunit": "^8.2"
  7883. },
  7884. "type": "library",
  7885. "extra": {
  7886. "branch-alias": {
  7887. "dev-master": "1.1-dev"
  7888. }
  7889. },
  7890. "autoload": {
  7891. "classmap": [
  7892. "src/"
  7893. ]
  7894. },
  7895. "notification-url": "https://packagist.org/downloads/",
  7896. "license": [
  7897. "BSD-3-Clause"
  7898. ],
  7899. "authors": [
  7900. {
  7901. "name": "Sebastian Bergmann",
  7902. "email": "sebastian@phpunit.de",
  7903. "role": "lead"
  7904. }
  7905. ],
  7906. "description": "Collection of value objects that represent the types of the PHP type system",
  7907. "homepage": "https://github.com/sebastianbergmann/type",
  7908. "time": "2019-07-02T08:10:15+00:00"
  7909. },
  7910. {
  7911. "name": "sebastian/version",
  7912. "version": "2.0.1",
  7913. "source": {
  7914. "type": "git",
  7915. "url": "https://github.com/sebastianbergmann/version.git",
  7916. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  7917. },
  7918. "dist": {
  7919. "type": "zip",
  7920. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  7921. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  7922. "shasum": "",
  7923. "mirrors": [
  7924. {
  7925. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7926. "preferred": true
  7927. }
  7928. ]
  7929. },
  7930. "require": {
  7931. "php": ">=5.6"
  7932. },
  7933. "type": "library",
  7934. "extra": {
  7935. "branch-alias": {
  7936. "dev-master": "2.0.x-dev"
  7937. }
  7938. },
  7939. "autoload": {
  7940. "classmap": [
  7941. "src/"
  7942. ]
  7943. },
  7944. "notification-url": "https://packagist.org/downloads/",
  7945. "license": [
  7946. "BSD-3-Clause"
  7947. ],
  7948. "authors": [
  7949. {
  7950. "name": "Sebastian Bergmann",
  7951. "email": "sebastian@phpunit.de",
  7952. "role": "lead"
  7953. }
  7954. ],
  7955. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7956. "homepage": "https://github.com/sebastianbergmann/version",
  7957. "time": "2016-10-03T07:35:21+00:00"
  7958. },
  7959. {
  7960. "name": "symfony/debug",
  7961. "version": "v4.4.8",
  7962. "source": {
  7963. "type": "git",
  7964. "url": "https://github.com/symfony/debug.git",
  7965. "reference": "346636d2cae417992ecfd761979b2ab98b339a45"
  7966. },
  7967. "dist": {
  7968. "type": "zip",
  7969. "url": "https://api.github.com/repos/symfony/debug/zipball/346636d2cae417992ecfd761979b2ab98b339a45",
  7970. "reference": "346636d2cae417992ecfd761979b2ab98b339a45",
  7971. "shasum": "",
  7972. "mirrors": [
  7973. {
  7974. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7975. "preferred": true
  7976. }
  7977. ]
  7978. },
  7979. "require": {
  7980. "php": "^7.1.3",
  7981. "psr/log": "~1.0"
  7982. },
  7983. "conflict": {
  7984. "symfony/http-kernel": "<3.4"
  7985. },
  7986. "require-dev": {
  7987. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  7988. },
  7989. "type": "library",
  7990. "extra": {
  7991. "branch-alias": {
  7992. "dev-master": "4.4-dev"
  7993. }
  7994. },
  7995. "autoload": {
  7996. "psr-4": {
  7997. "Symfony\\Component\\Debug\\": ""
  7998. },
  7999. "exclude-from-classmap": [
  8000. "/Tests/"
  8001. ]
  8002. },
  8003. "notification-url": "https://packagist.org/downloads/",
  8004. "license": [
  8005. "MIT"
  8006. ],
  8007. "authors": [
  8008. {
  8009. "name": "Fabien Potencier",
  8010. "email": "fabien@symfony.com"
  8011. },
  8012. {
  8013. "name": "Symfony Community",
  8014. "homepage": "https://symfony.com/contributors"
  8015. }
  8016. ],
  8017. "description": "Symfony Debug Component",
  8018. "homepage": "https://symfony.com",
  8019. "time": "2020-03-27T16:54:36+00:00"
  8020. },
  8021. {
  8022. "name": "theseer/tokenizer",
  8023. "version": "1.1.3",
  8024. "source": {
  8025. "type": "git",
  8026. "url": "https://github.com/theseer/tokenizer.git",
  8027. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  8028. },
  8029. "dist": {
  8030. "type": "zip",
  8031. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  8032. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  8033. "shasum": "",
  8034. "mirrors": [
  8035. {
  8036. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8037. "preferred": true
  8038. }
  8039. ]
  8040. },
  8041. "require": {
  8042. "ext-dom": "*",
  8043. "ext-tokenizer": "*",
  8044. "ext-xmlwriter": "*",
  8045. "php": "^7.0"
  8046. },
  8047. "type": "library",
  8048. "autoload": {
  8049. "classmap": [
  8050. "src/"
  8051. ]
  8052. },
  8053. "notification-url": "https://packagist.org/downloads/",
  8054. "license": [
  8055. "BSD-3-Clause"
  8056. ],
  8057. "authors": [
  8058. {
  8059. "name": "Arne Blankerts",
  8060. "email": "arne@blankerts.de",
  8061. "role": "Developer"
  8062. }
  8063. ],
  8064. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8065. "time": "2019-06-13T22:48:21+00:00"
  8066. },
  8067. {
  8068. "name": "webmozart/assert",
  8069. "version": "1.8.0",
  8070. "source": {
  8071. "type": "git",
  8072. "url": "https://github.com/webmozart/assert.git",
  8073. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6"
  8074. },
  8075. "dist": {
  8076. "type": "zip",
  8077. "url": "https://api.github.com/repos/webmozart/assert/zipball/ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  8078. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  8079. "shasum": "",
  8080. "mirrors": [
  8081. {
  8082. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8083. "preferred": true
  8084. }
  8085. ]
  8086. },
  8087. "require": {
  8088. "php": "^5.3.3 || ^7.0",
  8089. "symfony/polyfill-ctype": "^1.8"
  8090. },
  8091. "conflict": {
  8092. "vimeo/psalm": "<3.9.1"
  8093. },
  8094. "require-dev": {
  8095. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  8096. },
  8097. "type": "library",
  8098. "autoload": {
  8099. "psr-4": {
  8100. "Webmozart\\Assert\\": "src/"
  8101. }
  8102. },
  8103. "notification-url": "https://packagist.org/downloads/",
  8104. "license": [
  8105. "MIT"
  8106. ],
  8107. "authors": [
  8108. {
  8109. "name": "Bernhard Schussek",
  8110. "email": "bschussek@gmail.com"
  8111. }
  8112. ],
  8113. "description": "Assertions to validate method input/output with nice error messages.",
  8114. "keywords": [
  8115. "assert",
  8116. "check",
  8117. "validate"
  8118. ],
  8119. "time": "2020-04-18T12:12:48+00:00"
  8120. }
  8121. ],
  8122. "aliases": [],
  8123. "minimum-stability": "dev",
  8124. "stability-flags": [],
  8125. "prefer-stable": true,
  8126. "prefer-lowest": false,
  8127. "platform": {
  8128. "php": "^7.1.3",
  8129. "ext-json": "*",
  8130. "ext-mbstring": "*",
  8131. "ext-openssl": "*",
  8132. "ext-pdo": "*"
  8133. },
  8134. "platform-dev": [],
  8135. "plugin-api-version": "1.1.0"
  8136. }