composer.lock 288 KB

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