composer.lock 261 KB

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