composer.lock 278 KB

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