composer.lock 250 KB

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