composer.lock 249 KB

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