composer.lock 298 KB

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