composer.lock 264 KB

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