composer.lock 247 KB

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