composer.lock 271 KB

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