composer.lock 363 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171
  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": "4c4342ce6a1481f75fbca7b9c6f7fcde",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  20. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  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.3",
  31. "ext-iconv": "*",
  32. "php": "^7.1 || ^8.0"
  33. },
  34. "require-dev": {
  35. "phly/keep-a-changelog": "^1.4",
  36. "phpunit/phpunit": "^7 | ^8 | ^9",
  37. "squizlabs/php_codesniffer": "^3.4"
  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": "https://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": "2020-10-30T02:02:47+00:00"
  63. },
  64. {
  65. "name": "brick/math",
  66. "version": "0.9.2",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/brick/math.git",
  70. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  75. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  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 || ^9.0",
  91. "vimeo/psalm": "4.3.2"
  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. "support": {
  115. "issues": "https://github.com/brick/math/issues",
  116. "source": "https://github.com/brick/math/tree/0.9.2"
  117. },
  118. "funding": [
  119. {
  120. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  121. "type": "tidelift"
  122. }
  123. ],
  124. "time": "2021-01-20T22:51:39+00:00"
  125. },
  126. {
  127. "name": "cakephp/chronos",
  128. "version": "2.1.2",
  129. "source": {
  130. "type": "git",
  131. "url": "https://github.com/cakephp/chronos.git",
  132. "reference": "1d187c71587c97520c00491f626e0f255144953e"
  133. },
  134. "dist": {
  135. "type": "zip",
  136. "url": "https://api.github.com/repos/cakephp/chronos/zipball/1d187c71587c97520c00491f626e0f255144953e",
  137. "reference": "1d187c71587c97520c00491f626e0f255144953e",
  138. "shasum": "",
  139. "mirrors": [
  140. {
  141. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  142. "preferred": true
  143. }
  144. ]
  145. },
  146. "require": {
  147. "php": ">=7.2"
  148. },
  149. "require-dev": {
  150. "cakephp/cakephp-codesniffer": "^4.0",
  151. "phpunit/phpunit": "^8.0 || ^9.0"
  152. },
  153. "type": "library",
  154. "autoload": {
  155. "psr-4": {
  156. "Cake\\Chronos\\": "src/"
  157. },
  158. "files": [
  159. "src/carbon_compat.php"
  160. ]
  161. },
  162. "notification-url": "https://packagist.org/downloads/",
  163. "license": [
  164. "MIT"
  165. ],
  166. "authors": [
  167. {
  168. "name": "Brian Nesbitt",
  169. "email": "brian@nesbot.com",
  170. "homepage": "http://nesbot.com"
  171. },
  172. {
  173. "name": "The CakePHP Team",
  174. "homepage": "http://cakephp.org"
  175. }
  176. ],
  177. "description": "A simple API extension for DateTime.",
  178. "homepage": "http://cakephp.org",
  179. "keywords": [
  180. "date",
  181. "datetime",
  182. "time"
  183. ],
  184. "support": {
  185. "irc": "irc://irc.freenode.org/cakephp",
  186. "issues": "https://github.com/cakephp/chronos/issues",
  187. "source": "https://github.com/cakephp/chronos"
  188. },
  189. "time": "2021-04-07T01:06:46+00:00"
  190. },
  191. {
  192. "name": "dasprid/enum",
  193. "version": "1.0.3",
  194. "source": {
  195. "type": "git",
  196. "url": "https://github.com/DASPRiD/Enum.git",
  197. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  198. },
  199. "dist": {
  200. "type": "zip",
  201. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  202. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  203. "shasum": "",
  204. "mirrors": [
  205. {
  206. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  207. "preferred": true
  208. }
  209. ]
  210. },
  211. "require-dev": {
  212. "phpunit/phpunit": "^7 | ^8 | ^9",
  213. "squizlabs/php_codesniffer": "^3.4"
  214. },
  215. "type": "library",
  216. "autoload": {
  217. "psr-4": {
  218. "DASPRiD\\Enum\\": "src/"
  219. }
  220. },
  221. "notification-url": "https://packagist.org/downloads/",
  222. "license": [
  223. "BSD-2-Clause"
  224. ],
  225. "authors": [
  226. {
  227. "name": "Ben Scholzen 'DASPRiD'",
  228. "email": "mail@dasprids.de",
  229. "homepage": "https://dasprids.de/",
  230. "role": "Developer"
  231. }
  232. ],
  233. "description": "PHP 7.1 enum implementation",
  234. "keywords": [
  235. "enum",
  236. "map"
  237. ],
  238. "time": "2020-10-02T16:03:48+00:00"
  239. },
  240. {
  241. "name": "doctrine/cache",
  242. "version": "1.11.3",
  243. "source": {
  244. "type": "git",
  245. "url": "https://github.com/doctrine/cache.git",
  246. "reference": "3bb5588cec00a0268829cc4a518490df6741af9d"
  247. },
  248. "dist": {
  249. "type": "zip",
  250. "url": "https://api.github.com/repos/doctrine/cache/zipball/3bb5588cec00a0268829cc4a518490df6741af9d",
  251. "reference": "3bb5588cec00a0268829cc4a518490df6741af9d",
  252. "shasum": "",
  253. "mirrors": [
  254. {
  255. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  256. "preferred": true
  257. }
  258. ]
  259. },
  260. "require": {
  261. "php": "~7.1 || ^8.0"
  262. },
  263. "conflict": {
  264. "doctrine/common": ">2.2,<2.4",
  265. "psr/cache": ">=3"
  266. },
  267. "require-dev": {
  268. "alcaeus/mongo-php-adapter": "^1.1",
  269. "cache/integration-tests": "dev-master",
  270. "doctrine/coding-standard": "^8.0",
  271. "mongodb/mongodb": "^1.1",
  272. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  273. "predis/predis": "~1.0",
  274. "psr/cache": "^1.0 || ^2.0",
  275. "symfony/cache": "^4.4 || ^5.2"
  276. },
  277. "suggest": {
  278. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  279. },
  280. "type": "library",
  281. "autoload": {
  282. "psr-4": {
  283. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  284. }
  285. },
  286. "notification-url": "https://packagist.org/downloads/",
  287. "license": [
  288. "MIT"
  289. ],
  290. "authors": [
  291. {
  292. "name": "Guilherme Blanco",
  293. "email": "guilhermeblanco@gmail.com"
  294. },
  295. {
  296. "name": "Roman Borschel",
  297. "email": "roman@code-factory.org"
  298. },
  299. {
  300. "name": "Benjamin Eberlei",
  301. "email": "kontakt@beberlei.de"
  302. },
  303. {
  304. "name": "Jonathan Wage",
  305. "email": "jonwage@gmail.com"
  306. },
  307. {
  308. "name": "Johannes Schmitt",
  309. "email": "schmittjoh@gmail.com"
  310. }
  311. ],
  312. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  313. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  314. "keywords": [
  315. "abstraction",
  316. "apcu",
  317. "cache",
  318. "caching",
  319. "couchdb",
  320. "memcached",
  321. "php",
  322. "redis",
  323. "xcache"
  324. ],
  325. "support": {
  326. "issues": "https://github.com/doctrine/cache/issues",
  327. "source": "https://github.com/doctrine/cache/tree/1.11.3"
  328. },
  329. "funding": [
  330. {
  331. "url": "https://www.doctrine-project.org/sponsorship.html",
  332. "type": "custom"
  333. },
  334. {
  335. "url": "https://www.patreon.com/phpdoctrine",
  336. "type": "patreon"
  337. },
  338. {
  339. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  340. "type": "tidelift"
  341. }
  342. ],
  343. "time": "2021-05-25T09:01:55+00:00"
  344. },
  345. {
  346. "name": "doctrine/dbal",
  347. "version": "2.13.1",
  348. "source": {
  349. "type": "git",
  350. "url": "https://github.com/doctrine/dbal.git",
  351. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9"
  352. },
  353. "dist": {
  354. "type": "zip",
  355. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c800380457948e65bbd30ba92cc17cda108bf8c9",
  356. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9",
  357. "shasum": "",
  358. "mirrors": [
  359. {
  360. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  361. "preferred": true
  362. }
  363. ]
  364. },
  365. "require": {
  366. "doctrine/cache": "^1.0",
  367. "doctrine/deprecations": "^0.5.3",
  368. "doctrine/event-manager": "^1.0",
  369. "ext-pdo": "*",
  370. "php": "^7.1 || ^8"
  371. },
  372. "require-dev": {
  373. "doctrine/coding-standard": "8.2.0",
  374. "jetbrains/phpstorm-stubs": "2020.2",
  375. "phpstan/phpstan": "0.12.81",
  376. "phpunit/phpunit": "^7.5.20|^8.5|9.5.0",
  377. "squizlabs/php_codesniffer": "3.6.0",
  378. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  379. "vimeo/psalm": "4.6.4"
  380. },
  381. "suggest": {
  382. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  383. },
  384. "bin": [
  385. "bin/doctrine-dbal"
  386. ],
  387. "type": "library",
  388. "autoload": {
  389. "psr-4": {
  390. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  391. }
  392. },
  393. "notification-url": "https://packagist.org/downloads/",
  394. "license": [
  395. "MIT"
  396. ],
  397. "authors": [
  398. {
  399. "name": "Guilherme Blanco",
  400. "email": "guilhermeblanco@gmail.com"
  401. },
  402. {
  403. "name": "Roman Borschel",
  404. "email": "roman@code-factory.org"
  405. },
  406. {
  407. "name": "Benjamin Eberlei",
  408. "email": "kontakt@beberlei.de"
  409. },
  410. {
  411. "name": "Jonathan Wage",
  412. "email": "jonwage@gmail.com"
  413. }
  414. ],
  415. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  416. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  417. "keywords": [
  418. "abstraction",
  419. "database",
  420. "db2",
  421. "dbal",
  422. "mariadb",
  423. "mssql",
  424. "mysql",
  425. "oci8",
  426. "oracle",
  427. "pdo",
  428. "pgsql",
  429. "postgresql",
  430. "queryobject",
  431. "sasql",
  432. "sql",
  433. "sqlanywhere",
  434. "sqlite",
  435. "sqlserver",
  436. "sqlsrv"
  437. ],
  438. "support": {
  439. "issues": "https://github.com/doctrine/dbal/issues",
  440. "source": "https://github.com/doctrine/dbal/tree/2.13.1"
  441. },
  442. "funding": [
  443. {
  444. "url": "https://www.doctrine-project.org/sponsorship.html",
  445. "type": "custom"
  446. },
  447. {
  448. "url": "https://www.patreon.com/phpdoctrine",
  449. "type": "patreon"
  450. },
  451. {
  452. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  453. "type": "tidelift"
  454. }
  455. ],
  456. "time": "2021-04-17T17:30:19+00:00"
  457. },
  458. {
  459. "name": "doctrine/deprecations",
  460. "version": "v0.5.3",
  461. "source": {
  462. "type": "git",
  463. "url": "https://github.com/doctrine/deprecations.git",
  464. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  465. },
  466. "dist": {
  467. "type": "zip",
  468. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  469. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  470. "shasum": "",
  471. "mirrors": [
  472. {
  473. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  474. "preferred": true
  475. }
  476. ]
  477. },
  478. "require": {
  479. "php": "^7.1|^8.0"
  480. },
  481. "require-dev": {
  482. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  483. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  484. "psr/log": "^1.0"
  485. },
  486. "suggest": {
  487. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  488. },
  489. "type": "library",
  490. "autoload": {
  491. "psr-4": {
  492. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  493. }
  494. },
  495. "notification-url": "https://packagist.org/downloads/",
  496. "license": [
  497. "MIT"
  498. ],
  499. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  500. "homepage": "https://www.doctrine-project.org/",
  501. "support": {
  502. "issues": "https://github.com/doctrine/deprecations/issues",
  503. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  504. },
  505. "time": "2021-03-21T12:59:47+00:00"
  506. },
  507. {
  508. "name": "doctrine/event-manager",
  509. "version": "1.1.1",
  510. "source": {
  511. "type": "git",
  512. "url": "https://github.com/doctrine/event-manager.git",
  513. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  514. },
  515. "dist": {
  516. "type": "zip",
  517. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  518. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  519. "shasum": "",
  520. "mirrors": [
  521. {
  522. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  523. "preferred": true
  524. }
  525. ]
  526. },
  527. "require": {
  528. "php": "^7.1 || ^8.0"
  529. },
  530. "conflict": {
  531. "doctrine/common": "<2.9@dev"
  532. },
  533. "require-dev": {
  534. "doctrine/coding-standard": "^6.0",
  535. "phpunit/phpunit": "^7.0"
  536. },
  537. "type": "library",
  538. "extra": {
  539. "branch-alias": {
  540. "dev-master": "1.0.x-dev"
  541. }
  542. },
  543. "autoload": {
  544. "psr-4": {
  545. "Doctrine\\Common\\": "lib/Doctrine/Common"
  546. }
  547. },
  548. "notification-url": "https://packagist.org/downloads/",
  549. "license": [
  550. "MIT"
  551. ],
  552. "authors": [
  553. {
  554. "name": "Guilherme Blanco",
  555. "email": "guilhermeblanco@gmail.com"
  556. },
  557. {
  558. "name": "Roman Borschel",
  559. "email": "roman@code-factory.org"
  560. },
  561. {
  562. "name": "Benjamin Eberlei",
  563. "email": "kontakt@beberlei.de"
  564. },
  565. {
  566. "name": "Jonathan Wage",
  567. "email": "jonwage@gmail.com"
  568. },
  569. {
  570. "name": "Johannes Schmitt",
  571. "email": "schmittjoh@gmail.com"
  572. },
  573. {
  574. "name": "Marco Pivetta",
  575. "email": "ocramius@gmail.com"
  576. }
  577. ],
  578. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  579. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  580. "keywords": [
  581. "event",
  582. "event dispatcher",
  583. "event manager",
  584. "event system",
  585. "events"
  586. ],
  587. "funding": [
  588. {
  589. "url": "https://www.doctrine-project.org/sponsorship.html",
  590. "type": "custom"
  591. },
  592. {
  593. "url": "https://www.patreon.com/phpdoctrine",
  594. "type": "patreon"
  595. },
  596. {
  597. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  598. "type": "tidelift"
  599. }
  600. ],
  601. "time": "2020-05-29T18:28:51+00:00"
  602. },
  603. {
  604. "name": "doctrine/inflector",
  605. "version": "2.0.3",
  606. "source": {
  607. "type": "git",
  608. "url": "https://github.com/doctrine/inflector.git",
  609. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  610. },
  611. "dist": {
  612. "type": "zip",
  613. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  614. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  615. "shasum": "",
  616. "mirrors": [
  617. {
  618. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  619. "preferred": true
  620. }
  621. ]
  622. },
  623. "require": {
  624. "php": "^7.2 || ^8.0"
  625. },
  626. "require-dev": {
  627. "doctrine/coding-standard": "^7.0",
  628. "phpstan/phpstan": "^0.11",
  629. "phpstan/phpstan-phpunit": "^0.11",
  630. "phpstan/phpstan-strict-rules": "^0.11",
  631. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  632. },
  633. "type": "library",
  634. "extra": {
  635. "branch-alias": {
  636. "dev-master": "2.0.x-dev"
  637. }
  638. },
  639. "autoload": {
  640. "psr-4": {
  641. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  642. }
  643. },
  644. "notification-url": "https://packagist.org/downloads/",
  645. "license": [
  646. "MIT"
  647. ],
  648. "authors": [
  649. {
  650. "name": "Guilherme Blanco",
  651. "email": "guilhermeblanco@gmail.com"
  652. },
  653. {
  654. "name": "Roman Borschel",
  655. "email": "roman@code-factory.org"
  656. },
  657. {
  658. "name": "Benjamin Eberlei",
  659. "email": "kontakt@beberlei.de"
  660. },
  661. {
  662. "name": "Jonathan Wage",
  663. "email": "jonwage@gmail.com"
  664. },
  665. {
  666. "name": "Johannes Schmitt",
  667. "email": "schmittjoh@gmail.com"
  668. }
  669. ],
  670. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  671. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  672. "keywords": [
  673. "inflection",
  674. "inflector",
  675. "lowercase",
  676. "manipulation",
  677. "php",
  678. "plural",
  679. "singular",
  680. "strings",
  681. "uppercase",
  682. "words"
  683. ],
  684. "funding": [
  685. {
  686. "url": "https://www.doctrine-project.org/sponsorship.html",
  687. "type": "custom"
  688. },
  689. {
  690. "url": "https://www.patreon.com/phpdoctrine",
  691. "type": "patreon"
  692. },
  693. {
  694. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  695. "type": "tidelift"
  696. }
  697. ],
  698. "time": "2020-05-29T15:13:26+00:00"
  699. },
  700. {
  701. "name": "doctrine/lexer",
  702. "version": "1.2.1",
  703. "source": {
  704. "type": "git",
  705. "url": "https://github.com/doctrine/lexer.git",
  706. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  707. },
  708. "dist": {
  709. "type": "zip",
  710. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  711. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  712. "shasum": "",
  713. "mirrors": [
  714. {
  715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  716. "preferred": true
  717. }
  718. ]
  719. },
  720. "require": {
  721. "php": "^7.2 || ^8.0"
  722. },
  723. "require-dev": {
  724. "doctrine/coding-standard": "^6.0",
  725. "phpstan/phpstan": "^0.11.8",
  726. "phpunit/phpunit": "^8.2"
  727. },
  728. "type": "library",
  729. "extra": {
  730. "branch-alias": {
  731. "dev-master": "1.2.x-dev"
  732. }
  733. },
  734. "autoload": {
  735. "psr-4": {
  736. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  737. }
  738. },
  739. "notification-url": "https://packagist.org/downloads/",
  740. "license": [
  741. "MIT"
  742. ],
  743. "authors": [
  744. {
  745. "name": "Guilherme Blanco",
  746. "email": "guilhermeblanco@gmail.com"
  747. },
  748. {
  749. "name": "Roman Borschel",
  750. "email": "roman@code-factory.org"
  751. },
  752. {
  753. "name": "Johannes Schmitt",
  754. "email": "schmittjoh@gmail.com"
  755. }
  756. ],
  757. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  758. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  759. "keywords": [
  760. "annotations",
  761. "docblock",
  762. "lexer",
  763. "parser",
  764. "php"
  765. ],
  766. "funding": [
  767. {
  768. "url": "https://www.doctrine-project.org/sponsorship.html",
  769. "type": "custom"
  770. },
  771. {
  772. "url": "https://www.patreon.com/phpdoctrine",
  773. "type": "patreon"
  774. },
  775. {
  776. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  777. "type": "tidelift"
  778. }
  779. ],
  780. "time": "2020-05-25T17:44:05+00:00"
  781. },
  782. {
  783. "name": "dragonmantank/cron-expression",
  784. "version": "v2.3.1",
  785. "source": {
  786. "type": "git",
  787. "url": "https://github.com/dragonmantank/cron-expression.git",
  788. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  789. },
  790. "dist": {
  791. "type": "zip",
  792. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  793. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  794. "shasum": "",
  795. "mirrors": [
  796. {
  797. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  798. "preferred": true
  799. }
  800. ]
  801. },
  802. "require": {
  803. "php": "^7.0|^8.0"
  804. },
  805. "require-dev": {
  806. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  807. },
  808. "type": "library",
  809. "extra": {
  810. "branch-alias": {
  811. "dev-master": "2.3-dev"
  812. }
  813. },
  814. "autoload": {
  815. "psr-4": {
  816. "Cron\\": "src/Cron/"
  817. }
  818. },
  819. "notification-url": "https://packagist.org/downloads/",
  820. "license": [
  821. "MIT"
  822. ],
  823. "authors": [
  824. {
  825. "name": "Michael Dowling",
  826. "email": "mtdowling@gmail.com",
  827. "homepage": "https://github.com/mtdowling"
  828. },
  829. {
  830. "name": "Chris Tankersley",
  831. "email": "chris@ctankersley.com",
  832. "homepage": "https://github.com/dragonmantank"
  833. }
  834. ],
  835. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  836. "keywords": [
  837. "cron",
  838. "schedule"
  839. ],
  840. "time": "2020-10-13T00:52:37+00:00"
  841. },
  842. {
  843. "name": "egulias/email-validator",
  844. "version": "2.1.25",
  845. "source": {
  846. "type": "git",
  847. "url": "https://github.com/egulias/EmailValidator.git",
  848. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  849. },
  850. "dist": {
  851. "type": "zip",
  852. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  853. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  854. "shasum": "",
  855. "mirrors": [
  856. {
  857. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  858. "preferred": true
  859. }
  860. ]
  861. },
  862. "require": {
  863. "doctrine/lexer": "^1.0.1",
  864. "php": ">=5.5",
  865. "symfony/polyfill-intl-idn": "^1.10"
  866. },
  867. "require-dev": {
  868. "dominicsayers/isemail": "^3.0.7",
  869. "phpunit/phpunit": "^4.8.36|^7.5.15",
  870. "satooshi/php-coveralls": "^1.0.1"
  871. },
  872. "suggest": {
  873. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  874. },
  875. "type": "library",
  876. "extra": {
  877. "branch-alias": {
  878. "dev-master": "2.1.x-dev"
  879. }
  880. },
  881. "autoload": {
  882. "psr-4": {
  883. "Egulias\\EmailValidator\\": "src"
  884. }
  885. },
  886. "notification-url": "https://packagist.org/downloads/",
  887. "license": [
  888. "MIT"
  889. ],
  890. "authors": [
  891. {
  892. "name": "Eduardo Gulias Davis"
  893. }
  894. ],
  895. "description": "A library for validating emails against several RFCs",
  896. "homepage": "https://github.com/egulias/EmailValidator",
  897. "keywords": [
  898. "email",
  899. "emailvalidation",
  900. "emailvalidator",
  901. "validation",
  902. "validator"
  903. ],
  904. "support": {
  905. "issues": "https://github.com/egulias/EmailValidator/issues",
  906. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  907. },
  908. "funding": [
  909. {
  910. "url": "https://github.com/egulias",
  911. "type": "github"
  912. }
  913. ],
  914. "time": "2020-12-29T14:50:06+00:00"
  915. },
  916. {
  917. "name": "endroid/qr-code",
  918. "version": "3.9.7",
  919. "source": {
  920. "type": "git",
  921. "url": "https://github.com/endroid/qr-code.git",
  922. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  923. },
  924. "dist": {
  925. "type": "zip",
  926. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  927. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  928. "shasum": "",
  929. "mirrors": [
  930. {
  931. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  932. "preferred": true
  933. }
  934. ]
  935. },
  936. "require": {
  937. "bacon/bacon-qr-code": "^2.0",
  938. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  939. "myclabs/php-enum": "^1.5",
  940. "php": "^7.3||^8.0",
  941. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  942. "symfony/property-access": "^3.4||^4.4||^5.0"
  943. },
  944. "require-dev": {
  945. "endroid/quality": "^1.5.2",
  946. "setasign/fpdf": "^1.8"
  947. },
  948. "suggest": {
  949. "ext-gd": "Required for generating PNG images",
  950. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  951. "setasign/fpdf": "Required to use the FPDF writer.",
  952. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  953. },
  954. "type": "library",
  955. "extra": {
  956. "branch-alias": {
  957. "dev-master": "3.x-dev"
  958. }
  959. },
  960. "autoload": {
  961. "psr-4": {
  962. "Endroid\\QrCode\\": "src/"
  963. }
  964. },
  965. "notification-url": "https://packagist.org/downloads/",
  966. "license": [
  967. "MIT"
  968. ],
  969. "authors": [
  970. {
  971. "name": "Jeroen van den Enden",
  972. "email": "info@endroid.nl"
  973. }
  974. ],
  975. "description": "Endroid QR Code",
  976. "homepage": "https://github.com/endroid/qr-code",
  977. "keywords": [
  978. "bundle",
  979. "code",
  980. "endroid",
  981. "php",
  982. "qr",
  983. "qrcode"
  984. ],
  985. "support": {
  986. "issues": "https://github.com/endroid/qr-code/issues",
  987. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  988. },
  989. "funding": [
  990. {
  991. "url": "https://github.com/endroid",
  992. "type": "github"
  993. }
  994. ],
  995. "time": "2021-04-20T19:10:54+00:00"
  996. },
  997. {
  998. "name": "ezyang/htmlpurifier",
  999. "version": "v4.13.0",
  1000. "source": {
  1001. "type": "git",
  1002. "url": "https://github.com/ezyang/htmlpurifier.git",
  1003. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  1004. },
  1005. "dist": {
  1006. "type": "zip",
  1007. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1008. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1009. "shasum": "",
  1010. "mirrors": [
  1011. {
  1012. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1013. "preferred": true
  1014. }
  1015. ]
  1016. },
  1017. "require": {
  1018. "php": ">=5.2"
  1019. },
  1020. "require-dev": {
  1021. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1022. },
  1023. "type": "library",
  1024. "autoload": {
  1025. "psr-0": {
  1026. "HTMLPurifier": "library/"
  1027. },
  1028. "files": [
  1029. "library/HTMLPurifier.composer.php"
  1030. ],
  1031. "exclude-from-classmap": [
  1032. "/library/HTMLPurifier/Language/"
  1033. ]
  1034. },
  1035. "notification-url": "https://packagist.org/downloads/",
  1036. "license": [
  1037. "LGPL-2.1-or-later"
  1038. ],
  1039. "authors": [
  1040. {
  1041. "name": "Edward Z. Yang",
  1042. "email": "admin@htmlpurifier.org",
  1043. "homepage": "http://ezyang.com"
  1044. }
  1045. ],
  1046. "description": "Standards compliant HTML filter written in PHP",
  1047. "homepage": "http://htmlpurifier.org/",
  1048. "keywords": [
  1049. "html"
  1050. ],
  1051. "support": {
  1052. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1053. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1054. },
  1055. "time": "2020-06-29T00:56:53+00:00"
  1056. },
  1057. {
  1058. "name": "facade/flare-client-php",
  1059. "version": "1.8.0",
  1060. "source": {
  1061. "type": "git",
  1062. "url": "https://github.com/facade/flare-client-php.git",
  1063. "reference": "69742118c037f34ee1ef86dc605be4a105d9e984"
  1064. },
  1065. "dist": {
  1066. "type": "zip",
  1067. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/69742118c037f34ee1ef86dc605be4a105d9e984",
  1068. "reference": "69742118c037f34ee1ef86dc605be4a105d9e984",
  1069. "shasum": "",
  1070. "mirrors": [
  1071. {
  1072. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1073. "preferred": true
  1074. }
  1075. ]
  1076. },
  1077. "require": {
  1078. "facade/ignition-contracts": "~1.0",
  1079. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  1080. "php": "^7.1|^8.0",
  1081. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  1082. "symfony/mime": "^3.4|^4.0|^5.1",
  1083. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  1084. },
  1085. "require-dev": {
  1086. "friendsofphp/php-cs-fixer": "^2.14",
  1087. "phpunit/phpunit": "^7.5.16",
  1088. "spatie/phpunit-snapshot-assertions": "^2.0"
  1089. },
  1090. "type": "library",
  1091. "extra": {
  1092. "branch-alias": {
  1093. "dev-master": "1.0-dev"
  1094. }
  1095. },
  1096. "autoload": {
  1097. "psr-4": {
  1098. "Facade\\FlareClient\\": "src"
  1099. },
  1100. "files": [
  1101. "src/helpers.php"
  1102. ]
  1103. },
  1104. "notification-url": "https://packagist.org/downloads/",
  1105. "license": [
  1106. "MIT"
  1107. ],
  1108. "description": "Send PHP errors to Flare",
  1109. "homepage": "https://github.com/facade/flare-client-php",
  1110. "keywords": [
  1111. "exception",
  1112. "facade",
  1113. "flare",
  1114. "reporting"
  1115. ],
  1116. "support": {
  1117. "issues": "https://github.com/facade/flare-client-php/issues",
  1118. "source": "https://github.com/facade/flare-client-php/tree/1.8.0"
  1119. },
  1120. "funding": [
  1121. {
  1122. "url": "https://github.com/spatie",
  1123. "type": "github"
  1124. }
  1125. ],
  1126. "time": "2021-04-30T11:11:50+00:00"
  1127. },
  1128. {
  1129. "name": "facade/ignition",
  1130. "version": "2.9.0",
  1131. "source": {
  1132. "type": "git",
  1133. "url": "https://github.com/facade/ignition.git",
  1134. "reference": "e7db3b601ce742568b92648818ef903904d20164"
  1135. },
  1136. "dist": {
  1137. "type": "zip",
  1138. "url": "https://api.github.com/repos/facade/ignition/zipball/e7db3b601ce742568b92648818ef903904d20164",
  1139. "reference": "e7db3b601ce742568b92648818ef903904d20164",
  1140. "shasum": "",
  1141. "mirrors": [
  1142. {
  1143. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1144. "preferred": true
  1145. }
  1146. ]
  1147. },
  1148. "require": {
  1149. "ext-json": "*",
  1150. "ext-mbstring": "*",
  1151. "facade/flare-client-php": "^1.6",
  1152. "facade/ignition-contracts": "^1.0.2",
  1153. "filp/whoops": "^2.4",
  1154. "illuminate/support": "^7.0|^8.0",
  1155. "monolog/monolog": "^2.0",
  1156. "php": "^7.2.5|^8.0",
  1157. "symfony/console": "^5.0",
  1158. "symfony/var-dumper": "^5.0"
  1159. },
  1160. "require-dev": {
  1161. "friendsofphp/php-cs-fixer": "^2.14",
  1162. "mockery/mockery": "^1.3",
  1163. "orchestra/testbench": "^5.0|^6.0",
  1164. "psalm/plugin-laravel": "^1.2"
  1165. },
  1166. "suggest": {
  1167. "laravel/telescope": "^3.1"
  1168. },
  1169. "type": "library",
  1170. "extra": {
  1171. "branch-alias": {
  1172. "dev-master": "2.x-dev"
  1173. },
  1174. "laravel": {
  1175. "providers": [
  1176. "Facade\\Ignition\\IgnitionServiceProvider"
  1177. ],
  1178. "aliases": {
  1179. "Flare": "Facade\\Ignition\\Facades\\Flare"
  1180. }
  1181. }
  1182. },
  1183. "autoload": {
  1184. "psr-4": {
  1185. "Facade\\Ignition\\": "src"
  1186. },
  1187. "files": [
  1188. "src/helpers.php"
  1189. ]
  1190. },
  1191. "notification-url": "https://packagist.org/downloads/",
  1192. "license": [
  1193. "MIT"
  1194. ],
  1195. "description": "A beautiful error page for Laravel applications.",
  1196. "homepage": "https://github.com/facade/ignition",
  1197. "keywords": [
  1198. "error",
  1199. "flare",
  1200. "laravel",
  1201. "page"
  1202. ],
  1203. "support": {
  1204. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  1205. "forum": "https://twitter.com/flareappio",
  1206. "issues": "https://github.com/facade/ignition/issues",
  1207. "source": "https://github.com/facade/ignition"
  1208. },
  1209. "time": "2021-05-05T06:45:12+00:00"
  1210. },
  1211. {
  1212. "name": "facade/ignition-contracts",
  1213. "version": "1.0.2",
  1214. "source": {
  1215. "type": "git",
  1216. "url": "https://github.com/facade/ignition-contracts.git",
  1217. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1218. },
  1219. "dist": {
  1220. "type": "zip",
  1221. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1222. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1223. "shasum": "",
  1224. "mirrors": [
  1225. {
  1226. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1227. "preferred": true
  1228. }
  1229. ]
  1230. },
  1231. "require": {
  1232. "php": "^7.3|^8.0"
  1233. },
  1234. "require-dev": {
  1235. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1236. "phpunit/phpunit": "^9.3.11",
  1237. "vimeo/psalm": "^3.17.1"
  1238. },
  1239. "type": "library",
  1240. "autoload": {
  1241. "psr-4": {
  1242. "Facade\\IgnitionContracts\\": "src"
  1243. }
  1244. },
  1245. "notification-url": "https://packagist.org/downloads/",
  1246. "license": [
  1247. "MIT"
  1248. ],
  1249. "authors": [
  1250. {
  1251. "name": "Freek Van der Herten",
  1252. "email": "freek@spatie.be",
  1253. "homepage": "https://flareapp.io",
  1254. "role": "Developer"
  1255. }
  1256. ],
  1257. "description": "Solution contracts for Ignition",
  1258. "homepage": "https://github.com/facade/ignition-contracts",
  1259. "keywords": [
  1260. "contracts",
  1261. "flare",
  1262. "ignition"
  1263. ],
  1264. "time": "2020-10-16T08:27:54+00:00"
  1265. },
  1266. {
  1267. "name": "fideloper/proxy",
  1268. "version": "4.4.1",
  1269. "source": {
  1270. "type": "git",
  1271. "url": "https://github.com/fideloper/TrustedProxy.git",
  1272. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1273. },
  1274. "dist": {
  1275. "type": "zip",
  1276. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1277. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1278. "shasum": "",
  1279. "mirrors": [
  1280. {
  1281. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1282. "preferred": true
  1283. }
  1284. ]
  1285. },
  1286. "require": {
  1287. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1288. "php": ">=5.4.0"
  1289. },
  1290. "require-dev": {
  1291. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1292. "mockery/mockery": "^1.0",
  1293. "phpunit/phpunit": "^6.0"
  1294. },
  1295. "type": "library",
  1296. "extra": {
  1297. "laravel": {
  1298. "providers": [
  1299. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1300. ]
  1301. }
  1302. },
  1303. "autoload": {
  1304. "psr-4": {
  1305. "Fideloper\\Proxy\\": "src/"
  1306. }
  1307. },
  1308. "notification-url": "https://packagist.org/downloads/",
  1309. "license": [
  1310. "MIT"
  1311. ],
  1312. "authors": [
  1313. {
  1314. "name": "Chris Fidao",
  1315. "email": "fideloper@gmail.com"
  1316. }
  1317. ],
  1318. "description": "Set trusted proxies for Laravel",
  1319. "keywords": [
  1320. "load balancing",
  1321. "proxy",
  1322. "trusted proxy"
  1323. ],
  1324. "time": "2020-10-22T13:48:01+00:00"
  1325. },
  1326. {
  1327. "name": "filp/whoops",
  1328. "version": "2.12.1",
  1329. "source": {
  1330. "type": "git",
  1331. "url": "https://github.com/filp/whoops.git",
  1332. "reference": "c13c0be93cff50f88bbd70827d993026821914dd"
  1333. },
  1334. "dist": {
  1335. "type": "zip",
  1336. "url": "https://api.github.com/repos/filp/whoops/zipball/c13c0be93cff50f88bbd70827d993026821914dd",
  1337. "reference": "c13c0be93cff50f88bbd70827d993026821914dd",
  1338. "shasum": "",
  1339. "mirrors": [
  1340. {
  1341. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1342. "preferred": true
  1343. }
  1344. ]
  1345. },
  1346. "require": {
  1347. "php": "^5.5.9 || ^7.0 || ^8.0",
  1348. "psr/log": "^1.0.1"
  1349. },
  1350. "require-dev": {
  1351. "mockery/mockery": "^0.9 || ^1.0",
  1352. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  1353. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  1354. },
  1355. "suggest": {
  1356. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  1357. "whoops/soap": "Formats errors as SOAP responses"
  1358. },
  1359. "type": "library",
  1360. "extra": {
  1361. "branch-alias": {
  1362. "dev-master": "2.7-dev"
  1363. }
  1364. },
  1365. "autoload": {
  1366. "psr-4": {
  1367. "Whoops\\": "src/Whoops/"
  1368. }
  1369. },
  1370. "notification-url": "https://packagist.org/downloads/",
  1371. "license": [
  1372. "MIT"
  1373. ],
  1374. "authors": [
  1375. {
  1376. "name": "Filipe Dobreira",
  1377. "homepage": "https://github.com/filp",
  1378. "role": "Developer"
  1379. }
  1380. ],
  1381. "description": "php error handling for cool kids",
  1382. "homepage": "https://filp.github.io/whoops/",
  1383. "keywords": [
  1384. "error",
  1385. "exception",
  1386. "handling",
  1387. "library",
  1388. "throwable",
  1389. "whoops"
  1390. ],
  1391. "support": {
  1392. "issues": "https://github.com/filp/whoops/issues",
  1393. "source": "https://github.com/filp/whoops/tree/2.12.1"
  1394. },
  1395. "funding": [
  1396. {
  1397. "url": "https://github.com/denis-sokolov",
  1398. "type": "github"
  1399. }
  1400. ],
  1401. "time": "2021-04-25T12:00:00+00:00"
  1402. },
  1403. {
  1404. "name": "firebase/php-jwt",
  1405. "version": "v5.2.1",
  1406. "source": {
  1407. "type": "git",
  1408. "url": "https://github.com/firebase/php-jwt.git",
  1409. "reference": "f42c9110abe98dd6cfe9053c49bc86acc70b2d23"
  1410. },
  1411. "dist": {
  1412. "type": "zip",
  1413. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/f42c9110abe98dd6cfe9053c49bc86acc70b2d23",
  1414. "reference": "f42c9110abe98dd6cfe9053c49bc86acc70b2d23",
  1415. "shasum": "",
  1416. "mirrors": [
  1417. {
  1418. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1419. "preferred": true
  1420. }
  1421. ]
  1422. },
  1423. "require": {
  1424. "php": ">=5.3.0"
  1425. },
  1426. "require-dev": {
  1427. "phpunit/phpunit": ">=4.8 <=9"
  1428. },
  1429. "type": "library",
  1430. "autoload": {
  1431. "psr-4": {
  1432. "Firebase\\JWT\\": "src"
  1433. }
  1434. },
  1435. "notification-url": "https://packagist.org/downloads/",
  1436. "license": [
  1437. "BSD-3-Clause"
  1438. ],
  1439. "authors": [
  1440. {
  1441. "name": "Neuman Vong",
  1442. "email": "neuman+pear@twilio.com",
  1443. "role": "Developer"
  1444. },
  1445. {
  1446. "name": "Anant Narayanan",
  1447. "email": "anant@php.net",
  1448. "role": "Developer"
  1449. }
  1450. ],
  1451. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1452. "homepage": "https://github.com/firebase/php-jwt",
  1453. "keywords": [
  1454. "jwt",
  1455. "php"
  1456. ],
  1457. "support": {
  1458. "issues": "https://github.com/firebase/php-jwt/issues",
  1459. "source": "https://github.com/firebase/php-jwt/tree/v5.2.1"
  1460. },
  1461. "time": "2021-02-12T00:02:00+00:00"
  1462. },
  1463. {
  1464. "name": "guzzlehttp/guzzle",
  1465. "version": "6.5.5",
  1466. "source": {
  1467. "type": "git",
  1468. "url": "https://github.com/guzzle/guzzle.git",
  1469. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1470. },
  1471. "dist": {
  1472. "type": "zip",
  1473. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1474. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1475. "shasum": "",
  1476. "mirrors": [
  1477. {
  1478. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1479. "preferred": true
  1480. }
  1481. ]
  1482. },
  1483. "require": {
  1484. "ext-json": "*",
  1485. "guzzlehttp/promises": "^1.0",
  1486. "guzzlehttp/psr7": "^1.6.1",
  1487. "php": ">=5.5",
  1488. "symfony/polyfill-intl-idn": "^1.17.0"
  1489. },
  1490. "require-dev": {
  1491. "ext-curl": "*",
  1492. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1493. "psr/log": "^1.1"
  1494. },
  1495. "suggest": {
  1496. "psr/log": "Required for using the Log middleware"
  1497. },
  1498. "type": "library",
  1499. "extra": {
  1500. "branch-alias": {
  1501. "dev-master": "6.5-dev"
  1502. }
  1503. },
  1504. "autoload": {
  1505. "psr-4": {
  1506. "GuzzleHttp\\": "src/"
  1507. },
  1508. "files": [
  1509. "src/functions_include.php"
  1510. ]
  1511. },
  1512. "notification-url": "https://packagist.org/downloads/",
  1513. "license": [
  1514. "MIT"
  1515. ],
  1516. "authors": [
  1517. {
  1518. "name": "Michael Dowling",
  1519. "email": "mtdowling@gmail.com",
  1520. "homepage": "https://github.com/mtdowling"
  1521. }
  1522. ],
  1523. "description": "Guzzle is a PHP HTTP client library",
  1524. "homepage": "http://guzzlephp.org/",
  1525. "keywords": [
  1526. "client",
  1527. "curl",
  1528. "framework",
  1529. "http",
  1530. "http client",
  1531. "rest",
  1532. "web service"
  1533. ],
  1534. "time": "2020-06-16T21:01:06+00:00"
  1535. },
  1536. {
  1537. "name": "guzzlehttp/promises",
  1538. "version": "1.4.1",
  1539. "source": {
  1540. "type": "git",
  1541. "url": "https://github.com/guzzle/promises.git",
  1542. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1543. },
  1544. "dist": {
  1545. "type": "zip",
  1546. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1547. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1548. "shasum": "",
  1549. "mirrors": [
  1550. {
  1551. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1552. "preferred": true
  1553. }
  1554. ]
  1555. },
  1556. "require": {
  1557. "php": ">=5.5"
  1558. },
  1559. "require-dev": {
  1560. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1561. },
  1562. "type": "library",
  1563. "extra": {
  1564. "branch-alias": {
  1565. "dev-master": "1.4-dev"
  1566. }
  1567. },
  1568. "autoload": {
  1569. "psr-4": {
  1570. "GuzzleHttp\\Promise\\": "src/"
  1571. },
  1572. "files": [
  1573. "src/functions_include.php"
  1574. ]
  1575. },
  1576. "notification-url": "https://packagist.org/downloads/",
  1577. "license": [
  1578. "MIT"
  1579. ],
  1580. "authors": [
  1581. {
  1582. "name": "Michael Dowling",
  1583. "email": "mtdowling@gmail.com",
  1584. "homepage": "https://github.com/mtdowling"
  1585. }
  1586. ],
  1587. "description": "Guzzle promises library",
  1588. "keywords": [
  1589. "promise"
  1590. ],
  1591. "support": {
  1592. "issues": "https://github.com/guzzle/promises/issues",
  1593. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  1594. },
  1595. "time": "2021-03-07T09:25:29+00:00"
  1596. },
  1597. {
  1598. "name": "guzzlehttp/psr7",
  1599. "version": "1.8.2",
  1600. "source": {
  1601. "type": "git",
  1602. "url": "https://github.com/guzzle/psr7.git",
  1603. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  1604. },
  1605. "dist": {
  1606. "type": "zip",
  1607. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  1608. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  1609. "shasum": "",
  1610. "mirrors": [
  1611. {
  1612. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1613. "preferred": true
  1614. }
  1615. ]
  1616. },
  1617. "require": {
  1618. "php": ">=5.4.0",
  1619. "psr/http-message": "~1.0",
  1620. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1621. },
  1622. "provide": {
  1623. "psr/http-message-implementation": "1.0"
  1624. },
  1625. "require-dev": {
  1626. "ext-zlib": "*",
  1627. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1628. },
  1629. "suggest": {
  1630. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1631. },
  1632. "type": "library",
  1633. "extra": {
  1634. "branch-alias": {
  1635. "dev-master": "1.7-dev"
  1636. }
  1637. },
  1638. "autoload": {
  1639. "psr-4": {
  1640. "GuzzleHttp\\Psr7\\": "src/"
  1641. },
  1642. "files": [
  1643. "src/functions_include.php"
  1644. ]
  1645. },
  1646. "notification-url": "https://packagist.org/downloads/",
  1647. "license": [
  1648. "MIT"
  1649. ],
  1650. "authors": [
  1651. {
  1652. "name": "Michael Dowling",
  1653. "email": "mtdowling@gmail.com",
  1654. "homepage": "https://github.com/mtdowling"
  1655. },
  1656. {
  1657. "name": "Tobias Schultze",
  1658. "homepage": "https://github.com/Tobion"
  1659. }
  1660. ],
  1661. "description": "PSR-7 message implementation that also provides common utility methods",
  1662. "keywords": [
  1663. "http",
  1664. "message",
  1665. "psr-7",
  1666. "request",
  1667. "response",
  1668. "stream",
  1669. "uri",
  1670. "url"
  1671. ],
  1672. "support": {
  1673. "issues": "https://github.com/guzzle/psr7/issues",
  1674. "source": "https://github.com/guzzle/psr7/tree/1.8.2"
  1675. },
  1676. "time": "2021-04-26T09:17:50+00:00"
  1677. },
  1678. {
  1679. "name": "intervention/image",
  1680. "version": "2.5.1",
  1681. "source": {
  1682. "type": "git",
  1683. "url": "https://github.com/Intervention/image.git",
  1684. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1685. },
  1686. "dist": {
  1687. "type": "zip",
  1688. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1689. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1690. "shasum": "",
  1691. "mirrors": [
  1692. {
  1693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1694. "preferred": true
  1695. }
  1696. ]
  1697. },
  1698. "require": {
  1699. "ext-fileinfo": "*",
  1700. "guzzlehttp/psr7": "~1.1",
  1701. "php": ">=5.4.0"
  1702. },
  1703. "require-dev": {
  1704. "mockery/mockery": "~0.9.2",
  1705. "phpunit/phpunit": "^4.8 || ^5.7"
  1706. },
  1707. "suggest": {
  1708. "ext-gd": "to use GD library based image processing.",
  1709. "ext-imagick": "to use Imagick based image processing.",
  1710. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1711. },
  1712. "type": "library",
  1713. "extra": {
  1714. "branch-alias": {
  1715. "dev-master": "2.4-dev"
  1716. },
  1717. "laravel": {
  1718. "providers": [
  1719. "Intervention\\Image\\ImageServiceProvider"
  1720. ],
  1721. "aliases": {
  1722. "Image": "Intervention\\Image\\Facades\\Image"
  1723. }
  1724. }
  1725. },
  1726. "autoload": {
  1727. "psr-4": {
  1728. "Intervention\\Image\\": "src/Intervention/Image"
  1729. }
  1730. },
  1731. "notification-url": "https://packagist.org/downloads/",
  1732. "license": [
  1733. "MIT"
  1734. ],
  1735. "authors": [
  1736. {
  1737. "name": "Oliver Vogel",
  1738. "email": "oliver@olivervogel.com",
  1739. "homepage": "http://olivervogel.com/"
  1740. }
  1741. ],
  1742. "description": "Image handling and manipulation library with support for Laravel integration",
  1743. "homepage": "http://image.intervention.io/",
  1744. "keywords": [
  1745. "gd",
  1746. "image",
  1747. "imagick",
  1748. "laravel",
  1749. "thumbnail",
  1750. "watermark"
  1751. ],
  1752. "time": "2019-11-02T09:15:47+00:00"
  1753. },
  1754. {
  1755. "name": "khanamiryan/qrcode-detector-decoder",
  1756. "version": "1.0.5.1",
  1757. "source": {
  1758. "type": "git",
  1759. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1760. "reference": "b96163d4f074970dfe67d4185e75e1f4541b30ca"
  1761. },
  1762. "dist": {
  1763. "type": "zip",
  1764. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/b96163d4f074970dfe67d4185e75e1f4541b30ca",
  1765. "reference": "b96163d4f074970dfe67d4185e75e1f4541b30ca",
  1766. "shasum": "",
  1767. "mirrors": [
  1768. {
  1769. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1770. "preferred": true
  1771. }
  1772. ]
  1773. },
  1774. "require": {
  1775. "php": ">=5.6"
  1776. },
  1777. "require-dev": {
  1778. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1779. },
  1780. "type": "library",
  1781. "autoload": {
  1782. "psr-4": {
  1783. "Zxing\\": "lib/"
  1784. },
  1785. "files": [
  1786. "lib/Common/customFunctions.php"
  1787. ]
  1788. },
  1789. "notification-url": "https://packagist.org/downloads/",
  1790. "license": [
  1791. "MIT",
  1792. "Apache-2.0"
  1793. ],
  1794. "authors": [
  1795. {
  1796. "name": "Ashot Khanamiryan",
  1797. "email": "a.khanamiryan@gmail.com",
  1798. "homepage": "https://github.com/khanamiryan",
  1799. "role": "Developer"
  1800. }
  1801. ],
  1802. "description": "QR code decoder / reader",
  1803. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1804. "keywords": [
  1805. "barcode",
  1806. "qr",
  1807. "zxing"
  1808. ],
  1809. "support": {
  1810. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1811. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.1"
  1812. },
  1813. "time": "2021-04-21T08:02:08+00:00"
  1814. },
  1815. {
  1816. "name": "kitetail/zttp",
  1817. "version": "v0.6.0",
  1818. "source": {
  1819. "type": "git",
  1820. "url": "https://github.com/kitetail/zttp.git",
  1821. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1822. },
  1823. "dist": {
  1824. "type": "zip",
  1825. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1826. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1827. "shasum": "",
  1828. "mirrors": [
  1829. {
  1830. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1831. "preferred": true
  1832. }
  1833. ]
  1834. },
  1835. "require": {
  1836. "guzzlehttp/guzzle": "^6.0",
  1837. "php": ">=7.0",
  1838. "tightenco/collect": "^5.4"
  1839. },
  1840. "require-dev": {
  1841. "laravel/lumen-framework": "5.5.*",
  1842. "phpunit/phpunit": "^6.0"
  1843. },
  1844. "type": "library",
  1845. "autoload": {
  1846. "files": [
  1847. "src/Zttp.php"
  1848. ]
  1849. },
  1850. "notification-url": "https://packagist.org/downloads/",
  1851. "license": [
  1852. "MIT"
  1853. ],
  1854. "authors": [
  1855. {
  1856. "name": "Adam Wathan",
  1857. "email": "adam.wathan@gmail.com"
  1858. }
  1859. ],
  1860. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1861. "keywords": [
  1862. "Guzzle",
  1863. "http"
  1864. ],
  1865. "time": "2019-06-10T12:18:52+00:00"
  1866. },
  1867. {
  1868. "name": "laravel/framework",
  1869. "version": "v7.30.4",
  1870. "source": {
  1871. "type": "git",
  1872. "url": "https://github.com/laravel/framework.git",
  1873. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  1874. },
  1875. "dist": {
  1876. "type": "zip",
  1877. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1878. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1879. "shasum": "",
  1880. "mirrors": [
  1881. {
  1882. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1883. "preferred": true
  1884. }
  1885. ]
  1886. },
  1887. "require": {
  1888. "doctrine/inflector": "^1.4|^2.0",
  1889. "dragonmantank/cron-expression": "^2.3.1",
  1890. "egulias/email-validator": "^2.1.10",
  1891. "ext-json": "*",
  1892. "ext-mbstring": "*",
  1893. "ext-openssl": "*",
  1894. "league/commonmark": "^1.3",
  1895. "league/flysystem": "^1.1",
  1896. "monolog/monolog": "^2.0",
  1897. "nesbot/carbon": "^2.31",
  1898. "opis/closure": "^3.6",
  1899. "php": "^7.2.5|^8.0",
  1900. "psr/container": "^1.0",
  1901. "psr/simple-cache": "^1.0",
  1902. "ramsey/uuid": "^3.7|^4.0",
  1903. "swiftmailer/swiftmailer": "^6.0",
  1904. "symfony/console": "^5.0",
  1905. "symfony/error-handler": "^5.0",
  1906. "symfony/finder": "^5.0",
  1907. "symfony/http-foundation": "^5.0",
  1908. "symfony/http-kernel": "^5.0",
  1909. "symfony/mime": "^5.0",
  1910. "symfony/polyfill-php73": "^1.17",
  1911. "symfony/process": "^5.0",
  1912. "symfony/routing": "^5.0",
  1913. "symfony/var-dumper": "^5.0",
  1914. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1915. "vlucas/phpdotenv": "^4.0",
  1916. "voku/portable-ascii": "^1.4.8"
  1917. },
  1918. "conflict": {
  1919. "tightenco/collect": "<5.5.33"
  1920. },
  1921. "provide": {
  1922. "psr/container-implementation": "1.0"
  1923. },
  1924. "replace": {
  1925. "illuminate/auth": "self.version",
  1926. "illuminate/broadcasting": "self.version",
  1927. "illuminate/bus": "self.version",
  1928. "illuminate/cache": "self.version",
  1929. "illuminate/config": "self.version",
  1930. "illuminate/console": "self.version",
  1931. "illuminate/container": "self.version",
  1932. "illuminate/contracts": "self.version",
  1933. "illuminate/cookie": "self.version",
  1934. "illuminate/database": "self.version",
  1935. "illuminate/encryption": "self.version",
  1936. "illuminate/events": "self.version",
  1937. "illuminate/filesystem": "self.version",
  1938. "illuminate/hashing": "self.version",
  1939. "illuminate/http": "self.version",
  1940. "illuminate/log": "self.version",
  1941. "illuminate/mail": "self.version",
  1942. "illuminate/notifications": "self.version",
  1943. "illuminate/pagination": "self.version",
  1944. "illuminate/pipeline": "self.version",
  1945. "illuminate/queue": "self.version",
  1946. "illuminate/redis": "self.version",
  1947. "illuminate/routing": "self.version",
  1948. "illuminate/session": "self.version",
  1949. "illuminate/support": "self.version",
  1950. "illuminate/testing": "self.version",
  1951. "illuminate/translation": "self.version",
  1952. "illuminate/validation": "self.version",
  1953. "illuminate/view": "self.version"
  1954. },
  1955. "require-dev": {
  1956. "aws/aws-sdk-php": "^3.155",
  1957. "doctrine/dbal": "^2.6",
  1958. "filp/whoops": "^2.8",
  1959. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  1960. "league/flysystem-cached-adapter": "^1.0",
  1961. "mockery/mockery": "~1.3.3|^1.4.2",
  1962. "moontoast/math": "^1.1",
  1963. "orchestra/testbench-core": "^5.8",
  1964. "pda/pheanstalk": "^4.0",
  1965. "phpunit/phpunit": "^8.4|^9.3.3",
  1966. "predis/predis": "^1.1.1",
  1967. "symfony/cache": "^5.0"
  1968. },
  1969. "suggest": {
  1970. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  1971. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1972. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1973. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1974. "ext-memcached": "Required to use the memcache cache driver.",
  1975. "ext-pcntl": "Required to use all features of the queue worker.",
  1976. "ext-posix": "Required to use all features of the queue worker.",
  1977. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1978. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1979. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1980. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  1981. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1982. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1983. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1984. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1985. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  1986. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1987. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1988. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1989. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  1990. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1991. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1992. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1993. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1994. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1995. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1996. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1997. },
  1998. "type": "library",
  1999. "extra": {
  2000. "branch-alias": {
  2001. "dev-master": "7.x-dev"
  2002. }
  2003. },
  2004. "autoload": {
  2005. "files": [
  2006. "src/Illuminate/Foundation/helpers.php",
  2007. "src/Illuminate/Support/helpers.php"
  2008. ],
  2009. "psr-4": {
  2010. "Illuminate\\": "src/Illuminate/"
  2011. }
  2012. },
  2013. "notification-url": "https://packagist.org/downloads/",
  2014. "license": [
  2015. "MIT"
  2016. ],
  2017. "authors": [
  2018. {
  2019. "name": "Taylor Otwell",
  2020. "email": "taylor@laravel.com"
  2021. }
  2022. ],
  2023. "description": "The Laravel Framework.",
  2024. "homepage": "https://laravel.com",
  2025. "keywords": [
  2026. "framework",
  2027. "laravel"
  2028. ],
  2029. "support": {
  2030. "issues": "https://github.com/laravel/framework/issues",
  2031. "source": "https://github.com/laravel/framework"
  2032. },
  2033. "time": "2021-01-21T14:10:48+00:00"
  2034. },
  2035. {
  2036. "name": "laravel/horizon",
  2037. "version": "v4.3.5",
  2038. "source": {
  2039. "type": "git",
  2040. "url": "https://github.com/laravel/horizon.git",
  2041. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171"
  2042. },
  2043. "dist": {
  2044. "type": "zip",
  2045. "url": "https://api.github.com/repos/laravel/horizon/zipball/b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2046. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2047. "shasum": "",
  2048. "mirrors": [
  2049. {
  2050. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2051. "preferred": true
  2052. }
  2053. ]
  2054. },
  2055. "require": {
  2056. "cakephp/chronos": "^2.0",
  2057. "ext-json": "*",
  2058. "ext-pcntl": "*",
  2059. "ext-posix": "*",
  2060. "illuminate/contracts": "^7.0",
  2061. "illuminate/queue": "^7.0",
  2062. "illuminate/support": "^7.0",
  2063. "php": "^7.2",
  2064. "ramsey/uuid": "^3.5|^4.0",
  2065. "symfony/error-handler": "^5.0",
  2066. "symfony/process": "^5.0"
  2067. },
  2068. "require-dev": {
  2069. "mockery/mockery": "^1.0",
  2070. "orchestra/testbench": "^5.0",
  2071. "phpunit/phpunit": "^8.0",
  2072. "predis/predis": "^1.1"
  2073. },
  2074. "suggest": {
  2075. "ext-redis": "Required to use the Redis PHP driver.",
  2076. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  2077. },
  2078. "type": "library",
  2079. "extra": {
  2080. "branch-alias": {
  2081. "dev-master": "4.x-dev"
  2082. },
  2083. "laravel": {
  2084. "providers": [
  2085. "Laravel\\Horizon\\HorizonServiceProvider"
  2086. ],
  2087. "aliases": {
  2088. "Horizon": "Laravel\\Horizon\\Horizon"
  2089. }
  2090. }
  2091. },
  2092. "autoload": {
  2093. "psr-4": {
  2094. "Laravel\\Horizon\\": "src/"
  2095. }
  2096. },
  2097. "notification-url": "https://packagist.org/downloads/",
  2098. "license": [
  2099. "MIT"
  2100. ],
  2101. "authors": [
  2102. {
  2103. "name": "Taylor Otwell",
  2104. "email": "taylor@laravel.com"
  2105. }
  2106. ],
  2107. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2108. "keywords": [
  2109. "laravel",
  2110. "queue"
  2111. ],
  2112. "support": {
  2113. "issues": "https://github.com/laravel/horizon/issues",
  2114. "source": "https://github.com/laravel/horizon/tree/4.x"
  2115. },
  2116. "time": "2020-09-08T13:19:23+00:00"
  2117. },
  2118. {
  2119. "name": "laravel/tinker",
  2120. "version": "v2.6.1",
  2121. "source": {
  2122. "type": "git",
  2123. "url": "https://github.com/laravel/tinker.git",
  2124. "reference": "04ad32c1a3328081097a181875733fa51f402083"
  2125. },
  2126. "dist": {
  2127. "type": "zip",
  2128. "url": "https://api.github.com/repos/laravel/tinker/zipball/04ad32c1a3328081097a181875733fa51f402083",
  2129. "reference": "04ad32c1a3328081097a181875733fa51f402083",
  2130. "shasum": "",
  2131. "mirrors": [
  2132. {
  2133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2134. "preferred": true
  2135. }
  2136. ]
  2137. },
  2138. "require": {
  2139. "illuminate/console": "^6.0|^7.0|^8.0",
  2140. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2141. "illuminate/support": "^6.0|^7.0|^8.0",
  2142. "php": "^7.2.5|^8.0",
  2143. "psy/psysh": "^0.10.4",
  2144. "symfony/var-dumper": "^4.3.4|^5.0"
  2145. },
  2146. "require-dev": {
  2147. "mockery/mockery": "~1.3.3|^1.4.2",
  2148. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2149. },
  2150. "suggest": {
  2151. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2152. },
  2153. "type": "library",
  2154. "extra": {
  2155. "branch-alias": {
  2156. "dev-master": "2.x-dev"
  2157. },
  2158. "laravel": {
  2159. "providers": [
  2160. "Laravel\\Tinker\\TinkerServiceProvider"
  2161. ]
  2162. }
  2163. },
  2164. "autoload": {
  2165. "psr-4": {
  2166. "Laravel\\Tinker\\": "src/"
  2167. }
  2168. },
  2169. "notification-url": "https://packagist.org/downloads/",
  2170. "license": [
  2171. "MIT"
  2172. ],
  2173. "authors": [
  2174. {
  2175. "name": "Taylor Otwell",
  2176. "email": "taylor@laravel.com"
  2177. }
  2178. ],
  2179. "description": "Powerful REPL for the Laravel framework.",
  2180. "keywords": [
  2181. "REPL",
  2182. "Tinker",
  2183. "laravel",
  2184. "psysh"
  2185. ],
  2186. "support": {
  2187. "issues": "https://github.com/laravel/tinker/issues",
  2188. "source": "https://github.com/laravel/tinker/tree/v2.6.1"
  2189. },
  2190. "time": "2021-03-02T16:53:12+00:00"
  2191. },
  2192. {
  2193. "name": "laravel/ui",
  2194. "version": "v2.5.0",
  2195. "source": {
  2196. "type": "git",
  2197. "url": "https://github.com/laravel/ui.git",
  2198. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  2199. },
  2200. "dist": {
  2201. "type": "zip",
  2202. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  2203. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  2204. "shasum": "",
  2205. "mirrors": [
  2206. {
  2207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2208. "preferred": true
  2209. }
  2210. ]
  2211. },
  2212. "require": {
  2213. "illuminate/console": "^7.0",
  2214. "illuminate/filesystem": "^7.0",
  2215. "illuminate/support": "^7.0",
  2216. "php": "^7.2.5|^8.0"
  2217. },
  2218. "type": "library",
  2219. "extra": {
  2220. "laravel": {
  2221. "providers": [
  2222. "Laravel\\Ui\\UiServiceProvider"
  2223. ]
  2224. }
  2225. },
  2226. "autoload": {
  2227. "psr-4": {
  2228. "Laravel\\Ui\\": "src/",
  2229. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2230. }
  2231. },
  2232. "notification-url": "https://packagist.org/downloads/",
  2233. "license": [
  2234. "MIT"
  2235. ],
  2236. "authors": [
  2237. {
  2238. "name": "Taylor Otwell",
  2239. "email": "taylor@laravel.com"
  2240. }
  2241. ],
  2242. "description": "Laravel UI utilities and presets.",
  2243. "keywords": [
  2244. "laravel",
  2245. "ui"
  2246. ],
  2247. "time": "2020-11-03T19:45:19+00:00"
  2248. },
  2249. {
  2250. "name": "league/commonmark",
  2251. "version": "1.6.2",
  2252. "source": {
  2253. "type": "git",
  2254. "url": "https://github.com/thephpleague/commonmark.git",
  2255. "reference": "7d70d2f19c84bcc16275ea47edabee24747352eb"
  2256. },
  2257. "dist": {
  2258. "type": "zip",
  2259. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/7d70d2f19c84bcc16275ea47edabee24747352eb",
  2260. "reference": "7d70d2f19c84bcc16275ea47edabee24747352eb",
  2261. "shasum": "",
  2262. "mirrors": [
  2263. {
  2264. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2265. "preferred": true
  2266. }
  2267. ]
  2268. },
  2269. "require": {
  2270. "ext-mbstring": "*",
  2271. "php": "^7.1 || ^8.0"
  2272. },
  2273. "conflict": {
  2274. "scrutinizer/ocular": "1.7.*"
  2275. },
  2276. "require-dev": {
  2277. "cebe/markdown": "~1.0",
  2278. "commonmark/commonmark.js": "0.29.2",
  2279. "erusev/parsedown": "~1.0",
  2280. "ext-json": "*",
  2281. "github/gfm": "0.29.0",
  2282. "michelf/php-markdown": "~1.4",
  2283. "mikehaertl/php-shellcommand": "^1.4",
  2284. "phpstan/phpstan": "^0.12",
  2285. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2286. "scrutinizer/ocular": "^1.5",
  2287. "symfony/finder": "^4.2"
  2288. },
  2289. "bin": [
  2290. "bin/commonmark"
  2291. ],
  2292. "type": "library",
  2293. "autoload": {
  2294. "psr-4": {
  2295. "League\\CommonMark\\": "src"
  2296. }
  2297. },
  2298. "notification-url": "https://packagist.org/downloads/",
  2299. "license": [
  2300. "BSD-3-Clause"
  2301. ],
  2302. "authors": [
  2303. {
  2304. "name": "Colin O'Dell",
  2305. "email": "colinodell@gmail.com",
  2306. "homepage": "https://www.colinodell.com",
  2307. "role": "Lead Developer"
  2308. }
  2309. ],
  2310. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2311. "homepage": "https://commonmark.thephpleague.com",
  2312. "keywords": [
  2313. "commonmark",
  2314. "flavored",
  2315. "gfm",
  2316. "github",
  2317. "github-flavored",
  2318. "markdown",
  2319. "md",
  2320. "parser"
  2321. ],
  2322. "support": {
  2323. "docs": "https://commonmark.thephpleague.com/",
  2324. "issues": "https://github.com/thephpleague/commonmark/issues",
  2325. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2326. "source": "https://github.com/thephpleague/commonmark"
  2327. },
  2328. "funding": [
  2329. {
  2330. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2331. "type": "custom"
  2332. },
  2333. {
  2334. "url": "https://www.colinodell.com/sponsor",
  2335. "type": "custom"
  2336. },
  2337. {
  2338. "url": "https://www.paypal.me/colinpodell/10.00",
  2339. "type": "custom"
  2340. },
  2341. {
  2342. "url": "https://github.com/colinodell",
  2343. "type": "github"
  2344. },
  2345. {
  2346. "url": "https://www.patreon.com/colinodell",
  2347. "type": "patreon"
  2348. },
  2349. {
  2350. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2351. "type": "tidelift"
  2352. }
  2353. ],
  2354. "time": "2021-05-12T11:39:41+00:00"
  2355. },
  2356. {
  2357. "name": "league/flysystem",
  2358. "version": "1.1.3",
  2359. "source": {
  2360. "type": "git",
  2361. "url": "https://github.com/thephpleague/flysystem.git",
  2362. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2363. },
  2364. "dist": {
  2365. "type": "zip",
  2366. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2367. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2368. "shasum": "",
  2369. "mirrors": [
  2370. {
  2371. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2372. "preferred": true
  2373. }
  2374. ]
  2375. },
  2376. "require": {
  2377. "ext-fileinfo": "*",
  2378. "league/mime-type-detection": "^1.3",
  2379. "php": "^7.2.5 || ^8.0"
  2380. },
  2381. "conflict": {
  2382. "league/flysystem-sftp": "<1.0.6"
  2383. },
  2384. "require-dev": {
  2385. "phpspec/prophecy": "^1.11.1",
  2386. "phpunit/phpunit": "^8.5.8"
  2387. },
  2388. "suggest": {
  2389. "ext-fileinfo": "Required for MimeType",
  2390. "ext-ftp": "Allows you to use FTP server storage",
  2391. "ext-openssl": "Allows you to use FTPS server storage",
  2392. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2393. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2394. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2395. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2396. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2397. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2398. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2399. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2400. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2401. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2402. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2403. },
  2404. "type": "library",
  2405. "extra": {
  2406. "branch-alias": {
  2407. "dev-master": "1.1-dev"
  2408. }
  2409. },
  2410. "autoload": {
  2411. "psr-4": {
  2412. "League\\Flysystem\\": "src/"
  2413. }
  2414. },
  2415. "notification-url": "https://packagist.org/downloads/",
  2416. "license": [
  2417. "MIT"
  2418. ],
  2419. "authors": [
  2420. {
  2421. "name": "Frank de Jonge",
  2422. "email": "info@frenky.net"
  2423. }
  2424. ],
  2425. "description": "Filesystem abstraction: Many filesystems, one API.",
  2426. "keywords": [
  2427. "Cloud Files",
  2428. "WebDAV",
  2429. "abstraction",
  2430. "aws",
  2431. "cloud",
  2432. "copy.com",
  2433. "dropbox",
  2434. "file systems",
  2435. "files",
  2436. "filesystem",
  2437. "filesystems",
  2438. "ftp",
  2439. "rackspace",
  2440. "remote",
  2441. "s3",
  2442. "sftp",
  2443. "storage"
  2444. ],
  2445. "time": "2020-08-23T07:39:11+00:00"
  2446. },
  2447. {
  2448. "name": "league/mime-type-detection",
  2449. "version": "1.7.0",
  2450. "source": {
  2451. "type": "git",
  2452. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2453. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2454. },
  2455. "dist": {
  2456. "type": "zip",
  2457. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2458. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2459. "shasum": "",
  2460. "mirrors": [
  2461. {
  2462. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2463. "preferred": true
  2464. }
  2465. ]
  2466. },
  2467. "require": {
  2468. "ext-fileinfo": "*",
  2469. "php": "^7.2 || ^8.0"
  2470. },
  2471. "require-dev": {
  2472. "friendsofphp/php-cs-fixer": "^2.18",
  2473. "phpstan/phpstan": "^0.12.68",
  2474. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2475. },
  2476. "type": "library",
  2477. "autoload": {
  2478. "psr-4": {
  2479. "League\\MimeTypeDetection\\": "src"
  2480. }
  2481. },
  2482. "notification-url": "https://packagist.org/downloads/",
  2483. "license": [
  2484. "MIT"
  2485. ],
  2486. "authors": [
  2487. {
  2488. "name": "Frank de Jonge",
  2489. "email": "info@frankdejonge.nl"
  2490. }
  2491. ],
  2492. "description": "Mime-type detection for Flysystem",
  2493. "support": {
  2494. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2495. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  2496. },
  2497. "funding": [
  2498. {
  2499. "url": "https://github.com/frankdejonge",
  2500. "type": "github"
  2501. },
  2502. {
  2503. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2504. "type": "tidelift"
  2505. }
  2506. ],
  2507. "time": "2021-01-18T20:58:21+00:00"
  2508. },
  2509. {
  2510. "name": "maatwebsite/excel",
  2511. "version": "3.1.30",
  2512. "source": {
  2513. "type": "git",
  2514. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2515. "reference": "aa5d2e4d25c5c8218ea0a15103da95f5f8728953"
  2516. },
  2517. "dist": {
  2518. "type": "zip",
  2519. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/aa5d2e4d25c5c8218ea0a15103da95f5f8728953",
  2520. "reference": "aa5d2e4d25c5c8218ea0a15103da95f5f8728953",
  2521. "shasum": "",
  2522. "mirrors": [
  2523. {
  2524. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2525. "preferred": true
  2526. }
  2527. ]
  2528. },
  2529. "require": {
  2530. "ext-json": "*",
  2531. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2532. "php": "^7.0|^8.0",
  2533. "phpoffice/phpspreadsheet": "1.16.*"
  2534. },
  2535. "require-dev": {
  2536. "orchestra/testbench": "^6.0",
  2537. "predis/predis": "^1.1"
  2538. },
  2539. "type": "library",
  2540. "extra": {
  2541. "laravel": {
  2542. "providers": [
  2543. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2544. ],
  2545. "aliases": {
  2546. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2547. }
  2548. }
  2549. },
  2550. "autoload": {
  2551. "psr-4": {
  2552. "Maatwebsite\\Excel\\": "src/"
  2553. }
  2554. },
  2555. "notification-url": "https://packagist.org/downloads/",
  2556. "license": [
  2557. "MIT"
  2558. ],
  2559. "authors": [
  2560. {
  2561. "name": "Patrick Brouwers",
  2562. "email": "patrick@maatwebsite.nl"
  2563. }
  2564. ],
  2565. "description": "Supercharged Excel exports and imports in Laravel",
  2566. "keywords": [
  2567. "PHPExcel",
  2568. "batch",
  2569. "csv",
  2570. "excel",
  2571. "export",
  2572. "import",
  2573. "laravel",
  2574. "php",
  2575. "phpspreadsheet"
  2576. ],
  2577. "support": {
  2578. "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues",
  2579. "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.30"
  2580. },
  2581. "funding": [
  2582. {
  2583. "url": "https://laravel-excel.com/commercial-support",
  2584. "type": "custom"
  2585. },
  2586. {
  2587. "url": "https://github.com/patrickbrouwers",
  2588. "type": "github"
  2589. }
  2590. ],
  2591. "time": "2021-04-06T17:17:02+00:00"
  2592. },
  2593. {
  2594. "name": "maennchen/zipstream-php",
  2595. "version": "2.1.0",
  2596. "source": {
  2597. "type": "git",
  2598. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2599. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2600. },
  2601. "dist": {
  2602. "type": "zip",
  2603. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2604. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2605. "shasum": "",
  2606. "mirrors": [
  2607. {
  2608. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2609. "preferred": true
  2610. }
  2611. ]
  2612. },
  2613. "require": {
  2614. "myclabs/php-enum": "^1.5",
  2615. "php": ">= 7.1",
  2616. "psr/http-message": "^1.0",
  2617. "symfony/polyfill-mbstring": "^1.0"
  2618. },
  2619. "require-dev": {
  2620. "ext-zip": "*",
  2621. "guzzlehttp/guzzle": ">= 6.3",
  2622. "mikey179/vfsstream": "^1.6",
  2623. "phpunit/phpunit": ">= 7.5"
  2624. },
  2625. "type": "library",
  2626. "autoload": {
  2627. "psr-4": {
  2628. "ZipStream\\": "src/"
  2629. }
  2630. },
  2631. "notification-url": "https://packagist.org/downloads/",
  2632. "license": [
  2633. "MIT"
  2634. ],
  2635. "authors": [
  2636. {
  2637. "name": "Paul Duncan",
  2638. "email": "pabs@pablotron.org"
  2639. },
  2640. {
  2641. "name": "Jonatan Männchen",
  2642. "email": "jonatan@maennchen.ch"
  2643. },
  2644. {
  2645. "name": "Jesse Donat",
  2646. "email": "donatj@gmail.com"
  2647. },
  2648. {
  2649. "name": "András Kolesár",
  2650. "email": "kolesar@kolesar.hu"
  2651. }
  2652. ],
  2653. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2654. "keywords": [
  2655. "stream",
  2656. "zip"
  2657. ],
  2658. "funding": [
  2659. {
  2660. "url": "https://opencollective.com/zipstream",
  2661. "type": "open_collective"
  2662. }
  2663. ],
  2664. "time": "2020-05-30T13:11:16+00:00"
  2665. },
  2666. {
  2667. "name": "markbaker/complex",
  2668. "version": "2.0.2",
  2669. "source": {
  2670. "type": "git",
  2671. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2672. "reference": "d18272926d58065140314c01e18ec3dd7ae854ea"
  2673. },
  2674. "dist": {
  2675. "type": "zip",
  2676. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/d18272926d58065140314c01e18ec3dd7ae854ea",
  2677. "reference": "d18272926d58065140314c01e18ec3dd7ae854ea",
  2678. "shasum": "",
  2679. "mirrors": [
  2680. {
  2681. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2682. "preferred": true
  2683. }
  2684. ]
  2685. },
  2686. "require": {
  2687. "php": "^7.2 || ^8.0"
  2688. },
  2689. "require-dev": {
  2690. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2691. "phpcompatibility/php-compatibility": "^9.0",
  2692. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2693. "squizlabs/php_codesniffer": "^3.4"
  2694. },
  2695. "type": "library",
  2696. "autoload": {
  2697. "psr-4": {
  2698. "Complex\\": "classes/src/"
  2699. },
  2700. "files": [
  2701. "classes/src/functions/abs.php",
  2702. "classes/src/functions/acos.php",
  2703. "classes/src/functions/acosh.php",
  2704. "classes/src/functions/acot.php",
  2705. "classes/src/functions/acoth.php",
  2706. "classes/src/functions/acsc.php",
  2707. "classes/src/functions/acsch.php",
  2708. "classes/src/functions/argument.php",
  2709. "classes/src/functions/asec.php",
  2710. "classes/src/functions/asech.php",
  2711. "classes/src/functions/asin.php",
  2712. "classes/src/functions/asinh.php",
  2713. "classes/src/functions/atan.php",
  2714. "classes/src/functions/atanh.php",
  2715. "classes/src/functions/conjugate.php",
  2716. "classes/src/functions/cos.php",
  2717. "classes/src/functions/cosh.php",
  2718. "classes/src/functions/cot.php",
  2719. "classes/src/functions/coth.php",
  2720. "classes/src/functions/csc.php",
  2721. "classes/src/functions/csch.php",
  2722. "classes/src/functions/exp.php",
  2723. "classes/src/functions/inverse.php",
  2724. "classes/src/functions/ln.php",
  2725. "classes/src/functions/log2.php",
  2726. "classes/src/functions/log10.php",
  2727. "classes/src/functions/negative.php",
  2728. "classes/src/functions/pow.php",
  2729. "classes/src/functions/rho.php",
  2730. "classes/src/functions/sec.php",
  2731. "classes/src/functions/sech.php",
  2732. "classes/src/functions/sin.php",
  2733. "classes/src/functions/sinh.php",
  2734. "classes/src/functions/sqrt.php",
  2735. "classes/src/functions/tan.php",
  2736. "classes/src/functions/tanh.php",
  2737. "classes/src/functions/theta.php",
  2738. "classes/src/operations/add.php",
  2739. "classes/src/operations/subtract.php",
  2740. "classes/src/operations/multiply.php",
  2741. "classes/src/operations/divideby.php",
  2742. "classes/src/operations/divideinto.php"
  2743. ]
  2744. },
  2745. "notification-url": "https://packagist.org/downloads/",
  2746. "license": [
  2747. "MIT"
  2748. ],
  2749. "authors": [
  2750. {
  2751. "name": "Mark Baker",
  2752. "email": "mark@lange.demon.co.uk"
  2753. }
  2754. ],
  2755. "description": "PHP Class for working with complex numbers",
  2756. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2757. "keywords": [
  2758. "complex",
  2759. "mathematics"
  2760. ],
  2761. "support": {
  2762. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2763. "source": "https://github.com/MarkBaker/PHPComplex/tree/2.0.2"
  2764. },
  2765. "time": "2021-05-24T10:53:30+00:00"
  2766. },
  2767. {
  2768. "name": "markbaker/matrix",
  2769. "version": "2.1.3",
  2770. "source": {
  2771. "type": "git",
  2772. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2773. "reference": "174395a901b5ba0925f1d790fa91bab531074b61"
  2774. },
  2775. "dist": {
  2776. "type": "zip",
  2777. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61",
  2778. "reference": "174395a901b5ba0925f1d790fa91bab531074b61",
  2779. "shasum": "",
  2780. "mirrors": [
  2781. {
  2782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2783. "preferred": true
  2784. }
  2785. ]
  2786. },
  2787. "require": {
  2788. "php": "^7.1 || ^8.0"
  2789. },
  2790. "require-dev": {
  2791. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2792. "phpcompatibility/php-compatibility": "^9.0",
  2793. "phpdocumentor/phpdocumentor": "2.*",
  2794. "phploc/phploc": "^4.0",
  2795. "phpmd/phpmd": "2.*",
  2796. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2797. "sebastian/phpcpd": "^4.0",
  2798. "squizlabs/php_codesniffer": "^3.4"
  2799. },
  2800. "type": "library",
  2801. "autoload": {
  2802. "psr-4": {
  2803. "Matrix\\": "classes/src/"
  2804. },
  2805. "files": [
  2806. "classes/src/Functions/adjoint.php",
  2807. "classes/src/Functions/antidiagonal.php",
  2808. "classes/src/Functions/cofactors.php",
  2809. "classes/src/Functions/determinant.php",
  2810. "classes/src/Functions/diagonal.php",
  2811. "classes/src/Functions/identity.php",
  2812. "classes/src/Functions/inverse.php",
  2813. "classes/src/Functions/minors.php",
  2814. "classes/src/Functions/trace.php",
  2815. "classes/src/Functions/transpose.php",
  2816. "classes/src/Operations/add.php",
  2817. "classes/src/Operations/directsum.php",
  2818. "classes/src/Operations/subtract.php",
  2819. "classes/src/Operations/multiply.php",
  2820. "classes/src/Operations/divideby.php",
  2821. "classes/src/Operations/divideinto.php"
  2822. ]
  2823. },
  2824. "notification-url": "https://packagist.org/downloads/",
  2825. "license": [
  2826. "MIT"
  2827. ],
  2828. "authors": [
  2829. {
  2830. "name": "Mark Baker",
  2831. "email": "mark@demon-angel.eu"
  2832. }
  2833. ],
  2834. "description": "PHP Class for working with matrices",
  2835. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2836. "keywords": [
  2837. "mathematics",
  2838. "matrix",
  2839. "vector"
  2840. ],
  2841. "support": {
  2842. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2843. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3"
  2844. },
  2845. "time": "2021-05-25T15:42:17+00:00"
  2846. },
  2847. {
  2848. "name": "monolog/monolog",
  2849. "version": "2.2.0",
  2850. "source": {
  2851. "type": "git",
  2852. "url": "https://github.com/Seldaek/monolog.git",
  2853. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  2854. },
  2855. "dist": {
  2856. "type": "zip",
  2857. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2858. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2859. "shasum": "",
  2860. "mirrors": [
  2861. {
  2862. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2863. "preferred": true
  2864. }
  2865. ]
  2866. },
  2867. "require": {
  2868. "php": ">=7.2",
  2869. "psr/log": "^1.0.1"
  2870. },
  2871. "provide": {
  2872. "psr/log-implementation": "1.0.0"
  2873. },
  2874. "require-dev": {
  2875. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2876. "doctrine/couchdb": "~1.0@dev",
  2877. "elasticsearch/elasticsearch": "^7",
  2878. "graylog2/gelf-php": "^1.4.2",
  2879. "mongodb/mongodb": "^1.8",
  2880. "php-amqplib/php-amqplib": "~2.4",
  2881. "php-console/php-console": "^3.1.3",
  2882. "phpspec/prophecy": "^1.6.1",
  2883. "phpstan/phpstan": "^0.12.59",
  2884. "phpunit/phpunit": "^8.5",
  2885. "predis/predis": "^1.1",
  2886. "rollbar/rollbar": "^1.3",
  2887. "ruflin/elastica": ">=0.90 <7.0.1",
  2888. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2889. },
  2890. "suggest": {
  2891. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2892. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2893. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2894. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2895. "ext-mbstring": "Allow to work properly with unicode symbols",
  2896. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2897. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2898. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2899. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2900. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2901. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2902. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2903. },
  2904. "type": "library",
  2905. "extra": {
  2906. "branch-alias": {
  2907. "dev-main": "2.x-dev"
  2908. }
  2909. },
  2910. "autoload": {
  2911. "psr-4": {
  2912. "Monolog\\": "src/Monolog"
  2913. }
  2914. },
  2915. "notification-url": "https://packagist.org/downloads/",
  2916. "license": [
  2917. "MIT"
  2918. ],
  2919. "authors": [
  2920. {
  2921. "name": "Jordi Boggiano",
  2922. "email": "j.boggiano@seld.be",
  2923. "homepage": "https://seld.be"
  2924. }
  2925. ],
  2926. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2927. "homepage": "https://github.com/Seldaek/monolog",
  2928. "keywords": [
  2929. "log",
  2930. "logging",
  2931. "psr-3"
  2932. ],
  2933. "support": {
  2934. "issues": "https://github.com/Seldaek/monolog/issues",
  2935. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  2936. },
  2937. "funding": [
  2938. {
  2939. "url": "https://github.com/Seldaek",
  2940. "type": "github"
  2941. },
  2942. {
  2943. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2944. "type": "tidelift"
  2945. }
  2946. ],
  2947. "time": "2020-12-14T13:15:25+00:00"
  2948. },
  2949. {
  2950. "name": "myclabs/php-enum",
  2951. "version": "1.8.0",
  2952. "source": {
  2953. "type": "git",
  2954. "url": "https://github.com/myclabs/php-enum.git",
  2955. "reference": "46cf3d8498b095bd33727b13fd5707263af99421"
  2956. },
  2957. "dist": {
  2958. "type": "zip",
  2959. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/46cf3d8498b095bd33727b13fd5707263af99421",
  2960. "reference": "46cf3d8498b095bd33727b13fd5707263af99421",
  2961. "shasum": "",
  2962. "mirrors": [
  2963. {
  2964. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2965. "preferred": true
  2966. }
  2967. ]
  2968. },
  2969. "require": {
  2970. "ext-json": "*",
  2971. "php": "^7.3 || ^8.0"
  2972. },
  2973. "require-dev": {
  2974. "phpunit/phpunit": "^9.5",
  2975. "squizlabs/php_codesniffer": "1.*",
  2976. "vimeo/psalm": "^4.5.1"
  2977. },
  2978. "type": "library",
  2979. "autoload": {
  2980. "psr-4": {
  2981. "MyCLabs\\Enum\\": "src/"
  2982. }
  2983. },
  2984. "notification-url": "https://packagist.org/downloads/",
  2985. "license": [
  2986. "MIT"
  2987. ],
  2988. "authors": [
  2989. {
  2990. "name": "PHP Enum contributors",
  2991. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2992. }
  2993. ],
  2994. "description": "PHP Enum implementation",
  2995. "homepage": "http://github.com/myclabs/php-enum",
  2996. "keywords": [
  2997. "enum"
  2998. ],
  2999. "support": {
  3000. "issues": "https://github.com/myclabs/php-enum/issues",
  3001. "source": "https://github.com/myclabs/php-enum/tree/1.8.0"
  3002. },
  3003. "funding": [
  3004. {
  3005. "url": "https://github.com/mnapoli",
  3006. "type": "github"
  3007. },
  3008. {
  3009. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3010. "type": "tidelift"
  3011. }
  3012. ],
  3013. "time": "2021-02-15T16:11:48+00:00"
  3014. },
  3015. {
  3016. "name": "nesbot/carbon",
  3017. "version": "2.48.1",
  3018. "source": {
  3019. "type": "git",
  3020. "url": "https://github.com/briannesbitt/Carbon.git",
  3021. "reference": "8d1f50f1436fb4b05e7127360483dd9c6e73da16"
  3022. },
  3023. "dist": {
  3024. "type": "zip",
  3025. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/8d1f50f1436fb4b05e7127360483dd9c6e73da16",
  3026. "reference": "8d1f50f1436fb4b05e7127360483dd9c6e73da16",
  3027. "shasum": "",
  3028. "mirrors": [
  3029. {
  3030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3031. "preferred": true
  3032. }
  3033. ]
  3034. },
  3035. "require": {
  3036. "ext-json": "*",
  3037. "php": "^7.1.8 || ^8.0",
  3038. "symfony/polyfill-mbstring": "^1.0",
  3039. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3040. },
  3041. "require-dev": {
  3042. "doctrine/orm": "^2.7",
  3043. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3044. "kylekatarnls/multi-tester": "^2.0",
  3045. "phpmd/phpmd": "^2.9",
  3046. "phpstan/extension-installer": "^1.0",
  3047. "phpstan/phpstan": "^0.12.54",
  3048. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3049. "squizlabs/php_codesniffer": "^3.4"
  3050. },
  3051. "bin": [
  3052. "bin/carbon"
  3053. ],
  3054. "type": "library",
  3055. "extra": {
  3056. "branch-alias": {
  3057. "dev-master": "2.x-dev",
  3058. "dev-3.x": "3.x-dev"
  3059. },
  3060. "laravel": {
  3061. "providers": [
  3062. "Carbon\\Laravel\\ServiceProvider"
  3063. ]
  3064. },
  3065. "phpstan": {
  3066. "includes": [
  3067. "extension.neon"
  3068. ]
  3069. }
  3070. },
  3071. "autoload": {
  3072. "psr-4": {
  3073. "Carbon\\": "src/Carbon/"
  3074. }
  3075. },
  3076. "notification-url": "https://packagist.org/downloads/",
  3077. "license": [
  3078. "MIT"
  3079. ],
  3080. "authors": [
  3081. {
  3082. "name": "Brian Nesbitt",
  3083. "email": "brian@nesbot.com",
  3084. "homepage": "http://nesbot.com"
  3085. },
  3086. {
  3087. "name": "kylekatarnls",
  3088. "homepage": "http://github.com/kylekatarnls"
  3089. }
  3090. ],
  3091. "description": "An API extension for DateTime that supports 281 different languages.",
  3092. "homepage": "http://carbon.nesbot.com",
  3093. "keywords": [
  3094. "date",
  3095. "datetime",
  3096. "time"
  3097. ],
  3098. "support": {
  3099. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3100. "source": "https://github.com/briannesbitt/Carbon"
  3101. },
  3102. "funding": [
  3103. {
  3104. "url": "https://opencollective.com/Carbon",
  3105. "type": "open_collective"
  3106. },
  3107. {
  3108. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3109. "type": "tidelift"
  3110. }
  3111. ],
  3112. "time": "2021-05-26T22:08:38+00:00"
  3113. },
  3114. {
  3115. "name": "nikic/php-parser",
  3116. "version": "v4.10.5",
  3117. "source": {
  3118. "type": "git",
  3119. "url": "https://github.com/nikic/PHP-Parser.git",
  3120. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f"
  3121. },
  3122. "dist": {
  3123. "type": "zip",
  3124. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4432ba399e47c66624bc73c8c0f811e5c109576f",
  3125. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f",
  3126. "shasum": "",
  3127. "mirrors": [
  3128. {
  3129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3130. "preferred": true
  3131. }
  3132. ]
  3133. },
  3134. "require": {
  3135. "ext-tokenizer": "*",
  3136. "php": ">=7.0"
  3137. },
  3138. "require-dev": {
  3139. "ircmaxell/php-yacc": "^0.0.7",
  3140. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3141. },
  3142. "bin": [
  3143. "bin/php-parse"
  3144. ],
  3145. "type": "library",
  3146. "extra": {
  3147. "branch-alias": {
  3148. "dev-master": "4.9-dev"
  3149. }
  3150. },
  3151. "autoload": {
  3152. "psr-4": {
  3153. "PhpParser\\": "lib/PhpParser"
  3154. }
  3155. },
  3156. "notification-url": "https://packagist.org/downloads/",
  3157. "license": [
  3158. "BSD-3-Clause"
  3159. ],
  3160. "authors": [
  3161. {
  3162. "name": "Nikita Popov"
  3163. }
  3164. ],
  3165. "description": "A PHP parser written in PHP",
  3166. "keywords": [
  3167. "parser",
  3168. "php"
  3169. ],
  3170. "support": {
  3171. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3172. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.5"
  3173. },
  3174. "time": "2021-05-03T19:11:20+00:00"
  3175. },
  3176. {
  3177. "name": "opis/closure",
  3178. "version": "3.6.2",
  3179. "source": {
  3180. "type": "git",
  3181. "url": "https://github.com/opis/closure.git",
  3182. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  3183. },
  3184. "dist": {
  3185. "type": "zip",
  3186. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3187. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3188. "shasum": "",
  3189. "mirrors": [
  3190. {
  3191. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3192. "preferred": true
  3193. }
  3194. ]
  3195. },
  3196. "require": {
  3197. "php": "^5.4 || ^7.0 || ^8.0"
  3198. },
  3199. "require-dev": {
  3200. "jeremeamia/superclosure": "^2.0",
  3201. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3202. },
  3203. "type": "library",
  3204. "extra": {
  3205. "branch-alias": {
  3206. "dev-master": "3.6.x-dev"
  3207. }
  3208. },
  3209. "autoload": {
  3210. "psr-4": {
  3211. "Opis\\Closure\\": "src/"
  3212. },
  3213. "files": [
  3214. "functions.php"
  3215. ]
  3216. },
  3217. "notification-url": "https://packagist.org/downloads/",
  3218. "license": [
  3219. "MIT"
  3220. ],
  3221. "authors": [
  3222. {
  3223. "name": "Marius Sarca",
  3224. "email": "marius.sarca@gmail.com"
  3225. },
  3226. {
  3227. "name": "Sorin Sarca",
  3228. "email": "sarca_sorin@hotmail.com"
  3229. }
  3230. ],
  3231. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3232. "homepage": "https://opis.io/closure",
  3233. "keywords": [
  3234. "anonymous functions",
  3235. "closure",
  3236. "function",
  3237. "serializable",
  3238. "serialization",
  3239. "serialize"
  3240. ],
  3241. "support": {
  3242. "issues": "https://github.com/opis/closure/issues",
  3243. "source": "https://github.com/opis/closure/tree/3.6.2"
  3244. },
  3245. "time": "2021-04-09T13:42:10+00:00"
  3246. },
  3247. {
  3248. "name": "oursdreams/export",
  3249. "version": "0.0.7",
  3250. "source": {
  3251. "type": "git",
  3252. "url": "https://github.com/oursdreams/export.git",
  3253. "reference": "507ed53371d4ecc4f4350a9066422621ac2fae1c"
  3254. },
  3255. "dist": {
  3256. "type": "zip",
  3257. "url": "https://api.github.com/repos/oursdreams/export/zipball/507ed53371d4ecc4f4350a9066422621ac2fae1c",
  3258. "reference": "507ed53371d4ecc4f4350a9066422621ac2fae1c",
  3259. "shasum": "",
  3260. "mirrors": [
  3261. {
  3262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3263. "preferred": true
  3264. }
  3265. ]
  3266. },
  3267. "type": "library",
  3268. "extra": {
  3269. "laravel": {
  3270. "providers": [
  3271. "Oursdreams\\Export\\ExportServiceProvider"
  3272. ]
  3273. }
  3274. },
  3275. "autoload": {
  3276. "psr-4": {
  3277. "Oursdreams\\Export\\": "./src"
  3278. }
  3279. },
  3280. "notification-url": "https://packagist.org/downloads/",
  3281. "license": [
  3282. "MIT"
  3283. ],
  3284. "authors": [
  3285. {
  3286. "name": "oursdreams",
  3287. "email": "z1792524653@163.com"
  3288. }
  3289. ],
  3290. "description": "A simple export plug-in",
  3291. "support": {
  3292. "issues": "https://github.com/oursdreams/export/issues",
  3293. "source": "https://github.com/oursdreams/export/tree/0.0.7"
  3294. },
  3295. "time": "2021-05-28T02:57:41+00:00"
  3296. },
  3297. {
  3298. "name": "overtrue/laravel-pinyin",
  3299. "version": "4.0.0",
  3300. "source": {
  3301. "type": "git",
  3302. "url": "https://github.com/overtrue/laravel-pinyin.git",
  3303. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  3304. },
  3305. "dist": {
  3306. "type": "zip",
  3307. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3308. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3309. "shasum": "",
  3310. "mirrors": [
  3311. {
  3312. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3313. "preferred": true
  3314. }
  3315. ]
  3316. },
  3317. "require": {
  3318. "overtrue/pinyin": "~4.0"
  3319. },
  3320. "type": "library",
  3321. "extra": {
  3322. "laravel": {
  3323. "providers": [
  3324. "Overtrue\\LaravelPinyin\\ServiceProvider"
  3325. ],
  3326. "aliases": {
  3327. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  3328. }
  3329. }
  3330. },
  3331. "autoload": {
  3332. "psr-4": {
  3333. "Overtrue\\LaravelPinyin\\": "src/"
  3334. },
  3335. "files": [
  3336. "src/helpers.php"
  3337. ]
  3338. },
  3339. "notification-url": "https://packagist.org/downloads/",
  3340. "license": [
  3341. "MIT"
  3342. ],
  3343. "authors": [
  3344. {
  3345. "name": "overtrue",
  3346. "email": "anzhengchao@gmail.com"
  3347. }
  3348. ],
  3349. "description": "Chinese to Pinyin translator.",
  3350. "keywords": [
  3351. "Chinese",
  3352. "Pinyin",
  3353. "laravel",
  3354. "overtrue"
  3355. ],
  3356. "time": "2018-10-10T09:02:46+00:00"
  3357. },
  3358. {
  3359. "name": "overtrue/pinyin",
  3360. "version": "4.0.7",
  3361. "source": {
  3362. "type": "git",
  3363. "url": "https://github.com/overtrue/pinyin.git",
  3364. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb"
  3365. },
  3366. "dist": {
  3367. "type": "zip",
  3368. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3369. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3370. "shasum": "",
  3371. "mirrors": [
  3372. {
  3373. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3374. "preferred": true
  3375. }
  3376. ]
  3377. },
  3378. "require": {
  3379. "php": ">=7.1"
  3380. },
  3381. "require-dev": {
  3382. "brainmaestro/composer-git-hooks": "^2.7",
  3383. "friendsofphp/php-cs-fixer": "^2.16",
  3384. "phpunit/phpunit": "~8.0"
  3385. },
  3386. "type": "library",
  3387. "extra": {
  3388. "hooks": {
  3389. "pre-commit": [
  3390. "composer test",
  3391. "composer fix-style"
  3392. ],
  3393. "pre-push": [
  3394. "composer test",
  3395. "composer check-style"
  3396. ]
  3397. }
  3398. },
  3399. "autoload": {
  3400. "psr-4": {
  3401. "Overtrue\\Pinyin\\": "src/"
  3402. },
  3403. "files": [
  3404. "src/const.php"
  3405. ]
  3406. },
  3407. "notification-url": "https://packagist.org/downloads/",
  3408. "license": [
  3409. "MIT"
  3410. ],
  3411. "authors": [
  3412. {
  3413. "name": "overtrue",
  3414. "email": "anzhengchao@gmail.com",
  3415. "homepage": "http://github.com/overtrue"
  3416. }
  3417. ],
  3418. "description": "Chinese to pinyin translator.",
  3419. "homepage": "https://github.com/overtrue/pinyin",
  3420. "keywords": [
  3421. "Chinese",
  3422. "Pinyin",
  3423. "cn2pinyin"
  3424. ],
  3425. "support": {
  3426. "issues": "https://github.com/overtrue/pinyin/issues",
  3427. "source": "https://github.com/overtrue/pinyin/tree/4.0.7"
  3428. },
  3429. "funding": [
  3430. {
  3431. "url": "https://www.patreon.com/overtrue",
  3432. "type": "patreon"
  3433. }
  3434. ],
  3435. "time": "2021-04-16T11:13:48+00:00"
  3436. },
  3437. {
  3438. "name": "paragonie/random_compat",
  3439. "version": "v9.99.100",
  3440. "source": {
  3441. "type": "git",
  3442. "url": "https://github.com/paragonie/random_compat.git",
  3443. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3444. },
  3445. "dist": {
  3446. "type": "zip",
  3447. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3448. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3449. "shasum": "",
  3450. "mirrors": [
  3451. {
  3452. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3453. "preferred": true
  3454. }
  3455. ]
  3456. },
  3457. "require": {
  3458. "php": ">= 7"
  3459. },
  3460. "require-dev": {
  3461. "phpunit/phpunit": "4.*|5.*",
  3462. "vimeo/psalm": "^1"
  3463. },
  3464. "suggest": {
  3465. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3466. },
  3467. "type": "library",
  3468. "notification-url": "https://packagist.org/downloads/",
  3469. "license": [
  3470. "MIT"
  3471. ],
  3472. "authors": [
  3473. {
  3474. "name": "Paragon Initiative Enterprises",
  3475. "email": "security@paragonie.com",
  3476. "homepage": "https://paragonie.com"
  3477. }
  3478. ],
  3479. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3480. "keywords": [
  3481. "csprng",
  3482. "polyfill",
  3483. "pseudorandom",
  3484. "random"
  3485. ],
  3486. "time": "2020-10-15T08:29:30+00:00"
  3487. },
  3488. {
  3489. "name": "paragonie/sodium_compat",
  3490. "version": "v1.16.1",
  3491. "source": {
  3492. "type": "git",
  3493. "url": "https://github.com/paragonie/sodium_compat.git",
  3494. "reference": "2e856afe80bfc968b47da1f4a7e1ea8f03d06b38"
  3495. },
  3496. "dist": {
  3497. "type": "zip",
  3498. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/2e856afe80bfc968b47da1f4a7e1ea8f03d06b38",
  3499. "reference": "2e856afe80bfc968b47da1f4a7e1ea8f03d06b38",
  3500. "shasum": "",
  3501. "mirrors": [
  3502. {
  3503. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3504. "preferred": true
  3505. }
  3506. ]
  3507. },
  3508. "require": {
  3509. "paragonie/random_compat": ">=1",
  3510. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  3511. },
  3512. "require-dev": {
  3513. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  3514. },
  3515. "suggest": {
  3516. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  3517. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  3518. },
  3519. "type": "library",
  3520. "autoload": {
  3521. "files": [
  3522. "autoload.php"
  3523. ]
  3524. },
  3525. "notification-url": "https://packagist.org/downloads/",
  3526. "license": [
  3527. "ISC"
  3528. ],
  3529. "authors": [
  3530. {
  3531. "name": "Paragon Initiative Enterprises",
  3532. "email": "security@paragonie.com"
  3533. },
  3534. {
  3535. "name": "Frank Denis",
  3536. "email": "jedisct1@pureftpd.org"
  3537. }
  3538. ],
  3539. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  3540. "keywords": [
  3541. "Authentication",
  3542. "BLAKE2b",
  3543. "ChaCha20",
  3544. "ChaCha20-Poly1305",
  3545. "Chapoly",
  3546. "Curve25519",
  3547. "Ed25519",
  3548. "EdDSA",
  3549. "Edwards-curve Digital Signature Algorithm",
  3550. "Elliptic Curve Diffie-Hellman",
  3551. "Poly1305",
  3552. "Pure-PHP cryptography",
  3553. "RFC 7748",
  3554. "RFC 8032",
  3555. "Salpoly",
  3556. "Salsa20",
  3557. "X25519",
  3558. "XChaCha20-Poly1305",
  3559. "XSalsa20-Poly1305",
  3560. "Xchacha20",
  3561. "Xsalsa20",
  3562. "aead",
  3563. "cryptography",
  3564. "ecdh",
  3565. "elliptic curve",
  3566. "elliptic curve cryptography",
  3567. "encryption",
  3568. "libsodium",
  3569. "php",
  3570. "public-key cryptography",
  3571. "secret-key cryptography",
  3572. "side-channel resistant"
  3573. ],
  3574. "support": {
  3575. "issues": "https://github.com/paragonie/sodium_compat/issues",
  3576. "source": "https://github.com/paragonie/sodium_compat/tree/v1.16.1"
  3577. },
  3578. "time": "2021-05-25T12:58:14+00:00"
  3579. },
  3580. {
  3581. "name": "phpoffice/phpspreadsheet",
  3582. "version": "1.16.0",
  3583. "source": {
  3584. "type": "git",
  3585. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3586. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50"
  3587. },
  3588. "dist": {
  3589. "type": "zip",
  3590. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/76d4323b85129d0c368149c831a07a3e258b2b50",
  3591. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50",
  3592. "shasum": "",
  3593. "mirrors": [
  3594. {
  3595. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3596. "preferred": true
  3597. }
  3598. ]
  3599. },
  3600. "require": {
  3601. "ext-ctype": "*",
  3602. "ext-dom": "*",
  3603. "ext-fileinfo": "*",
  3604. "ext-gd": "*",
  3605. "ext-iconv": "*",
  3606. "ext-libxml": "*",
  3607. "ext-mbstring": "*",
  3608. "ext-simplexml": "*",
  3609. "ext-xml": "*",
  3610. "ext-xmlreader": "*",
  3611. "ext-xmlwriter": "*",
  3612. "ext-zip": "*",
  3613. "ext-zlib": "*",
  3614. "ezyang/htmlpurifier": "^4.13",
  3615. "maennchen/zipstream-php": "^2.1",
  3616. "markbaker/complex": "^1.5||^2.0",
  3617. "markbaker/matrix": "^1.2||^2.0",
  3618. "php": "^7.2||^8.0",
  3619. "psr/http-client": "^1.0",
  3620. "psr/http-factory": "^1.0",
  3621. "psr/simple-cache": "^1.0"
  3622. },
  3623. "require-dev": {
  3624. "dompdf/dompdf": "^0.8.5",
  3625. "friendsofphp/php-cs-fixer": "^2.16",
  3626. "jpgraph/jpgraph": "^4.0",
  3627. "mpdf/mpdf": "^8.0",
  3628. "phpcompatibility/php-compatibility": "^9.3",
  3629. "phpunit/phpunit": "^8.5||^9.3",
  3630. "squizlabs/php_codesniffer": "^3.5",
  3631. "tecnickcom/tcpdf": "^6.3"
  3632. },
  3633. "suggest": {
  3634. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3635. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3636. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3637. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3638. },
  3639. "type": "library",
  3640. "autoload": {
  3641. "psr-4": {
  3642. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3643. }
  3644. },
  3645. "notification-url": "https://packagist.org/downloads/",
  3646. "license": [
  3647. "MIT"
  3648. ],
  3649. "authors": [
  3650. {
  3651. "name": "Maarten Balliauw",
  3652. "homepage": "https://blog.maartenballiauw.be"
  3653. },
  3654. {
  3655. "name": "Mark Baker",
  3656. "homepage": "https://markbakeruk.net"
  3657. },
  3658. {
  3659. "name": "Franck Lefevre",
  3660. "homepage": "https://rootslabs.net"
  3661. },
  3662. {
  3663. "name": "Erik Tilt"
  3664. },
  3665. {
  3666. "name": "Adrien Crivelli"
  3667. }
  3668. ],
  3669. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3670. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3671. "keywords": [
  3672. "OpenXML",
  3673. "excel",
  3674. "gnumeric",
  3675. "ods",
  3676. "php",
  3677. "spreadsheet",
  3678. "xls",
  3679. "xlsx"
  3680. ],
  3681. "support": {
  3682. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3683. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.16.0"
  3684. },
  3685. "time": "2020-12-31T18:03:49+00:00"
  3686. },
  3687. {
  3688. "name": "phpoption/phpoption",
  3689. "version": "1.7.5",
  3690. "source": {
  3691. "type": "git",
  3692. "url": "https://github.com/schmittjoh/php-option.git",
  3693. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3694. },
  3695. "dist": {
  3696. "type": "zip",
  3697. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3698. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3699. "shasum": "",
  3700. "mirrors": [
  3701. {
  3702. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3703. "preferred": true
  3704. }
  3705. ]
  3706. },
  3707. "require": {
  3708. "php": "^5.5.9 || ^7.0 || ^8.0"
  3709. },
  3710. "require-dev": {
  3711. "bamarni/composer-bin-plugin": "^1.4.1",
  3712. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3713. },
  3714. "type": "library",
  3715. "extra": {
  3716. "branch-alias": {
  3717. "dev-master": "1.7-dev"
  3718. }
  3719. },
  3720. "autoload": {
  3721. "psr-4": {
  3722. "PhpOption\\": "src/PhpOption/"
  3723. }
  3724. },
  3725. "notification-url": "https://packagist.org/downloads/",
  3726. "license": [
  3727. "Apache-2.0"
  3728. ],
  3729. "authors": [
  3730. {
  3731. "name": "Johannes M. Schmitt",
  3732. "email": "schmittjoh@gmail.com"
  3733. },
  3734. {
  3735. "name": "Graham Campbell",
  3736. "email": "graham@alt-three.com"
  3737. }
  3738. ],
  3739. "description": "Option Type for PHP",
  3740. "keywords": [
  3741. "language",
  3742. "option",
  3743. "php",
  3744. "type"
  3745. ],
  3746. "funding": [
  3747. {
  3748. "url": "https://github.com/GrahamCampbell",
  3749. "type": "github"
  3750. },
  3751. {
  3752. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3753. "type": "tidelift"
  3754. }
  3755. ],
  3756. "time": "2020-07-20T17:29:33+00:00"
  3757. },
  3758. {
  3759. "name": "picqer/php-barcode-generator",
  3760. "version": "v2.2.0",
  3761. "source": {
  3762. "type": "git",
  3763. "url": "https://github.com/picqer/php-barcode-generator.git",
  3764. "reference": "7df93b40099e5fefad055543320a36b80dccda05"
  3765. },
  3766. "dist": {
  3767. "type": "zip",
  3768. "url": "https://api.github.com/repos/picqer/php-barcode-generator/zipball/7df93b40099e5fefad055543320a36b80dccda05",
  3769. "reference": "7df93b40099e5fefad055543320a36b80dccda05",
  3770. "shasum": "",
  3771. "mirrors": [
  3772. {
  3773. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3774. "preferred": true
  3775. }
  3776. ]
  3777. },
  3778. "require": {
  3779. "ext-mbstring": "*",
  3780. "php": "^7.3|^8.0"
  3781. },
  3782. "require-dev": {
  3783. "phpunit/phpunit": "^9.5"
  3784. },
  3785. "suggest": {
  3786. "ext-bcmath": "Barcode IMB (Intelligent Mail Barcode) needs bcmath extension",
  3787. "ext-gd": "For JPG and PNG generators, GD or Imagick is required",
  3788. "ext-imagick": "For JPG and PNG generators, GD or Imagick is required"
  3789. },
  3790. "type": "library",
  3791. "autoload": {
  3792. "psr-4": {
  3793. "Picqer\\Barcode\\": "src"
  3794. }
  3795. },
  3796. "notification-url": "https://packagist.org/downloads/",
  3797. "license": [
  3798. "LGPL-3.0-or-later"
  3799. ],
  3800. "authors": [
  3801. {
  3802. "name": "Nicola Asuni",
  3803. "email": "info@tecnick.com",
  3804. "homepage": "http://nicolaasuni.tecnick.com"
  3805. },
  3806. {
  3807. "name": "Casper Bakker",
  3808. "email": "info@picqer.com",
  3809. "homepage": "https://picqer.com"
  3810. }
  3811. ],
  3812. "description": "An easy to use, non-bloated, barcode generator in PHP. Creates SVG, PNG, JPG and HTML images from the most used 1D barcode standards.",
  3813. "homepage": "https://github.com/picqer/php-barcode-generator",
  3814. "keywords": [
  3815. "CODABAR",
  3816. "Code11",
  3817. "Code93",
  3818. "EAN13",
  3819. "KIX",
  3820. "KIXCODE",
  3821. "MSI",
  3822. "POSTNET",
  3823. "Pharma",
  3824. "Standard 2 of 5",
  3825. "barcode",
  3826. "barcode generator",
  3827. "code128",
  3828. "code39",
  3829. "ean",
  3830. "html",
  3831. "jpeg",
  3832. "jpg",
  3833. "php",
  3834. "png",
  3835. "svg",
  3836. "upc"
  3837. ],
  3838. "funding": [
  3839. {
  3840. "url": "https://github.com/casperbakker",
  3841. "type": "github"
  3842. }
  3843. ],
  3844. "time": "2021-03-27T09:06:22+00:00"
  3845. },
  3846. {
  3847. "name": "predis/predis",
  3848. "version": "v1.1.7",
  3849. "source": {
  3850. "type": "git",
  3851. "url": "https://github.com/predis/predis.git",
  3852. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8"
  3853. },
  3854. "dist": {
  3855. "type": "zip",
  3856. "url": "https://api.github.com/repos/predis/predis/zipball/b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3857. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3858. "shasum": "",
  3859. "mirrors": [
  3860. {
  3861. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3862. "preferred": true
  3863. }
  3864. ]
  3865. },
  3866. "require": {
  3867. "php": ">=5.3.9"
  3868. },
  3869. "require-dev": {
  3870. "phpunit/phpunit": "~4.8"
  3871. },
  3872. "suggest": {
  3873. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3874. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3875. },
  3876. "type": "library",
  3877. "autoload": {
  3878. "psr-4": {
  3879. "Predis\\": "src/"
  3880. }
  3881. },
  3882. "notification-url": "https://packagist.org/downloads/",
  3883. "license": [
  3884. "MIT"
  3885. ],
  3886. "authors": [
  3887. {
  3888. "name": "Daniele Alessandri",
  3889. "email": "suppakilla@gmail.com",
  3890. "homepage": "http://clorophilla.net",
  3891. "role": "Creator & Maintainer"
  3892. },
  3893. {
  3894. "name": "Till Krüss",
  3895. "homepage": "https://till.im",
  3896. "role": "Maintainer"
  3897. }
  3898. ],
  3899. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3900. "homepage": "http://github.com/predis/predis",
  3901. "keywords": [
  3902. "nosql",
  3903. "predis",
  3904. "redis"
  3905. ],
  3906. "support": {
  3907. "issues": "https://github.com/predis/predis/issues",
  3908. "source": "https://github.com/predis/predis/tree/v1.1.7"
  3909. },
  3910. "funding": [
  3911. {
  3912. "url": "https://github.com/sponsors/tillkruss",
  3913. "type": "github"
  3914. }
  3915. ],
  3916. "time": "2021-04-04T19:34:46+00:00"
  3917. },
  3918. {
  3919. "name": "psr/container",
  3920. "version": "1.1.1",
  3921. "source": {
  3922. "type": "git",
  3923. "url": "https://github.com/php-fig/container.git",
  3924. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  3925. },
  3926. "dist": {
  3927. "type": "zip",
  3928. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  3929. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  3930. "shasum": "",
  3931. "mirrors": [
  3932. {
  3933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3934. "preferred": true
  3935. }
  3936. ]
  3937. },
  3938. "require": {
  3939. "php": ">=7.2.0"
  3940. },
  3941. "type": "library",
  3942. "autoload": {
  3943. "psr-4": {
  3944. "Psr\\Container\\": "src/"
  3945. }
  3946. },
  3947. "notification-url": "https://packagist.org/downloads/",
  3948. "license": [
  3949. "MIT"
  3950. ],
  3951. "authors": [
  3952. {
  3953. "name": "PHP-FIG",
  3954. "homepage": "https://www.php-fig.org/"
  3955. }
  3956. ],
  3957. "description": "Common Container Interface (PHP FIG PSR-11)",
  3958. "homepage": "https://github.com/php-fig/container",
  3959. "keywords": [
  3960. "PSR-11",
  3961. "container",
  3962. "container-interface",
  3963. "container-interop",
  3964. "psr"
  3965. ],
  3966. "support": {
  3967. "issues": "https://github.com/php-fig/container/issues",
  3968. "source": "https://github.com/php-fig/container/tree/1.1.1"
  3969. },
  3970. "time": "2021-03-05T17:36:06+00:00"
  3971. },
  3972. {
  3973. "name": "psr/event-dispatcher",
  3974. "version": "1.0.0",
  3975. "source": {
  3976. "type": "git",
  3977. "url": "https://github.com/php-fig/event-dispatcher.git",
  3978. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3979. },
  3980. "dist": {
  3981. "type": "zip",
  3982. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3983. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3984. "shasum": "",
  3985. "mirrors": [
  3986. {
  3987. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3988. "preferred": true
  3989. }
  3990. ]
  3991. },
  3992. "require": {
  3993. "php": ">=7.2.0"
  3994. },
  3995. "type": "library",
  3996. "extra": {
  3997. "branch-alias": {
  3998. "dev-master": "1.0.x-dev"
  3999. }
  4000. },
  4001. "autoload": {
  4002. "psr-4": {
  4003. "Psr\\EventDispatcher\\": "src/"
  4004. }
  4005. },
  4006. "notification-url": "https://packagist.org/downloads/",
  4007. "license": [
  4008. "MIT"
  4009. ],
  4010. "authors": [
  4011. {
  4012. "name": "PHP-FIG",
  4013. "homepage": "http://www.php-fig.org/"
  4014. }
  4015. ],
  4016. "description": "Standard interfaces for event handling.",
  4017. "keywords": [
  4018. "events",
  4019. "psr",
  4020. "psr-14"
  4021. ],
  4022. "time": "2019-01-08T18:20:26+00:00"
  4023. },
  4024. {
  4025. "name": "psr/http-client",
  4026. "version": "1.0.1",
  4027. "source": {
  4028. "type": "git",
  4029. "url": "https://github.com/php-fig/http-client.git",
  4030. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4031. },
  4032. "dist": {
  4033. "type": "zip",
  4034. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4035. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4036. "shasum": "",
  4037. "mirrors": [
  4038. {
  4039. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4040. "preferred": true
  4041. }
  4042. ]
  4043. },
  4044. "require": {
  4045. "php": "^7.0 || ^8.0",
  4046. "psr/http-message": "^1.0"
  4047. },
  4048. "type": "library",
  4049. "extra": {
  4050. "branch-alias": {
  4051. "dev-master": "1.0.x-dev"
  4052. }
  4053. },
  4054. "autoload": {
  4055. "psr-4": {
  4056. "Psr\\Http\\Client\\": "src/"
  4057. }
  4058. },
  4059. "notification-url": "https://packagist.org/downloads/",
  4060. "license": [
  4061. "MIT"
  4062. ],
  4063. "authors": [
  4064. {
  4065. "name": "PHP-FIG",
  4066. "homepage": "http://www.php-fig.org/"
  4067. }
  4068. ],
  4069. "description": "Common interface for HTTP clients",
  4070. "homepage": "https://github.com/php-fig/http-client",
  4071. "keywords": [
  4072. "http",
  4073. "http-client",
  4074. "psr",
  4075. "psr-18"
  4076. ],
  4077. "time": "2020-06-29T06:28:15+00:00"
  4078. },
  4079. {
  4080. "name": "psr/http-factory",
  4081. "version": "1.0.1",
  4082. "source": {
  4083. "type": "git",
  4084. "url": "https://github.com/php-fig/http-factory.git",
  4085. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4086. },
  4087. "dist": {
  4088. "type": "zip",
  4089. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4090. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4091. "shasum": "",
  4092. "mirrors": [
  4093. {
  4094. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4095. "preferred": true
  4096. }
  4097. ]
  4098. },
  4099. "require": {
  4100. "php": ">=7.0.0",
  4101. "psr/http-message": "^1.0"
  4102. },
  4103. "type": "library",
  4104. "extra": {
  4105. "branch-alias": {
  4106. "dev-master": "1.0.x-dev"
  4107. }
  4108. },
  4109. "autoload": {
  4110. "psr-4": {
  4111. "Psr\\Http\\Message\\": "src/"
  4112. }
  4113. },
  4114. "notification-url": "https://packagist.org/downloads/",
  4115. "license": [
  4116. "MIT"
  4117. ],
  4118. "authors": [
  4119. {
  4120. "name": "PHP-FIG",
  4121. "homepage": "http://www.php-fig.org/"
  4122. }
  4123. ],
  4124. "description": "Common interfaces for PSR-7 HTTP message factories",
  4125. "keywords": [
  4126. "factory",
  4127. "http",
  4128. "message",
  4129. "psr",
  4130. "psr-17",
  4131. "psr-7",
  4132. "request",
  4133. "response"
  4134. ],
  4135. "time": "2019-04-30T12:38:16+00:00"
  4136. },
  4137. {
  4138. "name": "psr/http-message",
  4139. "version": "1.0.1",
  4140. "source": {
  4141. "type": "git",
  4142. "url": "https://github.com/php-fig/http-message.git",
  4143. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4144. },
  4145. "dist": {
  4146. "type": "zip",
  4147. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4148. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4149. "shasum": "",
  4150. "mirrors": [
  4151. {
  4152. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4153. "preferred": true
  4154. }
  4155. ]
  4156. },
  4157. "require": {
  4158. "php": ">=5.3.0"
  4159. },
  4160. "type": "library",
  4161. "extra": {
  4162. "branch-alias": {
  4163. "dev-master": "1.0.x-dev"
  4164. }
  4165. },
  4166. "autoload": {
  4167. "psr-4": {
  4168. "Psr\\Http\\Message\\": "src/"
  4169. }
  4170. },
  4171. "notification-url": "https://packagist.org/downloads/",
  4172. "license": [
  4173. "MIT"
  4174. ],
  4175. "authors": [
  4176. {
  4177. "name": "PHP-FIG",
  4178. "homepage": "http://www.php-fig.org/"
  4179. }
  4180. ],
  4181. "description": "Common interface for HTTP messages",
  4182. "homepage": "https://github.com/php-fig/http-message",
  4183. "keywords": [
  4184. "http",
  4185. "http-message",
  4186. "psr",
  4187. "psr-7",
  4188. "request",
  4189. "response"
  4190. ],
  4191. "time": "2016-08-06T14:39:51+00:00"
  4192. },
  4193. {
  4194. "name": "psr/log",
  4195. "version": "1.1.4",
  4196. "source": {
  4197. "type": "git",
  4198. "url": "https://github.com/php-fig/log.git",
  4199. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4200. },
  4201. "dist": {
  4202. "type": "zip",
  4203. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4204. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4205. "shasum": "",
  4206. "mirrors": [
  4207. {
  4208. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4209. "preferred": true
  4210. }
  4211. ]
  4212. },
  4213. "require": {
  4214. "php": ">=5.3.0"
  4215. },
  4216. "type": "library",
  4217. "extra": {
  4218. "branch-alias": {
  4219. "dev-master": "1.1.x-dev"
  4220. }
  4221. },
  4222. "autoload": {
  4223. "psr-4": {
  4224. "Psr\\Log\\": "Psr/Log/"
  4225. }
  4226. },
  4227. "notification-url": "https://packagist.org/downloads/",
  4228. "license": [
  4229. "MIT"
  4230. ],
  4231. "authors": [
  4232. {
  4233. "name": "PHP-FIG",
  4234. "homepage": "https://www.php-fig.org/"
  4235. }
  4236. ],
  4237. "description": "Common interface for logging libraries",
  4238. "homepage": "https://github.com/php-fig/log",
  4239. "keywords": [
  4240. "log",
  4241. "psr",
  4242. "psr-3"
  4243. ],
  4244. "support": {
  4245. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4246. },
  4247. "time": "2021-05-03T11:20:27+00:00"
  4248. },
  4249. {
  4250. "name": "psr/simple-cache",
  4251. "version": "1.0.1",
  4252. "source": {
  4253. "type": "git",
  4254. "url": "https://github.com/php-fig/simple-cache.git",
  4255. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4256. },
  4257. "dist": {
  4258. "type": "zip",
  4259. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4260. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4261. "shasum": "",
  4262. "mirrors": [
  4263. {
  4264. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4265. "preferred": true
  4266. }
  4267. ]
  4268. },
  4269. "require": {
  4270. "php": ">=5.3.0"
  4271. },
  4272. "type": "library",
  4273. "extra": {
  4274. "branch-alias": {
  4275. "dev-master": "1.0.x-dev"
  4276. }
  4277. },
  4278. "autoload": {
  4279. "psr-4": {
  4280. "Psr\\SimpleCache\\": "src/"
  4281. }
  4282. },
  4283. "notification-url": "https://packagist.org/downloads/",
  4284. "license": [
  4285. "MIT"
  4286. ],
  4287. "authors": [
  4288. {
  4289. "name": "PHP-FIG",
  4290. "homepage": "http://www.php-fig.org/"
  4291. }
  4292. ],
  4293. "description": "Common interfaces for simple caching",
  4294. "keywords": [
  4295. "cache",
  4296. "caching",
  4297. "psr",
  4298. "psr-16",
  4299. "simple-cache"
  4300. ],
  4301. "time": "2017-10-23T01:57:42+00:00"
  4302. },
  4303. {
  4304. "name": "psy/psysh",
  4305. "version": "v0.10.8",
  4306. "source": {
  4307. "type": "git",
  4308. "url": "https://github.com/bobthecow/psysh.git",
  4309. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3"
  4310. },
  4311. "dist": {
  4312. "type": "zip",
  4313. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4314. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4315. "shasum": "",
  4316. "mirrors": [
  4317. {
  4318. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4319. "preferred": true
  4320. }
  4321. ]
  4322. },
  4323. "require": {
  4324. "ext-json": "*",
  4325. "ext-tokenizer": "*",
  4326. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4327. "php": "^8.0 || ^7.0 || ^5.5.9",
  4328. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4329. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4330. },
  4331. "require-dev": {
  4332. "bamarni/composer-bin-plugin": "^1.2",
  4333. "hoa/console": "3.17.*"
  4334. },
  4335. "suggest": {
  4336. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4337. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4338. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4339. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4340. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4341. },
  4342. "bin": [
  4343. "bin/psysh"
  4344. ],
  4345. "type": "library",
  4346. "extra": {
  4347. "branch-alias": {
  4348. "dev-main": "0.10.x-dev"
  4349. }
  4350. },
  4351. "autoload": {
  4352. "files": [
  4353. "src/functions.php"
  4354. ],
  4355. "psr-4": {
  4356. "Psy\\": "src/"
  4357. }
  4358. },
  4359. "notification-url": "https://packagist.org/downloads/",
  4360. "license": [
  4361. "MIT"
  4362. ],
  4363. "authors": [
  4364. {
  4365. "name": "Justin Hileman",
  4366. "email": "justin@justinhileman.info",
  4367. "homepage": "http://justinhileman.com"
  4368. }
  4369. ],
  4370. "description": "An interactive shell for modern PHP.",
  4371. "homepage": "http://psysh.org",
  4372. "keywords": [
  4373. "REPL",
  4374. "console",
  4375. "interactive",
  4376. "shell"
  4377. ],
  4378. "support": {
  4379. "issues": "https://github.com/bobthecow/psysh/issues",
  4380. "source": "https://github.com/bobthecow/psysh/tree/v0.10.8"
  4381. },
  4382. "time": "2021-04-10T16:23:39+00:00"
  4383. },
  4384. {
  4385. "name": "pusher/pusher-php-server",
  4386. "version": "v4.1.5",
  4387. "source": {
  4388. "type": "git",
  4389. "url": "https://github.com/pusher/pusher-http-php.git",
  4390. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  4391. },
  4392. "dist": {
  4393. "type": "zip",
  4394. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4395. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4396. "shasum": "",
  4397. "mirrors": [
  4398. {
  4399. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4400. "preferred": true
  4401. }
  4402. ]
  4403. },
  4404. "require": {
  4405. "ext-curl": "*",
  4406. "paragonie/sodium_compat": "^1.6",
  4407. "php": "^7.1|^8.0",
  4408. "psr/log": "^1.0"
  4409. },
  4410. "require-dev": {
  4411. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  4412. },
  4413. "type": "library",
  4414. "extra": {
  4415. "branch-alias": {
  4416. "dev-master": "3.4-dev"
  4417. }
  4418. },
  4419. "autoload": {
  4420. "psr-4": {
  4421. "Pusher\\": "src/"
  4422. }
  4423. },
  4424. "notification-url": "https://packagist.org/downloads/",
  4425. "license": [
  4426. "MIT"
  4427. ],
  4428. "description": "Library for interacting with the Pusher REST API",
  4429. "keywords": [
  4430. "events",
  4431. "messaging",
  4432. "php-pusher-server",
  4433. "publish",
  4434. "push",
  4435. "pusher",
  4436. "real time",
  4437. "real-time",
  4438. "realtime",
  4439. "rest",
  4440. "trigger"
  4441. ],
  4442. "support": {
  4443. "issues": "https://github.com/pusher/pusher-http-php/issues",
  4444. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  4445. },
  4446. "time": "2020-12-09T09:38:19+00:00"
  4447. },
  4448. {
  4449. "name": "ralouphie/getallheaders",
  4450. "version": "3.0.3",
  4451. "source": {
  4452. "type": "git",
  4453. "url": "https://github.com/ralouphie/getallheaders.git",
  4454. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4455. },
  4456. "dist": {
  4457. "type": "zip",
  4458. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4459. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4460. "shasum": "",
  4461. "mirrors": [
  4462. {
  4463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4464. "preferred": true
  4465. }
  4466. ]
  4467. },
  4468. "require": {
  4469. "php": ">=5.6"
  4470. },
  4471. "require-dev": {
  4472. "php-coveralls/php-coveralls": "^2.1",
  4473. "phpunit/phpunit": "^5 || ^6.5"
  4474. },
  4475. "type": "library",
  4476. "autoload": {
  4477. "files": [
  4478. "src/getallheaders.php"
  4479. ]
  4480. },
  4481. "notification-url": "https://packagist.org/downloads/",
  4482. "license": [
  4483. "MIT"
  4484. ],
  4485. "authors": [
  4486. {
  4487. "name": "Ralph Khattar",
  4488. "email": "ralph.khattar@gmail.com"
  4489. }
  4490. ],
  4491. "description": "A polyfill for getallheaders.",
  4492. "time": "2019-03-08T08:55:37+00:00"
  4493. },
  4494. {
  4495. "name": "ramsey/collection",
  4496. "version": "1.1.3",
  4497. "source": {
  4498. "type": "git",
  4499. "url": "https://github.com/ramsey/collection.git",
  4500. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1"
  4501. },
  4502. "dist": {
  4503. "type": "zip",
  4504. "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4505. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4506. "shasum": "",
  4507. "mirrors": [
  4508. {
  4509. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4510. "preferred": true
  4511. }
  4512. ]
  4513. },
  4514. "require": {
  4515. "php": "^7.2 || ^8"
  4516. },
  4517. "require-dev": {
  4518. "captainhook/captainhook": "^5.3",
  4519. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4520. "ergebnis/composer-normalize": "^2.6",
  4521. "fakerphp/faker": "^1.5",
  4522. "hamcrest/hamcrest-php": "^2",
  4523. "jangregor/phpstan-prophecy": "^0.8",
  4524. "mockery/mockery": "^1.3",
  4525. "phpstan/extension-installer": "^1",
  4526. "phpstan/phpstan": "^0.12.32",
  4527. "phpstan/phpstan-mockery": "^0.12.5",
  4528. "phpstan/phpstan-phpunit": "^0.12.11",
  4529. "phpunit/phpunit": "^8.5 || ^9",
  4530. "psy/psysh": "^0.10.4",
  4531. "slevomat/coding-standard": "^6.3",
  4532. "squizlabs/php_codesniffer": "^3.5",
  4533. "vimeo/psalm": "^4.4"
  4534. },
  4535. "type": "library",
  4536. "autoload": {
  4537. "psr-4": {
  4538. "Ramsey\\Collection\\": "src/"
  4539. }
  4540. },
  4541. "notification-url": "https://packagist.org/downloads/",
  4542. "license": [
  4543. "MIT"
  4544. ],
  4545. "authors": [
  4546. {
  4547. "name": "Ben Ramsey",
  4548. "email": "ben@benramsey.com",
  4549. "homepage": "https://benramsey.com"
  4550. }
  4551. ],
  4552. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4553. "keywords": [
  4554. "array",
  4555. "collection",
  4556. "hash",
  4557. "map",
  4558. "queue",
  4559. "set"
  4560. ],
  4561. "support": {
  4562. "issues": "https://github.com/ramsey/collection/issues",
  4563. "source": "https://github.com/ramsey/collection/tree/1.1.3"
  4564. },
  4565. "funding": [
  4566. {
  4567. "url": "https://github.com/ramsey",
  4568. "type": "github"
  4569. },
  4570. {
  4571. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4572. "type": "tidelift"
  4573. }
  4574. ],
  4575. "time": "2021-01-21T17:40:04+00:00"
  4576. },
  4577. {
  4578. "name": "ramsey/uuid",
  4579. "version": "4.1.1",
  4580. "source": {
  4581. "type": "git",
  4582. "url": "https://github.com/ramsey/uuid.git",
  4583. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4584. },
  4585. "dist": {
  4586. "type": "zip",
  4587. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4588. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4589. "shasum": "",
  4590. "mirrors": [
  4591. {
  4592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4593. "preferred": true
  4594. }
  4595. ]
  4596. },
  4597. "require": {
  4598. "brick/math": "^0.8 || ^0.9",
  4599. "ext-json": "*",
  4600. "php": "^7.2 || ^8",
  4601. "ramsey/collection": "^1.0",
  4602. "symfony/polyfill-ctype": "^1.8"
  4603. },
  4604. "replace": {
  4605. "rhumsaa/uuid": "self.version"
  4606. },
  4607. "require-dev": {
  4608. "codeception/aspect-mock": "^3",
  4609. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4610. "doctrine/annotations": "^1.8",
  4611. "goaop/framework": "^2",
  4612. "mockery/mockery": "^1.3",
  4613. "moontoast/math": "^1.1",
  4614. "paragonie/random-lib": "^2",
  4615. "php-mock/php-mock-mockery": "^1.3",
  4616. "php-mock/php-mock-phpunit": "^2.5",
  4617. "php-parallel-lint/php-parallel-lint": "^1.1",
  4618. "phpbench/phpbench": "^0.17.1",
  4619. "phpstan/extension-installer": "^1.0",
  4620. "phpstan/phpstan": "^0.12",
  4621. "phpstan/phpstan-mockery": "^0.12",
  4622. "phpstan/phpstan-phpunit": "^0.12",
  4623. "phpunit/phpunit": "^8.5",
  4624. "psy/psysh": "^0.10.0",
  4625. "slevomat/coding-standard": "^6.0",
  4626. "squizlabs/php_codesniffer": "^3.5",
  4627. "vimeo/psalm": "3.9.4"
  4628. },
  4629. "suggest": {
  4630. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4631. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4632. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4633. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4634. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4635. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4636. },
  4637. "type": "library",
  4638. "extra": {
  4639. "branch-alias": {
  4640. "dev-master": "4.x-dev"
  4641. }
  4642. },
  4643. "autoload": {
  4644. "psr-4": {
  4645. "Ramsey\\Uuid\\": "src/"
  4646. },
  4647. "files": [
  4648. "src/functions.php"
  4649. ]
  4650. },
  4651. "notification-url": "https://packagist.org/downloads/",
  4652. "license": [
  4653. "MIT"
  4654. ],
  4655. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4656. "homepage": "https://github.com/ramsey/uuid",
  4657. "keywords": [
  4658. "guid",
  4659. "identifier",
  4660. "uuid"
  4661. ],
  4662. "time": "2020-08-18T17:17:46+00:00"
  4663. },
  4664. {
  4665. "name": "swiftmailer/swiftmailer",
  4666. "version": "v6.2.7",
  4667. "source": {
  4668. "type": "git",
  4669. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4670. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  4671. },
  4672. "dist": {
  4673. "type": "zip",
  4674. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  4675. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  4676. "shasum": "",
  4677. "mirrors": [
  4678. {
  4679. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4680. "preferred": true
  4681. }
  4682. ]
  4683. },
  4684. "require": {
  4685. "egulias/email-validator": "^2.0|^3.1",
  4686. "php": ">=7.0.0",
  4687. "symfony/polyfill-iconv": "^1.0",
  4688. "symfony/polyfill-intl-idn": "^1.10",
  4689. "symfony/polyfill-mbstring": "^1.0"
  4690. },
  4691. "require-dev": {
  4692. "mockery/mockery": "^1.0",
  4693. "symfony/phpunit-bridge": "^4.4|^5.0"
  4694. },
  4695. "suggest": {
  4696. "ext-intl": "Needed to support internationalized email addresses"
  4697. },
  4698. "type": "library",
  4699. "extra": {
  4700. "branch-alias": {
  4701. "dev-master": "6.2-dev"
  4702. }
  4703. },
  4704. "autoload": {
  4705. "files": [
  4706. "lib/swift_required.php"
  4707. ]
  4708. },
  4709. "notification-url": "https://packagist.org/downloads/",
  4710. "license": [
  4711. "MIT"
  4712. ],
  4713. "authors": [
  4714. {
  4715. "name": "Chris Corbyn"
  4716. },
  4717. {
  4718. "name": "Fabien Potencier",
  4719. "email": "fabien@symfony.com"
  4720. }
  4721. ],
  4722. "description": "Swiftmailer, free feature-rich PHP mailer",
  4723. "homepage": "https://swiftmailer.symfony.com",
  4724. "keywords": [
  4725. "email",
  4726. "mail",
  4727. "mailer"
  4728. ],
  4729. "support": {
  4730. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4731. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7"
  4732. },
  4733. "funding": [
  4734. {
  4735. "url": "https://github.com/fabpot",
  4736. "type": "github"
  4737. },
  4738. {
  4739. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4740. "type": "tidelift"
  4741. }
  4742. ],
  4743. "time": "2021-03-09T12:30:35+00:00"
  4744. },
  4745. {
  4746. "name": "symfony/console",
  4747. "version": "v5.2.8",
  4748. "source": {
  4749. "type": "git",
  4750. "url": "https://github.com/symfony/console.git",
  4751. "reference": "864568fdc0208b3eba3638b6000b69d2386e6768"
  4752. },
  4753. "dist": {
  4754. "type": "zip",
  4755. "url": "https://api.github.com/repos/symfony/console/zipball/864568fdc0208b3eba3638b6000b69d2386e6768",
  4756. "reference": "864568fdc0208b3eba3638b6000b69d2386e6768",
  4757. "shasum": "",
  4758. "mirrors": [
  4759. {
  4760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4761. "preferred": true
  4762. }
  4763. ]
  4764. },
  4765. "require": {
  4766. "php": ">=7.2.5",
  4767. "symfony/polyfill-mbstring": "~1.0",
  4768. "symfony/polyfill-php73": "^1.8",
  4769. "symfony/polyfill-php80": "^1.15",
  4770. "symfony/service-contracts": "^1.1|^2",
  4771. "symfony/string": "^5.1"
  4772. },
  4773. "conflict": {
  4774. "symfony/dependency-injection": "<4.4",
  4775. "symfony/dotenv": "<5.1",
  4776. "symfony/event-dispatcher": "<4.4",
  4777. "symfony/lock": "<4.4",
  4778. "symfony/process": "<4.4"
  4779. },
  4780. "provide": {
  4781. "psr/log-implementation": "1.0"
  4782. },
  4783. "require-dev": {
  4784. "psr/log": "~1.0",
  4785. "symfony/config": "^4.4|^5.0",
  4786. "symfony/dependency-injection": "^4.4|^5.0",
  4787. "symfony/event-dispatcher": "^4.4|^5.0",
  4788. "symfony/lock": "^4.4|^5.0",
  4789. "symfony/process": "^4.4|^5.0",
  4790. "symfony/var-dumper": "^4.4|^5.0"
  4791. },
  4792. "suggest": {
  4793. "psr/log": "For using the console logger",
  4794. "symfony/event-dispatcher": "",
  4795. "symfony/lock": "",
  4796. "symfony/process": ""
  4797. },
  4798. "type": "library",
  4799. "autoload": {
  4800. "psr-4": {
  4801. "Symfony\\Component\\Console\\": ""
  4802. },
  4803. "exclude-from-classmap": [
  4804. "/Tests/"
  4805. ]
  4806. },
  4807. "notification-url": "https://packagist.org/downloads/",
  4808. "license": [
  4809. "MIT"
  4810. ],
  4811. "authors": [
  4812. {
  4813. "name": "Fabien Potencier",
  4814. "email": "fabien@symfony.com"
  4815. },
  4816. {
  4817. "name": "Symfony Community",
  4818. "homepage": "https://symfony.com/contributors"
  4819. }
  4820. ],
  4821. "description": "Eases the creation of beautiful and testable command line interfaces",
  4822. "homepage": "https://symfony.com",
  4823. "keywords": [
  4824. "cli",
  4825. "command line",
  4826. "console",
  4827. "terminal"
  4828. ],
  4829. "support": {
  4830. "source": "https://github.com/symfony/console/tree/v5.2.8"
  4831. },
  4832. "funding": [
  4833. {
  4834. "url": "https://symfony.com/sponsor",
  4835. "type": "custom"
  4836. },
  4837. {
  4838. "url": "https://github.com/fabpot",
  4839. "type": "github"
  4840. },
  4841. {
  4842. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4843. "type": "tidelift"
  4844. }
  4845. ],
  4846. "time": "2021-05-11T15:45:21+00:00"
  4847. },
  4848. {
  4849. "name": "symfony/css-selector",
  4850. "version": "v5.2.9",
  4851. "source": {
  4852. "type": "git",
  4853. "url": "https://github.com/symfony/css-selector.git",
  4854. "reference": "5d5f97809015102116208b976eb2edb44b689560"
  4855. },
  4856. "dist": {
  4857. "type": "zip",
  4858. "url": "https://api.github.com/repos/symfony/css-selector/zipball/5d5f97809015102116208b976eb2edb44b689560",
  4859. "reference": "5d5f97809015102116208b976eb2edb44b689560",
  4860. "shasum": "",
  4861. "mirrors": [
  4862. {
  4863. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4864. "preferred": true
  4865. }
  4866. ]
  4867. },
  4868. "require": {
  4869. "php": ">=7.2.5"
  4870. },
  4871. "type": "library",
  4872. "autoload": {
  4873. "psr-4": {
  4874. "Symfony\\Component\\CssSelector\\": ""
  4875. },
  4876. "exclude-from-classmap": [
  4877. "/Tests/"
  4878. ]
  4879. },
  4880. "notification-url": "https://packagist.org/downloads/",
  4881. "license": [
  4882. "MIT"
  4883. ],
  4884. "authors": [
  4885. {
  4886. "name": "Fabien Potencier",
  4887. "email": "fabien@symfony.com"
  4888. },
  4889. {
  4890. "name": "Jean-François Simon",
  4891. "email": "jeanfrancois.simon@sensiolabs.com"
  4892. },
  4893. {
  4894. "name": "Symfony Community",
  4895. "homepage": "https://symfony.com/contributors"
  4896. }
  4897. ],
  4898. "description": "Converts CSS selectors to XPath expressions",
  4899. "homepage": "https://symfony.com",
  4900. "support": {
  4901. "source": "https://github.com/symfony/css-selector/tree/v5.2.9"
  4902. },
  4903. "funding": [
  4904. {
  4905. "url": "https://symfony.com/sponsor",
  4906. "type": "custom"
  4907. },
  4908. {
  4909. "url": "https://github.com/fabpot",
  4910. "type": "github"
  4911. },
  4912. {
  4913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4914. "type": "tidelift"
  4915. }
  4916. ],
  4917. "time": "2021-05-16T13:07:46+00:00"
  4918. },
  4919. {
  4920. "name": "symfony/deprecation-contracts",
  4921. "version": "v2.4.0",
  4922. "source": {
  4923. "type": "git",
  4924. "url": "https://github.com/symfony/deprecation-contracts.git",
  4925. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  4926. },
  4927. "dist": {
  4928. "type": "zip",
  4929. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  4930. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  4931. "shasum": "",
  4932. "mirrors": [
  4933. {
  4934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4935. "preferred": true
  4936. }
  4937. ]
  4938. },
  4939. "require": {
  4940. "php": ">=7.1"
  4941. },
  4942. "type": "library",
  4943. "extra": {
  4944. "branch-alias": {
  4945. "dev-main": "2.4-dev"
  4946. },
  4947. "thanks": {
  4948. "name": "symfony/contracts",
  4949. "url": "https://github.com/symfony/contracts"
  4950. }
  4951. },
  4952. "autoload": {
  4953. "files": [
  4954. "function.php"
  4955. ]
  4956. },
  4957. "notification-url": "https://packagist.org/downloads/",
  4958. "license": [
  4959. "MIT"
  4960. ],
  4961. "authors": [
  4962. {
  4963. "name": "Nicolas Grekas",
  4964. "email": "p@tchwork.com"
  4965. },
  4966. {
  4967. "name": "Symfony Community",
  4968. "homepage": "https://symfony.com/contributors"
  4969. }
  4970. ],
  4971. "description": "A generic function and convention to trigger deprecation notices",
  4972. "homepage": "https://symfony.com",
  4973. "support": {
  4974. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  4975. },
  4976. "funding": [
  4977. {
  4978. "url": "https://symfony.com/sponsor",
  4979. "type": "custom"
  4980. },
  4981. {
  4982. "url": "https://github.com/fabpot",
  4983. "type": "github"
  4984. },
  4985. {
  4986. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4987. "type": "tidelift"
  4988. }
  4989. ],
  4990. "time": "2021-03-23T23:28:01+00:00"
  4991. },
  4992. {
  4993. "name": "symfony/error-handler",
  4994. "version": "v5.2.8",
  4995. "source": {
  4996. "type": "git",
  4997. "url": "https://github.com/symfony/error-handler.git",
  4998. "reference": "1416bc16317a8188aabde251afef7618bf4687ac"
  4999. },
  5000. "dist": {
  5001. "type": "zip",
  5002. "url": "https://api.github.com/repos/symfony/error-handler/zipball/1416bc16317a8188aabde251afef7618bf4687ac",
  5003. "reference": "1416bc16317a8188aabde251afef7618bf4687ac",
  5004. "shasum": "",
  5005. "mirrors": [
  5006. {
  5007. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5008. "preferred": true
  5009. }
  5010. ]
  5011. },
  5012. "require": {
  5013. "php": ">=7.2.5",
  5014. "psr/log": "^1.0",
  5015. "symfony/polyfill-php80": "^1.15",
  5016. "symfony/var-dumper": "^4.4|^5.0"
  5017. },
  5018. "require-dev": {
  5019. "symfony/deprecation-contracts": "^2.1",
  5020. "symfony/http-kernel": "^4.4|^5.0",
  5021. "symfony/serializer": "^4.4|^5.0"
  5022. },
  5023. "type": "library",
  5024. "autoload": {
  5025. "psr-4": {
  5026. "Symfony\\Component\\ErrorHandler\\": ""
  5027. },
  5028. "exclude-from-classmap": [
  5029. "/Tests/"
  5030. ]
  5031. },
  5032. "notification-url": "https://packagist.org/downloads/",
  5033. "license": [
  5034. "MIT"
  5035. ],
  5036. "authors": [
  5037. {
  5038. "name": "Fabien Potencier",
  5039. "email": "fabien@symfony.com"
  5040. },
  5041. {
  5042. "name": "Symfony Community",
  5043. "homepage": "https://symfony.com/contributors"
  5044. }
  5045. ],
  5046. "description": "Provides tools to manage errors and ease debugging PHP code",
  5047. "homepage": "https://symfony.com",
  5048. "support": {
  5049. "source": "https://github.com/symfony/error-handler/tree/v5.2.8"
  5050. },
  5051. "funding": [
  5052. {
  5053. "url": "https://symfony.com/sponsor",
  5054. "type": "custom"
  5055. },
  5056. {
  5057. "url": "https://github.com/fabpot",
  5058. "type": "github"
  5059. },
  5060. {
  5061. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5062. "type": "tidelift"
  5063. }
  5064. ],
  5065. "time": "2021-05-07T13:42:21+00:00"
  5066. },
  5067. {
  5068. "name": "symfony/event-dispatcher",
  5069. "version": "v5.2.4",
  5070. "source": {
  5071. "type": "git",
  5072. "url": "https://github.com/symfony/event-dispatcher.git",
  5073. "reference": "d08d6ec121a425897951900ab692b612a61d6240"
  5074. },
  5075. "dist": {
  5076. "type": "zip",
  5077. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d08d6ec121a425897951900ab692b612a61d6240",
  5078. "reference": "d08d6ec121a425897951900ab692b612a61d6240",
  5079. "shasum": "",
  5080. "mirrors": [
  5081. {
  5082. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5083. "preferred": true
  5084. }
  5085. ]
  5086. },
  5087. "require": {
  5088. "php": ">=7.2.5",
  5089. "symfony/deprecation-contracts": "^2.1",
  5090. "symfony/event-dispatcher-contracts": "^2",
  5091. "symfony/polyfill-php80": "^1.15"
  5092. },
  5093. "conflict": {
  5094. "symfony/dependency-injection": "<4.4"
  5095. },
  5096. "provide": {
  5097. "psr/event-dispatcher-implementation": "1.0",
  5098. "symfony/event-dispatcher-implementation": "2.0"
  5099. },
  5100. "require-dev": {
  5101. "psr/log": "~1.0",
  5102. "symfony/config": "^4.4|^5.0",
  5103. "symfony/dependency-injection": "^4.4|^5.0",
  5104. "symfony/error-handler": "^4.4|^5.0",
  5105. "symfony/expression-language": "^4.4|^5.0",
  5106. "symfony/http-foundation": "^4.4|^5.0",
  5107. "symfony/service-contracts": "^1.1|^2",
  5108. "symfony/stopwatch": "^4.4|^5.0"
  5109. },
  5110. "suggest": {
  5111. "symfony/dependency-injection": "",
  5112. "symfony/http-kernel": ""
  5113. },
  5114. "type": "library",
  5115. "autoload": {
  5116. "psr-4": {
  5117. "Symfony\\Component\\EventDispatcher\\": ""
  5118. },
  5119. "exclude-from-classmap": [
  5120. "/Tests/"
  5121. ]
  5122. },
  5123. "notification-url": "https://packagist.org/downloads/",
  5124. "license": [
  5125. "MIT"
  5126. ],
  5127. "authors": [
  5128. {
  5129. "name": "Fabien Potencier",
  5130. "email": "fabien@symfony.com"
  5131. },
  5132. {
  5133. "name": "Symfony Community",
  5134. "homepage": "https://symfony.com/contributors"
  5135. }
  5136. ],
  5137. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5138. "homepage": "https://symfony.com",
  5139. "support": {
  5140. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.4"
  5141. },
  5142. "funding": [
  5143. {
  5144. "url": "https://symfony.com/sponsor",
  5145. "type": "custom"
  5146. },
  5147. {
  5148. "url": "https://github.com/fabpot",
  5149. "type": "github"
  5150. },
  5151. {
  5152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5153. "type": "tidelift"
  5154. }
  5155. ],
  5156. "time": "2021-02-18T17:12:37+00:00"
  5157. },
  5158. {
  5159. "name": "symfony/event-dispatcher-contracts",
  5160. "version": "v2.4.0",
  5161. "source": {
  5162. "type": "git",
  5163. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5164. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  5165. },
  5166. "dist": {
  5167. "type": "zip",
  5168. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5169. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5170. "shasum": "",
  5171. "mirrors": [
  5172. {
  5173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5174. "preferred": true
  5175. }
  5176. ]
  5177. },
  5178. "require": {
  5179. "php": ">=7.2.5",
  5180. "psr/event-dispatcher": "^1"
  5181. },
  5182. "suggest": {
  5183. "symfony/event-dispatcher-implementation": ""
  5184. },
  5185. "type": "library",
  5186. "extra": {
  5187. "branch-alias": {
  5188. "dev-main": "2.4-dev"
  5189. },
  5190. "thanks": {
  5191. "name": "symfony/contracts",
  5192. "url": "https://github.com/symfony/contracts"
  5193. }
  5194. },
  5195. "autoload": {
  5196. "psr-4": {
  5197. "Symfony\\Contracts\\EventDispatcher\\": ""
  5198. }
  5199. },
  5200. "notification-url": "https://packagist.org/downloads/",
  5201. "license": [
  5202. "MIT"
  5203. ],
  5204. "authors": [
  5205. {
  5206. "name": "Nicolas Grekas",
  5207. "email": "p@tchwork.com"
  5208. },
  5209. {
  5210. "name": "Symfony Community",
  5211. "homepage": "https://symfony.com/contributors"
  5212. }
  5213. ],
  5214. "description": "Generic abstractions related to dispatching event",
  5215. "homepage": "https://symfony.com",
  5216. "keywords": [
  5217. "abstractions",
  5218. "contracts",
  5219. "decoupling",
  5220. "interfaces",
  5221. "interoperability",
  5222. "standards"
  5223. ],
  5224. "support": {
  5225. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  5226. },
  5227. "funding": [
  5228. {
  5229. "url": "https://symfony.com/sponsor",
  5230. "type": "custom"
  5231. },
  5232. {
  5233. "url": "https://github.com/fabpot",
  5234. "type": "github"
  5235. },
  5236. {
  5237. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5238. "type": "tidelift"
  5239. }
  5240. ],
  5241. "time": "2021-03-23T23:28:01+00:00"
  5242. },
  5243. {
  5244. "name": "symfony/finder",
  5245. "version": "v5.2.9",
  5246. "source": {
  5247. "type": "git",
  5248. "url": "https://github.com/symfony/finder.git",
  5249. "reference": "ccccb9d48ca42757dd12f2ca4bf857a4e217d90d"
  5250. },
  5251. "dist": {
  5252. "type": "zip",
  5253. "url": "https://api.github.com/repos/symfony/finder/zipball/ccccb9d48ca42757dd12f2ca4bf857a4e217d90d",
  5254. "reference": "ccccb9d48ca42757dd12f2ca4bf857a4e217d90d",
  5255. "shasum": "",
  5256. "mirrors": [
  5257. {
  5258. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5259. "preferred": true
  5260. }
  5261. ]
  5262. },
  5263. "require": {
  5264. "php": ">=7.2.5"
  5265. },
  5266. "type": "library",
  5267. "autoload": {
  5268. "psr-4": {
  5269. "Symfony\\Component\\Finder\\": ""
  5270. },
  5271. "exclude-from-classmap": [
  5272. "/Tests/"
  5273. ]
  5274. },
  5275. "notification-url": "https://packagist.org/downloads/",
  5276. "license": [
  5277. "MIT"
  5278. ],
  5279. "authors": [
  5280. {
  5281. "name": "Fabien Potencier",
  5282. "email": "fabien@symfony.com"
  5283. },
  5284. {
  5285. "name": "Symfony Community",
  5286. "homepage": "https://symfony.com/contributors"
  5287. }
  5288. ],
  5289. "description": "Finds files and directories via an intuitive fluent interface",
  5290. "homepage": "https://symfony.com",
  5291. "support": {
  5292. "source": "https://github.com/symfony/finder/tree/v5.2.9"
  5293. },
  5294. "funding": [
  5295. {
  5296. "url": "https://symfony.com/sponsor",
  5297. "type": "custom"
  5298. },
  5299. {
  5300. "url": "https://github.com/fabpot",
  5301. "type": "github"
  5302. },
  5303. {
  5304. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5305. "type": "tidelift"
  5306. }
  5307. ],
  5308. "time": "2021-05-16T13:07:46+00:00"
  5309. },
  5310. {
  5311. "name": "symfony/http-client-contracts",
  5312. "version": "v2.4.0",
  5313. "source": {
  5314. "type": "git",
  5315. "url": "https://github.com/symfony/http-client-contracts.git",
  5316. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5317. },
  5318. "dist": {
  5319. "type": "zip",
  5320. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5321. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5322. "shasum": "",
  5323. "mirrors": [
  5324. {
  5325. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5326. "preferred": true
  5327. }
  5328. ]
  5329. },
  5330. "require": {
  5331. "php": ">=7.2.5"
  5332. },
  5333. "suggest": {
  5334. "symfony/http-client-implementation": ""
  5335. },
  5336. "type": "library",
  5337. "extra": {
  5338. "branch-alias": {
  5339. "dev-main": "2.4-dev"
  5340. },
  5341. "thanks": {
  5342. "name": "symfony/contracts",
  5343. "url": "https://github.com/symfony/contracts"
  5344. }
  5345. },
  5346. "autoload": {
  5347. "psr-4": {
  5348. "Symfony\\Contracts\\HttpClient\\": ""
  5349. }
  5350. },
  5351. "notification-url": "https://packagist.org/downloads/",
  5352. "license": [
  5353. "MIT"
  5354. ],
  5355. "authors": [
  5356. {
  5357. "name": "Nicolas Grekas",
  5358. "email": "p@tchwork.com"
  5359. },
  5360. {
  5361. "name": "Symfony Community",
  5362. "homepage": "https://symfony.com/contributors"
  5363. }
  5364. ],
  5365. "description": "Generic abstractions related to HTTP clients",
  5366. "homepage": "https://symfony.com",
  5367. "keywords": [
  5368. "abstractions",
  5369. "contracts",
  5370. "decoupling",
  5371. "interfaces",
  5372. "interoperability",
  5373. "standards"
  5374. ],
  5375. "support": {
  5376. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  5377. },
  5378. "funding": [
  5379. {
  5380. "url": "https://symfony.com/sponsor",
  5381. "type": "custom"
  5382. },
  5383. {
  5384. "url": "https://github.com/fabpot",
  5385. "type": "github"
  5386. },
  5387. {
  5388. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5389. "type": "tidelift"
  5390. }
  5391. ],
  5392. "time": "2021-04-11T23:07:08+00:00"
  5393. },
  5394. {
  5395. "name": "symfony/http-foundation",
  5396. "version": "v5.2.8",
  5397. "source": {
  5398. "type": "git",
  5399. "url": "https://github.com/symfony/http-foundation.git",
  5400. "reference": "e8fbbab7c4a71592985019477532629cb2e142dc"
  5401. },
  5402. "dist": {
  5403. "type": "zip",
  5404. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e8fbbab7c4a71592985019477532629cb2e142dc",
  5405. "reference": "e8fbbab7c4a71592985019477532629cb2e142dc",
  5406. "shasum": "",
  5407. "mirrors": [
  5408. {
  5409. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5410. "preferred": true
  5411. }
  5412. ]
  5413. },
  5414. "require": {
  5415. "php": ">=7.2.5",
  5416. "symfony/deprecation-contracts": "^2.1",
  5417. "symfony/polyfill-mbstring": "~1.1",
  5418. "symfony/polyfill-php80": "^1.15"
  5419. },
  5420. "require-dev": {
  5421. "predis/predis": "~1.0",
  5422. "symfony/cache": "^4.4|^5.0",
  5423. "symfony/expression-language": "^4.4|^5.0",
  5424. "symfony/mime": "^4.4|^5.0"
  5425. },
  5426. "suggest": {
  5427. "symfony/mime": "To use the file extension guesser"
  5428. },
  5429. "type": "library",
  5430. "autoload": {
  5431. "psr-4": {
  5432. "Symfony\\Component\\HttpFoundation\\": ""
  5433. },
  5434. "exclude-from-classmap": [
  5435. "/Tests/"
  5436. ]
  5437. },
  5438. "notification-url": "https://packagist.org/downloads/",
  5439. "license": [
  5440. "MIT"
  5441. ],
  5442. "authors": [
  5443. {
  5444. "name": "Fabien Potencier",
  5445. "email": "fabien@symfony.com"
  5446. },
  5447. {
  5448. "name": "Symfony Community",
  5449. "homepage": "https://symfony.com/contributors"
  5450. }
  5451. ],
  5452. "description": "Defines an object-oriented layer for the HTTP specification",
  5453. "homepage": "https://symfony.com",
  5454. "support": {
  5455. "source": "https://github.com/symfony/http-foundation/tree/v5.2.8"
  5456. },
  5457. "funding": [
  5458. {
  5459. "url": "https://symfony.com/sponsor",
  5460. "type": "custom"
  5461. },
  5462. {
  5463. "url": "https://github.com/fabpot",
  5464. "type": "github"
  5465. },
  5466. {
  5467. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5468. "type": "tidelift"
  5469. }
  5470. ],
  5471. "time": "2021-05-07T13:41:16+00:00"
  5472. },
  5473. {
  5474. "name": "symfony/http-kernel",
  5475. "version": "v5.2.9",
  5476. "source": {
  5477. "type": "git",
  5478. "url": "https://github.com/symfony/http-kernel.git",
  5479. "reference": "eb540ef6870dbf33c92e372cfb869ebf9649e6cb"
  5480. },
  5481. "dist": {
  5482. "type": "zip",
  5483. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/eb540ef6870dbf33c92e372cfb869ebf9649e6cb",
  5484. "reference": "eb540ef6870dbf33c92e372cfb869ebf9649e6cb",
  5485. "shasum": "",
  5486. "mirrors": [
  5487. {
  5488. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5489. "preferred": true
  5490. }
  5491. ]
  5492. },
  5493. "require": {
  5494. "php": ">=7.2.5",
  5495. "psr/log": "~1.0",
  5496. "symfony/deprecation-contracts": "^2.1",
  5497. "symfony/error-handler": "^4.4|^5.0",
  5498. "symfony/event-dispatcher": "^5.0",
  5499. "symfony/http-client-contracts": "^1.1|^2",
  5500. "symfony/http-foundation": "^4.4|^5.0",
  5501. "symfony/polyfill-ctype": "^1.8",
  5502. "symfony/polyfill-php73": "^1.9",
  5503. "symfony/polyfill-php80": "^1.15"
  5504. },
  5505. "conflict": {
  5506. "symfony/browser-kit": "<4.4",
  5507. "symfony/cache": "<5.0",
  5508. "symfony/config": "<5.0",
  5509. "symfony/console": "<4.4",
  5510. "symfony/dependency-injection": "<5.1.8",
  5511. "symfony/doctrine-bridge": "<5.0",
  5512. "symfony/form": "<5.0",
  5513. "symfony/http-client": "<5.0",
  5514. "symfony/mailer": "<5.0",
  5515. "symfony/messenger": "<5.0",
  5516. "symfony/translation": "<5.0",
  5517. "symfony/twig-bridge": "<5.0",
  5518. "symfony/validator": "<5.0",
  5519. "twig/twig": "<2.13"
  5520. },
  5521. "provide": {
  5522. "psr/log-implementation": "1.0"
  5523. },
  5524. "require-dev": {
  5525. "psr/cache": "^1.0|^2.0|^3.0",
  5526. "symfony/browser-kit": "^4.4|^5.0",
  5527. "symfony/config": "^5.0",
  5528. "symfony/console": "^4.4|^5.0",
  5529. "symfony/css-selector": "^4.4|^5.0",
  5530. "symfony/dependency-injection": "^5.1.8",
  5531. "symfony/dom-crawler": "^4.4|^5.0",
  5532. "symfony/expression-language": "^4.4|^5.0",
  5533. "symfony/finder": "^4.4|^5.0",
  5534. "symfony/process": "^4.4|^5.0",
  5535. "symfony/routing": "^4.4|^5.0",
  5536. "symfony/stopwatch": "^4.4|^5.0",
  5537. "symfony/translation": "^4.4|^5.0",
  5538. "symfony/translation-contracts": "^1.1|^2",
  5539. "twig/twig": "^2.13|^3.0.4"
  5540. },
  5541. "suggest": {
  5542. "symfony/browser-kit": "",
  5543. "symfony/config": "",
  5544. "symfony/console": "",
  5545. "symfony/dependency-injection": ""
  5546. },
  5547. "type": "library",
  5548. "autoload": {
  5549. "psr-4": {
  5550. "Symfony\\Component\\HttpKernel\\": ""
  5551. },
  5552. "exclude-from-classmap": [
  5553. "/Tests/"
  5554. ]
  5555. },
  5556. "notification-url": "https://packagist.org/downloads/",
  5557. "license": [
  5558. "MIT"
  5559. ],
  5560. "authors": [
  5561. {
  5562. "name": "Fabien Potencier",
  5563. "email": "fabien@symfony.com"
  5564. },
  5565. {
  5566. "name": "Symfony Community",
  5567. "homepage": "https://symfony.com/contributors"
  5568. }
  5569. ],
  5570. "description": "Provides a structured process for converting a Request into a Response",
  5571. "homepage": "https://symfony.com",
  5572. "support": {
  5573. "source": "https://github.com/symfony/http-kernel/tree/v5.2.9"
  5574. },
  5575. "funding": [
  5576. {
  5577. "url": "https://symfony.com/sponsor",
  5578. "type": "custom"
  5579. },
  5580. {
  5581. "url": "https://github.com/fabpot",
  5582. "type": "github"
  5583. },
  5584. {
  5585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5586. "type": "tidelift"
  5587. }
  5588. ],
  5589. "time": "2021-05-19T12:23:45+00:00"
  5590. },
  5591. {
  5592. "name": "symfony/mime",
  5593. "version": "v5.2.9",
  5594. "source": {
  5595. "type": "git",
  5596. "url": "https://github.com/symfony/mime.git",
  5597. "reference": "64258e870f8cc75c3dae986201ea2df58c210b52"
  5598. },
  5599. "dist": {
  5600. "type": "zip",
  5601. "url": "https://api.github.com/repos/symfony/mime/zipball/64258e870f8cc75c3dae986201ea2df58c210b52",
  5602. "reference": "64258e870f8cc75c3dae986201ea2df58c210b52",
  5603. "shasum": "",
  5604. "mirrors": [
  5605. {
  5606. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5607. "preferred": true
  5608. }
  5609. ]
  5610. },
  5611. "require": {
  5612. "php": ">=7.2.5",
  5613. "symfony/deprecation-contracts": "^2.1",
  5614. "symfony/polyfill-intl-idn": "^1.10",
  5615. "symfony/polyfill-mbstring": "^1.0",
  5616. "symfony/polyfill-php80": "^1.15"
  5617. },
  5618. "conflict": {
  5619. "egulias/email-validator": "~3.0.0",
  5620. "phpdocumentor/reflection-docblock": "<3.2.2",
  5621. "phpdocumentor/type-resolver": "<1.4.0",
  5622. "symfony/mailer": "<4.4"
  5623. },
  5624. "require-dev": {
  5625. "egulias/email-validator": "^2.1.10|^3.1",
  5626. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5627. "symfony/dependency-injection": "^4.4|^5.0",
  5628. "symfony/property-access": "^4.4|^5.1",
  5629. "symfony/property-info": "^4.4|^5.1",
  5630. "symfony/serializer": "^5.2"
  5631. },
  5632. "type": "library",
  5633. "autoload": {
  5634. "psr-4": {
  5635. "Symfony\\Component\\Mime\\": ""
  5636. },
  5637. "exclude-from-classmap": [
  5638. "/Tests/"
  5639. ]
  5640. },
  5641. "notification-url": "https://packagist.org/downloads/",
  5642. "license": [
  5643. "MIT"
  5644. ],
  5645. "authors": [
  5646. {
  5647. "name": "Fabien Potencier",
  5648. "email": "fabien@symfony.com"
  5649. },
  5650. {
  5651. "name": "Symfony Community",
  5652. "homepage": "https://symfony.com/contributors"
  5653. }
  5654. ],
  5655. "description": "Allows manipulating MIME messages",
  5656. "homepage": "https://symfony.com",
  5657. "keywords": [
  5658. "mime",
  5659. "mime-type"
  5660. ],
  5661. "support": {
  5662. "source": "https://github.com/symfony/mime/tree/v5.2.9"
  5663. },
  5664. "funding": [
  5665. {
  5666. "url": "https://symfony.com/sponsor",
  5667. "type": "custom"
  5668. },
  5669. {
  5670. "url": "https://github.com/fabpot",
  5671. "type": "github"
  5672. },
  5673. {
  5674. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5675. "type": "tidelift"
  5676. }
  5677. ],
  5678. "time": "2021-05-16T13:07:46+00:00"
  5679. },
  5680. {
  5681. "name": "symfony/options-resolver",
  5682. "version": "v5.2.4",
  5683. "source": {
  5684. "type": "git",
  5685. "url": "https://github.com/symfony/options-resolver.git",
  5686. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce"
  5687. },
  5688. "dist": {
  5689. "type": "zip",
  5690. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  5691. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  5692. "shasum": "",
  5693. "mirrors": [
  5694. {
  5695. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5696. "preferred": true
  5697. }
  5698. ]
  5699. },
  5700. "require": {
  5701. "php": ">=7.2.5",
  5702. "symfony/deprecation-contracts": "^2.1",
  5703. "symfony/polyfill-php73": "~1.0",
  5704. "symfony/polyfill-php80": "^1.15"
  5705. },
  5706. "type": "library",
  5707. "autoload": {
  5708. "psr-4": {
  5709. "Symfony\\Component\\OptionsResolver\\": ""
  5710. },
  5711. "exclude-from-classmap": [
  5712. "/Tests/"
  5713. ]
  5714. },
  5715. "notification-url": "https://packagist.org/downloads/",
  5716. "license": [
  5717. "MIT"
  5718. ],
  5719. "authors": [
  5720. {
  5721. "name": "Fabien Potencier",
  5722. "email": "fabien@symfony.com"
  5723. },
  5724. {
  5725. "name": "Symfony Community",
  5726. "homepage": "https://symfony.com/contributors"
  5727. }
  5728. ],
  5729. "description": "Provides an improved replacement for the array_replace PHP function",
  5730. "homepage": "https://symfony.com",
  5731. "keywords": [
  5732. "config",
  5733. "configuration",
  5734. "options"
  5735. ],
  5736. "support": {
  5737. "source": "https://github.com/symfony/options-resolver/tree/v5.2.4"
  5738. },
  5739. "funding": [
  5740. {
  5741. "url": "https://symfony.com/sponsor",
  5742. "type": "custom"
  5743. },
  5744. {
  5745. "url": "https://github.com/fabpot",
  5746. "type": "github"
  5747. },
  5748. {
  5749. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5750. "type": "tidelift"
  5751. }
  5752. ],
  5753. "time": "2021-01-27T12:56:27+00:00"
  5754. },
  5755. {
  5756. "name": "symfony/polyfill-ctype",
  5757. "version": "v1.23.0",
  5758. "source": {
  5759. "type": "git",
  5760. "url": "https://github.com/symfony/polyfill-ctype.git",
  5761. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  5762. },
  5763. "dist": {
  5764. "type": "zip",
  5765. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5766. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5767. "shasum": "",
  5768. "mirrors": [
  5769. {
  5770. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5771. "preferred": true
  5772. }
  5773. ]
  5774. },
  5775. "require": {
  5776. "php": ">=7.1"
  5777. },
  5778. "suggest": {
  5779. "ext-ctype": "For best performance"
  5780. },
  5781. "type": "library",
  5782. "extra": {
  5783. "branch-alias": {
  5784. "dev-main": "1.23-dev"
  5785. },
  5786. "thanks": {
  5787. "name": "symfony/polyfill",
  5788. "url": "https://github.com/symfony/polyfill"
  5789. }
  5790. },
  5791. "autoload": {
  5792. "psr-4": {
  5793. "Symfony\\Polyfill\\Ctype\\": ""
  5794. },
  5795. "files": [
  5796. "bootstrap.php"
  5797. ]
  5798. },
  5799. "notification-url": "https://packagist.org/downloads/",
  5800. "license": [
  5801. "MIT"
  5802. ],
  5803. "authors": [
  5804. {
  5805. "name": "Gert de Pagter",
  5806. "email": "BackEndTea@gmail.com"
  5807. },
  5808. {
  5809. "name": "Symfony Community",
  5810. "homepage": "https://symfony.com/contributors"
  5811. }
  5812. ],
  5813. "description": "Symfony polyfill for ctype functions",
  5814. "homepage": "https://symfony.com",
  5815. "keywords": [
  5816. "compatibility",
  5817. "ctype",
  5818. "polyfill",
  5819. "portable"
  5820. ],
  5821. "support": {
  5822. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  5823. },
  5824. "funding": [
  5825. {
  5826. "url": "https://symfony.com/sponsor",
  5827. "type": "custom"
  5828. },
  5829. {
  5830. "url": "https://github.com/fabpot",
  5831. "type": "github"
  5832. },
  5833. {
  5834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5835. "type": "tidelift"
  5836. }
  5837. ],
  5838. "time": "2021-02-19T12:13:01+00:00"
  5839. },
  5840. {
  5841. "name": "symfony/polyfill-iconv",
  5842. "version": "v1.23.0",
  5843. "source": {
  5844. "type": "git",
  5845. "url": "https://github.com/symfony/polyfill-iconv.git",
  5846. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  5847. },
  5848. "dist": {
  5849. "type": "zip",
  5850. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5851. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5852. "shasum": "",
  5853. "mirrors": [
  5854. {
  5855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5856. "preferred": true
  5857. }
  5858. ]
  5859. },
  5860. "require": {
  5861. "php": ">=7.1"
  5862. },
  5863. "suggest": {
  5864. "ext-iconv": "For best performance"
  5865. },
  5866. "type": "library",
  5867. "extra": {
  5868. "branch-alias": {
  5869. "dev-main": "1.23-dev"
  5870. },
  5871. "thanks": {
  5872. "name": "symfony/polyfill",
  5873. "url": "https://github.com/symfony/polyfill"
  5874. }
  5875. },
  5876. "autoload": {
  5877. "psr-4": {
  5878. "Symfony\\Polyfill\\Iconv\\": ""
  5879. },
  5880. "files": [
  5881. "bootstrap.php"
  5882. ]
  5883. },
  5884. "notification-url": "https://packagist.org/downloads/",
  5885. "license": [
  5886. "MIT"
  5887. ],
  5888. "authors": [
  5889. {
  5890. "name": "Nicolas Grekas",
  5891. "email": "p@tchwork.com"
  5892. },
  5893. {
  5894. "name": "Symfony Community",
  5895. "homepage": "https://symfony.com/contributors"
  5896. }
  5897. ],
  5898. "description": "Symfony polyfill for the Iconv extension",
  5899. "homepage": "https://symfony.com",
  5900. "keywords": [
  5901. "compatibility",
  5902. "iconv",
  5903. "polyfill",
  5904. "portable",
  5905. "shim"
  5906. ],
  5907. "support": {
  5908. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  5909. },
  5910. "funding": [
  5911. {
  5912. "url": "https://symfony.com/sponsor",
  5913. "type": "custom"
  5914. },
  5915. {
  5916. "url": "https://github.com/fabpot",
  5917. "type": "github"
  5918. },
  5919. {
  5920. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5921. "type": "tidelift"
  5922. }
  5923. ],
  5924. "time": "2021-05-27T09:27:20+00:00"
  5925. },
  5926. {
  5927. "name": "symfony/polyfill-intl-grapheme",
  5928. "version": "v1.23.0",
  5929. "source": {
  5930. "type": "git",
  5931. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5932. "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab"
  5933. },
  5934. "dist": {
  5935. "type": "zip",
  5936. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/24b72c6baa32c746a4d0840147c9715e42bb68ab",
  5937. "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab",
  5938. "shasum": "",
  5939. "mirrors": [
  5940. {
  5941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5942. "preferred": true
  5943. }
  5944. ]
  5945. },
  5946. "require": {
  5947. "php": ">=7.1"
  5948. },
  5949. "suggest": {
  5950. "ext-intl": "For best performance"
  5951. },
  5952. "type": "library",
  5953. "extra": {
  5954. "branch-alias": {
  5955. "dev-main": "1.23-dev"
  5956. },
  5957. "thanks": {
  5958. "name": "symfony/polyfill",
  5959. "url": "https://github.com/symfony/polyfill"
  5960. }
  5961. },
  5962. "autoload": {
  5963. "psr-4": {
  5964. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5965. },
  5966. "files": [
  5967. "bootstrap.php"
  5968. ]
  5969. },
  5970. "notification-url": "https://packagist.org/downloads/",
  5971. "license": [
  5972. "MIT"
  5973. ],
  5974. "authors": [
  5975. {
  5976. "name": "Nicolas Grekas",
  5977. "email": "p@tchwork.com"
  5978. },
  5979. {
  5980. "name": "Symfony Community",
  5981. "homepage": "https://symfony.com/contributors"
  5982. }
  5983. ],
  5984. "description": "Symfony polyfill for intl's grapheme_* functions",
  5985. "homepage": "https://symfony.com",
  5986. "keywords": [
  5987. "compatibility",
  5988. "grapheme",
  5989. "intl",
  5990. "polyfill",
  5991. "portable",
  5992. "shim"
  5993. ],
  5994. "support": {
  5995. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.0"
  5996. },
  5997. "funding": [
  5998. {
  5999. "url": "https://symfony.com/sponsor",
  6000. "type": "custom"
  6001. },
  6002. {
  6003. "url": "https://github.com/fabpot",
  6004. "type": "github"
  6005. },
  6006. {
  6007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6008. "type": "tidelift"
  6009. }
  6010. ],
  6011. "time": "2021-05-27T09:17:38+00:00"
  6012. },
  6013. {
  6014. "name": "symfony/polyfill-intl-idn",
  6015. "version": "v1.23.0",
  6016. "source": {
  6017. "type": "git",
  6018. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6019. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  6020. },
  6021. "dist": {
  6022. "type": "zip",
  6023. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  6024. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  6025. "shasum": "",
  6026. "mirrors": [
  6027. {
  6028. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6029. "preferred": true
  6030. }
  6031. ]
  6032. },
  6033. "require": {
  6034. "php": ">=7.1",
  6035. "symfony/polyfill-intl-normalizer": "^1.10",
  6036. "symfony/polyfill-php72": "^1.10"
  6037. },
  6038. "suggest": {
  6039. "ext-intl": "For best performance"
  6040. },
  6041. "type": "library",
  6042. "extra": {
  6043. "branch-alias": {
  6044. "dev-main": "1.23-dev"
  6045. },
  6046. "thanks": {
  6047. "name": "symfony/polyfill",
  6048. "url": "https://github.com/symfony/polyfill"
  6049. }
  6050. },
  6051. "autoload": {
  6052. "psr-4": {
  6053. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6054. },
  6055. "files": [
  6056. "bootstrap.php"
  6057. ]
  6058. },
  6059. "notification-url": "https://packagist.org/downloads/",
  6060. "license": [
  6061. "MIT"
  6062. ],
  6063. "authors": [
  6064. {
  6065. "name": "Laurent Bassin",
  6066. "email": "laurent@bassin.info"
  6067. },
  6068. {
  6069. "name": "Trevor Rowbotham",
  6070. "email": "trevor.rowbotham@pm.me"
  6071. },
  6072. {
  6073. "name": "Symfony Community",
  6074. "homepage": "https://symfony.com/contributors"
  6075. }
  6076. ],
  6077. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6078. "homepage": "https://symfony.com",
  6079. "keywords": [
  6080. "compatibility",
  6081. "idn",
  6082. "intl",
  6083. "polyfill",
  6084. "portable",
  6085. "shim"
  6086. ],
  6087. "support": {
  6088. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  6089. },
  6090. "funding": [
  6091. {
  6092. "url": "https://symfony.com/sponsor",
  6093. "type": "custom"
  6094. },
  6095. {
  6096. "url": "https://github.com/fabpot",
  6097. "type": "github"
  6098. },
  6099. {
  6100. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6101. "type": "tidelift"
  6102. }
  6103. ],
  6104. "time": "2021-05-27T09:27:20+00:00"
  6105. },
  6106. {
  6107. "name": "symfony/polyfill-intl-normalizer",
  6108. "version": "v1.23.0",
  6109. "source": {
  6110. "type": "git",
  6111. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6112. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  6113. },
  6114. "dist": {
  6115. "type": "zip",
  6116. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6117. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6118. "shasum": "",
  6119. "mirrors": [
  6120. {
  6121. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6122. "preferred": true
  6123. }
  6124. ]
  6125. },
  6126. "require": {
  6127. "php": ">=7.1"
  6128. },
  6129. "suggest": {
  6130. "ext-intl": "For best performance"
  6131. },
  6132. "type": "library",
  6133. "extra": {
  6134. "branch-alias": {
  6135. "dev-main": "1.23-dev"
  6136. },
  6137. "thanks": {
  6138. "name": "symfony/polyfill",
  6139. "url": "https://github.com/symfony/polyfill"
  6140. }
  6141. },
  6142. "autoload": {
  6143. "psr-4": {
  6144. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6145. },
  6146. "files": [
  6147. "bootstrap.php"
  6148. ],
  6149. "classmap": [
  6150. "Resources/stubs"
  6151. ]
  6152. },
  6153. "notification-url": "https://packagist.org/downloads/",
  6154. "license": [
  6155. "MIT"
  6156. ],
  6157. "authors": [
  6158. {
  6159. "name": "Nicolas Grekas",
  6160. "email": "p@tchwork.com"
  6161. },
  6162. {
  6163. "name": "Symfony Community",
  6164. "homepage": "https://symfony.com/contributors"
  6165. }
  6166. ],
  6167. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6168. "homepage": "https://symfony.com",
  6169. "keywords": [
  6170. "compatibility",
  6171. "intl",
  6172. "normalizer",
  6173. "polyfill",
  6174. "portable",
  6175. "shim"
  6176. ],
  6177. "support": {
  6178. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  6179. },
  6180. "funding": [
  6181. {
  6182. "url": "https://symfony.com/sponsor",
  6183. "type": "custom"
  6184. },
  6185. {
  6186. "url": "https://github.com/fabpot",
  6187. "type": "github"
  6188. },
  6189. {
  6190. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6191. "type": "tidelift"
  6192. }
  6193. ],
  6194. "time": "2021-02-19T12:13:01+00:00"
  6195. },
  6196. {
  6197. "name": "symfony/polyfill-mbstring",
  6198. "version": "v1.23.0",
  6199. "source": {
  6200. "type": "git",
  6201. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6202. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1"
  6203. },
  6204. "dist": {
  6205. "type": "zip",
  6206. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  6207. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  6208. "shasum": "",
  6209. "mirrors": [
  6210. {
  6211. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6212. "preferred": true
  6213. }
  6214. ]
  6215. },
  6216. "require": {
  6217. "php": ">=7.1"
  6218. },
  6219. "suggest": {
  6220. "ext-mbstring": "For best performance"
  6221. },
  6222. "type": "library",
  6223. "extra": {
  6224. "branch-alias": {
  6225. "dev-main": "1.23-dev"
  6226. },
  6227. "thanks": {
  6228. "name": "symfony/polyfill",
  6229. "url": "https://github.com/symfony/polyfill"
  6230. }
  6231. },
  6232. "autoload": {
  6233. "psr-4": {
  6234. "Symfony\\Polyfill\\Mbstring\\": ""
  6235. },
  6236. "files": [
  6237. "bootstrap.php"
  6238. ]
  6239. },
  6240. "notification-url": "https://packagist.org/downloads/",
  6241. "license": [
  6242. "MIT"
  6243. ],
  6244. "authors": [
  6245. {
  6246. "name": "Nicolas Grekas",
  6247. "email": "p@tchwork.com"
  6248. },
  6249. {
  6250. "name": "Symfony Community",
  6251. "homepage": "https://symfony.com/contributors"
  6252. }
  6253. ],
  6254. "description": "Symfony polyfill for the Mbstring extension",
  6255. "homepage": "https://symfony.com",
  6256. "keywords": [
  6257. "compatibility",
  6258. "mbstring",
  6259. "polyfill",
  6260. "portable",
  6261. "shim"
  6262. ],
  6263. "support": {
  6264. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0"
  6265. },
  6266. "funding": [
  6267. {
  6268. "url": "https://symfony.com/sponsor",
  6269. "type": "custom"
  6270. },
  6271. {
  6272. "url": "https://github.com/fabpot",
  6273. "type": "github"
  6274. },
  6275. {
  6276. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6277. "type": "tidelift"
  6278. }
  6279. ],
  6280. "time": "2021-05-27T09:27:20+00:00"
  6281. },
  6282. {
  6283. "name": "symfony/polyfill-php72",
  6284. "version": "v1.23.0",
  6285. "source": {
  6286. "type": "git",
  6287. "url": "https://github.com/symfony/polyfill-php72.git",
  6288. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  6289. },
  6290. "dist": {
  6291. "type": "zip",
  6292. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  6293. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  6294. "shasum": "",
  6295. "mirrors": [
  6296. {
  6297. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6298. "preferred": true
  6299. }
  6300. ]
  6301. },
  6302. "require": {
  6303. "php": ">=7.1"
  6304. },
  6305. "type": "library",
  6306. "extra": {
  6307. "branch-alias": {
  6308. "dev-main": "1.23-dev"
  6309. },
  6310. "thanks": {
  6311. "name": "symfony/polyfill",
  6312. "url": "https://github.com/symfony/polyfill"
  6313. }
  6314. },
  6315. "autoload": {
  6316. "psr-4": {
  6317. "Symfony\\Polyfill\\Php72\\": ""
  6318. },
  6319. "files": [
  6320. "bootstrap.php"
  6321. ]
  6322. },
  6323. "notification-url": "https://packagist.org/downloads/",
  6324. "license": [
  6325. "MIT"
  6326. ],
  6327. "authors": [
  6328. {
  6329. "name": "Nicolas Grekas",
  6330. "email": "p@tchwork.com"
  6331. },
  6332. {
  6333. "name": "Symfony Community",
  6334. "homepage": "https://symfony.com/contributors"
  6335. }
  6336. ],
  6337. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6338. "homepage": "https://symfony.com",
  6339. "keywords": [
  6340. "compatibility",
  6341. "polyfill",
  6342. "portable",
  6343. "shim"
  6344. ],
  6345. "support": {
  6346. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  6347. },
  6348. "funding": [
  6349. {
  6350. "url": "https://symfony.com/sponsor",
  6351. "type": "custom"
  6352. },
  6353. {
  6354. "url": "https://github.com/fabpot",
  6355. "type": "github"
  6356. },
  6357. {
  6358. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6359. "type": "tidelift"
  6360. }
  6361. ],
  6362. "time": "2021-05-27T09:17:38+00:00"
  6363. },
  6364. {
  6365. "name": "symfony/polyfill-php73",
  6366. "version": "v1.23.0",
  6367. "source": {
  6368. "type": "git",
  6369. "url": "https://github.com/symfony/polyfill-php73.git",
  6370. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  6371. },
  6372. "dist": {
  6373. "type": "zip",
  6374. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6375. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6376. "shasum": "",
  6377. "mirrors": [
  6378. {
  6379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6380. "preferred": true
  6381. }
  6382. ]
  6383. },
  6384. "require": {
  6385. "php": ">=7.1"
  6386. },
  6387. "type": "library",
  6388. "extra": {
  6389. "branch-alias": {
  6390. "dev-main": "1.23-dev"
  6391. },
  6392. "thanks": {
  6393. "name": "symfony/polyfill",
  6394. "url": "https://github.com/symfony/polyfill"
  6395. }
  6396. },
  6397. "autoload": {
  6398. "psr-4": {
  6399. "Symfony\\Polyfill\\Php73\\": ""
  6400. },
  6401. "files": [
  6402. "bootstrap.php"
  6403. ],
  6404. "classmap": [
  6405. "Resources/stubs"
  6406. ]
  6407. },
  6408. "notification-url": "https://packagist.org/downloads/",
  6409. "license": [
  6410. "MIT"
  6411. ],
  6412. "authors": [
  6413. {
  6414. "name": "Nicolas Grekas",
  6415. "email": "p@tchwork.com"
  6416. },
  6417. {
  6418. "name": "Symfony Community",
  6419. "homepage": "https://symfony.com/contributors"
  6420. }
  6421. ],
  6422. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6423. "homepage": "https://symfony.com",
  6424. "keywords": [
  6425. "compatibility",
  6426. "polyfill",
  6427. "portable",
  6428. "shim"
  6429. ],
  6430. "support": {
  6431. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  6432. },
  6433. "funding": [
  6434. {
  6435. "url": "https://symfony.com/sponsor",
  6436. "type": "custom"
  6437. },
  6438. {
  6439. "url": "https://github.com/fabpot",
  6440. "type": "github"
  6441. },
  6442. {
  6443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6444. "type": "tidelift"
  6445. }
  6446. ],
  6447. "time": "2021-02-19T12:13:01+00:00"
  6448. },
  6449. {
  6450. "name": "symfony/polyfill-php80",
  6451. "version": "v1.23.0",
  6452. "source": {
  6453. "type": "git",
  6454. "url": "https://github.com/symfony/polyfill-php80.git",
  6455. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0"
  6456. },
  6457. "dist": {
  6458. "type": "zip",
  6459. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  6460. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  6461. "shasum": "",
  6462. "mirrors": [
  6463. {
  6464. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6465. "preferred": true
  6466. }
  6467. ]
  6468. },
  6469. "require": {
  6470. "php": ">=7.1"
  6471. },
  6472. "type": "library",
  6473. "extra": {
  6474. "branch-alias": {
  6475. "dev-main": "1.23-dev"
  6476. },
  6477. "thanks": {
  6478. "name": "symfony/polyfill",
  6479. "url": "https://github.com/symfony/polyfill"
  6480. }
  6481. },
  6482. "autoload": {
  6483. "psr-4": {
  6484. "Symfony\\Polyfill\\Php80\\": ""
  6485. },
  6486. "files": [
  6487. "bootstrap.php"
  6488. ],
  6489. "classmap": [
  6490. "Resources/stubs"
  6491. ]
  6492. },
  6493. "notification-url": "https://packagist.org/downloads/",
  6494. "license": [
  6495. "MIT"
  6496. ],
  6497. "authors": [
  6498. {
  6499. "name": "Ion Bazan",
  6500. "email": "ion.bazan@gmail.com"
  6501. },
  6502. {
  6503. "name": "Nicolas Grekas",
  6504. "email": "p@tchwork.com"
  6505. },
  6506. {
  6507. "name": "Symfony Community",
  6508. "homepage": "https://symfony.com/contributors"
  6509. }
  6510. ],
  6511. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6512. "homepage": "https://symfony.com",
  6513. "keywords": [
  6514. "compatibility",
  6515. "polyfill",
  6516. "portable",
  6517. "shim"
  6518. ],
  6519. "support": {
  6520. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0"
  6521. },
  6522. "funding": [
  6523. {
  6524. "url": "https://symfony.com/sponsor",
  6525. "type": "custom"
  6526. },
  6527. {
  6528. "url": "https://github.com/fabpot",
  6529. "type": "github"
  6530. },
  6531. {
  6532. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6533. "type": "tidelift"
  6534. }
  6535. ],
  6536. "time": "2021-02-19T12:13:01+00:00"
  6537. },
  6538. {
  6539. "name": "symfony/process",
  6540. "version": "v5.2.7",
  6541. "source": {
  6542. "type": "git",
  6543. "url": "https://github.com/symfony/process.git",
  6544. "reference": "98cb8eeb72e55d4196dd1e36f1f16e7b3a9a088e"
  6545. },
  6546. "dist": {
  6547. "type": "zip",
  6548. "url": "https://api.github.com/repos/symfony/process/zipball/98cb8eeb72e55d4196dd1e36f1f16e7b3a9a088e",
  6549. "reference": "98cb8eeb72e55d4196dd1e36f1f16e7b3a9a088e",
  6550. "shasum": "",
  6551. "mirrors": [
  6552. {
  6553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6554. "preferred": true
  6555. }
  6556. ]
  6557. },
  6558. "require": {
  6559. "php": ">=7.2.5",
  6560. "symfony/polyfill-php80": "^1.15"
  6561. },
  6562. "type": "library",
  6563. "autoload": {
  6564. "psr-4": {
  6565. "Symfony\\Component\\Process\\": ""
  6566. },
  6567. "exclude-from-classmap": [
  6568. "/Tests/"
  6569. ]
  6570. },
  6571. "notification-url": "https://packagist.org/downloads/",
  6572. "license": [
  6573. "MIT"
  6574. ],
  6575. "authors": [
  6576. {
  6577. "name": "Fabien Potencier",
  6578. "email": "fabien@symfony.com"
  6579. },
  6580. {
  6581. "name": "Symfony Community",
  6582. "homepage": "https://symfony.com/contributors"
  6583. }
  6584. ],
  6585. "description": "Executes commands in sub-processes",
  6586. "homepage": "https://symfony.com",
  6587. "support": {
  6588. "source": "https://github.com/symfony/process/tree/v5.3.0-BETA1"
  6589. },
  6590. "funding": [
  6591. {
  6592. "url": "https://symfony.com/sponsor",
  6593. "type": "custom"
  6594. },
  6595. {
  6596. "url": "https://github.com/fabpot",
  6597. "type": "github"
  6598. },
  6599. {
  6600. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6601. "type": "tidelift"
  6602. }
  6603. ],
  6604. "time": "2021-04-08T10:27:02+00:00"
  6605. },
  6606. {
  6607. "name": "symfony/property-access",
  6608. "version": "v5.2.4",
  6609. "source": {
  6610. "type": "git",
  6611. "url": "https://github.com/symfony/property-access.git",
  6612. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3"
  6613. },
  6614. "dist": {
  6615. "type": "zip",
  6616. "url": "https://api.github.com/repos/symfony/property-access/zipball/3af8ed262bd3217512a13b023981fe68f36ad5f3",
  6617. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3",
  6618. "shasum": "",
  6619. "mirrors": [
  6620. {
  6621. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6622. "preferred": true
  6623. }
  6624. ]
  6625. },
  6626. "require": {
  6627. "php": ">=7.2.5",
  6628. "symfony/deprecation-contracts": "^2.1",
  6629. "symfony/polyfill-php80": "^1.15",
  6630. "symfony/property-info": "^5.2"
  6631. },
  6632. "require-dev": {
  6633. "symfony/cache": "^4.4|^5.0"
  6634. },
  6635. "suggest": {
  6636. "psr/cache-implementation": "To cache access methods."
  6637. },
  6638. "type": "library",
  6639. "autoload": {
  6640. "psr-4": {
  6641. "Symfony\\Component\\PropertyAccess\\": ""
  6642. },
  6643. "exclude-from-classmap": [
  6644. "/Tests/"
  6645. ]
  6646. },
  6647. "notification-url": "https://packagist.org/downloads/",
  6648. "license": [
  6649. "MIT"
  6650. ],
  6651. "authors": [
  6652. {
  6653. "name": "Fabien Potencier",
  6654. "email": "fabien@symfony.com"
  6655. },
  6656. {
  6657. "name": "Symfony Community",
  6658. "homepage": "https://symfony.com/contributors"
  6659. }
  6660. ],
  6661. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6662. "homepage": "https://symfony.com",
  6663. "keywords": [
  6664. "access",
  6665. "array",
  6666. "extraction",
  6667. "index",
  6668. "injection",
  6669. "object",
  6670. "property",
  6671. "property path",
  6672. "reflection"
  6673. ],
  6674. "support": {
  6675. "source": "https://github.com/symfony/property-access/tree/v5.2.4"
  6676. },
  6677. "funding": [
  6678. {
  6679. "url": "https://symfony.com/sponsor",
  6680. "type": "custom"
  6681. },
  6682. {
  6683. "url": "https://github.com/fabpot",
  6684. "type": "github"
  6685. },
  6686. {
  6687. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6688. "type": "tidelift"
  6689. }
  6690. ],
  6691. "time": "2021-01-27T10:15:41+00:00"
  6692. },
  6693. {
  6694. "name": "symfony/property-info",
  6695. "version": "v5.2.8",
  6696. "source": {
  6697. "type": "git",
  6698. "url": "https://github.com/symfony/property-info.git",
  6699. "reference": "cc8121baf91039648d5f8feb894dc4a9d4935cc0"
  6700. },
  6701. "dist": {
  6702. "type": "zip",
  6703. "url": "https://api.github.com/repos/symfony/property-info/zipball/cc8121baf91039648d5f8feb894dc4a9d4935cc0",
  6704. "reference": "cc8121baf91039648d5f8feb894dc4a9d4935cc0",
  6705. "shasum": "",
  6706. "mirrors": [
  6707. {
  6708. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6709. "preferred": true
  6710. }
  6711. ]
  6712. },
  6713. "require": {
  6714. "php": ">=7.2.5",
  6715. "symfony/deprecation-contracts": "^2.1",
  6716. "symfony/polyfill-php80": "^1.15",
  6717. "symfony/string": "^5.1"
  6718. },
  6719. "conflict": {
  6720. "phpdocumentor/reflection-docblock": "<3.2.2",
  6721. "phpdocumentor/type-resolver": "<1.4.0",
  6722. "symfony/dependency-injection": "<4.4"
  6723. },
  6724. "require-dev": {
  6725. "doctrine/annotations": "^1.10.4",
  6726. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6727. "symfony/cache": "^4.4|^5.0",
  6728. "symfony/dependency-injection": "^4.4|^5.0",
  6729. "symfony/serializer": "^4.4|^5.0"
  6730. },
  6731. "suggest": {
  6732. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6733. "psr/cache-implementation": "To cache results",
  6734. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6735. "symfony/serializer": "To use Serializer metadata"
  6736. },
  6737. "type": "library",
  6738. "autoload": {
  6739. "psr-4": {
  6740. "Symfony\\Component\\PropertyInfo\\": ""
  6741. },
  6742. "exclude-from-classmap": [
  6743. "/Tests/"
  6744. ]
  6745. },
  6746. "notification-url": "https://packagist.org/downloads/",
  6747. "license": [
  6748. "MIT"
  6749. ],
  6750. "authors": [
  6751. {
  6752. "name": "Kévin Dunglas",
  6753. "email": "dunglas@gmail.com"
  6754. },
  6755. {
  6756. "name": "Symfony Community",
  6757. "homepage": "https://symfony.com/contributors"
  6758. }
  6759. ],
  6760. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6761. "homepage": "https://symfony.com",
  6762. "keywords": [
  6763. "doctrine",
  6764. "phpdoc",
  6765. "property",
  6766. "symfony",
  6767. "type",
  6768. "validator"
  6769. ],
  6770. "support": {
  6771. "source": "https://github.com/symfony/property-info/tree/v5.2.8"
  6772. },
  6773. "funding": [
  6774. {
  6775. "url": "https://symfony.com/sponsor",
  6776. "type": "custom"
  6777. },
  6778. {
  6779. "url": "https://github.com/fabpot",
  6780. "type": "github"
  6781. },
  6782. {
  6783. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6784. "type": "tidelift"
  6785. }
  6786. ],
  6787. "time": "2021-05-07T14:04:56+00:00"
  6788. },
  6789. {
  6790. "name": "symfony/routing",
  6791. "version": "v5.2.9",
  6792. "source": {
  6793. "type": "git",
  6794. "url": "https://github.com/symfony/routing.git",
  6795. "reference": "4a7b2bf5e1221be1902b6853743a9bb317f6925e"
  6796. },
  6797. "dist": {
  6798. "type": "zip",
  6799. "url": "https://api.github.com/repos/symfony/routing/zipball/4a7b2bf5e1221be1902b6853743a9bb317f6925e",
  6800. "reference": "4a7b2bf5e1221be1902b6853743a9bb317f6925e",
  6801. "shasum": "",
  6802. "mirrors": [
  6803. {
  6804. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6805. "preferred": true
  6806. }
  6807. ]
  6808. },
  6809. "require": {
  6810. "php": ">=7.2.5",
  6811. "symfony/deprecation-contracts": "^2.1",
  6812. "symfony/polyfill-php80": "^1.15"
  6813. },
  6814. "conflict": {
  6815. "symfony/config": "<5.0",
  6816. "symfony/dependency-injection": "<4.4",
  6817. "symfony/yaml": "<4.4"
  6818. },
  6819. "require-dev": {
  6820. "doctrine/annotations": "^1.10.4",
  6821. "psr/log": "~1.0",
  6822. "symfony/config": "^5.0",
  6823. "symfony/dependency-injection": "^4.4|^5.0",
  6824. "symfony/expression-language": "^4.4|^5.0",
  6825. "symfony/http-foundation": "^4.4|^5.0",
  6826. "symfony/yaml": "^4.4|^5.0"
  6827. },
  6828. "suggest": {
  6829. "symfony/config": "For using the all-in-one router or any loader",
  6830. "symfony/expression-language": "For using expression matching",
  6831. "symfony/http-foundation": "For using a Symfony Request object",
  6832. "symfony/yaml": "For using the YAML loader"
  6833. },
  6834. "type": "library",
  6835. "autoload": {
  6836. "psr-4": {
  6837. "Symfony\\Component\\Routing\\": ""
  6838. },
  6839. "exclude-from-classmap": [
  6840. "/Tests/"
  6841. ]
  6842. },
  6843. "notification-url": "https://packagist.org/downloads/",
  6844. "license": [
  6845. "MIT"
  6846. ],
  6847. "authors": [
  6848. {
  6849. "name": "Fabien Potencier",
  6850. "email": "fabien@symfony.com"
  6851. },
  6852. {
  6853. "name": "Symfony Community",
  6854. "homepage": "https://symfony.com/contributors"
  6855. }
  6856. ],
  6857. "description": "Maps an HTTP request to a set of configuration variables",
  6858. "homepage": "https://symfony.com",
  6859. "keywords": [
  6860. "router",
  6861. "routing",
  6862. "uri",
  6863. "url"
  6864. ],
  6865. "support": {
  6866. "source": "https://github.com/symfony/routing/tree/v5.2.9"
  6867. },
  6868. "funding": [
  6869. {
  6870. "url": "https://symfony.com/sponsor",
  6871. "type": "custom"
  6872. },
  6873. {
  6874. "url": "https://github.com/fabpot",
  6875. "type": "github"
  6876. },
  6877. {
  6878. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6879. "type": "tidelift"
  6880. }
  6881. ],
  6882. "time": "2021-05-16T13:07:46+00:00"
  6883. },
  6884. {
  6885. "name": "symfony/service-contracts",
  6886. "version": "v2.4.0",
  6887. "source": {
  6888. "type": "git",
  6889. "url": "https://github.com/symfony/service-contracts.git",
  6890. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  6891. },
  6892. "dist": {
  6893. "type": "zip",
  6894. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6895. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6896. "shasum": "",
  6897. "mirrors": [
  6898. {
  6899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6900. "preferred": true
  6901. }
  6902. ]
  6903. },
  6904. "require": {
  6905. "php": ">=7.2.5",
  6906. "psr/container": "^1.1"
  6907. },
  6908. "suggest": {
  6909. "symfony/service-implementation": ""
  6910. },
  6911. "type": "library",
  6912. "extra": {
  6913. "branch-alias": {
  6914. "dev-main": "2.4-dev"
  6915. },
  6916. "thanks": {
  6917. "name": "symfony/contracts",
  6918. "url": "https://github.com/symfony/contracts"
  6919. }
  6920. },
  6921. "autoload": {
  6922. "psr-4": {
  6923. "Symfony\\Contracts\\Service\\": ""
  6924. }
  6925. },
  6926. "notification-url": "https://packagist.org/downloads/",
  6927. "license": [
  6928. "MIT"
  6929. ],
  6930. "authors": [
  6931. {
  6932. "name": "Nicolas Grekas",
  6933. "email": "p@tchwork.com"
  6934. },
  6935. {
  6936. "name": "Symfony Community",
  6937. "homepage": "https://symfony.com/contributors"
  6938. }
  6939. ],
  6940. "description": "Generic abstractions related to writing services",
  6941. "homepage": "https://symfony.com",
  6942. "keywords": [
  6943. "abstractions",
  6944. "contracts",
  6945. "decoupling",
  6946. "interfaces",
  6947. "interoperability",
  6948. "standards"
  6949. ],
  6950. "support": {
  6951. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  6952. },
  6953. "funding": [
  6954. {
  6955. "url": "https://symfony.com/sponsor",
  6956. "type": "custom"
  6957. },
  6958. {
  6959. "url": "https://github.com/fabpot",
  6960. "type": "github"
  6961. },
  6962. {
  6963. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6964. "type": "tidelift"
  6965. }
  6966. ],
  6967. "time": "2021-04-01T10:43:52+00:00"
  6968. },
  6969. {
  6970. "name": "symfony/string",
  6971. "version": "v5.2.8",
  6972. "source": {
  6973. "type": "git",
  6974. "url": "https://github.com/symfony/string.git",
  6975. "reference": "01b35eb64cac8467c3f94cd0ce2d0d376bb7d1db"
  6976. },
  6977. "dist": {
  6978. "type": "zip",
  6979. "url": "https://api.github.com/repos/symfony/string/zipball/01b35eb64cac8467c3f94cd0ce2d0d376bb7d1db",
  6980. "reference": "01b35eb64cac8467c3f94cd0ce2d0d376bb7d1db",
  6981. "shasum": "",
  6982. "mirrors": [
  6983. {
  6984. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6985. "preferred": true
  6986. }
  6987. ]
  6988. },
  6989. "require": {
  6990. "php": ">=7.2.5",
  6991. "symfony/polyfill-ctype": "~1.8",
  6992. "symfony/polyfill-intl-grapheme": "~1.0",
  6993. "symfony/polyfill-intl-normalizer": "~1.0",
  6994. "symfony/polyfill-mbstring": "~1.0",
  6995. "symfony/polyfill-php80": "~1.15"
  6996. },
  6997. "require-dev": {
  6998. "symfony/error-handler": "^4.4|^5.0",
  6999. "symfony/http-client": "^4.4|^5.0",
  7000. "symfony/translation-contracts": "^1.1|^2",
  7001. "symfony/var-exporter": "^4.4|^5.0"
  7002. },
  7003. "type": "library",
  7004. "autoload": {
  7005. "psr-4": {
  7006. "Symfony\\Component\\String\\": ""
  7007. },
  7008. "files": [
  7009. "Resources/functions.php"
  7010. ],
  7011. "exclude-from-classmap": [
  7012. "/Tests/"
  7013. ]
  7014. },
  7015. "notification-url": "https://packagist.org/downloads/",
  7016. "license": [
  7017. "MIT"
  7018. ],
  7019. "authors": [
  7020. {
  7021. "name": "Nicolas Grekas",
  7022. "email": "p@tchwork.com"
  7023. },
  7024. {
  7025. "name": "Symfony Community",
  7026. "homepage": "https://symfony.com/contributors"
  7027. }
  7028. ],
  7029. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7030. "homepage": "https://symfony.com",
  7031. "keywords": [
  7032. "grapheme",
  7033. "i18n",
  7034. "string",
  7035. "unicode",
  7036. "utf-8",
  7037. "utf8"
  7038. ],
  7039. "support": {
  7040. "source": "https://github.com/symfony/string/tree/v5.2.8"
  7041. },
  7042. "funding": [
  7043. {
  7044. "url": "https://symfony.com/sponsor",
  7045. "type": "custom"
  7046. },
  7047. {
  7048. "url": "https://github.com/fabpot",
  7049. "type": "github"
  7050. },
  7051. {
  7052. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7053. "type": "tidelift"
  7054. }
  7055. ],
  7056. "time": "2021-05-10T14:56:10+00:00"
  7057. },
  7058. {
  7059. "name": "symfony/translation",
  7060. "version": "v5.2.9",
  7061. "source": {
  7062. "type": "git",
  7063. "url": "https://github.com/symfony/translation.git",
  7064. "reference": "61af68dba333e2d376a325a29c2a3f2a605b4876"
  7065. },
  7066. "dist": {
  7067. "type": "zip",
  7068. "url": "https://api.github.com/repos/symfony/translation/zipball/61af68dba333e2d376a325a29c2a3f2a605b4876",
  7069. "reference": "61af68dba333e2d376a325a29c2a3f2a605b4876",
  7070. "shasum": "",
  7071. "mirrors": [
  7072. {
  7073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7074. "preferred": true
  7075. }
  7076. ]
  7077. },
  7078. "require": {
  7079. "php": ">=7.2.5",
  7080. "symfony/polyfill-mbstring": "~1.0",
  7081. "symfony/polyfill-php80": "^1.15",
  7082. "symfony/translation-contracts": "^2.3"
  7083. },
  7084. "conflict": {
  7085. "symfony/config": "<4.4",
  7086. "symfony/dependency-injection": "<5.0",
  7087. "symfony/http-kernel": "<5.0",
  7088. "symfony/twig-bundle": "<5.0",
  7089. "symfony/yaml": "<4.4"
  7090. },
  7091. "provide": {
  7092. "symfony/translation-implementation": "2.3"
  7093. },
  7094. "require-dev": {
  7095. "psr/log": "~1.0",
  7096. "symfony/config": "^4.4|^5.0",
  7097. "symfony/console": "^4.4|^5.0",
  7098. "symfony/dependency-injection": "^5.0",
  7099. "symfony/finder": "^4.4|^5.0",
  7100. "symfony/http-kernel": "^5.0",
  7101. "symfony/intl": "^4.4|^5.0",
  7102. "symfony/service-contracts": "^1.1.2|^2",
  7103. "symfony/yaml": "^4.4|^5.0"
  7104. },
  7105. "suggest": {
  7106. "psr/log-implementation": "To use logging capability in translator",
  7107. "symfony/config": "",
  7108. "symfony/yaml": ""
  7109. },
  7110. "type": "library",
  7111. "autoload": {
  7112. "files": [
  7113. "Resources/functions.php"
  7114. ],
  7115. "psr-4": {
  7116. "Symfony\\Component\\Translation\\": ""
  7117. },
  7118. "exclude-from-classmap": [
  7119. "/Tests/"
  7120. ]
  7121. },
  7122. "notification-url": "https://packagist.org/downloads/",
  7123. "license": [
  7124. "MIT"
  7125. ],
  7126. "authors": [
  7127. {
  7128. "name": "Fabien Potencier",
  7129. "email": "fabien@symfony.com"
  7130. },
  7131. {
  7132. "name": "Symfony Community",
  7133. "homepage": "https://symfony.com/contributors"
  7134. }
  7135. ],
  7136. "description": "Provides tools to internationalize your application",
  7137. "homepage": "https://symfony.com",
  7138. "support": {
  7139. "source": "https://github.com/symfony/translation/tree/v5.2.9"
  7140. },
  7141. "funding": [
  7142. {
  7143. "url": "https://symfony.com/sponsor",
  7144. "type": "custom"
  7145. },
  7146. {
  7147. "url": "https://github.com/fabpot",
  7148. "type": "github"
  7149. },
  7150. {
  7151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7152. "type": "tidelift"
  7153. }
  7154. ],
  7155. "time": "2021-05-16T13:07:46+00:00"
  7156. },
  7157. {
  7158. "name": "symfony/translation-contracts",
  7159. "version": "v2.4.0",
  7160. "source": {
  7161. "type": "git",
  7162. "url": "https://github.com/symfony/translation-contracts.git",
  7163. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  7164. },
  7165. "dist": {
  7166. "type": "zip",
  7167. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  7168. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  7169. "shasum": "",
  7170. "mirrors": [
  7171. {
  7172. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7173. "preferred": true
  7174. }
  7175. ]
  7176. },
  7177. "require": {
  7178. "php": ">=7.2.5"
  7179. },
  7180. "suggest": {
  7181. "symfony/translation-implementation": ""
  7182. },
  7183. "type": "library",
  7184. "extra": {
  7185. "branch-alias": {
  7186. "dev-main": "2.4-dev"
  7187. },
  7188. "thanks": {
  7189. "name": "symfony/contracts",
  7190. "url": "https://github.com/symfony/contracts"
  7191. }
  7192. },
  7193. "autoload": {
  7194. "psr-4": {
  7195. "Symfony\\Contracts\\Translation\\": ""
  7196. }
  7197. },
  7198. "notification-url": "https://packagist.org/downloads/",
  7199. "license": [
  7200. "MIT"
  7201. ],
  7202. "authors": [
  7203. {
  7204. "name": "Nicolas Grekas",
  7205. "email": "p@tchwork.com"
  7206. },
  7207. {
  7208. "name": "Symfony Community",
  7209. "homepage": "https://symfony.com/contributors"
  7210. }
  7211. ],
  7212. "description": "Generic abstractions related to translation",
  7213. "homepage": "https://symfony.com",
  7214. "keywords": [
  7215. "abstractions",
  7216. "contracts",
  7217. "decoupling",
  7218. "interfaces",
  7219. "interoperability",
  7220. "standards"
  7221. ],
  7222. "support": {
  7223. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  7224. },
  7225. "funding": [
  7226. {
  7227. "url": "https://symfony.com/sponsor",
  7228. "type": "custom"
  7229. },
  7230. {
  7231. "url": "https://github.com/fabpot",
  7232. "type": "github"
  7233. },
  7234. {
  7235. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7236. "type": "tidelift"
  7237. }
  7238. ],
  7239. "time": "2021-03-23T23:28:01+00:00"
  7240. },
  7241. {
  7242. "name": "symfony/var-dumper",
  7243. "version": "v5.2.8",
  7244. "source": {
  7245. "type": "git",
  7246. "url": "https://github.com/symfony/var-dumper.git",
  7247. "reference": "d693200a73fae179d27f8f1b16b4faf3e8569eba"
  7248. },
  7249. "dist": {
  7250. "type": "zip",
  7251. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d693200a73fae179d27f8f1b16b4faf3e8569eba",
  7252. "reference": "d693200a73fae179d27f8f1b16b4faf3e8569eba",
  7253. "shasum": "",
  7254. "mirrors": [
  7255. {
  7256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7257. "preferred": true
  7258. }
  7259. ]
  7260. },
  7261. "require": {
  7262. "php": ">=7.2.5",
  7263. "symfony/polyfill-mbstring": "~1.0",
  7264. "symfony/polyfill-php80": "^1.15"
  7265. },
  7266. "conflict": {
  7267. "phpunit/phpunit": "<5.4.3",
  7268. "symfony/console": "<4.4"
  7269. },
  7270. "require-dev": {
  7271. "ext-iconv": "*",
  7272. "symfony/console": "^4.4|^5.0",
  7273. "symfony/process": "^4.4|^5.0",
  7274. "twig/twig": "^2.13|^3.0.4"
  7275. },
  7276. "suggest": {
  7277. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7278. "ext-intl": "To show region name in time zone dump",
  7279. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7280. },
  7281. "bin": [
  7282. "Resources/bin/var-dump-server"
  7283. ],
  7284. "type": "library",
  7285. "autoload": {
  7286. "files": [
  7287. "Resources/functions/dump.php"
  7288. ],
  7289. "psr-4": {
  7290. "Symfony\\Component\\VarDumper\\": ""
  7291. },
  7292. "exclude-from-classmap": [
  7293. "/Tests/"
  7294. ]
  7295. },
  7296. "notification-url": "https://packagist.org/downloads/",
  7297. "license": [
  7298. "MIT"
  7299. ],
  7300. "authors": [
  7301. {
  7302. "name": "Nicolas Grekas",
  7303. "email": "p@tchwork.com"
  7304. },
  7305. {
  7306. "name": "Symfony Community",
  7307. "homepage": "https://symfony.com/contributors"
  7308. }
  7309. ],
  7310. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7311. "homepage": "https://symfony.com",
  7312. "keywords": [
  7313. "debug",
  7314. "dump"
  7315. ],
  7316. "support": {
  7317. "source": "https://github.com/symfony/var-dumper/tree/v5.2.8"
  7318. },
  7319. "funding": [
  7320. {
  7321. "url": "https://symfony.com/sponsor",
  7322. "type": "custom"
  7323. },
  7324. {
  7325. "url": "https://github.com/fabpot",
  7326. "type": "github"
  7327. },
  7328. {
  7329. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7330. "type": "tidelift"
  7331. }
  7332. ],
  7333. "time": "2021-05-07T13:42:21+00:00"
  7334. },
  7335. {
  7336. "name": "te7a-houdini/laravel-trix",
  7337. "version": "2.0.4",
  7338. "source": {
  7339. "type": "git",
  7340. "url": "https://github.com/amaelftah/laravel-trix.git",
  7341. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074"
  7342. },
  7343. "dist": {
  7344. "type": "zip",
  7345. "url": "https://api.github.com/repos/amaelftah/laravel-trix/zipball/2295ae96aad8b7c427647c84e814c33926eaf074",
  7346. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074",
  7347. "shasum": "",
  7348. "mirrors": [
  7349. {
  7350. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7351. "preferred": true
  7352. }
  7353. ]
  7354. },
  7355. "require": {
  7356. "laravel/framework": "~5.8.0|~6.0|~7.0|~8.0",
  7357. "php": "^7.1"
  7358. },
  7359. "require-dev": {
  7360. "orchestra/testbench": "^3.5|~4.0|~5.0|~6.0"
  7361. },
  7362. "type": "library",
  7363. "extra": {
  7364. "laravel": {
  7365. "providers": [
  7366. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  7367. ]
  7368. }
  7369. },
  7370. "autoload": {
  7371. "psr-4": {
  7372. "Te7aHoudini\\LaravelTrix\\": "src"
  7373. }
  7374. },
  7375. "notification-url": "https://packagist.org/downloads/",
  7376. "license": [
  7377. "MIT"
  7378. ],
  7379. "authors": [
  7380. {
  7381. "name": "Ahmed Abd El Ftah",
  7382. "email": "ahmedabdelftah95165@gmail.com",
  7383. "role": "Developer"
  7384. }
  7385. ],
  7386. "description": "trix editor for laravel inspired by ActionText for rails",
  7387. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  7388. "keywords": [
  7389. "laravel-trix",
  7390. "te7a-houdini"
  7391. ],
  7392. "time": "2020-11-12T10:48:06+00:00"
  7393. },
  7394. {
  7395. "name": "tightenco/collect",
  7396. "version": "v5.6.33",
  7397. "source": {
  7398. "type": "git",
  7399. "url": "https://github.com/tighten/collect.git",
  7400. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  7401. },
  7402. "dist": {
  7403. "type": "zip",
  7404. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  7405. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  7406. "shasum": "",
  7407. "mirrors": [
  7408. {
  7409. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7410. "preferred": true
  7411. }
  7412. ]
  7413. },
  7414. "require": {
  7415. "php": ">=7.1.3",
  7416. "symfony/var-dumper": ">=3.1.10"
  7417. },
  7418. "require-dev": {
  7419. "mockery/mockery": "~1.0",
  7420. "nesbot/carbon": "~1.20",
  7421. "phpunit/phpunit": "~7.0"
  7422. },
  7423. "type": "library",
  7424. "autoload": {
  7425. "files": [
  7426. "src/Collect/Support/helpers.php",
  7427. "src/Collect/Support/alias.php"
  7428. ],
  7429. "psr-4": {
  7430. "Tightenco\\Collect\\": "src/Collect"
  7431. }
  7432. },
  7433. "notification-url": "https://packagist.org/downloads/",
  7434. "license": [
  7435. "MIT"
  7436. ],
  7437. "authors": [
  7438. {
  7439. "name": "Taylor Otwell",
  7440. "email": "taylorotwell@gmail.com"
  7441. }
  7442. ],
  7443. "description": "Collect - Illuminate Collections as a separate package.",
  7444. "keywords": [
  7445. "collection",
  7446. "laravel"
  7447. ],
  7448. "time": "2018-08-09T16:56:26+00:00"
  7449. },
  7450. {
  7451. "name": "tijsverkoyen/css-to-inline-styles",
  7452. "version": "2.2.3",
  7453. "source": {
  7454. "type": "git",
  7455. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7456. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7457. },
  7458. "dist": {
  7459. "type": "zip",
  7460. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7461. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7462. "shasum": "",
  7463. "mirrors": [
  7464. {
  7465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7466. "preferred": true
  7467. }
  7468. ]
  7469. },
  7470. "require": {
  7471. "ext-dom": "*",
  7472. "ext-libxml": "*",
  7473. "php": "^5.5 || ^7.0 || ^8.0",
  7474. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7475. },
  7476. "require-dev": {
  7477. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7478. },
  7479. "type": "library",
  7480. "extra": {
  7481. "branch-alias": {
  7482. "dev-master": "2.2.x-dev"
  7483. }
  7484. },
  7485. "autoload": {
  7486. "psr-4": {
  7487. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7488. }
  7489. },
  7490. "notification-url": "https://packagist.org/downloads/",
  7491. "license": [
  7492. "BSD-3-Clause"
  7493. ],
  7494. "authors": [
  7495. {
  7496. "name": "Tijs Verkoyen",
  7497. "email": "css_to_inline_styles@verkoyen.eu",
  7498. "role": "Developer"
  7499. }
  7500. ],
  7501. "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.",
  7502. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7503. "time": "2020-07-13T06:12:54+00:00"
  7504. },
  7505. {
  7506. "name": "vlucas/phpdotenv",
  7507. "version": "v4.2.0",
  7508. "source": {
  7509. "type": "git",
  7510. "url": "https://github.com/vlucas/phpdotenv.git",
  7511. "reference": "da64796370fc4eb03cc277088f6fede9fde88482"
  7512. },
  7513. "dist": {
  7514. "type": "zip",
  7515. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482",
  7516. "reference": "da64796370fc4eb03cc277088f6fede9fde88482",
  7517. "shasum": "",
  7518. "mirrors": [
  7519. {
  7520. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7521. "preferred": true
  7522. }
  7523. ]
  7524. },
  7525. "require": {
  7526. "php": "^5.5.9 || ^7.0 || ^8.0",
  7527. "phpoption/phpoption": "^1.7.3",
  7528. "symfony/polyfill-ctype": "^1.17"
  7529. },
  7530. "require-dev": {
  7531. "bamarni/composer-bin-plugin": "^1.4.1",
  7532. "ext-filter": "*",
  7533. "ext-pcre": "*",
  7534. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  7535. },
  7536. "suggest": {
  7537. "ext-filter": "Required to use the boolean validator.",
  7538. "ext-pcre": "Required to use most of the library."
  7539. },
  7540. "type": "library",
  7541. "extra": {
  7542. "branch-alias": {
  7543. "dev-master": "4.1-dev"
  7544. }
  7545. },
  7546. "autoload": {
  7547. "psr-4": {
  7548. "Dotenv\\": "src/"
  7549. }
  7550. },
  7551. "notification-url": "https://packagist.org/downloads/",
  7552. "license": [
  7553. "BSD-3-Clause"
  7554. ],
  7555. "authors": [
  7556. {
  7557. "name": "Graham Campbell",
  7558. "email": "graham@alt-three.com",
  7559. "homepage": "https://gjcampbell.co.uk/"
  7560. },
  7561. {
  7562. "name": "Vance Lucas",
  7563. "email": "vance@vancelucas.com",
  7564. "homepage": "https://vancelucas.com/"
  7565. }
  7566. ],
  7567. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7568. "keywords": [
  7569. "dotenv",
  7570. "env",
  7571. "environment"
  7572. ],
  7573. "support": {
  7574. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7575. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0"
  7576. },
  7577. "funding": [
  7578. {
  7579. "url": "https://github.com/GrahamCampbell",
  7580. "type": "github"
  7581. },
  7582. {
  7583. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7584. "type": "tidelift"
  7585. }
  7586. ],
  7587. "time": "2021-01-20T15:11:48+00:00"
  7588. },
  7589. {
  7590. "name": "voku/portable-ascii",
  7591. "version": "1.5.6",
  7592. "source": {
  7593. "type": "git",
  7594. "url": "https://github.com/voku/portable-ascii.git",
  7595. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7596. },
  7597. "dist": {
  7598. "type": "zip",
  7599. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7600. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7601. "shasum": "",
  7602. "mirrors": [
  7603. {
  7604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7605. "preferred": true
  7606. }
  7607. ]
  7608. },
  7609. "require": {
  7610. "php": ">=7.0.0"
  7611. },
  7612. "require-dev": {
  7613. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7614. },
  7615. "suggest": {
  7616. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7617. },
  7618. "type": "library",
  7619. "autoload": {
  7620. "psr-4": {
  7621. "voku\\": "src/voku/"
  7622. }
  7623. },
  7624. "notification-url": "https://packagist.org/downloads/",
  7625. "license": [
  7626. "MIT"
  7627. ],
  7628. "authors": [
  7629. {
  7630. "name": "Lars Moelleken",
  7631. "homepage": "http://www.moelleken.org/"
  7632. }
  7633. ],
  7634. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7635. "homepage": "https://github.com/voku/portable-ascii",
  7636. "keywords": [
  7637. "ascii",
  7638. "clean",
  7639. "php"
  7640. ],
  7641. "funding": [
  7642. {
  7643. "url": "https://www.paypal.me/moelleken",
  7644. "type": "custom"
  7645. },
  7646. {
  7647. "url": "https://github.com/voku",
  7648. "type": "github"
  7649. },
  7650. {
  7651. "url": "https://opencollective.com/portable-ascii",
  7652. "type": "open_collective"
  7653. },
  7654. {
  7655. "url": "https://www.patreon.com/voku",
  7656. "type": "patreon"
  7657. },
  7658. {
  7659. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7660. "type": "tidelift"
  7661. }
  7662. ],
  7663. "time": "2020-11-12T00:07:28+00:00"
  7664. },
  7665. {
  7666. "name": "yajra/laravel-oci8",
  7667. "version": "v7.0.0",
  7668. "source": {
  7669. "type": "git",
  7670. "url": "https://github.com/yajra/laravel-oci8.git",
  7671. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  7672. },
  7673. "dist": {
  7674. "type": "zip",
  7675. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7676. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7677. "shasum": "",
  7678. "mirrors": [
  7679. {
  7680. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7681. "preferred": true
  7682. }
  7683. ]
  7684. },
  7685. "require": {
  7686. "ext-oci8": ">=2.0.0",
  7687. "ext-pdo": "*",
  7688. "illuminate/database": "^7",
  7689. "illuminate/support": "^7",
  7690. "php": "^7.2.5",
  7691. "yajra/laravel-pdo-via-oci8": "^2"
  7692. },
  7693. "require-dev": {
  7694. "mockery/mockery": "^1.3.1",
  7695. "phpunit/phpunit": "^8.4|^9.0",
  7696. "scrutinizer/ocular": "~1.1"
  7697. },
  7698. "type": "library",
  7699. "extra": {
  7700. "branch-alias": {
  7701. "dev-master": "7.x-dev"
  7702. },
  7703. "laravel": {
  7704. "providers": [
  7705. "Yajra\\Oci8\\Oci8ServiceProvider"
  7706. ]
  7707. }
  7708. },
  7709. "autoload": {
  7710. "files": [
  7711. "src/helper.php"
  7712. ],
  7713. "psr-4": {
  7714. "Yajra\\": "src/"
  7715. }
  7716. },
  7717. "notification-url": "https://packagist.org/downloads/",
  7718. "license": [
  7719. "MIT"
  7720. ],
  7721. "authors": [
  7722. {
  7723. "name": "Arjay Angeles",
  7724. "email": "aqangeles@gmail.com"
  7725. }
  7726. ],
  7727. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  7728. "keywords": [
  7729. "laravel",
  7730. "oci8",
  7731. "oracle",
  7732. "pdo_oci"
  7733. ],
  7734. "funding": [
  7735. {
  7736. "url": "https://www.paypal.me/yajra",
  7737. "type": "custom"
  7738. },
  7739. {
  7740. "url": "https://www.patreon.com/yajra",
  7741. "type": "patreon"
  7742. }
  7743. ],
  7744. "time": "2020-03-04T02:15:19+00:00"
  7745. },
  7746. {
  7747. "name": "yajra/laravel-pdo-via-oci8",
  7748. "version": "v2.2.0",
  7749. "source": {
  7750. "type": "git",
  7751. "url": "https://github.com/yajra/pdo-via-oci8.git",
  7752. "reference": "93610843b7abe975413288bcc4adb347edefb4b8"
  7753. },
  7754. "dist": {
  7755. "type": "zip",
  7756. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/93610843b7abe975413288bcc4adb347edefb4b8",
  7757. "reference": "93610843b7abe975413288bcc4adb347edefb4b8",
  7758. "shasum": "",
  7759. "mirrors": [
  7760. {
  7761. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7762. "preferred": true
  7763. }
  7764. ]
  7765. },
  7766. "require-dev": {
  7767. "phpunit/phpunit": "^6.4"
  7768. },
  7769. "type": "library",
  7770. "extra": {
  7771. "branch-alias": {
  7772. "dev-master": "2.0-dev"
  7773. }
  7774. },
  7775. "autoload": {
  7776. "psr-4": {
  7777. "Yajra\\": "src/"
  7778. }
  7779. },
  7780. "notification-url": "https://packagist.org/downloads/",
  7781. "license": [
  7782. "MIT"
  7783. ],
  7784. "authors": [
  7785. {
  7786. "name": "Arjay Angeles",
  7787. "email": "aqangeles@gmail.com"
  7788. }
  7789. ],
  7790. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  7791. "support": {
  7792. "issues": "https://github.com/yajra/pdo-via-oci8/issues",
  7793. "source": "https://github.com/yajra/pdo-via-oci8/tree/v2.2.0"
  7794. },
  7795. "time": "2020-12-11T12:29:18+00:00"
  7796. }
  7797. ],
  7798. "packages-dev": [
  7799. {
  7800. "name": "barryvdh/laravel-debugbar",
  7801. "version": "v3.5.7",
  7802. "source": {
  7803. "type": "git",
  7804. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7805. "reference": "88fd9cfa144b06b2549e9d487fdaec68265e791e"
  7806. },
  7807. "dist": {
  7808. "type": "zip",
  7809. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/88fd9cfa144b06b2549e9d487fdaec68265e791e",
  7810. "reference": "88fd9cfa144b06b2549e9d487fdaec68265e791e",
  7811. "shasum": "",
  7812. "mirrors": [
  7813. {
  7814. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7815. "preferred": true
  7816. }
  7817. ]
  7818. },
  7819. "require": {
  7820. "illuminate/routing": "^6|^7|^8",
  7821. "illuminate/session": "^6|^7|^8",
  7822. "illuminate/support": "^6|^7|^8",
  7823. "maximebf/debugbar": "^1.16.3",
  7824. "php": ">=7.2",
  7825. "symfony/debug": "^4.3|^5",
  7826. "symfony/finder": "^4.3|^5"
  7827. },
  7828. "require-dev": {
  7829. "mockery/mockery": "^1.3.3",
  7830. "orchestra/testbench-dusk": "^4|^5|^6",
  7831. "phpunit/phpunit": "^8.5|^9.0",
  7832. "squizlabs/php_codesniffer": "^3.5"
  7833. },
  7834. "type": "library",
  7835. "extra": {
  7836. "branch-alias": {
  7837. "dev-master": "3.5-dev"
  7838. },
  7839. "laravel": {
  7840. "providers": [
  7841. "Barryvdh\\Debugbar\\ServiceProvider"
  7842. ],
  7843. "aliases": {
  7844. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7845. }
  7846. }
  7847. },
  7848. "autoload": {
  7849. "psr-4": {
  7850. "Barryvdh\\Debugbar\\": "src/"
  7851. },
  7852. "files": [
  7853. "src/helpers.php"
  7854. ]
  7855. },
  7856. "notification-url": "https://packagist.org/downloads/",
  7857. "license": [
  7858. "MIT"
  7859. ],
  7860. "authors": [
  7861. {
  7862. "name": "Barry vd. Heuvel",
  7863. "email": "barryvdh@gmail.com"
  7864. }
  7865. ],
  7866. "description": "PHP Debugbar integration for Laravel",
  7867. "keywords": [
  7868. "debug",
  7869. "debugbar",
  7870. "laravel",
  7871. "profiler",
  7872. "webprofiler"
  7873. ],
  7874. "support": {
  7875. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  7876. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.7"
  7877. },
  7878. "funding": [
  7879. {
  7880. "url": "https://github.com/barryvdh",
  7881. "type": "github"
  7882. }
  7883. ],
  7884. "time": "2021-05-13T20:18:35+00:00"
  7885. },
  7886. {
  7887. "name": "beyondcode/laravel-dump-server",
  7888. "version": "1.7.0",
  7889. "source": {
  7890. "type": "git",
  7891. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  7892. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89"
  7893. },
  7894. "dist": {
  7895. "type": "zip",
  7896. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/e27c7b942ab62f6ac7168359393d328ec5215b89",
  7897. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89",
  7898. "shasum": "",
  7899. "mirrors": [
  7900. {
  7901. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7902. "preferred": true
  7903. }
  7904. ]
  7905. },
  7906. "require": {
  7907. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7908. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7909. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7910. "php": ">=7.2.5",
  7911. "symfony/var-dumper": "^5.0"
  7912. },
  7913. "require-dev": {
  7914. "larapack/dd": "^1.0",
  7915. "phpunit/phpunit": "^7.0|^9.3"
  7916. },
  7917. "type": "library",
  7918. "extra": {
  7919. "laravel": {
  7920. "providers": [
  7921. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  7922. ]
  7923. }
  7924. },
  7925. "autoload": {
  7926. "psr-4": {
  7927. "BeyondCode\\DumpServer\\": "src"
  7928. },
  7929. "files": [
  7930. "helpers.php"
  7931. ]
  7932. },
  7933. "notification-url": "https://packagist.org/downloads/",
  7934. "license": [
  7935. "MIT"
  7936. ],
  7937. "authors": [
  7938. {
  7939. "name": "Marcel Pociot",
  7940. "email": "marcel@beyondco.de",
  7941. "homepage": "https://beyondco.de",
  7942. "role": "Developer"
  7943. }
  7944. ],
  7945. "description": "Symfony Var-Dump Server for Laravel",
  7946. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  7947. "keywords": [
  7948. "beyondcode",
  7949. "laravel-dump-server"
  7950. ],
  7951. "support": {
  7952. "issues": "https://github.com/beyondcode/laravel-dump-server/issues",
  7953. "source": "https://github.com/beyondcode/laravel-dump-server/tree/1.7.0"
  7954. },
  7955. "time": "2020-12-15T10:57:43+00:00"
  7956. },
  7957. {
  7958. "name": "doctrine/instantiator",
  7959. "version": "1.4.0",
  7960. "source": {
  7961. "type": "git",
  7962. "url": "https://github.com/doctrine/instantiator.git",
  7963. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  7964. },
  7965. "dist": {
  7966. "type": "zip",
  7967. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7968. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7969. "shasum": "",
  7970. "mirrors": [
  7971. {
  7972. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7973. "preferred": true
  7974. }
  7975. ]
  7976. },
  7977. "require": {
  7978. "php": "^7.1 || ^8.0"
  7979. },
  7980. "require-dev": {
  7981. "doctrine/coding-standard": "^8.0",
  7982. "ext-pdo": "*",
  7983. "ext-phar": "*",
  7984. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  7985. "phpstan/phpstan": "^0.12",
  7986. "phpstan/phpstan-phpunit": "^0.12",
  7987. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  7988. },
  7989. "type": "library",
  7990. "autoload": {
  7991. "psr-4": {
  7992. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7993. }
  7994. },
  7995. "notification-url": "https://packagist.org/downloads/",
  7996. "license": [
  7997. "MIT"
  7998. ],
  7999. "authors": [
  8000. {
  8001. "name": "Marco Pivetta",
  8002. "email": "ocramius@gmail.com",
  8003. "homepage": "https://ocramius.github.io/"
  8004. }
  8005. ],
  8006. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8007. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8008. "keywords": [
  8009. "constructor",
  8010. "instantiate"
  8011. ],
  8012. "funding": [
  8013. {
  8014. "url": "https://www.doctrine-project.org/sponsorship.html",
  8015. "type": "custom"
  8016. },
  8017. {
  8018. "url": "https://www.patreon.com/phpdoctrine",
  8019. "type": "patreon"
  8020. },
  8021. {
  8022. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8023. "type": "tidelift"
  8024. }
  8025. ],
  8026. "time": "2020-11-10T18:47:58+00:00"
  8027. },
  8028. {
  8029. "name": "fzaninotto/faker",
  8030. "version": "v1.9.2",
  8031. "source": {
  8032. "type": "git",
  8033. "url": "https://github.com/fzaninotto/Faker.git",
  8034. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8035. },
  8036. "dist": {
  8037. "type": "zip",
  8038. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8039. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8040. "shasum": "",
  8041. "mirrors": [
  8042. {
  8043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8044. "preferred": true
  8045. }
  8046. ]
  8047. },
  8048. "require": {
  8049. "php": "^5.3.3 || ^7.0"
  8050. },
  8051. "require-dev": {
  8052. "ext-intl": "*",
  8053. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8054. "squizlabs/php_codesniffer": "^2.9.2"
  8055. },
  8056. "type": "library",
  8057. "extra": {
  8058. "branch-alias": {
  8059. "dev-master": "1.9-dev"
  8060. }
  8061. },
  8062. "autoload": {
  8063. "psr-4": {
  8064. "Faker\\": "src/Faker/"
  8065. }
  8066. },
  8067. "notification-url": "https://packagist.org/downloads/",
  8068. "license": [
  8069. "MIT"
  8070. ],
  8071. "authors": [
  8072. {
  8073. "name": "François Zaninotto"
  8074. }
  8075. ],
  8076. "description": "Faker is a PHP library that generates fake data for you.",
  8077. "keywords": [
  8078. "data",
  8079. "faker",
  8080. "fixtures"
  8081. ],
  8082. "support": {
  8083. "issues": "https://github.com/fzaninotto/Faker/issues",
  8084. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  8085. },
  8086. "abandoned": true,
  8087. "time": "2020-12-11T09:56:16+00:00"
  8088. },
  8089. {
  8090. "name": "hamcrest/hamcrest-php",
  8091. "version": "v2.0.1",
  8092. "source": {
  8093. "type": "git",
  8094. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8095. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8096. },
  8097. "dist": {
  8098. "type": "zip",
  8099. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8100. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8101. "shasum": "",
  8102. "mirrors": [
  8103. {
  8104. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8105. "preferred": true
  8106. }
  8107. ]
  8108. },
  8109. "require": {
  8110. "php": "^5.3|^7.0|^8.0"
  8111. },
  8112. "replace": {
  8113. "cordoval/hamcrest-php": "*",
  8114. "davedevelopment/hamcrest-php": "*",
  8115. "kodova/hamcrest-php": "*"
  8116. },
  8117. "require-dev": {
  8118. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8119. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8120. },
  8121. "type": "library",
  8122. "extra": {
  8123. "branch-alias": {
  8124. "dev-master": "2.1-dev"
  8125. }
  8126. },
  8127. "autoload": {
  8128. "classmap": [
  8129. "hamcrest"
  8130. ]
  8131. },
  8132. "notification-url": "https://packagist.org/downloads/",
  8133. "license": [
  8134. "BSD-3-Clause"
  8135. ],
  8136. "description": "This is the PHP port of Hamcrest Matchers",
  8137. "keywords": [
  8138. "test"
  8139. ],
  8140. "time": "2020-07-09T08:09:16+00:00"
  8141. },
  8142. {
  8143. "name": "maximebf/debugbar",
  8144. "version": "v1.16.5",
  8145. "source": {
  8146. "type": "git",
  8147. "url": "https://github.com/maximebf/php-debugbar.git",
  8148. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62"
  8149. },
  8150. "dist": {
  8151. "type": "zip",
  8152. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8153. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8154. "shasum": "",
  8155. "mirrors": [
  8156. {
  8157. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8158. "preferred": true
  8159. }
  8160. ]
  8161. },
  8162. "require": {
  8163. "php": "^7.1|^8",
  8164. "psr/log": "^1.0",
  8165. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8166. },
  8167. "require-dev": {
  8168. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8169. },
  8170. "suggest": {
  8171. "kriswallsmith/assetic": "The best way to manage assets",
  8172. "monolog/monolog": "Log using Monolog",
  8173. "predis/predis": "Redis storage"
  8174. },
  8175. "type": "library",
  8176. "extra": {
  8177. "branch-alias": {
  8178. "dev-master": "1.16-dev"
  8179. }
  8180. },
  8181. "autoload": {
  8182. "psr-4": {
  8183. "DebugBar\\": "src/DebugBar/"
  8184. }
  8185. },
  8186. "notification-url": "https://packagist.org/downloads/",
  8187. "license": [
  8188. "MIT"
  8189. ],
  8190. "authors": [
  8191. {
  8192. "name": "Maxime Bouroumeau-Fuseau",
  8193. "email": "maxime.bouroumeau@gmail.com",
  8194. "homepage": "http://maximebf.com"
  8195. },
  8196. {
  8197. "name": "Barry vd. Heuvel",
  8198. "email": "barryvdh@gmail.com"
  8199. }
  8200. ],
  8201. "description": "Debug bar in the browser for php application",
  8202. "homepage": "https://github.com/maximebf/php-debugbar",
  8203. "keywords": [
  8204. "debug",
  8205. "debugbar"
  8206. ],
  8207. "support": {
  8208. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8209. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.5"
  8210. },
  8211. "time": "2020-12-07T11:07:24+00:00"
  8212. },
  8213. {
  8214. "name": "mockery/mockery",
  8215. "version": "1.4.3",
  8216. "source": {
  8217. "type": "git",
  8218. "url": "https://github.com/mockery/mockery.git",
  8219. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea"
  8220. },
  8221. "dist": {
  8222. "type": "zip",
  8223. "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea",
  8224. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea",
  8225. "shasum": "",
  8226. "mirrors": [
  8227. {
  8228. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8229. "preferred": true
  8230. }
  8231. ]
  8232. },
  8233. "require": {
  8234. "hamcrest/hamcrest-php": "^2.0.1",
  8235. "lib-pcre": ">=7.0",
  8236. "php": "^7.3 || ^8.0"
  8237. },
  8238. "conflict": {
  8239. "phpunit/phpunit": "<8.0"
  8240. },
  8241. "require-dev": {
  8242. "phpunit/phpunit": "^8.5 || ^9.3"
  8243. },
  8244. "type": "library",
  8245. "extra": {
  8246. "branch-alias": {
  8247. "dev-master": "1.4.x-dev"
  8248. }
  8249. },
  8250. "autoload": {
  8251. "psr-0": {
  8252. "Mockery": "library/"
  8253. }
  8254. },
  8255. "notification-url": "https://packagist.org/downloads/",
  8256. "license": [
  8257. "BSD-3-Clause"
  8258. ],
  8259. "authors": [
  8260. {
  8261. "name": "Pádraic Brady",
  8262. "email": "padraic.brady@gmail.com",
  8263. "homepage": "http://blog.astrumfutura.com"
  8264. },
  8265. {
  8266. "name": "Dave Marshall",
  8267. "email": "dave.marshall@atstsolutions.co.uk",
  8268. "homepage": "http://davedevelopment.co.uk"
  8269. }
  8270. ],
  8271. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8272. "homepage": "https://github.com/mockery/mockery",
  8273. "keywords": [
  8274. "BDD",
  8275. "TDD",
  8276. "library",
  8277. "mock",
  8278. "mock objects",
  8279. "mockery",
  8280. "stub",
  8281. "test",
  8282. "test double",
  8283. "testing"
  8284. ],
  8285. "support": {
  8286. "issues": "https://github.com/mockery/mockery/issues",
  8287. "source": "https://github.com/mockery/mockery/tree/1.4.3"
  8288. },
  8289. "time": "2021-02-24T09:51:49+00:00"
  8290. },
  8291. {
  8292. "name": "myclabs/deep-copy",
  8293. "version": "1.10.2",
  8294. "source": {
  8295. "type": "git",
  8296. "url": "https://github.com/myclabs/DeepCopy.git",
  8297. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8298. },
  8299. "dist": {
  8300. "type": "zip",
  8301. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8302. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8303. "shasum": "",
  8304. "mirrors": [
  8305. {
  8306. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8307. "preferred": true
  8308. }
  8309. ]
  8310. },
  8311. "require": {
  8312. "php": "^7.1 || ^8.0"
  8313. },
  8314. "replace": {
  8315. "myclabs/deep-copy": "self.version"
  8316. },
  8317. "require-dev": {
  8318. "doctrine/collections": "^1.0",
  8319. "doctrine/common": "^2.6",
  8320. "phpunit/phpunit": "^7.1"
  8321. },
  8322. "type": "library",
  8323. "autoload": {
  8324. "psr-4": {
  8325. "DeepCopy\\": "src/DeepCopy/"
  8326. },
  8327. "files": [
  8328. "src/DeepCopy/deep_copy.php"
  8329. ]
  8330. },
  8331. "notification-url": "https://packagist.org/downloads/",
  8332. "license": [
  8333. "MIT"
  8334. ],
  8335. "description": "Create deep copies (clones) of your objects",
  8336. "keywords": [
  8337. "clone",
  8338. "copy",
  8339. "duplicate",
  8340. "object",
  8341. "object graph"
  8342. ],
  8343. "funding": [
  8344. {
  8345. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8346. "type": "tidelift"
  8347. }
  8348. ],
  8349. "time": "2020-11-13T09:40:50+00:00"
  8350. },
  8351. {
  8352. "name": "nunomaduro/collision",
  8353. "version": "v4.3.0",
  8354. "source": {
  8355. "type": "git",
  8356. "url": "https://github.com/nunomaduro/collision.git",
  8357. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8358. },
  8359. "dist": {
  8360. "type": "zip",
  8361. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8362. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8363. "shasum": "",
  8364. "mirrors": [
  8365. {
  8366. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8367. "preferred": true
  8368. }
  8369. ]
  8370. },
  8371. "require": {
  8372. "facade/ignition-contracts": "^1.0",
  8373. "filp/whoops": "^2.4",
  8374. "php": "^7.2.5 || ^8.0",
  8375. "symfony/console": "^5.0"
  8376. },
  8377. "require-dev": {
  8378. "facade/ignition": "^2.0",
  8379. "fideloper/proxy": "^4.2",
  8380. "friendsofphp/php-cs-fixer": "^2.16",
  8381. "fruitcake/laravel-cors": "^1.0",
  8382. "laravel/framework": "^7.0",
  8383. "laravel/tinker": "^2.0",
  8384. "nunomaduro/larastan": "^0.6",
  8385. "orchestra/testbench": "^5.0",
  8386. "phpstan/phpstan": "^0.12.3",
  8387. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8388. },
  8389. "type": "library",
  8390. "extra": {
  8391. "laravel": {
  8392. "providers": [
  8393. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8394. ]
  8395. }
  8396. },
  8397. "autoload": {
  8398. "psr-4": {
  8399. "NunoMaduro\\Collision\\": "src/"
  8400. }
  8401. },
  8402. "notification-url": "https://packagist.org/downloads/",
  8403. "license": [
  8404. "MIT"
  8405. ],
  8406. "authors": [
  8407. {
  8408. "name": "Nuno Maduro",
  8409. "email": "enunomaduro@gmail.com"
  8410. }
  8411. ],
  8412. "description": "Cli error handling for console/command-line PHP applications.",
  8413. "keywords": [
  8414. "artisan",
  8415. "cli",
  8416. "command-line",
  8417. "console",
  8418. "error",
  8419. "handling",
  8420. "laravel",
  8421. "laravel-zero",
  8422. "php",
  8423. "symfony"
  8424. ],
  8425. "funding": [
  8426. {
  8427. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8428. "type": "custom"
  8429. },
  8430. {
  8431. "url": "https://github.com/nunomaduro",
  8432. "type": "github"
  8433. },
  8434. {
  8435. "url": "https://www.patreon.com/nunomaduro",
  8436. "type": "patreon"
  8437. }
  8438. ],
  8439. "time": "2020-10-29T15:12:23+00:00"
  8440. },
  8441. {
  8442. "name": "phar-io/manifest",
  8443. "version": "2.0.1",
  8444. "source": {
  8445. "type": "git",
  8446. "url": "https://github.com/phar-io/manifest.git",
  8447. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  8448. },
  8449. "dist": {
  8450. "type": "zip",
  8451. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8452. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8453. "shasum": "",
  8454. "mirrors": [
  8455. {
  8456. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8457. "preferred": true
  8458. }
  8459. ]
  8460. },
  8461. "require": {
  8462. "ext-dom": "*",
  8463. "ext-phar": "*",
  8464. "ext-xmlwriter": "*",
  8465. "phar-io/version": "^3.0.1",
  8466. "php": "^7.2 || ^8.0"
  8467. },
  8468. "type": "library",
  8469. "extra": {
  8470. "branch-alias": {
  8471. "dev-master": "2.0.x-dev"
  8472. }
  8473. },
  8474. "autoload": {
  8475. "classmap": [
  8476. "src/"
  8477. ]
  8478. },
  8479. "notification-url": "https://packagist.org/downloads/",
  8480. "license": [
  8481. "BSD-3-Clause"
  8482. ],
  8483. "authors": [
  8484. {
  8485. "name": "Arne Blankerts",
  8486. "email": "arne@blankerts.de",
  8487. "role": "Developer"
  8488. },
  8489. {
  8490. "name": "Sebastian Heuer",
  8491. "email": "sebastian@phpeople.de",
  8492. "role": "Developer"
  8493. },
  8494. {
  8495. "name": "Sebastian Bergmann",
  8496. "email": "sebastian@phpunit.de",
  8497. "role": "Developer"
  8498. }
  8499. ],
  8500. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8501. "time": "2020-06-27T14:33:11+00:00"
  8502. },
  8503. {
  8504. "name": "phar-io/version",
  8505. "version": "3.1.0",
  8506. "source": {
  8507. "type": "git",
  8508. "url": "https://github.com/phar-io/version.git",
  8509. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8510. },
  8511. "dist": {
  8512. "type": "zip",
  8513. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8514. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8515. "shasum": "",
  8516. "mirrors": [
  8517. {
  8518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8519. "preferred": true
  8520. }
  8521. ]
  8522. },
  8523. "require": {
  8524. "php": "^7.2 || ^8.0"
  8525. },
  8526. "type": "library",
  8527. "autoload": {
  8528. "classmap": [
  8529. "src/"
  8530. ]
  8531. },
  8532. "notification-url": "https://packagist.org/downloads/",
  8533. "license": [
  8534. "BSD-3-Clause"
  8535. ],
  8536. "authors": [
  8537. {
  8538. "name": "Arne Blankerts",
  8539. "email": "arne@blankerts.de",
  8540. "role": "Developer"
  8541. },
  8542. {
  8543. "name": "Sebastian Heuer",
  8544. "email": "sebastian@phpeople.de",
  8545. "role": "Developer"
  8546. },
  8547. {
  8548. "name": "Sebastian Bergmann",
  8549. "email": "sebastian@phpunit.de",
  8550. "role": "Developer"
  8551. }
  8552. ],
  8553. "description": "Library for handling version information and constraints",
  8554. "support": {
  8555. "issues": "https://github.com/phar-io/version/issues",
  8556. "source": "https://github.com/phar-io/version/tree/3.1.0"
  8557. },
  8558. "time": "2021-02-23T14:00:09+00:00"
  8559. },
  8560. {
  8561. "name": "phpdocumentor/reflection-common",
  8562. "version": "2.2.0",
  8563. "source": {
  8564. "type": "git",
  8565. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8566. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8567. },
  8568. "dist": {
  8569. "type": "zip",
  8570. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8571. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8572. "shasum": "",
  8573. "mirrors": [
  8574. {
  8575. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8576. "preferred": true
  8577. }
  8578. ]
  8579. },
  8580. "require": {
  8581. "php": "^7.2 || ^8.0"
  8582. },
  8583. "type": "library",
  8584. "extra": {
  8585. "branch-alias": {
  8586. "dev-2.x": "2.x-dev"
  8587. }
  8588. },
  8589. "autoload": {
  8590. "psr-4": {
  8591. "phpDocumentor\\Reflection\\": "src/"
  8592. }
  8593. },
  8594. "notification-url": "https://packagist.org/downloads/",
  8595. "license": [
  8596. "MIT"
  8597. ],
  8598. "authors": [
  8599. {
  8600. "name": "Jaap van Otterdijk",
  8601. "email": "opensource@ijaap.nl"
  8602. }
  8603. ],
  8604. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8605. "homepage": "http://www.phpdoc.org",
  8606. "keywords": [
  8607. "FQSEN",
  8608. "phpDocumentor",
  8609. "phpdoc",
  8610. "reflection",
  8611. "static analysis"
  8612. ],
  8613. "time": "2020-06-27T09:03:43+00:00"
  8614. },
  8615. {
  8616. "name": "phpdocumentor/reflection-docblock",
  8617. "version": "5.2.2",
  8618. "source": {
  8619. "type": "git",
  8620. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8621. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  8622. },
  8623. "dist": {
  8624. "type": "zip",
  8625. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  8626. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  8627. "shasum": "",
  8628. "mirrors": [
  8629. {
  8630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8631. "preferred": true
  8632. }
  8633. ]
  8634. },
  8635. "require": {
  8636. "ext-filter": "*",
  8637. "php": "^7.2 || ^8.0",
  8638. "phpdocumentor/reflection-common": "^2.2",
  8639. "phpdocumentor/type-resolver": "^1.3",
  8640. "webmozart/assert": "^1.9.1"
  8641. },
  8642. "require-dev": {
  8643. "mockery/mockery": "~1.3.2"
  8644. },
  8645. "type": "library",
  8646. "extra": {
  8647. "branch-alias": {
  8648. "dev-master": "5.x-dev"
  8649. }
  8650. },
  8651. "autoload": {
  8652. "psr-4": {
  8653. "phpDocumentor\\Reflection\\": "src"
  8654. }
  8655. },
  8656. "notification-url": "https://packagist.org/downloads/",
  8657. "license": [
  8658. "MIT"
  8659. ],
  8660. "authors": [
  8661. {
  8662. "name": "Mike van Riel",
  8663. "email": "me@mikevanriel.com"
  8664. },
  8665. {
  8666. "name": "Jaap van Otterdijk",
  8667. "email": "account@ijaap.nl"
  8668. }
  8669. ],
  8670. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8671. "time": "2020-09-03T19:13:55+00:00"
  8672. },
  8673. {
  8674. "name": "phpdocumentor/type-resolver",
  8675. "version": "1.4.0",
  8676. "source": {
  8677. "type": "git",
  8678. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8679. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  8680. },
  8681. "dist": {
  8682. "type": "zip",
  8683. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8684. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8685. "shasum": "",
  8686. "mirrors": [
  8687. {
  8688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8689. "preferred": true
  8690. }
  8691. ]
  8692. },
  8693. "require": {
  8694. "php": "^7.2 || ^8.0",
  8695. "phpdocumentor/reflection-common": "^2.0"
  8696. },
  8697. "require-dev": {
  8698. "ext-tokenizer": "*"
  8699. },
  8700. "type": "library",
  8701. "extra": {
  8702. "branch-alias": {
  8703. "dev-1.x": "1.x-dev"
  8704. }
  8705. },
  8706. "autoload": {
  8707. "psr-4": {
  8708. "phpDocumentor\\Reflection\\": "src"
  8709. }
  8710. },
  8711. "notification-url": "https://packagist.org/downloads/",
  8712. "license": [
  8713. "MIT"
  8714. ],
  8715. "authors": [
  8716. {
  8717. "name": "Mike van Riel",
  8718. "email": "me@mikevanriel.com"
  8719. }
  8720. ],
  8721. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8722. "time": "2020-09-17T18:55:26+00:00"
  8723. },
  8724. {
  8725. "name": "phpspec/prophecy",
  8726. "version": "1.13.0",
  8727. "source": {
  8728. "type": "git",
  8729. "url": "https://github.com/phpspec/prophecy.git",
  8730. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
  8731. },
  8732. "dist": {
  8733. "type": "zip",
  8734. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
  8735. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
  8736. "shasum": "",
  8737. "mirrors": [
  8738. {
  8739. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8740. "preferred": true
  8741. }
  8742. ]
  8743. },
  8744. "require": {
  8745. "doctrine/instantiator": "^1.2",
  8746. "php": "^7.2 || ~8.0, <8.1",
  8747. "phpdocumentor/reflection-docblock": "^5.2",
  8748. "sebastian/comparator": "^3.0 || ^4.0",
  8749. "sebastian/recursion-context": "^3.0 || ^4.0"
  8750. },
  8751. "require-dev": {
  8752. "phpspec/phpspec": "^6.0",
  8753. "phpunit/phpunit": "^8.0 || ^9.0"
  8754. },
  8755. "type": "library",
  8756. "extra": {
  8757. "branch-alias": {
  8758. "dev-master": "1.11.x-dev"
  8759. }
  8760. },
  8761. "autoload": {
  8762. "psr-4": {
  8763. "Prophecy\\": "src/Prophecy"
  8764. }
  8765. },
  8766. "notification-url": "https://packagist.org/downloads/",
  8767. "license": [
  8768. "MIT"
  8769. ],
  8770. "authors": [
  8771. {
  8772. "name": "Konstantin Kudryashov",
  8773. "email": "ever.zet@gmail.com",
  8774. "homepage": "http://everzet.com"
  8775. },
  8776. {
  8777. "name": "Marcello Duarte",
  8778. "email": "marcello.duarte@gmail.com"
  8779. }
  8780. ],
  8781. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8782. "homepage": "https://github.com/phpspec/prophecy",
  8783. "keywords": [
  8784. "Double",
  8785. "Dummy",
  8786. "fake",
  8787. "mock",
  8788. "spy",
  8789. "stub"
  8790. ],
  8791. "support": {
  8792. "issues": "https://github.com/phpspec/prophecy/issues",
  8793. "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
  8794. },
  8795. "time": "2021-03-17T13:42:18+00:00"
  8796. },
  8797. {
  8798. "name": "phpunit/php-code-coverage",
  8799. "version": "7.0.14",
  8800. "source": {
  8801. "type": "git",
  8802. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8803. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
  8804. },
  8805. "dist": {
  8806. "type": "zip",
  8807. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8808. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8809. "shasum": "",
  8810. "mirrors": [
  8811. {
  8812. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8813. "preferred": true
  8814. }
  8815. ]
  8816. },
  8817. "require": {
  8818. "ext-dom": "*",
  8819. "ext-xmlwriter": "*",
  8820. "php": ">=7.2",
  8821. "phpunit/php-file-iterator": "^2.0.2",
  8822. "phpunit/php-text-template": "^1.2.1",
  8823. "phpunit/php-token-stream": "^3.1.1 || ^4.0",
  8824. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  8825. "sebastian/environment": "^4.2.2",
  8826. "sebastian/version": "^2.0.1",
  8827. "theseer/tokenizer": "^1.1.3"
  8828. },
  8829. "require-dev": {
  8830. "phpunit/phpunit": "^8.2.2"
  8831. },
  8832. "suggest": {
  8833. "ext-xdebug": "^2.7.2"
  8834. },
  8835. "type": "library",
  8836. "extra": {
  8837. "branch-alias": {
  8838. "dev-master": "7.0-dev"
  8839. }
  8840. },
  8841. "autoload": {
  8842. "classmap": [
  8843. "src/"
  8844. ]
  8845. },
  8846. "notification-url": "https://packagist.org/downloads/",
  8847. "license": [
  8848. "BSD-3-Clause"
  8849. ],
  8850. "authors": [
  8851. {
  8852. "name": "Sebastian Bergmann",
  8853. "email": "sebastian@phpunit.de",
  8854. "role": "lead"
  8855. }
  8856. ],
  8857. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8858. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8859. "keywords": [
  8860. "coverage",
  8861. "testing",
  8862. "xunit"
  8863. ],
  8864. "funding": [
  8865. {
  8866. "url": "https://github.com/sebastianbergmann",
  8867. "type": "github"
  8868. }
  8869. ],
  8870. "time": "2020-12-02T13:39:03+00:00"
  8871. },
  8872. {
  8873. "name": "phpunit/php-file-iterator",
  8874. "version": "2.0.3",
  8875. "source": {
  8876. "type": "git",
  8877. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8878. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  8879. },
  8880. "dist": {
  8881. "type": "zip",
  8882. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8883. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8884. "shasum": "",
  8885. "mirrors": [
  8886. {
  8887. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8888. "preferred": true
  8889. }
  8890. ]
  8891. },
  8892. "require": {
  8893. "php": ">=7.1"
  8894. },
  8895. "require-dev": {
  8896. "phpunit/phpunit": "^8.5"
  8897. },
  8898. "type": "library",
  8899. "extra": {
  8900. "branch-alias": {
  8901. "dev-master": "2.0.x-dev"
  8902. }
  8903. },
  8904. "autoload": {
  8905. "classmap": [
  8906. "src/"
  8907. ]
  8908. },
  8909. "notification-url": "https://packagist.org/downloads/",
  8910. "license": [
  8911. "BSD-3-Clause"
  8912. ],
  8913. "authors": [
  8914. {
  8915. "name": "Sebastian Bergmann",
  8916. "email": "sebastian@phpunit.de",
  8917. "role": "lead"
  8918. }
  8919. ],
  8920. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8921. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8922. "keywords": [
  8923. "filesystem",
  8924. "iterator"
  8925. ],
  8926. "funding": [
  8927. {
  8928. "url": "https://github.com/sebastianbergmann",
  8929. "type": "github"
  8930. }
  8931. ],
  8932. "time": "2020-11-30T08:25:21+00:00"
  8933. },
  8934. {
  8935. "name": "phpunit/php-text-template",
  8936. "version": "1.2.1",
  8937. "source": {
  8938. "type": "git",
  8939. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8940. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  8941. },
  8942. "dist": {
  8943. "type": "zip",
  8944. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8945. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8946. "shasum": "",
  8947. "mirrors": [
  8948. {
  8949. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8950. "preferred": true
  8951. }
  8952. ]
  8953. },
  8954. "require": {
  8955. "php": ">=5.3.3"
  8956. },
  8957. "type": "library",
  8958. "autoload": {
  8959. "classmap": [
  8960. "src/"
  8961. ]
  8962. },
  8963. "notification-url": "https://packagist.org/downloads/",
  8964. "license": [
  8965. "BSD-3-Clause"
  8966. ],
  8967. "authors": [
  8968. {
  8969. "name": "Sebastian Bergmann",
  8970. "email": "sebastian@phpunit.de",
  8971. "role": "lead"
  8972. }
  8973. ],
  8974. "description": "Simple template engine.",
  8975. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8976. "keywords": [
  8977. "template"
  8978. ],
  8979. "time": "2015-06-21T13:50:34+00:00"
  8980. },
  8981. {
  8982. "name": "phpunit/php-timer",
  8983. "version": "2.1.3",
  8984. "source": {
  8985. "type": "git",
  8986. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8987. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  8988. },
  8989. "dist": {
  8990. "type": "zip",
  8991. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  8992. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  8993. "shasum": "",
  8994. "mirrors": [
  8995. {
  8996. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8997. "preferred": true
  8998. }
  8999. ]
  9000. },
  9001. "require": {
  9002. "php": ">=7.1"
  9003. },
  9004. "require-dev": {
  9005. "phpunit/phpunit": "^8.5"
  9006. },
  9007. "type": "library",
  9008. "extra": {
  9009. "branch-alias": {
  9010. "dev-master": "2.1-dev"
  9011. }
  9012. },
  9013. "autoload": {
  9014. "classmap": [
  9015. "src/"
  9016. ]
  9017. },
  9018. "notification-url": "https://packagist.org/downloads/",
  9019. "license": [
  9020. "BSD-3-Clause"
  9021. ],
  9022. "authors": [
  9023. {
  9024. "name": "Sebastian Bergmann",
  9025. "email": "sebastian@phpunit.de",
  9026. "role": "lead"
  9027. }
  9028. ],
  9029. "description": "Utility class for timing",
  9030. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9031. "keywords": [
  9032. "timer"
  9033. ],
  9034. "funding": [
  9035. {
  9036. "url": "https://github.com/sebastianbergmann",
  9037. "type": "github"
  9038. }
  9039. ],
  9040. "time": "2020-11-30T08:20:02+00:00"
  9041. },
  9042. {
  9043. "name": "phpunit/php-token-stream",
  9044. "version": "4.0.4",
  9045. "source": {
  9046. "type": "git",
  9047. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9048. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  9049. },
  9050. "dist": {
  9051. "type": "zip",
  9052. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9053. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9054. "shasum": "",
  9055. "mirrors": [
  9056. {
  9057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9058. "preferred": true
  9059. }
  9060. ]
  9061. },
  9062. "require": {
  9063. "ext-tokenizer": "*",
  9064. "php": "^7.3 || ^8.0"
  9065. },
  9066. "require-dev": {
  9067. "phpunit/phpunit": "^9.0"
  9068. },
  9069. "type": "library",
  9070. "extra": {
  9071. "branch-alias": {
  9072. "dev-master": "4.0-dev"
  9073. }
  9074. },
  9075. "autoload": {
  9076. "classmap": [
  9077. "src/"
  9078. ]
  9079. },
  9080. "notification-url": "https://packagist.org/downloads/",
  9081. "license": [
  9082. "BSD-3-Clause"
  9083. ],
  9084. "authors": [
  9085. {
  9086. "name": "Sebastian Bergmann",
  9087. "email": "sebastian@phpunit.de"
  9088. }
  9089. ],
  9090. "description": "Wrapper around PHP's tokenizer extension.",
  9091. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9092. "keywords": [
  9093. "tokenizer"
  9094. ],
  9095. "funding": [
  9096. {
  9097. "url": "https://github.com/sebastianbergmann",
  9098. "type": "github"
  9099. }
  9100. ],
  9101. "abandoned": true,
  9102. "time": "2020-08-04T08:28:15+00:00"
  9103. },
  9104. {
  9105. "name": "phpunit/phpunit",
  9106. "version": "8.5.15",
  9107. "source": {
  9108. "type": "git",
  9109. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9110. "reference": "038d4196d8e8cb405cd5e82cedfe413ad6eef9ef"
  9111. },
  9112. "dist": {
  9113. "type": "zip",
  9114. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/038d4196d8e8cb405cd5e82cedfe413ad6eef9ef",
  9115. "reference": "038d4196d8e8cb405cd5e82cedfe413ad6eef9ef",
  9116. "shasum": "",
  9117. "mirrors": [
  9118. {
  9119. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9120. "preferred": true
  9121. }
  9122. ]
  9123. },
  9124. "require": {
  9125. "doctrine/instantiator": "^1.3.1",
  9126. "ext-dom": "*",
  9127. "ext-json": "*",
  9128. "ext-libxml": "*",
  9129. "ext-mbstring": "*",
  9130. "ext-xml": "*",
  9131. "ext-xmlwriter": "*",
  9132. "myclabs/deep-copy": "^1.10.0",
  9133. "phar-io/manifest": "^2.0.1",
  9134. "phar-io/version": "^3.0.2",
  9135. "php": ">=7.2",
  9136. "phpspec/prophecy": "^1.10.3",
  9137. "phpunit/php-code-coverage": "^7.0.12",
  9138. "phpunit/php-file-iterator": "^2.0.2",
  9139. "phpunit/php-text-template": "^1.2.1",
  9140. "phpunit/php-timer": "^2.1.2",
  9141. "sebastian/comparator": "^3.0.2",
  9142. "sebastian/diff": "^3.0.2",
  9143. "sebastian/environment": "^4.2.3",
  9144. "sebastian/exporter": "^3.1.2",
  9145. "sebastian/global-state": "^3.0.0",
  9146. "sebastian/object-enumerator": "^3.0.3",
  9147. "sebastian/resource-operations": "^2.0.1",
  9148. "sebastian/type": "^1.1.3",
  9149. "sebastian/version": "^2.0.1"
  9150. },
  9151. "require-dev": {
  9152. "ext-pdo": "*"
  9153. },
  9154. "suggest": {
  9155. "ext-soap": "*",
  9156. "ext-xdebug": "*",
  9157. "phpunit/php-invoker": "^2.0.0"
  9158. },
  9159. "bin": [
  9160. "phpunit"
  9161. ],
  9162. "type": "library",
  9163. "extra": {
  9164. "branch-alias": {
  9165. "dev-master": "8.5-dev"
  9166. }
  9167. },
  9168. "autoload": {
  9169. "classmap": [
  9170. "src/"
  9171. ]
  9172. },
  9173. "notification-url": "https://packagist.org/downloads/",
  9174. "license": [
  9175. "BSD-3-Clause"
  9176. ],
  9177. "authors": [
  9178. {
  9179. "name": "Sebastian Bergmann",
  9180. "email": "sebastian@phpunit.de",
  9181. "role": "lead"
  9182. }
  9183. ],
  9184. "description": "The PHP Unit Testing framework.",
  9185. "homepage": "https://phpunit.de/",
  9186. "keywords": [
  9187. "phpunit",
  9188. "testing",
  9189. "xunit"
  9190. ],
  9191. "support": {
  9192. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9193. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.15"
  9194. },
  9195. "funding": [
  9196. {
  9197. "url": "https://phpunit.de/donate.html",
  9198. "type": "custom"
  9199. },
  9200. {
  9201. "url": "https://github.com/sebastianbergmann",
  9202. "type": "github"
  9203. }
  9204. ],
  9205. "time": "2021-03-17T07:27:54+00:00"
  9206. },
  9207. {
  9208. "name": "sebastian/code-unit-reverse-lookup",
  9209. "version": "1.0.2",
  9210. "source": {
  9211. "type": "git",
  9212. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9213. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9214. },
  9215. "dist": {
  9216. "type": "zip",
  9217. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9218. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9219. "shasum": "",
  9220. "mirrors": [
  9221. {
  9222. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9223. "preferred": true
  9224. }
  9225. ]
  9226. },
  9227. "require": {
  9228. "php": ">=5.6"
  9229. },
  9230. "require-dev": {
  9231. "phpunit/phpunit": "^8.5"
  9232. },
  9233. "type": "library",
  9234. "extra": {
  9235. "branch-alias": {
  9236. "dev-master": "1.0.x-dev"
  9237. }
  9238. },
  9239. "autoload": {
  9240. "classmap": [
  9241. "src/"
  9242. ]
  9243. },
  9244. "notification-url": "https://packagist.org/downloads/",
  9245. "license": [
  9246. "BSD-3-Clause"
  9247. ],
  9248. "authors": [
  9249. {
  9250. "name": "Sebastian Bergmann",
  9251. "email": "sebastian@phpunit.de"
  9252. }
  9253. ],
  9254. "description": "Looks up which function or method a line of code belongs to",
  9255. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9256. "funding": [
  9257. {
  9258. "url": "https://github.com/sebastianbergmann",
  9259. "type": "github"
  9260. }
  9261. ],
  9262. "time": "2020-11-30T08:15:22+00:00"
  9263. },
  9264. {
  9265. "name": "sebastian/comparator",
  9266. "version": "3.0.3",
  9267. "source": {
  9268. "type": "git",
  9269. "url": "https://github.com/sebastianbergmann/comparator.git",
  9270. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9271. },
  9272. "dist": {
  9273. "type": "zip",
  9274. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9275. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9276. "shasum": "",
  9277. "mirrors": [
  9278. {
  9279. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9280. "preferred": true
  9281. }
  9282. ]
  9283. },
  9284. "require": {
  9285. "php": ">=7.1",
  9286. "sebastian/diff": "^3.0",
  9287. "sebastian/exporter": "^3.1"
  9288. },
  9289. "require-dev": {
  9290. "phpunit/phpunit": "^8.5"
  9291. },
  9292. "type": "library",
  9293. "extra": {
  9294. "branch-alias": {
  9295. "dev-master": "3.0-dev"
  9296. }
  9297. },
  9298. "autoload": {
  9299. "classmap": [
  9300. "src/"
  9301. ]
  9302. },
  9303. "notification-url": "https://packagist.org/downloads/",
  9304. "license": [
  9305. "BSD-3-Clause"
  9306. ],
  9307. "authors": [
  9308. {
  9309. "name": "Sebastian Bergmann",
  9310. "email": "sebastian@phpunit.de"
  9311. },
  9312. {
  9313. "name": "Jeff Welch",
  9314. "email": "whatthejeff@gmail.com"
  9315. },
  9316. {
  9317. "name": "Volker Dusch",
  9318. "email": "github@wallbash.com"
  9319. },
  9320. {
  9321. "name": "Bernhard Schussek",
  9322. "email": "bschussek@2bepublished.at"
  9323. }
  9324. ],
  9325. "description": "Provides the functionality to compare PHP values for equality",
  9326. "homepage": "https://github.com/sebastianbergmann/comparator",
  9327. "keywords": [
  9328. "comparator",
  9329. "compare",
  9330. "equality"
  9331. ],
  9332. "funding": [
  9333. {
  9334. "url": "https://github.com/sebastianbergmann",
  9335. "type": "github"
  9336. }
  9337. ],
  9338. "time": "2020-11-30T08:04:30+00:00"
  9339. },
  9340. {
  9341. "name": "sebastian/diff",
  9342. "version": "3.0.3",
  9343. "source": {
  9344. "type": "git",
  9345. "url": "https://github.com/sebastianbergmann/diff.git",
  9346. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9347. },
  9348. "dist": {
  9349. "type": "zip",
  9350. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9351. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9352. "shasum": "",
  9353. "mirrors": [
  9354. {
  9355. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9356. "preferred": true
  9357. }
  9358. ]
  9359. },
  9360. "require": {
  9361. "php": ">=7.1"
  9362. },
  9363. "require-dev": {
  9364. "phpunit/phpunit": "^7.5 || ^8.0",
  9365. "symfony/process": "^2 || ^3.3 || ^4"
  9366. },
  9367. "type": "library",
  9368. "extra": {
  9369. "branch-alias": {
  9370. "dev-master": "3.0-dev"
  9371. }
  9372. },
  9373. "autoload": {
  9374. "classmap": [
  9375. "src/"
  9376. ]
  9377. },
  9378. "notification-url": "https://packagist.org/downloads/",
  9379. "license": [
  9380. "BSD-3-Clause"
  9381. ],
  9382. "authors": [
  9383. {
  9384. "name": "Sebastian Bergmann",
  9385. "email": "sebastian@phpunit.de"
  9386. },
  9387. {
  9388. "name": "Kore Nordmann",
  9389. "email": "mail@kore-nordmann.de"
  9390. }
  9391. ],
  9392. "description": "Diff implementation",
  9393. "homepage": "https://github.com/sebastianbergmann/diff",
  9394. "keywords": [
  9395. "diff",
  9396. "udiff",
  9397. "unidiff",
  9398. "unified diff"
  9399. ],
  9400. "funding": [
  9401. {
  9402. "url": "https://github.com/sebastianbergmann",
  9403. "type": "github"
  9404. }
  9405. ],
  9406. "time": "2020-11-30T07:59:04+00:00"
  9407. },
  9408. {
  9409. "name": "sebastian/environment",
  9410. "version": "4.2.4",
  9411. "source": {
  9412. "type": "git",
  9413. "url": "https://github.com/sebastianbergmann/environment.git",
  9414. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9415. },
  9416. "dist": {
  9417. "type": "zip",
  9418. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9419. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9420. "shasum": "",
  9421. "mirrors": [
  9422. {
  9423. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9424. "preferred": true
  9425. }
  9426. ]
  9427. },
  9428. "require": {
  9429. "php": ">=7.1"
  9430. },
  9431. "require-dev": {
  9432. "phpunit/phpunit": "^7.5"
  9433. },
  9434. "suggest": {
  9435. "ext-posix": "*"
  9436. },
  9437. "type": "library",
  9438. "extra": {
  9439. "branch-alias": {
  9440. "dev-master": "4.2-dev"
  9441. }
  9442. },
  9443. "autoload": {
  9444. "classmap": [
  9445. "src/"
  9446. ]
  9447. },
  9448. "notification-url": "https://packagist.org/downloads/",
  9449. "license": [
  9450. "BSD-3-Clause"
  9451. ],
  9452. "authors": [
  9453. {
  9454. "name": "Sebastian Bergmann",
  9455. "email": "sebastian@phpunit.de"
  9456. }
  9457. ],
  9458. "description": "Provides functionality to handle HHVM/PHP environments",
  9459. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9460. "keywords": [
  9461. "Xdebug",
  9462. "environment",
  9463. "hhvm"
  9464. ],
  9465. "funding": [
  9466. {
  9467. "url": "https://github.com/sebastianbergmann",
  9468. "type": "github"
  9469. }
  9470. ],
  9471. "time": "2020-11-30T07:53:42+00:00"
  9472. },
  9473. {
  9474. "name": "sebastian/exporter",
  9475. "version": "3.1.3",
  9476. "source": {
  9477. "type": "git",
  9478. "url": "https://github.com/sebastianbergmann/exporter.git",
  9479. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  9480. },
  9481. "dist": {
  9482. "type": "zip",
  9483. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  9484. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  9485. "shasum": "",
  9486. "mirrors": [
  9487. {
  9488. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9489. "preferred": true
  9490. }
  9491. ]
  9492. },
  9493. "require": {
  9494. "php": ">=7.0",
  9495. "sebastian/recursion-context": "^3.0"
  9496. },
  9497. "require-dev": {
  9498. "ext-mbstring": "*",
  9499. "phpunit/phpunit": "^6.0"
  9500. },
  9501. "type": "library",
  9502. "extra": {
  9503. "branch-alias": {
  9504. "dev-master": "3.1.x-dev"
  9505. }
  9506. },
  9507. "autoload": {
  9508. "classmap": [
  9509. "src/"
  9510. ]
  9511. },
  9512. "notification-url": "https://packagist.org/downloads/",
  9513. "license": [
  9514. "BSD-3-Clause"
  9515. ],
  9516. "authors": [
  9517. {
  9518. "name": "Sebastian Bergmann",
  9519. "email": "sebastian@phpunit.de"
  9520. },
  9521. {
  9522. "name": "Jeff Welch",
  9523. "email": "whatthejeff@gmail.com"
  9524. },
  9525. {
  9526. "name": "Volker Dusch",
  9527. "email": "github@wallbash.com"
  9528. },
  9529. {
  9530. "name": "Adam Harvey",
  9531. "email": "aharvey@php.net"
  9532. },
  9533. {
  9534. "name": "Bernhard Schussek",
  9535. "email": "bschussek@gmail.com"
  9536. }
  9537. ],
  9538. "description": "Provides the functionality to export PHP variables for visualization",
  9539. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9540. "keywords": [
  9541. "export",
  9542. "exporter"
  9543. ],
  9544. "funding": [
  9545. {
  9546. "url": "https://github.com/sebastianbergmann",
  9547. "type": "github"
  9548. }
  9549. ],
  9550. "time": "2020-11-30T07:47:53+00:00"
  9551. },
  9552. {
  9553. "name": "sebastian/global-state",
  9554. "version": "3.0.1",
  9555. "source": {
  9556. "type": "git",
  9557. "url": "https://github.com/sebastianbergmann/global-state.git",
  9558. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9559. },
  9560. "dist": {
  9561. "type": "zip",
  9562. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9563. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9564. "shasum": "",
  9565. "mirrors": [
  9566. {
  9567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9568. "preferred": true
  9569. }
  9570. ]
  9571. },
  9572. "require": {
  9573. "php": ">=7.2",
  9574. "sebastian/object-reflector": "^1.1.1",
  9575. "sebastian/recursion-context": "^3.0"
  9576. },
  9577. "require-dev": {
  9578. "ext-dom": "*",
  9579. "phpunit/phpunit": "^8.0"
  9580. },
  9581. "suggest": {
  9582. "ext-uopz": "*"
  9583. },
  9584. "type": "library",
  9585. "extra": {
  9586. "branch-alias": {
  9587. "dev-master": "3.0-dev"
  9588. }
  9589. },
  9590. "autoload": {
  9591. "classmap": [
  9592. "src/"
  9593. ]
  9594. },
  9595. "notification-url": "https://packagist.org/downloads/",
  9596. "license": [
  9597. "BSD-3-Clause"
  9598. ],
  9599. "authors": [
  9600. {
  9601. "name": "Sebastian Bergmann",
  9602. "email": "sebastian@phpunit.de"
  9603. }
  9604. ],
  9605. "description": "Snapshotting of global state",
  9606. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9607. "keywords": [
  9608. "global state"
  9609. ],
  9610. "funding": [
  9611. {
  9612. "url": "https://github.com/sebastianbergmann",
  9613. "type": "github"
  9614. }
  9615. ],
  9616. "time": "2020-11-30T07:43:24+00:00"
  9617. },
  9618. {
  9619. "name": "sebastian/object-enumerator",
  9620. "version": "3.0.4",
  9621. "source": {
  9622. "type": "git",
  9623. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9624. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9625. },
  9626. "dist": {
  9627. "type": "zip",
  9628. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9629. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9630. "shasum": "",
  9631. "mirrors": [
  9632. {
  9633. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9634. "preferred": true
  9635. }
  9636. ]
  9637. },
  9638. "require": {
  9639. "php": ">=7.0",
  9640. "sebastian/object-reflector": "^1.1.1",
  9641. "sebastian/recursion-context": "^3.0"
  9642. },
  9643. "require-dev": {
  9644. "phpunit/phpunit": "^6.0"
  9645. },
  9646. "type": "library",
  9647. "extra": {
  9648. "branch-alias": {
  9649. "dev-master": "3.0.x-dev"
  9650. }
  9651. },
  9652. "autoload": {
  9653. "classmap": [
  9654. "src/"
  9655. ]
  9656. },
  9657. "notification-url": "https://packagist.org/downloads/",
  9658. "license": [
  9659. "BSD-3-Clause"
  9660. ],
  9661. "authors": [
  9662. {
  9663. "name": "Sebastian Bergmann",
  9664. "email": "sebastian@phpunit.de"
  9665. }
  9666. ],
  9667. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9668. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9669. "funding": [
  9670. {
  9671. "url": "https://github.com/sebastianbergmann",
  9672. "type": "github"
  9673. }
  9674. ],
  9675. "time": "2020-11-30T07:40:27+00:00"
  9676. },
  9677. {
  9678. "name": "sebastian/object-reflector",
  9679. "version": "1.1.2",
  9680. "source": {
  9681. "type": "git",
  9682. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9683. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  9684. },
  9685. "dist": {
  9686. "type": "zip",
  9687. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9688. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9689. "shasum": "",
  9690. "mirrors": [
  9691. {
  9692. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9693. "preferred": true
  9694. }
  9695. ]
  9696. },
  9697. "require": {
  9698. "php": ">=7.0"
  9699. },
  9700. "require-dev": {
  9701. "phpunit/phpunit": "^6.0"
  9702. },
  9703. "type": "library",
  9704. "extra": {
  9705. "branch-alias": {
  9706. "dev-master": "1.1-dev"
  9707. }
  9708. },
  9709. "autoload": {
  9710. "classmap": [
  9711. "src/"
  9712. ]
  9713. },
  9714. "notification-url": "https://packagist.org/downloads/",
  9715. "license": [
  9716. "BSD-3-Clause"
  9717. ],
  9718. "authors": [
  9719. {
  9720. "name": "Sebastian Bergmann",
  9721. "email": "sebastian@phpunit.de"
  9722. }
  9723. ],
  9724. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9725. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9726. "funding": [
  9727. {
  9728. "url": "https://github.com/sebastianbergmann",
  9729. "type": "github"
  9730. }
  9731. ],
  9732. "time": "2020-11-30T07:37:18+00:00"
  9733. },
  9734. {
  9735. "name": "sebastian/recursion-context",
  9736. "version": "3.0.1",
  9737. "source": {
  9738. "type": "git",
  9739. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9740. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  9741. },
  9742. "dist": {
  9743. "type": "zip",
  9744. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9745. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9746. "shasum": "",
  9747. "mirrors": [
  9748. {
  9749. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9750. "preferred": true
  9751. }
  9752. ]
  9753. },
  9754. "require": {
  9755. "php": ">=7.0"
  9756. },
  9757. "require-dev": {
  9758. "phpunit/phpunit": "^6.0"
  9759. },
  9760. "type": "library",
  9761. "extra": {
  9762. "branch-alias": {
  9763. "dev-master": "3.0.x-dev"
  9764. }
  9765. },
  9766. "autoload": {
  9767. "classmap": [
  9768. "src/"
  9769. ]
  9770. },
  9771. "notification-url": "https://packagist.org/downloads/",
  9772. "license": [
  9773. "BSD-3-Clause"
  9774. ],
  9775. "authors": [
  9776. {
  9777. "name": "Sebastian Bergmann",
  9778. "email": "sebastian@phpunit.de"
  9779. },
  9780. {
  9781. "name": "Jeff Welch",
  9782. "email": "whatthejeff@gmail.com"
  9783. },
  9784. {
  9785. "name": "Adam Harvey",
  9786. "email": "aharvey@php.net"
  9787. }
  9788. ],
  9789. "description": "Provides functionality to recursively process PHP variables",
  9790. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9791. "funding": [
  9792. {
  9793. "url": "https://github.com/sebastianbergmann",
  9794. "type": "github"
  9795. }
  9796. ],
  9797. "time": "2020-11-30T07:34:24+00:00"
  9798. },
  9799. {
  9800. "name": "sebastian/resource-operations",
  9801. "version": "2.0.2",
  9802. "source": {
  9803. "type": "git",
  9804. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9805. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  9806. },
  9807. "dist": {
  9808. "type": "zip",
  9809. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9810. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9811. "shasum": "",
  9812. "mirrors": [
  9813. {
  9814. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9815. "preferred": true
  9816. }
  9817. ]
  9818. },
  9819. "require": {
  9820. "php": ">=7.1"
  9821. },
  9822. "type": "library",
  9823. "extra": {
  9824. "branch-alias": {
  9825. "dev-master": "2.0-dev"
  9826. }
  9827. },
  9828. "autoload": {
  9829. "classmap": [
  9830. "src/"
  9831. ]
  9832. },
  9833. "notification-url": "https://packagist.org/downloads/",
  9834. "license": [
  9835. "BSD-3-Clause"
  9836. ],
  9837. "authors": [
  9838. {
  9839. "name": "Sebastian Bergmann",
  9840. "email": "sebastian@phpunit.de"
  9841. }
  9842. ],
  9843. "description": "Provides a list of PHP built-in functions that operate on resources",
  9844. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9845. "funding": [
  9846. {
  9847. "url": "https://github.com/sebastianbergmann",
  9848. "type": "github"
  9849. }
  9850. ],
  9851. "time": "2020-11-30T07:30:19+00:00"
  9852. },
  9853. {
  9854. "name": "sebastian/type",
  9855. "version": "1.1.4",
  9856. "source": {
  9857. "type": "git",
  9858. "url": "https://github.com/sebastianbergmann/type.git",
  9859. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  9860. },
  9861. "dist": {
  9862. "type": "zip",
  9863. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  9864. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  9865. "shasum": "",
  9866. "mirrors": [
  9867. {
  9868. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9869. "preferred": true
  9870. }
  9871. ]
  9872. },
  9873. "require": {
  9874. "php": ">=7.2"
  9875. },
  9876. "require-dev": {
  9877. "phpunit/phpunit": "^8.2"
  9878. },
  9879. "type": "library",
  9880. "extra": {
  9881. "branch-alias": {
  9882. "dev-master": "1.1-dev"
  9883. }
  9884. },
  9885. "autoload": {
  9886. "classmap": [
  9887. "src/"
  9888. ]
  9889. },
  9890. "notification-url": "https://packagist.org/downloads/",
  9891. "license": [
  9892. "BSD-3-Clause"
  9893. ],
  9894. "authors": [
  9895. {
  9896. "name": "Sebastian Bergmann",
  9897. "email": "sebastian@phpunit.de",
  9898. "role": "lead"
  9899. }
  9900. ],
  9901. "description": "Collection of value objects that represent the types of the PHP type system",
  9902. "homepage": "https://github.com/sebastianbergmann/type",
  9903. "funding": [
  9904. {
  9905. "url": "https://github.com/sebastianbergmann",
  9906. "type": "github"
  9907. }
  9908. ],
  9909. "time": "2020-11-30T07:25:11+00:00"
  9910. },
  9911. {
  9912. "name": "sebastian/version",
  9913. "version": "2.0.1",
  9914. "source": {
  9915. "type": "git",
  9916. "url": "https://github.com/sebastianbergmann/version.git",
  9917. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  9918. },
  9919. "dist": {
  9920. "type": "zip",
  9921. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  9922. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  9923. "shasum": "",
  9924. "mirrors": [
  9925. {
  9926. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9927. "preferred": true
  9928. }
  9929. ]
  9930. },
  9931. "require": {
  9932. "php": ">=5.6"
  9933. },
  9934. "type": "library",
  9935. "extra": {
  9936. "branch-alias": {
  9937. "dev-master": "2.0.x-dev"
  9938. }
  9939. },
  9940. "autoload": {
  9941. "classmap": [
  9942. "src/"
  9943. ]
  9944. },
  9945. "notification-url": "https://packagist.org/downloads/",
  9946. "license": [
  9947. "BSD-3-Clause"
  9948. ],
  9949. "authors": [
  9950. {
  9951. "name": "Sebastian Bergmann",
  9952. "email": "sebastian@phpunit.de",
  9953. "role": "lead"
  9954. }
  9955. ],
  9956. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9957. "homepage": "https://github.com/sebastianbergmann/version",
  9958. "time": "2016-10-03T07:35:21+00:00"
  9959. },
  9960. {
  9961. "name": "symfony/debug",
  9962. "version": "v4.4.22",
  9963. "source": {
  9964. "type": "git",
  9965. "url": "https://github.com/symfony/debug.git",
  9966. "reference": "45b2136377cca5f10af858968d6079a482bca473"
  9967. },
  9968. "dist": {
  9969. "type": "zip",
  9970. "url": "https://api.github.com/repos/symfony/debug/zipball/45b2136377cca5f10af858968d6079a482bca473",
  9971. "reference": "45b2136377cca5f10af858968d6079a482bca473",
  9972. "shasum": "",
  9973. "mirrors": [
  9974. {
  9975. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9976. "preferred": true
  9977. }
  9978. ]
  9979. },
  9980. "require": {
  9981. "php": ">=7.1.3",
  9982. "psr/log": "~1.0",
  9983. "symfony/polyfill-php80": "^1.15"
  9984. },
  9985. "conflict": {
  9986. "symfony/http-kernel": "<3.4"
  9987. },
  9988. "require-dev": {
  9989. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  9990. },
  9991. "type": "library",
  9992. "autoload": {
  9993. "psr-4": {
  9994. "Symfony\\Component\\Debug\\": ""
  9995. },
  9996. "exclude-from-classmap": [
  9997. "/Tests/"
  9998. ]
  9999. },
  10000. "notification-url": "https://packagist.org/downloads/",
  10001. "license": [
  10002. "MIT"
  10003. ],
  10004. "authors": [
  10005. {
  10006. "name": "Fabien Potencier",
  10007. "email": "fabien@symfony.com"
  10008. },
  10009. {
  10010. "name": "Symfony Community",
  10011. "homepage": "https://symfony.com/contributors"
  10012. }
  10013. ],
  10014. "description": "Provides tools to ease debugging PHP code",
  10015. "homepage": "https://symfony.com",
  10016. "support": {
  10017. "source": "https://github.com/symfony/debug/tree/v4.4.22"
  10018. },
  10019. "funding": [
  10020. {
  10021. "url": "https://symfony.com/sponsor",
  10022. "type": "custom"
  10023. },
  10024. {
  10025. "url": "https://github.com/fabpot",
  10026. "type": "github"
  10027. },
  10028. {
  10029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10030. "type": "tidelift"
  10031. }
  10032. ],
  10033. "time": "2021-04-02T07:50:12+00:00"
  10034. },
  10035. {
  10036. "name": "theseer/tokenizer",
  10037. "version": "1.2.0",
  10038. "source": {
  10039. "type": "git",
  10040. "url": "https://github.com/theseer/tokenizer.git",
  10041. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  10042. },
  10043. "dist": {
  10044. "type": "zip",
  10045. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  10046. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  10047. "shasum": "",
  10048. "mirrors": [
  10049. {
  10050. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10051. "preferred": true
  10052. }
  10053. ]
  10054. },
  10055. "require": {
  10056. "ext-dom": "*",
  10057. "ext-tokenizer": "*",
  10058. "ext-xmlwriter": "*",
  10059. "php": "^7.2 || ^8.0"
  10060. },
  10061. "type": "library",
  10062. "autoload": {
  10063. "classmap": [
  10064. "src/"
  10065. ]
  10066. },
  10067. "notification-url": "https://packagist.org/downloads/",
  10068. "license": [
  10069. "BSD-3-Clause"
  10070. ],
  10071. "authors": [
  10072. {
  10073. "name": "Arne Blankerts",
  10074. "email": "arne@blankerts.de",
  10075. "role": "Developer"
  10076. }
  10077. ],
  10078. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10079. "funding": [
  10080. {
  10081. "url": "https://github.com/theseer",
  10082. "type": "github"
  10083. }
  10084. ],
  10085. "time": "2020-07-12T23:59:07+00:00"
  10086. },
  10087. {
  10088. "name": "webmozart/assert",
  10089. "version": "1.10.0",
  10090. "source": {
  10091. "type": "git",
  10092. "url": "https://github.com/webmozarts/assert.git",
  10093. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  10094. },
  10095. "dist": {
  10096. "type": "zip",
  10097. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  10098. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  10099. "shasum": "",
  10100. "mirrors": [
  10101. {
  10102. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10103. "preferred": true
  10104. }
  10105. ]
  10106. },
  10107. "require": {
  10108. "php": "^7.2 || ^8.0",
  10109. "symfony/polyfill-ctype": "^1.8"
  10110. },
  10111. "conflict": {
  10112. "phpstan/phpstan": "<0.12.20",
  10113. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10114. },
  10115. "require-dev": {
  10116. "phpunit/phpunit": "^8.5.13"
  10117. },
  10118. "type": "library",
  10119. "extra": {
  10120. "branch-alias": {
  10121. "dev-master": "1.10-dev"
  10122. }
  10123. },
  10124. "autoload": {
  10125. "psr-4": {
  10126. "Webmozart\\Assert\\": "src/"
  10127. }
  10128. },
  10129. "notification-url": "https://packagist.org/downloads/",
  10130. "license": [
  10131. "MIT"
  10132. ],
  10133. "authors": [
  10134. {
  10135. "name": "Bernhard Schussek",
  10136. "email": "bschussek@gmail.com"
  10137. }
  10138. ],
  10139. "description": "Assertions to validate method input/output with nice error messages.",
  10140. "keywords": [
  10141. "assert",
  10142. "check",
  10143. "validate"
  10144. ],
  10145. "support": {
  10146. "issues": "https://github.com/webmozarts/assert/issues",
  10147. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  10148. },
  10149. "time": "2021-03-09T10:59:23+00:00"
  10150. }
  10151. ],
  10152. "aliases": [],
  10153. "minimum-stability": "dev",
  10154. "stability-flags": [],
  10155. "prefer-stable": true,
  10156. "prefer-lowest": false,
  10157. "platform": {
  10158. "php": "^7.2.14",
  10159. "ext-bcmath": "*",
  10160. "ext-json": "*",
  10161. "ext-mbstring": "*",
  10162. "ext-openssl": "*",
  10163. "ext-pdo": "*"
  10164. },
  10165. "platform-dev": [],
  10166. "platform-overrides": {
  10167. "ext-pcntl": "7.2",
  10168. "ext-posix": "7.2"
  10169. },
  10170. "plugin-api-version": "1.1.0"
  10171. }