composer.lock 243 KB

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