composer.lock 301 KB

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