composer.lock 334 KB

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