composer.lock 279 KB

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