composer.lock 232 KB

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