composer.lock 256 KB

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