composer.lock 275 KB

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