composer.lock 238 KB

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