composer.lock 379 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528
  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": "5dc450e032b783ab6f83fb3d7348eb9e",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.4",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  20. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  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.3",
  31. "ext-iconv": "*",
  32. "php": "^7.1 || ^8.0"
  33. },
  34. "require-dev": {
  35. "phly/keep-a-changelog": "^1.4",
  36. "phpunit/phpunit": "^7 | ^8 | ^9",
  37. "squizlabs/php_codesniffer": "^3.4"
  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": "https://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. "support": {
  63. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  64. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.4"
  65. },
  66. "time": "2021-06-18T13:26:35+00:00"
  67. },
  68. {
  69. "name": "brick/math",
  70. "version": "0.9.3",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/brick/math.git",
  74. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  79. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "ext-json": "*",
  90. "php": "^7.1 || ^8.0"
  91. },
  92. "require-dev": {
  93. "php-coveralls/php-coveralls": "^2.2",
  94. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  95. "vimeo/psalm": "4.9.2"
  96. },
  97. "type": "library",
  98. "autoload": {
  99. "psr-4": {
  100. "Brick\\Math\\": "src/"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "MIT"
  106. ],
  107. "description": "Arbitrary-precision arithmetic library",
  108. "keywords": [
  109. "Arbitrary-precision",
  110. "BigInteger",
  111. "BigRational",
  112. "arithmetic",
  113. "bigdecimal",
  114. "bignum",
  115. "brick",
  116. "math"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/brick/math/issues",
  120. "source": "https://github.com/brick/math/tree/0.9.3"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://github.com/BenMorel",
  125. "type": "github"
  126. },
  127. {
  128. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  129. "type": "tidelift"
  130. }
  131. ],
  132. "time": "2021-08-15T20:50:18+00:00"
  133. },
  134. {
  135. "name": "cakephp/chronos",
  136. "version": "2.3.0",
  137. "source": {
  138. "type": "git",
  139. "url": "https://github.com/cakephp/chronos.git",
  140. "reference": "3ecd6e7ae191c676570cd1bed51fd561de4606dd"
  141. },
  142. "dist": {
  143. "type": "zip",
  144. "url": "https://api.github.com/repos/cakephp/chronos/zipball/3ecd6e7ae191c676570cd1bed51fd561de4606dd",
  145. "reference": "3ecd6e7ae191c676570cd1bed51fd561de4606dd",
  146. "shasum": "",
  147. "mirrors": [
  148. {
  149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  150. "preferred": true
  151. }
  152. ]
  153. },
  154. "require": {
  155. "php": ">=7.2"
  156. },
  157. "require-dev": {
  158. "cakephp/cakephp-codesniffer": "^4.5",
  159. "phpunit/phpunit": "^8.0 || ^9.0"
  160. },
  161. "type": "library",
  162. "autoload": {
  163. "psr-4": {
  164. "Cake\\Chronos\\": "src/"
  165. },
  166. "files": [
  167. "src/carbon_compat.php"
  168. ]
  169. },
  170. "notification-url": "https://packagist.org/downloads/",
  171. "license": [
  172. "MIT"
  173. ],
  174. "authors": [
  175. {
  176. "name": "Brian Nesbitt",
  177. "email": "brian@nesbot.com",
  178. "homepage": "http://nesbot.com"
  179. },
  180. {
  181. "name": "The CakePHP Team",
  182. "homepage": "http://cakephp.org"
  183. }
  184. ],
  185. "description": "A simple API extension for DateTime.",
  186. "homepage": "http://cakephp.org",
  187. "keywords": [
  188. "date",
  189. "datetime",
  190. "time"
  191. ],
  192. "support": {
  193. "irc": "irc://irc.freenode.org/cakephp",
  194. "issues": "https://github.com/cakephp/chronos/issues",
  195. "source": "https://github.com/cakephp/chronos"
  196. },
  197. "time": "2021-10-17T02:44:05+00:00"
  198. },
  199. {
  200. "name": "dasprid/enum",
  201. "version": "1.0.3",
  202. "source": {
  203. "type": "git",
  204. "url": "https://github.com/DASPRiD/Enum.git",
  205. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  206. },
  207. "dist": {
  208. "type": "zip",
  209. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  210. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  211. "shasum": "",
  212. "mirrors": [
  213. {
  214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  215. "preferred": true
  216. }
  217. ]
  218. },
  219. "require-dev": {
  220. "phpunit/phpunit": "^7 | ^8 | ^9",
  221. "squizlabs/php_codesniffer": "^3.4"
  222. },
  223. "type": "library",
  224. "autoload": {
  225. "psr-4": {
  226. "DASPRiD\\Enum\\": "src/"
  227. }
  228. },
  229. "notification-url": "https://packagist.org/downloads/",
  230. "license": [
  231. "BSD-2-Clause"
  232. ],
  233. "authors": [
  234. {
  235. "name": "Ben Scholzen 'DASPRiD'",
  236. "email": "mail@dasprids.de",
  237. "homepage": "https://dasprids.de/",
  238. "role": "Developer"
  239. }
  240. ],
  241. "description": "PHP 7.1 enum implementation",
  242. "keywords": [
  243. "enum",
  244. "map"
  245. ],
  246. "support": {
  247. "issues": "https://github.com/DASPRiD/Enum/issues",
  248. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  249. },
  250. "time": "2020-10-02T16:03:48+00:00"
  251. },
  252. {
  253. "name": "doctrine/cache",
  254. "version": "2.1.1",
  255. "source": {
  256. "type": "git",
  257. "url": "https://github.com/doctrine/cache.git",
  258. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce"
  259. },
  260. "dist": {
  261. "type": "zip",
  262. "url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce",
  263. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce",
  264. "shasum": "",
  265. "mirrors": [
  266. {
  267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  268. "preferred": true
  269. }
  270. ]
  271. },
  272. "require": {
  273. "php": "~7.1 || ^8.0"
  274. },
  275. "conflict": {
  276. "doctrine/common": ">2.2,<2.4"
  277. },
  278. "require-dev": {
  279. "alcaeus/mongo-php-adapter": "^1.1",
  280. "cache/integration-tests": "dev-master",
  281. "doctrine/coding-standard": "^8.0",
  282. "mongodb/mongodb": "^1.1",
  283. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  284. "predis/predis": "~1.0",
  285. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  286. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  287. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  288. },
  289. "suggest": {
  290. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  291. },
  292. "type": "library",
  293. "autoload": {
  294. "psr-4": {
  295. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  296. }
  297. },
  298. "notification-url": "https://packagist.org/downloads/",
  299. "license": [
  300. "MIT"
  301. ],
  302. "authors": [
  303. {
  304. "name": "Guilherme Blanco",
  305. "email": "guilhermeblanco@gmail.com"
  306. },
  307. {
  308. "name": "Roman Borschel",
  309. "email": "roman@code-factory.org"
  310. },
  311. {
  312. "name": "Benjamin Eberlei",
  313. "email": "kontakt@beberlei.de"
  314. },
  315. {
  316. "name": "Jonathan Wage",
  317. "email": "jonwage@gmail.com"
  318. },
  319. {
  320. "name": "Johannes Schmitt",
  321. "email": "schmittjoh@gmail.com"
  322. }
  323. ],
  324. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  325. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  326. "keywords": [
  327. "abstraction",
  328. "apcu",
  329. "cache",
  330. "caching",
  331. "couchdb",
  332. "memcached",
  333. "php",
  334. "redis",
  335. "xcache"
  336. ],
  337. "support": {
  338. "issues": "https://github.com/doctrine/cache/issues",
  339. "source": "https://github.com/doctrine/cache/tree/2.1.1"
  340. },
  341. "funding": [
  342. {
  343. "url": "https://www.doctrine-project.org/sponsorship.html",
  344. "type": "custom"
  345. },
  346. {
  347. "url": "https://www.patreon.com/phpdoctrine",
  348. "type": "patreon"
  349. },
  350. {
  351. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  352. "type": "tidelift"
  353. }
  354. ],
  355. "time": "2021-07-17T14:49:29+00:00"
  356. },
  357. {
  358. "name": "doctrine/dbal",
  359. "version": "2.13.4",
  360. "source": {
  361. "type": "git",
  362. "url": "https://github.com/doctrine/dbal.git",
  363. "reference": "2411a55a2a628e6d8dd598388ab13474802c7b6e"
  364. },
  365. "dist": {
  366. "type": "zip",
  367. "url": "https://api.github.com/repos/doctrine/dbal/zipball/2411a55a2a628e6d8dd598388ab13474802c7b6e",
  368. "reference": "2411a55a2a628e6d8dd598388ab13474802c7b6e",
  369. "shasum": "",
  370. "mirrors": [
  371. {
  372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  373. "preferred": true
  374. }
  375. ]
  376. },
  377. "require": {
  378. "doctrine/cache": "^1.0|^2.0",
  379. "doctrine/deprecations": "^0.5.3",
  380. "doctrine/event-manager": "^1.0",
  381. "ext-pdo": "*",
  382. "php": "^7.1 || ^8"
  383. },
  384. "require-dev": {
  385. "doctrine/coding-standard": "9.0.0",
  386. "jetbrains/phpstorm-stubs": "2021.1",
  387. "phpstan/phpstan": "0.12.99",
  388. "phpunit/phpunit": "^7.5.20|^8.5|9.5.10",
  389. "psalm/plugin-phpunit": "0.16.1",
  390. "squizlabs/php_codesniffer": "3.6.0",
  391. "symfony/cache": "^4.4",
  392. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  393. "vimeo/psalm": "4.10.0"
  394. },
  395. "suggest": {
  396. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  397. },
  398. "bin": [
  399. "bin/doctrine-dbal"
  400. ],
  401. "type": "library",
  402. "autoload": {
  403. "psr-4": {
  404. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  405. }
  406. },
  407. "notification-url": "https://packagist.org/downloads/",
  408. "license": [
  409. "MIT"
  410. ],
  411. "authors": [
  412. {
  413. "name": "Guilherme Blanco",
  414. "email": "guilhermeblanco@gmail.com"
  415. },
  416. {
  417. "name": "Roman Borschel",
  418. "email": "roman@code-factory.org"
  419. },
  420. {
  421. "name": "Benjamin Eberlei",
  422. "email": "kontakt@beberlei.de"
  423. },
  424. {
  425. "name": "Jonathan Wage",
  426. "email": "jonwage@gmail.com"
  427. }
  428. ],
  429. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  430. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  431. "keywords": [
  432. "abstraction",
  433. "database",
  434. "db2",
  435. "dbal",
  436. "mariadb",
  437. "mssql",
  438. "mysql",
  439. "oci8",
  440. "oracle",
  441. "pdo",
  442. "pgsql",
  443. "postgresql",
  444. "queryobject",
  445. "sasql",
  446. "sql",
  447. "sqlanywhere",
  448. "sqlite",
  449. "sqlserver",
  450. "sqlsrv"
  451. ],
  452. "support": {
  453. "issues": "https://github.com/doctrine/dbal/issues",
  454. "source": "https://github.com/doctrine/dbal/tree/2.13.4"
  455. },
  456. "funding": [
  457. {
  458. "url": "https://www.doctrine-project.org/sponsorship.html",
  459. "type": "custom"
  460. },
  461. {
  462. "url": "https://www.patreon.com/phpdoctrine",
  463. "type": "patreon"
  464. },
  465. {
  466. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  467. "type": "tidelift"
  468. }
  469. ],
  470. "time": "2021-10-02T15:59:26+00:00"
  471. },
  472. {
  473. "name": "doctrine/deprecations",
  474. "version": "v0.5.3",
  475. "source": {
  476. "type": "git",
  477. "url": "https://github.com/doctrine/deprecations.git",
  478. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  479. },
  480. "dist": {
  481. "type": "zip",
  482. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  483. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  484. "shasum": "",
  485. "mirrors": [
  486. {
  487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  488. "preferred": true
  489. }
  490. ]
  491. },
  492. "require": {
  493. "php": "^7.1|^8.0"
  494. },
  495. "require-dev": {
  496. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  497. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  498. "psr/log": "^1.0"
  499. },
  500. "suggest": {
  501. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  502. },
  503. "type": "library",
  504. "autoload": {
  505. "psr-4": {
  506. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  507. }
  508. },
  509. "notification-url": "https://packagist.org/downloads/",
  510. "license": [
  511. "MIT"
  512. ],
  513. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  514. "homepage": "https://www.doctrine-project.org/",
  515. "support": {
  516. "issues": "https://github.com/doctrine/deprecations/issues",
  517. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  518. },
  519. "time": "2021-03-21T12:59:47+00:00"
  520. },
  521. {
  522. "name": "doctrine/event-manager",
  523. "version": "1.1.1",
  524. "source": {
  525. "type": "git",
  526. "url": "https://github.com/doctrine/event-manager.git",
  527. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  528. },
  529. "dist": {
  530. "type": "zip",
  531. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  532. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  533. "shasum": "",
  534. "mirrors": [
  535. {
  536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  537. "preferred": true
  538. }
  539. ]
  540. },
  541. "require": {
  542. "php": "^7.1 || ^8.0"
  543. },
  544. "conflict": {
  545. "doctrine/common": "<2.9@dev"
  546. },
  547. "require-dev": {
  548. "doctrine/coding-standard": "^6.0",
  549. "phpunit/phpunit": "^7.0"
  550. },
  551. "type": "library",
  552. "extra": {
  553. "branch-alias": {
  554. "dev-master": "1.0.x-dev"
  555. }
  556. },
  557. "autoload": {
  558. "psr-4": {
  559. "Doctrine\\Common\\": "lib/Doctrine/Common"
  560. }
  561. },
  562. "notification-url": "https://packagist.org/downloads/",
  563. "license": [
  564. "MIT"
  565. ],
  566. "authors": [
  567. {
  568. "name": "Guilherme Blanco",
  569. "email": "guilhermeblanco@gmail.com"
  570. },
  571. {
  572. "name": "Roman Borschel",
  573. "email": "roman@code-factory.org"
  574. },
  575. {
  576. "name": "Benjamin Eberlei",
  577. "email": "kontakt@beberlei.de"
  578. },
  579. {
  580. "name": "Jonathan Wage",
  581. "email": "jonwage@gmail.com"
  582. },
  583. {
  584. "name": "Johannes Schmitt",
  585. "email": "schmittjoh@gmail.com"
  586. },
  587. {
  588. "name": "Marco Pivetta",
  589. "email": "ocramius@gmail.com"
  590. }
  591. ],
  592. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  593. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  594. "keywords": [
  595. "event",
  596. "event dispatcher",
  597. "event manager",
  598. "event system",
  599. "events"
  600. ],
  601. "support": {
  602. "issues": "https://github.com/doctrine/event-manager/issues",
  603. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  604. },
  605. "funding": [
  606. {
  607. "url": "https://www.doctrine-project.org/sponsorship.html",
  608. "type": "custom"
  609. },
  610. {
  611. "url": "https://www.patreon.com/phpdoctrine",
  612. "type": "patreon"
  613. },
  614. {
  615. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  616. "type": "tidelift"
  617. }
  618. ],
  619. "time": "2020-05-29T18:28:51+00:00"
  620. },
  621. {
  622. "name": "doctrine/inflector",
  623. "version": "2.0.4",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/doctrine/inflector.git",
  627. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  632. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  633. "shasum": "",
  634. "mirrors": [
  635. {
  636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  637. "preferred": true
  638. }
  639. ]
  640. },
  641. "require": {
  642. "php": "^7.2 || ^8.0"
  643. },
  644. "require-dev": {
  645. "doctrine/coding-standard": "^8.2",
  646. "phpstan/phpstan": "^0.12",
  647. "phpstan/phpstan-phpunit": "^0.12",
  648. "phpstan/phpstan-strict-rules": "^0.12",
  649. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  650. "vimeo/psalm": "^4.10"
  651. },
  652. "type": "library",
  653. "autoload": {
  654. "psr-4": {
  655. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  656. }
  657. },
  658. "notification-url": "https://packagist.org/downloads/",
  659. "license": [
  660. "MIT"
  661. ],
  662. "authors": [
  663. {
  664. "name": "Guilherme Blanco",
  665. "email": "guilhermeblanco@gmail.com"
  666. },
  667. {
  668. "name": "Roman Borschel",
  669. "email": "roman@code-factory.org"
  670. },
  671. {
  672. "name": "Benjamin Eberlei",
  673. "email": "kontakt@beberlei.de"
  674. },
  675. {
  676. "name": "Jonathan Wage",
  677. "email": "jonwage@gmail.com"
  678. },
  679. {
  680. "name": "Johannes Schmitt",
  681. "email": "schmittjoh@gmail.com"
  682. }
  683. ],
  684. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  685. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  686. "keywords": [
  687. "inflection",
  688. "inflector",
  689. "lowercase",
  690. "manipulation",
  691. "php",
  692. "plural",
  693. "singular",
  694. "strings",
  695. "uppercase",
  696. "words"
  697. ],
  698. "support": {
  699. "issues": "https://github.com/doctrine/inflector/issues",
  700. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  701. },
  702. "funding": [
  703. {
  704. "url": "https://www.doctrine-project.org/sponsorship.html",
  705. "type": "custom"
  706. },
  707. {
  708. "url": "https://www.patreon.com/phpdoctrine",
  709. "type": "patreon"
  710. },
  711. {
  712. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  713. "type": "tidelift"
  714. }
  715. ],
  716. "time": "2021-10-22T20:16:43+00:00"
  717. },
  718. {
  719. "name": "doctrine/lexer",
  720. "version": "1.2.1",
  721. "source": {
  722. "type": "git",
  723. "url": "https://github.com/doctrine/lexer.git",
  724. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  725. },
  726. "dist": {
  727. "type": "zip",
  728. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  729. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  730. "shasum": "",
  731. "mirrors": [
  732. {
  733. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  734. "preferred": true
  735. }
  736. ]
  737. },
  738. "require": {
  739. "php": "^7.2 || ^8.0"
  740. },
  741. "require-dev": {
  742. "doctrine/coding-standard": "^6.0",
  743. "phpstan/phpstan": "^0.11.8",
  744. "phpunit/phpunit": "^8.2"
  745. },
  746. "type": "library",
  747. "extra": {
  748. "branch-alias": {
  749. "dev-master": "1.2.x-dev"
  750. }
  751. },
  752. "autoload": {
  753. "psr-4": {
  754. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  755. }
  756. },
  757. "notification-url": "https://packagist.org/downloads/",
  758. "license": [
  759. "MIT"
  760. ],
  761. "authors": [
  762. {
  763. "name": "Guilherme Blanco",
  764. "email": "guilhermeblanco@gmail.com"
  765. },
  766. {
  767. "name": "Roman Borschel",
  768. "email": "roman@code-factory.org"
  769. },
  770. {
  771. "name": "Johannes Schmitt",
  772. "email": "schmittjoh@gmail.com"
  773. }
  774. ],
  775. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  776. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  777. "keywords": [
  778. "annotations",
  779. "docblock",
  780. "lexer",
  781. "parser",
  782. "php"
  783. ],
  784. "support": {
  785. "issues": "https://github.com/doctrine/lexer/issues",
  786. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  787. },
  788. "funding": [
  789. {
  790. "url": "https://www.doctrine-project.org/sponsorship.html",
  791. "type": "custom"
  792. },
  793. {
  794. "url": "https://www.patreon.com/phpdoctrine",
  795. "type": "patreon"
  796. },
  797. {
  798. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  799. "type": "tidelift"
  800. }
  801. ],
  802. "time": "2020-05-25T17:44:05+00:00"
  803. },
  804. {
  805. "name": "dragonmantank/cron-expression",
  806. "version": "v2.3.1",
  807. "source": {
  808. "type": "git",
  809. "url": "https://github.com/dragonmantank/cron-expression.git",
  810. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  811. },
  812. "dist": {
  813. "type": "zip",
  814. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  815. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  816. "shasum": "",
  817. "mirrors": [
  818. {
  819. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  820. "preferred": true
  821. }
  822. ]
  823. },
  824. "require": {
  825. "php": "^7.0|^8.0"
  826. },
  827. "require-dev": {
  828. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  829. },
  830. "type": "library",
  831. "extra": {
  832. "branch-alias": {
  833. "dev-master": "2.3-dev"
  834. }
  835. },
  836. "autoload": {
  837. "psr-4": {
  838. "Cron\\": "src/Cron/"
  839. }
  840. },
  841. "notification-url": "https://packagist.org/downloads/",
  842. "license": [
  843. "MIT"
  844. ],
  845. "authors": [
  846. {
  847. "name": "Michael Dowling",
  848. "email": "mtdowling@gmail.com",
  849. "homepage": "https://github.com/mtdowling"
  850. },
  851. {
  852. "name": "Chris Tankersley",
  853. "email": "chris@ctankersley.com",
  854. "homepage": "https://github.com/dragonmantank"
  855. }
  856. ],
  857. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  858. "keywords": [
  859. "cron",
  860. "schedule"
  861. ],
  862. "support": {
  863. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  864. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  865. },
  866. "funding": [
  867. {
  868. "url": "https://github.com/dragonmantank",
  869. "type": "github"
  870. }
  871. ],
  872. "time": "2020-10-13T00:52:37+00:00"
  873. },
  874. {
  875. "name": "egulias/email-validator",
  876. "version": "2.1.25",
  877. "source": {
  878. "type": "git",
  879. "url": "https://github.com/egulias/EmailValidator.git",
  880. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  881. },
  882. "dist": {
  883. "type": "zip",
  884. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  885. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  886. "shasum": "",
  887. "mirrors": [
  888. {
  889. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  890. "preferred": true
  891. }
  892. ]
  893. },
  894. "require": {
  895. "doctrine/lexer": "^1.0.1",
  896. "php": ">=5.5",
  897. "symfony/polyfill-intl-idn": "^1.10"
  898. },
  899. "require-dev": {
  900. "dominicsayers/isemail": "^3.0.7",
  901. "phpunit/phpunit": "^4.8.36|^7.5.15",
  902. "satooshi/php-coveralls": "^1.0.1"
  903. },
  904. "suggest": {
  905. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  906. },
  907. "type": "library",
  908. "extra": {
  909. "branch-alias": {
  910. "dev-master": "2.1.x-dev"
  911. }
  912. },
  913. "autoload": {
  914. "psr-4": {
  915. "Egulias\\EmailValidator\\": "src"
  916. }
  917. },
  918. "notification-url": "https://packagist.org/downloads/",
  919. "license": [
  920. "MIT"
  921. ],
  922. "authors": [
  923. {
  924. "name": "Eduardo Gulias Davis"
  925. }
  926. ],
  927. "description": "A library for validating emails against several RFCs",
  928. "homepage": "https://github.com/egulias/EmailValidator",
  929. "keywords": [
  930. "email",
  931. "emailvalidation",
  932. "emailvalidator",
  933. "validation",
  934. "validator"
  935. ],
  936. "support": {
  937. "issues": "https://github.com/egulias/EmailValidator/issues",
  938. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  939. },
  940. "funding": [
  941. {
  942. "url": "https://github.com/egulias",
  943. "type": "github"
  944. }
  945. ],
  946. "time": "2020-12-29T14:50:06+00:00"
  947. },
  948. {
  949. "name": "endroid/qr-code",
  950. "version": "3.9.7",
  951. "source": {
  952. "type": "git",
  953. "url": "https://github.com/endroid/qr-code.git",
  954. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  955. },
  956. "dist": {
  957. "type": "zip",
  958. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  959. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  960. "shasum": "",
  961. "mirrors": [
  962. {
  963. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  964. "preferred": true
  965. }
  966. ]
  967. },
  968. "require": {
  969. "bacon/bacon-qr-code": "^2.0",
  970. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  971. "myclabs/php-enum": "^1.5",
  972. "php": "^7.3||^8.0",
  973. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  974. "symfony/property-access": "^3.4||^4.4||^5.0"
  975. },
  976. "require-dev": {
  977. "endroid/quality": "^1.5.2",
  978. "setasign/fpdf": "^1.8"
  979. },
  980. "suggest": {
  981. "ext-gd": "Required for generating PNG images",
  982. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  983. "setasign/fpdf": "Required to use the FPDF writer.",
  984. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  985. },
  986. "type": "library",
  987. "extra": {
  988. "branch-alias": {
  989. "dev-master": "3.x-dev"
  990. }
  991. },
  992. "autoload": {
  993. "psr-4": {
  994. "Endroid\\QrCode\\": "src/"
  995. }
  996. },
  997. "notification-url": "https://packagist.org/downloads/",
  998. "license": [
  999. "MIT"
  1000. ],
  1001. "authors": [
  1002. {
  1003. "name": "Jeroen van den Enden",
  1004. "email": "info@endroid.nl"
  1005. }
  1006. ],
  1007. "description": "Endroid QR Code",
  1008. "homepage": "https://github.com/endroid/qr-code",
  1009. "keywords": [
  1010. "bundle",
  1011. "code",
  1012. "endroid",
  1013. "php",
  1014. "qr",
  1015. "qrcode"
  1016. ],
  1017. "support": {
  1018. "issues": "https://github.com/endroid/qr-code/issues",
  1019. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1020. },
  1021. "funding": [
  1022. {
  1023. "url": "https://github.com/endroid",
  1024. "type": "github"
  1025. }
  1026. ],
  1027. "time": "2021-04-20T19:10:54+00:00"
  1028. },
  1029. {
  1030. "name": "ezyang/htmlpurifier",
  1031. "version": "v4.13.0",
  1032. "source": {
  1033. "type": "git",
  1034. "url": "https://github.com/ezyang/htmlpurifier.git",
  1035. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  1036. },
  1037. "dist": {
  1038. "type": "zip",
  1039. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1040. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1041. "shasum": "",
  1042. "mirrors": [
  1043. {
  1044. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1045. "preferred": true
  1046. }
  1047. ]
  1048. },
  1049. "require": {
  1050. "php": ">=5.2"
  1051. },
  1052. "require-dev": {
  1053. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1054. },
  1055. "type": "library",
  1056. "autoload": {
  1057. "psr-0": {
  1058. "HTMLPurifier": "library/"
  1059. },
  1060. "files": [
  1061. "library/HTMLPurifier.composer.php"
  1062. ],
  1063. "exclude-from-classmap": [
  1064. "/library/HTMLPurifier/Language/"
  1065. ]
  1066. },
  1067. "notification-url": "https://packagist.org/downloads/",
  1068. "license": [
  1069. "LGPL-2.1-or-later"
  1070. ],
  1071. "authors": [
  1072. {
  1073. "name": "Edward Z. Yang",
  1074. "email": "admin@htmlpurifier.org",
  1075. "homepage": "http://ezyang.com"
  1076. }
  1077. ],
  1078. "description": "Standards compliant HTML filter written in PHP",
  1079. "homepage": "http://htmlpurifier.org/",
  1080. "keywords": [
  1081. "html"
  1082. ],
  1083. "support": {
  1084. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1085. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1086. },
  1087. "time": "2020-06-29T00:56:53+00:00"
  1088. },
  1089. {
  1090. "name": "facade/flare-client-php",
  1091. "version": "1.9.1",
  1092. "source": {
  1093. "type": "git",
  1094. "url": "https://github.com/facade/flare-client-php.git",
  1095. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  1096. },
  1097. "dist": {
  1098. "type": "zip",
  1099. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  1100. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  1101. "shasum": "",
  1102. "mirrors": [
  1103. {
  1104. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1105. "preferred": true
  1106. }
  1107. ]
  1108. },
  1109. "require": {
  1110. "facade/ignition-contracts": "~1.0",
  1111. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  1112. "php": "^7.1|^8.0",
  1113. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  1114. "symfony/mime": "^3.4|^4.0|^5.1",
  1115. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  1116. },
  1117. "require-dev": {
  1118. "friendsofphp/php-cs-fixer": "^2.14",
  1119. "phpunit/phpunit": "^7.5.16",
  1120. "spatie/phpunit-snapshot-assertions": "^2.0"
  1121. },
  1122. "type": "library",
  1123. "extra": {
  1124. "branch-alias": {
  1125. "dev-master": "1.0-dev"
  1126. }
  1127. },
  1128. "autoload": {
  1129. "psr-4": {
  1130. "Facade\\FlareClient\\": "src"
  1131. },
  1132. "files": [
  1133. "src/helpers.php"
  1134. ]
  1135. },
  1136. "notification-url": "https://packagist.org/downloads/",
  1137. "license": [
  1138. "MIT"
  1139. ],
  1140. "description": "Send PHP errors to Flare",
  1141. "homepage": "https://github.com/facade/flare-client-php",
  1142. "keywords": [
  1143. "exception",
  1144. "facade",
  1145. "flare",
  1146. "reporting"
  1147. ],
  1148. "support": {
  1149. "issues": "https://github.com/facade/flare-client-php/issues",
  1150. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  1151. },
  1152. "funding": [
  1153. {
  1154. "url": "https://github.com/spatie",
  1155. "type": "github"
  1156. }
  1157. ],
  1158. "time": "2021-09-13T12:16:46+00:00"
  1159. },
  1160. {
  1161. "name": "facade/ignition",
  1162. "version": "2.15.0",
  1163. "source": {
  1164. "type": "git",
  1165. "url": "https://github.com/facade/ignition.git",
  1166. "reference": "3ee6e94815462bcf09bca0efc1c9069685df8da3"
  1167. },
  1168. "dist": {
  1169. "type": "zip",
  1170. "url": "https://api.github.com/repos/facade/ignition/zipball/3ee6e94815462bcf09bca0efc1c9069685df8da3",
  1171. "reference": "3ee6e94815462bcf09bca0efc1c9069685df8da3",
  1172. "shasum": "",
  1173. "mirrors": [
  1174. {
  1175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1176. "preferred": true
  1177. }
  1178. ]
  1179. },
  1180. "require": {
  1181. "ext-curl": "*",
  1182. "ext-json": "*",
  1183. "ext-mbstring": "*",
  1184. "facade/flare-client-php": "^1.9.1",
  1185. "facade/ignition-contracts": "^1.0.2",
  1186. "illuminate/support": "^7.0|^8.0",
  1187. "monolog/monolog": "^2.0",
  1188. "php": "^7.2.5|^8.0",
  1189. "symfony/console": "^5.0",
  1190. "symfony/var-dumper": "^5.0"
  1191. },
  1192. "require-dev": {
  1193. "friendsofphp/php-cs-fixer": "^2.14",
  1194. "mockery/mockery": "^1.3",
  1195. "orchestra/testbench": "^5.0|^6.0",
  1196. "psalm/plugin-laravel": "^1.2"
  1197. },
  1198. "suggest": {
  1199. "laravel/telescope": "^3.1"
  1200. },
  1201. "type": "library",
  1202. "extra": {
  1203. "branch-alias": {
  1204. "dev-master": "2.x-dev"
  1205. },
  1206. "laravel": {
  1207. "providers": [
  1208. "Facade\\Ignition\\IgnitionServiceProvider"
  1209. ],
  1210. "aliases": {
  1211. "Flare": "Facade\\Ignition\\Facades\\Flare"
  1212. }
  1213. }
  1214. },
  1215. "autoload": {
  1216. "psr-4": {
  1217. "Facade\\Ignition\\": "src"
  1218. },
  1219. "files": [
  1220. "src/helpers.php"
  1221. ]
  1222. },
  1223. "notification-url": "https://packagist.org/downloads/",
  1224. "license": [
  1225. "MIT"
  1226. ],
  1227. "description": "A beautiful error page for Laravel applications.",
  1228. "homepage": "https://github.com/facade/ignition",
  1229. "keywords": [
  1230. "error",
  1231. "flare",
  1232. "laravel",
  1233. "page"
  1234. ],
  1235. "support": {
  1236. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  1237. "forum": "https://twitter.com/flareappio",
  1238. "issues": "https://github.com/facade/ignition/issues",
  1239. "source": "https://github.com/facade/ignition"
  1240. },
  1241. "time": "2021-10-11T15:24:06+00:00"
  1242. },
  1243. {
  1244. "name": "facade/ignition-contracts",
  1245. "version": "1.0.2",
  1246. "source": {
  1247. "type": "git",
  1248. "url": "https://github.com/facade/ignition-contracts.git",
  1249. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1250. },
  1251. "dist": {
  1252. "type": "zip",
  1253. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1254. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1255. "shasum": "",
  1256. "mirrors": [
  1257. {
  1258. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1259. "preferred": true
  1260. }
  1261. ]
  1262. },
  1263. "require": {
  1264. "php": "^7.3|^8.0"
  1265. },
  1266. "require-dev": {
  1267. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1268. "phpunit/phpunit": "^9.3.11",
  1269. "vimeo/psalm": "^3.17.1"
  1270. },
  1271. "type": "library",
  1272. "autoload": {
  1273. "psr-4": {
  1274. "Facade\\IgnitionContracts\\": "src"
  1275. }
  1276. },
  1277. "notification-url": "https://packagist.org/downloads/",
  1278. "license": [
  1279. "MIT"
  1280. ],
  1281. "authors": [
  1282. {
  1283. "name": "Freek Van der Herten",
  1284. "email": "freek@spatie.be",
  1285. "homepage": "https://flareapp.io",
  1286. "role": "Developer"
  1287. }
  1288. ],
  1289. "description": "Solution contracts for Ignition",
  1290. "homepage": "https://github.com/facade/ignition-contracts",
  1291. "keywords": [
  1292. "contracts",
  1293. "flare",
  1294. "ignition"
  1295. ],
  1296. "support": {
  1297. "issues": "https://github.com/facade/ignition-contracts/issues",
  1298. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1299. },
  1300. "time": "2020-10-16T08:27:54+00:00"
  1301. },
  1302. {
  1303. "name": "fideloper/proxy",
  1304. "version": "4.4.1",
  1305. "source": {
  1306. "type": "git",
  1307. "url": "https://github.com/fideloper/TrustedProxy.git",
  1308. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1309. },
  1310. "dist": {
  1311. "type": "zip",
  1312. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1313. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1314. "shasum": "",
  1315. "mirrors": [
  1316. {
  1317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1318. "preferred": true
  1319. }
  1320. ]
  1321. },
  1322. "require": {
  1323. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1324. "php": ">=5.4.0"
  1325. },
  1326. "require-dev": {
  1327. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1328. "mockery/mockery": "^1.0",
  1329. "phpunit/phpunit": "^6.0"
  1330. },
  1331. "type": "library",
  1332. "extra": {
  1333. "laravel": {
  1334. "providers": [
  1335. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1336. ]
  1337. }
  1338. },
  1339. "autoload": {
  1340. "psr-4": {
  1341. "Fideloper\\Proxy\\": "src/"
  1342. }
  1343. },
  1344. "notification-url": "https://packagist.org/downloads/",
  1345. "license": [
  1346. "MIT"
  1347. ],
  1348. "authors": [
  1349. {
  1350. "name": "Chris Fidao",
  1351. "email": "fideloper@gmail.com"
  1352. }
  1353. ],
  1354. "description": "Set trusted proxies for Laravel",
  1355. "keywords": [
  1356. "load balancing",
  1357. "proxy",
  1358. "trusted proxy"
  1359. ],
  1360. "support": {
  1361. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1362. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1363. },
  1364. "time": "2020-10-22T13:48:01+00:00"
  1365. },
  1366. {
  1367. "name": "firebase/php-jwt",
  1368. "version": "v5.4.0",
  1369. "source": {
  1370. "type": "git",
  1371. "url": "https://github.com/firebase/php-jwt.git",
  1372. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2"
  1373. },
  1374. "dist": {
  1375. "type": "zip",
  1376. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d2113d9b2e0e349796e72d2a63cf9319100382d2",
  1377. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2",
  1378. "shasum": "",
  1379. "mirrors": [
  1380. {
  1381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1382. "preferred": true
  1383. }
  1384. ]
  1385. },
  1386. "require": {
  1387. "php": ">=5.3.0"
  1388. },
  1389. "require-dev": {
  1390. "phpunit/phpunit": ">=4.8 <=9"
  1391. },
  1392. "suggest": {
  1393. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1394. },
  1395. "type": "library",
  1396. "autoload": {
  1397. "psr-4": {
  1398. "Firebase\\JWT\\": "src"
  1399. }
  1400. },
  1401. "notification-url": "https://packagist.org/downloads/",
  1402. "license": [
  1403. "BSD-3-Clause"
  1404. ],
  1405. "authors": [
  1406. {
  1407. "name": "Neuman Vong",
  1408. "email": "neuman+pear@twilio.com",
  1409. "role": "Developer"
  1410. },
  1411. {
  1412. "name": "Anant Narayanan",
  1413. "email": "anant@php.net",
  1414. "role": "Developer"
  1415. }
  1416. ],
  1417. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1418. "homepage": "https://github.com/firebase/php-jwt",
  1419. "keywords": [
  1420. "jwt",
  1421. "php"
  1422. ],
  1423. "support": {
  1424. "issues": "https://github.com/firebase/php-jwt/issues",
  1425. "source": "https://github.com/firebase/php-jwt/tree/v5.4.0"
  1426. },
  1427. "time": "2021-06-23T19:00:23+00:00"
  1428. },
  1429. {
  1430. "name": "guzzlehttp/guzzle",
  1431. "version": "6.5.5",
  1432. "source": {
  1433. "type": "git",
  1434. "url": "https://github.com/guzzle/guzzle.git",
  1435. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1436. },
  1437. "dist": {
  1438. "type": "zip",
  1439. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1440. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1441. "shasum": "",
  1442. "mirrors": [
  1443. {
  1444. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1445. "preferred": true
  1446. }
  1447. ]
  1448. },
  1449. "require": {
  1450. "ext-json": "*",
  1451. "guzzlehttp/promises": "^1.0",
  1452. "guzzlehttp/psr7": "^1.6.1",
  1453. "php": ">=5.5",
  1454. "symfony/polyfill-intl-idn": "^1.17.0"
  1455. },
  1456. "require-dev": {
  1457. "ext-curl": "*",
  1458. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1459. "psr/log": "^1.1"
  1460. },
  1461. "suggest": {
  1462. "psr/log": "Required for using the Log middleware"
  1463. },
  1464. "type": "library",
  1465. "extra": {
  1466. "branch-alias": {
  1467. "dev-master": "6.5-dev"
  1468. }
  1469. },
  1470. "autoload": {
  1471. "psr-4": {
  1472. "GuzzleHttp\\": "src/"
  1473. },
  1474. "files": [
  1475. "src/functions_include.php"
  1476. ]
  1477. },
  1478. "notification-url": "https://packagist.org/downloads/",
  1479. "license": [
  1480. "MIT"
  1481. ],
  1482. "authors": [
  1483. {
  1484. "name": "Michael Dowling",
  1485. "email": "mtdowling@gmail.com",
  1486. "homepage": "https://github.com/mtdowling"
  1487. }
  1488. ],
  1489. "description": "Guzzle is a PHP HTTP client library",
  1490. "homepage": "http://guzzlephp.org/",
  1491. "keywords": [
  1492. "client",
  1493. "curl",
  1494. "framework",
  1495. "http",
  1496. "http client",
  1497. "rest",
  1498. "web service"
  1499. ],
  1500. "support": {
  1501. "issues": "https://github.com/guzzle/guzzle/issues",
  1502. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1503. },
  1504. "time": "2020-06-16T21:01:06+00:00"
  1505. },
  1506. {
  1507. "name": "guzzlehttp/promises",
  1508. "version": "1.5.1",
  1509. "source": {
  1510. "type": "git",
  1511. "url": "https://github.com/guzzle/promises.git",
  1512. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  1513. },
  1514. "dist": {
  1515. "type": "zip",
  1516. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1517. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1518. "shasum": "",
  1519. "mirrors": [
  1520. {
  1521. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1522. "preferred": true
  1523. }
  1524. ]
  1525. },
  1526. "require": {
  1527. "php": ">=5.5"
  1528. },
  1529. "require-dev": {
  1530. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1531. },
  1532. "type": "library",
  1533. "extra": {
  1534. "branch-alias": {
  1535. "dev-master": "1.5-dev"
  1536. }
  1537. },
  1538. "autoload": {
  1539. "psr-4": {
  1540. "GuzzleHttp\\Promise\\": "src/"
  1541. },
  1542. "files": [
  1543. "src/functions_include.php"
  1544. ]
  1545. },
  1546. "notification-url": "https://packagist.org/downloads/",
  1547. "license": [
  1548. "MIT"
  1549. ],
  1550. "authors": [
  1551. {
  1552. "name": "Graham Campbell",
  1553. "email": "hello@gjcampbell.co.uk",
  1554. "homepage": "https://github.com/GrahamCampbell"
  1555. },
  1556. {
  1557. "name": "Michael Dowling",
  1558. "email": "mtdowling@gmail.com",
  1559. "homepage": "https://github.com/mtdowling"
  1560. },
  1561. {
  1562. "name": "Tobias Nyholm",
  1563. "email": "tobias.nyholm@gmail.com",
  1564. "homepage": "https://github.com/Nyholm"
  1565. },
  1566. {
  1567. "name": "Tobias Schultze",
  1568. "email": "webmaster@tubo-world.de",
  1569. "homepage": "https://github.com/Tobion"
  1570. }
  1571. ],
  1572. "description": "Guzzle promises library",
  1573. "keywords": [
  1574. "promise"
  1575. ],
  1576. "support": {
  1577. "issues": "https://github.com/guzzle/promises/issues",
  1578. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  1579. },
  1580. "funding": [
  1581. {
  1582. "url": "https://github.com/GrahamCampbell",
  1583. "type": "github"
  1584. },
  1585. {
  1586. "url": "https://github.com/Nyholm",
  1587. "type": "github"
  1588. },
  1589. {
  1590. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1591. "type": "tidelift"
  1592. }
  1593. ],
  1594. "time": "2021-10-22T20:56:57+00:00"
  1595. },
  1596. {
  1597. "name": "guzzlehttp/psr7",
  1598. "version": "1.8.3",
  1599. "source": {
  1600. "type": "git",
  1601. "url": "https://github.com/guzzle/psr7.git",
  1602. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85"
  1603. },
  1604. "dist": {
  1605. "type": "zip",
  1606. "url": "https://api.github.com/repos/guzzle/psr7/zipball/1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  1607. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  1608. "shasum": "",
  1609. "mirrors": [
  1610. {
  1611. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1612. "preferred": true
  1613. }
  1614. ]
  1615. },
  1616. "require": {
  1617. "php": ">=5.4.0",
  1618. "psr/http-message": "~1.0",
  1619. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1620. },
  1621. "provide": {
  1622. "psr/http-message-implementation": "1.0"
  1623. },
  1624. "require-dev": {
  1625. "ext-zlib": "*",
  1626. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1627. },
  1628. "suggest": {
  1629. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1630. },
  1631. "type": "library",
  1632. "extra": {
  1633. "branch-alias": {
  1634. "dev-master": "1.7-dev"
  1635. }
  1636. },
  1637. "autoload": {
  1638. "psr-4": {
  1639. "GuzzleHttp\\Psr7\\": "src/"
  1640. },
  1641. "files": [
  1642. "src/functions_include.php"
  1643. ]
  1644. },
  1645. "notification-url": "https://packagist.org/downloads/",
  1646. "license": [
  1647. "MIT"
  1648. ],
  1649. "authors": [
  1650. {
  1651. "name": "Graham Campbell",
  1652. "email": "hello@gjcampbell.co.uk",
  1653. "homepage": "https://github.com/GrahamCampbell"
  1654. },
  1655. {
  1656. "name": "Michael Dowling",
  1657. "email": "mtdowling@gmail.com",
  1658. "homepage": "https://github.com/mtdowling"
  1659. },
  1660. {
  1661. "name": "George Mponos",
  1662. "email": "gmponos@gmail.com",
  1663. "homepage": "https://github.com/gmponos"
  1664. },
  1665. {
  1666. "name": "Tobias Nyholm",
  1667. "email": "tobias.nyholm@gmail.com",
  1668. "homepage": "https://github.com/Nyholm"
  1669. },
  1670. {
  1671. "name": "Márk Sági-Kazár",
  1672. "email": "mark.sagikazar@gmail.com",
  1673. "homepage": "https://github.com/sagikazarmark"
  1674. },
  1675. {
  1676. "name": "Tobias Schultze",
  1677. "email": "webmaster@tubo-world.de",
  1678. "homepage": "https://github.com/Tobion"
  1679. }
  1680. ],
  1681. "description": "PSR-7 message implementation that also provides common utility methods",
  1682. "keywords": [
  1683. "http",
  1684. "message",
  1685. "psr-7",
  1686. "request",
  1687. "response",
  1688. "stream",
  1689. "uri",
  1690. "url"
  1691. ],
  1692. "support": {
  1693. "issues": "https://github.com/guzzle/psr7/issues",
  1694. "source": "https://github.com/guzzle/psr7/tree/1.8.3"
  1695. },
  1696. "funding": [
  1697. {
  1698. "url": "https://github.com/GrahamCampbell",
  1699. "type": "github"
  1700. },
  1701. {
  1702. "url": "https://github.com/Nyholm",
  1703. "type": "github"
  1704. },
  1705. {
  1706. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1707. "type": "tidelift"
  1708. }
  1709. ],
  1710. "time": "2021-10-05T13:56:00+00:00"
  1711. },
  1712. {
  1713. "name": "intervention/image",
  1714. "version": "2.7.0",
  1715. "source": {
  1716. "type": "git",
  1717. "url": "https://github.com/Intervention/image.git",
  1718. "reference": "9a8cc99d30415ec0b3f7649e1647d03a55698545"
  1719. },
  1720. "dist": {
  1721. "type": "zip",
  1722. "url": "https://api.github.com/repos/Intervention/image/zipball/9a8cc99d30415ec0b3f7649e1647d03a55698545",
  1723. "reference": "9a8cc99d30415ec0b3f7649e1647d03a55698545",
  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. "ext-fileinfo": "*",
  1734. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1735. "php": ">=5.4.0"
  1736. },
  1737. "require-dev": {
  1738. "mockery/mockery": "~0.9.2",
  1739. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1740. },
  1741. "suggest": {
  1742. "ext-gd": "to use GD library based image processing.",
  1743. "ext-imagick": "to use Imagick based image processing.",
  1744. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1745. },
  1746. "type": "library",
  1747. "extra": {
  1748. "branch-alias": {
  1749. "dev-master": "2.4-dev"
  1750. },
  1751. "laravel": {
  1752. "providers": [
  1753. "Intervention\\Image\\ImageServiceProvider"
  1754. ],
  1755. "aliases": {
  1756. "Image": "Intervention\\Image\\Facades\\Image"
  1757. }
  1758. }
  1759. },
  1760. "autoload": {
  1761. "psr-4": {
  1762. "Intervention\\Image\\": "src/Intervention/Image"
  1763. }
  1764. },
  1765. "notification-url": "https://packagist.org/downloads/",
  1766. "license": [
  1767. "MIT"
  1768. ],
  1769. "authors": [
  1770. {
  1771. "name": "Oliver Vogel",
  1772. "email": "oliver@olivervogel.com",
  1773. "homepage": "http://olivervogel.com/"
  1774. }
  1775. ],
  1776. "description": "Image handling and manipulation library with support for Laravel integration",
  1777. "homepage": "http://image.intervention.io/",
  1778. "keywords": [
  1779. "gd",
  1780. "image",
  1781. "imagick",
  1782. "laravel",
  1783. "thumbnail",
  1784. "watermark"
  1785. ],
  1786. "support": {
  1787. "issues": "https://github.com/Intervention/image/issues",
  1788. "source": "https://github.com/Intervention/image/tree/2.7.0"
  1789. },
  1790. "funding": [
  1791. {
  1792. "url": "https://www.paypal.me/interventionphp",
  1793. "type": "custom"
  1794. },
  1795. {
  1796. "url": "https://github.com/Intervention",
  1797. "type": "github"
  1798. }
  1799. ],
  1800. "time": "2021-10-03T14:17:12+00:00"
  1801. },
  1802. {
  1803. "name": "khanamiryan/qrcode-detector-decoder",
  1804. "version": "1.0.5.2",
  1805. "source": {
  1806. "type": "git",
  1807. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1808. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1"
  1809. },
  1810. "dist": {
  1811. "type": "zip",
  1812. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/04fdd58d86a387065f707dc6d3cc304c719910c1",
  1813. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1",
  1814. "shasum": "",
  1815. "mirrors": [
  1816. {
  1817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1818. "preferred": true
  1819. }
  1820. ]
  1821. },
  1822. "require": {
  1823. "php": ">=5.6"
  1824. },
  1825. "require-dev": {
  1826. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1827. },
  1828. "type": "library",
  1829. "autoload": {
  1830. "psr-4": {
  1831. "Zxing\\": "lib/"
  1832. },
  1833. "files": [
  1834. "lib/Common/customFunctions.php"
  1835. ]
  1836. },
  1837. "notification-url": "https://packagist.org/downloads/",
  1838. "license": [
  1839. "MIT",
  1840. "Apache-2.0"
  1841. ],
  1842. "authors": [
  1843. {
  1844. "name": "Ashot Khanamiryan",
  1845. "email": "a.khanamiryan@gmail.com",
  1846. "homepage": "https://github.com/khanamiryan",
  1847. "role": "Developer"
  1848. }
  1849. ],
  1850. "description": "QR code decoder / reader",
  1851. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1852. "keywords": [
  1853. "barcode",
  1854. "qr",
  1855. "zxing"
  1856. ],
  1857. "support": {
  1858. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1859. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.2"
  1860. },
  1861. "time": "2021-07-13T18:46:38+00:00"
  1862. },
  1863. {
  1864. "name": "kitetail/zttp",
  1865. "version": "v0.6.0",
  1866. "source": {
  1867. "type": "git",
  1868. "url": "https://github.com/kitetail/zttp.git",
  1869. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1870. },
  1871. "dist": {
  1872. "type": "zip",
  1873. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1874. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1875. "shasum": "",
  1876. "mirrors": [
  1877. {
  1878. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1879. "preferred": true
  1880. }
  1881. ]
  1882. },
  1883. "require": {
  1884. "guzzlehttp/guzzle": "^6.0",
  1885. "php": ">=7.0",
  1886. "tightenco/collect": "^5.4"
  1887. },
  1888. "require-dev": {
  1889. "laravel/lumen-framework": "5.5.*",
  1890. "phpunit/phpunit": "^6.0"
  1891. },
  1892. "type": "library",
  1893. "autoload": {
  1894. "files": [
  1895. "src/Zttp.php"
  1896. ]
  1897. },
  1898. "notification-url": "https://packagist.org/downloads/",
  1899. "license": [
  1900. "MIT"
  1901. ],
  1902. "authors": [
  1903. {
  1904. "name": "Adam Wathan",
  1905. "email": "adam.wathan@gmail.com"
  1906. }
  1907. ],
  1908. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1909. "keywords": [
  1910. "Guzzle",
  1911. "http"
  1912. ],
  1913. "support": {
  1914. "issues": "https://github.com/kitetail/zttp/issues",
  1915. "source": "https://github.com/kitetail/zttp/tree/master"
  1916. },
  1917. "time": "2019-06-10T12:18:52+00:00"
  1918. },
  1919. {
  1920. "name": "laravel/framework",
  1921. "version": "v7.30.4",
  1922. "source": {
  1923. "type": "git",
  1924. "url": "https://github.com/laravel/framework.git",
  1925. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  1926. },
  1927. "dist": {
  1928. "type": "zip",
  1929. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1930. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1931. "shasum": "",
  1932. "mirrors": [
  1933. {
  1934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1935. "preferred": true
  1936. }
  1937. ]
  1938. },
  1939. "require": {
  1940. "doctrine/inflector": "^1.4|^2.0",
  1941. "dragonmantank/cron-expression": "^2.3.1",
  1942. "egulias/email-validator": "^2.1.10",
  1943. "ext-json": "*",
  1944. "ext-mbstring": "*",
  1945. "ext-openssl": "*",
  1946. "league/commonmark": "^1.3",
  1947. "league/flysystem": "^1.1",
  1948. "monolog/monolog": "^2.0",
  1949. "nesbot/carbon": "^2.31",
  1950. "opis/closure": "^3.6",
  1951. "php": "^7.2.5|^8.0",
  1952. "psr/container": "^1.0",
  1953. "psr/simple-cache": "^1.0",
  1954. "ramsey/uuid": "^3.7|^4.0",
  1955. "swiftmailer/swiftmailer": "^6.0",
  1956. "symfony/console": "^5.0",
  1957. "symfony/error-handler": "^5.0",
  1958. "symfony/finder": "^5.0",
  1959. "symfony/http-foundation": "^5.0",
  1960. "symfony/http-kernel": "^5.0",
  1961. "symfony/mime": "^5.0",
  1962. "symfony/polyfill-php73": "^1.17",
  1963. "symfony/process": "^5.0",
  1964. "symfony/routing": "^5.0",
  1965. "symfony/var-dumper": "^5.0",
  1966. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1967. "vlucas/phpdotenv": "^4.0",
  1968. "voku/portable-ascii": "^1.4.8"
  1969. },
  1970. "conflict": {
  1971. "tightenco/collect": "<5.5.33"
  1972. },
  1973. "provide": {
  1974. "psr/container-implementation": "1.0"
  1975. },
  1976. "replace": {
  1977. "illuminate/auth": "self.version",
  1978. "illuminate/broadcasting": "self.version",
  1979. "illuminate/bus": "self.version",
  1980. "illuminate/cache": "self.version",
  1981. "illuminate/config": "self.version",
  1982. "illuminate/console": "self.version",
  1983. "illuminate/container": "self.version",
  1984. "illuminate/contracts": "self.version",
  1985. "illuminate/cookie": "self.version",
  1986. "illuminate/database": "self.version",
  1987. "illuminate/encryption": "self.version",
  1988. "illuminate/events": "self.version",
  1989. "illuminate/filesystem": "self.version",
  1990. "illuminate/hashing": "self.version",
  1991. "illuminate/http": "self.version",
  1992. "illuminate/log": "self.version",
  1993. "illuminate/mail": "self.version",
  1994. "illuminate/notifications": "self.version",
  1995. "illuminate/pagination": "self.version",
  1996. "illuminate/pipeline": "self.version",
  1997. "illuminate/queue": "self.version",
  1998. "illuminate/redis": "self.version",
  1999. "illuminate/routing": "self.version",
  2000. "illuminate/session": "self.version",
  2001. "illuminate/support": "self.version",
  2002. "illuminate/testing": "self.version",
  2003. "illuminate/translation": "self.version",
  2004. "illuminate/validation": "self.version",
  2005. "illuminate/view": "self.version"
  2006. },
  2007. "require-dev": {
  2008. "aws/aws-sdk-php": "^3.155",
  2009. "doctrine/dbal": "^2.6",
  2010. "filp/whoops": "^2.8",
  2011. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2012. "league/flysystem-cached-adapter": "^1.0",
  2013. "mockery/mockery": "~1.3.3|^1.4.2",
  2014. "moontoast/math": "^1.1",
  2015. "orchestra/testbench-core": "^5.8",
  2016. "pda/pheanstalk": "^4.0",
  2017. "phpunit/phpunit": "^8.4|^9.3.3",
  2018. "predis/predis": "^1.1.1",
  2019. "symfony/cache": "^5.0"
  2020. },
  2021. "suggest": {
  2022. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2023. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2024. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2025. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2026. "ext-memcached": "Required to use the memcache cache driver.",
  2027. "ext-pcntl": "Required to use all features of the queue worker.",
  2028. "ext-posix": "Required to use all features of the queue worker.",
  2029. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2030. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2031. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2032. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2033. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2034. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2035. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2036. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2037. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2038. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2039. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2040. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2041. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2042. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2043. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2044. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2045. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2046. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2047. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2048. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2049. },
  2050. "type": "library",
  2051. "extra": {
  2052. "branch-alias": {
  2053. "dev-master": "7.x-dev"
  2054. }
  2055. },
  2056. "autoload": {
  2057. "files": [
  2058. "src/Illuminate/Foundation/helpers.php",
  2059. "src/Illuminate/Support/helpers.php"
  2060. ],
  2061. "psr-4": {
  2062. "Illuminate\\": "src/Illuminate/"
  2063. }
  2064. },
  2065. "notification-url": "https://packagist.org/downloads/",
  2066. "license": [
  2067. "MIT"
  2068. ],
  2069. "authors": [
  2070. {
  2071. "name": "Taylor Otwell",
  2072. "email": "taylor@laravel.com"
  2073. }
  2074. ],
  2075. "description": "The Laravel Framework.",
  2076. "homepage": "https://laravel.com",
  2077. "keywords": [
  2078. "framework",
  2079. "laravel"
  2080. ],
  2081. "support": {
  2082. "issues": "https://github.com/laravel/framework/issues",
  2083. "source": "https://github.com/laravel/framework"
  2084. },
  2085. "time": "2021-01-21T14:10:48+00:00"
  2086. },
  2087. {
  2088. "name": "laravel/horizon",
  2089. "version": "v4.3.5",
  2090. "source": {
  2091. "type": "git",
  2092. "url": "https://github.com/laravel/horizon.git",
  2093. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171"
  2094. },
  2095. "dist": {
  2096. "type": "zip",
  2097. "url": "https://api.github.com/repos/laravel/horizon/zipball/b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2098. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2099. "shasum": "",
  2100. "mirrors": [
  2101. {
  2102. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2103. "preferred": true
  2104. }
  2105. ]
  2106. },
  2107. "require": {
  2108. "cakephp/chronos": "^2.0",
  2109. "ext-json": "*",
  2110. "ext-pcntl": "*",
  2111. "ext-posix": "*",
  2112. "illuminate/contracts": "^7.0",
  2113. "illuminate/queue": "^7.0",
  2114. "illuminate/support": "^7.0",
  2115. "php": "^7.2",
  2116. "ramsey/uuid": "^3.5|^4.0",
  2117. "symfony/error-handler": "^5.0",
  2118. "symfony/process": "^5.0"
  2119. },
  2120. "require-dev": {
  2121. "mockery/mockery": "^1.0",
  2122. "orchestra/testbench": "^5.0",
  2123. "phpunit/phpunit": "^8.0",
  2124. "predis/predis": "^1.1"
  2125. },
  2126. "suggest": {
  2127. "ext-redis": "Required to use the Redis PHP driver.",
  2128. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  2129. },
  2130. "type": "library",
  2131. "extra": {
  2132. "branch-alias": {
  2133. "dev-master": "4.x-dev"
  2134. },
  2135. "laravel": {
  2136. "providers": [
  2137. "Laravel\\Horizon\\HorizonServiceProvider"
  2138. ],
  2139. "aliases": {
  2140. "Horizon": "Laravel\\Horizon\\Horizon"
  2141. }
  2142. }
  2143. },
  2144. "autoload": {
  2145. "psr-4": {
  2146. "Laravel\\Horizon\\": "src/"
  2147. }
  2148. },
  2149. "notification-url": "https://packagist.org/downloads/",
  2150. "license": [
  2151. "MIT"
  2152. ],
  2153. "authors": [
  2154. {
  2155. "name": "Taylor Otwell",
  2156. "email": "taylor@laravel.com"
  2157. }
  2158. ],
  2159. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2160. "keywords": [
  2161. "laravel",
  2162. "queue"
  2163. ],
  2164. "support": {
  2165. "issues": "https://github.com/laravel/horizon/issues",
  2166. "source": "https://github.com/laravel/horizon/tree/4.x"
  2167. },
  2168. "time": "2020-09-08T13:19:23+00:00"
  2169. },
  2170. {
  2171. "name": "laravel/tinker",
  2172. "version": "v2.6.2",
  2173. "source": {
  2174. "type": "git",
  2175. "url": "https://github.com/laravel/tinker.git",
  2176. "reference": "c808a7227f97ecfd9219fbf913bad842ea854ddc"
  2177. },
  2178. "dist": {
  2179. "type": "zip",
  2180. "url": "https://api.github.com/repos/laravel/tinker/zipball/c808a7227f97ecfd9219fbf913bad842ea854ddc",
  2181. "reference": "c808a7227f97ecfd9219fbf913bad842ea854ddc",
  2182. "shasum": "",
  2183. "mirrors": [
  2184. {
  2185. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2186. "preferred": true
  2187. }
  2188. ]
  2189. },
  2190. "require": {
  2191. "illuminate/console": "^6.0|^7.0|^8.0",
  2192. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2193. "illuminate/support": "^6.0|^7.0|^8.0",
  2194. "php": "^7.2.5|^8.0",
  2195. "psy/psysh": "^0.10.4",
  2196. "symfony/var-dumper": "^4.3.4|^5.0"
  2197. },
  2198. "require-dev": {
  2199. "mockery/mockery": "~1.3.3|^1.4.2",
  2200. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2201. },
  2202. "suggest": {
  2203. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2204. },
  2205. "type": "library",
  2206. "extra": {
  2207. "branch-alias": {
  2208. "dev-master": "2.x-dev"
  2209. },
  2210. "laravel": {
  2211. "providers": [
  2212. "Laravel\\Tinker\\TinkerServiceProvider"
  2213. ]
  2214. }
  2215. },
  2216. "autoload": {
  2217. "psr-4": {
  2218. "Laravel\\Tinker\\": "src/"
  2219. }
  2220. },
  2221. "notification-url": "https://packagist.org/downloads/",
  2222. "license": [
  2223. "MIT"
  2224. ],
  2225. "authors": [
  2226. {
  2227. "name": "Taylor Otwell",
  2228. "email": "taylor@laravel.com"
  2229. }
  2230. ],
  2231. "description": "Powerful REPL for the Laravel framework.",
  2232. "keywords": [
  2233. "REPL",
  2234. "Tinker",
  2235. "laravel",
  2236. "psysh"
  2237. ],
  2238. "support": {
  2239. "issues": "https://github.com/laravel/tinker/issues",
  2240. "source": "https://github.com/laravel/tinker/tree/v2.6.2"
  2241. },
  2242. "time": "2021-09-28T15:47:34+00:00"
  2243. },
  2244. {
  2245. "name": "laravel/ui",
  2246. "version": "v2.5.0",
  2247. "source": {
  2248. "type": "git",
  2249. "url": "https://github.com/laravel/ui.git",
  2250. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  2251. },
  2252. "dist": {
  2253. "type": "zip",
  2254. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  2255. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  2256. "shasum": "",
  2257. "mirrors": [
  2258. {
  2259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2260. "preferred": true
  2261. }
  2262. ]
  2263. },
  2264. "require": {
  2265. "illuminate/console": "^7.0",
  2266. "illuminate/filesystem": "^7.0",
  2267. "illuminate/support": "^7.0",
  2268. "php": "^7.2.5|^8.0"
  2269. },
  2270. "type": "library",
  2271. "extra": {
  2272. "laravel": {
  2273. "providers": [
  2274. "Laravel\\Ui\\UiServiceProvider"
  2275. ]
  2276. }
  2277. },
  2278. "autoload": {
  2279. "psr-4": {
  2280. "Laravel\\Ui\\": "src/",
  2281. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2282. }
  2283. },
  2284. "notification-url": "https://packagist.org/downloads/",
  2285. "license": [
  2286. "MIT"
  2287. ],
  2288. "authors": [
  2289. {
  2290. "name": "Taylor Otwell",
  2291. "email": "taylor@laravel.com"
  2292. }
  2293. ],
  2294. "description": "Laravel UI utilities and presets.",
  2295. "keywords": [
  2296. "laravel",
  2297. "ui"
  2298. ],
  2299. "support": {
  2300. "issues": "https://github.com/laravel/ui/issues",
  2301. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  2302. },
  2303. "time": "2020-11-03T19:45:19+00:00"
  2304. },
  2305. {
  2306. "name": "league/commonmark",
  2307. "version": "1.6.6",
  2308. "source": {
  2309. "type": "git",
  2310. "url": "https://github.com/thephpleague/commonmark.git",
  2311. "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf"
  2312. },
  2313. "dist": {
  2314. "type": "zip",
  2315. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c4228d11e30d7493c6836d20872f9582d8ba6dcf",
  2316. "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf",
  2317. "shasum": "",
  2318. "mirrors": [
  2319. {
  2320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2321. "preferred": true
  2322. }
  2323. ]
  2324. },
  2325. "require": {
  2326. "ext-mbstring": "*",
  2327. "php": "^7.1 || ^8.0"
  2328. },
  2329. "conflict": {
  2330. "scrutinizer/ocular": "1.7.*"
  2331. },
  2332. "require-dev": {
  2333. "cebe/markdown": "~1.0",
  2334. "commonmark/commonmark.js": "0.29.2",
  2335. "erusev/parsedown": "~1.0",
  2336. "ext-json": "*",
  2337. "github/gfm": "0.29.0",
  2338. "michelf/php-markdown": "~1.4",
  2339. "mikehaertl/php-shellcommand": "^1.4",
  2340. "phpstan/phpstan": "^0.12.90",
  2341. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2342. "scrutinizer/ocular": "^1.5",
  2343. "symfony/finder": "^4.2"
  2344. },
  2345. "bin": [
  2346. "bin/commonmark"
  2347. ],
  2348. "type": "library",
  2349. "autoload": {
  2350. "psr-4": {
  2351. "League\\CommonMark\\": "src"
  2352. }
  2353. },
  2354. "notification-url": "https://packagist.org/downloads/",
  2355. "license": [
  2356. "BSD-3-Clause"
  2357. ],
  2358. "authors": [
  2359. {
  2360. "name": "Colin O'Dell",
  2361. "email": "colinodell@gmail.com",
  2362. "homepage": "https://www.colinodell.com",
  2363. "role": "Lead Developer"
  2364. }
  2365. ],
  2366. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2367. "homepage": "https://commonmark.thephpleague.com",
  2368. "keywords": [
  2369. "commonmark",
  2370. "flavored",
  2371. "gfm",
  2372. "github",
  2373. "github-flavored",
  2374. "markdown",
  2375. "md",
  2376. "parser"
  2377. ],
  2378. "support": {
  2379. "docs": "https://commonmark.thephpleague.com/",
  2380. "issues": "https://github.com/thephpleague/commonmark/issues",
  2381. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2382. "source": "https://github.com/thephpleague/commonmark"
  2383. },
  2384. "funding": [
  2385. {
  2386. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2387. "type": "custom"
  2388. },
  2389. {
  2390. "url": "https://www.colinodell.com/sponsor",
  2391. "type": "custom"
  2392. },
  2393. {
  2394. "url": "https://www.paypal.me/colinpodell/10.00",
  2395. "type": "custom"
  2396. },
  2397. {
  2398. "url": "https://github.com/colinodell",
  2399. "type": "github"
  2400. },
  2401. {
  2402. "url": "https://www.patreon.com/colinodell",
  2403. "type": "patreon"
  2404. },
  2405. {
  2406. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2407. "type": "tidelift"
  2408. }
  2409. ],
  2410. "time": "2021-07-17T17:13:23+00:00"
  2411. },
  2412. {
  2413. "name": "league/flysystem",
  2414. "version": "1.1.5",
  2415. "source": {
  2416. "type": "git",
  2417. "url": "https://github.com/thephpleague/flysystem.git",
  2418. "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea"
  2419. },
  2420. "dist": {
  2421. "type": "zip",
  2422. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/18634df356bfd4119fe3d6156bdb990c414c14ea",
  2423. "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea",
  2424. "shasum": "",
  2425. "mirrors": [
  2426. {
  2427. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2428. "preferred": true
  2429. }
  2430. ]
  2431. },
  2432. "require": {
  2433. "ext-fileinfo": "*",
  2434. "league/mime-type-detection": "^1.3",
  2435. "php": "^7.2.5 || ^8.0"
  2436. },
  2437. "conflict": {
  2438. "league/flysystem-sftp": "<1.0.6"
  2439. },
  2440. "require-dev": {
  2441. "phpspec/prophecy": "^1.11.1",
  2442. "phpunit/phpunit": "^8.5.8"
  2443. },
  2444. "suggest": {
  2445. "ext-ftp": "Allows you to use FTP server storage",
  2446. "ext-openssl": "Allows you to use FTPS server storage",
  2447. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2448. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2449. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2450. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2451. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2452. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2453. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2454. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2455. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2456. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2457. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2458. },
  2459. "type": "library",
  2460. "extra": {
  2461. "branch-alias": {
  2462. "dev-master": "1.1-dev"
  2463. }
  2464. },
  2465. "autoload": {
  2466. "psr-4": {
  2467. "League\\Flysystem\\": "src/"
  2468. }
  2469. },
  2470. "notification-url": "https://packagist.org/downloads/",
  2471. "license": [
  2472. "MIT"
  2473. ],
  2474. "authors": [
  2475. {
  2476. "name": "Frank de Jonge",
  2477. "email": "info@frenky.net"
  2478. }
  2479. ],
  2480. "description": "Filesystem abstraction: Many filesystems, one API.",
  2481. "keywords": [
  2482. "Cloud Files",
  2483. "WebDAV",
  2484. "abstraction",
  2485. "aws",
  2486. "cloud",
  2487. "copy.com",
  2488. "dropbox",
  2489. "file systems",
  2490. "files",
  2491. "filesystem",
  2492. "filesystems",
  2493. "ftp",
  2494. "rackspace",
  2495. "remote",
  2496. "s3",
  2497. "sftp",
  2498. "storage"
  2499. ],
  2500. "support": {
  2501. "issues": "https://github.com/thephpleague/flysystem/issues",
  2502. "source": "https://github.com/thephpleague/flysystem/tree/1.1.5"
  2503. },
  2504. "funding": [
  2505. {
  2506. "url": "https://offset.earth/frankdejonge",
  2507. "type": "other"
  2508. }
  2509. ],
  2510. "time": "2021-08-17T13:49:42+00:00"
  2511. },
  2512. {
  2513. "name": "league/mime-type-detection",
  2514. "version": "1.8.0",
  2515. "source": {
  2516. "type": "git",
  2517. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2518. "reference": "b38b25d7b372e9fddb00335400467b223349fd7e"
  2519. },
  2520. "dist": {
  2521. "type": "zip",
  2522. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b38b25d7b372e9fddb00335400467b223349fd7e",
  2523. "reference": "b38b25d7b372e9fddb00335400467b223349fd7e",
  2524. "shasum": "",
  2525. "mirrors": [
  2526. {
  2527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2528. "preferred": true
  2529. }
  2530. ]
  2531. },
  2532. "require": {
  2533. "ext-fileinfo": "*",
  2534. "php": "^7.2 || ^8.0"
  2535. },
  2536. "require-dev": {
  2537. "friendsofphp/php-cs-fixer": "^2.18",
  2538. "phpstan/phpstan": "^0.12.68",
  2539. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2540. },
  2541. "type": "library",
  2542. "autoload": {
  2543. "psr-4": {
  2544. "League\\MimeTypeDetection\\": "src"
  2545. }
  2546. },
  2547. "notification-url": "https://packagist.org/downloads/",
  2548. "license": [
  2549. "MIT"
  2550. ],
  2551. "authors": [
  2552. {
  2553. "name": "Frank de Jonge",
  2554. "email": "info@frankdejonge.nl"
  2555. }
  2556. ],
  2557. "description": "Mime-type detection for Flysystem",
  2558. "support": {
  2559. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2560. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.8.0"
  2561. },
  2562. "funding": [
  2563. {
  2564. "url": "https://github.com/frankdejonge",
  2565. "type": "github"
  2566. },
  2567. {
  2568. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2569. "type": "tidelift"
  2570. }
  2571. ],
  2572. "time": "2021-09-25T08:23:19+00:00"
  2573. },
  2574. {
  2575. "name": "maatwebsite/excel",
  2576. "version": "3.1.32",
  2577. "source": {
  2578. "type": "git",
  2579. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2580. "reference": "9dc29b63a77fb7f2f514ef754af3a1b57e83cadf"
  2581. },
  2582. "dist": {
  2583. "type": "zip",
  2584. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/9dc29b63a77fb7f2f514ef754af3a1b57e83cadf",
  2585. "reference": "9dc29b63a77fb7f2f514ef754af3a1b57e83cadf",
  2586. "shasum": "",
  2587. "mirrors": [
  2588. {
  2589. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2590. "preferred": true
  2591. }
  2592. ]
  2593. },
  2594. "require": {
  2595. "ext-json": "*",
  2596. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2597. "php": "^7.0|^8.0",
  2598. "phpoffice/phpspreadsheet": "^1.18"
  2599. },
  2600. "require-dev": {
  2601. "orchestra/testbench": "^6.0",
  2602. "predis/predis": "^1.1"
  2603. },
  2604. "type": "library",
  2605. "extra": {
  2606. "laravel": {
  2607. "providers": [
  2608. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2609. ],
  2610. "aliases": {
  2611. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2612. }
  2613. }
  2614. },
  2615. "autoload": {
  2616. "psr-4": {
  2617. "Maatwebsite\\Excel\\": "src/"
  2618. }
  2619. },
  2620. "notification-url": "https://packagist.org/downloads/",
  2621. "license": [
  2622. "MIT"
  2623. ],
  2624. "authors": [
  2625. {
  2626. "name": "Patrick Brouwers",
  2627. "email": "patrick@maatwebsite.nl"
  2628. }
  2629. ],
  2630. "description": "Supercharged Excel exports and imports in Laravel",
  2631. "keywords": [
  2632. "PHPExcel",
  2633. "batch",
  2634. "csv",
  2635. "excel",
  2636. "export",
  2637. "import",
  2638. "laravel",
  2639. "php",
  2640. "phpspreadsheet"
  2641. ],
  2642. "support": {
  2643. "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues",
  2644. "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.32"
  2645. },
  2646. "funding": [
  2647. {
  2648. "url": "https://laravel-excel.com/commercial-support",
  2649. "type": "custom"
  2650. },
  2651. {
  2652. "url": "https://github.com/patrickbrouwers",
  2653. "type": "github"
  2654. }
  2655. ],
  2656. "time": "2021-07-08T10:11:21+00:00"
  2657. },
  2658. {
  2659. "name": "maennchen/zipstream-php",
  2660. "version": "2.1.0",
  2661. "source": {
  2662. "type": "git",
  2663. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2664. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2665. },
  2666. "dist": {
  2667. "type": "zip",
  2668. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2669. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2670. "shasum": "",
  2671. "mirrors": [
  2672. {
  2673. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2674. "preferred": true
  2675. }
  2676. ]
  2677. },
  2678. "require": {
  2679. "myclabs/php-enum": "^1.5",
  2680. "php": ">= 7.1",
  2681. "psr/http-message": "^1.0",
  2682. "symfony/polyfill-mbstring": "^1.0"
  2683. },
  2684. "require-dev": {
  2685. "ext-zip": "*",
  2686. "guzzlehttp/guzzle": ">= 6.3",
  2687. "mikey179/vfsstream": "^1.6",
  2688. "phpunit/phpunit": ">= 7.5"
  2689. },
  2690. "type": "library",
  2691. "autoload": {
  2692. "psr-4": {
  2693. "ZipStream\\": "src/"
  2694. }
  2695. },
  2696. "notification-url": "https://packagist.org/downloads/",
  2697. "license": [
  2698. "MIT"
  2699. ],
  2700. "authors": [
  2701. {
  2702. "name": "Paul Duncan",
  2703. "email": "pabs@pablotron.org"
  2704. },
  2705. {
  2706. "name": "Jonatan Männchen",
  2707. "email": "jonatan@maennchen.ch"
  2708. },
  2709. {
  2710. "name": "Jesse Donat",
  2711. "email": "donatj@gmail.com"
  2712. },
  2713. {
  2714. "name": "András Kolesár",
  2715. "email": "kolesar@kolesar.hu"
  2716. }
  2717. ],
  2718. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2719. "keywords": [
  2720. "stream",
  2721. "zip"
  2722. ],
  2723. "support": {
  2724. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2725. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2726. },
  2727. "funding": [
  2728. {
  2729. "url": "https://opencollective.com/zipstream",
  2730. "type": "open_collective"
  2731. }
  2732. ],
  2733. "time": "2020-05-30T13:11:16+00:00"
  2734. },
  2735. {
  2736. "name": "markbaker/complex",
  2737. "version": "2.0.3",
  2738. "source": {
  2739. "type": "git",
  2740. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2741. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946"
  2742. },
  2743. "dist": {
  2744. "type": "zip",
  2745. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2746. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2747. "shasum": "",
  2748. "mirrors": [
  2749. {
  2750. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2751. "preferred": true
  2752. }
  2753. ]
  2754. },
  2755. "require": {
  2756. "php": "^7.2 || ^8.0"
  2757. },
  2758. "require-dev": {
  2759. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2760. "phpcompatibility/php-compatibility": "^9.0",
  2761. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2762. "squizlabs/php_codesniffer": "^3.4"
  2763. },
  2764. "type": "library",
  2765. "autoload": {
  2766. "psr-4": {
  2767. "Complex\\": "classes/src/"
  2768. },
  2769. "files": [
  2770. "classes/src/functions/abs.php",
  2771. "classes/src/functions/acos.php",
  2772. "classes/src/functions/acosh.php",
  2773. "classes/src/functions/acot.php",
  2774. "classes/src/functions/acoth.php",
  2775. "classes/src/functions/acsc.php",
  2776. "classes/src/functions/acsch.php",
  2777. "classes/src/functions/argument.php",
  2778. "classes/src/functions/asec.php",
  2779. "classes/src/functions/asech.php",
  2780. "classes/src/functions/asin.php",
  2781. "classes/src/functions/asinh.php",
  2782. "classes/src/functions/atan.php",
  2783. "classes/src/functions/atanh.php",
  2784. "classes/src/functions/conjugate.php",
  2785. "classes/src/functions/cos.php",
  2786. "classes/src/functions/cosh.php",
  2787. "classes/src/functions/cot.php",
  2788. "classes/src/functions/coth.php",
  2789. "classes/src/functions/csc.php",
  2790. "classes/src/functions/csch.php",
  2791. "classes/src/functions/exp.php",
  2792. "classes/src/functions/inverse.php",
  2793. "classes/src/functions/ln.php",
  2794. "classes/src/functions/log2.php",
  2795. "classes/src/functions/log10.php",
  2796. "classes/src/functions/negative.php",
  2797. "classes/src/functions/pow.php",
  2798. "classes/src/functions/rho.php",
  2799. "classes/src/functions/sec.php",
  2800. "classes/src/functions/sech.php",
  2801. "classes/src/functions/sin.php",
  2802. "classes/src/functions/sinh.php",
  2803. "classes/src/functions/sqrt.php",
  2804. "classes/src/functions/tan.php",
  2805. "classes/src/functions/tanh.php",
  2806. "classes/src/functions/theta.php",
  2807. "classes/src/operations/add.php",
  2808. "classes/src/operations/subtract.php",
  2809. "classes/src/operations/multiply.php",
  2810. "classes/src/operations/divideby.php",
  2811. "classes/src/operations/divideinto.php"
  2812. ]
  2813. },
  2814. "notification-url": "https://packagist.org/downloads/",
  2815. "license": [
  2816. "MIT"
  2817. ],
  2818. "authors": [
  2819. {
  2820. "name": "Mark Baker",
  2821. "email": "mark@lange.demon.co.uk"
  2822. }
  2823. ],
  2824. "description": "PHP Class for working with complex numbers",
  2825. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2826. "keywords": [
  2827. "complex",
  2828. "mathematics"
  2829. ],
  2830. "support": {
  2831. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2832. "source": "https://github.com/MarkBaker/PHPComplex/tree/2.0.3"
  2833. },
  2834. "time": "2021-06-02T09:44:11+00:00"
  2835. },
  2836. {
  2837. "name": "markbaker/matrix",
  2838. "version": "2.1.3",
  2839. "source": {
  2840. "type": "git",
  2841. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2842. "reference": "174395a901b5ba0925f1d790fa91bab531074b61"
  2843. },
  2844. "dist": {
  2845. "type": "zip",
  2846. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61",
  2847. "reference": "174395a901b5ba0925f1d790fa91bab531074b61",
  2848. "shasum": "",
  2849. "mirrors": [
  2850. {
  2851. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2852. "preferred": true
  2853. }
  2854. ]
  2855. },
  2856. "require": {
  2857. "php": "^7.1 || ^8.0"
  2858. },
  2859. "require-dev": {
  2860. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2861. "phpcompatibility/php-compatibility": "^9.0",
  2862. "phpdocumentor/phpdocumentor": "2.*",
  2863. "phploc/phploc": "^4.0",
  2864. "phpmd/phpmd": "2.*",
  2865. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2866. "sebastian/phpcpd": "^4.0",
  2867. "squizlabs/php_codesniffer": "^3.4"
  2868. },
  2869. "type": "library",
  2870. "autoload": {
  2871. "psr-4": {
  2872. "Matrix\\": "classes/src/"
  2873. },
  2874. "files": [
  2875. "classes/src/Functions/adjoint.php",
  2876. "classes/src/Functions/antidiagonal.php",
  2877. "classes/src/Functions/cofactors.php",
  2878. "classes/src/Functions/determinant.php",
  2879. "classes/src/Functions/diagonal.php",
  2880. "classes/src/Functions/identity.php",
  2881. "classes/src/Functions/inverse.php",
  2882. "classes/src/Functions/minors.php",
  2883. "classes/src/Functions/trace.php",
  2884. "classes/src/Functions/transpose.php",
  2885. "classes/src/Operations/add.php",
  2886. "classes/src/Operations/directsum.php",
  2887. "classes/src/Operations/subtract.php",
  2888. "classes/src/Operations/multiply.php",
  2889. "classes/src/Operations/divideby.php",
  2890. "classes/src/Operations/divideinto.php"
  2891. ]
  2892. },
  2893. "notification-url": "https://packagist.org/downloads/",
  2894. "license": [
  2895. "MIT"
  2896. ],
  2897. "authors": [
  2898. {
  2899. "name": "Mark Baker",
  2900. "email": "mark@demon-angel.eu"
  2901. }
  2902. ],
  2903. "description": "PHP Class for working with matrices",
  2904. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2905. "keywords": [
  2906. "mathematics",
  2907. "matrix",
  2908. "vector"
  2909. ],
  2910. "support": {
  2911. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2912. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3"
  2913. },
  2914. "time": "2021-05-25T15:42:17+00:00"
  2915. },
  2916. {
  2917. "name": "monolog/monolog",
  2918. "version": "2.3.5",
  2919. "source": {
  2920. "type": "git",
  2921. "url": "https://github.com/Seldaek/monolog.git",
  2922. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9"
  2923. },
  2924. "dist": {
  2925. "type": "zip",
  2926. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9",
  2927. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9",
  2928. "shasum": "",
  2929. "mirrors": [
  2930. {
  2931. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2932. "preferred": true
  2933. }
  2934. ]
  2935. },
  2936. "require": {
  2937. "php": ">=7.2",
  2938. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2939. },
  2940. "provide": {
  2941. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2942. },
  2943. "require-dev": {
  2944. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2945. "doctrine/couchdb": "~1.0@dev",
  2946. "elasticsearch/elasticsearch": "^7",
  2947. "graylog2/gelf-php": "^1.4.2",
  2948. "mongodb/mongodb": "^1.8",
  2949. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2950. "php-console/php-console": "^3.1.3",
  2951. "phpspec/prophecy": "^1.6.1",
  2952. "phpstan/phpstan": "^0.12.91",
  2953. "phpunit/phpunit": "^8.5",
  2954. "predis/predis": "^1.1",
  2955. "rollbar/rollbar": "^1.3",
  2956. "ruflin/elastica": ">=0.90@dev",
  2957. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2958. },
  2959. "suggest": {
  2960. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2961. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2962. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2963. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2964. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2965. "ext-mbstring": "Allow to work properly with unicode symbols",
  2966. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2967. "ext-openssl": "Required to send log messages using SSL",
  2968. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2969. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2970. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2971. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2972. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2973. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2974. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2975. },
  2976. "type": "library",
  2977. "extra": {
  2978. "branch-alias": {
  2979. "dev-main": "2.x-dev"
  2980. }
  2981. },
  2982. "autoload": {
  2983. "psr-4": {
  2984. "Monolog\\": "src/Monolog"
  2985. }
  2986. },
  2987. "notification-url": "https://packagist.org/downloads/",
  2988. "license": [
  2989. "MIT"
  2990. ],
  2991. "authors": [
  2992. {
  2993. "name": "Jordi Boggiano",
  2994. "email": "j.boggiano@seld.be",
  2995. "homepage": "https://seld.be"
  2996. }
  2997. ],
  2998. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2999. "homepage": "https://github.com/Seldaek/monolog",
  3000. "keywords": [
  3001. "log",
  3002. "logging",
  3003. "psr-3"
  3004. ],
  3005. "support": {
  3006. "issues": "https://github.com/Seldaek/monolog/issues",
  3007. "source": "https://github.com/Seldaek/monolog/tree/2.3.5"
  3008. },
  3009. "funding": [
  3010. {
  3011. "url": "https://github.com/Seldaek",
  3012. "type": "github"
  3013. },
  3014. {
  3015. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3016. "type": "tidelift"
  3017. }
  3018. ],
  3019. "time": "2021-10-01T21:08:31+00:00"
  3020. },
  3021. {
  3022. "name": "myclabs/php-enum",
  3023. "version": "1.8.3",
  3024. "source": {
  3025. "type": "git",
  3026. "url": "https://github.com/myclabs/php-enum.git",
  3027. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  3028. },
  3029. "dist": {
  3030. "type": "zip",
  3031. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  3032. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  3033. "shasum": "",
  3034. "mirrors": [
  3035. {
  3036. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3037. "preferred": true
  3038. }
  3039. ]
  3040. },
  3041. "require": {
  3042. "ext-json": "*",
  3043. "php": "^7.3 || ^8.0"
  3044. },
  3045. "require-dev": {
  3046. "phpunit/phpunit": "^9.5",
  3047. "squizlabs/php_codesniffer": "1.*",
  3048. "vimeo/psalm": "^4.6.2"
  3049. },
  3050. "type": "library",
  3051. "autoload": {
  3052. "psr-4": {
  3053. "MyCLabs\\Enum\\": "src/"
  3054. }
  3055. },
  3056. "notification-url": "https://packagist.org/downloads/",
  3057. "license": [
  3058. "MIT"
  3059. ],
  3060. "authors": [
  3061. {
  3062. "name": "PHP Enum contributors",
  3063. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3064. }
  3065. ],
  3066. "description": "PHP Enum implementation",
  3067. "homepage": "http://github.com/myclabs/php-enum",
  3068. "keywords": [
  3069. "enum"
  3070. ],
  3071. "support": {
  3072. "issues": "https://github.com/myclabs/php-enum/issues",
  3073. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  3074. },
  3075. "funding": [
  3076. {
  3077. "url": "https://github.com/mnapoli",
  3078. "type": "github"
  3079. },
  3080. {
  3081. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3082. "type": "tidelift"
  3083. }
  3084. ],
  3085. "time": "2021-07-05T08:18:36+00:00"
  3086. },
  3087. {
  3088. "name": "nesbot/carbon",
  3089. "version": "2.53.1",
  3090. "source": {
  3091. "type": "git",
  3092. "url": "https://github.com/briannesbitt/Carbon.git",
  3093. "reference": "f4655858a784988f880c1b8c7feabbf02dfdf045"
  3094. },
  3095. "dist": {
  3096. "type": "zip",
  3097. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/f4655858a784988f880c1b8c7feabbf02dfdf045",
  3098. "reference": "f4655858a784988f880c1b8c7feabbf02dfdf045",
  3099. "shasum": "",
  3100. "mirrors": [
  3101. {
  3102. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3103. "preferred": true
  3104. }
  3105. ]
  3106. },
  3107. "require": {
  3108. "ext-json": "*",
  3109. "php": "^7.1.8 || ^8.0",
  3110. "symfony/polyfill-mbstring": "^1.0",
  3111. "symfony/polyfill-php80": "^1.16",
  3112. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3113. },
  3114. "require-dev": {
  3115. "doctrine/orm": "^2.7",
  3116. "friendsofphp/php-cs-fixer": "^3.0",
  3117. "kylekatarnls/multi-tester": "^2.0",
  3118. "phpmd/phpmd": "^2.9",
  3119. "phpstan/extension-installer": "^1.0",
  3120. "phpstan/phpstan": "^0.12.54",
  3121. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3122. "squizlabs/php_codesniffer": "^3.4"
  3123. },
  3124. "bin": [
  3125. "bin/carbon"
  3126. ],
  3127. "type": "library",
  3128. "extra": {
  3129. "branch-alias": {
  3130. "dev-3.x": "3.x-dev",
  3131. "dev-master": "2.x-dev"
  3132. },
  3133. "laravel": {
  3134. "providers": [
  3135. "Carbon\\Laravel\\ServiceProvider"
  3136. ]
  3137. },
  3138. "phpstan": {
  3139. "includes": [
  3140. "extension.neon"
  3141. ]
  3142. }
  3143. },
  3144. "autoload": {
  3145. "psr-4": {
  3146. "Carbon\\": "src/Carbon/"
  3147. }
  3148. },
  3149. "notification-url": "https://packagist.org/downloads/",
  3150. "license": [
  3151. "MIT"
  3152. ],
  3153. "authors": [
  3154. {
  3155. "name": "Brian Nesbitt",
  3156. "email": "brian@nesbot.com",
  3157. "homepage": "https://markido.com"
  3158. },
  3159. {
  3160. "name": "kylekatarnls",
  3161. "homepage": "https://github.com/kylekatarnls"
  3162. }
  3163. ],
  3164. "description": "An API extension for DateTime that supports 281 different languages.",
  3165. "homepage": "https://carbon.nesbot.com",
  3166. "keywords": [
  3167. "date",
  3168. "datetime",
  3169. "time"
  3170. ],
  3171. "support": {
  3172. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3173. "source": "https://github.com/briannesbitt/Carbon"
  3174. },
  3175. "funding": [
  3176. {
  3177. "url": "https://opencollective.com/Carbon",
  3178. "type": "open_collective"
  3179. },
  3180. {
  3181. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3182. "type": "tidelift"
  3183. }
  3184. ],
  3185. "time": "2021-09-06T09:29:23+00:00"
  3186. },
  3187. {
  3188. "name": "nikic/php-parser",
  3189. "version": "v4.13.0",
  3190. "source": {
  3191. "type": "git",
  3192. "url": "https://github.com/nikic/PHP-Parser.git",
  3193. "reference": "50953a2691a922aa1769461637869a0a2faa3f53"
  3194. },
  3195. "dist": {
  3196. "type": "zip",
  3197. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/50953a2691a922aa1769461637869a0a2faa3f53",
  3198. "reference": "50953a2691a922aa1769461637869a0a2faa3f53",
  3199. "shasum": "",
  3200. "mirrors": [
  3201. {
  3202. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3203. "preferred": true
  3204. }
  3205. ]
  3206. },
  3207. "require": {
  3208. "ext-tokenizer": "*",
  3209. "php": ">=7.0"
  3210. },
  3211. "require-dev": {
  3212. "ircmaxell/php-yacc": "^0.0.7",
  3213. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3214. },
  3215. "bin": [
  3216. "bin/php-parse"
  3217. ],
  3218. "type": "library",
  3219. "extra": {
  3220. "branch-alias": {
  3221. "dev-master": "4.9-dev"
  3222. }
  3223. },
  3224. "autoload": {
  3225. "psr-4": {
  3226. "PhpParser\\": "lib/PhpParser"
  3227. }
  3228. },
  3229. "notification-url": "https://packagist.org/downloads/",
  3230. "license": [
  3231. "BSD-3-Clause"
  3232. ],
  3233. "authors": [
  3234. {
  3235. "name": "Nikita Popov"
  3236. }
  3237. ],
  3238. "description": "A PHP parser written in PHP",
  3239. "keywords": [
  3240. "parser",
  3241. "php"
  3242. ],
  3243. "support": {
  3244. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3245. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.0"
  3246. },
  3247. "time": "2021-09-20T12:20:58+00:00"
  3248. },
  3249. {
  3250. "name": "opis/closure",
  3251. "version": "3.6.2",
  3252. "source": {
  3253. "type": "git",
  3254. "url": "https://github.com/opis/closure.git",
  3255. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  3256. },
  3257. "dist": {
  3258. "type": "zip",
  3259. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3260. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3261. "shasum": "",
  3262. "mirrors": [
  3263. {
  3264. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3265. "preferred": true
  3266. }
  3267. ]
  3268. },
  3269. "require": {
  3270. "php": "^5.4 || ^7.0 || ^8.0"
  3271. },
  3272. "require-dev": {
  3273. "jeremeamia/superclosure": "^2.0",
  3274. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3275. },
  3276. "type": "library",
  3277. "extra": {
  3278. "branch-alias": {
  3279. "dev-master": "3.6.x-dev"
  3280. }
  3281. },
  3282. "autoload": {
  3283. "psr-4": {
  3284. "Opis\\Closure\\": "src/"
  3285. },
  3286. "files": [
  3287. "functions.php"
  3288. ]
  3289. },
  3290. "notification-url": "https://packagist.org/downloads/",
  3291. "license": [
  3292. "MIT"
  3293. ],
  3294. "authors": [
  3295. {
  3296. "name": "Marius Sarca",
  3297. "email": "marius.sarca@gmail.com"
  3298. },
  3299. {
  3300. "name": "Sorin Sarca",
  3301. "email": "sarca_sorin@hotmail.com"
  3302. }
  3303. ],
  3304. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3305. "homepage": "https://opis.io/closure",
  3306. "keywords": [
  3307. "anonymous functions",
  3308. "closure",
  3309. "function",
  3310. "serializable",
  3311. "serialization",
  3312. "serialize"
  3313. ],
  3314. "support": {
  3315. "issues": "https://github.com/opis/closure/issues",
  3316. "source": "https://github.com/opis/closure/tree/3.6.2"
  3317. },
  3318. "time": "2021-04-09T13:42:10+00:00"
  3319. },
  3320. {
  3321. "name": "oursdreams/export",
  3322. "version": "0.0.7",
  3323. "source": {
  3324. "type": "git",
  3325. "url": "https://github.com/oursdreams/export.git",
  3326. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3"
  3327. },
  3328. "dist": {
  3329. "type": "zip",
  3330. "url": "https://api.github.com/repos/oursdreams/export/zipball/ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3331. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3332. "shasum": "",
  3333. "mirrors": [
  3334. {
  3335. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3336. "preferred": true
  3337. }
  3338. ]
  3339. },
  3340. "type": "library",
  3341. "extra": {
  3342. "laravel": {
  3343. "providers": [
  3344. "Oursdreams\\Export\\ExportServiceProvider"
  3345. ]
  3346. }
  3347. },
  3348. "autoload": {
  3349. "psr-4": {
  3350. "Oursdreams\\Export\\": "./src"
  3351. }
  3352. },
  3353. "notification-url": "https://packagist.org/downloads/",
  3354. "license": [
  3355. "MIT"
  3356. ],
  3357. "authors": [
  3358. {
  3359. "name": "oursdreams",
  3360. "email": "z1792524653@163.com"
  3361. }
  3362. ],
  3363. "description": "A simple export plug-in",
  3364. "support": {
  3365. "issues": "https://github.com/oursdreams/export/issues",
  3366. "source": "https://github.com/oursdreams/export/tree/0.0.7"
  3367. },
  3368. "time": "2021-06-01T03:01:13+00:00"
  3369. },
  3370. {
  3371. "name": "overtrue/laravel-pinyin",
  3372. "version": "4.0.0",
  3373. "source": {
  3374. "type": "git",
  3375. "url": "https://github.com/overtrue/laravel-pinyin.git",
  3376. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  3377. },
  3378. "dist": {
  3379. "type": "zip",
  3380. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3381. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3382. "shasum": "",
  3383. "mirrors": [
  3384. {
  3385. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3386. "preferred": true
  3387. }
  3388. ]
  3389. },
  3390. "require": {
  3391. "overtrue/pinyin": "~4.0"
  3392. },
  3393. "type": "library",
  3394. "extra": {
  3395. "laravel": {
  3396. "providers": [
  3397. "Overtrue\\LaravelPinyin\\ServiceProvider"
  3398. ],
  3399. "aliases": {
  3400. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  3401. }
  3402. }
  3403. },
  3404. "autoload": {
  3405. "psr-4": {
  3406. "Overtrue\\LaravelPinyin\\": "src/"
  3407. },
  3408. "files": [
  3409. "src/helpers.php"
  3410. ]
  3411. },
  3412. "notification-url": "https://packagist.org/downloads/",
  3413. "license": [
  3414. "MIT"
  3415. ],
  3416. "authors": [
  3417. {
  3418. "name": "overtrue",
  3419. "email": "anzhengchao@gmail.com"
  3420. }
  3421. ],
  3422. "description": "Chinese to Pinyin translator.",
  3423. "keywords": [
  3424. "Chinese",
  3425. "Pinyin",
  3426. "laravel",
  3427. "overtrue"
  3428. ],
  3429. "support": {
  3430. "issues": "https://github.com/overtrue/laravel-pinyin/issues",
  3431. "source": "https://github.com/overtrue/laravel-pinyin/tree/master"
  3432. },
  3433. "time": "2018-10-10T09:02:46+00:00"
  3434. },
  3435. {
  3436. "name": "overtrue/pinyin",
  3437. "version": "4.0.8",
  3438. "source": {
  3439. "type": "git",
  3440. "url": "https://github.com/overtrue/pinyin.git",
  3441. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2"
  3442. },
  3443. "dist": {
  3444. "type": "zip",
  3445. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  3446. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  3447. "shasum": "",
  3448. "mirrors": [
  3449. {
  3450. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3451. "preferred": true
  3452. }
  3453. ]
  3454. },
  3455. "require": {
  3456. "php": ">=7.1"
  3457. },
  3458. "require-dev": {
  3459. "brainmaestro/composer-git-hooks": "^2.7",
  3460. "friendsofphp/php-cs-fixer": "^2.16",
  3461. "phpunit/phpunit": "~8.0"
  3462. },
  3463. "type": "library",
  3464. "extra": {
  3465. "hooks": {
  3466. "pre-commit": [
  3467. "composer test",
  3468. "composer fix-style"
  3469. ],
  3470. "pre-push": [
  3471. "composer test",
  3472. "composer check-style"
  3473. ]
  3474. }
  3475. },
  3476. "autoload": {
  3477. "psr-4": {
  3478. "Overtrue\\Pinyin\\": "src/"
  3479. },
  3480. "files": [
  3481. "src/const.php"
  3482. ]
  3483. },
  3484. "notification-url": "https://packagist.org/downloads/",
  3485. "license": [
  3486. "MIT"
  3487. ],
  3488. "authors": [
  3489. {
  3490. "name": "overtrue",
  3491. "email": "anzhengchao@gmail.com",
  3492. "homepage": "http://github.com/overtrue"
  3493. }
  3494. ],
  3495. "description": "Chinese to pinyin translator.",
  3496. "homepage": "https://github.com/overtrue/pinyin",
  3497. "keywords": [
  3498. "Chinese",
  3499. "Pinyin",
  3500. "cn2pinyin"
  3501. ],
  3502. "support": {
  3503. "issues": "https://github.com/overtrue/pinyin/issues",
  3504. "source": "https://github.com/overtrue/pinyin/tree/4.0.8"
  3505. },
  3506. "funding": [
  3507. {
  3508. "url": "https://www.patreon.com/overtrue",
  3509. "type": "patreon"
  3510. }
  3511. ],
  3512. "time": "2021-07-19T03:43:32+00:00"
  3513. },
  3514. {
  3515. "name": "paragonie/random_compat",
  3516. "version": "v9.99.100",
  3517. "source": {
  3518. "type": "git",
  3519. "url": "https://github.com/paragonie/random_compat.git",
  3520. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3521. },
  3522. "dist": {
  3523. "type": "zip",
  3524. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3525. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3526. "shasum": "",
  3527. "mirrors": [
  3528. {
  3529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3530. "preferred": true
  3531. }
  3532. ]
  3533. },
  3534. "require": {
  3535. "php": ">= 7"
  3536. },
  3537. "require-dev": {
  3538. "phpunit/phpunit": "4.*|5.*",
  3539. "vimeo/psalm": "^1"
  3540. },
  3541. "suggest": {
  3542. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3543. },
  3544. "type": "library",
  3545. "notification-url": "https://packagist.org/downloads/",
  3546. "license": [
  3547. "MIT"
  3548. ],
  3549. "authors": [
  3550. {
  3551. "name": "Paragon Initiative Enterprises",
  3552. "email": "security@paragonie.com",
  3553. "homepage": "https://paragonie.com"
  3554. }
  3555. ],
  3556. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3557. "keywords": [
  3558. "csprng",
  3559. "polyfill",
  3560. "pseudorandom",
  3561. "random"
  3562. ],
  3563. "support": {
  3564. "email": "info@paragonie.com",
  3565. "issues": "https://github.com/paragonie/random_compat/issues",
  3566. "source": "https://github.com/paragonie/random_compat"
  3567. },
  3568. "time": "2020-10-15T08:29:30+00:00"
  3569. },
  3570. {
  3571. "name": "paragonie/sodium_compat",
  3572. "version": "v1.17.0",
  3573. "source": {
  3574. "type": "git",
  3575. "url": "https://github.com/paragonie/sodium_compat.git",
  3576. "reference": "c59cac21abbcc0df06a3dd18076450ea4797b321"
  3577. },
  3578. "dist": {
  3579. "type": "zip",
  3580. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/c59cac21abbcc0df06a3dd18076450ea4797b321",
  3581. "reference": "c59cac21abbcc0df06a3dd18076450ea4797b321",
  3582. "shasum": "",
  3583. "mirrors": [
  3584. {
  3585. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3586. "preferred": true
  3587. }
  3588. ]
  3589. },
  3590. "require": {
  3591. "paragonie/random_compat": ">=1",
  3592. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  3593. },
  3594. "require-dev": {
  3595. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  3596. },
  3597. "suggest": {
  3598. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  3599. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  3600. },
  3601. "type": "library",
  3602. "autoload": {
  3603. "files": [
  3604. "autoload.php"
  3605. ]
  3606. },
  3607. "notification-url": "https://packagist.org/downloads/",
  3608. "license": [
  3609. "ISC"
  3610. ],
  3611. "authors": [
  3612. {
  3613. "name": "Paragon Initiative Enterprises",
  3614. "email": "security@paragonie.com"
  3615. },
  3616. {
  3617. "name": "Frank Denis",
  3618. "email": "jedisct1@pureftpd.org"
  3619. }
  3620. ],
  3621. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  3622. "keywords": [
  3623. "Authentication",
  3624. "BLAKE2b",
  3625. "ChaCha20",
  3626. "ChaCha20-Poly1305",
  3627. "Chapoly",
  3628. "Curve25519",
  3629. "Ed25519",
  3630. "EdDSA",
  3631. "Edwards-curve Digital Signature Algorithm",
  3632. "Elliptic Curve Diffie-Hellman",
  3633. "Poly1305",
  3634. "Pure-PHP cryptography",
  3635. "RFC 7748",
  3636. "RFC 8032",
  3637. "Salpoly",
  3638. "Salsa20",
  3639. "X25519",
  3640. "XChaCha20-Poly1305",
  3641. "XSalsa20-Poly1305",
  3642. "Xchacha20",
  3643. "Xsalsa20",
  3644. "aead",
  3645. "cryptography",
  3646. "ecdh",
  3647. "elliptic curve",
  3648. "elliptic curve cryptography",
  3649. "encryption",
  3650. "libsodium",
  3651. "php",
  3652. "public-key cryptography",
  3653. "secret-key cryptography",
  3654. "side-channel resistant"
  3655. ],
  3656. "support": {
  3657. "issues": "https://github.com/paragonie/sodium_compat/issues",
  3658. "source": "https://github.com/paragonie/sodium_compat/tree/v1.17.0"
  3659. },
  3660. "time": "2021-08-10T02:43:50+00:00"
  3661. },
  3662. {
  3663. "name": "phpoffice/phpspreadsheet",
  3664. "version": "1.18.0",
  3665. "source": {
  3666. "type": "git",
  3667. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3668. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c"
  3669. },
  3670. "dist": {
  3671. "type": "zip",
  3672. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3673. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3674. "shasum": "",
  3675. "mirrors": [
  3676. {
  3677. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3678. "preferred": true
  3679. }
  3680. ]
  3681. },
  3682. "require": {
  3683. "ext-ctype": "*",
  3684. "ext-dom": "*",
  3685. "ext-fileinfo": "*",
  3686. "ext-gd": "*",
  3687. "ext-iconv": "*",
  3688. "ext-libxml": "*",
  3689. "ext-mbstring": "*",
  3690. "ext-simplexml": "*",
  3691. "ext-xml": "*",
  3692. "ext-xmlreader": "*",
  3693. "ext-xmlwriter": "*",
  3694. "ext-zip": "*",
  3695. "ext-zlib": "*",
  3696. "ezyang/htmlpurifier": "^4.13",
  3697. "maennchen/zipstream-php": "^2.1",
  3698. "markbaker/complex": "^2.0",
  3699. "markbaker/matrix": "^2.0",
  3700. "php": "^7.2 || ^8.0",
  3701. "psr/http-client": "^1.0",
  3702. "psr/http-factory": "^1.0",
  3703. "psr/simple-cache": "^1.0"
  3704. },
  3705. "require-dev": {
  3706. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3707. "dompdf/dompdf": "^1.0",
  3708. "friendsofphp/php-cs-fixer": "^2.18",
  3709. "jpgraph/jpgraph": "^4.0",
  3710. "mpdf/mpdf": "^8.0",
  3711. "phpcompatibility/php-compatibility": "^9.3",
  3712. "phpstan/phpstan": "^0.12.82",
  3713. "phpstan/phpstan-phpunit": "^0.12.18",
  3714. "phpunit/phpunit": "^8.5",
  3715. "squizlabs/php_codesniffer": "^3.5",
  3716. "tecnickcom/tcpdf": "^6.3"
  3717. },
  3718. "suggest": {
  3719. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3720. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3721. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3722. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3723. },
  3724. "type": "library",
  3725. "autoload": {
  3726. "psr-4": {
  3727. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3728. }
  3729. },
  3730. "notification-url": "https://packagist.org/downloads/",
  3731. "license": [
  3732. "MIT"
  3733. ],
  3734. "authors": [
  3735. {
  3736. "name": "Maarten Balliauw",
  3737. "homepage": "https://blog.maartenballiauw.be"
  3738. },
  3739. {
  3740. "name": "Mark Baker",
  3741. "homepage": "https://markbakeruk.net"
  3742. },
  3743. {
  3744. "name": "Franck Lefevre",
  3745. "homepage": "https://rootslabs.net"
  3746. },
  3747. {
  3748. "name": "Erik Tilt"
  3749. },
  3750. {
  3751. "name": "Adrien Crivelli"
  3752. }
  3753. ],
  3754. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3755. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3756. "keywords": [
  3757. "OpenXML",
  3758. "excel",
  3759. "gnumeric",
  3760. "ods",
  3761. "php",
  3762. "spreadsheet",
  3763. "xls",
  3764. "xlsx"
  3765. ],
  3766. "support": {
  3767. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3768. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.18.0"
  3769. },
  3770. "time": "2021-05-31T18:21:15+00:00"
  3771. },
  3772. {
  3773. "name": "phpoption/phpoption",
  3774. "version": "1.8.0",
  3775. "source": {
  3776. "type": "git",
  3777. "url": "https://github.com/schmittjoh/php-option.git",
  3778. "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28"
  3779. },
  3780. "dist": {
  3781. "type": "zip",
  3782. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/5455cb38aed4523f99977c4a12ef19da4bfe2a28",
  3783. "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28",
  3784. "shasum": "",
  3785. "mirrors": [
  3786. {
  3787. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3788. "preferred": true
  3789. }
  3790. ]
  3791. },
  3792. "require": {
  3793. "php": "^7.0 || ^8.0"
  3794. },
  3795. "require-dev": {
  3796. "bamarni/composer-bin-plugin": "^1.4.1",
  3797. "phpunit/phpunit": "^6.5.14 || ^7.0.20 || ^8.5.19 || ^9.5.8"
  3798. },
  3799. "type": "library",
  3800. "extra": {
  3801. "branch-alias": {
  3802. "dev-master": "1.8-dev"
  3803. }
  3804. },
  3805. "autoload": {
  3806. "psr-4": {
  3807. "PhpOption\\": "src/PhpOption/"
  3808. }
  3809. },
  3810. "notification-url": "https://packagist.org/downloads/",
  3811. "license": [
  3812. "Apache-2.0"
  3813. ],
  3814. "authors": [
  3815. {
  3816. "name": "Johannes M. Schmitt",
  3817. "email": "schmittjoh@gmail.com"
  3818. },
  3819. {
  3820. "name": "Graham Campbell",
  3821. "email": "hello@gjcampbell.co.uk"
  3822. }
  3823. ],
  3824. "description": "Option Type for PHP",
  3825. "keywords": [
  3826. "language",
  3827. "option",
  3828. "php",
  3829. "type"
  3830. ],
  3831. "support": {
  3832. "issues": "https://github.com/schmittjoh/php-option/issues",
  3833. "source": "https://github.com/schmittjoh/php-option/tree/1.8.0"
  3834. },
  3835. "funding": [
  3836. {
  3837. "url": "https://github.com/GrahamCampbell",
  3838. "type": "github"
  3839. },
  3840. {
  3841. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3842. "type": "tidelift"
  3843. }
  3844. ],
  3845. "time": "2021-08-28T21:27:29+00:00"
  3846. },
  3847. {
  3848. "name": "picqer/php-barcode-generator",
  3849. "version": "v2.2.0",
  3850. "source": {
  3851. "type": "git",
  3852. "url": "https://github.com/picqer/php-barcode-generator.git",
  3853. "reference": "7df93b40099e5fefad055543320a36b80dccda05"
  3854. },
  3855. "dist": {
  3856. "type": "zip",
  3857. "url": "https://api.github.com/repos/picqer/php-barcode-generator/zipball/7df93b40099e5fefad055543320a36b80dccda05",
  3858. "reference": "7df93b40099e5fefad055543320a36b80dccda05",
  3859. "shasum": "",
  3860. "mirrors": [
  3861. {
  3862. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3863. "preferred": true
  3864. }
  3865. ]
  3866. },
  3867. "require": {
  3868. "ext-mbstring": "*",
  3869. "php": "^7.3|^8.0"
  3870. },
  3871. "require-dev": {
  3872. "phpunit/phpunit": "^9.5"
  3873. },
  3874. "suggest": {
  3875. "ext-bcmath": "Barcode IMB (Intelligent Mail Barcode) needs bcmath extension",
  3876. "ext-gd": "For JPG and PNG generators, GD or Imagick is required",
  3877. "ext-imagick": "For JPG and PNG generators, GD or Imagick is required"
  3878. },
  3879. "type": "library",
  3880. "autoload": {
  3881. "psr-4": {
  3882. "Picqer\\Barcode\\": "src"
  3883. }
  3884. },
  3885. "notification-url": "https://packagist.org/downloads/",
  3886. "license": [
  3887. "LGPL-3.0-or-later"
  3888. ],
  3889. "authors": [
  3890. {
  3891. "name": "Nicola Asuni",
  3892. "email": "info@tecnick.com",
  3893. "homepage": "http://nicolaasuni.tecnick.com"
  3894. },
  3895. {
  3896. "name": "Casper Bakker",
  3897. "email": "info@picqer.com",
  3898. "homepage": "https://picqer.com"
  3899. }
  3900. ],
  3901. "description": "An easy to use, non-bloated, barcode generator in PHP. Creates SVG, PNG, JPG and HTML images from the most used 1D barcode standards.",
  3902. "homepage": "https://github.com/picqer/php-barcode-generator",
  3903. "keywords": [
  3904. "CODABAR",
  3905. "Code11",
  3906. "Code93",
  3907. "EAN13",
  3908. "KIX",
  3909. "KIXCODE",
  3910. "MSI",
  3911. "POSTNET",
  3912. "Pharma",
  3913. "Standard 2 of 5",
  3914. "barcode",
  3915. "barcode generator",
  3916. "code128",
  3917. "code39",
  3918. "ean",
  3919. "html",
  3920. "jpeg",
  3921. "jpg",
  3922. "php",
  3923. "png",
  3924. "svg",
  3925. "upc"
  3926. ],
  3927. "support": {
  3928. "issues": "https://github.com/picqer/php-barcode-generator/issues",
  3929. "source": "https://github.com/picqer/php-barcode-generator/tree/v2.2.0"
  3930. },
  3931. "funding": [
  3932. {
  3933. "url": "https://github.com/casperbakker",
  3934. "type": "github"
  3935. }
  3936. ],
  3937. "time": "2021-03-27T09:06:22+00:00"
  3938. },
  3939. {
  3940. "name": "predis/predis",
  3941. "version": "v1.1.9",
  3942. "source": {
  3943. "type": "git",
  3944. "url": "https://github.com/predis/predis.git",
  3945. "reference": "c50c3393bb9f47fa012d0cdfb727a266b0818259"
  3946. },
  3947. "dist": {
  3948. "type": "zip",
  3949. "url": "https://api.github.com/repos/predis/predis/zipball/c50c3393bb9f47fa012d0cdfb727a266b0818259",
  3950. "reference": "c50c3393bb9f47fa012d0cdfb727a266b0818259",
  3951. "shasum": "",
  3952. "mirrors": [
  3953. {
  3954. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3955. "preferred": true
  3956. }
  3957. ]
  3958. },
  3959. "require": {
  3960. "php": ">=5.3.9"
  3961. },
  3962. "require-dev": {
  3963. "phpunit/phpunit": "~4.8"
  3964. },
  3965. "suggest": {
  3966. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3967. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3968. },
  3969. "type": "library",
  3970. "autoload": {
  3971. "psr-4": {
  3972. "Predis\\": "src/"
  3973. }
  3974. },
  3975. "notification-url": "https://packagist.org/downloads/",
  3976. "license": [
  3977. "MIT"
  3978. ],
  3979. "authors": [
  3980. {
  3981. "name": "Daniele Alessandri",
  3982. "email": "suppakilla@gmail.com",
  3983. "homepage": "http://clorophilla.net",
  3984. "role": "Creator & Maintainer"
  3985. },
  3986. {
  3987. "name": "Till Krüss",
  3988. "homepage": "https://till.im",
  3989. "role": "Maintainer"
  3990. }
  3991. ],
  3992. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3993. "homepage": "http://github.com/predis/predis",
  3994. "keywords": [
  3995. "nosql",
  3996. "predis",
  3997. "redis"
  3998. ],
  3999. "support": {
  4000. "issues": "https://github.com/predis/predis/issues",
  4001. "source": "https://github.com/predis/predis/tree/v1.1.9"
  4002. },
  4003. "funding": [
  4004. {
  4005. "url": "https://github.com/sponsors/tillkruss",
  4006. "type": "github"
  4007. }
  4008. ],
  4009. "time": "2021-10-05T19:02:38+00:00"
  4010. },
  4011. {
  4012. "name": "psr/container",
  4013. "version": "1.1.1",
  4014. "source": {
  4015. "type": "git",
  4016. "url": "https://github.com/php-fig/container.git",
  4017. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  4018. },
  4019. "dist": {
  4020. "type": "zip",
  4021. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  4022. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  4023. "shasum": "",
  4024. "mirrors": [
  4025. {
  4026. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4027. "preferred": true
  4028. }
  4029. ]
  4030. },
  4031. "require": {
  4032. "php": ">=7.2.0"
  4033. },
  4034. "type": "library",
  4035. "autoload": {
  4036. "psr-4": {
  4037. "Psr\\Container\\": "src/"
  4038. }
  4039. },
  4040. "notification-url": "https://packagist.org/downloads/",
  4041. "license": [
  4042. "MIT"
  4043. ],
  4044. "authors": [
  4045. {
  4046. "name": "PHP-FIG",
  4047. "homepage": "https://www.php-fig.org/"
  4048. }
  4049. ],
  4050. "description": "Common Container Interface (PHP FIG PSR-11)",
  4051. "homepage": "https://github.com/php-fig/container",
  4052. "keywords": [
  4053. "PSR-11",
  4054. "container",
  4055. "container-interface",
  4056. "container-interop",
  4057. "psr"
  4058. ],
  4059. "support": {
  4060. "issues": "https://github.com/php-fig/container/issues",
  4061. "source": "https://github.com/php-fig/container/tree/1.1.1"
  4062. },
  4063. "time": "2021-03-05T17:36:06+00:00"
  4064. },
  4065. {
  4066. "name": "psr/event-dispatcher",
  4067. "version": "1.0.0",
  4068. "source": {
  4069. "type": "git",
  4070. "url": "https://github.com/php-fig/event-dispatcher.git",
  4071. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4072. },
  4073. "dist": {
  4074. "type": "zip",
  4075. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4076. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4077. "shasum": "",
  4078. "mirrors": [
  4079. {
  4080. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4081. "preferred": true
  4082. }
  4083. ]
  4084. },
  4085. "require": {
  4086. "php": ">=7.2.0"
  4087. },
  4088. "type": "library",
  4089. "extra": {
  4090. "branch-alias": {
  4091. "dev-master": "1.0.x-dev"
  4092. }
  4093. },
  4094. "autoload": {
  4095. "psr-4": {
  4096. "Psr\\EventDispatcher\\": "src/"
  4097. }
  4098. },
  4099. "notification-url": "https://packagist.org/downloads/",
  4100. "license": [
  4101. "MIT"
  4102. ],
  4103. "authors": [
  4104. {
  4105. "name": "PHP-FIG",
  4106. "homepage": "http://www.php-fig.org/"
  4107. }
  4108. ],
  4109. "description": "Standard interfaces for event handling.",
  4110. "keywords": [
  4111. "events",
  4112. "psr",
  4113. "psr-14"
  4114. ],
  4115. "support": {
  4116. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4117. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4118. },
  4119. "time": "2019-01-08T18:20:26+00:00"
  4120. },
  4121. {
  4122. "name": "psr/http-client",
  4123. "version": "1.0.1",
  4124. "source": {
  4125. "type": "git",
  4126. "url": "https://github.com/php-fig/http-client.git",
  4127. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4128. },
  4129. "dist": {
  4130. "type": "zip",
  4131. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4132. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4133. "shasum": "",
  4134. "mirrors": [
  4135. {
  4136. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4137. "preferred": true
  4138. }
  4139. ]
  4140. },
  4141. "require": {
  4142. "php": "^7.0 || ^8.0",
  4143. "psr/http-message": "^1.0"
  4144. },
  4145. "type": "library",
  4146. "extra": {
  4147. "branch-alias": {
  4148. "dev-master": "1.0.x-dev"
  4149. }
  4150. },
  4151. "autoload": {
  4152. "psr-4": {
  4153. "Psr\\Http\\Client\\": "src/"
  4154. }
  4155. },
  4156. "notification-url": "https://packagist.org/downloads/",
  4157. "license": [
  4158. "MIT"
  4159. ],
  4160. "authors": [
  4161. {
  4162. "name": "PHP-FIG",
  4163. "homepage": "http://www.php-fig.org/"
  4164. }
  4165. ],
  4166. "description": "Common interface for HTTP clients",
  4167. "homepage": "https://github.com/php-fig/http-client",
  4168. "keywords": [
  4169. "http",
  4170. "http-client",
  4171. "psr",
  4172. "psr-18"
  4173. ],
  4174. "support": {
  4175. "source": "https://github.com/php-fig/http-client/tree/master"
  4176. },
  4177. "time": "2020-06-29T06:28:15+00:00"
  4178. },
  4179. {
  4180. "name": "psr/http-factory",
  4181. "version": "1.0.1",
  4182. "source": {
  4183. "type": "git",
  4184. "url": "https://github.com/php-fig/http-factory.git",
  4185. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4186. },
  4187. "dist": {
  4188. "type": "zip",
  4189. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4190. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4191. "shasum": "",
  4192. "mirrors": [
  4193. {
  4194. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4195. "preferred": true
  4196. }
  4197. ]
  4198. },
  4199. "require": {
  4200. "php": ">=7.0.0",
  4201. "psr/http-message": "^1.0"
  4202. },
  4203. "type": "library",
  4204. "extra": {
  4205. "branch-alias": {
  4206. "dev-master": "1.0.x-dev"
  4207. }
  4208. },
  4209. "autoload": {
  4210. "psr-4": {
  4211. "Psr\\Http\\Message\\": "src/"
  4212. }
  4213. },
  4214. "notification-url": "https://packagist.org/downloads/",
  4215. "license": [
  4216. "MIT"
  4217. ],
  4218. "authors": [
  4219. {
  4220. "name": "PHP-FIG",
  4221. "homepage": "http://www.php-fig.org/"
  4222. }
  4223. ],
  4224. "description": "Common interfaces for PSR-7 HTTP message factories",
  4225. "keywords": [
  4226. "factory",
  4227. "http",
  4228. "message",
  4229. "psr",
  4230. "psr-17",
  4231. "psr-7",
  4232. "request",
  4233. "response"
  4234. ],
  4235. "support": {
  4236. "source": "https://github.com/php-fig/http-factory/tree/master"
  4237. },
  4238. "time": "2019-04-30T12:38:16+00:00"
  4239. },
  4240. {
  4241. "name": "psr/http-message",
  4242. "version": "1.0.1",
  4243. "source": {
  4244. "type": "git",
  4245. "url": "https://github.com/php-fig/http-message.git",
  4246. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4247. },
  4248. "dist": {
  4249. "type": "zip",
  4250. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4251. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4252. "shasum": "",
  4253. "mirrors": [
  4254. {
  4255. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4256. "preferred": true
  4257. }
  4258. ]
  4259. },
  4260. "require": {
  4261. "php": ">=5.3.0"
  4262. },
  4263. "type": "library",
  4264. "extra": {
  4265. "branch-alias": {
  4266. "dev-master": "1.0.x-dev"
  4267. }
  4268. },
  4269. "autoload": {
  4270. "psr-4": {
  4271. "Psr\\Http\\Message\\": "src/"
  4272. }
  4273. },
  4274. "notification-url": "https://packagist.org/downloads/",
  4275. "license": [
  4276. "MIT"
  4277. ],
  4278. "authors": [
  4279. {
  4280. "name": "PHP-FIG",
  4281. "homepage": "http://www.php-fig.org/"
  4282. }
  4283. ],
  4284. "description": "Common interface for HTTP messages",
  4285. "homepage": "https://github.com/php-fig/http-message",
  4286. "keywords": [
  4287. "http",
  4288. "http-message",
  4289. "psr",
  4290. "psr-7",
  4291. "request",
  4292. "response"
  4293. ],
  4294. "support": {
  4295. "source": "https://github.com/php-fig/http-message/tree/master"
  4296. },
  4297. "time": "2016-08-06T14:39:51+00:00"
  4298. },
  4299. {
  4300. "name": "psr/log",
  4301. "version": "1.1.4",
  4302. "source": {
  4303. "type": "git",
  4304. "url": "https://github.com/php-fig/log.git",
  4305. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4306. },
  4307. "dist": {
  4308. "type": "zip",
  4309. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4310. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4311. "shasum": "",
  4312. "mirrors": [
  4313. {
  4314. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4315. "preferred": true
  4316. }
  4317. ]
  4318. },
  4319. "require": {
  4320. "php": ">=5.3.0"
  4321. },
  4322. "type": "library",
  4323. "extra": {
  4324. "branch-alias": {
  4325. "dev-master": "1.1.x-dev"
  4326. }
  4327. },
  4328. "autoload": {
  4329. "psr-4": {
  4330. "Psr\\Log\\": "Psr/Log/"
  4331. }
  4332. },
  4333. "notification-url": "https://packagist.org/downloads/",
  4334. "license": [
  4335. "MIT"
  4336. ],
  4337. "authors": [
  4338. {
  4339. "name": "PHP-FIG",
  4340. "homepage": "https://www.php-fig.org/"
  4341. }
  4342. ],
  4343. "description": "Common interface for logging libraries",
  4344. "homepage": "https://github.com/php-fig/log",
  4345. "keywords": [
  4346. "log",
  4347. "psr",
  4348. "psr-3"
  4349. ],
  4350. "support": {
  4351. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4352. },
  4353. "time": "2021-05-03T11:20:27+00:00"
  4354. },
  4355. {
  4356. "name": "psr/simple-cache",
  4357. "version": "1.0.1",
  4358. "source": {
  4359. "type": "git",
  4360. "url": "https://github.com/php-fig/simple-cache.git",
  4361. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4362. },
  4363. "dist": {
  4364. "type": "zip",
  4365. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4366. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4367. "shasum": "",
  4368. "mirrors": [
  4369. {
  4370. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4371. "preferred": true
  4372. }
  4373. ]
  4374. },
  4375. "require": {
  4376. "php": ">=5.3.0"
  4377. },
  4378. "type": "library",
  4379. "extra": {
  4380. "branch-alias": {
  4381. "dev-master": "1.0.x-dev"
  4382. }
  4383. },
  4384. "autoload": {
  4385. "psr-4": {
  4386. "Psr\\SimpleCache\\": "src/"
  4387. }
  4388. },
  4389. "notification-url": "https://packagist.org/downloads/",
  4390. "license": [
  4391. "MIT"
  4392. ],
  4393. "authors": [
  4394. {
  4395. "name": "PHP-FIG",
  4396. "homepage": "http://www.php-fig.org/"
  4397. }
  4398. ],
  4399. "description": "Common interfaces for simple caching",
  4400. "keywords": [
  4401. "cache",
  4402. "caching",
  4403. "psr",
  4404. "psr-16",
  4405. "simple-cache"
  4406. ],
  4407. "support": {
  4408. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4409. },
  4410. "time": "2017-10-23T01:57:42+00:00"
  4411. },
  4412. {
  4413. "name": "psy/psysh",
  4414. "version": "v0.10.9",
  4415. "source": {
  4416. "type": "git",
  4417. "url": "https://github.com/bobthecow/psysh.git",
  4418. "reference": "01281336c4ae557fe4a994544f30d3a1bc204375"
  4419. },
  4420. "dist": {
  4421. "type": "zip",
  4422. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/01281336c4ae557fe4a994544f30d3a1bc204375",
  4423. "reference": "01281336c4ae557fe4a994544f30d3a1bc204375",
  4424. "shasum": "",
  4425. "mirrors": [
  4426. {
  4427. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4428. "preferred": true
  4429. }
  4430. ]
  4431. },
  4432. "require": {
  4433. "ext-json": "*",
  4434. "ext-tokenizer": "*",
  4435. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4436. "php": "^8.0 || ^7.0 || ^5.5.9",
  4437. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4438. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4439. },
  4440. "require-dev": {
  4441. "bamarni/composer-bin-plugin": "^1.2",
  4442. "hoa/console": "3.17.*"
  4443. },
  4444. "suggest": {
  4445. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4446. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4447. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4448. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4449. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4450. },
  4451. "bin": [
  4452. "bin/psysh"
  4453. ],
  4454. "type": "library",
  4455. "extra": {
  4456. "branch-alias": {
  4457. "dev-main": "0.10.x-dev"
  4458. }
  4459. },
  4460. "autoload": {
  4461. "files": [
  4462. "src/functions.php"
  4463. ],
  4464. "psr-4": {
  4465. "Psy\\": "src/"
  4466. }
  4467. },
  4468. "notification-url": "https://packagist.org/downloads/",
  4469. "license": [
  4470. "MIT"
  4471. ],
  4472. "authors": [
  4473. {
  4474. "name": "Justin Hileman",
  4475. "email": "justin@justinhileman.info",
  4476. "homepage": "http://justinhileman.com"
  4477. }
  4478. ],
  4479. "description": "An interactive shell for modern PHP.",
  4480. "homepage": "http://psysh.org",
  4481. "keywords": [
  4482. "REPL",
  4483. "console",
  4484. "interactive",
  4485. "shell"
  4486. ],
  4487. "support": {
  4488. "issues": "https://github.com/bobthecow/psysh/issues",
  4489. "source": "https://github.com/bobthecow/psysh/tree/v0.10.9"
  4490. },
  4491. "time": "2021-10-10T13:37:39+00:00"
  4492. },
  4493. {
  4494. "name": "pusher/pusher-php-server",
  4495. "version": "v4.1.5",
  4496. "source": {
  4497. "type": "git",
  4498. "url": "https://github.com/pusher/pusher-http-php.git",
  4499. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  4500. },
  4501. "dist": {
  4502. "type": "zip",
  4503. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4504. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4505. "shasum": "",
  4506. "mirrors": [
  4507. {
  4508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4509. "preferred": true
  4510. }
  4511. ]
  4512. },
  4513. "require": {
  4514. "ext-curl": "*",
  4515. "paragonie/sodium_compat": "^1.6",
  4516. "php": "^7.1|^8.0",
  4517. "psr/log": "^1.0"
  4518. },
  4519. "require-dev": {
  4520. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  4521. },
  4522. "type": "library",
  4523. "extra": {
  4524. "branch-alias": {
  4525. "dev-master": "3.4-dev"
  4526. }
  4527. },
  4528. "autoload": {
  4529. "psr-4": {
  4530. "Pusher\\": "src/"
  4531. }
  4532. },
  4533. "notification-url": "https://packagist.org/downloads/",
  4534. "license": [
  4535. "MIT"
  4536. ],
  4537. "description": "Library for interacting with the Pusher REST API",
  4538. "keywords": [
  4539. "events",
  4540. "messaging",
  4541. "php-pusher-server",
  4542. "publish",
  4543. "push",
  4544. "pusher",
  4545. "real time",
  4546. "real-time",
  4547. "realtime",
  4548. "rest",
  4549. "trigger"
  4550. ],
  4551. "support": {
  4552. "issues": "https://github.com/pusher/pusher-http-php/issues",
  4553. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  4554. },
  4555. "time": "2020-12-09T09:38:19+00:00"
  4556. },
  4557. {
  4558. "name": "ralouphie/getallheaders",
  4559. "version": "3.0.3",
  4560. "source": {
  4561. "type": "git",
  4562. "url": "https://github.com/ralouphie/getallheaders.git",
  4563. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4564. },
  4565. "dist": {
  4566. "type": "zip",
  4567. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4568. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4569. "shasum": "",
  4570. "mirrors": [
  4571. {
  4572. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4573. "preferred": true
  4574. }
  4575. ]
  4576. },
  4577. "require": {
  4578. "php": ">=5.6"
  4579. },
  4580. "require-dev": {
  4581. "php-coveralls/php-coveralls": "^2.1",
  4582. "phpunit/phpunit": "^5 || ^6.5"
  4583. },
  4584. "type": "library",
  4585. "autoload": {
  4586. "files": [
  4587. "src/getallheaders.php"
  4588. ]
  4589. },
  4590. "notification-url": "https://packagist.org/downloads/",
  4591. "license": [
  4592. "MIT"
  4593. ],
  4594. "authors": [
  4595. {
  4596. "name": "Ralph Khattar",
  4597. "email": "ralph.khattar@gmail.com"
  4598. }
  4599. ],
  4600. "description": "A polyfill for getallheaders.",
  4601. "support": {
  4602. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4603. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4604. },
  4605. "time": "2019-03-08T08:55:37+00:00"
  4606. },
  4607. {
  4608. "name": "ramsey/collection",
  4609. "version": "1.2.2",
  4610. "source": {
  4611. "type": "git",
  4612. "url": "https://github.com/ramsey/collection.git",
  4613. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  4614. },
  4615. "dist": {
  4616. "type": "zip",
  4617. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  4618. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  4619. "shasum": "",
  4620. "mirrors": [
  4621. {
  4622. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4623. "preferred": true
  4624. }
  4625. ]
  4626. },
  4627. "require": {
  4628. "php": "^7.3 || ^8",
  4629. "symfony/polyfill-php81": "^1.23"
  4630. },
  4631. "require-dev": {
  4632. "captainhook/captainhook": "^5.3",
  4633. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4634. "ergebnis/composer-normalize": "^2.6",
  4635. "fakerphp/faker": "^1.5",
  4636. "hamcrest/hamcrest-php": "^2",
  4637. "jangregor/phpstan-prophecy": "^0.8",
  4638. "mockery/mockery": "^1.3",
  4639. "phpspec/prophecy-phpunit": "^2.0",
  4640. "phpstan/extension-installer": "^1",
  4641. "phpstan/phpstan": "^0.12.32",
  4642. "phpstan/phpstan-mockery": "^0.12.5",
  4643. "phpstan/phpstan-phpunit": "^0.12.11",
  4644. "phpunit/phpunit": "^8.5 || ^9",
  4645. "psy/psysh": "^0.10.4",
  4646. "slevomat/coding-standard": "^6.3",
  4647. "squizlabs/php_codesniffer": "^3.5",
  4648. "vimeo/psalm": "^4.4"
  4649. },
  4650. "type": "library",
  4651. "autoload": {
  4652. "psr-4": {
  4653. "Ramsey\\Collection\\": "src/"
  4654. }
  4655. },
  4656. "notification-url": "https://packagist.org/downloads/",
  4657. "license": [
  4658. "MIT"
  4659. ],
  4660. "authors": [
  4661. {
  4662. "name": "Ben Ramsey",
  4663. "email": "ben@benramsey.com",
  4664. "homepage": "https://benramsey.com"
  4665. }
  4666. ],
  4667. "description": "A PHP library for representing and manipulating collections.",
  4668. "keywords": [
  4669. "array",
  4670. "collection",
  4671. "hash",
  4672. "map",
  4673. "queue",
  4674. "set"
  4675. ],
  4676. "support": {
  4677. "issues": "https://github.com/ramsey/collection/issues",
  4678. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  4679. },
  4680. "funding": [
  4681. {
  4682. "url": "https://github.com/ramsey",
  4683. "type": "github"
  4684. },
  4685. {
  4686. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4687. "type": "tidelift"
  4688. }
  4689. ],
  4690. "time": "2021-10-10T03:01:02+00:00"
  4691. },
  4692. {
  4693. "name": "ramsey/uuid",
  4694. "version": "4.2.3",
  4695. "source": {
  4696. "type": "git",
  4697. "url": "https://github.com/ramsey/uuid.git",
  4698. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  4699. },
  4700. "dist": {
  4701. "type": "zip",
  4702. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4703. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4704. "shasum": "",
  4705. "mirrors": [
  4706. {
  4707. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4708. "preferred": true
  4709. }
  4710. ]
  4711. },
  4712. "require": {
  4713. "brick/math": "^0.8 || ^0.9",
  4714. "ext-json": "*",
  4715. "php": "^7.2 || ^8.0",
  4716. "ramsey/collection": "^1.0",
  4717. "symfony/polyfill-ctype": "^1.8",
  4718. "symfony/polyfill-php80": "^1.14"
  4719. },
  4720. "replace": {
  4721. "rhumsaa/uuid": "self.version"
  4722. },
  4723. "require-dev": {
  4724. "captainhook/captainhook": "^5.10",
  4725. "captainhook/plugin-composer": "^5.3",
  4726. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4727. "doctrine/annotations": "^1.8",
  4728. "ergebnis/composer-normalize": "^2.15",
  4729. "mockery/mockery": "^1.3",
  4730. "moontoast/math": "^1.1",
  4731. "paragonie/random-lib": "^2",
  4732. "php-mock/php-mock": "^2.2",
  4733. "php-mock/php-mock-mockery": "^1.3",
  4734. "php-parallel-lint/php-parallel-lint": "^1.1",
  4735. "phpbench/phpbench": "^1.0",
  4736. "phpstan/extension-installer": "^1.0",
  4737. "phpstan/phpstan": "^0.12",
  4738. "phpstan/phpstan-mockery": "^0.12",
  4739. "phpstan/phpstan-phpunit": "^0.12",
  4740. "phpunit/phpunit": "^8.5 || ^9",
  4741. "slevomat/coding-standard": "^7.0",
  4742. "squizlabs/php_codesniffer": "^3.5",
  4743. "vimeo/psalm": "^4.9"
  4744. },
  4745. "suggest": {
  4746. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4747. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4748. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4749. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4750. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4751. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4752. },
  4753. "type": "library",
  4754. "extra": {
  4755. "branch-alias": {
  4756. "dev-main": "4.x-dev"
  4757. },
  4758. "captainhook": {
  4759. "force-install": true
  4760. }
  4761. },
  4762. "autoload": {
  4763. "psr-4": {
  4764. "Ramsey\\Uuid\\": "src/"
  4765. },
  4766. "files": [
  4767. "src/functions.php"
  4768. ]
  4769. },
  4770. "notification-url": "https://packagist.org/downloads/",
  4771. "license": [
  4772. "MIT"
  4773. ],
  4774. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4775. "keywords": [
  4776. "guid",
  4777. "identifier",
  4778. "uuid"
  4779. ],
  4780. "support": {
  4781. "issues": "https://github.com/ramsey/uuid/issues",
  4782. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  4783. },
  4784. "funding": [
  4785. {
  4786. "url": "https://github.com/ramsey",
  4787. "type": "github"
  4788. },
  4789. {
  4790. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4791. "type": "tidelift"
  4792. }
  4793. ],
  4794. "time": "2021-09-25T23:10:38+00:00"
  4795. },
  4796. {
  4797. "name": "swiftmailer/swiftmailer",
  4798. "version": "v6.3.0",
  4799. "source": {
  4800. "type": "git",
  4801. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4802. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  4803. },
  4804. "dist": {
  4805. "type": "zip",
  4806. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4807. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4808. "shasum": "",
  4809. "mirrors": [
  4810. {
  4811. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4812. "preferred": true
  4813. }
  4814. ]
  4815. },
  4816. "require": {
  4817. "egulias/email-validator": "^2.0|^3.1",
  4818. "php": ">=7.0.0",
  4819. "symfony/polyfill-iconv": "^1.0",
  4820. "symfony/polyfill-intl-idn": "^1.10",
  4821. "symfony/polyfill-mbstring": "^1.0"
  4822. },
  4823. "require-dev": {
  4824. "mockery/mockery": "^1.0",
  4825. "symfony/phpunit-bridge": "^4.4|^5.4"
  4826. },
  4827. "suggest": {
  4828. "ext-intl": "Needed to support internationalized email addresses"
  4829. },
  4830. "type": "library",
  4831. "extra": {
  4832. "branch-alias": {
  4833. "dev-master": "6.2-dev"
  4834. }
  4835. },
  4836. "autoload": {
  4837. "files": [
  4838. "lib/swift_required.php"
  4839. ]
  4840. },
  4841. "notification-url": "https://packagist.org/downloads/",
  4842. "license": [
  4843. "MIT"
  4844. ],
  4845. "authors": [
  4846. {
  4847. "name": "Chris Corbyn"
  4848. },
  4849. {
  4850. "name": "Fabien Potencier",
  4851. "email": "fabien@symfony.com"
  4852. }
  4853. ],
  4854. "description": "Swiftmailer, free feature-rich PHP mailer",
  4855. "homepage": "https://swiftmailer.symfony.com",
  4856. "keywords": [
  4857. "email",
  4858. "mail",
  4859. "mailer"
  4860. ],
  4861. "support": {
  4862. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4863. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  4864. },
  4865. "funding": [
  4866. {
  4867. "url": "https://github.com/fabpot",
  4868. "type": "github"
  4869. },
  4870. {
  4871. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4872. "type": "tidelift"
  4873. }
  4874. ],
  4875. "time": "2021-10-18T15:26:12+00:00"
  4876. },
  4877. {
  4878. "name": "symfony/console",
  4879. "version": "v5.3.7",
  4880. "source": {
  4881. "type": "git",
  4882. "url": "https://github.com/symfony/console.git",
  4883. "reference": "8b1008344647462ae6ec57559da166c2bfa5e16a"
  4884. },
  4885. "dist": {
  4886. "type": "zip",
  4887. "url": "https://api.github.com/repos/symfony/console/zipball/8b1008344647462ae6ec57559da166c2bfa5e16a",
  4888. "reference": "8b1008344647462ae6ec57559da166c2bfa5e16a",
  4889. "shasum": "",
  4890. "mirrors": [
  4891. {
  4892. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4893. "preferred": true
  4894. }
  4895. ]
  4896. },
  4897. "require": {
  4898. "php": ">=7.2.5",
  4899. "symfony/deprecation-contracts": "^2.1",
  4900. "symfony/polyfill-mbstring": "~1.0",
  4901. "symfony/polyfill-php73": "^1.8",
  4902. "symfony/polyfill-php80": "^1.16",
  4903. "symfony/service-contracts": "^1.1|^2",
  4904. "symfony/string": "^5.1"
  4905. },
  4906. "conflict": {
  4907. "psr/log": ">=3",
  4908. "symfony/dependency-injection": "<4.4",
  4909. "symfony/dotenv": "<5.1",
  4910. "symfony/event-dispatcher": "<4.4",
  4911. "symfony/lock": "<4.4",
  4912. "symfony/process": "<4.4"
  4913. },
  4914. "provide": {
  4915. "psr/log-implementation": "1.0|2.0"
  4916. },
  4917. "require-dev": {
  4918. "psr/log": "^1|^2",
  4919. "symfony/config": "^4.4|^5.0",
  4920. "symfony/dependency-injection": "^4.4|^5.0",
  4921. "symfony/event-dispatcher": "^4.4|^5.0",
  4922. "symfony/lock": "^4.4|^5.0",
  4923. "symfony/process": "^4.4|^5.0",
  4924. "symfony/var-dumper": "^4.4|^5.0"
  4925. },
  4926. "suggest": {
  4927. "psr/log": "For using the console logger",
  4928. "symfony/event-dispatcher": "",
  4929. "symfony/lock": "",
  4930. "symfony/process": ""
  4931. },
  4932. "type": "library",
  4933. "autoload": {
  4934. "psr-4": {
  4935. "Symfony\\Component\\Console\\": ""
  4936. },
  4937. "exclude-from-classmap": [
  4938. "/Tests/"
  4939. ]
  4940. },
  4941. "notification-url": "https://packagist.org/downloads/",
  4942. "license": [
  4943. "MIT"
  4944. ],
  4945. "authors": [
  4946. {
  4947. "name": "Fabien Potencier",
  4948. "email": "fabien@symfony.com"
  4949. },
  4950. {
  4951. "name": "Symfony Community",
  4952. "homepage": "https://symfony.com/contributors"
  4953. }
  4954. ],
  4955. "description": "Eases the creation of beautiful and testable command line interfaces",
  4956. "homepage": "https://symfony.com",
  4957. "keywords": [
  4958. "cli",
  4959. "command line",
  4960. "console",
  4961. "terminal"
  4962. ],
  4963. "support": {
  4964. "source": "https://github.com/symfony/console/tree/v5.3.7"
  4965. },
  4966. "funding": [
  4967. {
  4968. "url": "https://symfony.com/sponsor",
  4969. "type": "custom"
  4970. },
  4971. {
  4972. "url": "https://github.com/fabpot",
  4973. "type": "github"
  4974. },
  4975. {
  4976. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4977. "type": "tidelift"
  4978. }
  4979. ],
  4980. "time": "2021-08-25T20:02:16+00:00"
  4981. },
  4982. {
  4983. "name": "symfony/css-selector",
  4984. "version": "v5.3.4",
  4985. "source": {
  4986. "type": "git",
  4987. "url": "https://github.com/symfony/css-selector.git",
  4988. "reference": "7fb120adc7f600a59027775b224c13a33530dd90"
  4989. },
  4990. "dist": {
  4991. "type": "zip",
  4992. "url": "https://api.github.com/repos/symfony/css-selector/zipball/7fb120adc7f600a59027775b224c13a33530dd90",
  4993. "reference": "7fb120adc7f600a59027775b224c13a33530dd90",
  4994. "shasum": "",
  4995. "mirrors": [
  4996. {
  4997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4998. "preferred": true
  4999. }
  5000. ]
  5001. },
  5002. "require": {
  5003. "php": ">=7.2.5",
  5004. "symfony/polyfill-php80": "^1.16"
  5005. },
  5006. "type": "library",
  5007. "autoload": {
  5008. "psr-4": {
  5009. "Symfony\\Component\\CssSelector\\": ""
  5010. },
  5011. "exclude-from-classmap": [
  5012. "/Tests/"
  5013. ]
  5014. },
  5015. "notification-url": "https://packagist.org/downloads/",
  5016. "license": [
  5017. "MIT"
  5018. ],
  5019. "authors": [
  5020. {
  5021. "name": "Fabien Potencier",
  5022. "email": "fabien@symfony.com"
  5023. },
  5024. {
  5025. "name": "Jean-François Simon",
  5026. "email": "jeanfrancois.simon@sensiolabs.com"
  5027. },
  5028. {
  5029. "name": "Symfony Community",
  5030. "homepage": "https://symfony.com/contributors"
  5031. }
  5032. ],
  5033. "description": "Converts CSS selectors to XPath expressions",
  5034. "homepage": "https://symfony.com",
  5035. "support": {
  5036. "source": "https://github.com/symfony/css-selector/tree/v5.3.4"
  5037. },
  5038. "funding": [
  5039. {
  5040. "url": "https://symfony.com/sponsor",
  5041. "type": "custom"
  5042. },
  5043. {
  5044. "url": "https://github.com/fabpot",
  5045. "type": "github"
  5046. },
  5047. {
  5048. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5049. "type": "tidelift"
  5050. }
  5051. ],
  5052. "time": "2021-07-21T12:38:00+00:00"
  5053. },
  5054. {
  5055. "name": "symfony/deprecation-contracts",
  5056. "version": "v2.4.0",
  5057. "source": {
  5058. "type": "git",
  5059. "url": "https://github.com/symfony/deprecation-contracts.git",
  5060. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  5061. },
  5062. "dist": {
  5063. "type": "zip",
  5064. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5065. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5066. "shasum": "",
  5067. "mirrors": [
  5068. {
  5069. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5070. "preferred": true
  5071. }
  5072. ]
  5073. },
  5074. "require": {
  5075. "php": ">=7.1"
  5076. },
  5077. "type": "library",
  5078. "extra": {
  5079. "branch-alias": {
  5080. "dev-main": "2.4-dev"
  5081. },
  5082. "thanks": {
  5083. "name": "symfony/contracts",
  5084. "url": "https://github.com/symfony/contracts"
  5085. }
  5086. },
  5087. "autoload": {
  5088. "files": [
  5089. "function.php"
  5090. ]
  5091. },
  5092. "notification-url": "https://packagist.org/downloads/",
  5093. "license": [
  5094. "MIT"
  5095. ],
  5096. "authors": [
  5097. {
  5098. "name": "Nicolas Grekas",
  5099. "email": "p@tchwork.com"
  5100. },
  5101. {
  5102. "name": "Symfony Community",
  5103. "homepage": "https://symfony.com/contributors"
  5104. }
  5105. ],
  5106. "description": "A generic function and convention to trigger deprecation notices",
  5107. "homepage": "https://symfony.com",
  5108. "support": {
  5109. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  5110. },
  5111. "funding": [
  5112. {
  5113. "url": "https://symfony.com/sponsor",
  5114. "type": "custom"
  5115. },
  5116. {
  5117. "url": "https://github.com/fabpot",
  5118. "type": "github"
  5119. },
  5120. {
  5121. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5122. "type": "tidelift"
  5123. }
  5124. ],
  5125. "time": "2021-03-23T23:28:01+00:00"
  5126. },
  5127. {
  5128. "name": "symfony/error-handler",
  5129. "version": "v5.3.7",
  5130. "source": {
  5131. "type": "git",
  5132. "url": "https://github.com/symfony/error-handler.git",
  5133. "reference": "3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321"
  5134. },
  5135. "dist": {
  5136. "type": "zip",
  5137. "url": "https://api.github.com/repos/symfony/error-handler/zipball/3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321",
  5138. "reference": "3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321",
  5139. "shasum": "",
  5140. "mirrors": [
  5141. {
  5142. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5143. "preferred": true
  5144. }
  5145. ]
  5146. },
  5147. "require": {
  5148. "php": ">=7.2.5",
  5149. "psr/log": "^1|^2|^3",
  5150. "symfony/var-dumper": "^4.4|^5.0"
  5151. },
  5152. "require-dev": {
  5153. "symfony/deprecation-contracts": "^2.1",
  5154. "symfony/http-kernel": "^4.4|^5.0",
  5155. "symfony/serializer": "^4.4|^5.0"
  5156. },
  5157. "type": "library",
  5158. "autoload": {
  5159. "psr-4": {
  5160. "Symfony\\Component\\ErrorHandler\\": ""
  5161. },
  5162. "exclude-from-classmap": [
  5163. "/Tests/"
  5164. ]
  5165. },
  5166. "notification-url": "https://packagist.org/downloads/",
  5167. "license": [
  5168. "MIT"
  5169. ],
  5170. "authors": [
  5171. {
  5172. "name": "Fabien Potencier",
  5173. "email": "fabien@symfony.com"
  5174. },
  5175. {
  5176. "name": "Symfony Community",
  5177. "homepage": "https://symfony.com/contributors"
  5178. }
  5179. ],
  5180. "description": "Provides tools to manage errors and ease debugging PHP code",
  5181. "homepage": "https://symfony.com",
  5182. "support": {
  5183. "source": "https://github.com/symfony/error-handler/tree/v5.3.7"
  5184. },
  5185. "funding": [
  5186. {
  5187. "url": "https://symfony.com/sponsor",
  5188. "type": "custom"
  5189. },
  5190. {
  5191. "url": "https://github.com/fabpot",
  5192. "type": "github"
  5193. },
  5194. {
  5195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5196. "type": "tidelift"
  5197. }
  5198. ],
  5199. "time": "2021-08-28T15:07:08+00:00"
  5200. },
  5201. {
  5202. "name": "symfony/event-dispatcher",
  5203. "version": "v5.3.7",
  5204. "source": {
  5205. "type": "git",
  5206. "url": "https://github.com/symfony/event-dispatcher.git",
  5207. "reference": "ce7b20d69c66a20939d8952b617506a44d102130"
  5208. },
  5209. "dist": {
  5210. "type": "zip",
  5211. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ce7b20d69c66a20939d8952b617506a44d102130",
  5212. "reference": "ce7b20d69c66a20939d8952b617506a44d102130",
  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/deprecation-contracts": "^2.1",
  5224. "symfony/event-dispatcher-contracts": "^2",
  5225. "symfony/polyfill-php80": "^1.16"
  5226. },
  5227. "conflict": {
  5228. "symfony/dependency-injection": "<4.4"
  5229. },
  5230. "provide": {
  5231. "psr/event-dispatcher-implementation": "1.0",
  5232. "symfony/event-dispatcher-implementation": "2.0"
  5233. },
  5234. "require-dev": {
  5235. "psr/log": "^1|^2|^3",
  5236. "symfony/config": "^4.4|^5.0",
  5237. "symfony/dependency-injection": "^4.4|^5.0",
  5238. "symfony/error-handler": "^4.4|^5.0",
  5239. "symfony/expression-language": "^4.4|^5.0",
  5240. "symfony/http-foundation": "^4.4|^5.0",
  5241. "symfony/service-contracts": "^1.1|^2",
  5242. "symfony/stopwatch": "^4.4|^5.0"
  5243. },
  5244. "suggest": {
  5245. "symfony/dependency-injection": "",
  5246. "symfony/http-kernel": ""
  5247. },
  5248. "type": "library",
  5249. "autoload": {
  5250. "psr-4": {
  5251. "Symfony\\Component\\EventDispatcher\\": ""
  5252. },
  5253. "exclude-from-classmap": [
  5254. "/Tests/"
  5255. ]
  5256. },
  5257. "notification-url": "https://packagist.org/downloads/",
  5258. "license": [
  5259. "MIT"
  5260. ],
  5261. "authors": [
  5262. {
  5263. "name": "Fabien Potencier",
  5264. "email": "fabien@symfony.com"
  5265. },
  5266. {
  5267. "name": "Symfony Community",
  5268. "homepage": "https://symfony.com/contributors"
  5269. }
  5270. ],
  5271. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5272. "homepage": "https://symfony.com",
  5273. "support": {
  5274. "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.7"
  5275. },
  5276. "funding": [
  5277. {
  5278. "url": "https://symfony.com/sponsor",
  5279. "type": "custom"
  5280. },
  5281. {
  5282. "url": "https://github.com/fabpot",
  5283. "type": "github"
  5284. },
  5285. {
  5286. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5287. "type": "tidelift"
  5288. }
  5289. ],
  5290. "time": "2021-08-04T21:20:46+00:00"
  5291. },
  5292. {
  5293. "name": "symfony/event-dispatcher-contracts",
  5294. "version": "v2.4.0",
  5295. "source": {
  5296. "type": "git",
  5297. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5298. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  5299. },
  5300. "dist": {
  5301. "type": "zip",
  5302. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5303. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5304. "shasum": "",
  5305. "mirrors": [
  5306. {
  5307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5308. "preferred": true
  5309. }
  5310. ]
  5311. },
  5312. "require": {
  5313. "php": ">=7.2.5",
  5314. "psr/event-dispatcher": "^1"
  5315. },
  5316. "suggest": {
  5317. "symfony/event-dispatcher-implementation": ""
  5318. },
  5319. "type": "library",
  5320. "extra": {
  5321. "branch-alias": {
  5322. "dev-main": "2.4-dev"
  5323. },
  5324. "thanks": {
  5325. "name": "symfony/contracts",
  5326. "url": "https://github.com/symfony/contracts"
  5327. }
  5328. },
  5329. "autoload": {
  5330. "psr-4": {
  5331. "Symfony\\Contracts\\EventDispatcher\\": ""
  5332. }
  5333. },
  5334. "notification-url": "https://packagist.org/downloads/",
  5335. "license": [
  5336. "MIT"
  5337. ],
  5338. "authors": [
  5339. {
  5340. "name": "Nicolas Grekas",
  5341. "email": "p@tchwork.com"
  5342. },
  5343. {
  5344. "name": "Symfony Community",
  5345. "homepage": "https://symfony.com/contributors"
  5346. }
  5347. ],
  5348. "description": "Generic abstractions related to dispatching event",
  5349. "homepage": "https://symfony.com",
  5350. "keywords": [
  5351. "abstractions",
  5352. "contracts",
  5353. "decoupling",
  5354. "interfaces",
  5355. "interoperability",
  5356. "standards"
  5357. ],
  5358. "support": {
  5359. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  5360. },
  5361. "funding": [
  5362. {
  5363. "url": "https://symfony.com/sponsor",
  5364. "type": "custom"
  5365. },
  5366. {
  5367. "url": "https://github.com/fabpot",
  5368. "type": "github"
  5369. },
  5370. {
  5371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5372. "type": "tidelift"
  5373. }
  5374. ],
  5375. "time": "2021-03-23T23:28:01+00:00"
  5376. },
  5377. {
  5378. "name": "symfony/finder",
  5379. "version": "v5.3.7",
  5380. "source": {
  5381. "type": "git",
  5382. "url": "https://github.com/symfony/finder.git",
  5383. "reference": "a10000ada1e600d109a6c7632e9ac42e8bf2fb93"
  5384. },
  5385. "dist": {
  5386. "type": "zip",
  5387. "url": "https://api.github.com/repos/symfony/finder/zipball/a10000ada1e600d109a6c7632e9ac42e8bf2fb93",
  5388. "reference": "a10000ada1e600d109a6c7632e9ac42e8bf2fb93",
  5389. "shasum": "",
  5390. "mirrors": [
  5391. {
  5392. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5393. "preferred": true
  5394. }
  5395. ]
  5396. },
  5397. "require": {
  5398. "php": ">=7.2.5",
  5399. "symfony/polyfill-php80": "^1.16"
  5400. },
  5401. "type": "library",
  5402. "autoload": {
  5403. "psr-4": {
  5404. "Symfony\\Component\\Finder\\": ""
  5405. },
  5406. "exclude-from-classmap": [
  5407. "/Tests/"
  5408. ]
  5409. },
  5410. "notification-url": "https://packagist.org/downloads/",
  5411. "license": [
  5412. "MIT"
  5413. ],
  5414. "authors": [
  5415. {
  5416. "name": "Fabien Potencier",
  5417. "email": "fabien@symfony.com"
  5418. },
  5419. {
  5420. "name": "Symfony Community",
  5421. "homepage": "https://symfony.com/contributors"
  5422. }
  5423. ],
  5424. "description": "Finds files and directories via an intuitive fluent interface",
  5425. "homepage": "https://symfony.com",
  5426. "support": {
  5427. "source": "https://github.com/symfony/finder/tree/v5.3.7"
  5428. },
  5429. "funding": [
  5430. {
  5431. "url": "https://symfony.com/sponsor",
  5432. "type": "custom"
  5433. },
  5434. {
  5435. "url": "https://github.com/fabpot",
  5436. "type": "github"
  5437. },
  5438. {
  5439. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5440. "type": "tidelift"
  5441. }
  5442. ],
  5443. "time": "2021-08-04T21:20:46+00:00"
  5444. },
  5445. {
  5446. "name": "symfony/http-client-contracts",
  5447. "version": "v2.4.0",
  5448. "source": {
  5449. "type": "git",
  5450. "url": "https://github.com/symfony/http-client-contracts.git",
  5451. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5452. },
  5453. "dist": {
  5454. "type": "zip",
  5455. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5456. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5457. "shasum": "",
  5458. "mirrors": [
  5459. {
  5460. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5461. "preferred": true
  5462. }
  5463. ]
  5464. },
  5465. "require": {
  5466. "php": ">=7.2.5"
  5467. },
  5468. "suggest": {
  5469. "symfony/http-client-implementation": ""
  5470. },
  5471. "type": "library",
  5472. "extra": {
  5473. "branch-alias": {
  5474. "dev-main": "2.4-dev"
  5475. },
  5476. "thanks": {
  5477. "name": "symfony/contracts",
  5478. "url": "https://github.com/symfony/contracts"
  5479. }
  5480. },
  5481. "autoload": {
  5482. "psr-4": {
  5483. "Symfony\\Contracts\\HttpClient\\": ""
  5484. }
  5485. },
  5486. "notification-url": "https://packagist.org/downloads/",
  5487. "license": [
  5488. "MIT"
  5489. ],
  5490. "authors": [
  5491. {
  5492. "name": "Nicolas Grekas",
  5493. "email": "p@tchwork.com"
  5494. },
  5495. {
  5496. "name": "Symfony Community",
  5497. "homepage": "https://symfony.com/contributors"
  5498. }
  5499. ],
  5500. "description": "Generic abstractions related to HTTP clients",
  5501. "homepage": "https://symfony.com",
  5502. "keywords": [
  5503. "abstractions",
  5504. "contracts",
  5505. "decoupling",
  5506. "interfaces",
  5507. "interoperability",
  5508. "standards"
  5509. ],
  5510. "support": {
  5511. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  5512. },
  5513. "funding": [
  5514. {
  5515. "url": "https://symfony.com/sponsor",
  5516. "type": "custom"
  5517. },
  5518. {
  5519. "url": "https://github.com/fabpot",
  5520. "type": "github"
  5521. },
  5522. {
  5523. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5524. "type": "tidelift"
  5525. }
  5526. ],
  5527. "time": "2021-04-11T23:07:08+00:00"
  5528. },
  5529. {
  5530. "name": "symfony/http-foundation",
  5531. "version": "v5.3.7",
  5532. "source": {
  5533. "type": "git",
  5534. "url": "https://github.com/symfony/http-foundation.git",
  5535. "reference": "e36c8e5502b4f3f0190c675f1c1f1248a64f04e5"
  5536. },
  5537. "dist": {
  5538. "type": "zip",
  5539. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e36c8e5502b4f3f0190c675f1c1f1248a64f04e5",
  5540. "reference": "e36c8e5502b4f3f0190c675f1c1f1248a64f04e5",
  5541. "shasum": "",
  5542. "mirrors": [
  5543. {
  5544. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5545. "preferred": true
  5546. }
  5547. ]
  5548. },
  5549. "require": {
  5550. "php": ">=7.2.5",
  5551. "symfony/deprecation-contracts": "^2.1",
  5552. "symfony/polyfill-mbstring": "~1.1",
  5553. "symfony/polyfill-php80": "^1.16"
  5554. },
  5555. "require-dev": {
  5556. "predis/predis": "~1.0",
  5557. "symfony/cache": "^4.4|^5.0",
  5558. "symfony/expression-language": "^4.4|^5.0",
  5559. "symfony/mime": "^4.4|^5.0"
  5560. },
  5561. "suggest": {
  5562. "symfony/mime": "To use the file extension guesser"
  5563. },
  5564. "type": "library",
  5565. "autoload": {
  5566. "psr-4": {
  5567. "Symfony\\Component\\HttpFoundation\\": ""
  5568. },
  5569. "exclude-from-classmap": [
  5570. "/Tests/"
  5571. ]
  5572. },
  5573. "notification-url": "https://packagist.org/downloads/",
  5574. "license": [
  5575. "MIT"
  5576. ],
  5577. "authors": [
  5578. {
  5579. "name": "Fabien Potencier",
  5580. "email": "fabien@symfony.com"
  5581. },
  5582. {
  5583. "name": "Symfony Community",
  5584. "homepage": "https://symfony.com/contributors"
  5585. }
  5586. ],
  5587. "description": "Defines an object-oriented layer for the HTTP specification",
  5588. "homepage": "https://symfony.com",
  5589. "support": {
  5590. "source": "https://github.com/symfony/http-foundation/tree/v5.3.7"
  5591. },
  5592. "funding": [
  5593. {
  5594. "url": "https://symfony.com/sponsor",
  5595. "type": "custom"
  5596. },
  5597. {
  5598. "url": "https://github.com/fabpot",
  5599. "type": "github"
  5600. },
  5601. {
  5602. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5603. "type": "tidelift"
  5604. }
  5605. ],
  5606. "time": "2021-08-27T11:20:35+00:00"
  5607. },
  5608. {
  5609. "name": "symfony/http-kernel",
  5610. "version": "v5.3.9",
  5611. "source": {
  5612. "type": "git",
  5613. "url": "https://github.com/symfony/http-kernel.git",
  5614. "reference": "ceaf46a992f60e90645e7279825a830f733a17c5"
  5615. },
  5616. "dist": {
  5617. "type": "zip",
  5618. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ceaf46a992f60e90645e7279825a830f733a17c5",
  5619. "reference": "ceaf46a992f60e90645e7279825a830f733a17c5",
  5620. "shasum": "",
  5621. "mirrors": [
  5622. {
  5623. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5624. "preferred": true
  5625. }
  5626. ]
  5627. },
  5628. "require": {
  5629. "php": ">=7.2.5",
  5630. "psr/log": "^1|^2",
  5631. "symfony/deprecation-contracts": "^2.1",
  5632. "symfony/error-handler": "^4.4|^5.0",
  5633. "symfony/event-dispatcher": "^5.0",
  5634. "symfony/http-client-contracts": "^1.1|^2",
  5635. "symfony/http-foundation": "^5.3.7",
  5636. "symfony/polyfill-ctype": "^1.8",
  5637. "symfony/polyfill-php73": "^1.9",
  5638. "symfony/polyfill-php80": "^1.16"
  5639. },
  5640. "conflict": {
  5641. "symfony/browser-kit": "<4.4",
  5642. "symfony/cache": "<5.0",
  5643. "symfony/config": "<5.0",
  5644. "symfony/console": "<4.4",
  5645. "symfony/dependency-injection": "<5.3",
  5646. "symfony/doctrine-bridge": "<5.0",
  5647. "symfony/form": "<5.0",
  5648. "symfony/http-client": "<5.0",
  5649. "symfony/mailer": "<5.0",
  5650. "symfony/messenger": "<5.0",
  5651. "symfony/translation": "<5.0",
  5652. "symfony/twig-bridge": "<5.0",
  5653. "symfony/validator": "<5.0",
  5654. "twig/twig": "<2.13"
  5655. },
  5656. "provide": {
  5657. "psr/log-implementation": "1.0|2.0"
  5658. },
  5659. "require-dev": {
  5660. "psr/cache": "^1.0|^2.0|^3.0",
  5661. "symfony/browser-kit": "^4.4|^5.0",
  5662. "symfony/config": "^5.0",
  5663. "symfony/console": "^4.4|^5.0",
  5664. "symfony/css-selector": "^4.4|^5.0",
  5665. "symfony/dependency-injection": "^5.3",
  5666. "symfony/dom-crawler": "^4.4|^5.0",
  5667. "symfony/expression-language": "^4.4|^5.0",
  5668. "symfony/finder": "^4.4|^5.0",
  5669. "symfony/process": "^4.4|^5.0",
  5670. "symfony/routing": "^4.4|^5.0",
  5671. "symfony/stopwatch": "^4.4|^5.0",
  5672. "symfony/translation": "^4.4|^5.0",
  5673. "symfony/translation-contracts": "^1.1|^2",
  5674. "twig/twig": "^2.13|^3.0.4"
  5675. },
  5676. "suggest": {
  5677. "symfony/browser-kit": "",
  5678. "symfony/config": "",
  5679. "symfony/console": "",
  5680. "symfony/dependency-injection": ""
  5681. },
  5682. "type": "library",
  5683. "autoload": {
  5684. "psr-4": {
  5685. "Symfony\\Component\\HttpKernel\\": ""
  5686. },
  5687. "exclude-from-classmap": [
  5688. "/Tests/"
  5689. ]
  5690. },
  5691. "notification-url": "https://packagist.org/downloads/",
  5692. "license": [
  5693. "MIT"
  5694. ],
  5695. "authors": [
  5696. {
  5697. "name": "Fabien Potencier",
  5698. "email": "fabien@symfony.com"
  5699. },
  5700. {
  5701. "name": "Symfony Community",
  5702. "homepage": "https://symfony.com/contributors"
  5703. }
  5704. ],
  5705. "description": "Provides a structured process for converting a Request into a Response",
  5706. "homepage": "https://symfony.com",
  5707. "support": {
  5708. "source": "https://github.com/symfony/http-kernel/tree/v5.3.9"
  5709. },
  5710. "funding": [
  5711. {
  5712. "url": "https://symfony.com/sponsor",
  5713. "type": "custom"
  5714. },
  5715. {
  5716. "url": "https://github.com/fabpot",
  5717. "type": "github"
  5718. },
  5719. {
  5720. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5721. "type": "tidelift"
  5722. }
  5723. ],
  5724. "time": "2021-09-28T10:25:11+00:00"
  5725. },
  5726. {
  5727. "name": "symfony/mime",
  5728. "version": "v5.3.8",
  5729. "source": {
  5730. "type": "git",
  5731. "url": "https://github.com/symfony/mime.git",
  5732. "reference": "a756033d0a7e53db389618653ae991eba5a19a11"
  5733. },
  5734. "dist": {
  5735. "type": "zip",
  5736. "url": "https://api.github.com/repos/symfony/mime/zipball/a756033d0a7e53db389618653ae991eba5a19a11",
  5737. "reference": "a756033d0a7e53db389618653ae991eba5a19a11",
  5738. "shasum": "",
  5739. "mirrors": [
  5740. {
  5741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5742. "preferred": true
  5743. }
  5744. ]
  5745. },
  5746. "require": {
  5747. "php": ">=7.2.5",
  5748. "symfony/deprecation-contracts": "^2.1",
  5749. "symfony/polyfill-intl-idn": "^1.10",
  5750. "symfony/polyfill-mbstring": "^1.0",
  5751. "symfony/polyfill-php80": "^1.16"
  5752. },
  5753. "conflict": {
  5754. "egulias/email-validator": "~3.0.0",
  5755. "phpdocumentor/reflection-docblock": "<3.2.2",
  5756. "phpdocumentor/type-resolver": "<1.4.0",
  5757. "symfony/mailer": "<4.4"
  5758. },
  5759. "require-dev": {
  5760. "egulias/email-validator": "^2.1.10|^3.1",
  5761. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5762. "symfony/dependency-injection": "^4.4|^5.0",
  5763. "symfony/property-access": "^4.4|^5.1",
  5764. "symfony/property-info": "^4.4|^5.1",
  5765. "symfony/serializer": "^5.2"
  5766. },
  5767. "type": "library",
  5768. "autoload": {
  5769. "psr-4": {
  5770. "Symfony\\Component\\Mime\\": ""
  5771. },
  5772. "exclude-from-classmap": [
  5773. "/Tests/"
  5774. ]
  5775. },
  5776. "notification-url": "https://packagist.org/downloads/",
  5777. "license": [
  5778. "MIT"
  5779. ],
  5780. "authors": [
  5781. {
  5782. "name": "Fabien Potencier",
  5783. "email": "fabien@symfony.com"
  5784. },
  5785. {
  5786. "name": "Symfony Community",
  5787. "homepage": "https://symfony.com/contributors"
  5788. }
  5789. ],
  5790. "description": "Allows manipulating MIME messages",
  5791. "homepage": "https://symfony.com",
  5792. "keywords": [
  5793. "mime",
  5794. "mime-type"
  5795. ],
  5796. "support": {
  5797. "source": "https://github.com/symfony/mime/tree/v5.3.8"
  5798. },
  5799. "funding": [
  5800. {
  5801. "url": "https://symfony.com/sponsor",
  5802. "type": "custom"
  5803. },
  5804. {
  5805. "url": "https://github.com/fabpot",
  5806. "type": "github"
  5807. },
  5808. {
  5809. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5810. "type": "tidelift"
  5811. }
  5812. ],
  5813. "time": "2021-09-10T12:30:38+00:00"
  5814. },
  5815. {
  5816. "name": "symfony/options-resolver",
  5817. "version": "v5.3.7",
  5818. "source": {
  5819. "type": "git",
  5820. "url": "https://github.com/symfony/options-resolver.git",
  5821. "reference": "4b78e55b179003a42523a362cc0e8327f7a69b5e"
  5822. },
  5823. "dist": {
  5824. "type": "zip",
  5825. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/4b78e55b179003a42523a362cc0e8327f7a69b5e",
  5826. "reference": "4b78e55b179003a42523a362cc0e8327f7a69b5e",
  5827. "shasum": "",
  5828. "mirrors": [
  5829. {
  5830. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5831. "preferred": true
  5832. }
  5833. ]
  5834. },
  5835. "require": {
  5836. "php": ">=7.2.5",
  5837. "symfony/deprecation-contracts": "^2.1",
  5838. "symfony/polyfill-php73": "~1.0",
  5839. "symfony/polyfill-php80": "^1.16"
  5840. },
  5841. "type": "library",
  5842. "autoload": {
  5843. "psr-4": {
  5844. "Symfony\\Component\\OptionsResolver\\": ""
  5845. },
  5846. "exclude-from-classmap": [
  5847. "/Tests/"
  5848. ]
  5849. },
  5850. "notification-url": "https://packagist.org/downloads/",
  5851. "license": [
  5852. "MIT"
  5853. ],
  5854. "authors": [
  5855. {
  5856. "name": "Fabien Potencier",
  5857. "email": "fabien@symfony.com"
  5858. },
  5859. {
  5860. "name": "Symfony Community",
  5861. "homepage": "https://symfony.com/contributors"
  5862. }
  5863. ],
  5864. "description": "Provides an improved replacement for the array_replace PHP function",
  5865. "homepage": "https://symfony.com",
  5866. "keywords": [
  5867. "config",
  5868. "configuration",
  5869. "options"
  5870. ],
  5871. "support": {
  5872. "source": "https://github.com/symfony/options-resolver/tree/v5.3.7"
  5873. },
  5874. "funding": [
  5875. {
  5876. "url": "https://symfony.com/sponsor",
  5877. "type": "custom"
  5878. },
  5879. {
  5880. "url": "https://github.com/fabpot",
  5881. "type": "github"
  5882. },
  5883. {
  5884. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5885. "type": "tidelift"
  5886. }
  5887. ],
  5888. "time": "2021-08-04T21:20:46+00:00"
  5889. },
  5890. {
  5891. "name": "symfony/polyfill-ctype",
  5892. "version": "v1.23.0",
  5893. "source": {
  5894. "type": "git",
  5895. "url": "https://github.com/symfony/polyfill-ctype.git",
  5896. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  5897. },
  5898. "dist": {
  5899. "type": "zip",
  5900. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5901. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5902. "shasum": "",
  5903. "mirrors": [
  5904. {
  5905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5906. "preferred": true
  5907. }
  5908. ]
  5909. },
  5910. "require": {
  5911. "php": ">=7.1"
  5912. },
  5913. "suggest": {
  5914. "ext-ctype": "For best performance"
  5915. },
  5916. "type": "library",
  5917. "extra": {
  5918. "branch-alias": {
  5919. "dev-main": "1.23-dev"
  5920. },
  5921. "thanks": {
  5922. "name": "symfony/polyfill",
  5923. "url": "https://github.com/symfony/polyfill"
  5924. }
  5925. },
  5926. "autoload": {
  5927. "psr-4": {
  5928. "Symfony\\Polyfill\\Ctype\\": ""
  5929. },
  5930. "files": [
  5931. "bootstrap.php"
  5932. ]
  5933. },
  5934. "notification-url": "https://packagist.org/downloads/",
  5935. "license": [
  5936. "MIT"
  5937. ],
  5938. "authors": [
  5939. {
  5940. "name": "Gert de Pagter",
  5941. "email": "BackEndTea@gmail.com"
  5942. },
  5943. {
  5944. "name": "Symfony Community",
  5945. "homepage": "https://symfony.com/contributors"
  5946. }
  5947. ],
  5948. "description": "Symfony polyfill for ctype functions",
  5949. "homepage": "https://symfony.com",
  5950. "keywords": [
  5951. "compatibility",
  5952. "ctype",
  5953. "polyfill",
  5954. "portable"
  5955. ],
  5956. "support": {
  5957. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  5958. },
  5959. "funding": [
  5960. {
  5961. "url": "https://symfony.com/sponsor",
  5962. "type": "custom"
  5963. },
  5964. {
  5965. "url": "https://github.com/fabpot",
  5966. "type": "github"
  5967. },
  5968. {
  5969. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5970. "type": "tidelift"
  5971. }
  5972. ],
  5973. "time": "2021-02-19T12:13:01+00:00"
  5974. },
  5975. {
  5976. "name": "symfony/polyfill-iconv",
  5977. "version": "v1.23.0",
  5978. "source": {
  5979. "type": "git",
  5980. "url": "https://github.com/symfony/polyfill-iconv.git",
  5981. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  5982. },
  5983. "dist": {
  5984. "type": "zip",
  5985. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5986. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5987. "shasum": "",
  5988. "mirrors": [
  5989. {
  5990. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5991. "preferred": true
  5992. }
  5993. ]
  5994. },
  5995. "require": {
  5996. "php": ">=7.1"
  5997. },
  5998. "suggest": {
  5999. "ext-iconv": "For best performance"
  6000. },
  6001. "type": "library",
  6002. "extra": {
  6003. "branch-alias": {
  6004. "dev-main": "1.23-dev"
  6005. },
  6006. "thanks": {
  6007. "name": "symfony/polyfill",
  6008. "url": "https://github.com/symfony/polyfill"
  6009. }
  6010. },
  6011. "autoload": {
  6012. "psr-4": {
  6013. "Symfony\\Polyfill\\Iconv\\": ""
  6014. },
  6015. "files": [
  6016. "bootstrap.php"
  6017. ]
  6018. },
  6019. "notification-url": "https://packagist.org/downloads/",
  6020. "license": [
  6021. "MIT"
  6022. ],
  6023. "authors": [
  6024. {
  6025. "name": "Nicolas Grekas",
  6026. "email": "p@tchwork.com"
  6027. },
  6028. {
  6029. "name": "Symfony Community",
  6030. "homepage": "https://symfony.com/contributors"
  6031. }
  6032. ],
  6033. "description": "Symfony polyfill for the Iconv extension",
  6034. "homepage": "https://symfony.com",
  6035. "keywords": [
  6036. "compatibility",
  6037. "iconv",
  6038. "polyfill",
  6039. "portable",
  6040. "shim"
  6041. ],
  6042. "support": {
  6043. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  6044. },
  6045. "funding": [
  6046. {
  6047. "url": "https://symfony.com/sponsor",
  6048. "type": "custom"
  6049. },
  6050. {
  6051. "url": "https://github.com/fabpot",
  6052. "type": "github"
  6053. },
  6054. {
  6055. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6056. "type": "tidelift"
  6057. }
  6058. ],
  6059. "time": "2021-05-27T09:27:20+00:00"
  6060. },
  6061. {
  6062. "name": "symfony/polyfill-intl-grapheme",
  6063. "version": "v1.23.1",
  6064. "source": {
  6065. "type": "git",
  6066. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6067. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535"
  6068. },
  6069. "dist": {
  6070. "type": "zip",
  6071. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535",
  6072. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535",
  6073. "shasum": "",
  6074. "mirrors": [
  6075. {
  6076. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6077. "preferred": true
  6078. }
  6079. ]
  6080. },
  6081. "require": {
  6082. "php": ">=7.1"
  6083. },
  6084. "suggest": {
  6085. "ext-intl": "For best performance"
  6086. },
  6087. "type": "library",
  6088. "extra": {
  6089. "branch-alias": {
  6090. "dev-main": "1.23-dev"
  6091. },
  6092. "thanks": {
  6093. "name": "symfony/polyfill",
  6094. "url": "https://github.com/symfony/polyfill"
  6095. }
  6096. },
  6097. "autoload": {
  6098. "psr-4": {
  6099. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6100. },
  6101. "files": [
  6102. "bootstrap.php"
  6103. ]
  6104. },
  6105. "notification-url": "https://packagist.org/downloads/",
  6106. "license": [
  6107. "MIT"
  6108. ],
  6109. "authors": [
  6110. {
  6111. "name": "Nicolas Grekas",
  6112. "email": "p@tchwork.com"
  6113. },
  6114. {
  6115. "name": "Symfony Community",
  6116. "homepage": "https://symfony.com/contributors"
  6117. }
  6118. ],
  6119. "description": "Symfony polyfill for intl's grapheme_* functions",
  6120. "homepage": "https://symfony.com",
  6121. "keywords": [
  6122. "compatibility",
  6123. "grapheme",
  6124. "intl",
  6125. "polyfill",
  6126. "portable",
  6127. "shim"
  6128. ],
  6129. "support": {
  6130. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1"
  6131. },
  6132. "funding": [
  6133. {
  6134. "url": "https://symfony.com/sponsor",
  6135. "type": "custom"
  6136. },
  6137. {
  6138. "url": "https://github.com/fabpot",
  6139. "type": "github"
  6140. },
  6141. {
  6142. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6143. "type": "tidelift"
  6144. }
  6145. ],
  6146. "time": "2021-05-27T12:26:48+00:00"
  6147. },
  6148. {
  6149. "name": "symfony/polyfill-intl-idn",
  6150. "version": "v1.23.0",
  6151. "source": {
  6152. "type": "git",
  6153. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6154. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  6155. },
  6156. "dist": {
  6157. "type": "zip",
  6158. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  6159. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  6160. "shasum": "",
  6161. "mirrors": [
  6162. {
  6163. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6164. "preferred": true
  6165. }
  6166. ]
  6167. },
  6168. "require": {
  6169. "php": ">=7.1",
  6170. "symfony/polyfill-intl-normalizer": "^1.10",
  6171. "symfony/polyfill-php72": "^1.10"
  6172. },
  6173. "suggest": {
  6174. "ext-intl": "For best performance"
  6175. },
  6176. "type": "library",
  6177. "extra": {
  6178. "branch-alias": {
  6179. "dev-main": "1.23-dev"
  6180. },
  6181. "thanks": {
  6182. "name": "symfony/polyfill",
  6183. "url": "https://github.com/symfony/polyfill"
  6184. }
  6185. },
  6186. "autoload": {
  6187. "psr-4": {
  6188. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6189. },
  6190. "files": [
  6191. "bootstrap.php"
  6192. ]
  6193. },
  6194. "notification-url": "https://packagist.org/downloads/",
  6195. "license": [
  6196. "MIT"
  6197. ],
  6198. "authors": [
  6199. {
  6200. "name": "Laurent Bassin",
  6201. "email": "laurent@bassin.info"
  6202. },
  6203. {
  6204. "name": "Trevor Rowbotham",
  6205. "email": "trevor.rowbotham@pm.me"
  6206. },
  6207. {
  6208. "name": "Symfony Community",
  6209. "homepage": "https://symfony.com/contributors"
  6210. }
  6211. ],
  6212. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6213. "homepage": "https://symfony.com",
  6214. "keywords": [
  6215. "compatibility",
  6216. "idn",
  6217. "intl",
  6218. "polyfill",
  6219. "portable",
  6220. "shim"
  6221. ],
  6222. "support": {
  6223. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  6224. },
  6225. "funding": [
  6226. {
  6227. "url": "https://symfony.com/sponsor",
  6228. "type": "custom"
  6229. },
  6230. {
  6231. "url": "https://github.com/fabpot",
  6232. "type": "github"
  6233. },
  6234. {
  6235. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6236. "type": "tidelift"
  6237. }
  6238. ],
  6239. "time": "2021-05-27T09:27:20+00:00"
  6240. },
  6241. {
  6242. "name": "symfony/polyfill-intl-normalizer",
  6243. "version": "v1.23.0",
  6244. "source": {
  6245. "type": "git",
  6246. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6247. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  6248. },
  6249. "dist": {
  6250. "type": "zip",
  6251. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6252. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6253. "shasum": "",
  6254. "mirrors": [
  6255. {
  6256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6257. "preferred": true
  6258. }
  6259. ]
  6260. },
  6261. "require": {
  6262. "php": ">=7.1"
  6263. },
  6264. "suggest": {
  6265. "ext-intl": "For best performance"
  6266. },
  6267. "type": "library",
  6268. "extra": {
  6269. "branch-alias": {
  6270. "dev-main": "1.23-dev"
  6271. },
  6272. "thanks": {
  6273. "name": "symfony/polyfill",
  6274. "url": "https://github.com/symfony/polyfill"
  6275. }
  6276. },
  6277. "autoload": {
  6278. "psr-4": {
  6279. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6280. },
  6281. "files": [
  6282. "bootstrap.php"
  6283. ],
  6284. "classmap": [
  6285. "Resources/stubs"
  6286. ]
  6287. },
  6288. "notification-url": "https://packagist.org/downloads/",
  6289. "license": [
  6290. "MIT"
  6291. ],
  6292. "authors": [
  6293. {
  6294. "name": "Nicolas Grekas",
  6295. "email": "p@tchwork.com"
  6296. },
  6297. {
  6298. "name": "Symfony Community",
  6299. "homepage": "https://symfony.com/contributors"
  6300. }
  6301. ],
  6302. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6303. "homepage": "https://symfony.com",
  6304. "keywords": [
  6305. "compatibility",
  6306. "intl",
  6307. "normalizer",
  6308. "polyfill",
  6309. "portable",
  6310. "shim"
  6311. ],
  6312. "support": {
  6313. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  6314. },
  6315. "funding": [
  6316. {
  6317. "url": "https://symfony.com/sponsor",
  6318. "type": "custom"
  6319. },
  6320. {
  6321. "url": "https://github.com/fabpot",
  6322. "type": "github"
  6323. },
  6324. {
  6325. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6326. "type": "tidelift"
  6327. }
  6328. ],
  6329. "time": "2021-02-19T12:13:01+00:00"
  6330. },
  6331. {
  6332. "name": "symfony/polyfill-mbstring",
  6333. "version": "v1.23.1",
  6334. "source": {
  6335. "type": "git",
  6336. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6337. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  6338. },
  6339. "dist": {
  6340. "type": "zip",
  6341. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  6342. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  6343. "shasum": "",
  6344. "mirrors": [
  6345. {
  6346. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6347. "preferred": true
  6348. }
  6349. ]
  6350. },
  6351. "require": {
  6352. "php": ">=7.1"
  6353. },
  6354. "suggest": {
  6355. "ext-mbstring": "For best performance"
  6356. },
  6357. "type": "library",
  6358. "extra": {
  6359. "branch-alias": {
  6360. "dev-main": "1.23-dev"
  6361. },
  6362. "thanks": {
  6363. "name": "symfony/polyfill",
  6364. "url": "https://github.com/symfony/polyfill"
  6365. }
  6366. },
  6367. "autoload": {
  6368. "psr-4": {
  6369. "Symfony\\Polyfill\\Mbstring\\": ""
  6370. },
  6371. "files": [
  6372. "bootstrap.php"
  6373. ]
  6374. },
  6375. "notification-url": "https://packagist.org/downloads/",
  6376. "license": [
  6377. "MIT"
  6378. ],
  6379. "authors": [
  6380. {
  6381. "name": "Nicolas Grekas",
  6382. "email": "p@tchwork.com"
  6383. },
  6384. {
  6385. "name": "Symfony Community",
  6386. "homepage": "https://symfony.com/contributors"
  6387. }
  6388. ],
  6389. "description": "Symfony polyfill for the Mbstring extension",
  6390. "homepage": "https://symfony.com",
  6391. "keywords": [
  6392. "compatibility",
  6393. "mbstring",
  6394. "polyfill",
  6395. "portable",
  6396. "shim"
  6397. ],
  6398. "support": {
  6399. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
  6400. },
  6401. "funding": [
  6402. {
  6403. "url": "https://symfony.com/sponsor",
  6404. "type": "custom"
  6405. },
  6406. {
  6407. "url": "https://github.com/fabpot",
  6408. "type": "github"
  6409. },
  6410. {
  6411. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6412. "type": "tidelift"
  6413. }
  6414. ],
  6415. "time": "2021-05-27T12:26:48+00:00"
  6416. },
  6417. {
  6418. "name": "symfony/polyfill-php72",
  6419. "version": "v1.23.0",
  6420. "source": {
  6421. "type": "git",
  6422. "url": "https://github.com/symfony/polyfill-php72.git",
  6423. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  6424. },
  6425. "dist": {
  6426. "type": "zip",
  6427. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  6428. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  6429. "shasum": "",
  6430. "mirrors": [
  6431. {
  6432. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6433. "preferred": true
  6434. }
  6435. ]
  6436. },
  6437. "require": {
  6438. "php": ">=7.1"
  6439. },
  6440. "type": "library",
  6441. "extra": {
  6442. "branch-alias": {
  6443. "dev-main": "1.23-dev"
  6444. },
  6445. "thanks": {
  6446. "name": "symfony/polyfill",
  6447. "url": "https://github.com/symfony/polyfill"
  6448. }
  6449. },
  6450. "autoload": {
  6451. "psr-4": {
  6452. "Symfony\\Polyfill\\Php72\\": ""
  6453. },
  6454. "files": [
  6455. "bootstrap.php"
  6456. ]
  6457. },
  6458. "notification-url": "https://packagist.org/downloads/",
  6459. "license": [
  6460. "MIT"
  6461. ],
  6462. "authors": [
  6463. {
  6464. "name": "Nicolas Grekas",
  6465. "email": "p@tchwork.com"
  6466. },
  6467. {
  6468. "name": "Symfony Community",
  6469. "homepage": "https://symfony.com/contributors"
  6470. }
  6471. ],
  6472. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6473. "homepage": "https://symfony.com",
  6474. "keywords": [
  6475. "compatibility",
  6476. "polyfill",
  6477. "portable",
  6478. "shim"
  6479. ],
  6480. "support": {
  6481. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  6482. },
  6483. "funding": [
  6484. {
  6485. "url": "https://symfony.com/sponsor",
  6486. "type": "custom"
  6487. },
  6488. {
  6489. "url": "https://github.com/fabpot",
  6490. "type": "github"
  6491. },
  6492. {
  6493. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6494. "type": "tidelift"
  6495. }
  6496. ],
  6497. "time": "2021-05-27T09:17:38+00:00"
  6498. },
  6499. {
  6500. "name": "symfony/polyfill-php73",
  6501. "version": "v1.23.0",
  6502. "source": {
  6503. "type": "git",
  6504. "url": "https://github.com/symfony/polyfill-php73.git",
  6505. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  6506. },
  6507. "dist": {
  6508. "type": "zip",
  6509. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6510. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6511. "shasum": "",
  6512. "mirrors": [
  6513. {
  6514. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6515. "preferred": true
  6516. }
  6517. ]
  6518. },
  6519. "require": {
  6520. "php": ">=7.1"
  6521. },
  6522. "type": "library",
  6523. "extra": {
  6524. "branch-alias": {
  6525. "dev-main": "1.23-dev"
  6526. },
  6527. "thanks": {
  6528. "name": "symfony/polyfill",
  6529. "url": "https://github.com/symfony/polyfill"
  6530. }
  6531. },
  6532. "autoload": {
  6533. "psr-4": {
  6534. "Symfony\\Polyfill\\Php73\\": ""
  6535. },
  6536. "files": [
  6537. "bootstrap.php"
  6538. ],
  6539. "classmap": [
  6540. "Resources/stubs"
  6541. ]
  6542. },
  6543. "notification-url": "https://packagist.org/downloads/",
  6544. "license": [
  6545. "MIT"
  6546. ],
  6547. "authors": [
  6548. {
  6549. "name": "Nicolas Grekas",
  6550. "email": "p@tchwork.com"
  6551. },
  6552. {
  6553. "name": "Symfony Community",
  6554. "homepage": "https://symfony.com/contributors"
  6555. }
  6556. ],
  6557. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6558. "homepage": "https://symfony.com",
  6559. "keywords": [
  6560. "compatibility",
  6561. "polyfill",
  6562. "portable",
  6563. "shim"
  6564. ],
  6565. "support": {
  6566. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  6567. },
  6568. "funding": [
  6569. {
  6570. "url": "https://symfony.com/sponsor",
  6571. "type": "custom"
  6572. },
  6573. {
  6574. "url": "https://github.com/fabpot",
  6575. "type": "github"
  6576. },
  6577. {
  6578. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6579. "type": "tidelift"
  6580. }
  6581. ],
  6582. "time": "2021-02-19T12:13:01+00:00"
  6583. },
  6584. {
  6585. "name": "symfony/polyfill-php80",
  6586. "version": "v1.23.1",
  6587. "source": {
  6588. "type": "git",
  6589. "url": "https://github.com/symfony/polyfill-php80.git",
  6590. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  6591. },
  6592. "dist": {
  6593. "type": "zip",
  6594. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  6595. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  6596. "shasum": "",
  6597. "mirrors": [
  6598. {
  6599. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6600. "preferred": true
  6601. }
  6602. ]
  6603. },
  6604. "require": {
  6605. "php": ">=7.1"
  6606. },
  6607. "type": "library",
  6608. "extra": {
  6609. "branch-alias": {
  6610. "dev-main": "1.23-dev"
  6611. },
  6612. "thanks": {
  6613. "name": "symfony/polyfill",
  6614. "url": "https://github.com/symfony/polyfill"
  6615. }
  6616. },
  6617. "autoload": {
  6618. "psr-4": {
  6619. "Symfony\\Polyfill\\Php80\\": ""
  6620. },
  6621. "files": [
  6622. "bootstrap.php"
  6623. ],
  6624. "classmap": [
  6625. "Resources/stubs"
  6626. ]
  6627. },
  6628. "notification-url": "https://packagist.org/downloads/",
  6629. "license": [
  6630. "MIT"
  6631. ],
  6632. "authors": [
  6633. {
  6634. "name": "Ion Bazan",
  6635. "email": "ion.bazan@gmail.com"
  6636. },
  6637. {
  6638. "name": "Nicolas Grekas",
  6639. "email": "p@tchwork.com"
  6640. },
  6641. {
  6642. "name": "Symfony Community",
  6643. "homepage": "https://symfony.com/contributors"
  6644. }
  6645. ],
  6646. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6647. "homepage": "https://symfony.com",
  6648. "keywords": [
  6649. "compatibility",
  6650. "polyfill",
  6651. "portable",
  6652. "shim"
  6653. ],
  6654. "support": {
  6655. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
  6656. },
  6657. "funding": [
  6658. {
  6659. "url": "https://symfony.com/sponsor",
  6660. "type": "custom"
  6661. },
  6662. {
  6663. "url": "https://github.com/fabpot",
  6664. "type": "github"
  6665. },
  6666. {
  6667. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6668. "type": "tidelift"
  6669. }
  6670. ],
  6671. "time": "2021-07-28T13:41:28+00:00"
  6672. },
  6673. {
  6674. "name": "symfony/polyfill-php81",
  6675. "version": "v1.23.0",
  6676. "source": {
  6677. "type": "git",
  6678. "url": "https://github.com/symfony/polyfill-php81.git",
  6679. "reference": "e66119f3de95efc359483f810c4c3e6436279436"
  6680. },
  6681. "dist": {
  6682. "type": "zip",
  6683. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436",
  6684. "reference": "e66119f3de95efc359483f810c4c3e6436279436",
  6685. "shasum": "",
  6686. "mirrors": [
  6687. {
  6688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6689. "preferred": true
  6690. }
  6691. ]
  6692. },
  6693. "require": {
  6694. "php": ">=7.1"
  6695. },
  6696. "type": "library",
  6697. "extra": {
  6698. "branch-alias": {
  6699. "dev-main": "1.23-dev"
  6700. },
  6701. "thanks": {
  6702. "name": "symfony/polyfill",
  6703. "url": "https://github.com/symfony/polyfill"
  6704. }
  6705. },
  6706. "autoload": {
  6707. "psr-4": {
  6708. "Symfony\\Polyfill\\Php81\\": ""
  6709. },
  6710. "files": [
  6711. "bootstrap.php"
  6712. ],
  6713. "classmap": [
  6714. "Resources/stubs"
  6715. ]
  6716. },
  6717. "notification-url": "https://packagist.org/downloads/",
  6718. "license": [
  6719. "MIT"
  6720. ],
  6721. "authors": [
  6722. {
  6723. "name": "Nicolas Grekas",
  6724. "email": "p@tchwork.com"
  6725. },
  6726. {
  6727. "name": "Symfony Community",
  6728. "homepage": "https://symfony.com/contributors"
  6729. }
  6730. ],
  6731. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6732. "homepage": "https://symfony.com",
  6733. "keywords": [
  6734. "compatibility",
  6735. "polyfill",
  6736. "portable",
  6737. "shim"
  6738. ],
  6739. "support": {
  6740. "source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0"
  6741. },
  6742. "funding": [
  6743. {
  6744. "url": "https://symfony.com/sponsor",
  6745. "type": "custom"
  6746. },
  6747. {
  6748. "url": "https://github.com/fabpot",
  6749. "type": "github"
  6750. },
  6751. {
  6752. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6753. "type": "tidelift"
  6754. }
  6755. ],
  6756. "time": "2021-05-21T13:25:03+00:00"
  6757. },
  6758. {
  6759. "name": "symfony/process",
  6760. "version": "v5.3.7",
  6761. "source": {
  6762. "type": "git",
  6763. "url": "https://github.com/symfony/process.git",
  6764. "reference": "38f26c7d6ed535217ea393e05634cb0b244a1967"
  6765. },
  6766. "dist": {
  6767. "type": "zip",
  6768. "url": "https://api.github.com/repos/symfony/process/zipball/38f26c7d6ed535217ea393e05634cb0b244a1967",
  6769. "reference": "38f26c7d6ed535217ea393e05634cb0b244a1967",
  6770. "shasum": "",
  6771. "mirrors": [
  6772. {
  6773. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6774. "preferred": true
  6775. }
  6776. ]
  6777. },
  6778. "require": {
  6779. "php": ">=7.2.5",
  6780. "symfony/polyfill-php80": "^1.16"
  6781. },
  6782. "type": "library",
  6783. "autoload": {
  6784. "psr-4": {
  6785. "Symfony\\Component\\Process\\": ""
  6786. },
  6787. "exclude-from-classmap": [
  6788. "/Tests/"
  6789. ]
  6790. },
  6791. "notification-url": "https://packagist.org/downloads/",
  6792. "license": [
  6793. "MIT"
  6794. ],
  6795. "authors": [
  6796. {
  6797. "name": "Fabien Potencier",
  6798. "email": "fabien@symfony.com"
  6799. },
  6800. {
  6801. "name": "Symfony Community",
  6802. "homepage": "https://symfony.com/contributors"
  6803. }
  6804. ],
  6805. "description": "Executes commands in sub-processes",
  6806. "homepage": "https://symfony.com",
  6807. "support": {
  6808. "source": "https://github.com/symfony/process/tree/v5.3.7"
  6809. },
  6810. "funding": [
  6811. {
  6812. "url": "https://symfony.com/sponsor",
  6813. "type": "custom"
  6814. },
  6815. {
  6816. "url": "https://github.com/fabpot",
  6817. "type": "github"
  6818. },
  6819. {
  6820. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6821. "type": "tidelift"
  6822. }
  6823. ],
  6824. "time": "2021-08-04T21:20:46+00:00"
  6825. },
  6826. {
  6827. "name": "symfony/property-access",
  6828. "version": "v5.3.8",
  6829. "source": {
  6830. "type": "git",
  6831. "url": "https://github.com/symfony/property-access.git",
  6832. "reference": "2fbab5f95ddb6b8e85f38a6a8a04a17c0acc4d66"
  6833. },
  6834. "dist": {
  6835. "type": "zip",
  6836. "url": "https://api.github.com/repos/symfony/property-access/zipball/2fbab5f95ddb6b8e85f38a6a8a04a17c0acc4d66",
  6837. "reference": "2fbab5f95ddb6b8e85f38a6a8a04a17c0acc4d66",
  6838. "shasum": "",
  6839. "mirrors": [
  6840. {
  6841. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6842. "preferred": true
  6843. }
  6844. ]
  6845. },
  6846. "require": {
  6847. "php": ">=7.2.5",
  6848. "symfony/deprecation-contracts": "^2.1",
  6849. "symfony/polyfill-php80": "^1.16",
  6850. "symfony/property-info": "^5.2"
  6851. },
  6852. "require-dev": {
  6853. "symfony/cache": "^4.4|^5.0"
  6854. },
  6855. "suggest": {
  6856. "psr/cache-implementation": "To cache access methods."
  6857. },
  6858. "type": "library",
  6859. "autoload": {
  6860. "psr-4": {
  6861. "Symfony\\Component\\PropertyAccess\\": ""
  6862. },
  6863. "exclude-from-classmap": [
  6864. "/Tests/"
  6865. ]
  6866. },
  6867. "notification-url": "https://packagist.org/downloads/",
  6868. "license": [
  6869. "MIT"
  6870. ],
  6871. "authors": [
  6872. {
  6873. "name": "Fabien Potencier",
  6874. "email": "fabien@symfony.com"
  6875. },
  6876. {
  6877. "name": "Symfony Community",
  6878. "homepage": "https://symfony.com/contributors"
  6879. }
  6880. ],
  6881. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6882. "homepage": "https://symfony.com",
  6883. "keywords": [
  6884. "access",
  6885. "array",
  6886. "extraction",
  6887. "index",
  6888. "injection",
  6889. "object",
  6890. "property",
  6891. "property path",
  6892. "reflection"
  6893. ],
  6894. "support": {
  6895. "source": "https://github.com/symfony/property-access/tree/v5.3.8"
  6896. },
  6897. "funding": [
  6898. {
  6899. "url": "https://symfony.com/sponsor",
  6900. "type": "custom"
  6901. },
  6902. {
  6903. "url": "https://github.com/fabpot",
  6904. "type": "github"
  6905. },
  6906. {
  6907. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6908. "type": "tidelift"
  6909. }
  6910. ],
  6911. "time": "2021-09-10T11:55:24+00:00"
  6912. },
  6913. {
  6914. "name": "symfony/property-info",
  6915. "version": "v5.3.8",
  6916. "source": {
  6917. "type": "git",
  6918. "url": "https://github.com/symfony/property-info.git",
  6919. "reference": "39de5bed8c036f76ec0457ec52908e45d5497947"
  6920. },
  6921. "dist": {
  6922. "type": "zip",
  6923. "url": "https://api.github.com/repos/symfony/property-info/zipball/39de5bed8c036f76ec0457ec52908e45d5497947",
  6924. "reference": "39de5bed8c036f76ec0457ec52908e45d5497947",
  6925. "shasum": "",
  6926. "mirrors": [
  6927. {
  6928. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6929. "preferred": true
  6930. }
  6931. ]
  6932. },
  6933. "require": {
  6934. "php": ">=7.2.5",
  6935. "symfony/deprecation-contracts": "^2.1",
  6936. "symfony/polyfill-php80": "^1.16",
  6937. "symfony/string": "^5.1"
  6938. },
  6939. "conflict": {
  6940. "phpdocumentor/reflection-docblock": "<3.2.2",
  6941. "phpdocumentor/type-resolver": "<1.4.0",
  6942. "symfony/dependency-injection": "<4.4"
  6943. },
  6944. "require-dev": {
  6945. "doctrine/annotations": "^1.10.4",
  6946. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6947. "symfony/cache": "^4.4|^5.0",
  6948. "symfony/dependency-injection": "^4.4|^5.0",
  6949. "symfony/serializer": "^4.4|^5.0"
  6950. },
  6951. "suggest": {
  6952. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6953. "psr/cache-implementation": "To cache results",
  6954. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6955. "symfony/serializer": "To use Serializer metadata"
  6956. },
  6957. "type": "library",
  6958. "autoload": {
  6959. "psr-4": {
  6960. "Symfony\\Component\\PropertyInfo\\": ""
  6961. },
  6962. "exclude-from-classmap": [
  6963. "/Tests/"
  6964. ]
  6965. },
  6966. "notification-url": "https://packagist.org/downloads/",
  6967. "license": [
  6968. "MIT"
  6969. ],
  6970. "authors": [
  6971. {
  6972. "name": "Kévin Dunglas",
  6973. "email": "dunglas@gmail.com"
  6974. },
  6975. {
  6976. "name": "Symfony Community",
  6977. "homepage": "https://symfony.com/contributors"
  6978. }
  6979. ],
  6980. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6981. "homepage": "https://symfony.com",
  6982. "keywords": [
  6983. "doctrine",
  6984. "phpdoc",
  6985. "property",
  6986. "symfony",
  6987. "type",
  6988. "validator"
  6989. ],
  6990. "support": {
  6991. "source": "https://github.com/symfony/property-info/tree/v5.3.8"
  6992. },
  6993. "funding": [
  6994. {
  6995. "url": "https://symfony.com/sponsor",
  6996. "type": "custom"
  6997. },
  6998. {
  6999. "url": "https://github.com/fabpot",
  7000. "type": "github"
  7001. },
  7002. {
  7003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7004. "type": "tidelift"
  7005. }
  7006. ],
  7007. "time": "2021-09-07T07:41:40+00:00"
  7008. },
  7009. {
  7010. "name": "symfony/routing",
  7011. "version": "v5.3.7",
  7012. "source": {
  7013. "type": "git",
  7014. "url": "https://github.com/symfony/routing.git",
  7015. "reference": "be865017746fe869007d94220ad3f5297951811b"
  7016. },
  7017. "dist": {
  7018. "type": "zip",
  7019. "url": "https://api.github.com/repos/symfony/routing/zipball/be865017746fe869007d94220ad3f5297951811b",
  7020. "reference": "be865017746fe869007d94220ad3f5297951811b",
  7021. "shasum": "",
  7022. "mirrors": [
  7023. {
  7024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7025. "preferred": true
  7026. }
  7027. ]
  7028. },
  7029. "require": {
  7030. "php": ">=7.2.5",
  7031. "symfony/deprecation-contracts": "^2.1",
  7032. "symfony/polyfill-php80": "^1.16"
  7033. },
  7034. "conflict": {
  7035. "doctrine/annotations": "<1.12",
  7036. "symfony/config": "<5.3",
  7037. "symfony/dependency-injection": "<4.4",
  7038. "symfony/yaml": "<4.4"
  7039. },
  7040. "require-dev": {
  7041. "doctrine/annotations": "^1.12",
  7042. "psr/log": "^1|^2|^3",
  7043. "symfony/config": "^5.3",
  7044. "symfony/dependency-injection": "^4.4|^5.0",
  7045. "symfony/expression-language": "^4.4|^5.0",
  7046. "symfony/http-foundation": "^4.4|^5.0",
  7047. "symfony/yaml": "^4.4|^5.0"
  7048. },
  7049. "suggest": {
  7050. "symfony/config": "For using the all-in-one router or any loader",
  7051. "symfony/expression-language": "For using expression matching",
  7052. "symfony/http-foundation": "For using a Symfony Request object",
  7053. "symfony/yaml": "For using the YAML loader"
  7054. },
  7055. "type": "library",
  7056. "autoload": {
  7057. "psr-4": {
  7058. "Symfony\\Component\\Routing\\": ""
  7059. },
  7060. "exclude-from-classmap": [
  7061. "/Tests/"
  7062. ]
  7063. },
  7064. "notification-url": "https://packagist.org/downloads/",
  7065. "license": [
  7066. "MIT"
  7067. ],
  7068. "authors": [
  7069. {
  7070. "name": "Fabien Potencier",
  7071. "email": "fabien@symfony.com"
  7072. },
  7073. {
  7074. "name": "Symfony Community",
  7075. "homepage": "https://symfony.com/contributors"
  7076. }
  7077. ],
  7078. "description": "Maps an HTTP request to a set of configuration variables",
  7079. "homepage": "https://symfony.com",
  7080. "keywords": [
  7081. "router",
  7082. "routing",
  7083. "uri",
  7084. "url"
  7085. ],
  7086. "support": {
  7087. "source": "https://github.com/symfony/routing/tree/v5.3.7"
  7088. },
  7089. "funding": [
  7090. {
  7091. "url": "https://symfony.com/sponsor",
  7092. "type": "custom"
  7093. },
  7094. {
  7095. "url": "https://github.com/fabpot",
  7096. "type": "github"
  7097. },
  7098. {
  7099. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7100. "type": "tidelift"
  7101. }
  7102. ],
  7103. "time": "2021-08-04T21:42:42+00:00"
  7104. },
  7105. {
  7106. "name": "symfony/service-contracts",
  7107. "version": "v2.4.0",
  7108. "source": {
  7109. "type": "git",
  7110. "url": "https://github.com/symfony/service-contracts.git",
  7111. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  7112. },
  7113. "dist": {
  7114. "type": "zip",
  7115. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7116. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7117. "shasum": "",
  7118. "mirrors": [
  7119. {
  7120. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7121. "preferred": true
  7122. }
  7123. ]
  7124. },
  7125. "require": {
  7126. "php": ">=7.2.5",
  7127. "psr/container": "^1.1"
  7128. },
  7129. "suggest": {
  7130. "symfony/service-implementation": ""
  7131. },
  7132. "type": "library",
  7133. "extra": {
  7134. "branch-alias": {
  7135. "dev-main": "2.4-dev"
  7136. },
  7137. "thanks": {
  7138. "name": "symfony/contracts",
  7139. "url": "https://github.com/symfony/contracts"
  7140. }
  7141. },
  7142. "autoload": {
  7143. "psr-4": {
  7144. "Symfony\\Contracts\\Service\\": ""
  7145. }
  7146. },
  7147. "notification-url": "https://packagist.org/downloads/",
  7148. "license": [
  7149. "MIT"
  7150. ],
  7151. "authors": [
  7152. {
  7153. "name": "Nicolas Grekas",
  7154. "email": "p@tchwork.com"
  7155. },
  7156. {
  7157. "name": "Symfony Community",
  7158. "homepage": "https://symfony.com/contributors"
  7159. }
  7160. ],
  7161. "description": "Generic abstractions related to writing services",
  7162. "homepage": "https://symfony.com",
  7163. "keywords": [
  7164. "abstractions",
  7165. "contracts",
  7166. "decoupling",
  7167. "interfaces",
  7168. "interoperability",
  7169. "standards"
  7170. ],
  7171. "support": {
  7172. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  7173. },
  7174. "funding": [
  7175. {
  7176. "url": "https://symfony.com/sponsor",
  7177. "type": "custom"
  7178. },
  7179. {
  7180. "url": "https://github.com/fabpot",
  7181. "type": "github"
  7182. },
  7183. {
  7184. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7185. "type": "tidelift"
  7186. }
  7187. ],
  7188. "time": "2021-04-01T10:43:52+00:00"
  7189. },
  7190. {
  7191. "name": "symfony/string",
  7192. "version": "v5.3.7",
  7193. "source": {
  7194. "type": "git",
  7195. "url": "https://github.com/symfony/string.git",
  7196. "reference": "8d224396e28d30f81969f083a58763b8b9ceb0a5"
  7197. },
  7198. "dist": {
  7199. "type": "zip",
  7200. "url": "https://api.github.com/repos/symfony/string/zipball/8d224396e28d30f81969f083a58763b8b9ceb0a5",
  7201. "reference": "8d224396e28d30f81969f083a58763b8b9ceb0a5",
  7202. "shasum": "",
  7203. "mirrors": [
  7204. {
  7205. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7206. "preferred": true
  7207. }
  7208. ]
  7209. },
  7210. "require": {
  7211. "php": ">=7.2.5",
  7212. "symfony/polyfill-ctype": "~1.8",
  7213. "symfony/polyfill-intl-grapheme": "~1.0",
  7214. "symfony/polyfill-intl-normalizer": "~1.0",
  7215. "symfony/polyfill-mbstring": "~1.0",
  7216. "symfony/polyfill-php80": "~1.15"
  7217. },
  7218. "require-dev": {
  7219. "symfony/error-handler": "^4.4|^5.0",
  7220. "symfony/http-client": "^4.4|^5.0",
  7221. "symfony/translation-contracts": "^1.1|^2",
  7222. "symfony/var-exporter": "^4.4|^5.0"
  7223. },
  7224. "type": "library",
  7225. "autoload": {
  7226. "psr-4": {
  7227. "Symfony\\Component\\String\\": ""
  7228. },
  7229. "files": [
  7230. "Resources/functions.php"
  7231. ],
  7232. "exclude-from-classmap": [
  7233. "/Tests/"
  7234. ]
  7235. },
  7236. "notification-url": "https://packagist.org/downloads/",
  7237. "license": [
  7238. "MIT"
  7239. ],
  7240. "authors": [
  7241. {
  7242. "name": "Nicolas Grekas",
  7243. "email": "p@tchwork.com"
  7244. },
  7245. {
  7246. "name": "Symfony Community",
  7247. "homepage": "https://symfony.com/contributors"
  7248. }
  7249. ],
  7250. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7251. "homepage": "https://symfony.com",
  7252. "keywords": [
  7253. "grapheme",
  7254. "i18n",
  7255. "string",
  7256. "unicode",
  7257. "utf-8",
  7258. "utf8"
  7259. ],
  7260. "support": {
  7261. "source": "https://github.com/symfony/string/tree/v5.3.7"
  7262. },
  7263. "funding": [
  7264. {
  7265. "url": "https://symfony.com/sponsor",
  7266. "type": "custom"
  7267. },
  7268. {
  7269. "url": "https://github.com/fabpot",
  7270. "type": "github"
  7271. },
  7272. {
  7273. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7274. "type": "tidelift"
  7275. }
  7276. ],
  7277. "time": "2021-08-26T08:00:08+00:00"
  7278. },
  7279. {
  7280. "name": "symfony/translation",
  7281. "version": "v5.3.9",
  7282. "source": {
  7283. "type": "git",
  7284. "url": "https://github.com/symfony/translation.git",
  7285. "reference": "6e69f3551c1a3356cf6ea8d019bf039a0f8b6886"
  7286. },
  7287. "dist": {
  7288. "type": "zip",
  7289. "url": "https://api.github.com/repos/symfony/translation/zipball/6e69f3551c1a3356cf6ea8d019bf039a0f8b6886",
  7290. "reference": "6e69f3551c1a3356cf6ea8d019bf039a0f8b6886",
  7291. "shasum": "",
  7292. "mirrors": [
  7293. {
  7294. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7295. "preferred": true
  7296. }
  7297. ]
  7298. },
  7299. "require": {
  7300. "php": ">=7.2.5",
  7301. "symfony/deprecation-contracts": "^2.1",
  7302. "symfony/polyfill-mbstring": "~1.0",
  7303. "symfony/polyfill-php80": "^1.16",
  7304. "symfony/translation-contracts": "^2.3"
  7305. },
  7306. "conflict": {
  7307. "symfony/config": "<4.4",
  7308. "symfony/dependency-injection": "<5.0",
  7309. "symfony/http-kernel": "<5.0",
  7310. "symfony/twig-bundle": "<5.0",
  7311. "symfony/yaml": "<4.4"
  7312. },
  7313. "provide": {
  7314. "symfony/translation-implementation": "2.3"
  7315. },
  7316. "require-dev": {
  7317. "psr/log": "^1|^2|^3",
  7318. "symfony/config": "^4.4|^5.0",
  7319. "symfony/console": "^4.4|^5.0",
  7320. "symfony/dependency-injection": "^5.0",
  7321. "symfony/finder": "^4.4|^5.0",
  7322. "symfony/http-kernel": "^5.0",
  7323. "symfony/intl": "^4.4|^5.0",
  7324. "symfony/polyfill-intl-icu": "^1.21",
  7325. "symfony/service-contracts": "^1.1.2|^2",
  7326. "symfony/yaml": "^4.4|^5.0"
  7327. },
  7328. "suggest": {
  7329. "psr/log-implementation": "To use logging capability in translator",
  7330. "symfony/config": "",
  7331. "symfony/yaml": ""
  7332. },
  7333. "type": "library",
  7334. "autoload": {
  7335. "files": [
  7336. "Resources/functions.php"
  7337. ],
  7338. "psr-4": {
  7339. "Symfony\\Component\\Translation\\": ""
  7340. },
  7341. "exclude-from-classmap": [
  7342. "/Tests/"
  7343. ]
  7344. },
  7345. "notification-url": "https://packagist.org/downloads/",
  7346. "license": [
  7347. "MIT"
  7348. ],
  7349. "authors": [
  7350. {
  7351. "name": "Fabien Potencier",
  7352. "email": "fabien@symfony.com"
  7353. },
  7354. {
  7355. "name": "Symfony Community",
  7356. "homepage": "https://symfony.com/contributors"
  7357. }
  7358. ],
  7359. "description": "Provides tools to internationalize your application",
  7360. "homepage": "https://symfony.com",
  7361. "support": {
  7362. "source": "https://github.com/symfony/translation/tree/v5.3.9"
  7363. },
  7364. "funding": [
  7365. {
  7366. "url": "https://symfony.com/sponsor",
  7367. "type": "custom"
  7368. },
  7369. {
  7370. "url": "https://github.com/fabpot",
  7371. "type": "github"
  7372. },
  7373. {
  7374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7375. "type": "tidelift"
  7376. }
  7377. ],
  7378. "time": "2021-08-26T08:22:53+00:00"
  7379. },
  7380. {
  7381. "name": "symfony/translation-contracts",
  7382. "version": "v2.4.0",
  7383. "source": {
  7384. "type": "git",
  7385. "url": "https://github.com/symfony/translation-contracts.git",
  7386. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  7387. },
  7388. "dist": {
  7389. "type": "zip",
  7390. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  7391. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  7392. "shasum": "",
  7393. "mirrors": [
  7394. {
  7395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7396. "preferred": true
  7397. }
  7398. ]
  7399. },
  7400. "require": {
  7401. "php": ">=7.2.5"
  7402. },
  7403. "suggest": {
  7404. "symfony/translation-implementation": ""
  7405. },
  7406. "type": "library",
  7407. "extra": {
  7408. "branch-alias": {
  7409. "dev-main": "2.4-dev"
  7410. },
  7411. "thanks": {
  7412. "name": "symfony/contracts",
  7413. "url": "https://github.com/symfony/contracts"
  7414. }
  7415. },
  7416. "autoload": {
  7417. "psr-4": {
  7418. "Symfony\\Contracts\\Translation\\": ""
  7419. }
  7420. },
  7421. "notification-url": "https://packagist.org/downloads/",
  7422. "license": [
  7423. "MIT"
  7424. ],
  7425. "authors": [
  7426. {
  7427. "name": "Nicolas Grekas",
  7428. "email": "p@tchwork.com"
  7429. },
  7430. {
  7431. "name": "Symfony Community",
  7432. "homepage": "https://symfony.com/contributors"
  7433. }
  7434. ],
  7435. "description": "Generic abstractions related to translation",
  7436. "homepage": "https://symfony.com",
  7437. "keywords": [
  7438. "abstractions",
  7439. "contracts",
  7440. "decoupling",
  7441. "interfaces",
  7442. "interoperability",
  7443. "standards"
  7444. ],
  7445. "support": {
  7446. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  7447. },
  7448. "funding": [
  7449. {
  7450. "url": "https://symfony.com/sponsor",
  7451. "type": "custom"
  7452. },
  7453. {
  7454. "url": "https://github.com/fabpot",
  7455. "type": "github"
  7456. },
  7457. {
  7458. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7459. "type": "tidelift"
  7460. }
  7461. ],
  7462. "time": "2021-03-23T23:28:01+00:00"
  7463. },
  7464. {
  7465. "name": "symfony/var-dumper",
  7466. "version": "v5.3.8",
  7467. "source": {
  7468. "type": "git",
  7469. "url": "https://github.com/symfony/var-dumper.git",
  7470. "reference": "eaaea4098be1c90c8285543e1356a09c8aa5c8da"
  7471. },
  7472. "dist": {
  7473. "type": "zip",
  7474. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/eaaea4098be1c90c8285543e1356a09c8aa5c8da",
  7475. "reference": "eaaea4098be1c90c8285543e1356a09c8aa5c8da",
  7476. "shasum": "",
  7477. "mirrors": [
  7478. {
  7479. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7480. "preferred": true
  7481. }
  7482. ]
  7483. },
  7484. "require": {
  7485. "php": ">=7.2.5",
  7486. "symfony/polyfill-mbstring": "~1.0",
  7487. "symfony/polyfill-php80": "^1.16"
  7488. },
  7489. "conflict": {
  7490. "phpunit/phpunit": "<5.4.3",
  7491. "symfony/console": "<4.4"
  7492. },
  7493. "require-dev": {
  7494. "ext-iconv": "*",
  7495. "symfony/console": "^4.4|^5.0",
  7496. "symfony/process": "^4.4|^5.0",
  7497. "twig/twig": "^2.13|^3.0.4"
  7498. },
  7499. "suggest": {
  7500. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7501. "ext-intl": "To show region name in time zone dump",
  7502. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7503. },
  7504. "bin": [
  7505. "Resources/bin/var-dump-server"
  7506. ],
  7507. "type": "library",
  7508. "autoload": {
  7509. "files": [
  7510. "Resources/functions/dump.php"
  7511. ],
  7512. "psr-4": {
  7513. "Symfony\\Component\\VarDumper\\": ""
  7514. },
  7515. "exclude-from-classmap": [
  7516. "/Tests/"
  7517. ]
  7518. },
  7519. "notification-url": "https://packagist.org/downloads/",
  7520. "license": [
  7521. "MIT"
  7522. ],
  7523. "authors": [
  7524. {
  7525. "name": "Nicolas Grekas",
  7526. "email": "p@tchwork.com"
  7527. },
  7528. {
  7529. "name": "Symfony Community",
  7530. "homepage": "https://symfony.com/contributors"
  7531. }
  7532. ],
  7533. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7534. "homepage": "https://symfony.com",
  7535. "keywords": [
  7536. "debug",
  7537. "dump"
  7538. ],
  7539. "support": {
  7540. "source": "https://github.com/symfony/var-dumper/tree/v5.3.8"
  7541. },
  7542. "funding": [
  7543. {
  7544. "url": "https://symfony.com/sponsor",
  7545. "type": "custom"
  7546. },
  7547. {
  7548. "url": "https://github.com/fabpot",
  7549. "type": "github"
  7550. },
  7551. {
  7552. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7553. "type": "tidelift"
  7554. }
  7555. ],
  7556. "time": "2021-09-24T15:59:58+00:00"
  7557. },
  7558. {
  7559. "name": "te7a-houdini/laravel-trix",
  7560. "version": "2.0.5",
  7561. "source": {
  7562. "type": "git",
  7563. "url": "https://github.com/amaelftah/laravel-trix.git",
  7564. "reference": "517404ca45115ac393cdad14786e9c599f3efcf8"
  7565. },
  7566. "dist": {
  7567. "type": "zip",
  7568. "url": "https://api.github.com/repos/amaelftah/laravel-trix/zipball/517404ca45115ac393cdad14786e9c599f3efcf8",
  7569. "reference": "517404ca45115ac393cdad14786e9c599f3efcf8",
  7570. "shasum": "",
  7571. "mirrors": [
  7572. {
  7573. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7574. "preferred": true
  7575. }
  7576. ]
  7577. },
  7578. "require": {
  7579. "laravel/framework": "~5.8.0|~6.0|~7.0|~8.0",
  7580. "php": "^7.1|^8.0"
  7581. },
  7582. "require-dev": {
  7583. "orchestra/testbench": "^3.5|~4.0|~5.0|~6.0"
  7584. },
  7585. "type": "library",
  7586. "extra": {
  7587. "laravel": {
  7588. "providers": [
  7589. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  7590. ]
  7591. }
  7592. },
  7593. "autoload": {
  7594. "psr-4": {
  7595. "Te7aHoudini\\LaravelTrix\\": "src"
  7596. }
  7597. },
  7598. "notification-url": "https://packagist.org/downloads/",
  7599. "license": [
  7600. "MIT"
  7601. ],
  7602. "authors": [
  7603. {
  7604. "name": "Ahmed Abd El Ftah",
  7605. "email": "ahmedabdelftah95165@gmail.com",
  7606. "role": "Developer"
  7607. }
  7608. ],
  7609. "description": "trix editor for laravel inspired by ActionText for rails",
  7610. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  7611. "keywords": [
  7612. "laravel-trix",
  7613. "te7a-houdini"
  7614. ],
  7615. "support": {
  7616. "issues": "https://github.com/amaelftah/laravel-trix/issues",
  7617. "source": "https://github.com/amaelftah/laravel-trix/tree/2.0.5"
  7618. },
  7619. "time": "2021-01-21T01:21:17+00:00"
  7620. },
  7621. {
  7622. "name": "tightenco/collect",
  7623. "version": "v5.6.33",
  7624. "source": {
  7625. "type": "git",
  7626. "url": "https://github.com/tighten/collect.git",
  7627. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  7628. },
  7629. "dist": {
  7630. "type": "zip",
  7631. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  7632. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  7633. "shasum": "",
  7634. "mirrors": [
  7635. {
  7636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7637. "preferred": true
  7638. }
  7639. ]
  7640. },
  7641. "require": {
  7642. "php": ">=7.1.3",
  7643. "symfony/var-dumper": ">=3.1.10"
  7644. },
  7645. "require-dev": {
  7646. "mockery/mockery": "~1.0",
  7647. "nesbot/carbon": "~1.20",
  7648. "phpunit/phpunit": "~7.0"
  7649. },
  7650. "type": "library",
  7651. "autoload": {
  7652. "files": [
  7653. "src/Collect/Support/helpers.php",
  7654. "src/Collect/Support/alias.php"
  7655. ],
  7656. "psr-4": {
  7657. "Tightenco\\Collect\\": "src/Collect"
  7658. }
  7659. },
  7660. "notification-url": "https://packagist.org/downloads/",
  7661. "license": [
  7662. "MIT"
  7663. ],
  7664. "authors": [
  7665. {
  7666. "name": "Taylor Otwell",
  7667. "email": "taylorotwell@gmail.com"
  7668. }
  7669. ],
  7670. "description": "Collect - Illuminate Collections as a separate package.",
  7671. "keywords": [
  7672. "collection",
  7673. "laravel"
  7674. ],
  7675. "support": {
  7676. "issues": "https://github.com/tighten/collect/issues",
  7677. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  7678. },
  7679. "time": "2018-08-09T16:56:26+00:00"
  7680. },
  7681. {
  7682. "name": "tijsverkoyen/css-to-inline-styles",
  7683. "version": "2.2.3",
  7684. "source": {
  7685. "type": "git",
  7686. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7687. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7688. },
  7689. "dist": {
  7690. "type": "zip",
  7691. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7692. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7693. "shasum": "",
  7694. "mirrors": [
  7695. {
  7696. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7697. "preferred": true
  7698. }
  7699. ]
  7700. },
  7701. "require": {
  7702. "ext-dom": "*",
  7703. "ext-libxml": "*",
  7704. "php": "^5.5 || ^7.0 || ^8.0",
  7705. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7706. },
  7707. "require-dev": {
  7708. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7709. },
  7710. "type": "library",
  7711. "extra": {
  7712. "branch-alias": {
  7713. "dev-master": "2.2.x-dev"
  7714. }
  7715. },
  7716. "autoload": {
  7717. "psr-4": {
  7718. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7719. }
  7720. },
  7721. "notification-url": "https://packagist.org/downloads/",
  7722. "license": [
  7723. "BSD-3-Clause"
  7724. ],
  7725. "authors": [
  7726. {
  7727. "name": "Tijs Verkoyen",
  7728. "email": "css_to_inline_styles@verkoyen.eu",
  7729. "role": "Developer"
  7730. }
  7731. ],
  7732. "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.",
  7733. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7734. "support": {
  7735. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7736. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7737. },
  7738. "time": "2020-07-13T06:12:54+00:00"
  7739. },
  7740. {
  7741. "name": "vlucas/phpdotenv",
  7742. "version": "v4.2.1",
  7743. "source": {
  7744. "type": "git",
  7745. "url": "https://github.com/vlucas/phpdotenv.git",
  7746. "reference": "d38f4d1edcbe32515a0ad593cbd4c858e337263c"
  7747. },
  7748. "dist": {
  7749. "type": "zip",
  7750. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/d38f4d1edcbe32515a0ad593cbd4c858e337263c",
  7751. "reference": "d38f4d1edcbe32515a0ad593cbd4c858e337263c",
  7752. "shasum": "",
  7753. "mirrors": [
  7754. {
  7755. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7756. "preferred": true
  7757. }
  7758. ]
  7759. },
  7760. "require": {
  7761. "php": "^5.5.9 || ^7.0 || ^8.0",
  7762. "phpoption/phpoption": "^1.7.3",
  7763. "symfony/polyfill-ctype": "^1.17"
  7764. },
  7765. "require-dev": {
  7766. "bamarni/composer-bin-plugin": "^1.4.1",
  7767. "ext-filter": "*",
  7768. "ext-pcre": "*",
  7769. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  7770. },
  7771. "suggest": {
  7772. "ext-filter": "Required to use the boolean validator.",
  7773. "ext-pcre": "Required to use most of the library."
  7774. },
  7775. "type": "library",
  7776. "extra": {
  7777. "branch-alias": {
  7778. "dev-master": "4.2-dev"
  7779. }
  7780. },
  7781. "autoload": {
  7782. "psr-4": {
  7783. "Dotenv\\": "src/"
  7784. }
  7785. },
  7786. "notification-url": "https://packagist.org/downloads/",
  7787. "license": [
  7788. "BSD-3-Clause"
  7789. ],
  7790. "authors": [
  7791. {
  7792. "name": "Graham Campbell",
  7793. "email": "hello@gjcampbell.co.uk"
  7794. },
  7795. {
  7796. "name": "Vance Lucas",
  7797. "email": "vance@vancelucas.com"
  7798. }
  7799. ],
  7800. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7801. "keywords": [
  7802. "dotenv",
  7803. "env",
  7804. "environment"
  7805. ],
  7806. "support": {
  7807. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7808. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.1"
  7809. },
  7810. "funding": [
  7811. {
  7812. "url": "https://github.com/GrahamCampbell",
  7813. "type": "github"
  7814. },
  7815. {
  7816. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7817. "type": "tidelift"
  7818. }
  7819. ],
  7820. "time": "2021-10-02T19:17:08+00:00"
  7821. },
  7822. {
  7823. "name": "voku/portable-ascii",
  7824. "version": "1.5.6",
  7825. "source": {
  7826. "type": "git",
  7827. "url": "https://github.com/voku/portable-ascii.git",
  7828. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7829. },
  7830. "dist": {
  7831. "type": "zip",
  7832. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7833. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7834. "shasum": "",
  7835. "mirrors": [
  7836. {
  7837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7838. "preferred": true
  7839. }
  7840. ]
  7841. },
  7842. "require": {
  7843. "php": ">=7.0.0"
  7844. },
  7845. "require-dev": {
  7846. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7847. },
  7848. "suggest": {
  7849. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7850. },
  7851. "type": "library",
  7852. "autoload": {
  7853. "psr-4": {
  7854. "voku\\": "src/voku/"
  7855. }
  7856. },
  7857. "notification-url": "https://packagist.org/downloads/",
  7858. "license": [
  7859. "MIT"
  7860. ],
  7861. "authors": [
  7862. {
  7863. "name": "Lars Moelleken",
  7864. "homepage": "http://www.moelleken.org/"
  7865. }
  7866. ],
  7867. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7868. "homepage": "https://github.com/voku/portable-ascii",
  7869. "keywords": [
  7870. "ascii",
  7871. "clean",
  7872. "php"
  7873. ],
  7874. "support": {
  7875. "issues": "https://github.com/voku/portable-ascii/issues",
  7876. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7877. },
  7878. "funding": [
  7879. {
  7880. "url": "https://www.paypal.me/moelleken",
  7881. "type": "custom"
  7882. },
  7883. {
  7884. "url": "https://github.com/voku",
  7885. "type": "github"
  7886. },
  7887. {
  7888. "url": "https://opencollective.com/portable-ascii",
  7889. "type": "open_collective"
  7890. },
  7891. {
  7892. "url": "https://www.patreon.com/voku",
  7893. "type": "patreon"
  7894. },
  7895. {
  7896. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7897. "type": "tidelift"
  7898. }
  7899. ],
  7900. "time": "2020-11-12T00:07:28+00:00"
  7901. },
  7902. {
  7903. "name": "yajra/laravel-oci8",
  7904. "version": "v7.0.0",
  7905. "source": {
  7906. "type": "git",
  7907. "url": "https://github.com/yajra/laravel-oci8.git",
  7908. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  7909. },
  7910. "dist": {
  7911. "type": "zip",
  7912. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7913. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7914. "shasum": "",
  7915. "mirrors": [
  7916. {
  7917. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7918. "preferred": true
  7919. }
  7920. ]
  7921. },
  7922. "require": {
  7923. "ext-oci8": ">=2.0.0",
  7924. "ext-pdo": "*",
  7925. "illuminate/database": "^7",
  7926. "illuminate/support": "^7",
  7927. "php": "^7.2.5",
  7928. "yajra/laravel-pdo-via-oci8": "^2"
  7929. },
  7930. "require-dev": {
  7931. "mockery/mockery": "^1.3.1",
  7932. "phpunit/phpunit": "^8.4|^9.0",
  7933. "scrutinizer/ocular": "~1.1"
  7934. },
  7935. "type": "library",
  7936. "extra": {
  7937. "branch-alias": {
  7938. "dev-master": "7.x-dev"
  7939. },
  7940. "laravel": {
  7941. "providers": [
  7942. "Yajra\\Oci8\\Oci8ServiceProvider"
  7943. ]
  7944. }
  7945. },
  7946. "autoload": {
  7947. "files": [
  7948. "src/helper.php"
  7949. ],
  7950. "psr-4": {
  7951. "Yajra\\": "src/"
  7952. }
  7953. },
  7954. "notification-url": "https://packagist.org/downloads/",
  7955. "license": [
  7956. "MIT"
  7957. ],
  7958. "authors": [
  7959. {
  7960. "name": "Arjay Angeles",
  7961. "email": "aqangeles@gmail.com"
  7962. }
  7963. ],
  7964. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  7965. "keywords": [
  7966. "laravel",
  7967. "oci8",
  7968. "oracle",
  7969. "pdo_oci"
  7970. ],
  7971. "support": {
  7972. "issues": "https://github.com/yajra/laravel-oci8/issues",
  7973. "source": "https://github.com/yajra/laravel-oci8/tree/v7.0.0"
  7974. },
  7975. "funding": [
  7976. {
  7977. "url": "https://www.paypal.me/yajra",
  7978. "type": "custom"
  7979. },
  7980. {
  7981. "url": "https://www.patreon.com/yajra",
  7982. "type": "patreon"
  7983. }
  7984. ],
  7985. "time": "2020-03-04T02:15:19+00:00"
  7986. },
  7987. {
  7988. "name": "yajra/laravel-pdo-via-oci8",
  7989. "version": "v2.2.0",
  7990. "source": {
  7991. "type": "git",
  7992. "url": "https://github.com/yajra/pdo-via-oci8.git",
  7993. "reference": "93610843b7abe975413288bcc4adb347edefb4b8"
  7994. },
  7995. "dist": {
  7996. "type": "zip",
  7997. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/93610843b7abe975413288bcc4adb347edefb4b8",
  7998. "reference": "93610843b7abe975413288bcc4adb347edefb4b8",
  7999. "shasum": "",
  8000. "mirrors": [
  8001. {
  8002. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8003. "preferred": true
  8004. }
  8005. ]
  8006. },
  8007. "require-dev": {
  8008. "phpunit/phpunit": "^6.4"
  8009. },
  8010. "type": "library",
  8011. "extra": {
  8012. "branch-alias": {
  8013. "dev-master": "2.0-dev"
  8014. }
  8015. },
  8016. "autoload": {
  8017. "psr-4": {
  8018. "Yajra\\": "src/"
  8019. }
  8020. },
  8021. "notification-url": "https://packagist.org/downloads/",
  8022. "license": [
  8023. "MIT"
  8024. ],
  8025. "authors": [
  8026. {
  8027. "name": "Arjay Angeles",
  8028. "email": "aqangeles@gmail.com"
  8029. }
  8030. ],
  8031. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  8032. "support": {
  8033. "issues": "https://github.com/yajra/pdo-via-oci8/issues",
  8034. "source": "https://github.com/yajra/pdo-via-oci8/tree/v2.2.0"
  8035. },
  8036. "time": "2020-12-11T12:29:18+00:00"
  8037. }
  8038. ],
  8039. "packages-dev": [
  8040. {
  8041. "name": "barryvdh/laravel-debugbar",
  8042. "version": "v3.6.4",
  8043. "source": {
  8044. "type": "git",
  8045. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  8046. "reference": "3c2d678269ba60e178bcd93e36f6a91c36b727f1"
  8047. },
  8048. "dist": {
  8049. "type": "zip",
  8050. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/3c2d678269ba60e178bcd93e36f6a91c36b727f1",
  8051. "reference": "3c2d678269ba60e178bcd93e36f6a91c36b727f1",
  8052. "shasum": "",
  8053. "mirrors": [
  8054. {
  8055. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8056. "preferred": true
  8057. }
  8058. ]
  8059. },
  8060. "require": {
  8061. "illuminate/routing": "^6|^7|^8",
  8062. "illuminate/session": "^6|^7|^8",
  8063. "illuminate/support": "^6|^7|^8",
  8064. "maximebf/debugbar": "^1.17.2",
  8065. "php": ">=7.2",
  8066. "symfony/debug": "^4.3|^5",
  8067. "symfony/finder": "^4.3|^5"
  8068. },
  8069. "require-dev": {
  8070. "mockery/mockery": "^1.3.3",
  8071. "orchestra/testbench-dusk": "^4|^5|^6",
  8072. "phpunit/phpunit": "^8.5|^9.0",
  8073. "squizlabs/php_codesniffer": "^3.5"
  8074. },
  8075. "type": "library",
  8076. "extra": {
  8077. "branch-alias": {
  8078. "dev-master": "3.6-dev"
  8079. },
  8080. "laravel": {
  8081. "providers": [
  8082. "Barryvdh\\Debugbar\\ServiceProvider"
  8083. ],
  8084. "aliases": {
  8085. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  8086. }
  8087. }
  8088. },
  8089. "autoload": {
  8090. "psr-4": {
  8091. "Barryvdh\\Debugbar\\": "src/"
  8092. },
  8093. "files": [
  8094. "src/helpers.php"
  8095. ]
  8096. },
  8097. "notification-url": "https://packagist.org/downloads/",
  8098. "license": [
  8099. "MIT"
  8100. ],
  8101. "authors": [
  8102. {
  8103. "name": "Barry vd. Heuvel",
  8104. "email": "barryvdh@gmail.com"
  8105. }
  8106. ],
  8107. "description": "PHP Debugbar integration for Laravel",
  8108. "keywords": [
  8109. "debug",
  8110. "debugbar",
  8111. "laravel",
  8112. "profiler",
  8113. "webprofiler"
  8114. ],
  8115. "support": {
  8116. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8117. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.6.4"
  8118. },
  8119. "funding": [
  8120. {
  8121. "url": "https://fruitcake.nl",
  8122. "type": "custom"
  8123. },
  8124. {
  8125. "url": "https://github.com/barryvdh",
  8126. "type": "github"
  8127. }
  8128. ],
  8129. "time": "2021-10-21T10:57:31+00:00"
  8130. },
  8131. {
  8132. "name": "doctrine/instantiator",
  8133. "version": "1.4.0",
  8134. "source": {
  8135. "type": "git",
  8136. "url": "https://github.com/doctrine/instantiator.git",
  8137. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8138. },
  8139. "dist": {
  8140. "type": "zip",
  8141. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8142. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8143. "shasum": "",
  8144. "mirrors": [
  8145. {
  8146. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8147. "preferred": true
  8148. }
  8149. ]
  8150. },
  8151. "require": {
  8152. "php": "^7.1 || ^8.0"
  8153. },
  8154. "require-dev": {
  8155. "doctrine/coding-standard": "^8.0",
  8156. "ext-pdo": "*",
  8157. "ext-phar": "*",
  8158. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8159. "phpstan/phpstan": "^0.12",
  8160. "phpstan/phpstan-phpunit": "^0.12",
  8161. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8162. },
  8163. "type": "library",
  8164. "autoload": {
  8165. "psr-4": {
  8166. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8167. }
  8168. },
  8169. "notification-url": "https://packagist.org/downloads/",
  8170. "license": [
  8171. "MIT"
  8172. ],
  8173. "authors": [
  8174. {
  8175. "name": "Marco Pivetta",
  8176. "email": "ocramius@gmail.com",
  8177. "homepage": "https://ocramius.github.io/"
  8178. }
  8179. ],
  8180. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8181. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8182. "keywords": [
  8183. "constructor",
  8184. "instantiate"
  8185. ],
  8186. "support": {
  8187. "issues": "https://github.com/doctrine/instantiator/issues",
  8188. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8189. },
  8190. "funding": [
  8191. {
  8192. "url": "https://www.doctrine-project.org/sponsorship.html",
  8193. "type": "custom"
  8194. },
  8195. {
  8196. "url": "https://www.patreon.com/phpdoctrine",
  8197. "type": "patreon"
  8198. },
  8199. {
  8200. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8201. "type": "tidelift"
  8202. }
  8203. ],
  8204. "time": "2020-11-10T18:47:58+00:00"
  8205. },
  8206. {
  8207. "name": "filp/whoops",
  8208. "version": "2.14.4",
  8209. "source": {
  8210. "type": "git",
  8211. "url": "https://github.com/filp/whoops.git",
  8212. "reference": "f056f1fe935d9ed86e698905a957334029899895"
  8213. },
  8214. "dist": {
  8215. "type": "zip",
  8216. "url": "https://api.github.com/repos/filp/whoops/zipball/f056f1fe935d9ed86e698905a957334029899895",
  8217. "reference": "f056f1fe935d9ed86e698905a957334029899895",
  8218. "shasum": "",
  8219. "mirrors": [
  8220. {
  8221. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8222. "preferred": true
  8223. }
  8224. ]
  8225. },
  8226. "require": {
  8227. "php": "^5.5.9 || ^7.0 || ^8.0",
  8228. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8229. },
  8230. "require-dev": {
  8231. "mockery/mockery": "^0.9 || ^1.0",
  8232. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8233. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8234. },
  8235. "suggest": {
  8236. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8237. "whoops/soap": "Formats errors as SOAP responses"
  8238. },
  8239. "type": "library",
  8240. "extra": {
  8241. "branch-alias": {
  8242. "dev-master": "2.7-dev"
  8243. }
  8244. },
  8245. "autoload": {
  8246. "psr-4": {
  8247. "Whoops\\": "src/Whoops/"
  8248. }
  8249. },
  8250. "notification-url": "https://packagist.org/downloads/",
  8251. "license": [
  8252. "MIT"
  8253. ],
  8254. "authors": [
  8255. {
  8256. "name": "Filipe Dobreira",
  8257. "homepage": "https://github.com/filp",
  8258. "role": "Developer"
  8259. }
  8260. ],
  8261. "description": "php error handling for cool kids",
  8262. "homepage": "https://filp.github.io/whoops/",
  8263. "keywords": [
  8264. "error",
  8265. "exception",
  8266. "handling",
  8267. "library",
  8268. "throwable",
  8269. "whoops"
  8270. ],
  8271. "support": {
  8272. "issues": "https://github.com/filp/whoops/issues",
  8273. "source": "https://github.com/filp/whoops/tree/2.14.4"
  8274. },
  8275. "funding": [
  8276. {
  8277. "url": "https://github.com/denis-sokolov",
  8278. "type": "github"
  8279. }
  8280. ],
  8281. "time": "2021-10-03T12:00:00+00:00"
  8282. },
  8283. {
  8284. "name": "fzaninotto/faker",
  8285. "version": "v1.9.2",
  8286. "source": {
  8287. "type": "git",
  8288. "url": "https://github.com/fzaninotto/Faker.git",
  8289. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8290. },
  8291. "dist": {
  8292. "type": "zip",
  8293. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8294. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8295. "shasum": "",
  8296. "mirrors": [
  8297. {
  8298. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8299. "preferred": true
  8300. }
  8301. ]
  8302. },
  8303. "require": {
  8304. "php": "^5.3.3 || ^7.0"
  8305. },
  8306. "require-dev": {
  8307. "ext-intl": "*",
  8308. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8309. "squizlabs/php_codesniffer": "^2.9.2"
  8310. },
  8311. "type": "library",
  8312. "extra": {
  8313. "branch-alias": {
  8314. "dev-master": "1.9-dev"
  8315. }
  8316. },
  8317. "autoload": {
  8318. "psr-4": {
  8319. "Faker\\": "src/Faker/"
  8320. }
  8321. },
  8322. "notification-url": "https://packagist.org/downloads/",
  8323. "license": [
  8324. "MIT"
  8325. ],
  8326. "authors": [
  8327. {
  8328. "name": "François Zaninotto"
  8329. }
  8330. ],
  8331. "description": "Faker is a PHP library that generates fake data for you.",
  8332. "keywords": [
  8333. "data",
  8334. "faker",
  8335. "fixtures"
  8336. ],
  8337. "support": {
  8338. "issues": "https://github.com/fzaninotto/Faker/issues",
  8339. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  8340. },
  8341. "abandoned": true,
  8342. "time": "2020-12-11T09:56:16+00:00"
  8343. },
  8344. {
  8345. "name": "hamcrest/hamcrest-php",
  8346. "version": "v2.0.1",
  8347. "source": {
  8348. "type": "git",
  8349. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8350. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8351. },
  8352. "dist": {
  8353. "type": "zip",
  8354. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8355. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8356. "shasum": "",
  8357. "mirrors": [
  8358. {
  8359. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8360. "preferred": true
  8361. }
  8362. ]
  8363. },
  8364. "require": {
  8365. "php": "^5.3|^7.0|^8.0"
  8366. },
  8367. "replace": {
  8368. "cordoval/hamcrest-php": "*",
  8369. "davedevelopment/hamcrest-php": "*",
  8370. "kodova/hamcrest-php": "*"
  8371. },
  8372. "require-dev": {
  8373. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8374. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8375. },
  8376. "type": "library",
  8377. "extra": {
  8378. "branch-alias": {
  8379. "dev-master": "2.1-dev"
  8380. }
  8381. },
  8382. "autoload": {
  8383. "classmap": [
  8384. "hamcrest"
  8385. ]
  8386. },
  8387. "notification-url": "https://packagist.org/downloads/",
  8388. "license": [
  8389. "BSD-3-Clause"
  8390. ],
  8391. "description": "This is the PHP port of Hamcrest Matchers",
  8392. "keywords": [
  8393. "test"
  8394. ],
  8395. "support": {
  8396. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8397. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8398. },
  8399. "time": "2020-07-09T08:09:16+00:00"
  8400. },
  8401. {
  8402. "name": "maximebf/debugbar",
  8403. "version": "v1.17.2",
  8404. "source": {
  8405. "type": "git",
  8406. "url": "https://github.com/maximebf/php-debugbar.git",
  8407. "reference": "3541f09f09c003c4a9ff7ddb0eb3361a7f14d418"
  8408. },
  8409. "dist": {
  8410. "type": "zip",
  8411. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/3541f09f09c003c4a9ff7ddb0eb3361a7f14d418",
  8412. "reference": "3541f09f09c003c4a9ff7ddb0eb3361a7f14d418",
  8413. "shasum": "",
  8414. "mirrors": [
  8415. {
  8416. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8417. "preferred": true
  8418. }
  8419. ]
  8420. },
  8421. "require": {
  8422. "php": "^7.1|^8",
  8423. "psr/log": "^1|^2|^3",
  8424. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8425. },
  8426. "require-dev": {
  8427. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8428. },
  8429. "suggest": {
  8430. "kriswallsmith/assetic": "The best way to manage assets",
  8431. "monolog/monolog": "Log using Monolog",
  8432. "predis/predis": "Redis storage"
  8433. },
  8434. "type": "library",
  8435. "extra": {
  8436. "branch-alias": {
  8437. "dev-master": "1.17-dev"
  8438. }
  8439. },
  8440. "autoload": {
  8441. "psr-4": {
  8442. "DebugBar\\": "src/DebugBar/"
  8443. }
  8444. },
  8445. "notification-url": "https://packagist.org/downloads/",
  8446. "license": [
  8447. "MIT"
  8448. ],
  8449. "authors": [
  8450. {
  8451. "name": "Maxime Bouroumeau-Fuseau",
  8452. "email": "maxime.bouroumeau@gmail.com",
  8453. "homepage": "http://maximebf.com"
  8454. },
  8455. {
  8456. "name": "Barry vd. Heuvel",
  8457. "email": "barryvdh@gmail.com"
  8458. }
  8459. ],
  8460. "description": "Debug bar in the browser for php application",
  8461. "homepage": "https://github.com/maximebf/php-debugbar",
  8462. "keywords": [
  8463. "debug",
  8464. "debugbar"
  8465. ],
  8466. "support": {
  8467. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8468. "source": "https://github.com/maximebf/php-debugbar/tree/v1.17.2"
  8469. },
  8470. "time": "2021-10-18T09:39:00+00:00"
  8471. },
  8472. {
  8473. "name": "mockery/mockery",
  8474. "version": "1.4.4",
  8475. "source": {
  8476. "type": "git",
  8477. "url": "https://github.com/mockery/mockery.git",
  8478. "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346"
  8479. },
  8480. "dist": {
  8481. "type": "zip",
  8482. "url": "https://api.github.com/repos/mockery/mockery/zipball/e01123a0e847d52d186c5eb4b9bf58b0c6d00346",
  8483. "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346",
  8484. "shasum": "",
  8485. "mirrors": [
  8486. {
  8487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8488. "preferred": true
  8489. }
  8490. ]
  8491. },
  8492. "require": {
  8493. "hamcrest/hamcrest-php": "^2.0.1",
  8494. "lib-pcre": ">=7.0",
  8495. "php": "^7.3 || ^8.0"
  8496. },
  8497. "conflict": {
  8498. "phpunit/phpunit": "<8.0"
  8499. },
  8500. "require-dev": {
  8501. "phpunit/phpunit": "^8.5 || ^9.3"
  8502. },
  8503. "type": "library",
  8504. "extra": {
  8505. "branch-alias": {
  8506. "dev-master": "1.4.x-dev"
  8507. }
  8508. },
  8509. "autoload": {
  8510. "psr-0": {
  8511. "Mockery": "library/"
  8512. }
  8513. },
  8514. "notification-url": "https://packagist.org/downloads/",
  8515. "license": [
  8516. "BSD-3-Clause"
  8517. ],
  8518. "authors": [
  8519. {
  8520. "name": "Pádraic Brady",
  8521. "email": "padraic.brady@gmail.com",
  8522. "homepage": "http://blog.astrumfutura.com"
  8523. },
  8524. {
  8525. "name": "Dave Marshall",
  8526. "email": "dave.marshall@atstsolutions.co.uk",
  8527. "homepage": "http://davedevelopment.co.uk"
  8528. }
  8529. ],
  8530. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8531. "homepage": "https://github.com/mockery/mockery",
  8532. "keywords": [
  8533. "BDD",
  8534. "TDD",
  8535. "library",
  8536. "mock",
  8537. "mock objects",
  8538. "mockery",
  8539. "stub",
  8540. "test",
  8541. "test double",
  8542. "testing"
  8543. ],
  8544. "support": {
  8545. "issues": "https://github.com/mockery/mockery/issues",
  8546. "source": "https://github.com/mockery/mockery/tree/1.4.4"
  8547. },
  8548. "time": "2021-09-13T15:28:59+00:00"
  8549. },
  8550. {
  8551. "name": "myclabs/deep-copy",
  8552. "version": "1.10.2",
  8553. "source": {
  8554. "type": "git",
  8555. "url": "https://github.com/myclabs/DeepCopy.git",
  8556. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8557. },
  8558. "dist": {
  8559. "type": "zip",
  8560. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8561. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8562. "shasum": "",
  8563. "mirrors": [
  8564. {
  8565. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8566. "preferred": true
  8567. }
  8568. ]
  8569. },
  8570. "require": {
  8571. "php": "^7.1 || ^8.0"
  8572. },
  8573. "replace": {
  8574. "myclabs/deep-copy": "self.version"
  8575. },
  8576. "require-dev": {
  8577. "doctrine/collections": "^1.0",
  8578. "doctrine/common": "^2.6",
  8579. "phpunit/phpunit": "^7.1"
  8580. },
  8581. "type": "library",
  8582. "autoload": {
  8583. "psr-4": {
  8584. "DeepCopy\\": "src/DeepCopy/"
  8585. },
  8586. "files": [
  8587. "src/DeepCopy/deep_copy.php"
  8588. ]
  8589. },
  8590. "notification-url": "https://packagist.org/downloads/",
  8591. "license": [
  8592. "MIT"
  8593. ],
  8594. "description": "Create deep copies (clones) of your objects",
  8595. "keywords": [
  8596. "clone",
  8597. "copy",
  8598. "duplicate",
  8599. "object",
  8600. "object graph"
  8601. ],
  8602. "support": {
  8603. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8604. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8605. },
  8606. "funding": [
  8607. {
  8608. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8609. "type": "tidelift"
  8610. }
  8611. ],
  8612. "time": "2020-11-13T09:40:50+00:00"
  8613. },
  8614. {
  8615. "name": "nunomaduro/collision",
  8616. "version": "v4.3.0",
  8617. "source": {
  8618. "type": "git",
  8619. "url": "https://github.com/nunomaduro/collision.git",
  8620. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8621. },
  8622. "dist": {
  8623. "type": "zip",
  8624. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8625. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8626. "shasum": "",
  8627. "mirrors": [
  8628. {
  8629. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8630. "preferred": true
  8631. }
  8632. ]
  8633. },
  8634. "require": {
  8635. "facade/ignition-contracts": "^1.0",
  8636. "filp/whoops": "^2.4",
  8637. "php": "^7.2.5 || ^8.0",
  8638. "symfony/console": "^5.0"
  8639. },
  8640. "require-dev": {
  8641. "facade/ignition": "^2.0",
  8642. "fideloper/proxy": "^4.2",
  8643. "friendsofphp/php-cs-fixer": "^2.16",
  8644. "fruitcake/laravel-cors": "^1.0",
  8645. "laravel/framework": "^7.0",
  8646. "laravel/tinker": "^2.0",
  8647. "nunomaduro/larastan": "^0.6",
  8648. "orchestra/testbench": "^5.0",
  8649. "phpstan/phpstan": "^0.12.3",
  8650. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8651. },
  8652. "type": "library",
  8653. "extra": {
  8654. "laravel": {
  8655. "providers": [
  8656. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8657. ]
  8658. }
  8659. },
  8660. "autoload": {
  8661. "psr-4": {
  8662. "NunoMaduro\\Collision\\": "src/"
  8663. }
  8664. },
  8665. "notification-url": "https://packagist.org/downloads/",
  8666. "license": [
  8667. "MIT"
  8668. ],
  8669. "authors": [
  8670. {
  8671. "name": "Nuno Maduro",
  8672. "email": "enunomaduro@gmail.com"
  8673. }
  8674. ],
  8675. "description": "Cli error handling for console/command-line PHP applications.",
  8676. "keywords": [
  8677. "artisan",
  8678. "cli",
  8679. "command-line",
  8680. "console",
  8681. "error",
  8682. "handling",
  8683. "laravel",
  8684. "laravel-zero",
  8685. "php",
  8686. "symfony"
  8687. ],
  8688. "support": {
  8689. "issues": "https://github.com/nunomaduro/collision/issues",
  8690. "source": "https://github.com/nunomaduro/collision"
  8691. },
  8692. "funding": [
  8693. {
  8694. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8695. "type": "custom"
  8696. },
  8697. {
  8698. "url": "https://github.com/nunomaduro",
  8699. "type": "github"
  8700. },
  8701. {
  8702. "url": "https://www.patreon.com/nunomaduro",
  8703. "type": "patreon"
  8704. }
  8705. ],
  8706. "time": "2020-10-29T15:12:23+00:00"
  8707. },
  8708. {
  8709. "name": "phar-io/manifest",
  8710. "version": "2.0.3",
  8711. "source": {
  8712. "type": "git",
  8713. "url": "https://github.com/phar-io/manifest.git",
  8714. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8715. },
  8716. "dist": {
  8717. "type": "zip",
  8718. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8719. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8720. "shasum": "",
  8721. "mirrors": [
  8722. {
  8723. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8724. "preferred": true
  8725. }
  8726. ]
  8727. },
  8728. "require": {
  8729. "ext-dom": "*",
  8730. "ext-phar": "*",
  8731. "ext-xmlwriter": "*",
  8732. "phar-io/version": "^3.0.1",
  8733. "php": "^7.2 || ^8.0"
  8734. },
  8735. "type": "library",
  8736. "extra": {
  8737. "branch-alias": {
  8738. "dev-master": "2.0.x-dev"
  8739. }
  8740. },
  8741. "autoload": {
  8742. "classmap": [
  8743. "src/"
  8744. ]
  8745. },
  8746. "notification-url": "https://packagist.org/downloads/",
  8747. "license": [
  8748. "BSD-3-Clause"
  8749. ],
  8750. "authors": [
  8751. {
  8752. "name": "Arne Blankerts",
  8753. "email": "arne@blankerts.de",
  8754. "role": "Developer"
  8755. },
  8756. {
  8757. "name": "Sebastian Heuer",
  8758. "email": "sebastian@phpeople.de",
  8759. "role": "Developer"
  8760. },
  8761. {
  8762. "name": "Sebastian Bergmann",
  8763. "email": "sebastian@phpunit.de",
  8764. "role": "Developer"
  8765. }
  8766. ],
  8767. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8768. "support": {
  8769. "issues": "https://github.com/phar-io/manifest/issues",
  8770. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8771. },
  8772. "time": "2021-07-20T11:28:43+00:00"
  8773. },
  8774. {
  8775. "name": "phar-io/version",
  8776. "version": "3.1.0",
  8777. "source": {
  8778. "type": "git",
  8779. "url": "https://github.com/phar-io/version.git",
  8780. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8781. },
  8782. "dist": {
  8783. "type": "zip",
  8784. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8785. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8786. "shasum": "",
  8787. "mirrors": [
  8788. {
  8789. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8790. "preferred": true
  8791. }
  8792. ]
  8793. },
  8794. "require": {
  8795. "php": "^7.2 || ^8.0"
  8796. },
  8797. "type": "library",
  8798. "autoload": {
  8799. "classmap": [
  8800. "src/"
  8801. ]
  8802. },
  8803. "notification-url": "https://packagist.org/downloads/",
  8804. "license": [
  8805. "BSD-3-Clause"
  8806. ],
  8807. "authors": [
  8808. {
  8809. "name": "Arne Blankerts",
  8810. "email": "arne@blankerts.de",
  8811. "role": "Developer"
  8812. },
  8813. {
  8814. "name": "Sebastian Heuer",
  8815. "email": "sebastian@phpeople.de",
  8816. "role": "Developer"
  8817. },
  8818. {
  8819. "name": "Sebastian Bergmann",
  8820. "email": "sebastian@phpunit.de",
  8821. "role": "Developer"
  8822. }
  8823. ],
  8824. "description": "Library for handling version information and constraints",
  8825. "support": {
  8826. "issues": "https://github.com/phar-io/version/issues",
  8827. "source": "https://github.com/phar-io/version/tree/3.1.0"
  8828. },
  8829. "time": "2021-02-23T14:00:09+00:00"
  8830. },
  8831. {
  8832. "name": "phpdocumentor/reflection-common",
  8833. "version": "2.2.0",
  8834. "source": {
  8835. "type": "git",
  8836. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8837. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8838. },
  8839. "dist": {
  8840. "type": "zip",
  8841. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8842. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8843. "shasum": "",
  8844. "mirrors": [
  8845. {
  8846. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8847. "preferred": true
  8848. }
  8849. ]
  8850. },
  8851. "require": {
  8852. "php": "^7.2 || ^8.0"
  8853. },
  8854. "type": "library",
  8855. "extra": {
  8856. "branch-alias": {
  8857. "dev-2.x": "2.x-dev"
  8858. }
  8859. },
  8860. "autoload": {
  8861. "psr-4": {
  8862. "phpDocumentor\\Reflection\\": "src/"
  8863. }
  8864. },
  8865. "notification-url": "https://packagist.org/downloads/",
  8866. "license": [
  8867. "MIT"
  8868. ],
  8869. "authors": [
  8870. {
  8871. "name": "Jaap van Otterdijk",
  8872. "email": "opensource@ijaap.nl"
  8873. }
  8874. ],
  8875. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8876. "homepage": "http://www.phpdoc.org",
  8877. "keywords": [
  8878. "FQSEN",
  8879. "phpDocumentor",
  8880. "phpdoc",
  8881. "reflection",
  8882. "static analysis"
  8883. ],
  8884. "support": {
  8885. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8886. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8887. },
  8888. "time": "2020-06-27T09:03:43+00:00"
  8889. },
  8890. {
  8891. "name": "phpdocumentor/reflection-docblock",
  8892. "version": "5.3.0",
  8893. "source": {
  8894. "type": "git",
  8895. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8896. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  8897. },
  8898. "dist": {
  8899. "type": "zip",
  8900. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  8901. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  8902. "shasum": "",
  8903. "mirrors": [
  8904. {
  8905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8906. "preferred": true
  8907. }
  8908. ]
  8909. },
  8910. "require": {
  8911. "ext-filter": "*",
  8912. "php": "^7.2 || ^8.0",
  8913. "phpdocumentor/reflection-common": "^2.2",
  8914. "phpdocumentor/type-resolver": "^1.3",
  8915. "webmozart/assert": "^1.9.1"
  8916. },
  8917. "require-dev": {
  8918. "mockery/mockery": "~1.3.2",
  8919. "psalm/phar": "^4.8"
  8920. },
  8921. "type": "library",
  8922. "extra": {
  8923. "branch-alias": {
  8924. "dev-master": "5.x-dev"
  8925. }
  8926. },
  8927. "autoload": {
  8928. "psr-4": {
  8929. "phpDocumentor\\Reflection\\": "src"
  8930. }
  8931. },
  8932. "notification-url": "https://packagist.org/downloads/",
  8933. "license": [
  8934. "MIT"
  8935. ],
  8936. "authors": [
  8937. {
  8938. "name": "Mike van Riel",
  8939. "email": "me@mikevanriel.com"
  8940. },
  8941. {
  8942. "name": "Jaap van Otterdijk",
  8943. "email": "account@ijaap.nl"
  8944. }
  8945. ],
  8946. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8947. "support": {
  8948. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  8949. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  8950. },
  8951. "time": "2021-10-19T17:43:47+00:00"
  8952. },
  8953. {
  8954. "name": "phpdocumentor/type-resolver",
  8955. "version": "1.5.1",
  8956. "source": {
  8957. "type": "git",
  8958. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8959. "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae"
  8960. },
  8961. "dist": {
  8962. "type": "zip",
  8963. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/a12f7e301eb7258bb68acd89d4aefa05c2906cae",
  8964. "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae",
  8965. "shasum": "",
  8966. "mirrors": [
  8967. {
  8968. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8969. "preferred": true
  8970. }
  8971. ]
  8972. },
  8973. "require": {
  8974. "php": "^7.2 || ^8.0",
  8975. "phpdocumentor/reflection-common": "^2.0"
  8976. },
  8977. "require-dev": {
  8978. "ext-tokenizer": "*",
  8979. "psalm/phar": "^4.8"
  8980. },
  8981. "type": "library",
  8982. "extra": {
  8983. "branch-alias": {
  8984. "dev-1.x": "1.x-dev"
  8985. }
  8986. },
  8987. "autoload": {
  8988. "psr-4": {
  8989. "phpDocumentor\\Reflection\\": "src"
  8990. }
  8991. },
  8992. "notification-url": "https://packagist.org/downloads/",
  8993. "license": [
  8994. "MIT"
  8995. ],
  8996. "authors": [
  8997. {
  8998. "name": "Mike van Riel",
  8999. "email": "me@mikevanriel.com"
  9000. }
  9001. ],
  9002. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9003. "support": {
  9004. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9005. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.5.1"
  9006. },
  9007. "time": "2021-10-02T14:08:47+00:00"
  9008. },
  9009. {
  9010. "name": "phpspec/prophecy",
  9011. "version": "1.14.0",
  9012. "source": {
  9013. "type": "git",
  9014. "url": "https://github.com/phpspec/prophecy.git",
  9015. "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e"
  9016. },
  9017. "dist": {
  9018. "type": "zip",
  9019. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e",
  9020. "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e",
  9021. "shasum": "",
  9022. "mirrors": [
  9023. {
  9024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9025. "preferred": true
  9026. }
  9027. ]
  9028. },
  9029. "require": {
  9030. "doctrine/instantiator": "^1.2",
  9031. "php": "^7.2 || ~8.0, <8.2",
  9032. "phpdocumentor/reflection-docblock": "^5.2",
  9033. "sebastian/comparator": "^3.0 || ^4.0",
  9034. "sebastian/recursion-context": "^3.0 || ^4.0"
  9035. },
  9036. "require-dev": {
  9037. "phpspec/phpspec": "^6.0 || ^7.0",
  9038. "phpunit/phpunit": "^8.0 || ^9.0"
  9039. },
  9040. "type": "library",
  9041. "extra": {
  9042. "branch-alias": {
  9043. "dev-master": "1.x-dev"
  9044. }
  9045. },
  9046. "autoload": {
  9047. "psr-4": {
  9048. "Prophecy\\": "src/Prophecy"
  9049. }
  9050. },
  9051. "notification-url": "https://packagist.org/downloads/",
  9052. "license": [
  9053. "MIT"
  9054. ],
  9055. "authors": [
  9056. {
  9057. "name": "Konstantin Kudryashov",
  9058. "email": "ever.zet@gmail.com",
  9059. "homepage": "http://everzet.com"
  9060. },
  9061. {
  9062. "name": "Marcello Duarte",
  9063. "email": "marcello.duarte@gmail.com"
  9064. }
  9065. ],
  9066. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9067. "homepage": "https://github.com/phpspec/prophecy",
  9068. "keywords": [
  9069. "Double",
  9070. "Dummy",
  9071. "fake",
  9072. "mock",
  9073. "spy",
  9074. "stub"
  9075. ],
  9076. "support": {
  9077. "issues": "https://github.com/phpspec/prophecy/issues",
  9078. "source": "https://github.com/phpspec/prophecy/tree/1.14.0"
  9079. },
  9080. "time": "2021-09-10T09:02:12+00:00"
  9081. },
  9082. {
  9083. "name": "phpunit/php-code-coverage",
  9084. "version": "7.0.15",
  9085. "source": {
  9086. "type": "git",
  9087. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9088. "reference": "819f92bba8b001d4363065928088de22f25a3a48"
  9089. },
  9090. "dist": {
  9091. "type": "zip",
  9092. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/819f92bba8b001d4363065928088de22f25a3a48",
  9093. "reference": "819f92bba8b001d4363065928088de22f25a3a48",
  9094. "shasum": "",
  9095. "mirrors": [
  9096. {
  9097. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9098. "preferred": true
  9099. }
  9100. ]
  9101. },
  9102. "require": {
  9103. "ext-dom": "*",
  9104. "ext-xmlwriter": "*",
  9105. "php": ">=7.2",
  9106. "phpunit/php-file-iterator": "^2.0.2",
  9107. "phpunit/php-text-template": "^1.2.1",
  9108. "phpunit/php-token-stream": "^3.1.3 || ^4.0",
  9109. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9110. "sebastian/environment": "^4.2.2",
  9111. "sebastian/version": "^2.0.1",
  9112. "theseer/tokenizer": "^1.1.3"
  9113. },
  9114. "require-dev": {
  9115. "phpunit/phpunit": "^8.2.2"
  9116. },
  9117. "suggest": {
  9118. "ext-xdebug": "^2.7.2"
  9119. },
  9120. "type": "library",
  9121. "extra": {
  9122. "branch-alias": {
  9123. "dev-master": "7.0-dev"
  9124. }
  9125. },
  9126. "autoload": {
  9127. "classmap": [
  9128. "src/"
  9129. ]
  9130. },
  9131. "notification-url": "https://packagist.org/downloads/",
  9132. "license": [
  9133. "BSD-3-Clause"
  9134. ],
  9135. "authors": [
  9136. {
  9137. "name": "Sebastian Bergmann",
  9138. "email": "sebastian@phpunit.de",
  9139. "role": "lead"
  9140. }
  9141. ],
  9142. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9143. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9144. "keywords": [
  9145. "coverage",
  9146. "testing",
  9147. "xunit"
  9148. ],
  9149. "support": {
  9150. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9151. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.15"
  9152. },
  9153. "funding": [
  9154. {
  9155. "url": "https://github.com/sebastianbergmann",
  9156. "type": "github"
  9157. }
  9158. ],
  9159. "time": "2021-07-26T12:20:09+00:00"
  9160. },
  9161. {
  9162. "name": "phpunit/php-file-iterator",
  9163. "version": "2.0.4",
  9164. "source": {
  9165. "type": "git",
  9166. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9167. "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05"
  9168. },
  9169. "dist": {
  9170. "type": "zip",
  9171. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/28af674ff175d0768a5a978e6de83f697d4a7f05",
  9172. "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05",
  9173. "shasum": "",
  9174. "mirrors": [
  9175. {
  9176. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9177. "preferred": true
  9178. }
  9179. ]
  9180. },
  9181. "require": {
  9182. "php": ">=7.1"
  9183. },
  9184. "require-dev": {
  9185. "phpunit/phpunit": "^8.5"
  9186. },
  9187. "type": "library",
  9188. "extra": {
  9189. "branch-alias": {
  9190. "dev-master": "2.0.x-dev"
  9191. }
  9192. },
  9193. "autoload": {
  9194. "classmap": [
  9195. "src/"
  9196. ]
  9197. },
  9198. "notification-url": "https://packagist.org/downloads/",
  9199. "license": [
  9200. "BSD-3-Clause"
  9201. ],
  9202. "authors": [
  9203. {
  9204. "name": "Sebastian Bergmann",
  9205. "email": "sebastian@phpunit.de",
  9206. "role": "lead"
  9207. }
  9208. ],
  9209. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9210. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9211. "keywords": [
  9212. "filesystem",
  9213. "iterator"
  9214. ],
  9215. "support": {
  9216. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9217. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.4"
  9218. },
  9219. "funding": [
  9220. {
  9221. "url": "https://github.com/sebastianbergmann",
  9222. "type": "github"
  9223. }
  9224. ],
  9225. "time": "2021-07-19T06:46:01+00:00"
  9226. },
  9227. {
  9228. "name": "phpunit/php-text-template",
  9229. "version": "1.2.1",
  9230. "source": {
  9231. "type": "git",
  9232. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9233. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9234. },
  9235. "dist": {
  9236. "type": "zip",
  9237. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9238. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9239. "shasum": "",
  9240. "mirrors": [
  9241. {
  9242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9243. "preferred": true
  9244. }
  9245. ]
  9246. },
  9247. "require": {
  9248. "php": ">=5.3.3"
  9249. },
  9250. "type": "library",
  9251. "autoload": {
  9252. "classmap": [
  9253. "src/"
  9254. ]
  9255. },
  9256. "notification-url": "https://packagist.org/downloads/",
  9257. "license": [
  9258. "BSD-3-Clause"
  9259. ],
  9260. "authors": [
  9261. {
  9262. "name": "Sebastian Bergmann",
  9263. "email": "sebastian@phpunit.de",
  9264. "role": "lead"
  9265. }
  9266. ],
  9267. "description": "Simple template engine.",
  9268. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9269. "keywords": [
  9270. "template"
  9271. ],
  9272. "support": {
  9273. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9274. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  9275. },
  9276. "time": "2015-06-21T13:50:34+00:00"
  9277. },
  9278. {
  9279. "name": "phpunit/php-timer",
  9280. "version": "2.1.3",
  9281. "source": {
  9282. "type": "git",
  9283. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9284. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  9285. },
  9286. "dist": {
  9287. "type": "zip",
  9288. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9289. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9290. "shasum": "",
  9291. "mirrors": [
  9292. {
  9293. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9294. "preferred": true
  9295. }
  9296. ]
  9297. },
  9298. "require": {
  9299. "php": ">=7.1"
  9300. },
  9301. "require-dev": {
  9302. "phpunit/phpunit": "^8.5"
  9303. },
  9304. "type": "library",
  9305. "extra": {
  9306. "branch-alias": {
  9307. "dev-master": "2.1-dev"
  9308. }
  9309. },
  9310. "autoload": {
  9311. "classmap": [
  9312. "src/"
  9313. ]
  9314. },
  9315. "notification-url": "https://packagist.org/downloads/",
  9316. "license": [
  9317. "BSD-3-Clause"
  9318. ],
  9319. "authors": [
  9320. {
  9321. "name": "Sebastian Bergmann",
  9322. "email": "sebastian@phpunit.de",
  9323. "role": "lead"
  9324. }
  9325. ],
  9326. "description": "Utility class for timing",
  9327. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9328. "keywords": [
  9329. "timer"
  9330. ],
  9331. "support": {
  9332. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9333. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  9334. },
  9335. "funding": [
  9336. {
  9337. "url": "https://github.com/sebastianbergmann",
  9338. "type": "github"
  9339. }
  9340. ],
  9341. "time": "2020-11-30T08:20:02+00:00"
  9342. },
  9343. {
  9344. "name": "phpunit/php-token-stream",
  9345. "version": "4.0.4",
  9346. "source": {
  9347. "type": "git",
  9348. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9349. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  9350. },
  9351. "dist": {
  9352. "type": "zip",
  9353. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9354. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9355. "shasum": "",
  9356. "mirrors": [
  9357. {
  9358. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9359. "preferred": true
  9360. }
  9361. ]
  9362. },
  9363. "require": {
  9364. "ext-tokenizer": "*",
  9365. "php": "^7.3 || ^8.0"
  9366. },
  9367. "require-dev": {
  9368. "phpunit/phpunit": "^9.0"
  9369. },
  9370. "type": "library",
  9371. "extra": {
  9372. "branch-alias": {
  9373. "dev-master": "4.0-dev"
  9374. }
  9375. },
  9376. "autoload": {
  9377. "classmap": [
  9378. "src/"
  9379. ]
  9380. },
  9381. "notification-url": "https://packagist.org/downloads/",
  9382. "license": [
  9383. "BSD-3-Clause"
  9384. ],
  9385. "authors": [
  9386. {
  9387. "name": "Sebastian Bergmann",
  9388. "email": "sebastian@phpunit.de"
  9389. }
  9390. ],
  9391. "description": "Wrapper around PHP's tokenizer extension.",
  9392. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9393. "keywords": [
  9394. "tokenizer"
  9395. ],
  9396. "support": {
  9397. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  9398. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  9399. },
  9400. "funding": [
  9401. {
  9402. "url": "https://github.com/sebastianbergmann",
  9403. "type": "github"
  9404. }
  9405. ],
  9406. "abandoned": true,
  9407. "time": "2020-08-04T08:28:15+00:00"
  9408. },
  9409. {
  9410. "name": "phpunit/phpunit",
  9411. "version": "8.5.21",
  9412. "source": {
  9413. "type": "git",
  9414. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9415. "reference": "50a58a60b85947b0bee4c8ecfe0f4bbdcf20e984"
  9416. },
  9417. "dist": {
  9418. "type": "zip",
  9419. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/50a58a60b85947b0bee4c8ecfe0f4bbdcf20e984",
  9420. "reference": "50a58a60b85947b0bee4c8ecfe0f4bbdcf20e984",
  9421. "shasum": "",
  9422. "mirrors": [
  9423. {
  9424. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9425. "preferred": true
  9426. }
  9427. ]
  9428. },
  9429. "require": {
  9430. "doctrine/instantiator": "^1.3.1",
  9431. "ext-dom": "*",
  9432. "ext-json": "*",
  9433. "ext-libxml": "*",
  9434. "ext-mbstring": "*",
  9435. "ext-xml": "*",
  9436. "ext-xmlwriter": "*",
  9437. "myclabs/deep-copy": "^1.10.0",
  9438. "phar-io/manifest": "^2.0.3",
  9439. "phar-io/version": "^3.0.2",
  9440. "php": ">=7.2",
  9441. "phpspec/prophecy": "^1.10.3",
  9442. "phpunit/php-code-coverage": "^7.0.12",
  9443. "phpunit/php-file-iterator": "^2.0.4",
  9444. "phpunit/php-text-template": "^1.2.1",
  9445. "phpunit/php-timer": "^2.1.2",
  9446. "sebastian/comparator": "^3.0.2",
  9447. "sebastian/diff": "^3.0.2",
  9448. "sebastian/environment": "^4.2.3",
  9449. "sebastian/exporter": "^3.1.2",
  9450. "sebastian/global-state": "^3.0.0",
  9451. "sebastian/object-enumerator": "^3.0.3",
  9452. "sebastian/resource-operations": "^2.0.1",
  9453. "sebastian/type": "^1.1.3",
  9454. "sebastian/version": "^2.0.1"
  9455. },
  9456. "require-dev": {
  9457. "ext-pdo": "*"
  9458. },
  9459. "suggest": {
  9460. "ext-soap": "*",
  9461. "ext-xdebug": "*",
  9462. "phpunit/php-invoker": "^2.0.0"
  9463. },
  9464. "bin": [
  9465. "phpunit"
  9466. ],
  9467. "type": "library",
  9468. "extra": {
  9469. "branch-alias": {
  9470. "dev-master": "8.5-dev"
  9471. }
  9472. },
  9473. "autoload": {
  9474. "classmap": [
  9475. "src/"
  9476. ]
  9477. },
  9478. "notification-url": "https://packagist.org/downloads/",
  9479. "license": [
  9480. "BSD-3-Clause"
  9481. ],
  9482. "authors": [
  9483. {
  9484. "name": "Sebastian Bergmann",
  9485. "email": "sebastian@phpunit.de",
  9486. "role": "lead"
  9487. }
  9488. ],
  9489. "description": "The PHP Unit Testing framework.",
  9490. "homepage": "https://phpunit.de/",
  9491. "keywords": [
  9492. "phpunit",
  9493. "testing",
  9494. "xunit"
  9495. ],
  9496. "support": {
  9497. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9498. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.21"
  9499. },
  9500. "funding": [
  9501. {
  9502. "url": "https://phpunit.de/donate.html",
  9503. "type": "custom"
  9504. },
  9505. {
  9506. "url": "https://github.com/sebastianbergmann",
  9507. "type": "github"
  9508. }
  9509. ],
  9510. "time": "2021-09-25T07:37:20+00:00"
  9511. },
  9512. {
  9513. "name": "sebastian/code-unit-reverse-lookup",
  9514. "version": "1.0.2",
  9515. "source": {
  9516. "type": "git",
  9517. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9518. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9519. },
  9520. "dist": {
  9521. "type": "zip",
  9522. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9523. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9524. "shasum": "",
  9525. "mirrors": [
  9526. {
  9527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9528. "preferred": true
  9529. }
  9530. ]
  9531. },
  9532. "require": {
  9533. "php": ">=5.6"
  9534. },
  9535. "require-dev": {
  9536. "phpunit/phpunit": "^8.5"
  9537. },
  9538. "type": "library",
  9539. "extra": {
  9540. "branch-alias": {
  9541. "dev-master": "1.0.x-dev"
  9542. }
  9543. },
  9544. "autoload": {
  9545. "classmap": [
  9546. "src/"
  9547. ]
  9548. },
  9549. "notification-url": "https://packagist.org/downloads/",
  9550. "license": [
  9551. "BSD-3-Clause"
  9552. ],
  9553. "authors": [
  9554. {
  9555. "name": "Sebastian Bergmann",
  9556. "email": "sebastian@phpunit.de"
  9557. }
  9558. ],
  9559. "description": "Looks up which function or method a line of code belongs to",
  9560. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9561. "support": {
  9562. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9563. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  9564. },
  9565. "funding": [
  9566. {
  9567. "url": "https://github.com/sebastianbergmann",
  9568. "type": "github"
  9569. }
  9570. ],
  9571. "time": "2020-11-30T08:15:22+00:00"
  9572. },
  9573. {
  9574. "name": "sebastian/comparator",
  9575. "version": "3.0.3",
  9576. "source": {
  9577. "type": "git",
  9578. "url": "https://github.com/sebastianbergmann/comparator.git",
  9579. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9580. },
  9581. "dist": {
  9582. "type": "zip",
  9583. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9584. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9585. "shasum": "",
  9586. "mirrors": [
  9587. {
  9588. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9589. "preferred": true
  9590. }
  9591. ]
  9592. },
  9593. "require": {
  9594. "php": ">=7.1",
  9595. "sebastian/diff": "^3.0",
  9596. "sebastian/exporter": "^3.1"
  9597. },
  9598. "require-dev": {
  9599. "phpunit/phpunit": "^8.5"
  9600. },
  9601. "type": "library",
  9602. "extra": {
  9603. "branch-alias": {
  9604. "dev-master": "3.0-dev"
  9605. }
  9606. },
  9607. "autoload": {
  9608. "classmap": [
  9609. "src/"
  9610. ]
  9611. },
  9612. "notification-url": "https://packagist.org/downloads/",
  9613. "license": [
  9614. "BSD-3-Clause"
  9615. ],
  9616. "authors": [
  9617. {
  9618. "name": "Sebastian Bergmann",
  9619. "email": "sebastian@phpunit.de"
  9620. },
  9621. {
  9622. "name": "Jeff Welch",
  9623. "email": "whatthejeff@gmail.com"
  9624. },
  9625. {
  9626. "name": "Volker Dusch",
  9627. "email": "github@wallbash.com"
  9628. },
  9629. {
  9630. "name": "Bernhard Schussek",
  9631. "email": "bschussek@2bepublished.at"
  9632. }
  9633. ],
  9634. "description": "Provides the functionality to compare PHP values for equality",
  9635. "homepage": "https://github.com/sebastianbergmann/comparator",
  9636. "keywords": [
  9637. "comparator",
  9638. "compare",
  9639. "equality"
  9640. ],
  9641. "support": {
  9642. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9643. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  9644. },
  9645. "funding": [
  9646. {
  9647. "url": "https://github.com/sebastianbergmann",
  9648. "type": "github"
  9649. }
  9650. ],
  9651. "time": "2020-11-30T08:04:30+00:00"
  9652. },
  9653. {
  9654. "name": "sebastian/diff",
  9655. "version": "3.0.3",
  9656. "source": {
  9657. "type": "git",
  9658. "url": "https://github.com/sebastianbergmann/diff.git",
  9659. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9660. },
  9661. "dist": {
  9662. "type": "zip",
  9663. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9664. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9665. "shasum": "",
  9666. "mirrors": [
  9667. {
  9668. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9669. "preferred": true
  9670. }
  9671. ]
  9672. },
  9673. "require": {
  9674. "php": ">=7.1"
  9675. },
  9676. "require-dev": {
  9677. "phpunit/phpunit": "^7.5 || ^8.0",
  9678. "symfony/process": "^2 || ^3.3 || ^4"
  9679. },
  9680. "type": "library",
  9681. "extra": {
  9682. "branch-alias": {
  9683. "dev-master": "3.0-dev"
  9684. }
  9685. },
  9686. "autoload": {
  9687. "classmap": [
  9688. "src/"
  9689. ]
  9690. },
  9691. "notification-url": "https://packagist.org/downloads/",
  9692. "license": [
  9693. "BSD-3-Clause"
  9694. ],
  9695. "authors": [
  9696. {
  9697. "name": "Sebastian Bergmann",
  9698. "email": "sebastian@phpunit.de"
  9699. },
  9700. {
  9701. "name": "Kore Nordmann",
  9702. "email": "mail@kore-nordmann.de"
  9703. }
  9704. ],
  9705. "description": "Diff implementation",
  9706. "homepage": "https://github.com/sebastianbergmann/diff",
  9707. "keywords": [
  9708. "diff",
  9709. "udiff",
  9710. "unidiff",
  9711. "unified diff"
  9712. ],
  9713. "support": {
  9714. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9715. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  9716. },
  9717. "funding": [
  9718. {
  9719. "url": "https://github.com/sebastianbergmann",
  9720. "type": "github"
  9721. }
  9722. ],
  9723. "time": "2020-11-30T07:59:04+00:00"
  9724. },
  9725. {
  9726. "name": "sebastian/environment",
  9727. "version": "4.2.4",
  9728. "source": {
  9729. "type": "git",
  9730. "url": "https://github.com/sebastianbergmann/environment.git",
  9731. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9732. },
  9733. "dist": {
  9734. "type": "zip",
  9735. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9736. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9737. "shasum": "",
  9738. "mirrors": [
  9739. {
  9740. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9741. "preferred": true
  9742. }
  9743. ]
  9744. },
  9745. "require": {
  9746. "php": ">=7.1"
  9747. },
  9748. "require-dev": {
  9749. "phpunit/phpunit": "^7.5"
  9750. },
  9751. "suggest": {
  9752. "ext-posix": "*"
  9753. },
  9754. "type": "library",
  9755. "extra": {
  9756. "branch-alias": {
  9757. "dev-master": "4.2-dev"
  9758. }
  9759. },
  9760. "autoload": {
  9761. "classmap": [
  9762. "src/"
  9763. ]
  9764. },
  9765. "notification-url": "https://packagist.org/downloads/",
  9766. "license": [
  9767. "BSD-3-Clause"
  9768. ],
  9769. "authors": [
  9770. {
  9771. "name": "Sebastian Bergmann",
  9772. "email": "sebastian@phpunit.de"
  9773. }
  9774. ],
  9775. "description": "Provides functionality to handle HHVM/PHP environments",
  9776. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9777. "keywords": [
  9778. "Xdebug",
  9779. "environment",
  9780. "hhvm"
  9781. ],
  9782. "support": {
  9783. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9784. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  9785. },
  9786. "funding": [
  9787. {
  9788. "url": "https://github.com/sebastianbergmann",
  9789. "type": "github"
  9790. }
  9791. ],
  9792. "time": "2020-11-30T07:53:42+00:00"
  9793. },
  9794. {
  9795. "name": "sebastian/exporter",
  9796. "version": "3.1.3",
  9797. "source": {
  9798. "type": "git",
  9799. "url": "https://github.com/sebastianbergmann/exporter.git",
  9800. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  9801. },
  9802. "dist": {
  9803. "type": "zip",
  9804. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  9805. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  9806. "shasum": "",
  9807. "mirrors": [
  9808. {
  9809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9810. "preferred": true
  9811. }
  9812. ]
  9813. },
  9814. "require": {
  9815. "php": ">=7.0",
  9816. "sebastian/recursion-context": "^3.0"
  9817. },
  9818. "require-dev": {
  9819. "ext-mbstring": "*",
  9820. "phpunit/phpunit": "^6.0"
  9821. },
  9822. "type": "library",
  9823. "extra": {
  9824. "branch-alias": {
  9825. "dev-master": "3.1.x-dev"
  9826. }
  9827. },
  9828. "autoload": {
  9829. "classmap": [
  9830. "src/"
  9831. ]
  9832. },
  9833. "notification-url": "https://packagist.org/downloads/",
  9834. "license": [
  9835. "BSD-3-Clause"
  9836. ],
  9837. "authors": [
  9838. {
  9839. "name": "Sebastian Bergmann",
  9840. "email": "sebastian@phpunit.de"
  9841. },
  9842. {
  9843. "name": "Jeff Welch",
  9844. "email": "whatthejeff@gmail.com"
  9845. },
  9846. {
  9847. "name": "Volker Dusch",
  9848. "email": "github@wallbash.com"
  9849. },
  9850. {
  9851. "name": "Adam Harvey",
  9852. "email": "aharvey@php.net"
  9853. },
  9854. {
  9855. "name": "Bernhard Schussek",
  9856. "email": "bschussek@gmail.com"
  9857. }
  9858. ],
  9859. "description": "Provides the functionality to export PHP variables for visualization",
  9860. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9861. "keywords": [
  9862. "export",
  9863. "exporter"
  9864. ],
  9865. "support": {
  9866. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9867. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  9868. },
  9869. "funding": [
  9870. {
  9871. "url": "https://github.com/sebastianbergmann",
  9872. "type": "github"
  9873. }
  9874. ],
  9875. "time": "2020-11-30T07:47:53+00:00"
  9876. },
  9877. {
  9878. "name": "sebastian/global-state",
  9879. "version": "3.0.1",
  9880. "source": {
  9881. "type": "git",
  9882. "url": "https://github.com/sebastianbergmann/global-state.git",
  9883. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9884. },
  9885. "dist": {
  9886. "type": "zip",
  9887. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9888. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9889. "shasum": "",
  9890. "mirrors": [
  9891. {
  9892. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9893. "preferred": true
  9894. }
  9895. ]
  9896. },
  9897. "require": {
  9898. "php": ">=7.2",
  9899. "sebastian/object-reflector": "^1.1.1",
  9900. "sebastian/recursion-context": "^3.0"
  9901. },
  9902. "require-dev": {
  9903. "ext-dom": "*",
  9904. "phpunit/phpunit": "^8.0"
  9905. },
  9906. "suggest": {
  9907. "ext-uopz": "*"
  9908. },
  9909. "type": "library",
  9910. "extra": {
  9911. "branch-alias": {
  9912. "dev-master": "3.0-dev"
  9913. }
  9914. },
  9915. "autoload": {
  9916. "classmap": [
  9917. "src/"
  9918. ]
  9919. },
  9920. "notification-url": "https://packagist.org/downloads/",
  9921. "license": [
  9922. "BSD-3-Clause"
  9923. ],
  9924. "authors": [
  9925. {
  9926. "name": "Sebastian Bergmann",
  9927. "email": "sebastian@phpunit.de"
  9928. }
  9929. ],
  9930. "description": "Snapshotting of global state",
  9931. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9932. "keywords": [
  9933. "global state"
  9934. ],
  9935. "support": {
  9936. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9937. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  9938. },
  9939. "funding": [
  9940. {
  9941. "url": "https://github.com/sebastianbergmann",
  9942. "type": "github"
  9943. }
  9944. ],
  9945. "time": "2020-11-30T07:43:24+00:00"
  9946. },
  9947. {
  9948. "name": "sebastian/object-enumerator",
  9949. "version": "3.0.4",
  9950. "source": {
  9951. "type": "git",
  9952. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9953. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9954. },
  9955. "dist": {
  9956. "type": "zip",
  9957. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9958. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9959. "shasum": "",
  9960. "mirrors": [
  9961. {
  9962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9963. "preferred": true
  9964. }
  9965. ]
  9966. },
  9967. "require": {
  9968. "php": ">=7.0",
  9969. "sebastian/object-reflector": "^1.1.1",
  9970. "sebastian/recursion-context": "^3.0"
  9971. },
  9972. "require-dev": {
  9973. "phpunit/phpunit": "^6.0"
  9974. },
  9975. "type": "library",
  9976. "extra": {
  9977. "branch-alias": {
  9978. "dev-master": "3.0.x-dev"
  9979. }
  9980. },
  9981. "autoload": {
  9982. "classmap": [
  9983. "src/"
  9984. ]
  9985. },
  9986. "notification-url": "https://packagist.org/downloads/",
  9987. "license": [
  9988. "BSD-3-Clause"
  9989. ],
  9990. "authors": [
  9991. {
  9992. "name": "Sebastian Bergmann",
  9993. "email": "sebastian@phpunit.de"
  9994. }
  9995. ],
  9996. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9997. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9998. "support": {
  9999. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10000. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  10001. },
  10002. "funding": [
  10003. {
  10004. "url": "https://github.com/sebastianbergmann",
  10005. "type": "github"
  10006. }
  10007. ],
  10008. "time": "2020-11-30T07:40:27+00:00"
  10009. },
  10010. {
  10011. "name": "sebastian/object-reflector",
  10012. "version": "1.1.2",
  10013. "source": {
  10014. "type": "git",
  10015. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10016. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  10017. },
  10018. "dist": {
  10019. "type": "zip",
  10020. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  10021. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  10022. "shasum": "",
  10023. "mirrors": [
  10024. {
  10025. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10026. "preferred": true
  10027. }
  10028. ]
  10029. },
  10030. "require": {
  10031. "php": ">=7.0"
  10032. },
  10033. "require-dev": {
  10034. "phpunit/phpunit": "^6.0"
  10035. },
  10036. "type": "library",
  10037. "extra": {
  10038. "branch-alias": {
  10039. "dev-master": "1.1-dev"
  10040. }
  10041. },
  10042. "autoload": {
  10043. "classmap": [
  10044. "src/"
  10045. ]
  10046. },
  10047. "notification-url": "https://packagist.org/downloads/",
  10048. "license": [
  10049. "BSD-3-Clause"
  10050. ],
  10051. "authors": [
  10052. {
  10053. "name": "Sebastian Bergmann",
  10054. "email": "sebastian@phpunit.de"
  10055. }
  10056. ],
  10057. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10058. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10059. "support": {
  10060. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10061. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  10062. },
  10063. "funding": [
  10064. {
  10065. "url": "https://github.com/sebastianbergmann",
  10066. "type": "github"
  10067. }
  10068. ],
  10069. "time": "2020-11-30T07:37:18+00:00"
  10070. },
  10071. {
  10072. "name": "sebastian/recursion-context",
  10073. "version": "3.0.1",
  10074. "source": {
  10075. "type": "git",
  10076. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10077. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  10078. },
  10079. "dist": {
  10080. "type": "zip",
  10081. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10082. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10083. "shasum": "",
  10084. "mirrors": [
  10085. {
  10086. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10087. "preferred": true
  10088. }
  10089. ]
  10090. },
  10091. "require": {
  10092. "php": ">=7.0"
  10093. },
  10094. "require-dev": {
  10095. "phpunit/phpunit": "^6.0"
  10096. },
  10097. "type": "library",
  10098. "extra": {
  10099. "branch-alias": {
  10100. "dev-master": "3.0.x-dev"
  10101. }
  10102. },
  10103. "autoload": {
  10104. "classmap": [
  10105. "src/"
  10106. ]
  10107. },
  10108. "notification-url": "https://packagist.org/downloads/",
  10109. "license": [
  10110. "BSD-3-Clause"
  10111. ],
  10112. "authors": [
  10113. {
  10114. "name": "Sebastian Bergmann",
  10115. "email": "sebastian@phpunit.de"
  10116. },
  10117. {
  10118. "name": "Jeff Welch",
  10119. "email": "whatthejeff@gmail.com"
  10120. },
  10121. {
  10122. "name": "Adam Harvey",
  10123. "email": "aharvey@php.net"
  10124. }
  10125. ],
  10126. "description": "Provides functionality to recursively process PHP variables",
  10127. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10128. "support": {
  10129. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10130. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  10131. },
  10132. "funding": [
  10133. {
  10134. "url": "https://github.com/sebastianbergmann",
  10135. "type": "github"
  10136. }
  10137. ],
  10138. "time": "2020-11-30T07:34:24+00:00"
  10139. },
  10140. {
  10141. "name": "sebastian/resource-operations",
  10142. "version": "2.0.2",
  10143. "source": {
  10144. "type": "git",
  10145. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10146. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  10147. },
  10148. "dist": {
  10149. "type": "zip",
  10150. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10151. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10152. "shasum": "",
  10153. "mirrors": [
  10154. {
  10155. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10156. "preferred": true
  10157. }
  10158. ]
  10159. },
  10160. "require": {
  10161. "php": ">=7.1"
  10162. },
  10163. "type": "library",
  10164. "extra": {
  10165. "branch-alias": {
  10166. "dev-master": "2.0-dev"
  10167. }
  10168. },
  10169. "autoload": {
  10170. "classmap": [
  10171. "src/"
  10172. ]
  10173. },
  10174. "notification-url": "https://packagist.org/downloads/",
  10175. "license": [
  10176. "BSD-3-Clause"
  10177. ],
  10178. "authors": [
  10179. {
  10180. "name": "Sebastian Bergmann",
  10181. "email": "sebastian@phpunit.de"
  10182. }
  10183. ],
  10184. "description": "Provides a list of PHP built-in functions that operate on resources",
  10185. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10186. "support": {
  10187. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10188. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  10189. },
  10190. "funding": [
  10191. {
  10192. "url": "https://github.com/sebastianbergmann",
  10193. "type": "github"
  10194. }
  10195. ],
  10196. "time": "2020-11-30T07:30:19+00:00"
  10197. },
  10198. {
  10199. "name": "sebastian/type",
  10200. "version": "1.1.4",
  10201. "source": {
  10202. "type": "git",
  10203. "url": "https://github.com/sebastianbergmann/type.git",
  10204. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  10205. },
  10206. "dist": {
  10207. "type": "zip",
  10208. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10209. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10210. "shasum": "",
  10211. "mirrors": [
  10212. {
  10213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10214. "preferred": true
  10215. }
  10216. ]
  10217. },
  10218. "require": {
  10219. "php": ">=7.2"
  10220. },
  10221. "require-dev": {
  10222. "phpunit/phpunit": "^8.2"
  10223. },
  10224. "type": "library",
  10225. "extra": {
  10226. "branch-alias": {
  10227. "dev-master": "1.1-dev"
  10228. }
  10229. },
  10230. "autoload": {
  10231. "classmap": [
  10232. "src/"
  10233. ]
  10234. },
  10235. "notification-url": "https://packagist.org/downloads/",
  10236. "license": [
  10237. "BSD-3-Clause"
  10238. ],
  10239. "authors": [
  10240. {
  10241. "name": "Sebastian Bergmann",
  10242. "email": "sebastian@phpunit.de",
  10243. "role": "lead"
  10244. }
  10245. ],
  10246. "description": "Collection of value objects that represent the types of the PHP type system",
  10247. "homepage": "https://github.com/sebastianbergmann/type",
  10248. "support": {
  10249. "issues": "https://github.com/sebastianbergmann/type/issues",
  10250. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  10251. },
  10252. "funding": [
  10253. {
  10254. "url": "https://github.com/sebastianbergmann",
  10255. "type": "github"
  10256. }
  10257. ],
  10258. "time": "2020-11-30T07:25:11+00:00"
  10259. },
  10260. {
  10261. "name": "sebastian/version",
  10262. "version": "2.0.1",
  10263. "source": {
  10264. "type": "git",
  10265. "url": "https://github.com/sebastianbergmann/version.git",
  10266. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10267. },
  10268. "dist": {
  10269. "type": "zip",
  10270. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10271. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10272. "shasum": "",
  10273. "mirrors": [
  10274. {
  10275. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10276. "preferred": true
  10277. }
  10278. ]
  10279. },
  10280. "require": {
  10281. "php": ">=5.6"
  10282. },
  10283. "type": "library",
  10284. "extra": {
  10285. "branch-alias": {
  10286. "dev-master": "2.0.x-dev"
  10287. }
  10288. },
  10289. "autoload": {
  10290. "classmap": [
  10291. "src/"
  10292. ]
  10293. },
  10294. "notification-url": "https://packagist.org/downloads/",
  10295. "license": [
  10296. "BSD-3-Clause"
  10297. ],
  10298. "authors": [
  10299. {
  10300. "name": "Sebastian Bergmann",
  10301. "email": "sebastian@phpunit.de",
  10302. "role": "lead"
  10303. }
  10304. ],
  10305. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10306. "homepage": "https://github.com/sebastianbergmann/version",
  10307. "support": {
  10308. "issues": "https://github.com/sebastianbergmann/version/issues",
  10309. "source": "https://github.com/sebastianbergmann/version/tree/master"
  10310. },
  10311. "time": "2016-10-03T07:35:21+00:00"
  10312. },
  10313. {
  10314. "name": "symfony/debug",
  10315. "version": "v4.4.31",
  10316. "source": {
  10317. "type": "git",
  10318. "url": "https://github.com/symfony/debug.git",
  10319. "reference": "43ede438d4cb52cd589ae5dc070e9323866ba8e0"
  10320. },
  10321. "dist": {
  10322. "type": "zip",
  10323. "url": "https://api.github.com/repos/symfony/debug/zipball/43ede438d4cb52cd589ae5dc070e9323866ba8e0",
  10324. "reference": "43ede438d4cb52cd589ae5dc070e9323866ba8e0",
  10325. "shasum": "",
  10326. "mirrors": [
  10327. {
  10328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10329. "preferred": true
  10330. }
  10331. ]
  10332. },
  10333. "require": {
  10334. "php": ">=7.1.3",
  10335. "psr/log": "^1|^2|^3"
  10336. },
  10337. "conflict": {
  10338. "symfony/http-kernel": "<3.4"
  10339. },
  10340. "require-dev": {
  10341. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10342. },
  10343. "type": "library",
  10344. "autoload": {
  10345. "psr-4": {
  10346. "Symfony\\Component\\Debug\\": ""
  10347. },
  10348. "exclude-from-classmap": [
  10349. "/Tests/"
  10350. ]
  10351. },
  10352. "notification-url": "https://packagist.org/downloads/",
  10353. "license": [
  10354. "MIT"
  10355. ],
  10356. "authors": [
  10357. {
  10358. "name": "Fabien Potencier",
  10359. "email": "fabien@symfony.com"
  10360. },
  10361. {
  10362. "name": "Symfony Community",
  10363. "homepage": "https://symfony.com/contributors"
  10364. }
  10365. ],
  10366. "description": "Provides tools to ease debugging PHP code",
  10367. "homepage": "https://symfony.com",
  10368. "support": {
  10369. "source": "https://github.com/symfony/debug/tree/v4.4.31"
  10370. },
  10371. "funding": [
  10372. {
  10373. "url": "https://symfony.com/sponsor",
  10374. "type": "custom"
  10375. },
  10376. {
  10377. "url": "https://github.com/fabpot",
  10378. "type": "github"
  10379. },
  10380. {
  10381. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10382. "type": "tidelift"
  10383. }
  10384. ],
  10385. "time": "2021-09-24T13:30:14+00:00"
  10386. },
  10387. {
  10388. "name": "theseer/tokenizer",
  10389. "version": "1.2.1",
  10390. "source": {
  10391. "type": "git",
  10392. "url": "https://github.com/theseer/tokenizer.git",
  10393. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10394. },
  10395. "dist": {
  10396. "type": "zip",
  10397. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10398. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10399. "shasum": "",
  10400. "mirrors": [
  10401. {
  10402. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10403. "preferred": true
  10404. }
  10405. ]
  10406. },
  10407. "require": {
  10408. "ext-dom": "*",
  10409. "ext-tokenizer": "*",
  10410. "ext-xmlwriter": "*",
  10411. "php": "^7.2 || ^8.0"
  10412. },
  10413. "type": "library",
  10414. "autoload": {
  10415. "classmap": [
  10416. "src/"
  10417. ]
  10418. },
  10419. "notification-url": "https://packagist.org/downloads/",
  10420. "license": [
  10421. "BSD-3-Clause"
  10422. ],
  10423. "authors": [
  10424. {
  10425. "name": "Arne Blankerts",
  10426. "email": "arne@blankerts.de",
  10427. "role": "Developer"
  10428. }
  10429. ],
  10430. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10431. "support": {
  10432. "issues": "https://github.com/theseer/tokenizer/issues",
  10433. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10434. },
  10435. "funding": [
  10436. {
  10437. "url": "https://github.com/theseer",
  10438. "type": "github"
  10439. }
  10440. ],
  10441. "time": "2021-07-28T10:34:58+00:00"
  10442. },
  10443. {
  10444. "name": "webmozart/assert",
  10445. "version": "1.10.0",
  10446. "source": {
  10447. "type": "git",
  10448. "url": "https://github.com/webmozarts/assert.git",
  10449. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  10450. },
  10451. "dist": {
  10452. "type": "zip",
  10453. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  10454. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  10455. "shasum": "",
  10456. "mirrors": [
  10457. {
  10458. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10459. "preferred": true
  10460. }
  10461. ]
  10462. },
  10463. "require": {
  10464. "php": "^7.2 || ^8.0",
  10465. "symfony/polyfill-ctype": "^1.8"
  10466. },
  10467. "conflict": {
  10468. "phpstan/phpstan": "<0.12.20",
  10469. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10470. },
  10471. "require-dev": {
  10472. "phpunit/phpunit": "^8.5.13"
  10473. },
  10474. "type": "library",
  10475. "extra": {
  10476. "branch-alias": {
  10477. "dev-master": "1.10-dev"
  10478. }
  10479. },
  10480. "autoload": {
  10481. "psr-4": {
  10482. "Webmozart\\Assert\\": "src/"
  10483. }
  10484. },
  10485. "notification-url": "https://packagist.org/downloads/",
  10486. "license": [
  10487. "MIT"
  10488. ],
  10489. "authors": [
  10490. {
  10491. "name": "Bernhard Schussek",
  10492. "email": "bschussek@gmail.com"
  10493. }
  10494. ],
  10495. "description": "Assertions to validate method input/output with nice error messages.",
  10496. "keywords": [
  10497. "assert",
  10498. "check",
  10499. "validate"
  10500. ],
  10501. "support": {
  10502. "issues": "https://github.com/webmozarts/assert/issues",
  10503. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  10504. },
  10505. "time": "2021-03-09T10:59:23+00:00"
  10506. }
  10507. ],
  10508. "aliases": [],
  10509. "minimum-stability": "dev",
  10510. "stability-flags": [],
  10511. "prefer-stable": true,
  10512. "prefer-lowest": false,
  10513. "platform": {
  10514. "php": "^7.2.14",
  10515. "ext-bcmath": "*",
  10516. "ext-json": "*",
  10517. "ext-mbstring": "*",
  10518. "ext-openssl": "*",
  10519. "ext-pdo": "*",
  10520. "ext-oci8": "*"
  10521. },
  10522. "platform-dev": [],
  10523. "platform-overrides": {
  10524. "ext-pcntl": "7.2",
  10525. "ext-posix": "7.2"
  10526. },
  10527. "plugin-api-version": "2.1.0"
  10528. }