composer.lock 226 KB

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