composer.lock 239 KB

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