composer.lock 262 KB

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