composer.lock 261 KB

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