composer.lock 250 KB

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