composer.lock 221 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281
  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": "03f3dbb470b1979639080adb62e6734b",
  8. "packages": [
  9. {
  10. "name": "illuminate/collections",
  11. "version": "v10.44.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/illuminate/collections.git",
  15. "reference": "5cedaba39e331cffd73a01cf27ea83229fa11fba"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/illuminate/collections/zipball/5cedaba39e331cffd73a01cf27ea83229fa11fba",
  20. "reference": "5cedaba39e331cffd73a01cf27ea83229fa11fba",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "illuminate/conditionable": "^10.0",
  25. "illuminate/contracts": "^10.0",
  26. "illuminate/macroable": "^10.0",
  27. "php": "^8.1"
  28. },
  29. "suggest": {
  30. "symfony/var-dumper": "Required to use the dump method (^6.2)."
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "10.x-dev"
  36. }
  37. },
  38. "autoload": {
  39. "files": [
  40. "helpers.php"
  41. ],
  42. "psr-4": {
  43. "Illuminate\\Support\\": ""
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Taylor Otwell",
  53. "email": "taylor@laravel.com"
  54. }
  55. ],
  56. "description": "The Illuminate Collections package.",
  57. "homepage": "https://laravel.com",
  58. "support": {
  59. "issues": "https://github.com/laravel/framework/issues",
  60. "source": "https://github.com/laravel/framework"
  61. },
  62. "time": "2024-02-09T15:56:19+00:00"
  63. },
  64. {
  65. "name": "illuminate/conditionable",
  66. "version": "v10.44.0",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/illuminate/conditionable.git",
  70. "reference": "d0958e4741fc9d6f516a552060fd1b829a85e009"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/illuminate/conditionable/zipball/d0958e4741fc9d6f516a552060fd1b829a85e009",
  75. "reference": "d0958e4741fc9d6f516a552060fd1b829a85e009",
  76. "shasum": ""
  77. },
  78. "require": {
  79. "php": "^8.0.2"
  80. },
  81. "type": "library",
  82. "extra": {
  83. "branch-alias": {
  84. "dev-master": "10.x-dev"
  85. }
  86. },
  87. "autoload": {
  88. "psr-4": {
  89. "Illuminate\\Support\\": ""
  90. }
  91. },
  92. "notification-url": "https://packagist.org/downloads/",
  93. "license": [
  94. "MIT"
  95. ],
  96. "authors": [
  97. {
  98. "name": "Taylor Otwell",
  99. "email": "taylor@laravel.com"
  100. }
  101. ],
  102. "description": "The Illuminate Conditionable package.",
  103. "homepage": "https://laravel.com",
  104. "support": {
  105. "issues": "https://github.com/laravel/framework/issues",
  106. "source": "https://github.com/laravel/framework"
  107. },
  108. "time": "2023-02-03T08:06:17+00:00"
  109. },
  110. {
  111. "name": "illuminate/contracts",
  112. "version": "v10.44.0",
  113. "source": {
  114. "type": "git",
  115. "url": "https://github.com/illuminate/contracts.git",
  116. "reference": "8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac"
  117. },
  118. "dist": {
  119. "type": "zip",
  120. "url": "https://api.github.com/repos/illuminate/contracts/zipball/8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac",
  121. "reference": "8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac",
  122. "shasum": ""
  123. },
  124. "require": {
  125. "php": "^8.1",
  126. "psr/container": "^1.1.1|^2.0.1",
  127. "psr/simple-cache": "^1.0|^2.0|^3.0"
  128. },
  129. "type": "library",
  130. "extra": {
  131. "branch-alias": {
  132. "dev-master": "10.x-dev"
  133. }
  134. },
  135. "autoload": {
  136. "psr-4": {
  137. "Illuminate\\Contracts\\": ""
  138. }
  139. },
  140. "notification-url": "https://packagist.org/downloads/",
  141. "license": [
  142. "MIT"
  143. ],
  144. "authors": [
  145. {
  146. "name": "Taylor Otwell",
  147. "email": "taylor@laravel.com"
  148. }
  149. ],
  150. "description": "The Illuminate Contracts package.",
  151. "homepage": "https://laravel.com",
  152. "support": {
  153. "issues": "https://github.com/laravel/framework/issues",
  154. "source": "https://github.com/laravel/framework"
  155. },
  156. "time": "2024-01-15T18:52:32+00:00"
  157. },
  158. {
  159. "name": "illuminate/macroable",
  160. "version": "v10.44.0",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/illuminate/macroable.git",
  164. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/illuminate/macroable/zipball/dff667a46ac37b634dcf68909d9d41e94dc97c27",
  169. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27",
  170. "shasum": ""
  171. },
  172. "require": {
  173. "php": "^8.1"
  174. },
  175. "type": "library",
  176. "extra": {
  177. "branch-alias": {
  178. "dev-master": "10.x-dev"
  179. }
  180. },
  181. "autoload": {
  182. "psr-4": {
  183. "Illuminate\\Support\\": ""
  184. }
  185. },
  186. "notification-url": "https://packagist.org/downloads/",
  187. "license": [
  188. "MIT"
  189. ],
  190. "authors": [
  191. {
  192. "name": "Taylor Otwell",
  193. "email": "taylor@laravel.com"
  194. }
  195. ],
  196. "description": "The Illuminate Macroable package.",
  197. "homepage": "https://laravel.com",
  198. "support": {
  199. "issues": "https://github.com/laravel/framework/issues",
  200. "source": "https://github.com/laravel/framework"
  201. },
  202. "time": "2023-06-05T12:46:42+00:00"
  203. },
  204. {
  205. "name": "laravel/prompts",
  206. "version": "v0.1.15",
  207. "source": {
  208. "type": "git",
  209. "url": "https://github.com/laravel/prompts.git",
  210. "reference": "d814a27514d99b03c85aa42b22cfd946568636c1"
  211. },
  212. "dist": {
  213. "type": "zip",
  214. "url": "https://api.github.com/repos/laravel/prompts/zipball/d814a27514d99b03c85aa42b22cfd946568636c1",
  215. "reference": "d814a27514d99b03c85aa42b22cfd946568636c1",
  216. "shasum": ""
  217. },
  218. "require": {
  219. "ext-mbstring": "*",
  220. "illuminate/collections": "^10.0|^11.0",
  221. "php": "^8.1",
  222. "symfony/console": "^6.2|^7.0"
  223. },
  224. "conflict": {
  225. "illuminate/console": ">=10.17.0 <10.25.0",
  226. "laravel/framework": ">=10.17.0 <10.25.0"
  227. },
  228. "require-dev": {
  229. "mockery/mockery": "^1.5",
  230. "pestphp/pest": "^2.3",
  231. "phpstan/phpstan": "^1.11",
  232. "phpstan/phpstan-mockery": "^1.1"
  233. },
  234. "suggest": {
  235. "ext-pcntl": "Required for the spinner to be animated."
  236. },
  237. "type": "library",
  238. "extra": {
  239. "branch-alias": {
  240. "dev-main": "0.1.x-dev"
  241. }
  242. },
  243. "autoload": {
  244. "files": [
  245. "src/helpers.php"
  246. ],
  247. "psr-4": {
  248. "Laravel\\Prompts\\": "src/"
  249. }
  250. },
  251. "notification-url": "https://packagist.org/downloads/",
  252. "license": [
  253. "MIT"
  254. ],
  255. "support": {
  256. "issues": "https://github.com/laravel/prompts/issues",
  257. "source": "https://github.com/laravel/prompts/tree/v0.1.15"
  258. },
  259. "time": "2023-12-29T22:37:42+00:00"
  260. },
  261. {
  262. "name": "psr/container",
  263. "version": "2.0.2",
  264. "source": {
  265. "type": "git",
  266. "url": "https://github.com/php-fig/container.git",
  267. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  268. },
  269. "dist": {
  270. "type": "zip",
  271. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  272. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  273. "shasum": ""
  274. },
  275. "require": {
  276. "php": ">=7.4.0"
  277. },
  278. "type": "library",
  279. "extra": {
  280. "branch-alias": {
  281. "dev-master": "2.0.x-dev"
  282. }
  283. },
  284. "autoload": {
  285. "psr-4": {
  286. "Psr\\Container\\": "src/"
  287. }
  288. },
  289. "notification-url": "https://packagist.org/downloads/",
  290. "license": [
  291. "MIT"
  292. ],
  293. "authors": [
  294. {
  295. "name": "PHP-FIG",
  296. "homepage": "https://www.php-fig.org/"
  297. }
  298. ],
  299. "description": "Common Container Interface (PHP FIG PSR-11)",
  300. "homepage": "https://github.com/php-fig/container",
  301. "keywords": [
  302. "PSR-11",
  303. "container",
  304. "container-interface",
  305. "container-interop",
  306. "psr"
  307. ],
  308. "support": {
  309. "issues": "https://github.com/php-fig/container/issues",
  310. "source": "https://github.com/php-fig/container/tree/2.0.2"
  311. },
  312. "time": "2021-11-05T16:47:00+00:00"
  313. },
  314. {
  315. "name": "psr/log",
  316. "version": "3.0.0",
  317. "source": {
  318. "type": "git",
  319. "url": "https://github.com/php-fig/log.git",
  320. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  321. },
  322. "dist": {
  323. "type": "zip",
  324. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  325. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  326. "shasum": ""
  327. },
  328. "require": {
  329. "php": ">=8.0.0"
  330. },
  331. "type": "library",
  332. "extra": {
  333. "branch-alias": {
  334. "dev-master": "3.x-dev"
  335. }
  336. },
  337. "autoload": {
  338. "psr-4": {
  339. "Psr\\Log\\": "src"
  340. }
  341. },
  342. "notification-url": "https://packagist.org/downloads/",
  343. "license": [
  344. "MIT"
  345. ],
  346. "authors": [
  347. {
  348. "name": "PHP-FIG",
  349. "homepage": "https://www.php-fig.org/"
  350. }
  351. ],
  352. "description": "Common interface for logging libraries",
  353. "homepage": "https://github.com/php-fig/log",
  354. "keywords": [
  355. "log",
  356. "psr",
  357. "psr-3"
  358. ],
  359. "support": {
  360. "source": "https://github.com/php-fig/log/tree/3.0.0"
  361. },
  362. "time": "2021-07-14T16:46:02+00:00"
  363. },
  364. {
  365. "name": "psr/simple-cache",
  366. "version": "3.0.0",
  367. "source": {
  368. "type": "git",
  369. "url": "https://github.com/php-fig/simple-cache.git",
  370. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  371. },
  372. "dist": {
  373. "type": "zip",
  374. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  375. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  376. "shasum": ""
  377. },
  378. "require": {
  379. "php": ">=8.0.0"
  380. },
  381. "type": "library",
  382. "extra": {
  383. "branch-alias": {
  384. "dev-master": "3.0.x-dev"
  385. }
  386. },
  387. "autoload": {
  388. "psr-4": {
  389. "Psr\\SimpleCache\\": "src/"
  390. }
  391. },
  392. "notification-url": "https://packagist.org/downloads/",
  393. "license": [
  394. "MIT"
  395. ],
  396. "authors": [
  397. {
  398. "name": "PHP-FIG",
  399. "homepage": "https://www.php-fig.org/"
  400. }
  401. ],
  402. "description": "Common interfaces for simple caching",
  403. "keywords": [
  404. "cache",
  405. "caching",
  406. "psr",
  407. "psr-16",
  408. "simple-cache"
  409. ],
  410. "support": {
  411. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  412. },
  413. "time": "2021-10-29T13:26:27+00:00"
  414. },
  415. {
  416. "name": "symfony/console",
  417. "version": "v6.4.3",
  418. "source": {
  419. "type": "git",
  420. "url": "https://github.com/symfony/console.git",
  421. "reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e"
  422. },
  423. "dist": {
  424. "type": "zip",
  425. "url": "https://api.github.com/repos/symfony/console/zipball/2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e",
  426. "reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e",
  427. "shasum": ""
  428. },
  429. "require": {
  430. "php": ">=8.1",
  431. "symfony/deprecation-contracts": "^2.5|^3",
  432. "symfony/polyfill-mbstring": "~1.0",
  433. "symfony/service-contracts": "^2.5|^3",
  434. "symfony/string": "^5.4|^6.0|^7.0"
  435. },
  436. "conflict": {
  437. "symfony/dependency-injection": "<5.4",
  438. "symfony/dotenv": "<5.4",
  439. "symfony/event-dispatcher": "<5.4",
  440. "symfony/lock": "<5.4",
  441. "symfony/process": "<5.4"
  442. },
  443. "provide": {
  444. "psr/log-implementation": "1.0|2.0|3.0"
  445. },
  446. "require-dev": {
  447. "psr/log": "^1|^2|^3",
  448. "symfony/config": "^5.4|^6.0|^7.0",
  449. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  450. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  451. "symfony/http-foundation": "^6.4|^7.0",
  452. "symfony/http-kernel": "^6.4|^7.0",
  453. "symfony/lock": "^5.4|^6.0|^7.0",
  454. "symfony/messenger": "^5.4|^6.0|^7.0",
  455. "symfony/process": "^5.4|^6.0|^7.0",
  456. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  457. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  458. },
  459. "type": "library",
  460. "autoload": {
  461. "psr-4": {
  462. "Symfony\\Component\\Console\\": ""
  463. },
  464. "exclude-from-classmap": [
  465. "/Tests/"
  466. ]
  467. },
  468. "notification-url": "https://packagist.org/downloads/",
  469. "license": [
  470. "MIT"
  471. ],
  472. "authors": [
  473. {
  474. "name": "Fabien Potencier",
  475. "email": "fabien@symfony.com"
  476. },
  477. {
  478. "name": "Symfony Community",
  479. "homepage": "https://symfony.com/contributors"
  480. }
  481. ],
  482. "description": "Eases the creation of beautiful and testable command line interfaces",
  483. "homepage": "https://symfony.com",
  484. "keywords": [
  485. "cli",
  486. "command-line",
  487. "console",
  488. "terminal"
  489. ],
  490. "support": {
  491. "source": "https://github.com/symfony/console/tree/v6.4.3"
  492. },
  493. "funding": [
  494. {
  495. "url": "https://symfony.com/sponsor",
  496. "type": "custom"
  497. },
  498. {
  499. "url": "https://github.com/fabpot",
  500. "type": "github"
  501. },
  502. {
  503. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  504. "type": "tidelift"
  505. }
  506. ],
  507. "time": "2024-01-23T14:51:35+00:00"
  508. },
  509. {
  510. "name": "symfony/deprecation-contracts",
  511. "version": "v3.4.0",
  512. "source": {
  513. "type": "git",
  514. "url": "https://github.com/symfony/deprecation-contracts.git",
  515. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  516. },
  517. "dist": {
  518. "type": "zip",
  519. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  520. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  521. "shasum": ""
  522. },
  523. "require": {
  524. "php": ">=8.1"
  525. },
  526. "type": "library",
  527. "extra": {
  528. "branch-alias": {
  529. "dev-main": "3.4-dev"
  530. },
  531. "thanks": {
  532. "name": "symfony/contracts",
  533. "url": "https://github.com/symfony/contracts"
  534. }
  535. },
  536. "autoload": {
  537. "files": [
  538. "function.php"
  539. ]
  540. },
  541. "notification-url": "https://packagist.org/downloads/",
  542. "license": [
  543. "MIT"
  544. ],
  545. "authors": [
  546. {
  547. "name": "Nicolas Grekas",
  548. "email": "p@tchwork.com"
  549. },
  550. {
  551. "name": "Symfony Community",
  552. "homepage": "https://symfony.com/contributors"
  553. }
  554. ],
  555. "description": "A generic function and convention to trigger deprecation notices",
  556. "homepage": "https://symfony.com",
  557. "support": {
  558. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  559. },
  560. "funding": [
  561. {
  562. "url": "https://symfony.com/sponsor",
  563. "type": "custom"
  564. },
  565. {
  566. "url": "https://github.com/fabpot",
  567. "type": "github"
  568. },
  569. {
  570. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  571. "type": "tidelift"
  572. }
  573. ],
  574. "time": "2023-05-23T14:45:45+00:00"
  575. },
  576. {
  577. "name": "symfony/polyfill-ctype",
  578. "version": "v1.29.0",
  579. "source": {
  580. "type": "git",
  581. "url": "https://github.com/symfony/polyfill-ctype.git",
  582. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  583. },
  584. "dist": {
  585. "type": "zip",
  586. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  587. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  588. "shasum": ""
  589. },
  590. "require": {
  591. "php": ">=7.1"
  592. },
  593. "provide": {
  594. "ext-ctype": "*"
  595. },
  596. "suggest": {
  597. "ext-ctype": "For best performance"
  598. },
  599. "type": "library",
  600. "extra": {
  601. "thanks": {
  602. "name": "symfony/polyfill",
  603. "url": "https://github.com/symfony/polyfill"
  604. }
  605. },
  606. "autoload": {
  607. "files": [
  608. "bootstrap.php"
  609. ],
  610. "psr-4": {
  611. "Symfony\\Polyfill\\Ctype\\": ""
  612. }
  613. },
  614. "notification-url": "https://packagist.org/downloads/",
  615. "license": [
  616. "MIT"
  617. ],
  618. "authors": [
  619. {
  620. "name": "Gert de Pagter",
  621. "email": "BackEndTea@gmail.com"
  622. },
  623. {
  624. "name": "Symfony Community",
  625. "homepage": "https://symfony.com/contributors"
  626. }
  627. ],
  628. "description": "Symfony polyfill for ctype functions",
  629. "homepage": "https://symfony.com",
  630. "keywords": [
  631. "compatibility",
  632. "ctype",
  633. "polyfill",
  634. "portable"
  635. ],
  636. "support": {
  637. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  638. },
  639. "funding": [
  640. {
  641. "url": "https://symfony.com/sponsor",
  642. "type": "custom"
  643. },
  644. {
  645. "url": "https://github.com/fabpot",
  646. "type": "github"
  647. },
  648. {
  649. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  650. "type": "tidelift"
  651. }
  652. ],
  653. "time": "2024-01-29T20:11:03+00:00"
  654. },
  655. {
  656. "name": "symfony/polyfill-intl-grapheme",
  657. "version": "v1.29.0",
  658. "source": {
  659. "type": "git",
  660. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  661. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  662. },
  663. "dist": {
  664. "type": "zip",
  665. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  666. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  667. "shasum": ""
  668. },
  669. "require": {
  670. "php": ">=7.1"
  671. },
  672. "suggest": {
  673. "ext-intl": "For best performance"
  674. },
  675. "type": "library",
  676. "extra": {
  677. "thanks": {
  678. "name": "symfony/polyfill",
  679. "url": "https://github.com/symfony/polyfill"
  680. }
  681. },
  682. "autoload": {
  683. "files": [
  684. "bootstrap.php"
  685. ],
  686. "psr-4": {
  687. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  688. }
  689. },
  690. "notification-url": "https://packagist.org/downloads/",
  691. "license": [
  692. "MIT"
  693. ],
  694. "authors": [
  695. {
  696. "name": "Nicolas Grekas",
  697. "email": "p@tchwork.com"
  698. },
  699. {
  700. "name": "Symfony Community",
  701. "homepage": "https://symfony.com/contributors"
  702. }
  703. ],
  704. "description": "Symfony polyfill for intl's grapheme_* functions",
  705. "homepage": "https://symfony.com",
  706. "keywords": [
  707. "compatibility",
  708. "grapheme",
  709. "intl",
  710. "polyfill",
  711. "portable",
  712. "shim"
  713. ],
  714. "support": {
  715. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  716. },
  717. "funding": [
  718. {
  719. "url": "https://symfony.com/sponsor",
  720. "type": "custom"
  721. },
  722. {
  723. "url": "https://github.com/fabpot",
  724. "type": "github"
  725. },
  726. {
  727. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  728. "type": "tidelift"
  729. }
  730. ],
  731. "time": "2024-01-29T20:11:03+00:00"
  732. },
  733. {
  734. "name": "symfony/polyfill-intl-normalizer",
  735. "version": "v1.29.0",
  736. "source": {
  737. "type": "git",
  738. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  739. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  740. },
  741. "dist": {
  742. "type": "zip",
  743. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  744. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  745. "shasum": ""
  746. },
  747. "require": {
  748. "php": ">=7.1"
  749. },
  750. "suggest": {
  751. "ext-intl": "For best performance"
  752. },
  753. "type": "library",
  754. "extra": {
  755. "thanks": {
  756. "name": "symfony/polyfill",
  757. "url": "https://github.com/symfony/polyfill"
  758. }
  759. },
  760. "autoload": {
  761. "files": [
  762. "bootstrap.php"
  763. ],
  764. "psr-4": {
  765. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  766. },
  767. "classmap": [
  768. "Resources/stubs"
  769. ]
  770. },
  771. "notification-url": "https://packagist.org/downloads/",
  772. "license": [
  773. "MIT"
  774. ],
  775. "authors": [
  776. {
  777. "name": "Nicolas Grekas",
  778. "email": "p@tchwork.com"
  779. },
  780. {
  781. "name": "Symfony Community",
  782. "homepage": "https://symfony.com/contributors"
  783. }
  784. ],
  785. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  786. "homepage": "https://symfony.com",
  787. "keywords": [
  788. "compatibility",
  789. "intl",
  790. "normalizer",
  791. "polyfill",
  792. "portable",
  793. "shim"
  794. ],
  795. "support": {
  796. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  797. },
  798. "funding": [
  799. {
  800. "url": "https://symfony.com/sponsor",
  801. "type": "custom"
  802. },
  803. {
  804. "url": "https://github.com/fabpot",
  805. "type": "github"
  806. },
  807. {
  808. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  809. "type": "tidelift"
  810. }
  811. ],
  812. "time": "2024-01-29T20:11:03+00:00"
  813. },
  814. {
  815. "name": "symfony/polyfill-mbstring",
  816. "version": "v1.29.0",
  817. "source": {
  818. "type": "git",
  819. "url": "https://github.com/symfony/polyfill-mbstring.git",
  820. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  821. },
  822. "dist": {
  823. "type": "zip",
  824. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  825. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  826. "shasum": ""
  827. },
  828. "require": {
  829. "php": ">=7.1"
  830. },
  831. "provide": {
  832. "ext-mbstring": "*"
  833. },
  834. "suggest": {
  835. "ext-mbstring": "For best performance"
  836. },
  837. "type": "library",
  838. "extra": {
  839. "thanks": {
  840. "name": "symfony/polyfill",
  841. "url": "https://github.com/symfony/polyfill"
  842. }
  843. },
  844. "autoload": {
  845. "files": [
  846. "bootstrap.php"
  847. ],
  848. "psr-4": {
  849. "Symfony\\Polyfill\\Mbstring\\": ""
  850. }
  851. },
  852. "notification-url": "https://packagist.org/downloads/",
  853. "license": [
  854. "MIT"
  855. ],
  856. "authors": [
  857. {
  858. "name": "Nicolas Grekas",
  859. "email": "p@tchwork.com"
  860. },
  861. {
  862. "name": "Symfony Community",
  863. "homepage": "https://symfony.com/contributors"
  864. }
  865. ],
  866. "description": "Symfony polyfill for the Mbstring extension",
  867. "homepage": "https://symfony.com",
  868. "keywords": [
  869. "compatibility",
  870. "mbstring",
  871. "polyfill",
  872. "portable",
  873. "shim"
  874. ],
  875. "support": {
  876. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  877. },
  878. "funding": [
  879. {
  880. "url": "https://symfony.com/sponsor",
  881. "type": "custom"
  882. },
  883. {
  884. "url": "https://github.com/fabpot",
  885. "type": "github"
  886. },
  887. {
  888. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  889. "type": "tidelift"
  890. }
  891. ],
  892. "time": "2024-01-29T20:11:03+00:00"
  893. },
  894. {
  895. "name": "symfony/service-contracts",
  896. "version": "v3.4.1",
  897. "source": {
  898. "type": "git",
  899. "url": "https://github.com/symfony/service-contracts.git",
  900. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0"
  901. },
  902. "dist": {
  903. "type": "zip",
  904. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0",
  905. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
  906. "shasum": ""
  907. },
  908. "require": {
  909. "php": ">=8.1",
  910. "psr/container": "^1.1|^2.0"
  911. },
  912. "conflict": {
  913. "ext-psr": "<1.1|>=2"
  914. },
  915. "type": "library",
  916. "extra": {
  917. "branch-alias": {
  918. "dev-main": "3.4-dev"
  919. },
  920. "thanks": {
  921. "name": "symfony/contracts",
  922. "url": "https://github.com/symfony/contracts"
  923. }
  924. },
  925. "autoload": {
  926. "psr-4": {
  927. "Symfony\\Contracts\\Service\\": ""
  928. },
  929. "exclude-from-classmap": [
  930. "/Test/"
  931. ]
  932. },
  933. "notification-url": "https://packagist.org/downloads/",
  934. "license": [
  935. "MIT"
  936. ],
  937. "authors": [
  938. {
  939. "name": "Nicolas Grekas",
  940. "email": "p@tchwork.com"
  941. },
  942. {
  943. "name": "Symfony Community",
  944. "homepage": "https://symfony.com/contributors"
  945. }
  946. ],
  947. "description": "Generic abstractions related to writing services",
  948. "homepage": "https://symfony.com",
  949. "keywords": [
  950. "abstractions",
  951. "contracts",
  952. "decoupling",
  953. "interfaces",
  954. "interoperability",
  955. "standards"
  956. ],
  957. "support": {
  958. "source": "https://github.com/symfony/service-contracts/tree/v3.4.1"
  959. },
  960. "funding": [
  961. {
  962. "url": "https://symfony.com/sponsor",
  963. "type": "custom"
  964. },
  965. {
  966. "url": "https://github.com/fabpot",
  967. "type": "github"
  968. },
  969. {
  970. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  971. "type": "tidelift"
  972. }
  973. ],
  974. "time": "2023-12-26T14:02:43+00:00"
  975. },
  976. {
  977. "name": "symfony/string",
  978. "version": "v6.4.3",
  979. "source": {
  980. "type": "git",
  981. "url": "https://github.com/symfony/string.git",
  982. "reference": "7a14736fb179876575464e4658fce0c304e8c15b"
  983. },
  984. "dist": {
  985. "type": "zip",
  986. "url": "https://api.github.com/repos/symfony/string/zipball/7a14736fb179876575464e4658fce0c304e8c15b",
  987. "reference": "7a14736fb179876575464e4658fce0c304e8c15b",
  988. "shasum": ""
  989. },
  990. "require": {
  991. "php": ">=8.1",
  992. "symfony/polyfill-ctype": "~1.8",
  993. "symfony/polyfill-intl-grapheme": "~1.0",
  994. "symfony/polyfill-intl-normalizer": "~1.0",
  995. "symfony/polyfill-mbstring": "~1.0"
  996. },
  997. "conflict": {
  998. "symfony/translation-contracts": "<2.5"
  999. },
  1000. "require-dev": {
  1001. "symfony/error-handler": "^5.4|^6.0|^7.0",
  1002. "symfony/http-client": "^5.4|^6.0|^7.0",
  1003. "symfony/intl": "^6.2|^7.0",
  1004. "symfony/translation-contracts": "^2.5|^3.0",
  1005. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  1006. },
  1007. "type": "library",
  1008. "autoload": {
  1009. "files": [
  1010. "Resources/functions.php"
  1011. ],
  1012. "psr-4": {
  1013. "Symfony\\Component\\String\\": ""
  1014. },
  1015. "exclude-from-classmap": [
  1016. "/Tests/"
  1017. ]
  1018. },
  1019. "notification-url": "https://packagist.org/downloads/",
  1020. "license": [
  1021. "MIT"
  1022. ],
  1023. "authors": [
  1024. {
  1025. "name": "Nicolas Grekas",
  1026. "email": "p@tchwork.com"
  1027. },
  1028. {
  1029. "name": "Symfony Community",
  1030. "homepage": "https://symfony.com/contributors"
  1031. }
  1032. ],
  1033. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  1034. "homepage": "https://symfony.com",
  1035. "keywords": [
  1036. "grapheme",
  1037. "i18n",
  1038. "string",
  1039. "unicode",
  1040. "utf-8",
  1041. "utf8"
  1042. ],
  1043. "support": {
  1044. "source": "https://github.com/symfony/string/tree/v6.4.3"
  1045. },
  1046. "funding": [
  1047. {
  1048. "url": "https://symfony.com/sponsor",
  1049. "type": "custom"
  1050. },
  1051. {
  1052. "url": "https://github.com/fabpot",
  1053. "type": "github"
  1054. },
  1055. {
  1056. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1057. "type": "tidelift"
  1058. }
  1059. ],
  1060. "time": "2024-01-25T09:26:29+00:00"
  1061. },
  1062. {
  1063. "name": "zhamao/logger",
  1064. "version": "1.1.1",
  1065. "source": {
  1066. "type": "git",
  1067. "url": "https://github.com/zhamao-robot/zhamao-logger.git",
  1068. "reference": "1b7e34349330a842887d816f0344aba996cfeec0"
  1069. },
  1070. "dist": {
  1071. "type": "zip",
  1072. "url": "https://api.github.com/repos/zhamao-robot/zhamao-logger/zipball/1b7e34349330a842887d816f0344aba996cfeec0",
  1073. "reference": "1b7e34349330a842887d816f0344aba996cfeec0",
  1074. "shasum": ""
  1075. },
  1076. "require": {
  1077. "php": "^7.2 || ^7.3 || ^7.4 || ^8.0 || ^8.1",
  1078. "psr/log": "^1 || ^2 || ^3",
  1079. "symfony/polyfill-mbstring": "^1.0"
  1080. },
  1081. "require-dev": {
  1082. "brainmaestro/composer-git-hooks": "^2.8",
  1083. "friendsofphp/php-cs-fixer": "^3.2",
  1084. "phpstan/phpstan": "^1.1",
  1085. "phpunit/phpunit": "^8.5 || ^9.0",
  1086. "roave/security-advisories": "dev-latest"
  1087. },
  1088. "suggest": {
  1089. "ext-mbstring": "Use C/C++ extension instead of polyfill will be more efficient"
  1090. },
  1091. "type": "library",
  1092. "extra": {
  1093. "hooks": {
  1094. "post-merge": "composer install",
  1095. "pre-commit": [
  1096. "echo committing as $(git config user.name)",
  1097. "composer cs-fix -- --diff"
  1098. ],
  1099. "pre-push": [
  1100. "composer cs-fix -- --dry-run --diff",
  1101. "composer analyse"
  1102. ]
  1103. }
  1104. },
  1105. "autoload": {
  1106. "psr-4": {
  1107. "ZM\\Logger\\": "src/ZM/Logger"
  1108. }
  1109. },
  1110. "notification-url": "https://packagist.org/downloads/",
  1111. "license": [
  1112. "Apache-2.0"
  1113. ],
  1114. "authors": [
  1115. {
  1116. "name": "jerry",
  1117. "email": "admin@zhamao.me"
  1118. },
  1119. {
  1120. "name": "sunxyw",
  1121. "email": "dev@sunxyw.xyz"
  1122. }
  1123. ],
  1124. "description": "Another Console Logger for CLI Applications",
  1125. "support": {
  1126. "issues": "https://github.com/zhamao-robot/zhamao-logger/issues",
  1127. "source": "https://github.com/zhamao-robot/zhamao-logger/tree/1.1.1"
  1128. },
  1129. "time": "2023-03-09T15:41:10+00:00"
  1130. }
  1131. ],
  1132. "packages-dev": [
  1133. {
  1134. "name": "amphp/amp",
  1135. "version": "v2.6.2",
  1136. "source": {
  1137. "type": "git",
  1138. "url": "https://github.com/amphp/amp.git",
  1139. "reference": "9d5100cebffa729aaffecd3ad25dc5aeea4f13bb"
  1140. },
  1141. "dist": {
  1142. "type": "zip",
  1143. "url": "https://api.github.com/repos/amphp/amp/zipball/9d5100cebffa729aaffecd3ad25dc5aeea4f13bb",
  1144. "reference": "9d5100cebffa729aaffecd3ad25dc5aeea4f13bb",
  1145. "shasum": ""
  1146. },
  1147. "require": {
  1148. "php": ">=7.1"
  1149. },
  1150. "require-dev": {
  1151. "amphp/php-cs-fixer-config": "dev-master",
  1152. "amphp/phpunit-util": "^1",
  1153. "ext-json": "*",
  1154. "jetbrains/phpstorm-stubs": "^2019.3",
  1155. "phpunit/phpunit": "^7 | ^8 | ^9",
  1156. "psalm/phar": "^3.11@dev",
  1157. "react/promise": "^2"
  1158. },
  1159. "type": "library",
  1160. "extra": {
  1161. "branch-alias": {
  1162. "dev-master": "2.x-dev"
  1163. }
  1164. },
  1165. "autoload": {
  1166. "files": [
  1167. "lib/functions.php",
  1168. "lib/Internal/functions.php"
  1169. ],
  1170. "psr-4": {
  1171. "Amp\\": "lib"
  1172. }
  1173. },
  1174. "notification-url": "https://packagist.org/downloads/",
  1175. "license": [
  1176. "MIT"
  1177. ],
  1178. "authors": [
  1179. {
  1180. "name": "Daniel Lowrey",
  1181. "email": "rdlowrey@php.net"
  1182. },
  1183. {
  1184. "name": "Aaron Piotrowski",
  1185. "email": "aaron@trowski.com"
  1186. },
  1187. {
  1188. "name": "Bob Weinand",
  1189. "email": "bobwei9@hotmail.com"
  1190. },
  1191. {
  1192. "name": "Niklas Keller",
  1193. "email": "me@kelunik.com"
  1194. }
  1195. ],
  1196. "description": "A non-blocking concurrency framework for PHP applications.",
  1197. "homepage": "https://amphp.org/amp",
  1198. "keywords": [
  1199. "async",
  1200. "asynchronous",
  1201. "awaitable",
  1202. "concurrency",
  1203. "event",
  1204. "event-loop",
  1205. "future",
  1206. "non-blocking",
  1207. "promise"
  1208. ],
  1209. "support": {
  1210. "irc": "irc://irc.freenode.org/amphp",
  1211. "issues": "https://github.com/amphp/amp/issues",
  1212. "source": "https://github.com/amphp/amp/tree/v2.6.2"
  1213. },
  1214. "funding": [
  1215. {
  1216. "url": "https://github.com/amphp",
  1217. "type": "github"
  1218. }
  1219. ],
  1220. "time": "2022-02-20T17:52:18+00:00"
  1221. },
  1222. {
  1223. "name": "amphp/byte-stream",
  1224. "version": "v1.8.1",
  1225. "source": {
  1226. "type": "git",
  1227. "url": "https://github.com/amphp/byte-stream.git",
  1228. "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd"
  1229. },
  1230. "dist": {
  1231. "type": "zip",
  1232. "url": "https://api.github.com/repos/amphp/byte-stream/zipball/acbd8002b3536485c997c4e019206b3f10ca15bd",
  1233. "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd",
  1234. "shasum": ""
  1235. },
  1236. "require": {
  1237. "amphp/amp": "^2",
  1238. "php": ">=7.1"
  1239. },
  1240. "require-dev": {
  1241. "amphp/php-cs-fixer-config": "dev-master",
  1242. "amphp/phpunit-util": "^1.4",
  1243. "friendsofphp/php-cs-fixer": "^2.3",
  1244. "jetbrains/phpstorm-stubs": "^2019.3",
  1245. "phpunit/phpunit": "^6 || ^7 || ^8",
  1246. "psalm/phar": "^3.11.4"
  1247. },
  1248. "type": "library",
  1249. "extra": {
  1250. "branch-alias": {
  1251. "dev-master": "1.x-dev"
  1252. }
  1253. },
  1254. "autoload": {
  1255. "files": [
  1256. "lib/functions.php"
  1257. ],
  1258. "psr-4": {
  1259. "Amp\\ByteStream\\": "lib"
  1260. }
  1261. },
  1262. "notification-url": "https://packagist.org/downloads/",
  1263. "license": [
  1264. "MIT"
  1265. ],
  1266. "authors": [
  1267. {
  1268. "name": "Aaron Piotrowski",
  1269. "email": "aaron@trowski.com"
  1270. },
  1271. {
  1272. "name": "Niklas Keller",
  1273. "email": "me@kelunik.com"
  1274. }
  1275. ],
  1276. "description": "A stream abstraction to make working with non-blocking I/O simple.",
  1277. "homepage": "http://amphp.org/byte-stream",
  1278. "keywords": [
  1279. "amp",
  1280. "amphp",
  1281. "async",
  1282. "io",
  1283. "non-blocking",
  1284. "stream"
  1285. ],
  1286. "support": {
  1287. "irc": "irc://irc.freenode.org/amphp",
  1288. "issues": "https://github.com/amphp/byte-stream/issues",
  1289. "source": "https://github.com/amphp/byte-stream/tree/v1.8.1"
  1290. },
  1291. "funding": [
  1292. {
  1293. "url": "https://github.com/amphp",
  1294. "type": "github"
  1295. }
  1296. ],
  1297. "time": "2021-03-30T17:13:30+00:00"
  1298. },
  1299. {
  1300. "name": "amphp/parallel",
  1301. "version": "v1.4.3",
  1302. "source": {
  1303. "type": "git",
  1304. "url": "https://github.com/amphp/parallel.git",
  1305. "reference": "3aac213ba7858566fd83d38ccb85b91b2d652cb0"
  1306. },
  1307. "dist": {
  1308. "type": "zip",
  1309. "url": "https://api.github.com/repos/amphp/parallel/zipball/3aac213ba7858566fd83d38ccb85b91b2d652cb0",
  1310. "reference": "3aac213ba7858566fd83d38ccb85b91b2d652cb0",
  1311. "shasum": ""
  1312. },
  1313. "require": {
  1314. "amphp/amp": "^2",
  1315. "amphp/byte-stream": "^1.6.1",
  1316. "amphp/parser": "^1",
  1317. "amphp/process": "^1",
  1318. "amphp/serialization": "^1",
  1319. "amphp/sync": "^1.0.1",
  1320. "php": ">=7.1"
  1321. },
  1322. "require-dev": {
  1323. "amphp/php-cs-fixer-config": "dev-master",
  1324. "amphp/phpunit-util": "^1.1",
  1325. "phpunit/phpunit": "^8 || ^7"
  1326. },
  1327. "type": "library",
  1328. "autoload": {
  1329. "files": [
  1330. "lib/Context/functions.php",
  1331. "lib/Sync/functions.php",
  1332. "lib/Worker/functions.php"
  1333. ],
  1334. "psr-4": {
  1335. "Amp\\Parallel\\": "lib"
  1336. }
  1337. },
  1338. "notification-url": "https://packagist.org/downloads/",
  1339. "license": [
  1340. "MIT"
  1341. ],
  1342. "authors": [
  1343. {
  1344. "name": "Aaron Piotrowski",
  1345. "email": "aaron@trowski.com"
  1346. },
  1347. {
  1348. "name": "Stephen Coakley",
  1349. "email": "me@stephencoakley.com"
  1350. }
  1351. ],
  1352. "description": "Parallel processing component for Amp.",
  1353. "homepage": "https://github.com/amphp/parallel",
  1354. "keywords": [
  1355. "async",
  1356. "asynchronous",
  1357. "concurrent",
  1358. "multi-processing",
  1359. "multi-threading"
  1360. ],
  1361. "support": {
  1362. "issues": "https://github.com/amphp/parallel/issues",
  1363. "source": "https://github.com/amphp/parallel/tree/v1.4.3"
  1364. },
  1365. "funding": [
  1366. {
  1367. "url": "https://github.com/amphp",
  1368. "type": "github"
  1369. }
  1370. ],
  1371. "time": "2023-03-23T08:04:23+00:00"
  1372. },
  1373. {
  1374. "name": "amphp/parallel-functions",
  1375. "version": "v1.1.0",
  1376. "source": {
  1377. "type": "git",
  1378. "url": "https://github.com/amphp/parallel-functions.git",
  1379. "reference": "04e92fcacfc921a56dfe12c23b3265e62593a7cb"
  1380. },
  1381. "dist": {
  1382. "type": "zip",
  1383. "url": "https://api.github.com/repos/amphp/parallel-functions/zipball/04e92fcacfc921a56dfe12c23b3265e62593a7cb",
  1384. "reference": "04e92fcacfc921a56dfe12c23b3265e62593a7cb",
  1385. "shasum": ""
  1386. },
  1387. "require": {
  1388. "amphp/amp": "^2.0.3",
  1389. "amphp/parallel": "^1.4",
  1390. "amphp/serialization": "^1.0",
  1391. "laravel/serializable-closure": "^1.0",
  1392. "php": ">=7.4"
  1393. },
  1394. "require-dev": {
  1395. "amphp/php-cs-fixer-config": "v2.x-dev",
  1396. "amphp/phpunit-util": "^2.0",
  1397. "phpunit/phpunit": "^9.5.11"
  1398. },
  1399. "type": "library",
  1400. "autoload": {
  1401. "files": [
  1402. "src/functions.php"
  1403. ],
  1404. "psr-4": {
  1405. "Amp\\ParallelFunctions\\": "src"
  1406. }
  1407. },
  1408. "notification-url": "https://packagist.org/downloads/",
  1409. "license": [
  1410. "MIT"
  1411. ],
  1412. "authors": [
  1413. {
  1414. "name": "Niklas Keller",
  1415. "email": "me@kelunik.com"
  1416. }
  1417. ],
  1418. "description": "Parallel processing made simple.",
  1419. "support": {
  1420. "issues": "https://github.com/amphp/parallel-functions/issues",
  1421. "source": "https://github.com/amphp/parallel-functions/tree/v1.1.0"
  1422. },
  1423. "funding": [
  1424. {
  1425. "url": "https://github.com/amphp",
  1426. "type": "github"
  1427. }
  1428. ],
  1429. "time": "2022-02-03T19:32:41+00:00"
  1430. },
  1431. {
  1432. "name": "amphp/parser",
  1433. "version": "v1.1.0",
  1434. "source": {
  1435. "type": "git",
  1436. "url": "https://github.com/amphp/parser.git",
  1437. "reference": "ff1de4144726c5dad5fab97f66692ebe8de3e151"
  1438. },
  1439. "dist": {
  1440. "type": "zip",
  1441. "url": "https://api.github.com/repos/amphp/parser/zipball/ff1de4144726c5dad5fab97f66692ebe8de3e151",
  1442. "reference": "ff1de4144726c5dad5fab97f66692ebe8de3e151",
  1443. "shasum": ""
  1444. },
  1445. "require": {
  1446. "php": ">=7.4"
  1447. },
  1448. "require-dev": {
  1449. "amphp/php-cs-fixer-config": "^2",
  1450. "phpunit/phpunit": "^9",
  1451. "psalm/phar": "^5.4"
  1452. },
  1453. "type": "library",
  1454. "autoload": {
  1455. "psr-4": {
  1456. "Amp\\Parser\\": "src"
  1457. }
  1458. },
  1459. "notification-url": "https://packagist.org/downloads/",
  1460. "license": [
  1461. "MIT"
  1462. ],
  1463. "authors": [
  1464. {
  1465. "name": "Aaron Piotrowski",
  1466. "email": "aaron@trowski.com"
  1467. },
  1468. {
  1469. "name": "Niklas Keller",
  1470. "email": "me@kelunik.com"
  1471. }
  1472. ],
  1473. "description": "A generator parser to make streaming parsers simple.",
  1474. "homepage": "https://github.com/amphp/parser",
  1475. "keywords": [
  1476. "async",
  1477. "non-blocking",
  1478. "parser",
  1479. "stream"
  1480. ],
  1481. "support": {
  1482. "issues": "https://github.com/amphp/parser/issues",
  1483. "source": "https://github.com/amphp/parser/tree/v1.1.0"
  1484. },
  1485. "funding": [
  1486. {
  1487. "url": "https://github.com/amphp",
  1488. "type": "github"
  1489. }
  1490. ],
  1491. "time": "2022-12-30T18:08:47+00:00"
  1492. },
  1493. {
  1494. "name": "amphp/process",
  1495. "version": "v1.1.4",
  1496. "source": {
  1497. "type": "git",
  1498. "url": "https://github.com/amphp/process.git",
  1499. "reference": "76e9495fd6818b43a20167cb11d8a67f7744ee0f"
  1500. },
  1501. "dist": {
  1502. "type": "zip",
  1503. "url": "https://api.github.com/repos/amphp/process/zipball/76e9495fd6818b43a20167cb11d8a67f7744ee0f",
  1504. "reference": "76e9495fd6818b43a20167cb11d8a67f7744ee0f",
  1505. "shasum": ""
  1506. },
  1507. "require": {
  1508. "amphp/amp": "^2",
  1509. "amphp/byte-stream": "^1.4",
  1510. "php": ">=7"
  1511. },
  1512. "require-dev": {
  1513. "amphp/php-cs-fixer-config": "dev-master",
  1514. "amphp/phpunit-util": "^1",
  1515. "phpunit/phpunit": "^6"
  1516. },
  1517. "type": "library",
  1518. "autoload": {
  1519. "files": [
  1520. "lib/functions.php"
  1521. ],
  1522. "psr-4": {
  1523. "Amp\\Process\\": "lib"
  1524. }
  1525. },
  1526. "notification-url": "https://packagist.org/downloads/",
  1527. "license": [
  1528. "MIT"
  1529. ],
  1530. "authors": [
  1531. {
  1532. "name": "Bob Weinand",
  1533. "email": "bobwei9@hotmail.com"
  1534. },
  1535. {
  1536. "name": "Aaron Piotrowski",
  1537. "email": "aaron@trowski.com"
  1538. },
  1539. {
  1540. "name": "Niklas Keller",
  1541. "email": "me@kelunik.com"
  1542. }
  1543. ],
  1544. "description": "Asynchronous process manager.",
  1545. "homepage": "https://github.com/amphp/process",
  1546. "support": {
  1547. "issues": "https://github.com/amphp/process/issues",
  1548. "source": "https://github.com/amphp/process/tree/v1.1.4"
  1549. },
  1550. "funding": [
  1551. {
  1552. "url": "https://github.com/amphp",
  1553. "type": "github"
  1554. }
  1555. ],
  1556. "time": "2022-07-06T23:50:12+00:00"
  1557. },
  1558. {
  1559. "name": "amphp/serialization",
  1560. "version": "v1.0.0",
  1561. "source": {
  1562. "type": "git",
  1563. "url": "https://github.com/amphp/serialization.git",
  1564. "reference": "693e77b2fb0b266c3c7d622317f881de44ae94a1"
  1565. },
  1566. "dist": {
  1567. "type": "zip",
  1568. "url": "https://api.github.com/repos/amphp/serialization/zipball/693e77b2fb0b266c3c7d622317f881de44ae94a1",
  1569. "reference": "693e77b2fb0b266c3c7d622317f881de44ae94a1",
  1570. "shasum": ""
  1571. },
  1572. "require": {
  1573. "php": ">=7.1"
  1574. },
  1575. "require-dev": {
  1576. "amphp/php-cs-fixer-config": "dev-master",
  1577. "phpunit/phpunit": "^9 || ^8 || ^7"
  1578. },
  1579. "type": "library",
  1580. "autoload": {
  1581. "files": [
  1582. "src/functions.php"
  1583. ],
  1584. "psr-4": {
  1585. "Amp\\Serialization\\": "src"
  1586. }
  1587. },
  1588. "notification-url": "https://packagist.org/downloads/",
  1589. "license": [
  1590. "MIT"
  1591. ],
  1592. "authors": [
  1593. {
  1594. "name": "Aaron Piotrowski",
  1595. "email": "aaron@trowski.com"
  1596. },
  1597. {
  1598. "name": "Niklas Keller",
  1599. "email": "me@kelunik.com"
  1600. }
  1601. ],
  1602. "description": "Serialization tools for IPC and data storage in PHP.",
  1603. "homepage": "https://github.com/amphp/serialization",
  1604. "keywords": [
  1605. "async",
  1606. "asynchronous",
  1607. "serialization",
  1608. "serialize"
  1609. ],
  1610. "support": {
  1611. "issues": "https://github.com/amphp/serialization/issues",
  1612. "source": "https://github.com/amphp/serialization/tree/master"
  1613. },
  1614. "time": "2020-03-25T21:39:07+00:00"
  1615. },
  1616. {
  1617. "name": "amphp/sync",
  1618. "version": "v1.4.2",
  1619. "source": {
  1620. "type": "git",
  1621. "url": "https://github.com/amphp/sync.git",
  1622. "reference": "85ab06764f4f36d63b1356b466df6111cf4b89cf"
  1623. },
  1624. "dist": {
  1625. "type": "zip",
  1626. "url": "https://api.github.com/repos/amphp/sync/zipball/85ab06764f4f36d63b1356b466df6111cf4b89cf",
  1627. "reference": "85ab06764f4f36d63b1356b466df6111cf4b89cf",
  1628. "shasum": ""
  1629. },
  1630. "require": {
  1631. "amphp/amp": "^2.2",
  1632. "php": ">=7.1"
  1633. },
  1634. "require-dev": {
  1635. "amphp/php-cs-fixer-config": "dev-master",
  1636. "amphp/phpunit-util": "^1.1",
  1637. "phpunit/phpunit": "^9 || ^8 || ^7"
  1638. },
  1639. "type": "library",
  1640. "autoload": {
  1641. "files": [
  1642. "src/functions.php",
  1643. "src/ConcurrentIterator/functions.php"
  1644. ],
  1645. "psr-4": {
  1646. "Amp\\Sync\\": "src"
  1647. }
  1648. },
  1649. "notification-url": "https://packagist.org/downloads/",
  1650. "license": [
  1651. "MIT"
  1652. ],
  1653. "authors": [
  1654. {
  1655. "name": "Aaron Piotrowski",
  1656. "email": "aaron@trowski.com"
  1657. },
  1658. {
  1659. "name": "Stephen Coakley",
  1660. "email": "me@stephencoakley.com"
  1661. }
  1662. ],
  1663. "description": "Mutex, Semaphore, and other synchronization tools for Amp.",
  1664. "homepage": "https://github.com/amphp/sync",
  1665. "keywords": [
  1666. "async",
  1667. "asynchronous",
  1668. "mutex",
  1669. "semaphore",
  1670. "synchronization"
  1671. ],
  1672. "support": {
  1673. "issues": "https://github.com/amphp/sync/issues",
  1674. "source": "https://github.com/amphp/sync/tree/v1.4.2"
  1675. },
  1676. "funding": [
  1677. {
  1678. "url": "https://github.com/amphp",
  1679. "type": "github"
  1680. }
  1681. ],
  1682. "time": "2021-10-25T18:29:10+00:00"
  1683. },
  1684. {
  1685. "name": "captainhook/captainhook",
  1686. "version": "5.19.2",
  1687. "source": {
  1688. "type": "git",
  1689. "url": "https://github.com/captainhookphp/captainhook.git",
  1690. "reference": "604bfc55fa40d6fe8c0275ca707ee80920b3b3f1"
  1691. },
  1692. "dist": {
  1693. "type": "zip",
  1694. "url": "https://api.github.com/repos/captainhookphp/captainhook/zipball/604bfc55fa40d6fe8c0275ca707ee80920b3b3f1",
  1695. "reference": "604bfc55fa40d6fe8c0275ca707ee80920b3b3f1",
  1696. "shasum": ""
  1697. },
  1698. "require": {
  1699. "captainhook/secrets": "^0.9.4",
  1700. "ext-json": "*",
  1701. "ext-spl": "*",
  1702. "ext-xml": "*",
  1703. "php": ">=8.0",
  1704. "sebastianfeldmann/camino": "^0.9.2",
  1705. "sebastianfeldmann/cli": "^3.3",
  1706. "sebastianfeldmann/git": "^3.9",
  1707. "symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
  1708. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
  1709. "symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  1710. },
  1711. "replace": {
  1712. "sebastianfeldmann/captainhook": "*"
  1713. },
  1714. "require-dev": {
  1715. "composer/composer": "~1 || ^2.0",
  1716. "mikey179/vfsstream": "~1"
  1717. },
  1718. "bin": [
  1719. "bin/captainhook"
  1720. ],
  1721. "type": "library",
  1722. "extra": {
  1723. "branch-alias": {
  1724. "dev-main": "6.0.x-dev"
  1725. },
  1726. "captainhook": {
  1727. "config": "captainhook.json"
  1728. }
  1729. },
  1730. "autoload": {
  1731. "psr-4": {
  1732. "CaptainHook\\App\\": "src/"
  1733. }
  1734. },
  1735. "notification-url": "https://packagist.org/downloads/",
  1736. "license": [
  1737. "MIT"
  1738. ],
  1739. "authors": [
  1740. {
  1741. "name": "Sebastian Feldmann",
  1742. "email": "sf@sebastian-feldmann.info"
  1743. }
  1744. ],
  1745. "description": "PHP git hook manager",
  1746. "homepage": "http://php.captainhook.info/",
  1747. "keywords": [
  1748. "commit-msg",
  1749. "git",
  1750. "hooks",
  1751. "post-merge",
  1752. "pre-commit",
  1753. "pre-push",
  1754. "prepare-commit-msg"
  1755. ],
  1756. "support": {
  1757. "issues": "https://github.com/captainhookphp/captainhook/issues",
  1758. "source": "https://github.com/captainhookphp/captainhook/tree/5.19.2"
  1759. },
  1760. "funding": [
  1761. {
  1762. "url": "https://github.com/sponsors/sebastianfeldmann",
  1763. "type": "github"
  1764. }
  1765. ],
  1766. "time": "2023-12-18T14:06:12+00:00"
  1767. },
  1768. {
  1769. "name": "captainhook/plugin-composer",
  1770. "version": "5.3.3",
  1771. "source": {
  1772. "type": "git",
  1773. "url": "https://github.com/captainhookphp/plugin-composer.git",
  1774. "reference": "0a802aaf7742ef22b5cbccd586d99e16d9d23a39"
  1775. },
  1776. "dist": {
  1777. "type": "zip",
  1778. "url": "https://api.github.com/repos/captainhookphp/plugin-composer/zipball/0a802aaf7742ef22b5cbccd586d99e16d9d23a39",
  1779. "reference": "0a802aaf7742ef22b5cbccd586d99e16d9d23a39",
  1780. "shasum": ""
  1781. },
  1782. "require": {
  1783. "captainhook/captainhook": "^5.0",
  1784. "composer-plugin-api": "^1.1|^2.0",
  1785. "php": ">=7.1"
  1786. },
  1787. "require-dev": {
  1788. "composer/composer": "*"
  1789. },
  1790. "type": "composer-plugin",
  1791. "extra": {
  1792. "class": "CaptainHook\\Plugin\\Composer\\ComposerPlugin",
  1793. "branch-alias": {
  1794. "dev-fluffy_hedgehog": "5.0.x-dev"
  1795. }
  1796. },
  1797. "autoload": {
  1798. "psr-4": {
  1799. "CaptainHook\\Plugin\\Composer\\": "src"
  1800. }
  1801. },
  1802. "notification-url": "https://packagist.org/downloads/",
  1803. "license": [
  1804. "MIT"
  1805. ],
  1806. "authors": [
  1807. {
  1808. "name": "Andreas Heigl",
  1809. "email": "andreas@heigl.org"
  1810. },
  1811. {
  1812. "name": "Sebastian Feldmann",
  1813. "email": "sf@sebastian-feldmann.info"
  1814. }
  1815. ],
  1816. "description": "Composer-Plugin handling your git-hooks",
  1817. "support": {
  1818. "issues": "https://github.com/captainhookphp/plugin-composer/issues",
  1819. "source": "https://github.com/captainhookphp/plugin-composer/tree/5.3.3"
  1820. },
  1821. "time": "2022-01-28T04:35:22+00:00"
  1822. },
  1823. {
  1824. "name": "captainhook/secrets",
  1825. "version": "0.9.5",
  1826. "source": {
  1827. "type": "git",
  1828. "url": "https://github.com/captainhookphp/secrets.git",
  1829. "reference": "8aa90d5b9b7892abd11b9da2fc172a7b32b90cbe"
  1830. },
  1831. "dist": {
  1832. "type": "zip",
  1833. "url": "https://api.github.com/repos/captainhookphp/secrets/zipball/8aa90d5b9b7892abd11b9da2fc172a7b32b90cbe",
  1834. "reference": "8aa90d5b9b7892abd11b9da2fc172a7b32b90cbe",
  1835. "shasum": ""
  1836. },
  1837. "require": {
  1838. "ext-mbstring": "*",
  1839. "php": ">=8.0"
  1840. },
  1841. "type": "library",
  1842. "autoload": {
  1843. "psr-4": {
  1844. "CaptainHook\\Secrets\\": "src/"
  1845. }
  1846. },
  1847. "notification-url": "https://packagist.org/downloads/",
  1848. "license": [
  1849. "MIT"
  1850. ],
  1851. "authors": [
  1852. {
  1853. "name": "Sebastian Feldmann",
  1854. "email": "sf@sebastian-feldmann.info"
  1855. }
  1856. ],
  1857. "description": "Utility classes to detect secrets",
  1858. "keywords": [
  1859. "commit-msg",
  1860. "keys",
  1861. "passwords",
  1862. "post-merge",
  1863. "prepare-commit-msg",
  1864. "secrets",
  1865. "tokens"
  1866. ],
  1867. "support": {
  1868. "issues": "https://github.com/captainhookphp/secrets/issues",
  1869. "source": "https://github.com/captainhookphp/secrets/tree/0.9.5"
  1870. },
  1871. "funding": [
  1872. {
  1873. "url": "https://github.com/sponsors/sebastianfeldmann",
  1874. "type": "github"
  1875. }
  1876. ],
  1877. "time": "2023-11-30T18:10:18+00:00"
  1878. },
  1879. {
  1880. "name": "composer/pcre",
  1881. "version": "3.1.1",
  1882. "source": {
  1883. "type": "git",
  1884. "url": "https://github.com/composer/pcre.git",
  1885. "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9"
  1886. },
  1887. "dist": {
  1888. "type": "zip",
  1889. "url": "https://api.github.com/repos/composer/pcre/zipball/00104306927c7a0919b4ced2aaa6782c1e61a3c9",
  1890. "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9",
  1891. "shasum": ""
  1892. },
  1893. "require": {
  1894. "php": "^7.4 || ^8.0"
  1895. },
  1896. "require-dev": {
  1897. "phpstan/phpstan": "^1.3",
  1898. "phpstan/phpstan-strict-rules": "^1.1",
  1899. "symfony/phpunit-bridge": "^5"
  1900. },
  1901. "type": "library",
  1902. "extra": {
  1903. "branch-alias": {
  1904. "dev-main": "3.x-dev"
  1905. }
  1906. },
  1907. "autoload": {
  1908. "psr-4": {
  1909. "Composer\\Pcre\\": "src"
  1910. }
  1911. },
  1912. "notification-url": "https://packagist.org/downloads/",
  1913. "license": [
  1914. "MIT"
  1915. ],
  1916. "authors": [
  1917. {
  1918. "name": "Jordi Boggiano",
  1919. "email": "j.boggiano@seld.be",
  1920. "homepage": "http://seld.be"
  1921. }
  1922. ],
  1923. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  1924. "keywords": [
  1925. "PCRE",
  1926. "preg",
  1927. "regex",
  1928. "regular expression"
  1929. ],
  1930. "support": {
  1931. "issues": "https://github.com/composer/pcre/issues",
  1932. "source": "https://github.com/composer/pcre/tree/3.1.1"
  1933. },
  1934. "funding": [
  1935. {
  1936. "url": "https://packagist.com",
  1937. "type": "custom"
  1938. },
  1939. {
  1940. "url": "https://github.com/composer",
  1941. "type": "github"
  1942. },
  1943. {
  1944. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1945. "type": "tidelift"
  1946. }
  1947. ],
  1948. "time": "2023-10-11T07:11:09+00:00"
  1949. },
  1950. {
  1951. "name": "composer/semver",
  1952. "version": "3.4.0",
  1953. "source": {
  1954. "type": "git",
  1955. "url": "https://github.com/composer/semver.git",
  1956. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  1957. },
  1958. "dist": {
  1959. "type": "zip",
  1960. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  1961. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  1962. "shasum": ""
  1963. },
  1964. "require": {
  1965. "php": "^5.3.2 || ^7.0 || ^8.0"
  1966. },
  1967. "require-dev": {
  1968. "phpstan/phpstan": "^1.4",
  1969. "symfony/phpunit-bridge": "^4.2 || ^5"
  1970. },
  1971. "type": "library",
  1972. "extra": {
  1973. "branch-alias": {
  1974. "dev-main": "3.x-dev"
  1975. }
  1976. },
  1977. "autoload": {
  1978. "psr-4": {
  1979. "Composer\\Semver\\": "src"
  1980. }
  1981. },
  1982. "notification-url": "https://packagist.org/downloads/",
  1983. "license": [
  1984. "MIT"
  1985. ],
  1986. "authors": [
  1987. {
  1988. "name": "Nils Adermann",
  1989. "email": "naderman@naderman.de",
  1990. "homepage": "http://www.naderman.de"
  1991. },
  1992. {
  1993. "name": "Jordi Boggiano",
  1994. "email": "j.boggiano@seld.be",
  1995. "homepage": "http://seld.be"
  1996. },
  1997. {
  1998. "name": "Rob Bast",
  1999. "email": "rob.bast@gmail.com",
  2000. "homepage": "http://robbast.nl"
  2001. }
  2002. ],
  2003. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  2004. "keywords": [
  2005. "semantic",
  2006. "semver",
  2007. "validation",
  2008. "versioning"
  2009. ],
  2010. "support": {
  2011. "irc": "ircs://irc.libera.chat:6697/composer",
  2012. "issues": "https://github.com/composer/semver/issues",
  2013. "source": "https://github.com/composer/semver/tree/3.4.0"
  2014. },
  2015. "funding": [
  2016. {
  2017. "url": "https://packagist.com",
  2018. "type": "custom"
  2019. },
  2020. {
  2021. "url": "https://github.com/composer",
  2022. "type": "github"
  2023. },
  2024. {
  2025. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  2026. "type": "tidelift"
  2027. }
  2028. ],
  2029. "time": "2023-08-31T09:50:34+00:00"
  2030. },
  2031. {
  2032. "name": "composer/xdebug-handler",
  2033. "version": "3.0.3",
  2034. "source": {
  2035. "type": "git",
  2036. "url": "https://github.com/composer/xdebug-handler.git",
  2037. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  2038. },
  2039. "dist": {
  2040. "type": "zip",
  2041. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  2042. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  2043. "shasum": ""
  2044. },
  2045. "require": {
  2046. "composer/pcre": "^1 || ^2 || ^3",
  2047. "php": "^7.2.5 || ^8.0",
  2048. "psr/log": "^1 || ^2 || ^3"
  2049. },
  2050. "require-dev": {
  2051. "phpstan/phpstan": "^1.0",
  2052. "phpstan/phpstan-strict-rules": "^1.1",
  2053. "symfony/phpunit-bridge": "^6.0"
  2054. },
  2055. "type": "library",
  2056. "autoload": {
  2057. "psr-4": {
  2058. "Composer\\XdebugHandler\\": "src"
  2059. }
  2060. },
  2061. "notification-url": "https://packagist.org/downloads/",
  2062. "license": [
  2063. "MIT"
  2064. ],
  2065. "authors": [
  2066. {
  2067. "name": "John Stevenson",
  2068. "email": "john-stevenson@blueyonder.co.uk"
  2069. }
  2070. ],
  2071. "description": "Restarts a process without Xdebug.",
  2072. "keywords": [
  2073. "Xdebug",
  2074. "performance"
  2075. ],
  2076. "support": {
  2077. "irc": "irc://irc.freenode.org/composer",
  2078. "issues": "https://github.com/composer/xdebug-handler/issues",
  2079. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  2080. },
  2081. "funding": [
  2082. {
  2083. "url": "https://packagist.com",
  2084. "type": "custom"
  2085. },
  2086. {
  2087. "url": "https://github.com/composer",
  2088. "type": "github"
  2089. },
  2090. {
  2091. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  2092. "type": "tidelift"
  2093. }
  2094. ],
  2095. "time": "2022-02-25T21:32:43+00:00"
  2096. },
  2097. {
  2098. "name": "doctrine/deprecations",
  2099. "version": "1.1.3",
  2100. "source": {
  2101. "type": "git",
  2102. "url": "https://github.com/doctrine/deprecations.git",
  2103. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  2104. },
  2105. "dist": {
  2106. "type": "zip",
  2107. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  2108. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  2109. "shasum": ""
  2110. },
  2111. "require": {
  2112. "php": "^7.1 || ^8.0"
  2113. },
  2114. "require-dev": {
  2115. "doctrine/coding-standard": "^9",
  2116. "phpstan/phpstan": "1.4.10 || 1.10.15",
  2117. "phpstan/phpstan-phpunit": "^1.0",
  2118. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  2119. "psalm/plugin-phpunit": "0.18.4",
  2120. "psr/log": "^1 || ^2 || ^3",
  2121. "vimeo/psalm": "4.30.0 || 5.12.0"
  2122. },
  2123. "suggest": {
  2124. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  2125. },
  2126. "type": "library",
  2127. "autoload": {
  2128. "psr-4": {
  2129. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  2130. }
  2131. },
  2132. "notification-url": "https://packagist.org/downloads/",
  2133. "license": [
  2134. "MIT"
  2135. ],
  2136. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  2137. "homepage": "https://www.doctrine-project.org/",
  2138. "support": {
  2139. "issues": "https://github.com/doctrine/deprecations/issues",
  2140. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  2141. },
  2142. "time": "2024-01-30T19:34:25+00:00"
  2143. },
  2144. {
  2145. "name": "doctrine/instantiator",
  2146. "version": "2.0.0",
  2147. "source": {
  2148. "type": "git",
  2149. "url": "https://github.com/doctrine/instantiator.git",
  2150. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  2151. },
  2152. "dist": {
  2153. "type": "zip",
  2154. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  2155. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  2156. "shasum": ""
  2157. },
  2158. "require": {
  2159. "php": "^8.1"
  2160. },
  2161. "require-dev": {
  2162. "doctrine/coding-standard": "^11",
  2163. "ext-pdo": "*",
  2164. "ext-phar": "*",
  2165. "phpbench/phpbench": "^1.2",
  2166. "phpstan/phpstan": "^1.9.4",
  2167. "phpstan/phpstan-phpunit": "^1.3",
  2168. "phpunit/phpunit": "^9.5.27",
  2169. "vimeo/psalm": "^5.4"
  2170. },
  2171. "type": "library",
  2172. "autoload": {
  2173. "psr-4": {
  2174. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2175. }
  2176. },
  2177. "notification-url": "https://packagist.org/downloads/",
  2178. "license": [
  2179. "MIT"
  2180. ],
  2181. "authors": [
  2182. {
  2183. "name": "Marco Pivetta",
  2184. "email": "ocramius@gmail.com",
  2185. "homepage": "https://ocramius.github.io/"
  2186. }
  2187. ],
  2188. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2189. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  2190. "keywords": [
  2191. "constructor",
  2192. "instantiate"
  2193. ],
  2194. "support": {
  2195. "issues": "https://github.com/doctrine/instantiator/issues",
  2196. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  2197. },
  2198. "funding": [
  2199. {
  2200. "url": "https://www.doctrine-project.org/sponsorship.html",
  2201. "type": "custom"
  2202. },
  2203. {
  2204. "url": "https://www.patreon.com/phpdoctrine",
  2205. "type": "patreon"
  2206. },
  2207. {
  2208. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  2209. "type": "tidelift"
  2210. }
  2211. ],
  2212. "time": "2022-12-30T00:23:10+00:00"
  2213. },
  2214. {
  2215. "name": "fidry/console",
  2216. "version": "0.5.5",
  2217. "source": {
  2218. "type": "git",
  2219. "url": "https://github.com/theofidry/console.git",
  2220. "reference": "bc1fe03f600c63f12ec0a39c6b746c1a1fb77bf7"
  2221. },
  2222. "dist": {
  2223. "type": "zip",
  2224. "url": "https://api.github.com/repos/theofidry/console/zipball/bc1fe03f600c63f12ec0a39c6b746c1a1fb77bf7",
  2225. "reference": "bc1fe03f600c63f12ec0a39c6b746c1a1fb77bf7",
  2226. "shasum": ""
  2227. },
  2228. "require": {
  2229. "php": "^7.4.0 || ^8.0.0",
  2230. "symfony/console": "^4.4 || ^5.4 || ^6.1",
  2231. "symfony/event-dispatcher-contracts": "^1.0 || ^2.5 || ^3.0",
  2232. "symfony/service-contracts": "^1.0 || ^2.5 || ^3.0",
  2233. "thecodingmachine/safe": "^1.3 || ^2.0",
  2234. "webmozart/assert": "^1.11"
  2235. },
  2236. "conflict": {
  2237. "symfony/dependency-injection": "<5.3.0",
  2238. "symfony/framework-bundle": "<5.3.0",
  2239. "symfony/http-kernel": "<5.3.0"
  2240. },
  2241. "require-dev": {
  2242. "bamarni/composer-bin-plugin": "^1.4",
  2243. "composer/semver": "^3.3",
  2244. "ergebnis/composer-normalize": "^2.28",
  2245. "infection/infection": "^0.26",
  2246. "phpspec/prophecy-phpunit": "^2.0",
  2247. "phpunit/phpunit": "^9.4.3",
  2248. "symfony/dependency-injection": "^4.4 || ^5.4 || ^6.1",
  2249. "symfony/framework-bundle": "^4.4 || ^5.4 || ^6.1",
  2250. "symfony/http-kernel": "^4.4 || ^5.4 || ^6.1",
  2251. "symfony/phpunit-bridge": "^4.4.47 || ^5.4 || ^6.0",
  2252. "symfony/yaml": "^4.4 || ^5.4 || ^6.1",
  2253. "webmozarts/strict-phpunit": "^7.3"
  2254. },
  2255. "type": "library",
  2256. "extra": {
  2257. "bamarni-bin": {
  2258. "bin-links": false,
  2259. "forward-command": false
  2260. },
  2261. "branch-alias": {
  2262. "dev-main": "1.0.x-dev"
  2263. }
  2264. },
  2265. "autoload": {
  2266. "psr-4": {
  2267. "Fidry\\Console\\": "src"
  2268. }
  2269. },
  2270. "notification-url": "https://packagist.org/downloads/",
  2271. "license": [
  2272. "MIT"
  2273. ],
  2274. "authors": [
  2275. {
  2276. "name": "Théo Fidry",
  2277. "email": "theo.fidry@gmail.com"
  2278. }
  2279. ],
  2280. "description": "Library to create CLI applications",
  2281. "keywords": [
  2282. "cli",
  2283. "console",
  2284. "symfony"
  2285. ],
  2286. "support": {
  2287. "issues": "https://github.com/theofidry/console/issues",
  2288. "source": "https://github.com/theofidry/console/tree/0.5.5"
  2289. },
  2290. "funding": [
  2291. {
  2292. "url": "https://github.com/theofidry",
  2293. "type": "github"
  2294. }
  2295. ],
  2296. "time": "2022-12-18T10:49:34+00:00"
  2297. },
  2298. {
  2299. "name": "fidry/filesystem",
  2300. "version": "1.2.1",
  2301. "source": {
  2302. "type": "git",
  2303. "url": "https://github.com/theofidry/filesystem.git",
  2304. "reference": "8303225d289da1c434f6009743fbe9aad852de0c"
  2305. },
  2306. "dist": {
  2307. "type": "zip",
  2308. "url": "https://api.github.com/repos/theofidry/filesystem/zipball/8303225d289da1c434f6009743fbe9aad852de0c",
  2309. "reference": "8303225d289da1c434f6009743fbe9aad852de0c",
  2310. "shasum": ""
  2311. },
  2312. "require": {
  2313. "php": "^8.1",
  2314. "symfony/filesystem": "^6.4 || ^7.0",
  2315. "thecodingmachine/safe": "^2.0"
  2316. },
  2317. "require-dev": {
  2318. "bamarni/composer-bin-plugin": "^1.4",
  2319. "ergebnis/composer-normalize": "^2.28",
  2320. "infection/infection": ">=0.26",
  2321. "phpunit/phpunit": "^10.3",
  2322. "symfony/finder": "^6.4 || ^7.0"
  2323. },
  2324. "type": "library",
  2325. "extra": {
  2326. "bamarni-bin": {
  2327. "bin-links": false,
  2328. "forward-command": false
  2329. },
  2330. "branch-alias": {
  2331. "dev-main": "1.0.x-dev"
  2332. }
  2333. },
  2334. "autoload": {
  2335. "psr-4": {
  2336. "Fidry\\FileSystem\\": "src"
  2337. }
  2338. },
  2339. "notification-url": "https://packagist.org/downloads/",
  2340. "license": [
  2341. "BSD-3-Clause"
  2342. ],
  2343. "authors": [
  2344. {
  2345. "name": "Théo Fidry",
  2346. "email": "theo.fidry@gmail.com"
  2347. }
  2348. ],
  2349. "description": "Symfony Filesystem with a few more utilities.",
  2350. "keywords": [
  2351. "filesystem"
  2352. ],
  2353. "support": {
  2354. "issues": "https://github.com/theofidry/filesystem/issues",
  2355. "source": "https://github.com/theofidry/filesystem/tree/1.2.1"
  2356. },
  2357. "funding": [
  2358. {
  2359. "url": "https://github.com/theofidry",
  2360. "type": "github"
  2361. }
  2362. ],
  2363. "time": "2023-12-10T13:29:09+00:00"
  2364. },
  2365. {
  2366. "name": "filp/whoops",
  2367. "version": "2.15.4",
  2368. "source": {
  2369. "type": "git",
  2370. "url": "https://github.com/filp/whoops.git",
  2371. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  2372. },
  2373. "dist": {
  2374. "type": "zip",
  2375. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  2376. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  2377. "shasum": ""
  2378. },
  2379. "require": {
  2380. "php": "^5.5.9 || ^7.0 || ^8.0",
  2381. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2382. },
  2383. "require-dev": {
  2384. "mockery/mockery": "^0.9 || ^1.0",
  2385. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  2386. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  2387. },
  2388. "suggest": {
  2389. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  2390. "whoops/soap": "Formats errors as SOAP responses"
  2391. },
  2392. "type": "library",
  2393. "extra": {
  2394. "branch-alias": {
  2395. "dev-master": "2.7-dev"
  2396. }
  2397. },
  2398. "autoload": {
  2399. "psr-4": {
  2400. "Whoops\\": "src/Whoops/"
  2401. }
  2402. },
  2403. "notification-url": "https://packagist.org/downloads/",
  2404. "license": [
  2405. "MIT"
  2406. ],
  2407. "authors": [
  2408. {
  2409. "name": "Filipe Dobreira",
  2410. "homepage": "https://github.com/filp",
  2411. "role": "Developer"
  2412. }
  2413. ],
  2414. "description": "php error handling for cool kids",
  2415. "homepage": "https://filp.github.io/whoops/",
  2416. "keywords": [
  2417. "error",
  2418. "exception",
  2419. "handling",
  2420. "library",
  2421. "throwable",
  2422. "whoops"
  2423. ],
  2424. "support": {
  2425. "issues": "https://github.com/filp/whoops/issues",
  2426. "source": "https://github.com/filp/whoops/tree/2.15.4"
  2427. },
  2428. "funding": [
  2429. {
  2430. "url": "https://github.com/denis-sokolov",
  2431. "type": "github"
  2432. }
  2433. ],
  2434. "time": "2023-11-03T12:00:00+00:00"
  2435. },
  2436. {
  2437. "name": "friendsofphp/php-cs-fixer",
  2438. "version": "v3.49.0",
  2439. "source": {
  2440. "type": "git",
  2441. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  2442. "reference": "8742f7aa6f72a399688b65e4f58992c2d4681fc2"
  2443. },
  2444. "dist": {
  2445. "type": "zip",
  2446. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/8742f7aa6f72a399688b65e4f58992c2d4681fc2",
  2447. "reference": "8742f7aa6f72a399688b65e4f58992c2d4681fc2",
  2448. "shasum": ""
  2449. },
  2450. "require": {
  2451. "composer/semver": "^3.4",
  2452. "composer/xdebug-handler": "^3.0.3",
  2453. "ext-filter": "*",
  2454. "ext-json": "*",
  2455. "ext-tokenizer": "*",
  2456. "php": "^7.4 || ^8.0",
  2457. "sebastian/diff": "^4.0 || ^5.0",
  2458. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  2459. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  2460. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  2461. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  2462. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  2463. "symfony/polyfill-mbstring": "^1.28",
  2464. "symfony/polyfill-php80": "^1.28",
  2465. "symfony/polyfill-php81": "^1.28",
  2466. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  2467. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  2468. },
  2469. "require-dev": {
  2470. "facile-it/paraunit": "^1.3 || ^2.0",
  2471. "justinrainbow/json-schema": "^5.2",
  2472. "keradus/cli-executor": "^2.1",
  2473. "mikey179/vfsstream": "^1.6.11",
  2474. "php-coveralls/php-coveralls": "^2.7",
  2475. "php-cs-fixer/accessible-object": "^1.1",
  2476. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  2477. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  2478. "phpunit/phpunit": "^9.6 || ^10.5.5",
  2479. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  2480. },
  2481. "suggest": {
  2482. "ext-dom": "For handling output formats in XML",
  2483. "ext-mbstring": "For handling non-UTF8 characters."
  2484. },
  2485. "bin": [
  2486. "php-cs-fixer"
  2487. ],
  2488. "type": "application",
  2489. "autoload": {
  2490. "psr-4": {
  2491. "PhpCsFixer\\": "src/"
  2492. }
  2493. },
  2494. "notification-url": "https://packagist.org/downloads/",
  2495. "license": [
  2496. "MIT"
  2497. ],
  2498. "authors": [
  2499. {
  2500. "name": "Fabien Potencier",
  2501. "email": "fabien@symfony.com"
  2502. },
  2503. {
  2504. "name": "Dariusz Rumiński",
  2505. "email": "dariusz.ruminski@gmail.com"
  2506. }
  2507. ],
  2508. "description": "A tool to automatically fix PHP code style",
  2509. "keywords": [
  2510. "Static code analysis",
  2511. "fixer",
  2512. "standards",
  2513. "static analysis"
  2514. ],
  2515. "support": {
  2516. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  2517. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.49.0"
  2518. },
  2519. "funding": [
  2520. {
  2521. "url": "https://github.com/keradus",
  2522. "type": "github"
  2523. }
  2524. ],
  2525. "time": "2024-02-02T00:41:40+00:00"
  2526. },
  2527. {
  2528. "name": "humbug/box",
  2529. "version": "4.5.1",
  2530. "source": {
  2531. "type": "git",
  2532. "url": "https://github.com/box-project/box.git",
  2533. "reference": "1e10a1e974a831b64dab801d09dffa6acd43bd7f"
  2534. },
  2535. "dist": {
  2536. "type": "zip",
  2537. "url": "https://api.github.com/repos/box-project/box/zipball/1e10a1e974a831b64dab801d09dffa6acd43bd7f",
  2538. "reference": "1e10a1e974a831b64dab801d09dffa6acd43bd7f",
  2539. "shasum": ""
  2540. },
  2541. "require": {
  2542. "amphp/parallel-functions": "^1.1",
  2543. "composer-plugin-api": "^2.2",
  2544. "composer/semver": "^3.3.2",
  2545. "composer/xdebug-handler": "^3.0.3",
  2546. "ext-iconv": "*",
  2547. "ext-mbstring": "*",
  2548. "ext-phar": "*",
  2549. "ext-sodium": "*",
  2550. "fidry/console": "^0.5.3 || ^0.6.0",
  2551. "fidry/filesystem": "^1.1",
  2552. "humbug/php-scoper": "^0.18.6",
  2553. "justinrainbow/json-schema": "^5.2.12",
  2554. "laravel/serializable-closure": "^1.2.2",
  2555. "nikic/iter": "^2.2",
  2556. "nikic/php-parser": "^4.15.2",
  2557. "paragonie/constant_time_encoding": "^2.6",
  2558. "php": "^8.1",
  2559. "phpdocumentor/reflection-docblock": "^5.3",
  2560. "phpdocumentor/type-resolver": "^1.7",
  2561. "psr/log": "^3.0",
  2562. "sebastian/diff": "^4.0",
  2563. "seld/jsonlint": "^1.9",
  2564. "symfony/console": "^6.1.7",
  2565. "symfony/filesystem": "^6.1.5",
  2566. "symfony/finder": "^6.1.3",
  2567. "symfony/polyfill-iconv": "^1.28",
  2568. "symfony/polyfill-mbstring": "^1.28",
  2569. "symfony/process": "^6.1.3",
  2570. "symfony/var-dumper": "^6.1.6",
  2571. "webmozart/assert": "^1.11"
  2572. },
  2573. "replace": {
  2574. "paragonie/sodium_compat": "*",
  2575. "symfony/polyfill-php80": "*",
  2576. "symfony/polyfill-php81": "*"
  2577. },
  2578. "require-dev": {
  2579. "bamarni/composer-bin-plugin": "^1.8.2",
  2580. "ergebnis/composer-normalize": "^2.29",
  2581. "fidry/makefile": "^1.0.1",
  2582. "mikey179/vfsstream": "^1.6.11",
  2583. "phpspec/prophecy": "^1.17",
  2584. "phpspec/prophecy-phpunit": "^2.0.2",
  2585. "phpunit/phpunit": "^9.5.26",
  2586. "symfony/phpunit-bridge": "^6.1.6",
  2587. "symfony/yaml": "^6.2",
  2588. "webmozarts/strict-phpunit": "^7.6"
  2589. },
  2590. "suggest": {
  2591. "ext-openssl": "To accelerate private key generation."
  2592. },
  2593. "bin": [
  2594. "bin/box"
  2595. ],
  2596. "type": "library",
  2597. "extra": {
  2598. "bamarni-bin": {
  2599. "bin-links": false,
  2600. "forward-command": false
  2601. },
  2602. "branch-alias": {
  2603. "dev-main": "4.x-dev"
  2604. }
  2605. },
  2606. "autoload": {
  2607. "files": [
  2608. "src/consts.php",
  2609. "src/functions.php"
  2610. ],
  2611. "psr-4": {
  2612. "KevinGH\\Box\\": "src"
  2613. },
  2614. "exclude-from-classmap": [
  2615. "/Test/",
  2616. "vendor/humbug/php-scoper/vendor-hotfix"
  2617. ]
  2618. },
  2619. "notification-url": "https://packagist.org/downloads/",
  2620. "license": [
  2621. "MIT"
  2622. ],
  2623. "authors": [
  2624. {
  2625. "name": "Kevin Herrera",
  2626. "email": "kevin@herrera.io",
  2627. "homepage": "http://kevin.herrera.io"
  2628. },
  2629. {
  2630. "name": "Théo Fidry",
  2631. "email": "theo.fidry@gmail.com"
  2632. }
  2633. ],
  2634. "description": "Fast, zero config application bundler with PHARs.",
  2635. "keywords": [
  2636. "phar"
  2637. ],
  2638. "support": {
  2639. "issues": "https://github.com/box-project/box/issues",
  2640. "source": "https://github.com/box-project/box/tree/4.5.1"
  2641. },
  2642. "time": "2023-11-04T17:51:11+00:00"
  2643. },
  2644. {
  2645. "name": "humbug/php-scoper",
  2646. "version": "0.18.7",
  2647. "source": {
  2648. "type": "git",
  2649. "url": "https://github.com/humbug/php-scoper.git",
  2650. "reference": "9386a0af946f175d7a1ebfb68851bc2bb8ad7858"
  2651. },
  2652. "dist": {
  2653. "type": "zip",
  2654. "url": "https://api.github.com/repos/humbug/php-scoper/zipball/9386a0af946f175d7a1ebfb68851bc2bb8ad7858",
  2655. "reference": "9386a0af946f175d7a1ebfb68851bc2bb8ad7858",
  2656. "shasum": ""
  2657. },
  2658. "require": {
  2659. "fidry/console": "^0.5.0",
  2660. "fidry/filesystem": "^1.1",
  2661. "jetbrains/phpstorm-stubs": "^v2022.2",
  2662. "nikic/php-parser": "^4.12",
  2663. "php": "^8.1",
  2664. "symfony/console": "^5.2 || ^6.0",
  2665. "symfony/filesystem": "^5.2 || ^6.0",
  2666. "symfony/finder": "^5.2 || ^6.0",
  2667. "thecodingmachine/safe": "^2.0"
  2668. },
  2669. "require-dev": {
  2670. "bamarni/composer-bin-plugin": "^1.1",
  2671. "ergebnis/composer-normalize": "^2.28",
  2672. "fidry/makefile": "^1.0",
  2673. "humbug/box": "^4.5.1",
  2674. "phpspec/prophecy-phpunit": "^2.0",
  2675. "phpunit/phpunit": "^9.0",
  2676. "symfony/yaml": "^6.1"
  2677. },
  2678. "bin": [
  2679. "bin/php-scoper"
  2680. ],
  2681. "type": "library",
  2682. "extra": {
  2683. "bamarni-bin": {
  2684. "bin-links": false,
  2685. "forward-command": false
  2686. },
  2687. "branch-alias": {
  2688. "dev-master": "1.0-dev"
  2689. }
  2690. },
  2691. "autoload": {
  2692. "files": [
  2693. "src/functions.php"
  2694. ],
  2695. "psr-4": {
  2696. "Humbug\\PhpScoper\\": "src/"
  2697. },
  2698. "classmap": [
  2699. "vendor-hotfix/"
  2700. ]
  2701. },
  2702. "notification-url": "https://packagist.org/downloads/",
  2703. "license": [
  2704. "MIT"
  2705. ],
  2706. "authors": [
  2707. {
  2708. "name": "Bernhard Schussek",
  2709. "email": "bschussek@gmail.com"
  2710. },
  2711. {
  2712. "name": "Théo Fidry",
  2713. "email": "theo.fidry@gmail.com"
  2714. },
  2715. {
  2716. "name": "Pádraic Brady",
  2717. "email": "padraic.brady@gmail.com"
  2718. }
  2719. ],
  2720. "description": "Prefixes all PHP namespaces in a file or directory.",
  2721. "support": {
  2722. "issues": "https://github.com/humbug/php-scoper/issues",
  2723. "source": "https://github.com/humbug/php-scoper/tree/0.18.7"
  2724. },
  2725. "time": "2023-11-04T18:01:12+00:00"
  2726. },
  2727. {
  2728. "name": "jetbrains/phpstorm-stubs",
  2729. "version": "v2022.3",
  2730. "source": {
  2731. "type": "git",
  2732. "url": "https://github.com/JetBrains/phpstorm-stubs.git",
  2733. "reference": "6b568c153cea002dc6fad96285c3063d07cab18d"
  2734. },
  2735. "dist": {
  2736. "type": "zip",
  2737. "url": "https://api.github.com/repos/JetBrains/phpstorm-stubs/zipball/6b568c153cea002dc6fad96285c3063d07cab18d",
  2738. "reference": "6b568c153cea002dc6fad96285c3063d07cab18d",
  2739. "shasum": ""
  2740. },
  2741. "require-dev": {
  2742. "friendsofphp/php-cs-fixer": "@stable",
  2743. "nikic/php-parser": "@stable",
  2744. "php": "^8.0",
  2745. "phpdocumentor/reflection-docblock": "@stable",
  2746. "phpunit/phpunit": "@stable"
  2747. },
  2748. "type": "library",
  2749. "autoload": {
  2750. "files": [
  2751. "PhpStormStubsMap.php"
  2752. ]
  2753. },
  2754. "notification-url": "https://packagist.org/downloads/",
  2755. "license": [
  2756. "Apache-2.0"
  2757. ],
  2758. "description": "PHP runtime & extensions header files for PhpStorm",
  2759. "homepage": "https://www.jetbrains.com/phpstorm",
  2760. "keywords": [
  2761. "autocomplete",
  2762. "code",
  2763. "inference",
  2764. "inspection",
  2765. "jetbrains",
  2766. "phpstorm",
  2767. "stubs",
  2768. "type"
  2769. ],
  2770. "support": {
  2771. "source": "https://github.com/JetBrains/phpstorm-stubs/tree/v2022.3"
  2772. },
  2773. "time": "2022-10-17T09:21:37+00:00"
  2774. },
  2775. {
  2776. "name": "justinrainbow/json-schema",
  2777. "version": "v5.2.13",
  2778. "source": {
  2779. "type": "git",
  2780. "url": "https://github.com/justinrainbow/json-schema.git",
  2781. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793"
  2782. },
  2783. "dist": {
  2784. "type": "zip",
  2785. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793",
  2786. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793",
  2787. "shasum": ""
  2788. },
  2789. "require": {
  2790. "php": ">=5.3.3"
  2791. },
  2792. "require-dev": {
  2793. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  2794. "json-schema/json-schema-test-suite": "1.2.0",
  2795. "phpunit/phpunit": "^4.8.35"
  2796. },
  2797. "bin": [
  2798. "bin/validate-json"
  2799. ],
  2800. "type": "library",
  2801. "extra": {
  2802. "branch-alias": {
  2803. "dev-master": "5.0.x-dev"
  2804. }
  2805. },
  2806. "autoload": {
  2807. "psr-4": {
  2808. "JsonSchema\\": "src/JsonSchema/"
  2809. }
  2810. },
  2811. "notification-url": "https://packagist.org/downloads/",
  2812. "license": [
  2813. "MIT"
  2814. ],
  2815. "authors": [
  2816. {
  2817. "name": "Bruno Prieto Reis",
  2818. "email": "bruno.p.reis@gmail.com"
  2819. },
  2820. {
  2821. "name": "Justin Rainbow",
  2822. "email": "justin.rainbow@gmail.com"
  2823. },
  2824. {
  2825. "name": "Igor Wiedler",
  2826. "email": "igor@wiedler.ch"
  2827. },
  2828. {
  2829. "name": "Robert Schönthal",
  2830. "email": "seroscho@googlemail.com"
  2831. }
  2832. ],
  2833. "description": "A library to validate a json schema.",
  2834. "homepage": "https://github.com/justinrainbow/json-schema",
  2835. "keywords": [
  2836. "json",
  2837. "schema"
  2838. ],
  2839. "support": {
  2840. "issues": "https://github.com/justinrainbow/json-schema/issues",
  2841. "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13"
  2842. },
  2843. "time": "2023-09-26T02:20:38+00:00"
  2844. },
  2845. {
  2846. "name": "laravel/serializable-closure",
  2847. "version": "v1.3.3",
  2848. "source": {
  2849. "type": "git",
  2850. "url": "https://github.com/laravel/serializable-closure.git",
  2851. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  2852. },
  2853. "dist": {
  2854. "type": "zip",
  2855. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  2856. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  2857. "shasum": ""
  2858. },
  2859. "require": {
  2860. "php": "^7.3|^8.0"
  2861. },
  2862. "require-dev": {
  2863. "nesbot/carbon": "^2.61",
  2864. "pestphp/pest": "^1.21.3",
  2865. "phpstan/phpstan": "^1.8.2",
  2866. "symfony/var-dumper": "^5.4.11"
  2867. },
  2868. "type": "library",
  2869. "extra": {
  2870. "branch-alias": {
  2871. "dev-master": "1.x-dev"
  2872. }
  2873. },
  2874. "autoload": {
  2875. "psr-4": {
  2876. "Laravel\\SerializableClosure\\": "src/"
  2877. }
  2878. },
  2879. "notification-url": "https://packagist.org/downloads/",
  2880. "license": [
  2881. "MIT"
  2882. ],
  2883. "authors": [
  2884. {
  2885. "name": "Taylor Otwell",
  2886. "email": "taylor@laravel.com"
  2887. },
  2888. {
  2889. "name": "Nuno Maduro",
  2890. "email": "nuno@laravel.com"
  2891. }
  2892. ],
  2893. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2894. "keywords": [
  2895. "closure",
  2896. "laravel",
  2897. "serializable"
  2898. ],
  2899. "support": {
  2900. "issues": "https://github.com/laravel/serializable-closure/issues",
  2901. "source": "https://github.com/laravel/serializable-closure"
  2902. },
  2903. "time": "2023-11-08T14:08:06+00:00"
  2904. },
  2905. {
  2906. "name": "myclabs/deep-copy",
  2907. "version": "1.11.1",
  2908. "source": {
  2909. "type": "git",
  2910. "url": "https://github.com/myclabs/DeepCopy.git",
  2911. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  2912. },
  2913. "dist": {
  2914. "type": "zip",
  2915. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  2916. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  2917. "shasum": ""
  2918. },
  2919. "require": {
  2920. "php": "^7.1 || ^8.0"
  2921. },
  2922. "conflict": {
  2923. "doctrine/collections": "<1.6.8",
  2924. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  2925. },
  2926. "require-dev": {
  2927. "doctrine/collections": "^1.6.8",
  2928. "doctrine/common": "^2.13.3 || ^3.2.2",
  2929. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  2930. },
  2931. "type": "library",
  2932. "autoload": {
  2933. "files": [
  2934. "src/DeepCopy/deep_copy.php"
  2935. ],
  2936. "psr-4": {
  2937. "DeepCopy\\": "src/DeepCopy/"
  2938. }
  2939. },
  2940. "notification-url": "https://packagist.org/downloads/",
  2941. "license": [
  2942. "MIT"
  2943. ],
  2944. "description": "Create deep copies (clones) of your objects",
  2945. "keywords": [
  2946. "clone",
  2947. "copy",
  2948. "duplicate",
  2949. "object",
  2950. "object graph"
  2951. ],
  2952. "support": {
  2953. "issues": "https://github.com/myclabs/DeepCopy/issues",
  2954. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  2955. },
  2956. "funding": [
  2957. {
  2958. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  2959. "type": "tidelift"
  2960. }
  2961. ],
  2962. "time": "2023-03-08T13:26:56+00:00"
  2963. },
  2964. {
  2965. "name": "nikic/iter",
  2966. "version": "v2.4.0",
  2967. "source": {
  2968. "type": "git",
  2969. "url": "https://github.com/nikic/iter.git",
  2970. "reference": "09cd930fa9ff55747f34c7184532a5a1bd2385b1"
  2971. },
  2972. "dist": {
  2973. "type": "zip",
  2974. "url": "https://api.github.com/repos/nikic/iter/zipball/09cd930fa9ff55747f34c7184532a5a1bd2385b1",
  2975. "reference": "09cd930fa9ff55747f34c7184532a5a1bd2385b1",
  2976. "shasum": ""
  2977. },
  2978. "require": {
  2979. "php": ">=7.1"
  2980. },
  2981. "require-dev": {
  2982. "phpstan/phpstan": "^1.4",
  2983. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2984. "vimeo/psalm": "^4.18 || ^5.13"
  2985. },
  2986. "type": "library",
  2987. "autoload": {
  2988. "files": [
  2989. "src/iter.func.php",
  2990. "src/iter.php",
  2991. "src/iter.rewindable.php"
  2992. ]
  2993. },
  2994. "notification-url": "https://packagist.org/downloads/",
  2995. "license": [
  2996. "BSD-3-Clause"
  2997. ],
  2998. "authors": [
  2999. {
  3000. "name": "Nikita Popov",
  3001. "email": "nikic@php.net"
  3002. }
  3003. ],
  3004. "description": "Iteration primitives using generators",
  3005. "keywords": [
  3006. "functional",
  3007. "generator",
  3008. "iterator"
  3009. ],
  3010. "support": {
  3011. "issues": "https://github.com/nikic/iter/issues",
  3012. "source": "https://github.com/nikic/iter/tree/v2.4.0"
  3013. },
  3014. "time": "2023-12-10T20:43:19+00:00"
  3015. },
  3016. {
  3017. "name": "nikic/php-parser",
  3018. "version": "v4.18.0",
  3019. "source": {
  3020. "type": "git",
  3021. "url": "https://github.com/nikic/PHP-Parser.git",
  3022. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999"
  3023. },
  3024. "dist": {
  3025. "type": "zip",
  3026. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  3027. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  3028. "shasum": ""
  3029. },
  3030. "require": {
  3031. "ext-tokenizer": "*",
  3032. "php": ">=7.0"
  3033. },
  3034. "require-dev": {
  3035. "ircmaxell/php-yacc": "^0.0.7",
  3036. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3037. },
  3038. "bin": [
  3039. "bin/php-parse"
  3040. ],
  3041. "type": "library",
  3042. "extra": {
  3043. "branch-alias": {
  3044. "dev-master": "4.9-dev"
  3045. }
  3046. },
  3047. "autoload": {
  3048. "psr-4": {
  3049. "PhpParser\\": "lib/PhpParser"
  3050. }
  3051. },
  3052. "notification-url": "https://packagist.org/downloads/",
  3053. "license": [
  3054. "BSD-3-Clause"
  3055. ],
  3056. "authors": [
  3057. {
  3058. "name": "Nikita Popov"
  3059. }
  3060. ],
  3061. "description": "A PHP parser written in PHP",
  3062. "keywords": [
  3063. "parser",
  3064. "php"
  3065. ],
  3066. "support": {
  3067. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3068. "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0"
  3069. },
  3070. "time": "2023-12-10T21:03:43+00:00"
  3071. },
  3072. {
  3073. "name": "nunomaduro/collision",
  3074. "version": "v7.10.0",
  3075. "source": {
  3076. "type": "git",
  3077. "url": "https://github.com/nunomaduro/collision.git",
  3078. "reference": "49ec67fa7b002712da8526678abd651c09f375b2"
  3079. },
  3080. "dist": {
  3081. "type": "zip",
  3082. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/49ec67fa7b002712da8526678abd651c09f375b2",
  3083. "reference": "49ec67fa7b002712da8526678abd651c09f375b2",
  3084. "shasum": ""
  3085. },
  3086. "require": {
  3087. "filp/whoops": "^2.15.3",
  3088. "nunomaduro/termwind": "^1.15.1",
  3089. "php": "^8.1.0",
  3090. "symfony/console": "^6.3.4"
  3091. },
  3092. "conflict": {
  3093. "laravel/framework": ">=11.0.0"
  3094. },
  3095. "require-dev": {
  3096. "brianium/paratest": "^7.3.0",
  3097. "laravel/framework": "^10.28.0",
  3098. "laravel/pint": "^1.13.3",
  3099. "laravel/sail": "^1.25.0",
  3100. "laravel/sanctum": "^3.3.1",
  3101. "laravel/tinker": "^2.8.2",
  3102. "nunomaduro/larastan": "^2.6.4",
  3103. "orchestra/testbench-core": "^8.13.0",
  3104. "pestphp/pest": "^2.23.2",
  3105. "phpunit/phpunit": "^10.4.1",
  3106. "sebastian/environment": "^6.0.1",
  3107. "spatie/laravel-ignition": "^2.3.1"
  3108. },
  3109. "type": "library",
  3110. "extra": {
  3111. "laravel": {
  3112. "providers": [
  3113. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  3114. ]
  3115. }
  3116. },
  3117. "autoload": {
  3118. "files": [
  3119. "./src/Adapters/Phpunit/Autoload.php"
  3120. ],
  3121. "psr-4": {
  3122. "NunoMaduro\\Collision\\": "src/"
  3123. }
  3124. },
  3125. "notification-url": "https://packagist.org/downloads/",
  3126. "license": [
  3127. "MIT"
  3128. ],
  3129. "authors": [
  3130. {
  3131. "name": "Nuno Maduro",
  3132. "email": "enunomaduro@gmail.com"
  3133. }
  3134. ],
  3135. "description": "Cli error handling for console/command-line PHP applications.",
  3136. "keywords": [
  3137. "artisan",
  3138. "cli",
  3139. "command-line",
  3140. "console",
  3141. "error",
  3142. "handling",
  3143. "laravel",
  3144. "laravel-zero",
  3145. "php",
  3146. "symfony"
  3147. ],
  3148. "support": {
  3149. "issues": "https://github.com/nunomaduro/collision/issues",
  3150. "source": "https://github.com/nunomaduro/collision"
  3151. },
  3152. "funding": [
  3153. {
  3154. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3155. "type": "custom"
  3156. },
  3157. {
  3158. "url": "https://github.com/nunomaduro",
  3159. "type": "github"
  3160. },
  3161. {
  3162. "url": "https://www.patreon.com/nunomaduro",
  3163. "type": "patreon"
  3164. }
  3165. ],
  3166. "time": "2023-10-11T15:45:01+00:00"
  3167. },
  3168. {
  3169. "name": "nunomaduro/termwind",
  3170. "version": "v1.15.1",
  3171. "source": {
  3172. "type": "git",
  3173. "url": "https://github.com/nunomaduro/termwind.git",
  3174. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  3175. },
  3176. "dist": {
  3177. "type": "zip",
  3178. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3179. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3180. "shasum": ""
  3181. },
  3182. "require": {
  3183. "ext-mbstring": "*",
  3184. "php": "^8.0",
  3185. "symfony/console": "^5.3.0|^6.0.0"
  3186. },
  3187. "require-dev": {
  3188. "ergebnis/phpstan-rules": "^1.0.",
  3189. "illuminate/console": "^8.0|^9.0",
  3190. "illuminate/support": "^8.0|^9.0",
  3191. "laravel/pint": "^1.0.0",
  3192. "pestphp/pest": "^1.21.0",
  3193. "pestphp/pest-plugin-mock": "^1.0",
  3194. "phpstan/phpstan": "^1.4.6",
  3195. "phpstan/phpstan-strict-rules": "^1.1.0",
  3196. "symfony/var-dumper": "^5.2.7|^6.0.0",
  3197. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3198. },
  3199. "type": "library",
  3200. "extra": {
  3201. "laravel": {
  3202. "providers": [
  3203. "Termwind\\Laravel\\TermwindServiceProvider"
  3204. ]
  3205. }
  3206. },
  3207. "autoload": {
  3208. "files": [
  3209. "src/Functions.php"
  3210. ],
  3211. "psr-4": {
  3212. "Termwind\\": "src/"
  3213. }
  3214. },
  3215. "notification-url": "https://packagist.org/downloads/",
  3216. "license": [
  3217. "MIT"
  3218. ],
  3219. "authors": [
  3220. {
  3221. "name": "Nuno Maduro",
  3222. "email": "enunomaduro@gmail.com"
  3223. }
  3224. ],
  3225. "description": "Its like Tailwind CSS, but for the console.",
  3226. "keywords": [
  3227. "cli",
  3228. "console",
  3229. "css",
  3230. "package",
  3231. "php",
  3232. "style"
  3233. ],
  3234. "support": {
  3235. "issues": "https://github.com/nunomaduro/termwind/issues",
  3236. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  3237. },
  3238. "funding": [
  3239. {
  3240. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3241. "type": "custom"
  3242. },
  3243. {
  3244. "url": "https://github.com/nunomaduro",
  3245. "type": "github"
  3246. },
  3247. {
  3248. "url": "https://github.com/xiCO2k",
  3249. "type": "github"
  3250. }
  3251. ],
  3252. "time": "2023-02-08T01:06:31+00:00"
  3253. },
  3254. {
  3255. "name": "paragonie/constant_time_encoding",
  3256. "version": "v2.6.3",
  3257. "source": {
  3258. "type": "git",
  3259. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3260. "reference": "58c3f47f650c94ec05a151692652a868995d2938"
  3261. },
  3262. "dist": {
  3263. "type": "zip",
  3264. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938",
  3265. "reference": "58c3f47f650c94ec05a151692652a868995d2938",
  3266. "shasum": ""
  3267. },
  3268. "require": {
  3269. "php": "^7|^8"
  3270. },
  3271. "require-dev": {
  3272. "phpunit/phpunit": "^6|^7|^8|^9",
  3273. "vimeo/psalm": "^1|^2|^3|^4"
  3274. },
  3275. "type": "library",
  3276. "autoload": {
  3277. "psr-4": {
  3278. "ParagonIE\\ConstantTime\\": "src/"
  3279. }
  3280. },
  3281. "notification-url": "https://packagist.org/downloads/",
  3282. "license": [
  3283. "MIT"
  3284. ],
  3285. "authors": [
  3286. {
  3287. "name": "Paragon Initiative Enterprises",
  3288. "email": "security@paragonie.com",
  3289. "homepage": "https://paragonie.com",
  3290. "role": "Maintainer"
  3291. },
  3292. {
  3293. "name": "Steve 'Sc00bz' Thomas",
  3294. "email": "steve@tobtu.com",
  3295. "homepage": "https://www.tobtu.com",
  3296. "role": "Original Developer"
  3297. }
  3298. ],
  3299. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3300. "keywords": [
  3301. "base16",
  3302. "base32",
  3303. "base32_decode",
  3304. "base32_encode",
  3305. "base64",
  3306. "base64_decode",
  3307. "base64_encode",
  3308. "bin2hex",
  3309. "encoding",
  3310. "hex",
  3311. "hex2bin",
  3312. "rfc4648"
  3313. ],
  3314. "support": {
  3315. "email": "info@paragonie.com",
  3316. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3317. "source": "https://github.com/paragonie/constant_time_encoding"
  3318. },
  3319. "time": "2022-06-14T06:56:20+00:00"
  3320. },
  3321. {
  3322. "name": "phar-io/manifest",
  3323. "version": "2.0.3",
  3324. "source": {
  3325. "type": "git",
  3326. "url": "https://github.com/phar-io/manifest.git",
  3327. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  3328. },
  3329. "dist": {
  3330. "type": "zip",
  3331. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  3332. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  3333. "shasum": ""
  3334. },
  3335. "require": {
  3336. "ext-dom": "*",
  3337. "ext-phar": "*",
  3338. "ext-xmlwriter": "*",
  3339. "phar-io/version": "^3.0.1",
  3340. "php": "^7.2 || ^8.0"
  3341. },
  3342. "type": "library",
  3343. "extra": {
  3344. "branch-alias": {
  3345. "dev-master": "2.0.x-dev"
  3346. }
  3347. },
  3348. "autoload": {
  3349. "classmap": [
  3350. "src/"
  3351. ]
  3352. },
  3353. "notification-url": "https://packagist.org/downloads/",
  3354. "license": [
  3355. "BSD-3-Clause"
  3356. ],
  3357. "authors": [
  3358. {
  3359. "name": "Arne Blankerts",
  3360. "email": "arne@blankerts.de",
  3361. "role": "Developer"
  3362. },
  3363. {
  3364. "name": "Sebastian Heuer",
  3365. "email": "sebastian@phpeople.de",
  3366. "role": "Developer"
  3367. },
  3368. {
  3369. "name": "Sebastian Bergmann",
  3370. "email": "sebastian@phpunit.de",
  3371. "role": "Developer"
  3372. }
  3373. ],
  3374. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  3375. "support": {
  3376. "issues": "https://github.com/phar-io/manifest/issues",
  3377. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  3378. },
  3379. "time": "2021-07-20T11:28:43+00:00"
  3380. },
  3381. {
  3382. "name": "phar-io/version",
  3383. "version": "3.2.1",
  3384. "source": {
  3385. "type": "git",
  3386. "url": "https://github.com/phar-io/version.git",
  3387. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  3388. },
  3389. "dist": {
  3390. "type": "zip",
  3391. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  3392. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  3393. "shasum": ""
  3394. },
  3395. "require": {
  3396. "php": "^7.2 || ^8.0"
  3397. },
  3398. "type": "library",
  3399. "autoload": {
  3400. "classmap": [
  3401. "src/"
  3402. ]
  3403. },
  3404. "notification-url": "https://packagist.org/downloads/",
  3405. "license": [
  3406. "BSD-3-Clause"
  3407. ],
  3408. "authors": [
  3409. {
  3410. "name": "Arne Blankerts",
  3411. "email": "arne@blankerts.de",
  3412. "role": "Developer"
  3413. },
  3414. {
  3415. "name": "Sebastian Heuer",
  3416. "email": "sebastian@phpeople.de",
  3417. "role": "Developer"
  3418. },
  3419. {
  3420. "name": "Sebastian Bergmann",
  3421. "email": "sebastian@phpunit.de",
  3422. "role": "Developer"
  3423. }
  3424. ],
  3425. "description": "Library for handling version information and constraints",
  3426. "support": {
  3427. "issues": "https://github.com/phar-io/version/issues",
  3428. "source": "https://github.com/phar-io/version/tree/3.2.1"
  3429. },
  3430. "time": "2022-02-21T01:04:05+00:00"
  3431. },
  3432. {
  3433. "name": "phpdocumentor/reflection-common",
  3434. "version": "2.2.0",
  3435. "source": {
  3436. "type": "git",
  3437. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3438. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3439. },
  3440. "dist": {
  3441. "type": "zip",
  3442. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3443. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3444. "shasum": ""
  3445. },
  3446. "require": {
  3447. "php": "^7.2 || ^8.0"
  3448. },
  3449. "type": "library",
  3450. "extra": {
  3451. "branch-alias": {
  3452. "dev-2.x": "2.x-dev"
  3453. }
  3454. },
  3455. "autoload": {
  3456. "psr-4": {
  3457. "phpDocumentor\\Reflection\\": "src/"
  3458. }
  3459. },
  3460. "notification-url": "https://packagist.org/downloads/",
  3461. "license": [
  3462. "MIT"
  3463. ],
  3464. "authors": [
  3465. {
  3466. "name": "Jaap van Otterdijk",
  3467. "email": "opensource@ijaap.nl"
  3468. }
  3469. ],
  3470. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3471. "homepage": "http://www.phpdoc.org",
  3472. "keywords": [
  3473. "FQSEN",
  3474. "phpDocumentor",
  3475. "phpdoc",
  3476. "reflection",
  3477. "static analysis"
  3478. ],
  3479. "support": {
  3480. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  3481. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  3482. },
  3483. "time": "2020-06-27T09:03:43+00:00"
  3484. },
  3485. {
  3486. "name": "phpdocumentor/reflection-docblock",
  3487. "version": "5.3.0",
  3488. "source": {
  3489. "type": "git",
  3490. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3491. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  3492. },
  3493. "dist": {
  3494. "type": "zip",
  3495. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  3496. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  3497. "shasum": ""
  3498. },
  3499. "require": {
  3500. "ext-filter": "*",
  3501. "php": "^7.2 || ^8.0",
  3502. "phpdocumentor/reflection-common": "^2.2",
  3503. "phpdocumentor/type-resolver": "^1.3",
  3504. "webmozart/assert": "^1.9.1"
  3505. },
  3506. "require-dev": {
  3507. "mockery/mockery": "~1.3.2",
  3508. "psalm/phar": "^4.8"
  3509. },
  3510. "type": "library",
  3511. "extra": {
  3512. "branch-alias": {
  3513. "dev-master": "5.x-dev"
  3514. }
  3515. },
  3516. "autoload": {
  3517. "psr-4": {
  3518. "phpDocumentor\\Reflection\\": "src"
  3519. }
  3520. },
  3521. "notification-url": "https://packagist.org/downloads/",
  3522. "license": [
  3523. "MIT"
  3524. ],
  3525. "authors": [
  3526. {
  3527. "name": "Mike van Riel",
  3528. "email": "me@mikevanriel.com"
  3529. },
  3530. {
  3531. "name": "Jaap van Otterdijk",
  3532. "email": "account@ijaap.nl"
  3533. }
  3534. ],
  3535. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3536. "support": {
  3537. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  3538. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  3539. },
  3540. "time": "2021-10-19T17:43:47+00:00"
  3541. },
  3542. {
  3543. "name": "phpdocumentor/type-resolver",
  3544. "version": "1.8.0",
  3545. "source": {
  3546. "type": "git",
  3547. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3548. "reference": "fad452781b3d774e3337b0c0b245dd8e5a4455fc"
  3549. },
  3550. "dist": {
  3551. "type": "zip",
  3552. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/fad452781b3d774e3337b0c0b245dd8e5a4455fc",
  3553. "reference": "fad452781b3d774e3337b0c0b245dd8e5a4455fc",
  3554. "shasum": ""
  3555. },
  3556. "require": {
  3557. "doctrine/deprecations": "^1.0",
  3558. "php": "^7.4 || ^8.0",
  3559. "phpdocumentor/reflection-common": "^2.0",
  3560. "phpstan/phpdoc-parser": "^1.13"
  3561. },
  3562. "require-dev": {
  3563. "ext-tokenizer": "*",
  3564. "phpbench/phpbench": "^1.2",
  3565. "phpstan/extension-installer": "^1.1",
  3566. "phpstan/phpstan": "^1.8",
  3567. "phpstan/phpstan-phpunit": "^1.1",
  3568. "phpunit/phpunit": "^9.5",
  3569. "rector/rector": "^0.13.9",
  3570. "vimeo/psalm": "^4.25"
  3571. },
  3572. "type": "library",
  3573. "extra": {
  3574. "branch-alias": {
  3575. "dev-1.x": "1.x-dev"
  3576. }
  3577. },
  3578. "autoload": {
  3579. "psr-4": {
  3580. "phpDocumentor\\Reflection\\": "src"
  3581. }
  3582. },
  3583. "notification-url": "https://packagist.org/downloads/",
  3584. "license": [
  3585. "MIT"
  3586. ],
  3587. "authors": [
  3588. {
  3589. "name": "Mike van Riel",
  3590. "email": "me@mikevanriel.com"
  3591. }
  3592. ],
  3593. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  3594. "support": {
  3595. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  3596. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.0"
  3597. },
  3598. "time": "2024-01-11T11:49:22+00:00"
  3599. },
  3600. {
  3601. "name": "phpstan/phpdoc-parser",
  3602. "version": "1.25.0",
  3603. "source": {
  3604. "type": "git",
  3605. "url": "https://github.com/phpstan/phpdoc-parser.git",
  3606. "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240"
  3607. },
  3608. "dist": {
  3609. "type": "zip",
  3610. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/bd84b629c8de41aa2ae82c067c955e06f1b00240",
  3611. "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240",
  3612. "shasum": ""
  3613. },
  3614. "require": {
  3615. "php": "^7.2 || ^8.0"
  3616. },
  3617. "require-dev": {
  3618. "doctrine/annotations": "^2.0",
  3619. "nikic/php-parser": "^4.15",
  3620. "php-parallel-lint/php-parallel-lint": "^1.2",
  3621. "phpstan/extension-installer": "^1.0",
  3622. "phpstan/phpstan": "^1.5",
  3623. "phpstan/phpstan-phpunit": "^1.1",
  3624. "phpstan/phpstan-strict-rules": "^1.0",
  3625. "phpunit/phpunit": "^9.5",
  3626. "symfony/process": "^5.2"
  3627. },
  3628. "type": "library",
  3629. "autoload": {
  3630. "psr-4": {
  3631. "PHPStan\\PhpDocParser\\": [
  3632. "src/"
  3633. ]
  3634. }
  3635. },
  3636. "notification-url": "https://packagist.org/downloads/",
  3637. "license": [
  3638. "MIT"
  3639. ],
  3640. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  3641. "support": {
  3642. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  3643. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.25.0"
  3644. },
  3645. "time": "2024-01-04T17:06:16+00:00"
  3646. },
  3647. {
  3648. "name": "phpstan/phpstan",
  3649. "version": "1.10.58",
  3650. "source": {
  3651. "type": "git",
  3652. "url": "https://github.com/phpstan/phpstan.git",
  3653. "reference": "a23518379ec4defd9e47cbf81019526861623ec2"
  3654. },
  3655. "dist": {
  3656. "type": "zip",
  3657. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/a23518379ec4defd9e47cbf81019526861623ec2",
  3658. "reference": "a23518379ec4defd9e47cbf81019526861623ec2",
  3659. "shasum": ""
  3660. },
  3661. "require": {
  3662. "php": "^7.2|^8.0"
  3663. },
  3664. "conflict": {
  3665. "phpstan/phpstan-shim": "*"
  3666. },
  3667. "bin": [
  3668. "phpstan",
  3669. "phpstan.phar"
  3670. ],
  3671. "type": "library",
  3672. "autoload": {
  3673. "files": [
  3674. "bootstrap.php"
  3675. ]
  3676. },
  3677. "notification-url": "https://packagist.org/downloads/",
  3678. "license": [
  3679. "MIT"
  3680. ],
  3681. "description": "PHPStan - PHP Static Analysis Tool",
  3682. "keywords": [
  3683. "dev",
  3684. "static analysis"
  3685. ],
  3686. "support": {
  3687. "docs": "https://phpstan.org/user-guide/getting-started",
  3688. "forum": "https://github.com/phpstan/phpstan/discussions",
  3689. "issues": "https://github.com/phpstan/phpstan/issues",
  3690. "security": "https://github.com/phpstan/phpstan/security/policy",
  3691. "source": "https://github.com/phpstan/phpstan-src"
  3692. },
  3693. "funding": [
  3694. {
  3695. "url": "https://github.com/ondrejmirtes",
  3696. "type": "github"
  3697. },
  3698. {
  3699. "url": "https://github.com/phpstan",
  3700. "type": "github"
  3701. },
  3702. {
  3703. "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
  3704. "type": "tidelift"
  3705. }
  3706. ],
  3707. "time": "2024-02-12T20:02:57+00:00"
  3708. },
  3709. {
  3710. "name": "phpunit/php-code-coverage",
  3711. "version": "9.2.30",
  3712. "source": {
  3713. "type": "git",
  3714. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3715. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  3716. },
  3717. "dist": {
  3718. "type": "zip",
  3719. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  3720. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  3721. "shasum": ""
  3722. },
  3723. "require": {
  3724. "ext-dom": "*",
  3725. "ext-libxml": "*",
  3726. "ext-xmlwriter": "*",
  3727. "nikic/php-parser": "^4.18 || ^5.0",
  3728. "php": ">=7.3",
  3729. "phpunit/php-file-iterator": "^3.0.3",
  3730. "phpunit/php-text-template": "^2.0.2",
  3731. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  3732. "sebastian/complexity": "^2.0",
  3733. "sebastian/environment": "^5.1.2",
  3734. "sebastian/lines-of-code": "^1.0.3",
  3735. "sebastian/version": "^3.0.1",
  3736. "theseer/tokenizer": "^1.2.0"
  3737. },
  3738. "require-dev": {
  3739. "phpunit/phpunit": "^9.3"
  3740. },
  3741. "suggest": {
  3742. "ext-pcov": "PHP extension that provides line coverage",
  3743. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  3744. },
  3745. "type": "library",
  3746. "extra": {
  3747. "branch-alias": {
  3748. "dev-master": "9.2-dev"
  3749. }
  3750. },
  3751. "autoload": {
  3752. "classmap": [
  3753. "src/"
  3754. ]
  3755. },
  3756. "notification-url": "https://packagist.org/downloads/",
  3757. "license": [
  3758. "BSD-3-Clause"
  3759. ],
  3760. "authors": [
  3761. {
  3762. "name": "Sebastian Bergmann",
  3763. "email": "sebastian@phpunit.de",
  3764. "role": "lead"
  3765. }
  3766. ],
  3767. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3768. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3769. "keywords": [
  3770. "coverage",
  3771. "testing",
  3772. "xunit"
  3773. ],
  3774. "support": {
  3775. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  3776. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  3777. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  3778. },
  3779. "funding": [
  3780. {
  3781. "url": "https://github.com/sebastianbergmann",
  3782. "type": "github"
  3783. }
  3784. ],
  3785. "time": "2023-12-22T06:47:57+00:00"
  3786. },
  3787. {
  3788. "name": "phpunit/php-file-iterator",
  3789. "version": "3.0.6",
  3790. "source": {
  3791. "type": "git",
  3792. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3793. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  3794. },
  3795. "dist": {
  3796. "type": "zip",
  3797. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  3798. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  3799. "shasum": ""
  3800. },
  3801. "require": {
  3802. "php": ">=7.3"
  3803. },
  3804. "require-dev": {
  3805. "phpunit/phpunit": "^9.3"
  3806. },
  3807. "type": "library",
  3808. "extra": {
  3809. "branch-alias": {
  3810. "dev-master": "3.0-dev"
  3811. }
  3812. },
  3813. "autoload": {
  3814. "classmap": [
  3815. "src/"
  3816. ]
  3817. },
  3818. "notification-url": "https://packagist.org/downloads/",
  3819. "license": [
  3820. "BSD-3-Clause"
  3821. ],
  3822. "authors": [
  3823. {
  3824. "name": "Sebastian Bergmann",
  3825. "email": "sebastian@phpunit.de",
  3826. "role": "lead"
  3827. }
  3828. ],
  3829. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3830. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3831. "keywords": [
  3832. "filesystem",
  3833. "iterator"
  3834. ],
  3835. "support": {
  3836. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  3837. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  3838. },
  3839. "funding": [
  3840. {
  3841. "url": "https://github.com/sebastianbergmann",
  3842. "type": "github"
  3843. }
  3844. ],
  3845. "time": "2021-12-02T12:48:52+00:00"
  3846. },
  3847. {
  3848. "name": "phpunit/php-invoker",
  3849. "version": "3.1.1",
  3850. "source": {
  3851. "type": "git",
  3852. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  3853. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  3854. },
  3855. "dist": {
  3856. "type": "zip",
  3857. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  3858. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  3859. "shasum": ""
  3860. },
  3861. "require": {
  3862. "php": ">=7.3"
  3863. },
  3864. "require-dev": {
  3865. "ext-pcntl": "*",
  3866. "phpunit/phpunit": "^9.3"
  3867. },
  3868. "suggest": {
  3869. "ext-pcntl": "*"
  3870. },
  3871. "type": "library",
  3872. "extra": {
  3873. "branch-alias": {
  3874. "dev-master": "3.1-dev"
  3875. }
  3876. },
  3877. "autoload": {
  3878. "classmap": [
  3879. "src/"
  3880. ]
  3881. },
  3882. "notification-url": "https://packagist.org/downloads/",
  3883. "license": [
  3884. "BSD-3-Clause"
  3885. ],
  3886. "authors": [
  3887. {
  3888. "name": "Sebastian Bergmann",
  3889. "email": "sebastian@phpunit.de",
  3890. "role": "lead"
  3891. }
  3892. ],
  3893. "description": "Invoke callables with a timeout",
  3894. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  3895. "keywords": [
  3896. "process"
  3897. ],
  3898. "support": {
  3899. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  3900. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  3901. },
  3902. "funding": [
  3903. {
  3904. "url": "https://github.com/sebastianbergmann",
  3905. "type": "github"
  3906. }
  3907. ],
  3908. "time": "2020-09-28T05:58:55+00:00"
  3909. },
  3910. {
  3911. "name": "phpunit/php-text-template",
  3912. "version": "2.0.4",
  3913. "source": {
  3914. "type": "git",
  3915. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3916. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  3917. },
  3918. "dist": {
  3919. "type": "zip",
  3920. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  3921. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  3922. "shasum": ""
  3923. },
  3924. "require": {
  3925. "php": ">=7.3"
  3926. },
  3927. "require-dev": {
  3928. "phpunit/phpunit": "^9.3"
  3929. },
  3930. "type": "library",
  3931. "extra": {
  3932. "branch-alias": {
  3933. "dev-master": "2.0-dev"
  3934. }
  3935. },
  3936. "autoload": {
  3937. "classmap": [
  3938. "src/"
  3939. ]
  3940. },
  3941. "notification-url": "https://packagist.org/downloads/",
  3942. "license": [
  3943. "BSD-3-Clause"
  3944. ],
  3945. "authors": [
  3946. {
  3947. "name": "Sebastian Bergmann",
  3948. "email": "sebastian@phpunit.de",
  3949. "role": "lead"
  3950. }
  3951. ],
  3952. "description": "Simple template engine.",
  3953. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  3954. "keywords": [
  3955. "template"
  3956. ],
  3957. "support": {
  3958. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  3959. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  3960. },
  3961. "funding": [
  3962. {
  3963. "url": "https://github.com/sebastianbergmann",
  3964. "type": "github"
  3965. }
  3966. ],
  3967. "time": "2020-10-26T05:33:50+00:00"
  3968. },
  3969. {
  3970. "name": "phpunit/php-timer",
  3971. "version": "5.0.3",
  3972. "source": {
  3973. "type": "git",
  3974. "url": "https://github.com/sebastianbergmann/php-timer.git",
  3975. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  3976. },
  3977. "dist": {
  3978. "type": "zip",
  3979. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  3980. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  3981. "shasum": ""
  3982. },
  3983. "require": {
  3984. "php": ">=7.3"
  3985. },
  3986. "require-dev": {
  3987. "phpunit/phpunit": "^9.3"
  3988. },
  3989. "type": "library",
  3990. "extra": {
  3991. "branch-alias": {
  3992. "dev-master": "5.0-dev"
  3993. }
  3994. },
  3995. "autoload": {
  3996. "classmap": [
  3997. "src/"
  3998. ]
  3999. },
  4000. "notification-url": "https://packagist.org/downloads/",
  4001. "license": [
  4002. "BSD-3-Clause"
  4003. ],
  4004. "authors": [
  4005. {
  4006. "name": "Sebastian Bergmann",
  4007. "email": "sebastian@phpunit.de",
  4008. "role": "lead"
  4009. }
  4010. ],
  4011. "description": "Utility class for timing",
  4012. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4013. "keywords": [
  4014. "timer"
  4015. ],
  4016. "support": {
  4017. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  4018. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  4019. },
  4020. "funding": [
  4021. {
  4022. "url": "https://github.com/sebastianbergmann",
  4023. "type": "github"
  4024. }
  4025. ],
  4026. "time": "2020-10-26T13:16:10+00:00"
  4027. },
  4028. {
  4029. "name": "phpunit/phpunit",
  4030. "version": "9.6.16",
  4031. "source": {
  4032. "type": "git",
  4033. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4034. "reference": "3767b2c56ce02d01e3491046f33466a1ae60a37f"
  4035. },
  4036. "dist": {
  4037. "type": "zip",
  4038. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3767b2c56ce02d01e3491046f33466a1ae60a37f",
  4039. "reference": "3767b2c56ce02d01e3491046f33466a1ae60a37f",
  4040. "shasum": ""
  4041. },
  4042. "require": {
  4043. "doctrine/instantiator": "^1.3.1 || ^2",
  4044. "ext-dom": "*",
  4045. "ext-json": "*",
  4046. "ext-libxml": "*",
  4047. "ext-mbstring": "*",
  4048. "ext-xml": "*",
  4049. "ext-xmlwriter": "*",
  4050. "myclabs/deep-copy": "^1.10.1",
  4051. "phar-io/manifest": "^2.0.3",
  4052. "phar-io/version": "^3.0.2",
  4053. "php": ">=7.3",
  4054. "phpunit/php-code-coverage": "^9.2.28",
  4055. "phpunit/php-file-iterator": "^3.0.5",
  4056. "phpunit/php-invoker": "^3.1.1",
  4057. "phpunit/php-text-template": "^2.0.3",
  4058. "phpunit/php-timer": "^5.0.2",
  4059. "sebastian/cli-parser": "^1.0.1",
  4060. "sebastian/code-unit": "^1.0.6",
  4061. "sebastian/comparator": "^4.0.8",
  4062. "sebastian/diff": "^4.0.3",
  4063. "sebastian/environment": "^5.1.3",
  4064. "sebastian/exporter": "^4.0.5",
  4065. "sebastian/global-state": "^5.0.1",
  4066. "sebastian/object-enumerator": "^4.0.3",
  4067. "sebastian/resource-operations": "^3.0.3",
  4068. "sebastian/type": "^3.2",
  4069. "sebastian/version": "^3.0.2"
  4070. },
  4071. "suggest": {
  4072. "ext-soap": "To be able to generate mocks based on WSDL files",
  4073. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  4074. },
  4075. "bin": [
  4076. "phpunit"
  4077. ],
  4078. "type": "library",
  4079. "extra": {
  4080. "branch-alias": {
  4081. "dev-master": "9.6-dev"
  4082. }
  4083. },
  4084. "autoload": {
  4085. "files": [
  4086. "src/Framework/Assert/Functions.php"
  4087. ],
  4088. "classmap": [
  4089. "src/"
  4090. ]
  4091. },
  4092. "notification-url": "https://packagist.org/downloads/",
  4093. "license": [
  4094. "BSD-3-Clause"
  4095. ],
  4096. "authors": [
  4097. {
  4098. "name": "Sebastian Bergmann",
  4099. "email": "sebastian@phpunit.de",
  4100. "role": "lead"
  4101. }
  4102. ],
  4103. "description": "The PHP Unit Testing framework.",
  4104. "homepage": "https://phpunit.de/",
  4105. "keywords": [
  4106. "phpunit",
  4107. "testing",
  4108. "xunit"
  4109. ],
  4110. "support": {
  4111. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  4112. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  4113. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.16"
  4114. },
  4115. "funding": [
  4116. {
  4117. "url": "https://phpunit.de/sponsors.html",
  4118. "type": "custom"
  4119. },
  4120. {
  4121. "url": "https://github.com/sebastianbergmann",
  4122. "type": "github"
  4123. },
  4124. {
  4125. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  4126. "type": "tidelift"
  4127. }
  4128. ],
  4129. "time": "2024-01-19T07:03:14+00:00"
  4130. },
  4131. {
  4132. "name": "psr/event-dispatcher",
  4133. "version": "1.0.0",
  4134. "source": {
  4135. "type": "git",
  4136. "url": "https://github.com/php-fig/event-dispatcher.git",
  4137. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4138. },
  4139. "dist": {
  4140. "type": "zip",
  4141. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4142. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4143. "shasum": ""
  4144. },
  4145. "require": {
  4146. "php": ">=7.2.0"
  4147. },
  4148. "type": "library",
  4149. "extra": {
  4150. "branch-alias": {
  4151. "dev-master": "1.0.x-dev"
  4152. }
  4153. },
  4154. "autoload": {
  4155. "psr-4": {
  4156. "Psr\\EventDispatcher\\": "src/"
  4157. }
  4158. },
  4159. "notification-url": "https://packagist.org/downloads/",
  4160. "license": [
  4161. "MIT"
  4162. ],
  4163. "authors": [
  4164. {
  4165. "name": "PHP-FIG",
  4166. "homepage": "http://www.php-fig.org/"
  4167. }
  4168. ],
  4169. "description": "Standard interfaces for event handling.",
  4170. "keywords": [
  4171. "events",
  4172. "psr",
  4173. "psr-14"
  4174. ],
  4175. "support": {
  4176. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4177. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4178. },
  4179. "time": "2019-01-08T18:20:26+00:00"
  4180. },
  4181. {
  4182. "name": "sebastian/cli-parser",
  4183. "version": "1.0.1",
  4184. "source": {
  4185. "type": "git",
  4186. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  4187. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  4188. },
  4189. "dist": {
  4190. "type": "zip",
  4191. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  4192. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  4193. "shasum": ""
  4194. },
  4195. "require": {
  4196. "php": ">=7.3"
  4197. },
  4198. "require-dev": {
  4199. "phpunit/phpunit": "^9.3"
  4200. },
  4201. "type": "library",
  4202. "extra": {
  4203. "branch-alias": {
  4204. "dev-master": "1.0-dev"
  4205. }
  4206. },
  4207. "autoload": {
  4208. "classmap": [
  4209. "src/"
  4210. ]
  4211. },
  4212. "notification-url": "https://packagist.org/downloads/",
  4213. "license": [
  4214. "BSD-3-Clause"
  4215. ],
  4216. "authors": [
  4217. {
  4218. "name": "Sebastian Bergmann",
  4219. "email": "sebastian@phpunit.de",
  4220. "role": "lead"
  4221. }
  4222. ],
  4223. "description": "Library for parsing CLI options",
  4224. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  4225. "support": {
  4226. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  4227. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  4228. },
  4229. "funding": [
  4230. {
  4231. "url": "https://github.com/sebastianbergmann",
  4232. "type": "github"
  4233. }
  4234. ],
  4235. "time": "2020-09-28T06:08:49+00:00"
  4236. },
  4237. {
  4238. "name": "sebastian/code-unit",
  4239. "version": "1.0.8",
  4240. "source": {
  4241. "type": "git",
  4242. "url": "https://github.com/sebastianbergmann/code-unit.git",
  4243. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  4244. },
  4245. "dist": {
  4246. "type": "zip",
  4247. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  4248. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  4249. "shasum": ""
  4250. },
  4251. "require": {
  4252. "php": ">=7.3"
  4253. },
  4254. "require-dev": {
  4255. "phpunit/phpunit": "^9.3"
  4256. },
  4257. "type": "library",
  4258. "extra": {
  4259. "branch-alias": {
  4260. "dev-master": "1.0-dev"
  4261. }
  4262. },
  4263. "autoload": {
  4264. "classmap": [
  4265. "src/"
  4266. ]
  4267. },
  4268. "notification-url": "https://packagist.org/downloads/",
  4269. "license": [
  4270. "BSD-3-Clause"
  4271. ],
  4272. "authors": [
  4273. {
  4274. "name": "Sebastian Bergmann",
  4275. "email": "sebastian@phpunit.de",
  4276. "role": "lead"
  4277. }
  4278. ],
  4279. "description": "Collection of value objects that represent the PHP code units",
  4280. "homepage": "https://github.com/sebastianbergmann/code-unit",
  4281. "support": {
  4282. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  4283. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  4284. },
  4285. "funding": [
  4286. {
  4287. "url": "https://github.com/sebastianbergmann",
  4288. "type": "github"
  4289. }
  4290. ],
  4291. "time": "2020-10-26T13:08:54+00:00"
  4292. },
  4293. {
  4294. "name": "sebastian/code-unit-reverse-lookup",
  4295. "version": "2.0.3",
  4296. "source": {
  4297. "type": "git",
  4298. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  4299. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  4300. },
  4301. "dist": {
  4302. "type": "zip",
  4303. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  4304. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  4305. "shasum": ""
  4306. },
  4307. "require": {
  4308. "php": ">=7.3"
  4309. },
  4310. "require-dev": {
  4311. "phpunit/phpunit": "^9.3"
  4312. },
  4313. "type": "library",
  4314. "extra": {
  4315. "branch-alias": {
  4316. "dev-master": "2.0-dev"
  4317. }
  4318. },
  4319. "autoload": {
  4320. "classmap": [
  4321. "src/"
  4322. ]
  4323. },
  4324. "notification-url": "https://packagist.org/downloads/",
  4325. "license": [
  4326. "BSD-3-Clause"
  4327. ],
  4328. "authors": [
  4329. {
  4330. "name": "Sebastian Bergmann",
  4331. "email": "sebastian@phpunit.de"
  4332. }
  4333. ],
  4334. "description": "Looks up which function or method a line of code belongs to",
  4335. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4336. "support": {
  4337. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  4338. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  4339. },
  4340. "funding": [
  4341. {
  4342. "url": "https://github.com/sebastianbergmann",
  4343. "type": "github"
  4344. }
  4345. ],
  4346. "time": "2020-09-28T05:30:19+00:00"
  4347. },
  4348. {
  4349. "name": "sebastian/comparator",
  4350. "version": "4.0.8",
  4351. "source": {
  4352. "type": "git",
  4353. "url": "https://github.com/sebastianbergmann/comparator.git",
  4354. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  4355. },
  4356. "dist": {
  4357. "type": "zip",
  4358. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  4359. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  4360. "shasum": ""
  4361. },
  4362. "require": {
  4363. "php": ">=7.3",
  4364. "sebastian/diff": "^4.0",
  4365. "sebastian/exporter": "^4.0"
  4366. },
  4367. "require-dev": {
  4368. "phpunit/phpunit": "^9.3"
  4369. },
  4370. "type": "library",
  4371. "extra": {
  4372. "branch-alias": {
  4373. "dev-master": "4.0-dev"
  4374. }
  4375. },
  4376. "autoload": {
  4377. "classmap": [
  4378. "src/"
  4379. ]
  4380. },
  4381. "notification-url": "https://packagist.org/downloads/",
  4382. "license": [
  4383. "BSD-3-Clause"
  4384. ],
  4385. "authors": [
  4386. {
  4387. "name": "Sebastian Bergmann",
  4388. "email": "sebastian@phpunit.de"
  4389. },
  4390. {
  4391. "name": "Jeff Welch",
  4392. "email": "whatthejeff@gmail.com"
  4393. },
  4394. {
  4395. "name": "Volker Dusch",
  4396. "email": "github@wallbash.com"
  4397. },
  4398. {
  4399. "name": "Bernhard Schussek",
  4400. "email": "bschussek@2bepublished.at"
  4401. }
  4402. ],
  4403. "description": "Provides the functionality to compare PHP values for equality",
  4404. "homepage": "https://github.com/sebastianbergmann/comparator",
  4405. "keywords": [
  4406. "comparator",
  4407. "compare",
  4408. "equality"
  4409. ],
  4410. "support": {
  4411. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  4412. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  4413. },
  4414. "funding": [
  4415. {
  4416. "url": "https://github.com/sebastianbergmann",
  4417. "type": "github"
  4418. }
  4419. ],
  4420. "time": "2022-09-14T12:41:17+00:00"
  4421. },
  4422. {
  4423. "name": "sebastian/complexity",
  4424. "version": "2.0.3",
  4425. "source": {
  4426. "type": "git",
  4427. "url": "https://github.com/sebastianbergmann/complexity.git",
  4428. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  4429. },
  4430. "dist": {
  4431. "type": "zip",
  4432. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  4433. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  4434. "shasum": ""
  4435. },
  4436. "require": {
  4437. "nikic/php-parser": "^4.18 || ^5.0",
  4438. "php": ">=7.3"
  4439. },
  4440. "require-dev": {
  4441. "phpunit/phpunit": "^9.3"
  4442. },
  4443. "type": "library",
  4444. "extra": {
  4445. "branch-alias": {
  4446. "dev-master": "2.0-dev"
  4447. }
  4448. },
  4449. "autoload": {
  4450. "classmap": [
  4451. "src/"
  4452. ]
  4453. },
  4454. "notification-url": "https://packagist.org/downloads/",
  4455. "license": [
  4456. "BSD-3-Clause"
  4457. ],
  4458. "authors": [
  4459. {
  4460. "name": "Sebastian Bergmann",
  4461. "email": "sebastian@phpunit.de",
  4462. "role": "lead"
  4463. }
  4464. ],
  4465. "description": "Library for calculating the complexity of PHP code units",
  4466. "homepage": "https://github.com/sebastianbergmann/complexity",
  4467. "support": {
  4468. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  4469. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  4470. },
  4471. "funding": [
  4472. {
  4473. "url": "https://github.com/sebastianbergmann",
  4474. "type": "github"
  4475. }
  4476. ],
  4477. "time": "2023-12-22T06:19:30+00:00"
  4478. },
  4479. {
  4480. "name": "sebastian/diff",
  4481. "version": "4.0.5",
  4482. "source": {
  4483. "type": "git",
  4484. "url": "https://github.com/sebastianbergmann/diff.git",
  4485. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  4486. },
  4487. "dist": {
  4488. "type": "zip",
  4489. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  4490. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  4491. "shasum": ""
  4492. },
  4493. "require": {
  4494. "php": ">=7.3"
  4495. },
  4496. "require-dev": {
  4497. "phpunit/phpunit": "^9.3",
  4498. "symfony/process": "^4.2 || ^5"
  4499. },
  4500. "type": "library",
  4501. "extra": {
  4502. "branch-alias": {
  4503. "dev-master": "4.0-dev"
  4504. }
  4505. },
  4506. "autoload": {
  4507. "classmap": [
  4508. "src/"
  4509. ]
  4510. },
  4511. "notification-url": "https://packagist.org/downloads/",
  4512. "license": [
  4513. "BSD-3-Clause"
  4514. ],
  4515. "authors": [
  4516. {
  4517. "name": "Sebastian Bergmann",
  4518. "email": "sebastian@phpunit.de"
  4519. },
  4520. {
  4521. "name": "Kore Nordmann",
  4522. "email": "mail@kore-nordmann.de"
  4523. }
  4524. ],
  4525. "description": "Diff implementation",
  4526. "homepage": "https://github.com/sebastianbergmann/diff",
  4527. "keywords": [
  4528. "diff",
  4529. "udiff",
  4530. "unidiff",
  4531. "unified diff"
  4532. ],
  4533. "support": {
  4534. "issues": "https://github.com/sebastianbergmann/diff/issues",
  4535. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  4536. },
  4537. "funding": [
  4538. {
  4539. "url": "https://github.com/sebastianbergmann",
  4540. "type": "github"
  4541. }
  4542. ],
  4543. "time": "2023-05-07T05:35:17+00:00"
  4544. },
  4545. {
  4546. "name": "sebastian/environment",
  4547. "version": "5.1.5",
  4548. "source": {
  4549. "type": "git",
  4550. "url": "https://github.com/sebastianbergmann/environment.git",
  4551. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  4552. },
  4553. "dist": {
  4554. "type": "zip",
  4555. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  4556. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  4557. "shasum": ""
  4558. },
  4559. "require": {
  4560. "php": ">=7.3"
  4561. },
  4562. "require-dev": {
  4563. "phpunit/phpunit": "^9.3"
  4564. },
  4565. "suggest": {
  4566. "ext-posix": "*"
  4567. },
  4568. "type": "library",
  4569. "extra": {
  4570. "branch-alias": {
  4571. "dev-master": "5.1-dev"
  4572. }
  4573. },
  4574. "autoload": {
  4575. "classmap": [
  4576. "src/"
  4577. ]
  4578. },
  4579. "notification-url": "https://packagist.org/downloads/",
  4580. "license": [
  4581. "BSD-3-Clause"
  4582. ],
  4583. "authors": [
  4584. {
  4585. "name": "Sebastian Bergmann",
  4586. "email": "sebastian@phpunit.de"
  4587. }
  4588. ],
  4589. "description": "Provides functionality to handle HHVM/PHP environments",
  4590. "homepage": "http://www.github.com/sebastianbergmann/environment",
  4591. "keywords": [
  4592. "Xdebug",
  4593. "environment",
  4594. "hhvm"
  4595. ],
  4596. "support": {
  4597. "issues": "https://github.com/sebastianbergmann/environment/issues",
  4598. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  4599. },
  4600. "funding": [
  4601. {
  4602. "url": "https://github.com/sebastianbergmann",
  4603. "type": "github"
  4604. }
  4605. ],
  4606. "time": "2023-02-03T06:03:51+00:00"
  4607. },
  4608. {
  4609. "name": "sebastian/exporter",
  4610. "version": "4.0.5",
  4611. "source": {
  4612. "type": "git",
  4613. "url": "https://github.com/sebastianbergmann/exporter.git",
  4614. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  4615. },
  4616. "dist": {
  4617. "type": "zip",
  4618. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  4619. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  4620. "shasum": ""
  4621. },
  4622. "require": {
  4623. "php": ">=7.3",
  4624. "sebastian/recursion-context": "^4.0"
  4625. },
  4626. "require-dev": {
  4627. "ext-mbstring": "*",
  4628. "phpunit/phpunit": "^9.3"
  4629. },
  4630. "type": "library",
  4631. "extra": {
  4632. "branch-alias": {
  4633. "dev-master": "4.0-dev"
  4634. }
  4635. },
  4636. "autoload": {
  4637. "classmap": [
  4638. "src/"
  4639. ]
  4640. },
  4641. "notification-url": "https://packagist.org/downloads/",
  4642. "license": [
  4643. "BSD-3-Clause"
  4644. ],
  4645. "authors": [
  4646. {
  4647. "name": "Sebastian Bergmann",
  4648. "email": "sebastian@phpunit.de"
  4649. },
  4650. {
  4651. "name": "Jeff Welch",
  4652. "email": "whatthejeff@gmail.com"
  4653. },
  4654. {
  4655. "name": "Volker Dusch",
  4656. "email": "github@wallbash.com"
  4657. },
  4658. {
  4659. "name": "Adam Harvey",
  4660. "email": "aharvey@php.net"
  4661. },
  4662. {
  4663. "name": "Bernhard Schussek",
  4664. "email": "bschussek@gmail.com"
  4665. }
  4666. ],
  4667. "description": "Provides the functionality to export PHP variables for visualization",
  4668. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  4669. "keywords": [
  4670. "export",
  4671. "exporter"
  4672. ],
  4673. "support": {
  4674. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  4675. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  4676. },
  4677. "funding": [
  4678. {
  4679. "url": "https://github.com/sebastianbergmann",
  4680. "type": "github"
  4681. }
  4682. ],
  4683. "time": "2022-09-14T06:03:37+00:00"
  4684. },
  4685. {
  4686. "name": "sebastian/global-state",
  4687. "version": "5.0.6",
  4688. "source": {
  4689. "type": "git",
  4690. "url": "https://github.com/sebastianbergmann/global-state.git",
  4691. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  4692. },
  4693. "dist": {
  4694. "type": "zip",
  4695. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  4696. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  4697. "shasum": ""
  4698. },
  4699. "require": {
  4700. "php": ">=7.3",
  4701. "sebastian/object-reflector": "^2.0",
  4702. "sebastian/recursion-context": "^4.0"
  4703. },
  4704. "require-dev": {
  4705. "ext-dom": "*",
  4706. "phpunit/phpunit": "^9.3"
  4707. },
  4708. "suggest": {
  4709. "ext-uopz": "*"
  4710. },
  4711. "type": "library",
  4712. "extra": {
  4713. "branch-alias": {
  4714. "dev-master": "5.0-dev"
  4715. }
  4716. },
  4717. "autoload": {
  4718. "classmap": [
  4719. "src/"
  4720. ]
  4721. },
  4722. "notification-url": "https://packagist.org/downloads/",
  4723. "license": [
  4724. "BSD-3-Clause"
  4725. ],
  4726. "authors": [
  4727. {
  4728. "name": "Sebastian Bergmann",
  4729. "email": "sebastian@phpunit.de"
  4730. }
  4731. ],
  4732. "description": "Snapshotting of global state",
  4733. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  4734. "keywords": [
  4735. "global state"
  4736. ],
  4737. "support": {
  4738. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  4739. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  4740. },
  4741. "funding": [
  4742. {
  4743. "url": "https://github.com/sebastianbergmann",
  4744. "type": "github"
  4745. }
  4746. ],
  4747. "time": "2023-08-02T09:26:13+00:00"
  4748. },
  4749. {
  4750. "name": "sebastian/lines-of-code",
  4751. "version": "1.0.4",
  4752. "source": {
  4753. "type": "git",
  4754. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  4755. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  4756. },
  4757. "dist": {
  4758. "type": "zip",
  4759. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  4760. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  4761. "shasum": ""
  4762. },
  4763. "require": {
  4764. "nikic/php-parser": "^4.18 || ^5.0",
  4765. "php": ">=7.3"
  4766. },
  4767. "require-dev": {
  4768. "phpunit/phpunit": "^9.3"
  4769. },
  4770. "type": "library",
  4771. "extra": {
  4772. "branch-alias": {
  4773. "dev-master": "1.0-dev"
  4774. }
  4775. },
  4776. "autoload": {
  4777. "classmap": [
  4778. "src/"
  4779. ]
  4780. },
  4781. "notification-url": "https://packagist.org/downloads/",
  4782. "license": [
  4783. "BSD-3-Clause"
  4784. ],
  4785. "authors": [
  4786. {
  4787. "name": "Sebastian Bergmann",
  4788. "email": "sebastian@phpunit.de",
  4789. "role": "lead"
  4790. }
  4791. ],
  4792. "description": "Library for counting the lines of code in PHP source code",
  4793. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  4794. "support": {
  4795. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  4796. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  4797. },
  4798. "funding": [
  4799. {
  4800. "url": "https://github.com/sebastianbergmann",
  4801. "type": "github"
  4802. }
  4803. ],
  4804. "time": "2023-12-22T06:20:34+00:00"
  4805. },
  4806. {
  4807. "name": "sebastian/object-enumerator",
  4808. "version": "4.0.4",
  4809. "source": {
  4810. "type": "git",
  4811. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  4812. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  4813. },
  4814. "dist": {
  4815. "type": "zip",
  4816. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  4817. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  4818. "shasum": ""
  4819. },
  4820. "require": {
  4821. "php": ">=7.3",
  4822. "sebastian/object-reflector": "^2.0",
  4823. "sebastian/recursion-context": "^4.0"
  4824. },
  4825. "require-dev": {
  4826. "phpunit/phpunit": "^9.3"
  4827. },
  4828. "type": "library",
  4829. "extra": {
  4830. "branch-alias": {
  4831. "dev-master": "4.0-dev"
  4832. }
  4833. },
  4834. "autoload": {
  4835. "classmap": [
  4836. "src/"
  4837. ]
  4838. },
  4839. "notification-url": "https://packagist.org/downloads/",
  4840. "license": [
  4841. "BSD-3-Clause"
  4842. ],
  4843. "authors": [
  4844. {
  4845. "name": "Sebastian Bergmann",
  4846. "email": "sebastian@phpunit.de"
  4847. }
  4848. ],
  4849. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  4850. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  4851. "support": {
  4852. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  4853. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  4854. },
  4855. "funding": [
  4856. {
  4857. "url": "https://github.com/sebastianbergmann",
  4858. "type": "github"
  4859. }
  4860. ],
  4861. "time": "2020-10-26T13:12:34+00:00"
  4862. },
  4863. {
  4864. "name": "sebastian/object-reflector",
  4865. "version": "2.0.4",
  4866. "source": {
  4867. "type": "git",
  4868. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  4869. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  4870. },
  4871. "dist": {
  4872. "type": "zip",
  4873. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  4874. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  4875. "shasum": ""
  4876. },
  4877. "require": {
  4878. "php": ">=7.3"
  4879. },
  4880. "require-dev": {
  4881. "phpunit/phpunit": "^9.3"
  4882. },
  4883. "type": "library",
  4884. "extra": {
  4885. "branch-alias": {
  4886. "dev-master": "2.0-dev"
  4887. }
  4888. },
  4889. "autoload": {
  4890. "classmap": [
  4891. "src/"
  4892. ]
  4893. },
  4894. "notification-url": "https://packagist.org/downloads/",
  4895. "license": [
  4896. "BSD-3-Clause"
  4897. ],
  4898. "authors": [
  4899. {
  4900. "name": "Sebastian Bergmann",
  4901. "email": "sebastian@phpunit.de"
  4902. }
  4903. ],
  4904. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  4905. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  4906. "support": {
  4907. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  4908. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  4909. },
  4910. "funding": [
  4911. {
  4912. "url": "https://github.com/sebastianbergmann",
  4913. "type": "github"
  4914. }
  4915. ],
  4916. "time": "2020-10-26T13:14:26+00:00"
  4917. },
  4918. {
  4919. "name": "sebastian/recursion-context",
  4920. "version": "4.0.5",
  4921. "source": {
  4922. "type": "git",
  4923. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  4924. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  4925. },
  4926. "dist": {
  4927. "type": "zip",
  4928. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  4929. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  4930. "shasum": ""
  4931. },
  4932. "require": {
  4933. "php": ">=7.3"
  4934. },
  4935. "require-dev": {
  4936. "phpunit/phpunit": "^9.3"
  4937. },
  4938. "type": "library",
  4939. "extra": {
  4940. "branch-alias": {
  4941. "dev-master": "4.0-dev"
  4942. }
  4943. },
  4944. "autoload": {
  4945. "classmap": [
  4946. "src/"
  4947. ]
  4948. },
  4949. "notification-url": "https://packagist.org/downloads/",
  4950. "license": [
  4951. "BSD-3-Clause"
  4952. ],
  4953. "authors": [
  4954. {
  4955. "name": "Sebastian Bergmann",
  4956. "email": "sebastian@phpunit.de"
  4957. },
  4958. {
  4959. "name": "Jeff Welch",
  4960. "email": "whatthejeff@gmail.com"
  4961. },
  4962. {
  4963. "name": "Adam Harvey",
  4964. "email": "aharvey@php.net"
  4965. }
  4966. ],
  4967. "description": "Provides functionality to recursively process PHP variables",
  4968. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  4969. "support": {
  4970. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  4971. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  4972. },
  4973. "funding": [
  4974. {
  4975. "url": "https://github.com/sebastianbergmann",
  4976. "type": "github"
  4977. }
  4978. ],
  4979. "time": "2023-02-03T06:07:39+00:00"
  4980. },
  4981. {
  4982. "name": "sebastian/resource-operations",
  4983. "version": "3.0.3",
  4984. "source": {
  4985. "type": "git",
  4986. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  4987. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  4988. },
  4989. "dist": {
  4990. "type": "zip",
  4991. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  4992. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  4993. "shasum": ""
  4994. },
  4995. "require": {
  4996. "php": ">=7.3"
  4997. },
  4998. "require-dev": {
  4999. "phpunit/phpunit": "^9.0"
  5000. },
  5001. "type": "library",
  5002. "extra": {
  5003. "branch-alias": {
  5004. "dev-master": "3.0-dev"
  5005. }
  5006. },
  5007. "autoload": {
  5008. "classmap": [
  5009. "src/"
  5010. ]
  5011. },
  5012. "notification-url": "https://packagist.org/downloads/",
  5013. "license": [
  5014. "BSD-3-Clause"
  5015. ],
  5016. "authors": [
  5017. {
  5018. "name": "Sebastian Bergmann",
  5019. "email": "sebastian@phpunit.de"
  5020. }
  5021. ],
  5022. "description": "Provides a list of PHP built-in functions that operate on resources",
  5023. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5024. "support": {
  5025. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  5026. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  5027. },
  5028. "funding": [
  5029. {
  5030. "url": "https://github.com/sebastianbergmann",
  5031. "type": "github"
  5032. }
  5033. ],
  5034. "time": "2020-09-28T06:45:17+00:00"
  5035. },
  5036. {
  5037. "name": "sebastian/type",
  5038. "version": "3.2.1",
  5039. "source": {
  5040. "type": "git",
  5041. "url": "https://github.com/sebastianbergmann/type.git",
  5042. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  5043. },
  5044. "dist": {
  5045. "type": "zip",
  5046. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  5047. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  5048. "shasum": ""
  5049. },
  5050. "require": {
  5051. "php": ">=7.3"
  5052. },
  5053. "require-dev": {
  5054. "phpunit/phpunit": "^9.5"
  5055. },
  5056. "type": "library",
  5057. "extra": {
  5058. "branch-alias": {
  5059. "dev-master": "3.2-dev"
  5060. }
  5061. },
  5062. "autoload": {
  5063. "classmap": [
  5064. "src/"
  5065. ]
  5066. },
  5067. "notification-url": "https://packagist.org/downloads/",
  5068. "license": [
  5069. "BSD-3-Clause"
  5070. ],
  5071. "authors": [
  5072. {
  5073. "name": "Sebastian Bergmann",
  5074. "email": "sebastian@phpunit.de",
  5075. "role": "lead"
  5076. }
  5077. ],
  5078. "description": "Collection of value objects that represent the types of the PHP type system",
  5079. "homepage": "https://github.com/sebastianbergmann/type",
  5080. "support": {
  5081. "issues": "https://github.com/sebastianbergmann/type/issues",
  5082. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  5083. },
  5084. "funding": [
  5085. {
  5086. "url": "https://github.com/sebastianbergmann",
  5087. "type": "github"
  5088. }
  5089. ],
  5090. "time": "2023-02-03T06:13:03+00:00"
  5091. },
  5092. {
  5093. "name": "sebastian/version",
  5094. "version": "3.0.2",
  5095. "source": {
  5096. "type": "git",
  5097. "url": "https://github.com/sebastianbergmann/version.git",
  5098. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  5099. },
  5100. "dist": {
  5101. "type": "zip",
  5102. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  5103. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  5104. "shasum": ""
  5105. },
  5106. "require": {
  5107. "php": ">=7.3"
  5108. },
  5109. "type": "library",
  5110. "extra": {
  5111. "branch-alias": {
  5112. "dev-master": "3.0-dev"
  5113. }
  5114. },
  5115. "autoload": {
  5116. "classmap": [
  5117. "src/"
  5118. ]
  5119. },
  5120. "notification-url": "https://packagist.org/downloads/",
  5121. "license": [
  5122. "BSD-3-Clause"
  5123. ],
  5124. "authors": [
  5125. {
  5126. "name": "Sebastian Bergmann",
  5127. "email": "sebastian@phpunit.de",
  5128. "role": "lead"
  5129. }
  5130. ],
  5131. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5132. "homepage": "https://github.com/sebastianbergmann/version",
  5133. "support": {
  5134. "issues": "https://github.com/sebastianbergmann/version/issues",
  5135. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  5136. },
  5137. "funding": [
  5138. {
  5139. "url": "https://github.com/sebastianbergmann",
  5140. "type": "github"
  5141. }
  5142. ],
  5143. "time": "2020-09-28T06:39:44+00:00"
  5144. },
  5145. {
  5146. "name": "sebastianfeldmann/camino",
  5147. "version": "0.9.5",
  5148. "source": {
  5149. "type": "git",
  5150. "url": "https://github.com/sebastianfeldmann/camino.git",
  5151. "reference": "bf2e4c8b2a029e9eade43666132b61331e3e8184"
  5152. },
  5153. "dist": {
  5154. "type": "zip",
  5155. "url": "https://api.github.com/repos/sebastianfeldmann/camino/zipball/bf2e4c8b2a029e9eade43666132b61331e3e8184",
  5156. "reference": "bf2e4c8b2a029e9eade43666132b61331e3e8184",
  5157. "shasum": ""
  5158. },
  5159. "require": {
  5160. "php": ">=7.1"
  5161. },
  5162. "type": "library",
  5163. "extra": {
  5164. "branch-alias": {
  5165. "dev-master": "1.0.x-dev"
  5166. }
  5167. },
  5168. "autoload": {
  5169. "psr-4": {
  5170. "SebastianFeldmann\\Camino\\": "src/"
  5171. }
  5172. },
  5173. "notification-url": "https://packagist.org/downloads/",
  5174. "license": [
  5175. "MIT"
  5176. ],
  5177. "authors": [
  5178. {
  5179. "name": "Sebastian Feldmann",
  5180. "email": "sf@sebastian-feldmann.info"
  5181. }
  5182. ],
  5183. "description": "Path management the OO way",
  5184. "homepage": "https://github.com/sebastianfeldmann/camino",
  5185. "keywords": [
  5186. "file system",
  5187. "path"
  5188. ],
  5189. "support": {
  5190. "issues": "https://github.com/sebastianfeldmann/camino/issues",
  5191. "source": "https://github.com/sebastianfeldmann/camino/tree/0.9.5"
  5192. },
  5193. "funding": [
  5194. {
  5195. "url": "https://github.com/sebastianfeldmann",
  5196. "type": "github"
  5197. }
  5198. ],
  5199. "time": "2022-01-03T13:15:10+00:00"
  5200. },
  5201. {
  5202. "name": "sebastianfeldmann/cli",
  5203. "version": "3.4.1",
  5204. "source": {
  5205. "type": "git",
  5206. "url": "https://github.com/sebastianfeldmann/cli.git",
  5207. "reference": "8a932e99e9455981fb32fa6c085492462fe8f8cf"
  5208. },
  5209. "dist": {
  5210. "type": "zip",
  5211. "url": "https://api.github.com/repos/sebastianfeldmann/cli/zipball/8a932e99e9455981fb32fa6c085492462fe8f8cf",
  5212. "reference": "8a932e99e9455981fb32fa6c085492462fe8f8cf",
  5213. "shasum": ""
  5214. },
  5215. "require": {
  5216. "php": ">=7.2"
  5217. },
  5218. "require-dev": {
  5219. "symfony/process": "^4.3 | ^5.0"
  5220. },
  5221. "type": "library",
  5222. "extra": {
  5223. "branch-alias": {
  5224. "dev-master": "3.4.x-dev"
  5225. }
  5226. },
  5227. "autoload": {
  5228. "psr-4": {
  5229. "SebastianFeldmann\\Cli\\": "src/"
  5230. }
  5231. },
  5232. "notification-url": "https://packagist.org/downloads/",
  5233. "license": [
  5234. "MIT"
  5235. ],
  5236. "authors": [
  5237. {
  5238. "name": "Sebastian Feldmann",
  5239. "email": "sf@sebastian-feldmann.info"
  5240. }
  5241. ],
  5242. "description": "PHP cli helper classes",
  5243. "homepage": "https://github.com/sebastianfeldmann/cli",
  5244. "keywords": [
  5245. "cli"
  5246. ],
  5247. "support": {
  5248. "issues": "https://github.com/sebastianfeldmann/cli/issues",
  5249. "source": "https://github.com/sebastianfeldmann/cli/tree/3.4.1"
  5250. },
  5251. "funding": [
  5252. {
  5253. "url": "https://github.com/sebastianfeldmann",
  5254. "type": "github"
  5255. }
  5256. ],
  5257. "time": "2021-12-20T14:59:49+00:00"
  5258. },
  5259. {
  5260. "name": "sebastianfeldmann/git",
  5261. "version": "3.9.3",
  5262. "source": {
  5263. "type": "git",
  5264. "url": "https://github.com/sebastianfeldmann/git.git",
  5265. "reference": "eb2ca84a2b45a461f0bf5d4fd400df805649e83a"
  5266. },
  5267. "dist": {
  5268. "type": "zip",
  5269. "url": "https://api.github.com/repos/sebastianfeldmann/git/zipball/eb2ca84a2b45a461f0bf5d4fd400df805649e83a",
  5270. "reference": "eb2ca84a2b45a461f0bf5d4fd400df805649e83a",
  5271. "shasum": ""
  5272. },
  5273. "require": {
  5274. "ext-json": "*",
  5275. "ext-xml": "*",
  5276. "php": ">=7.2",
  5277. "sebastianfeldmann/cli": "^3.0"
  5278. },
  5279. "require-dev": {
  5280. "mikey179/vfsstream": "^1.6"
  5281. },
  5282. "type": "library",
  5283. "extra": {
  5284. "branch-alias": {
  5285. "dev-master": "4.0.x-dev"
  5286. }
  5287. },
  5288. "autoload": {
  5289. "psr-4": {
  5290. "SebastianFeldmann\\Git\\": "src/"
  5291. }
  5292. },
  5293. "notification-url": "https://packagist.org/downloads/",
  5294. "license": [
  5295. "MIT"
  5296. ],
  5297. "authors": [
  5298. {
  5299. "name": "Sebastian Feldmann",
  5300. "email": "sf@sebastian-feldmann.info"
  5301. }
  5302. ],
  5303. "description": "PHP git wrapper",
  5304. "homepage": "https://github.com/sebastianfeldmann/git",
  5305. "keywords": [
  5306. "git"
  5307. ],
  5308. "support": {
  5309. "issues": "https://github.com/sebastianfeldmann/git/issues",
  5310. "source": "https://github.com/sebastianfeldmann/git/tree/3.9.3"
  5311. },
  5312. "funding": [
  5313. {
  5314. "url": "https://github.com/sebastianfeldmann",
  5315. "type": "github"
  5316. }
  5317. ],
  5318. "time": "2023-10-13T09:10:48+00:00"
  5319. },
  5320. {
  5321. "name": "seld/jsonlint",
  5322. "version": "1.10.2",
  5323. "source": {
  5324. "type": "git",
  5325. "url": "https://github.com/Seldaek/jsonlint.git",
  5326. "reference": "9bb7db07b5d66d90f6ebf542f09fc67d800e5259"
  5327. },
  5328. "dist": {
  5329. "type": "zip",
  5330. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9bb7db07b5d66d90f6ebf542f09fc67d800e5259",
  5331. "reference": "9bb7db07b5d66d90f6ebf542f09fc67d800e5259",
  5332. "shasum": ""
  5333. },
  5334. "require": {
  5335. "php": "^5.3 || ^7.0 || ^8.0"
  5336. },
  5337. "require-dev": {
  5338. "phpstan/phpstan": "^1.5",
  5339. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13"
  5340. },
  5341. "bin": [
  5342. "bin/jsonlint"
  5343. ],
  5344. "type": "library",
  5345. "autoload": {
  5346. "psr-4": {
  5347. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  5348. }
  5349. },
  5350. "notification-url": "https://packagist.org/downloads/",
  5351. "license": [
  5352. "MIT"
  5353. ],
  5354. "authors": [
  5355. {
  5356. "name": "Jordi Boggiano",
  5357. "email": "j.boggiano@seld.be",
  5358. "homepage": "https://seld.be"
  5359. }
  5360. ],
  5361. "description": "JSON Linter",
  5362. "keywords": [
  5363. "json",
  5364. "linter",
  5365. "parser",
  5366. "validator"
  5367. ],
  5368. "support": {
  5369. "issues": "https://github.com/Seldaek/jsonlint/issues",
  5370. "source": "https://github.com/Seldaek/jsonlint/tree/1.10.2"
  5371. },
  5372. "funding": [
  5373. {
  5374. "url": "https://github.com/Seldaek",
  5375. "type": "github"
  5376. },
  5377. {
  5378. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  5379. "type": "tidelift"
  5380. }
  5381. ],
  5382. "time": "2024-02-07T12:57:50+00:00"
  5383. },
  5384. {
  5385. "name": "symfony/event-dispatcher",
  5386. "version": "v6.4.3",
  5387. "source": {
  5388. "type": "git",
  5389. "url": "https://github.com/symfony/event-dispatcher.git",
  5390. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef"
  5391. },
  5392. "dist": {
  5393. "type": "zip",
  5394. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  5395. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  5396. "shasum": ""
  5397. },
  5398. "require": {
  5399. "php": ">=8.1",
  5400. "symfony/event-dispatcher-contracts": "^2.5|^3"
  5401. },
  5402. "conflict": {
  5403. "symfony/dependency-injection": "<5.4",
  5404. "symfony/service-contracts": "<2.5"
  5405. },
  5406. "provide": {
  5407. "psr/event-dispatcher-implementation": "1.0",
  5408. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5409. },
  5410. "require-dev": {
  5411. "psr/log": "^1|^2|^3",
  5412. "symfony/config": "^5.4|^6.0|^7.0",
  5413. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5414. "symfony/error-handler": "^5.4|^6.0|^7.0",
  5415. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5416. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  5417. "symfony/service-contracts": "^2.5|^3",
  5418. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  5419. },
  5420. "type": "library",
  5421. "autoload": {
  5422. "psr-4": {
  5423. "Symfony\\Component\\EventDispatcher\\": ""
  5424. },
  5425. "exclude-from-classmap": [
  5426. "/Tests/"
  5427. ]
  5428. },
  5429. "notification-url": "https://packagist.org/downloads/",
  5430. "license": [
  5431. "MIT"
  5432. ],
  5433. "authors": [
  5434. {
  5435. "name": "Fabien Potencier",
  5436. "email": "fabien@symfony.com"
  5437. },
  5438. {
  5439. "name": "Symfony Community",
  5440. "homepage": "https://symfony.com/contributors"
  5441. }
  5442. ],
  5443. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5444. "homepage": "https://symfony.com",
  5445. "support": {
  5446. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.3"
  5447. },
  5448. "funding": [
  5449. {
  5450. "url": "https://symfony.com/sponsor",
  5451. "type": "custom"
  5452. },
  5453. {
  5454. "url": "https://github.com/fabpot",
  5455. "type": "github"
  5456. },
  5457. {
  5458. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5459. "type": "tidelift"
  5460. }
  5461. ],
  5462. "time": "2024-01-23T14:51:35+00:00"
  5463. },
  5464. {
  5465. "name": "symfony/event-dispatcher-contracts",
  5466. "version": "v3.4.0",
  5467. "source": {
  5468. "type": "git",
  5469. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5470. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  5471. },
  5472. "dist": {
  5473. "type": "zip",
  5474. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  5475. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  5476. "shasum": ""
  5477. },
  5478. "require": {
  5479. "php": ">=8.1",
  5480. "psr/event-dispatcher": "^1"
  5481. },
  5482. "type": "library",
  5483. "extra": {
  5484. "branch-alias": {
  5485. "dev-main": "3.4-dev"
  5486. },
  5487. "thanks": {
  5488. "name": "symfony/contracts",
  5489. "url": "https://github.com/symfony/contracts"
  5490. }
  5491. },
  5492. "autoload": {
  5493. "psr-4": {
  5494. "Symfony\\Contracts\\EventDispatcher\\": ""
  5495. }
  5496. },
  5497. "notification-url": "https://packagist.org/downloads/",
  5498. "license": [
  5499. "MIT"
  5500. ],
  5501. "authors": [
  5502. {
  5503. "name": "Nicolas Grekas",
  5504. "email": "p@tchwork.com"
  5505. },
  5506. {
  5507. "name": "Symfony Community",
  5508. "homepage": "https://symfony.com/contributors"
  5509. }
  5510. ],
  5511. "description": "Generic abstractions related to dispatching event",
  5512. "homepage": "https://symfony.com",
  5513. "keywords": [
  5514. "abstractions",
  5515. "contracts",
  5516. "decoupling",
  5517. "interfaces",
  5518. "interoperability",
  5519. "standards"
  5520. ],
  5521. "support": {
  5522. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  5523. },
  5524. "funding": [
  5525. {
  5526. "url": "https://symfony.com/sponsor",
  5527. "type": "custom"
  5528. },
  5529. {
  5530. "url": "https://github.com/fabpot",
  5531. "type": "github"
  5532. },
  5533. {
  5534. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5535. "type": "tidelift"
  5536. }
  5537. ],
  5538. "time": "2023-05-23T14:45:45+00:00"
  5539. },
  5540. {
  5541. "name": "symfony/filesystem",
  5542. "version": "v6.4.3",
  5543. "source": {
  5544. "type": "git",
  5545. "url": "https://github.com/symfony/filesystem.git",
  5546. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb"
  5547. },
  5548. "dist": {
  5549. "type": "zip",
  5550. "url": "https://api.github.com/repos/symfony/filesystem/zipball/7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  5551. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  5552. "shasum": ""
  5553. },
  5554. "require": {
  5555. "php": ">=8.1",
  5556. "symfony/polyfill-ctype": "~1.8",
  5557. "symfony/polyfill-mbstring": "~1.8"
  5558. },
  5559. "type": "library",
  5560. "autoload": {
  5561. "psr-4": {
  5562. "Symfony\\Component\\Filesystem\\": ""
  5563. },
  5564. "exclude-from-classmap": [
  5565. "/Tests/"
  5566. ]
  5567. },
  5568. "notification-url": "https://packagist.org/downloads/",
  5569. "license": [
  5570. "MIT"
  5571. ],
  5572. "authors": [
  5573. {
  5574. "name": "Fabien Potencier",
  5575. "email": "fabien@symfony.com"
  5576. },
  5577. {
  5578. "name": "Symfony Community",
  5579. "homepage": "https://symfony.com/contributors"
  5580. }
  5581. ],
  5582. "description": "Provides basic utilities for the filesystem",
  5583. "homepage": "https://symfony.com",
  5584. "support": {
  5585. "source": "https://github.com/symfony/filesystem/tree/v6.4.3"
  5586. },
  5587. "funding": [
  5588. {
  5589. "url": "https://symfony.com/sponsor",
  5590. "type": "custom"
  5591. },
  5592. {
  5593. "url": "https://github.com/fabpot",
  5594. "type": "github"
  5595. },
  5596. {
  5597. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5598. "type": "tidelift"
  5599. }
  5600. ],
  5601. "time": "2024-01-23T14:51:35+00:00"
  5602. },
  5603. {
  5604. "name": "symfony/finder",
  5605. "version": "v6.4.0",
  5606. "source": {
  5607. "type": "git",
  5608. "url": "https://github.com/symfony/finder.git",
  5609. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce"
  5610. },
  5611. "dist": {
  5612. "type": "zip",
  5613. "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce",
  5614. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce",
  5615. "shasum": ""
  5616. },
  5617. "require": {
  5618. "php": ">=8.1"
  5619. },
  5620. "require-dev": {
  5621. "symfony/filesystem": "^6.0|^7.0"
  5622. },
  5623. "type": "library",
  5624. "autoload": {
  5625. "psr-4": {
  5626. "Symfony\\Component\\Finder\\": ""
  5627. },
  5628. "exclude-from-classmap": [
  5629. "/Tests/"
  5630. ]
  5631. },
  5632. "notification-url": "https://packagist.org/downloads/",
  5633. "license": [
  5634. "MIT"
  5635. ],
  5636. "authors": [
  5637. {
  5638. "name": "Fabien Potencier",
  5639. "email": "fabien@symfony.com"
  5640. },
  5641. {
  5642. "name": "Symfony Community",
  5643. "homepage": "https://symfony.com/contributors"
  5644. }
  5645. ],
  5646. "description": "Finds files and directories via an intuitive fluent interface",
  5647. "homepage": "https://symfony.com",
  5648. "support": {
  5649. "source": "https://github.com/symfony/finder/tree/v6.4.0"
  5650. },
  5651. "funding": [
  5652. {
  5653. "url": "https://symfony.com/sponsor",
  5654. "type": "custom"
  5655. },
  5656. {
  5657. "url": "https://github.com/fabpot",
  5658. "type": "github"
  5659. },
  5660. {
  5661. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5662. "type": "tidelift"
  5663. }
  5664. ],
  5665. "time": "2023-10-31T17:30:12+00:00"
  5666. },
  5667. {
  5668. "name": "symfony/options-resolver",
  5669. "version": "v6.4.0",
  5670. "source": {
  5671. "type": "git",
  5672. "url": "https://github.com/symfony/options-resolver.git",
  5673. "reference": "22301f0e7fdeaacc14318928612dee79be99860e"
  5674. },
  5675. "dist": {
  5676. "type": "zip",
  5677. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22301f0e7fdeaacc14318928612dee79be99860e",
  5678. "reference": "22301f0e7fdeaacc14318928612dee79be99860e",
  5679. "shasum": ""
  5680. },
  5681. "require": {
  5682. "php": ">=8.1",
  5683. "symfony/deprecation-contracts": "^2.5|^3"
  5684. },
  5685. "type": "library",
  5686. "autoload": {
  5687. "psr-4": {
  5688. "Symfony\\Component\\OptionsResolver\\": ""
  5689. },
  5690. "exclude-from-classmap": [
  5691. "/Tests/"
  5692. ]
  5693. },
  5694. "notification-url": "https://packagist.org/downloads/",
  5695. "license": [
  5696. "MIT"
  5697. ],
  5698. "authors": [
  5699. {
  5700. "name": "Fabien Potencier",
  5701. "email": "fabien@symfony.com"
  5702. },
  5703. {
  5704. "name": "Symfony Community",
  5705. "homepage": "https://symfony.com/contributors"
  5706. }
  5707. ],
  5708. "description": "Provides an improved replacement for the array_replace PHP function",
  5709. "homepage": "https://symfony.com",
  5710. "keywords": [
  5711. "config",
  5712. "configuration",
  5713. "options"
  5714. ],
  5715. "support": {
  5716. "source": "https://github.com/symfony/options-resolver/tree/v6.4.0"
  5717. },
  5718. "funding": [
  5719. {
  5720. "url": "https://symfony.com/sponsor",
  5721. "type": "custom"
  5722. },
  5723. {
  5724. "url": "https://github.com/fabpot",
  5725. "type": "github"
  5726. },
  5727. {
  5728. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5729. "type": "tidelift"
  5730. }
  5731. ],
  5732. "time": "2023-08-08T10:16:24+00:00"
  5733. },
  5734. {
  5735. "name": "symfony/polyfill-iconv",
  5736. "version": "v1.29.0",
  5737. "source": {
  5738. "type": "git",
  5739. "url": "https://github.com/symfony/polyfill-iconv.git",
  5740. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f"
  5741. },
  5742. "dist": {
  5743. "type": "zip",
  5744. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  5745. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  5746. "shasum": ""
  5747. },
  5748. "require": {
  5749. "php": ">=7.1"
  5750. },
  5751. "provide": {
  5752. "ext-iconv": "*"
  5753. },
  5754. "suggest": {
  5755. "ext-iconv": "For best performance"
  5756. },
  5757. "type": "library",
  5758. "extra": {
  5759. "thanks": {
  5760. "name": "symfony/polyfill",
  5761. "url": "https://github.com/symfony/polyfill"
  5762. }
  5763. },
  5764. "autoload": {
  5765. "files": [
  5766. "bootstrap.php"
  5767. ],
  5768. "psr-4": {
  5769. "Symfony\\Polyfill\\Iconv\\": ""
  5770. }
  5771. },
  5772. "notification-url": "https://packagist.org/downloads/",
  5773. "license": [
  5774. "MIT"
  5775. ],
  5776. "authors": [
  5777. {
  5778. "name": "Nicolas Grekas",
  5779. "email": "p@tchwork.com"
  5780. },
  5781. {
  5782. "name": "Symfony Community",
  5783. "homepage": "https://symfony.com/contributors"
  5784. }
  5785. ],
  5786. "description": "Symfony polyfill for the Iconv extension",
  5787. "homepage": "https://symfony.com",
  5788. "keywords": [
  5789. "compatibility",
  5790. "iconv",
  5791. "polyfill",
  5792. "portable",
  5793. "shim"
  5794. ],
  5795. "support": {
  5796. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.29.0"
  5797. },
  5798. "funding": [
  5799. {
  5800. "url": "https://symfony.com/sponsor",
  5801. "type": "custom"
  5802. },
  5803. {
  5804. "url": "https://github.com/fabpot",
  5805. "type": "github"
  5806. },
  5807. {
  5808. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5809. "type": "tidelift"
  5810. }
  5811. ],
  5812. "time": "2024-01-29T20:11:03+00:00"
  5813. },
  5814. {
  5815. "name": "symfony/process",
  5816. "version": "v6.4.3",
  5817. "source": {
  5818. "type": "git",
  5819. "url": "https://github.com/symfony/process.git",
  5820. "reference": "31642b0818bfcff85930344ef93193f8c607e0a3"
  5821. },
  5822. "dist": {
  5823. "type": "zip",
  5824. "url": "https://api.github.com/repos/symfony/process/zipball/31642b0818bfcff85930344ef93193f8c607e0a3",
  5825. "reference": "31642b0818bfcff85930344ef93193f8c607e0a3",
  5826. "shasum": ""
  5827. },
  5828. "require": {
  5829. "php": ">=8.1"
  5830. },
  5831. "type": "library",
  5832. "autoload": {
  5833. "psr-4": {
  5834. "Symfony\\Component\\Process\\": ""
  5835. },
  5836. "exclude-from-classmap": [
  5837. "/Tests/"
  5838. ]
  5839. },
  5840. "notification-url": "https://packagist.org/downloads/",
  5841. "license": [
  5842. "MIT"
  5843. ],
  5844. "authors": [
  5845. {
  5846. "name": "Fabien Potencier",
  5847. "email": "fabien@symfony.com"
  5848. },
  5849. {
  5850. "name": "Symfony Community",
  5851. "homepage": "https://symfony.com/contributors"
  5852. }
  5853. ],
  5854. "description": "Executes commands in sub-processes",
  5855. "homepage": "https://symfony.com",
  5856. "support": {
  5857. "source": "https://github.com/symfony/process/tree/v6.4.3"
  5858. },
  5859. "funding": [
  5860. {
  5861. "url": "https://symfony.com/sponsor",
  5862. "type": "custom"
  5863. },
  5864. {
  5865. "url": "https://github.com/fabpot",
  5866. "type": "github"
  5867. },
  5868. {
  5869. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5870. "type": "tidelift"
  5871. }
  5872. ],
  5873. "time": "2024-01-23T14:51:35+00:00"
  5874. },
  5875. {
  5876. "name": "symfony/stopwatch",
  5877. "version": "v6.4.3",
  5878. "source": {
  5879. "type": "git",
  5880. "url": "https://github.com/symfony/stopwatch.git",
  5881. "reference": "416596166641f1f728b0a64f5b9dd07cceb410c1"
  5882. },
  5883. "dist": {
  5884. "type": "zip",
  5885. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/416596166641f1f728b0a64f5b9dd07cceb410c1",
  5886. "reference": "416596166641f1f728b0a64f5b9dd07cceb410c1",
  5887. "shasum": ""
  5888. },
  5889. "require": {
  5890. "php": ">=8.1",
  5891. "symfony/service-contracts": "^2.5|^3"
  5892. },
  5893. "type": "library",
  5894. "autoload": {
  5895. "psr-4": {
  5896. "Symfony\\Component\\Stopwatch\\": ""
  5897. },
  5898. "exclude-from-classmap": [
  5899. "/Tests/"
  5900. ]
  5901. },
  5902. "notification-url": "https://packagist.org/downloads/",
  5903. "license": [
  5904. "MIT"
  5905. ],
  5906. "authors": [
  5907. {
  5908. "name": "Fabien Potencier",
  5909. "email": "fabien@symfony.com"
  5910. },
  5911. {
  5912. "name": "Symfony Community",
  5913. "homepage": "https://symfony.com/contributors"
  5914. }
  5915. ],
  5916. "description": "Provides a way to profile code",
  5917. "homepage": "https://symfony.com",
  5918. "support": {
  5919. "source": "https://github.com/symfony/stopwatch/tree/v6.4.3"
  5920. },
  5921. "funding": [
  5922. {
  5923. "url": "https://symfony.com/sponsor",
  5924. "type": "custom"
  5925. },
  5926. {
  5927. "url": "https://github.com/fabpot",
  5928. "type": "github"
  5929. },
  5930. {
  5931. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5932. "type": "tidelift"
  5933. }
  5934. ],
  5935. "time": "2024-01-23T14:35:58+00:00"
  5936. },
  5937. {
  5938. "name": "symfony/var-dumper",
  5939. "version": "v6.4.3",
  5940. "source": {
  5941. "type": "git",
  5942. "url": "https://github.com/symfony/var-dumper.git",
  5943. "reference": "0435a08f69125535336177c29d56af3abc1f69da"
  5944. },
  5945. "dist": {
  5946. "type": "zip",
  5947. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0435a08f69125535336177c29d56af3abc1f69da",
  5948. "reference": "0435a08f69125535336177c29d56af3abc1f69da",
  5949. "shasum": ""
  5950. },
  5951. "require": {
  5952. "php": ">=8.1",
  5953. "symfony/deprecation-contracts": "^2.5|^3",
  5954. "symfony/polyfill-mbstring": "~1.0"
  5955. },
  5956. "conflict": {
  5957. "symfony/console": "<5.4"
  5958. },
  5959. "require-dev": {
  5960. "ext-iconv": "*",
  5961. "symfony/console": "^5.4|^6.0|^7.0",
  5962. "symfony/error-handler": "^6.3|^7.0",
  5963. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  5964. "symfony/process": "^5.4|^6.0|^7.0",
  5965. "symfony/uid": "^5.4|^6.0|^7.0",
  5966. "twig/twig": "^2.13|^3.0.4"
  5967. },
  5968. "bin": [
  5969. "Resources/bin/var-dump-server"
  5970. ],
  5971. "type": "library",
  5972. "autoload": {
  5973. "files": [
  5974. "Resources/functions/dump.php"
  5975. ],
  5976. "psr-4": {
  5977. "Symfony\\Component\\VarDumper\\": ""
  5978. },
  5979. "exclude-from-classmap": [
  5980. "/Tests/"
  5981. ]
  5982. },
  5983. "notification-url": "https://packagist.org/downloads/",
  5984. "license": [
  5985. "MIT"
  5986. ],
  5987. "authors": [
  5988. {
  5989. "name": "Nicolas Grekas",
  5990. "email": "p@tchwork.com"
  5991. },
  5992. {
  5993. "name": "Symfony Community",
  5994. "homepage": "https://symfony.com/contributors"
  5995. }
  5996. ],
  5997. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5998. "homepage": "https://symfony.com",
  5999. "keywords": [
  6000. "debug",
  6001. "dump"
  6002. ],
  6003. "support": {
  6004. "source": "https://github.com/symfony/var-dumper/tree/v6.4.3"
  6005. },
  6006. "funding": [
  6007. {
  6008. "url": "https://symfony.com/sponsor",
  6009. "type": "custom"
  6010. },
  6011. {
  6012. "url": "https://github.com/fabpot",
  6013. "type": "github"
  6014. },
  6015. {
  6016. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6017. "type": "tidelift"
  6018. }
  6019. ],
  6020. "time": "2024-01-23T14:53:30+00:00"
  6021. },
  6022. {
  6023. "name": "thecodingmachine/safe",
  6024. "version": "v2.5.0",
  6025. "source": {
  6026. "type": "git",
  6027. "url": "https://github.com/thecodingmachine/safe.git",
  6028. "reference": "3115ecd6b4391662b4931daac4eba6b07a2ac1f0"
  6029. },
  6030. "dist": {
  6031. "type": "zip",
  6032. "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/3115ecd6b4391662b4931daac4eba6b07a2ac1f0",
  6033. "reference": "3115ecd6b4391662b4931daac4eba6b07a2ac1f0",
  6034. "shasum": ""
  6035. },
  6036. "require": {
  6037. "php": "^8.0"
  6038. },
  6039. "require-dev": {
  6040. "phpstan/phpstan": "^1.5",
  6041. "phpunit/phpunit": "^9.5",
  6042. "squizlabs/php_codesniffer": "^3.2",
  6043. "thecodingmachine/phpstan-strict-rules": "^1.0"
  6044. },
  6045. "type": "library",
  6046. "extra": {
  6047. "branch-alias": {
  6048. "dev-master": "2.2.x-dev"
  6049. }
  6050. },
  6051. "autoload": {
  6052. "files": [
  6053. "deprecated/apc.php",
  6054. "deprecated/array.php",
  6055. "deprecated/datetime.php",
  6056. "deprecated/libevent.php",
  6057. "deprecated/misc.php",
  6058. "deprecated/password.php",
  6059. "deprecated/mssql.php",
  6060. "deprecated/stats.php",
  6061. "deprecated/strings.php",
  6062. "lib/special_cases.php",
  6063. "deprecated/mysqli.php",
  6064. "generated/apache.php",
  6065. "generated/apcu.php",
  6066. "generated/array.php",
  6067. "generated/bzip2.php",
  6068. "generated/calendar.php",
  6069. "generated/classobj.php",
  6070. "generated/com.php",
  6071. "generated/cubrid.php",
  6072. "generated/curl.php",
  6073. "generated/datetime.php",
  6074. "generated/dir.php",
  6075. "generated/eio.php",
  6076. "generated/errorfunc.php",
  6077. "generated/exec.php",
  6078. "generated/fileinfo.php",
  6079. "generated/filesystem.php",
  6080. "generated/filter.php",
  6081. "generated/fpm.php",
  6082. "generated/ftp.php",
  6083. "generated/funchand.php",
  6084. "generated/gettext.php",
  6085. "generated/gmp.php",
  6086. "generated/gnupg.php",
  6087. "generated/hash.php",
  6088. "generated/ibase.php",
  6089. "generated/ibmDb2.php",
  6090. "generated/iconv.php",
  6091. "generated/image.php",
  6092. "generated/imap.php",
  6093. "generated/info.php",
  6094. "generated/inotify.php",
  6095. "generated/json.php",
  6096. "generated/ldap.php",
  6097. "generated/libxml.php",
  6098. "generated/lzf.php",
  6099. "generated/mailparse.php",
  6100. "generated/mbstring.php",
  6101. "generated/misc.php",
  6102. "generated/mysql.php",
  6103. "generated/network.php",
  6104. "generated/oci8.php",
  6105. "generated/opcache.php",
  6106. "generated/openssl.php",
  6107. "generated/outcontrol.php",
  6108. "generated/pcntl.php",
  6109. "generated/pcre.php",
  6110. "generated/pgsql.php",
  6111. "generated/posix.php",
  6112. "generated/ps.php",
  6113. "generated/pspell.php",
  6114. "generated/readline.php",
  6115. "generated/rpminfo.php",
  6116. "generated/rrd.php",
  6117. "generated/sem.php",
  6118. "generated/session.php",
  6119. "generated/shmop.php",
  6120. "generated/sockets.php",
  6121. "generated/sodium.php",
  6122. "generated/solr.php",
  6123. "generated/spl.php",
  6124. "generated/sqlsrv.php",
  6125. "generated/ssdeep.php",
  6126. "generated/ssh2.php",
  6127. "generated/stream.php",
  6128. "generated/strings.php",
  6129. "generated/swoole.php",
  6130. "generated/uodbc.php",
  6131. "generated/uopz.php",
  6132. "generated/url.php",
  6133. "generated/var.php",
  6134. "generated/xdiff.php",
  6135. "generated/xml.php",
  6136. "generated/xmlrpc.php",
  6137. "generated/yaml.php",
  6138. "generated/yaz.php",
  6139. "generated/zip.php",
  6140. "generated/zlib.php"
  6141. ],
  6142. "classmap": [
  6143. "lib/DateTime.php",
  6144. "lib/DateTimeImmutable.php",
  6145. "lib/Exceptions/",
  6146. "deprecated/Exceptions/",
  6147. "generated/Exceptions/"
  6148. ]
  6149. },
  6150. "notification-url": "https://packagist.org/downloads/",
  6151. "license": [
  6152. "MIT"
  6153. ],
  6154. "description": "PHP core functions that throw exceptions instead of returning FALSE on error",
  6155. "support": {
  6156. "issues": "https://github.com/thecodingmachine/safe/issues",
  6157. "source": "https://github.com/thecodingmachine/safe/tree/v2.5.0"
  6158. },
  6159. "time": "2023-04-05T11:54:14+00:00"
  6160. },
  6161. {
  6162. "name": "theseer/tokenizer",
  6163. "version": "1.2.2",
  6164. "source": {
  6165. "type": "git",
  6166. "url": "https://github.com/theseer/tokenizer.git",
  6167. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96"
  6168. },
  6169. "dist": {
  6170. "type": "zip",
  6171. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  6172. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  6173. "shasum": ""
  6174. },
  6175. "require": {
  6176. "ext-dom": "*",
  6177. "ext-tokenizer": "*",
  6178. "ext-xmlwriter": "*",
  6179. "php": "^7.2 || ^8.0"
  6180. },
  6181. "type": "library",
  6182. "autoload": {
  6183. "classmap": [
  6184. "src/"
  6185. ]
  6186. },
  6187. "notification-url": "https://packagist.org/downloads/",
  6188. "license": [
  6189. "BSD-3-Clause"
  6190. ],
  6191. "authors": [
  6192. {
  6193. "name": "Arne Blankerts",
  6194. "email": "arne@blankerts.de",
  6195. "role": "Developer"
  6196. }
  6197. ],
  6198. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6199. "support": {
  6200. "issues": "https://github.com/theseer/tokenizer/issues",
  6201. "source": "https://github.com/theseer/tokenizer/tree/1.2.2"
  6202. },
  6203. "funding": [
  6204. {
  6205. "url": "https://github.com/theseer",
  6206. "type": "github"
  6207. }
  6208. ],
  6209. "time": "2023-11-20T00:12:19+00:00"
  6210. },
  6211. {
  6212. "name": "webmozart/assert",
  6213. "version": "1.11.0",
  6214. "source": {
  6215. "type": "git",
  6216. "url": "https://github.com/webmozarts/assert.git",
  6217. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  6218. },
  6219. "dist": {
  6220. "type": "zip",
  6221. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6222. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6223. "shasum": ""
  6224. },
  6225. "require": {
  6226. "ext-ctype": "*",
  6227. "php": "^7.2 || ^8.0"
  6228. },
  6229. "conflict": {
  6230. "phpstan/phpstan": "<0.12.20",
  6231. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6232. },
  6233. "require-dev": {
  6234. "phpunit/phpunit": "^8.5.13"
  6235. },
  6236. "type": "library",
  6237. "extra": {
  6238. "branch-alias": {
  6239. "dev-master": "1.10-dev"
  6240. }
  6241. },
  6242. "autoload": {
  6243. "psr-4": {
  6244. "Webmozart\\Assert\\": "src/"
  6245. }
  6246. },
  6247. "notification-url": "https://packagist.org/downloads/",
  6248. "license": [
  6249. "MIT"
  6250. ],
  6251. "authors": [
  6252. {
  6253. "name": "Bernhard Schussek",
  6254. "email": "bschussek@gmail.com"
  6255. }
  6256. ],
  6257. "description": "Assertions to validate method input/output with nice error messages.",
  6258. "keywords": [
  6259. "assert",
  6260. "check",
  6261. "validate"
  6262. ],
  6263. "support": {
  6264. "issues": "https://github.com/webmozarts/assert/issues",
  6265. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  6266. },
  6267. "time": "2022-06-03T18:03:27+00:00"
  6268. }
  6269. ],
  6270. "aliases": [],
  6271. "minimum-stability": "stable",
  6272. "stability-flags": [],
  6273. "prefer-stable": false,
  6274. "prefer-lowest": false,
  6275. "platform": {
  6276. "php": ">= 8.1",
  6277. "ext-mbstring": "*"
  6278. },
  6279. "platform-dev": [],
  6280. "plugin-api-version": "2.2.0"
  6281. }