composer.lock 309 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637
  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": "3b60529e5647bb0eea71d8652f3498f4",
  8. "packages": [
  9. {
  10. "name": "box/spout",
  11. "version": "v3.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/box/spout.git",
  15. "reference": "9bdb027d312b732515b884a341c0ad70372c6295"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/box/spout/zipball/9bdb027d312b732515b884a341c0ad70372c6295",
  20. "reference": "9bdb027d312b732515b884a341c0ad70372c6295",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-dom": "*",
  25. "ext-xmlreader": "*",
  26. "ext-zip": "*",
  27. "php": ">=7.2.0"
  28. },
  29. "require-dev": {
  30. "friendsofphp/php-cs-fixer": "^2",
  31. "phpunit/phpunit": "^8"
  32. },
  33. "suggest": {
  34. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-intl\" is not already installed or is too limited)",
  35. "ext-intl": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  36. },
  37. "type": "library",
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "3.1.x-dev"
  41. }
  42. },
  43. "autoload": {
  44. "psr-4": {
  45. "Box\\Spout\\": "src/Spout"
  46. }
  47. },
  48. "notification-url": "https://packagist.org/downloads/",
  49. "license": [
  50. "Apache-2.0"
  51. ],
  52. "authors": [
  53. {
  54. "name": "Adrien Loison",
  55. "email": "adrien@box.com"
  56. }
  57. ],
  58. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  59. "homepage": "https://www.github.com/box/spout",
  60. "keywords": [
  61. "OOXML",
  62. "csv",
  63. "excel",
  64. "memory",
  65. "odf",
  66. "ods",
  67. "office",
  68. "open",
  69. "php",
  70. "read",
  71. "scale",
  72. "spreadsheet",
  73. "stream",
  74. "write",
  75. "xlsx"
  76. ],
  77. "support": {
  78. "issues": "https://github.com/box/spout/issues",
  79. "source": "https://github.com/box/spout/tree/v3.3.0"
  80. },
  81. "abandoned": true,
  82. "time": "2021-05-14T21:18:09+00:00"
  83. },
  84. {
  85. "name": "brick/math",
  86. "version": "0.11.0",
  87. "source": {
  88. "type": "git",
  89. "url": "https://github.com/brick/math.git",
  90. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  91. },
  92. "dist": {
  93. "type": "zip",
  94. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  95. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  96. "shasum": ""
  97. },
  98. "require": {
  99. "php": "^8.0"
  100. },
  101. "require-dev": {
  102. "php-coveralls/php-coveralls": "^2.2",
  103. "phpunit/phpunit": "^9.0",
  104. "vimeo/psalm": "5.0.0"
  105. },
  106. "type": "library",
  107. "autoload": {
  108. "psr-4": {
  109. "Brick\\Math\\": "src/"
  110. }
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "MIT"
  115. ],
  116. "description": "Arbitrary-precision arithmetic library",
  117. "keywords": [
  118. "Arbitrary-precision",
  119. "BigInteger",
  120. "BigRational",
  121. "arithmetic",
  122. "bigdecimal",
  123. "bignum",
  124. "brick",
  125. "math"
  126. ],
  127. "support": {
  128. "issues": "https://github.com/brick/math/issues",
  129. "source": "https://github.com/brick/math/tree/0.11.0"
  130. },
  131. "funding": [
  132. {
  133. "url": "https://github.com/BenMorel",
  134. "type": "github"
  135. }
  136. ],
  137. "time": "2023-01-15T23:15:59+00:00"
  138. },
  139. {
  140. "name": "carbonphp/carbon-doctrine-types",
  141. "version": "3.2.0",
  142. "source": {
  143. "type": "git",
  144. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  145. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  146. },
  147. "dist": {
  148. "type": "zip",
  149. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  150. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  151. "shasum": ""
  152. },
  153. "require": {
  154. "php": "^8.1"
  155. },
  156. "conflict": {
  157. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  158. },
  159. "require-dev": {
  160. "doctrine/dbal": "^4.0.0",
  161. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  162. "phpunit/phpunit": "^10.3"
  163. },
  164. "type": "library",
  165. "autoload": {
  166. "psr-4": {
  167. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  168. }
  169. },
  170. "notification-url": "https://packagist.org/downloads/",
  171. "license": [
  172. "MIT"
  173. ],
  174. "authors": [
  175. {
  176. "name": "KyleKatarn",
  177. "email": "kylekatarnls@gmail.com"
  178. }
  179. ],
  180. "description": "Types to use Carbon in Doctrine",
  181. "keywords": [
  182. "carbon",
  183. "date",
  184. "datetime",
  185. "doctrine",
  186. "time"
  187. ],
  188. "support": {
  189. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  190. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  191. },
  192. "funding": [
  193. {
  194. "url": "https://github.com/kylekatarnls",
  195. "type": "github"
  196. },
  197. {
  198. "url": "https://opencollective.com/Carbon",
  199. "type": "open_collective"
  200. },
  201. {
  202. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  203. "type": "tidelift"
  204. }
  205. ],
  206. "time": "2024-02-09T16:56:22+00:00"
  207. },
  208. {
  209. "name": "dcat-plus/laravel-admin",
  210. "version": "v1.2.3",
  211. "source": {
  212. "type": "git",
  213. "url": "https://github.com/ycookies/dcat-plus-admin.git",
  214. "reference": "5376d98630585e07bb64bec81af868aac7b413a5"
  215. },
  216. "dist": {
  217. "type": "zip",
  218. "url": "https://api.github.com/repos/ycookies/dcat-plus-admin/zipball/5376d98630585e07bb64bec81af868aac7b413a5",
  219. "reference": "5376d98630585e07bb64bec81af868aac7b413a5",
  220. "shasum": ""
  221. },
  222. "require": {
  223. "dcat/easy-excel": "*",
  224. "doctrine/dbal": "^2.6|^3.0|^4.0",
  225. "laravel/framework": "~8.0|~9.0|~10.0|~11.0",
  226. "php": ">=7.4.0",
  227. "spatie/eloquent-sortable": "3.*|4.*"
  228. },
  229. "require-dev": {
  230. "fakerphp/faker": "^1.23",
  231. "laravel/dusk": "~5.9|~6|~7.0|~8.0",
  232. "mockery/mockery": "^1.6",
  233. "phpstan/phpstan": "^0.12.0|~1.0",
  234. "phpunit/phpunit": "^7.5|~9|~10|~11"
  235. },
  236. "type": "library",
  237. "extra": {
  238. "laravel": {
  239. "providers": [
  240. "Dcat\\Admin\\AdminServiceProvider"
  241. ]
  242. }
  243. },
  244. "autoload": {
  245. "files": [
  246. "src/Support/helpers.php"
  247. ],
  248. "psr-4": {
  249. "Dcat\\Admin\\": "src/"
  250. }
  251. },
  252. "notification-url": "https://packagist.org/downloads/",
  253. "license": [
  254. "MIT"
  255. ],
  256. "authors": [
  257. {
  258. "name": "jikeadmin.saishiyun.net",
  259. "email": "3664839@qq.com"
  260. }
  261. ],
  262. "description": "dcat-plus admin",
  263. "homepage": "https://github.com/ycookies/dcat-plus-admin",
  264. "keywords": [
  265. "admin",
  266. "dcat",
  267. "form",
  268. "grid",
  269. "laravel",
  270. "laravel saas admin",
  271. "saas"
  272. ],
  273. "support": {
  274. "source": "https://github.com/ycookies/dcat-plus-admin/tree/v1.2.3"
  275. },
  276. "time": "2024-10-09T13:54:02+00:00"
  277. },
  278. {
  279. "name": "dcat/easy-excel",
  280. "version": "1.1.0",
  281. "source": {
  282. "type": "git",
  283. "url": "https://github.com/jqhph/easy-excel.git",
  284. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0"
  285. },
  286. "dist": {
  287. "type": "zip",
  288. "url": "https://api.github.com/repos/jqhph/easy-excel/zipball/20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  289. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  290. "shasum": ""
  291. },
  292. "require": {
  293. "box/spout": "~3",
  294. "league/flysystem": "~1|~2|~3",
  295. "php": ">=7.1.0"
  296. },
  297. "require-dev": {
  298. "friendsofphp/php-cs-fixer": "^2",
  299. "phpunit/phpunit": "~7|~8.0"
  300. },
  301. "type": "library",
  302. "autoload": {
  303. "psr-4": {
  304. "Dcat\\EasyExcel\\": "src/"
  305. }
  306. },
  307. "notification-url": "https://packagist.org/downloads/",
  308. "license": [
  309. "MIT"
  310. ],
  311. "authors": [
  312. {
  313. "name": "jqh",
  314. "email": "841324345@qq.com"
  315. }
  316. ],
  317. "description": "使用简单实用的语义化接口快速读写Excel文件",
  318. "homepage": "https://github.com/jqhph/easy-excel",
  319. "keywords": [
  320. "box spout",
  321. "csv",
  322. "easy excel",
  323. "excel",
  324. "ods",
  325. "office",
  326. "read",
  327. "spreadsheet",
  328. "stream",
  329. "xlsx"
  330. ],
  331. "support": {
  332. "issues": "https://github.com/jqhph/easy-excel/issues",
  333. "source": "https://github.com/jqhph/easy-excel/tree/1.1.0"
  334. },
  335. "time": "2022-03-03T03:04:13+00:00"
  336. },
  337. {
  338. "name": "dflydev/dot-access-data",
  339. "version": "v3.0.3",
  340. "source": {
  341. "type": "git",
  342. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  343. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  344. },
  345. "dist": {
  346. "type": "zip",
  347. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  348. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  349. "shasum": ""
  350. },
  351. "require": {
  352. "php": "^7.1 || ^8.0"
  353. },
  354. "require-dev": {
  355. "phpstan/phpstan": "^0.12.42",
  356. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  357. "scrutinizer/ocular": "1.6.0",
  358. "squizlabs/php_codesniffer": "^3.5",
  359. "vimeo/psalm": "^4.0.0"
  360. },
  361. "type": "library",
  362. "extra": {
  363. "branch-alias": {
  364. "dev-main": "3.x-dev"
  365. }
  366. },
  367. "autoload": {
  368. "psr-4": {
  369. "Dflydev\\DotAccessData\\": "src/"
  370. }
  371. },
  372. "notification-url": "https://packagist.org/downloads/",
  373. "license": [
  374. "MIT"
  375. ],
  376. "authors": [
  377. {
  378. "name": "Dragonfly Development Inc.",
  379. "email": "info@dflydev.com",
  380. "homepage": "http://dflydev.com"
  381. },
  382. {
  383. "name": "Beau Simensen",
  384. "email": "beau@dflydev.com",
  385. "homepage": "http://beausimensen.com"
  386. },
  387. {
  388. "name": "Carlos Frutos",
  389. "email": "carlos@kiwing.it",
  390. "homepage": "https://github.com/cfrutos"
  391. },
  392. {
  393. "name": "Colin O'Dell",
  394. "email": "colinodell@gmail.com",
  395. "homepage": "https://www.colinodell.com"
  396. }
  397. ],
  398. "description": "Given a deep data structure, access data by dot notation.",
  399. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  400. "keywords": [
  401. "access",
  402. "data",
  403. "dot",
  404. "notation"
  405. ],
  406. "support": {
  407. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  408. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  409. },
  410. "time": "2024-07-08T12:26:09+00:00"
  411. },
  412. {
  413. "name": "doctrine/dbal",
  414. "version": "4.2.1",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/doctrine/dbal.git",
  418. "reference": "dadd35300837a3a2184bd47d403333b15d0a9bd0"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/doctrine/dbal/zipball/dadd35300837a3a2184bd47d403333b15d0a9bd0",
  423. "reference": "dadd35300837a3a2184bd47d403333b15d0a9bd0",
  424. "shasum": ""
  425. },
  426. "require": {
  427. "doctrine/deprecations": "^0.5.3|^1",
  428. "php": "^8.1",
  429. "psr/cache": "^1|^2|^3",
  430. "psr/log": "^1|^2|^3"
  431. },
  432. "require-dev": {
  433. "doctrine/coding-standard": "12.0.0",
  434. "fig/log-test": "^1",
  435. "jetbrains/phpstorm-stubs": "2023.2",
  436. "phpstan/phpstan": "1.12.6",
  437. "phpstan/phpstan-phpunit": "1.4.0",
  438. "phpstan/phpstan-strict-rules": "^1.6",
  439. "phpunit/phpunit": "10.5.30",
  440. "psalm/plugin-phpunit": "0.19.0",
  441. "slevomat/coding-standard": "8.13.1",
  442. "squizlabs/php_codesniffer": "3.10.2",
  443. "symfony/cache": "^6.3.8|^7.0",
  444. "symfony/console": "^5.4|^6.3|^7.0",
  445. "vimeo/psalm": "5.25.0"
  446. },
  447. "suggest": {
  448. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  449. },
  450. "type": "library",
  451. "autoload": {
  452. "psr-4": {
  453. "Doctrine\\DBAL\\": "src"
  454. }
  455. },
  456. "notification-url": "https://packagist.org/downloads/",
  457. "license": [
  458. "MIT"
  459. ],
  460. "authors": [
  461. {
  462. "name": "Guilherme Blanco",
  463. "email": "guilhermeblanco@gmail.com"
  464. },
  465. {
  466. "name": "Roman Borschel",
  467. "email": "roman@code-factory.org"
  468. },
  469. {
  470. "name": "Benjamin Eberlei",
  471. "email": "kontakt@beberlei.de"
  472. },
  473. {
  474. "name": "Jonathan Wage",
  475. "email": "jonwage@gmail.com"
  476. }
  477. ],
  478. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  479. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  480. "keywords": [
  481. "abstraction",
  482. "database",
  483. "db2",
  484. "dbal",
  485. "mariadb",
  486. "mssql",
  487. "mysql",
  488. "oci8",
  489. "oracle",
  490. "pdo",
  491. "pgsql",
  492. "postgresql",
  493. "queryobject",
  494. "sasql",
  495. "sql",
  496. "sqlite",
  497. "sqlserver",
  498. "sqlsrv"
  499. ],
  500. "support": {
  501. "issues": "https://github.com/doctrine/dbal/issues",
  502. "source": "https://github.com/doctrine/dbal/tree/4.2.1"
  503. },
  504. "funding": [
  505. {
  506. "url": "https://www.doctrine-project.org/sponsorship.html",
  507. "type": "custom"
  508. },
  509. {
  510. "url": "https://www.patreon.com/phpdoctrine",
  511. "type": "patreon"
  512. },
  513. {
  514. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  515. "type": "tidelift"
  516. }
  517. ],
  518. "time": "2024-10-10T18:01:27+00:00"
  519. },
  520. {
  521. "name": "doctrine/deprecations",
  522. "version": "1.1.3",
  523. "source": {
  524. "type": "git",
  525. "url": "https://github.com/doctrine/deprecations.git",
  526. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  527. },
  528. "dist": {
  529. "type": "zip",
  530. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  531. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  532. "shasum": ""
  533. },
  534. "require": {
  535. "php": "^7.1 || ^8.0"
  536. },
  537. "require-dev": {
  538. "doctrine/coding-standard": "^9",
  539. "phpstan/phpstan": "1.4.10 || 1.10.15",
  540. "phpstan/phpstan-phpunit": "^1.0",
  541. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  542. "psalm/plugin-phpunit": "0.18.4",
  543. "psr/log": "^1 || ^2 || ^3",
  544. "vimeo/psalm": "4.30.0 || 5.12.0"
  545. },
  546. "suggest": {
  547. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  548. },
  549. "type": "library",
  550. "autoload": {
  551. "psr-4": {
  552. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  553. }
  554. },
  555. "notification-url": "https://packagist.org/downloads/",
  556. "license": [
  557. "MIT"
  558. ],
  559. "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.",
  560. "homepage": "https://www.doctrine-project.org/",
  561. "support": {
  562. "issues": "https://github.com/doctrine/deprecations/issues",
  563. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  564. },
  565. "time": "2024-01-30T19:34:25+00:00"
  566. },
  567. {
  568. "name": "doctrine/inflector",
  569. "version": "2.0.10",
  570. "source": {
  571. "type": "git",
  572. "url": "https://github.com/doctrine/inflector.git",
  573. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  574. },
  575. "dist": {
  576. "type": "zip",
  577. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  578. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  579. "shasum": ""
  580. },
  581. "require": {
  582. "php": "^7.2 || ^8.0"
  583. },
  584. "require-dev": {
  585. "doctrine/coding-standard": "^11.0",
  586. "phpstan/phpstan": "^1.8",
  587. "phpstan/phpstan-phpunit": "^1.1",
  588. "phpstan/phpstan-strict-rules": "^1.3",
  589. "phpunit/phpunit": "^8.5 || ^9.5",
  590. "vimeo/psalm": "^4.25 || ^5.4"
  591. },
  592. "type": "library",
  593. "autoload": {
  594. "psr-4": {
  595. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  596. }
  597. },
  598. "notification-url": "https://packagist.org/downloads/",
  599. "license": [
  600. "MIT"
  601. ],
  602. "authors": [
  603. {
  604. "name": "Guilherme Blanco",
  605. "email": "guilhermeblanco@gmail.com"
  606. },
  607. {
  608. "name": "Roman Borschel",
  609. "email": "roman@code-factory.org"
  610. },
  611. {
  612. "name": "Benjamin Eberlei",
  613. "email": "kontakt@beberlei.de"
  614. },
  615. {
  616. "name": "Jonathan Wage",
  617. "email": "jonwage@gmail.com"
  618. },
  619. {
  620. "name": "Johannes Schmitt",
  621. "email": "schmittjoh@gmail.com"
  622. }
  623. ],
  624. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  625. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  626. "keywords": [
  627. "inflection",
  628. "inflector",
  629. "lowercase",
  630. "manipulation",
  631. "php",
  632. "plural",
  633. "singular",
  634. "strings",
  635. "uppercase",
  636. "words"
  637. ],
  638. "support": {
  639. "issues": "https://github.com/doctrine/inflector/issues",
  640. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  641. },
  642. "funding": [
  643. {
  644. "url": "https://www.doctrine-project.org/sponsorship.html",
  645. "type": "custom"
  646. },
  647. {
  648. "url": "https://www.patreon.com/phpdoctrine",
  649. "type": "patreon"
  650. },
  651. {
  652. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  653. "type": "tidelift"
  654. }
  655. ],
  656. "time": "2024-02-18T20:23:39+00:00"
  657. },
  658. {
  659. "name": "doctrine/lexer",
  660. "version": "3.0.1",
  661. "source": {
  662. "type": "git",
  663. "url": "https://github.com/doctrine/lexer.git",
  664. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  665. },
  666. "dist": {
  667. "type": "zip",
  668. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  669. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  670. "shasum": ""
  671. },
  672. "require": {
  673. "php": "^8.1"
  674. },
  675. "require-dev": {
  676. "doctrine/coding-standard": "^12",
  677. "phpstan/phpstan": "^1.10",
  678. "phpunit/phpunit": "^10.5",
  679. "psalm/plugin-phpunit": "^0.18.3",
  680. "vimeo/psalm": "^5.21"
  681. },
  682. "type": "library",
  683. "autoload": {
  684. "psr-4": {
  685. "Doctrine\\Common\\Lexer\\": "src"
  686. }
  687. },
  688. "notification-url": "https://packagist.org/downloads/",
  689. "license": [
  690. "MIT"
  691. ],
  692. "authors": [
  693. {
  694. "name": "Guilherme Blanco",
  695. "email": "guilhermeblanco@gmail.com"
  696. },
  697. {
  698. "name": "Roman Borschel",
  699. "email": "roman@code-factory.org"
  700. },
  701. {
  702. "name": "Johannes Schmitt",
  703. "email": "schmittjoh@gmail.com"
  704. }
  705. ],
  706. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  707. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  708. "keywords": [
  709. "annotations",
  710. "docblock",
  711. "lexer",
  712. "parser",
  713. "php"
  714. ],
  715. "support": {
  716. "issues": "https://github.com/doctrine/lexer/issues",
  717. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  718. },
  719. "funding": [
  720. {
  721. "url": "https://www.doctrine-project.org/sponsorship.html",
  722. "type": "custom"
  723. },
  724. {
  725. "url": "https://www.patreon.com/phpdoctrine",
  726. "type": "patreon"
  727. },
  728. {
  729. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  730. "type": "tidelift"
  731. }
  732. ],
  733. "time": "2024-02-05T11:56:58+00:00"
  734. },
  735. {
  736. "name": "dragonmantank/cron-expression",
  737. "version": "v3.4.0",
  738. "source": {
  739. "type": "git",
  740. "url": "https://github.com/dragonmantank/cron-expression.git",
  741. "reference": "8c784d071debd117328803d86b2097615b457500"
  742. },
  743. "dist": {
  744. "type": "zip",
  745. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  746. "reference": "8c784d071debd117328803d86b2097615b457500",
  747. "shasum": ""
  748. },
  749. "require": {
  750. "php": "^7.2|^8.0",
  751. "webmozart/assert": "^1.0"
  752. },
  753. "replace": {
  754. "mtdowling/cron-expression": "^1.0"
  755. },
  756. "require-dev": {
  757. "phpstan/extension-installer": "^1.0",
  758. "phpstan/phpstan": "^1.0",
  759. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  760. },
  761. "type": "library",
  762. "extra": {
  763. "branch-alias": {
  764. "dev-master": "3.x-dev"
  765. }
  766. },
  767. "autoload": {
  768. "psr-4": {
  769. "Cron\\": "src/Cron/"
  770. }
  771. },
  772. "notification-url": "https://packagist.org/downloads/",
  773. "license": [
  774. "MIT"
  775. ],
  776. "authors": [
  777. {
  778. "name": "Chris Tankersley",
  779. "email": "chris@ctankersley.com",
  780. "homepage": "https://github.com/dragonmantank"
  781. }
  782. ],
  783. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  784. "keywords": [
  785. "cron",
  786. "schedule"
  787. ],
  788. "support": {
  789. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  790. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  791. },
  792. "funding": [
  793. {
  794. "url": "https://github.com/dragonmantank",
  795. "type": "github"
  796. }
  797. ],
  798. "time": "2024-10-09T13:47:03+00:00"
  799. },
  800. {
  801. "name": "egulias/email-validator",
  802. "version": "4.0.2",
  803. "source": {
  804. "type": "git",
  805. "url": "https://github.com/egulias/EmailValidator.git",
  806. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  807. },
  808. "dist": {
  809. "type": "zip",
  810. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  811. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  812. "shasum": ""
  813. },
  814. "require": {
  815. "doctrine/lexer": "^2.0 || ^3.0",
  816. "php": ">=8.1",
  817. "symfony/polyfill-intl-idn": "^1.26"
  818. },
  819. "require-dev": {
  820. "phpunit/phpunit": "^10.2",
  821. "vimeo/psalm": "^5.12"
  822. },
  823. "suggest": {
  824. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  825. },
  826. "type": "library",
  827. "extra": {
  828. "branch-alias": {
  829. "dev-master": "4.0.x-dev"
  830. }
  831. },
  832. "autoload": {
  833. "psr-4": {
  834. "Egulias\\EmailValidator\\": "src"
  835. }
  836. },
  837. "notification-url": "https://packagist.org/downloads/",
  838. "license": [
  839. "MIT"
  840. ],
  841. "authors": [
  842. {
  843. "name": "Eduardo Gulias Davis"
  844. }
  845. ],
  846. "description": "A library for validating emails against several RFCs",
  847. "homepage": "https://github.com/egulias/EmailValidator",
  848. "keywords": [
  849. "email",
  850. "emailvalidation",
  851. "emailvalidator",
  852. "validation",
  853. "validator"
  854. ],
  855. "support": {
  856. "issues": "https://github.com/egulias/EmailValidator/issues",
  857. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  858. },
  859. "funding": [
  860. {
  861. "url": "https://github.com/egulias",
  862. "type": "github"
  863. }
  864. ],
  865. "time": "2023-10-06T06:47:41+00:00"
  866. },
  867. {
  868. "name": "fruitcake/php-cors",
  869. "version": "v1.3.0",
  870. "source": {
  871. "type": "git",
  872. "url": "https://github.com/fruitcake/php-cors.git",
  873. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  874. },
  875. "dist": {
  876. "type": "zip",
  877. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  878. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  879. "shasum": ""
  880. },
  881. "require": {
  882. "php": "^7.4|^8.0",
  883. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  884. },
  885. "require-dev": {
  886. "phpstan/phpstan": "^1.4",
  887. "phpunit/phpunit": "^9",
  888. "squizlabs/php_codesniffer": "^3.5"
  889. },
  890. "type": "library",
  891. "extra": {
  892. "branch-alias": {
  893. "dev-master": "1.2-dev"
  894. }
  895. },
  896. "autoload": {
  897. "psr-4": {
  898. "Fruitcake\\Cors\\": "src/"
  899. }
  900. },
  901. "notification-url": "https://packagist.org/downloads/",
  902. "license": [
  903. "MIT"
  904. ],
  905. "authors": [
  906. {
  907. "name": "Fruitcake",
  908. "homepage": "https://fruitcake.nl"
  909. },
  910. {
  911. "name": "Barryvdh",
  912. "email": "barryvdh@gmail.com"
  913. }
  914. ],
  915. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  916. "homepage": "https://github.com/fruitcake/php-cors",
  917. "keywords": [
  918. "cors",
  919. "laravel",
  920. "symfony"
  921. ],
  922. "support": {
  923. "issues": "https://github.com/fruitcake/php-cors/issues",
  924. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  925. },
  926. "funding": [
  927. {
  928. "url": "https://fruitcake.nl",
  929. "type": "custom"
  930. },
  931. {
  932. "url": "https://github.com/barryvdh",
  933. "type": "github"
  934. }
  935. ],
  936. "time": "2023-10-12T05:21:21+00:00"
  937. },
  938. {
  939. "name": "graham-campbell/result-type",
  940. "version": "v1.1.3",
  941. "source": {
  942. "type": "git",
  943. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  944. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  945. },
  946. "dist": {
  947. "type": "zip",
  948. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  949. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  950. "shasum": ""
  951. },
  952. "require": {
  953. "php": "^7.2.5 || ^8.0",
  954. "phpoption/phpoption": "^1.9.3"
  955. },
  956. "require-dev": {
  957. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  958. },
  959. "type": "library",
  960. "autoload": {
  961. "psr-4": {
  962. "GrahamCampbell\\ResultType\\": "src/"
  963. }
  964. },
  965. "notification-url": "https://packagist.org/downloads/",
  966. "license": [
  967. "MIT"
  968. ],
  969. "authors": [
  970. {
  971. "name": "Graham Campbell",
  972. "email": "hello@gjcampbell.co.uk",
  973. "homepage": "https://github.com/GrahamCampbell"
  974. }
  975. ],
  976. "description": "An Implementation Of The Result Type",
  977. "keywords": [
  978. "Graham Campbell",
  979. "GrahamCampbell",
  980. "Result Type",
  981. "Result-Type",
  982. "result"
  983. ],
  984. "support": {
  985. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  986. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  987. },
  988. "funding": [
  989. {
  990. "url": "https://github.com/GrahamCampbell",
  991. "type": "github"
  992. },
  993. {
  994. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  995. "type": "tidelift"
  996. }
  997. ],
  998. "time": "2024-07-20T21:45:45+00:00"
  999. },
  1000. {
  1001. "name": "guzzlehttp/guzzle",
  1002. "version": "7.9.2",
  1003. "source": {
  1004. "type": "git",
  1005. "url": "https://github.com/guzzle/guzzle.git",
  1006. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1007. },
  1008. "dist": {
  1009. "type": "zip",
  1010. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1011. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1012. "shasum": ""
  1013. },
  1014. "require": {
  1015. "ext-json": "*",
  1016. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1017. "guzzlehttp/psr7": "^2.7.0",
  1018. "php": "^7.2.5 || ^8.0",
  1019. "psr/http-client": "^1.0",
  1020. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1021. },
  1022. "provide": {
  1023. "psr/http-client-implementation": "1.0"
  1024. },
  1025. "require-dev": {
  1026. "bamarni/composer-bin-plugin": "^1.8.2",
  1027. "ext-curl": "*",
  1028. "guzzle/client-integration-tests": "3.0.2",
  1029. "php-http/message-factory": "^1.1",
  1030. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1031. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1032. },
  1033. "suggest": {
  1034. "ext-curl": "Required for CURL handler support",
  1035. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1036. "psr/log": "Required for using the Log middleware"
  1037. },
  1038. "type": "library",
  1039. "extra": {
  1040. "bamarni-bin": {
  1041. "bin-links": true,
  1042. "forward-command": false
  1043. }
  1044. },
  1045. "autoload": {
  1046. "files": [
  1047. "src/functions_include.php"
  1048. ],
  1049. "psr-4": {
  1050. "GuzzleHttp\\": "src/"
  1051. }
  1052. },
  1053. "notification-url": "https://packagist.org/downloads/",
  1054. "license": [
  1055. "MIT"
  1056. ],
  1057. "authors": [
  1058. {
  1059. "name": "Graham Campbell",
  1060. "email": "hello@gjcampbell.co.uk",
  1061. "homepage": "https://github.com/GrahamCampbell"
  1062. },
  1063. {
  1064. "name": "Michael Dowling",
  1065. "email": "mtdowling@gmail.com",
  1066. "homepage": "https://github.com/mtdowling"
  1067. },
  1068. {
  1069. "name": "Jeremy Lindblom",
  1070. "email": "jeremeamia@gmail.com",
  1071. "homepage": "https://github.com/jeremeamia"
  1072. },
  1073. {
  1074. "name": "George Mponos",
  1075. "email": "gmponos@gmail.com",
  1076. "homepage": "https://github.com/gmponos"
  1077. },
  1078. {
  1079. "name": "Tobias Nyholm",
  1080. "email": "tobias.nyholm@gmail.com",
  1081. "homepage": "https://github.com/Nyholm"
  1082. },
  1083. {
  1084. "name": "Márk Sági-Kazár",
  1085. "email": "mark.sagikazar@gmail.com",
  1086. "homepage": "https://github.com/sagikazarmark"
  1087. },
  1088. {
  1089. "name": "Tobias Schultze",
  1090. "email": "webmaster@tubo-world.de",
  1091. "homepage": "https://github.com/Tobion"
  1092. }
  1093. ],
  1094. "description": "Guzzle is a PHP HTTP client library",
  1095. "keywords": [
  1096. "client",
  1097. "curl",
  1098. "framework",
  1099. "http",
  1100. "http client",
  1101. "psr-18",
  1102. "psr-7",
  1103. "rest",
  1104. "web service"
  1105. ],
  1106. "support": {
  1107. "issues": "https://github.com/guzzle/guzzle/issues",
  1108. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1109. },
  1110. "funding": [
  1111. {
  1112. "url": "https://github.com/GrahamCampbell",
  1113. "type": "github"
  1114. },
  1115. {
  1116. "url": "https://github.com/Nyholm",
  1117. "type": "github"
  1118. },
  1119. {
  1120. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1121. "type": "tidelift"
  1122. }
  1123. ],
  1124. "time": "2024-07-24T11:22:20+00:00"
  1125. },
  1126. {
  1127. "name": "guzzlehttp/promises",
  1128. "version": "2.0.4",
  1129. "source": {
  1130. "type": "git",
  1131. "url": "https://github.com/guzzle/promises.git",
  1132. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  1133. },
  1134. "dist": {
  1135. "type": "zip",
  1136. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1137. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1138. "shasum": ""
  1139. },
  1140. "require": {
  1141. "php": "^7.2.5 || ^8.0"
  1142. },
  1143. "require-dev": {
  1144. "bamarni/composer-bin-plugin": "^1.8.2",
  1145. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1146. },
  1147. "type": "library",
  1148. "extra": {
  1149. "bamarni-bin": {
  1150. "bin-links": true,
  1151. "forward-command": false
  1152. }
  1153. },
  1154. "autoload": {
  1155. "psr-4": {
  1156. "GuzzleHttp\\Promise\\": "src/"
  1157. }
  1158. },
  1159. "notification-url": "https://packagist.org/downloads/",
  1160. "license": [
  1161. "MIT"
  1162. ],
  1163. "authors": [
  1164. {
  1165. "name": "Graham Campbell",
  1166. "email": "hello@gjcampbell.co.uk",
  1167. "homepage": "https://github.com/GrahamCampbell"
  1168. },
  1169. {
  1170. "name": "Michael Dowling",
  1171. "email": "mtdowling@gmail.com",
  1172. "homepage": "https://github.com/mtdowling"
  1173. },
  1174. {
  1175. "name": "Tobias Nyholm",
  1176. "email": "tobias.nyholm@gmail.com",
  1177. "homepage": "https://github.com/Nyholm"
  1178. },
  1179. {
  1180. "name": "Tobias Schultze",
  1181. "email": "webmaster@tubo-world.de",
  1182. "homepage": "https://github.com/Tobion"
  1183. }
  1184. ],
  1185. "description": "Guzzle promises library",
  1186. "keywords": [
  1187. "promise"
  1188. ],
  1189. "support": {
  1190. "issues": "https://github.com/guzzle/promises/issues",
  1191. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  1192. },
  1193. "funding": [
  1194. {
  1195. "url": "https://github.com/GrahamCampbell",
  1196. "type": "github"
  1197. },
  1198. {
  1199. "url": "https://github.com/Nyholm",
  1200. "type": "github"
  1201. },
  1202. {
  1203. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1204. "type": "tidelift"
  1205. }
  1206. ],
  1207. "time": "2024-10-17T10:06:22+00:00"
  1208. },
  1209. {
  1210. "name": "guzzlehttp/psr7",
  1211. "version": "2.7.0",
  1212. "source": {
  1213. "type": "git",
  1214. "url": "https://github.com/guzzle/psr7.git",
  1215. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1216. },
  1217. "dist": {
  1218. "type": "zip",
  1219. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1220. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1221. "shasum": ""
  1222. },
  1223. "require": {
  1224. "php": "^7.2.5 || ^8.0",
  1225. "psr/http-factory": "^1.0",
  1226. "psr/http-message": "^1.1 || ^2.0",
  1227. "ralouphie/getallheaders": "^3.0"
  1228. },
  1229. "provide": {
  1230. "psr/http-factory-implementation": "1.0",
  1231. "psr/http-message-implementation": "1.0"
  1232. },
  1233. "require-dev": {
  1234. "bamarni/composer-bin-plugin": "^1.8.2",
  1235. "http-interop/http-factory-tests": "0.9.0",
  1236. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1237. },
  1238. "suggest": {
  1239. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1240. },
  1241. "type": "library",
  1242. "extra": {
  1243. "bamarni-bin": {
  1244. "bin-links": true,
  1245. "forward-command": false
  1246. }
  1247. },
  1248. "autoload": {
  1249. "psr-4": {
  1250. "GuzzleHttp\\Psr7\\": "src/"
  1251. }
  1252. },
  1253. "notification-url": "https://packagist.org/downloads/",
  1254. "license": [
  1255. "MIT"
  1256. ],
  1257. "authors": [
  1258. {
  1259. "name": "Graham Campbell",
  1260. "email": "hello@gjcampbell.co.uk",
  1261. "homepage": "https://github.com/GrahamCampbell"
  1262. },
  1263. {
  1264. "name": "Michael Dowling",
  1265. "email": "mtdowling@gmail.com",
  1266. "homepage": "https://github.com/mtdowling"
  1267. },
  1268. {
  1269. "name": "George Mponos",
  1270. "email": "gmponos@gmail.com",
  1271. "homepage": "https://github.com/gmponos"
  1272. },
  1273. {
  1274. "name": "Tobias Nyholm",
  1275. "email": "tobias.nyholm@gmail.com",
  1276. "homepage": "https://github.com/Nyholm"
  1277. },
  1278. {
  1279. "name": "Márk Sági-Kazár",
  1280. "email": "mark.sagikazar@gmail.com",
  1281. "homepage": "https://github.com/sagikazarmark"
  1282. },
  1283. {
  1284. "name": "Tobias Schultze",
  1285. "email": "webmaster@tubo-world.de",
  1286. "homepage": "https://github.com/Tobion"
  1287. },
  1288. {
  1289. "name": "Márk Sági-Kazár",
  1290. "email": "mark.sagikazar@gmail.com",
  1291. "homepage": "https://sagikazarmark.hu"
  1292. }
  1293. ],
  1294. "description": "PSR-7 message implementation that also provides common utility methods",
  1295. "keywords": [
  1296. "http",
  1297. "message",
  1298. "psr-7",
  1299. "request",
  1300. "response",
  1301. "stream",
  1302. "uri",
  1303. "url"
  1304. ],
  1305. "support": {
  1306. "issues": "https://github.com/guzzle/psr7/issues",
  1307. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1308. },
  1309. "funding": [
  1310. {
  1311. "url": "https://github.com/GrahamCampbell",
  1312. "type": "github"
  1313. },
  1314. {
  1315. "url": "https://github.com/Nyholm",
  1316. "type": "github"
  1317. },
  1318. {
  1319. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1320. "type": "tidelift"
  1321. }
  1322. ],
  1323. "time": "2024-07-18T11:15:46+00:00"
  1324. },
  1325. {
  1326. "name": "guzzlehttp/uri-template",
  1327. "version": "v1.0.3",
  1328. "source": {
  1329. "type": "git",
  1330. "url": "https://github.com/guzzle/uri-template.git",
  1331. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  1332. },
  1333. "dist": {
  1334. "type": "zip",
  1335. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1336. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1337. "shasum": ""
  1338. },
  1339. "require": {
  1340. "php": "^7.2.5 || ^8.0",
  1341. "symfony/polyfill-php80": "^1.24"
  1342. },
  1343. "require-dev": {
  1344. "bamarni/composer-bin-plugin": "^1.8.2",
  1345. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1346. "uri-template/tests": "1.0.0"
  1347. },
  1348. "type": "library",
  1349. "extra": {
  1350. "bamarni-bin": {
  1351. "bin-links": true,
  1352. "forward-command": false
  1353. }
  1354. },
  1355. "autoload": {
  1356. "psr-4": {
  1357. "GuzzleHttp\\UriTemplate\\": "src"
  1358. }
  1359. },
  1360. "notification-url": "https://packagist.org/downloads/",
  1361. "license": [
  1362. "MIT"
  1363. ],
  1364. "authors": [
  1365. {
  1366. "name": "Graham Campbell",
  1367. "email": "hello@gjcampbell.co.uk",
  1368. "homepage": "https://github.com/GrahamCampbell"
  1369. },
  1370. {
  1371. "name": "Michael Dowling",
  1372. "email": "mtdowling@gmail.com",
  1373. "homepage": "https://github.com/mtdowling"
  1374. },
  1375. {
  1376. "name": "George Mponos",
  1377. "email": "gmponos@gmail.com",
  1378. "homepage": "https://github.com/gmponos"
  1379. },
  1380. {
  1381. "name": "Tobias Nyholm",
  1382. "email": "tobias.nyholm@gmail.com",
  1383. "homepage": "https://github.com/Nyholm"
  1384. }
  1385. ],
  1386. "description": "A polyfill class for uri_template of PHP",
  1387. "keywords": [
  1388. "guzzlehttp",
  1389. "uri-template"
  1390. ],
  1391. "support": {
  1392. "issues": "https://github.com/guzzle/uri-template/issues",
  1393. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  1394. },
  1395. "funding": [
  1396. {
  1397. "url": "https://github.com/GrahamCampbell",
  1398. "type": "github"
  1399. },
  1400. {
  1401. "url": "https://github.com/Nyholm",
  1402. "type": "github"
  1403. },
  1404. {
  1405. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1406. "type": "tidelift"
  1407. }
  1408. ],
  1409. "time": "2023-12-03T19:50:20+00:00"
  1410. },
  1411. {
  1412. "name": "laravel/framework",
  1413. "version": "v9.52.16",
  1414. "source": {
  1415. "type": "git",
  1416. "url": "https://github.com/laravel/framework.git",
  1417. "reference": "082345d76fc6a55b649572efe10b11b03e279d24"
  1418. },
  1419. "dist": {
  1420. "type": "zip",
  1421. "url": "https://api.github.com/repos/laravel/framework/zipball/082345d76fc6a55b649572efe10b11b03e279d24",
  1422. "reference": "082345d76fc6a55b649572efe10b11b03e279d24",
  1423. "shasum": ""
  1424. },
  1425. "require": {
  1426. "brick/math": "^0.9.3|^0.10.2|^0.11",
  1427. "doctrine/inflector": "^2.0.5",
  1428. "dragonmantank/cron-expression": "^3.3.2",
  1429. "egulias/email-validator": "^3.2.1|^4.0",
  1430. "ext-ctype": "*",
  1431. "ext-filter": "*",
  1432. "ext-hash": "*",
  1433. "ext-mbstring": "*",
  1434. "ext-openssl": "*",
  1435. "ext-session": "*",
  1436. "ext-tokenizer": "*",
  1437. "fruitcake/php-cors": "^1.2",
  1438. "guzzlehttp/uri-template": "^1.0",
  1439. "laravel/serializable-closure": "^1.2.2",
  1440. "league/commonmark": "^2.2.1",
  1441. "league/flysystem": "^3.8.0",
  1442. "monolog/monolog": "^2.0",
  1443. "nesbot/carbon": "^2.62.1",
  1444. "nunomaduro/termwind": "^1.13",
  1445. "php": "^8.0.2",
  1446. "psr/container": "^1.1.1|^2.0.1",
  1447. "psr/log": "^1.0|^2.0|^3.0",
  1448. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1449. "ramsey/uuid": "^4.7",
  1450. "symfony/console": "^6.0.9",
  1451. "symfony/error-handler": "^6.0",
  1452. "symfony/finder": "^6.0",
  1453. "symfony/http-foundation": "^6.0",
  1454. "symfony/http-kernel": "^6.0",
  1455. "symfony/mailer": "^6.0",
  1456. "symfony/mime": "^6.0",
  1457. "symfony/process": "^6.0",
  1458. "symfony/routing": "^6.0",
  1459. "symfony/uid": "^6.0",
  1460. "symfony/var-dumper": "^6.0",
  1461. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1462. "vlucas/phpdotenv": "^5.4.1",
  1463. "voku/portable-ascii": "^2.0"
  1464. },
  1465. "conflict": {
  1466. "tightenco/collect": "<5.5.33"
  1467. },
  1468. "provide": {
  1469. "psr/container-implementation": "1.1|2.0",
  1470. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1471. },
  1472. "replace": {
  1473. "illuminate/auth": "self.version",
  1474. "illuminate/broadcasting": "self.version",
  1475. "illuminate/bus": "self.version",
  1476. "illuminate/cache": "self.version",
  1477. "illuminate/collections": "self.version",
  1478. "illuminate/conditionable": "self.version",
  1479. "illuminate/config": "self.version",
  1480. "illuminate/console": "self.version",
  1481. "illuminate/container": "self.version",
  1482. "illuminate/contracts": "self.version",
  1483. "illuminate/cookie": "self.version",
  1484. "illuminate/database": "self.version",
  1485. "illuminate/encryption": "self.version",
  1486. "illuminate/events": "self.version",
  1487. "illuminate/filesystem": "self.version",
  1488. "illuminate/hashing": "self.version",
  1489. "illuminate/http": "self.version",
  1490. "illuminate/log": "self.version",
  1491. "illuminate/macroable": "self.version",
  1492. "illuminate/mail": "self.version",
  1493. "illuminate/notifications": "self.version",
  1494. "illuminate/pagination": "self.version",
  1495. "illuminate/pipeline": "self.version",
  1496. "illuminate/queue": "self.version",
  1497. "illuminate/redis": "self.version",
  1498. "illuminate/routing": "self.version",
  1499. "illuminate/session": "self.version",
  1500. "illuminate/support": "self.version",
  1501. "illuminate/testing": "self.version",
  1502. "illuminate/translation": "self.version",
  1503. "illuminate/validation": "self.version",
  1504. "illuminate/view": "self.version"
  1505. },
  1506. "require-dev": {
  1507. "ably/ably-php": "^1.0",
  1508. "aws/aws-sdk-php": "^3.235.5",
  1509. "doctrine/dbal": "^2.13.3|^3.1.4",
  1510. "ext-gmp": "*",
  1511. "fakerphp/faker": "^1.21",
  1512. "guzzlehttp/guzzle": "^7.5",
  1513. "league/flysystem-aws-s3-v3": "^3.0",
  1514. "league/flysystem-ftp": "^3.0",
  1515. "league/flysystem-path-prefixing": "^3.3",
  1516. "league/flysystem-read-only": "^3.3",
  1517. "league/flysystem-sftp-v3": "^3.0",
  1518. "mockery/mockery": "^1.5.1",
  1519. "orchestra/testbench-core": "^7.24",
  1520. "pda/pheanstalk": "^4.0",
  1521. "phpstan/phpdoc-parser": "^1.15",
  1522. "phpstan/phpstan": "^1.4.7",
  1523. "phpunit/phpunit": "^9.5.8",
  1524. "predis/predis": "^1.1.9|^2.0.2",
  1525. "symfony/cache": "^6.0",
  1526. "symfony/http-client": "^6.0"
  1527. },
  1528. "suggest": {
  1529. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1530. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  1531. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1532. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1533. "ext-apcu": "Required to use the APC cache driver.",
  1534. "ext-fileinfo": "Required to use the Filesystem class.",
  1535. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1536. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1537. "ext-memcached": "Required to use the memcache cache driver.",
  1538. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  1539. "ext-pdo": "Required to use all database features.",
  1540. "ext-posix": "Required to use all features of the queue worker.",
  1541. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1542. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1543. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1544. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  1545. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1546. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  1547. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  1548. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  1549. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  1550. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  1551. "mockery/mockery": "Required to use mocking (^1.5.1).",
  1552. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1553. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1554. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).",
  1555. "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).",
  1556. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1557. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  1558. "symfony/cache": "Required to PSR-6 cache bridge (^6.0).",
  1559. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).",
  1560. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
  1561. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
  1562. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
  1563. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  1564. },
  1565. "type": "library",
  1566. "extra": {
  1567. "branch-alias": {
  1568. "dev-master": "9.x-dev"
  1569. }
  1570. },
  1571. "autoload": {
  1572. "files": [
  1573. "src/Illuminate/Collections/helpers.php",
  1574. "src/Illuminate/Events/functions.php",
  1575. "src/Illuminate/Foundation/helpers.php",
  1576. "src/Illuminate/Support/helpers.php"
  1577. ],
  1578. "psr-4": {
  1579. "Illuminate\\": "src/Illuminate/",
  1580. "Illuminate\\Support\\": [
  1581. "src/Illuminate/Macroable/",
  1582. "src/Illuminate/Collections/",
  1583. "src/Illuminate/Conditionable/"
  1584. ]
  1585. }
  1586. },
  1587. "notification-url": "https://packagist.org/downloads/",
  1588. "license": [
  1589. "MIT"
  1590. ],
  1591. "authors": [
  1592. {
  1593. "name": "Taylor Otwell",
  1594. "email": "taylor@laravel.com"
  1595. }
  1596. ],
  1597. "description": "The Laravel Framework.",
  1598. "homepage": "https://laravel.com",
  1599. "keywords": [
  1600. "framework",
  1601. "laravel"
  1602. ],
  1603. "support": {
  1604. "issues": "https://github.com/laravel/framework/issues",
  1605. "source": "https://github.com/laravel/framework"
  1606. },
  1607. "time": "2023-10-03T13:02:30+00:00"
  1608. },
  1609. {
  1610. "name": "laravel/sanctum",
  1611. "version": "v3.3.3",
  1612. "source": {
  1613. "type": "git",
  1614. "url": "https://github.com/laravel/sanctum.git",
  1615. "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5"
  1616. },
  1617. "dist": {
  1618. "type": "zip",
  1619. "url": "https://api.github.com/repos/laravel/sanctum/zipball/8c104366459739f3ada0e994bcd3e6fd681ce3d5",
  1620. "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5",
  1621. "shasum": ""
  1622. },
  1623. "require": {
  1624. "ext-json": "*",
  1625. "illuminate/console": "^9.21|^10.0",
  1626. "illuminate/contracts": "^9.21|^10.0",
  1627. "illuminate/database": "^9.21|^10.0",
  1628. "illuminate/support": "^9.21|^10.0",
  1629. "php": "^8.0.2"
  1630. },
  1631. "require-dev": {
  1632. "mockery/mockery": "^1.0",
  1633. "orchestra/testbench": "^7.28.2|^8.8.3",
  1634. "phpstan/phpstan": "^1.10",
  1635. "phpunit/phpunit": "^9.6"
  1636. },
  1637. "type": "library",
  1638. "extra": {
  1639. "branch-alias": {
  1640. "dev-master": "3.x-dev"
  1641. },
  1642. "laravel": {
  1643. "providers": [
  1644. "Laravel\\Sanctum\\SanctumServiceProvider"
  1645. ]
  1646. }
  1647. },
  1648. "autoload": {
  1649. "psr-4": {
  1650. "Laravel\\Sanctum\\": "src/"
  1651. }
  1652. },
  1653. "notification-url": "https://packagist.org/downloads/",
  1654. "license": [
  1655. "MIT"
  1656. ],
  1657. "authors": [
  1658. {
  1659. "name": "Taylor Otwell",
  1660. "email": "taylor@laravel.com"
  1661. }
  1662. ],
  1663. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  1664. "keywords": [
  1665. "auth",
  1666. "laravel",
  1667. "sanctum"
  1668. ],
  1669. "support": {
  1670. "issues": "https://github.com/laravel/sanctum/issues",
  1671. "source": "https://github.com/laravel/sanctum"
  1672. },
  1673. "time": "2023-12-19T18:44:48+00:00"
  1674. },
  1675. {
  1676. "name": "laravel/serializable-closure",
  1677. "version": "v1.3.5",
  1678. "source": {
  1679. "type": "git",
  1680. "url": "https://github.com/laravel/serializable-closure.git",
  1681. "reference": "1dc4a3dbfa2b7628a3114e43e32120cce7cdda9c"
  1682. },
  1683. "dist": {
  1684. "type": "zip",
  1685. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/1dc4a3dbfa2b7628a3114e43e32120cce7cdda9c",
  1686. "reference": "1dc4a3dbfa2b7628a3114e43e32120cce7cdda9c",
  1687. "shasum": ""
  1688. },
  1689. "require": {
  1690. "php": "^7.3|^8.0"
  1691. },
  1692. "require-dev": {
  1693. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  1694. "nesbot/carbon": "^2.61|^3.0",
  1695. "pestphp/pest": "^1.21.3",
  1696. "phpstan/phpstan": "^1.8.2",
  1697. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  1698. },
  1699. "type": "library",
  1700. "extra": {
  1701. "branch-alias": {
  1702. "dev-master": "1.x-dev"
  1703. }
  1704. },
  1705. "autoload": {
  1706. "psr-4": {
  1707. "Laravel\\SerializableClosure\\": "src/"
  1708. }
  1709. },
  1710. "notification-url": "https://packagist.org/downloads/",
  1711. "license": [
  1712. "MIT"
  1713. ],
  1714. "authors": [
  1715. {
  1716. "name": "Taylor Otwell",
  1717. "email": "taylor@laravel.com"
  1718. },
  1719. {
  1720. "name": "Nuno Maduro",
  1721. "email": "nuno@laravel.com"
  1722. }
  1723. ],
  1724. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1725. "keywords": [
  1726. "closure",
  1727. "laravel",
  1728. "serializable"
  1729. ],
  1730. "support": {
  1731. "issues": "https://github.com/laravel/serializable-closure/issues",
  1732. "source": "https://github.com/laravel/serializable-closure"
  1733. },
  1734. "time": "2024-09-23T13:33:08+00:00"
  1735. },
  1736. {
  1737. "name": "laravel/tinker",
  1738. "version": "v2.10.0",
  1739. "source": {
  1740. "type": "git",
  1741. "url": "https://github.com/laravel/tinker.git",
  1742. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  1743. },
  1744. "dist": {
  1745. "type": "zip",
  1746. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  1747. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  1748. "shasum": ""
  1749. },
  1750. "require": {
  1751. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1752. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1753. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1754. "php": "^7.2.5|^8.0",
  1755. "psy/psysh": "^0.11.1|^0.12.0",
  1756. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  1757. },
  1758. "require-dev": {
  1759. "mockery/mockery": "~1.3.3|^1.4.2",
  1760. "phpstan/phpstan": "^1.10",
  1761. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1762. },
  1763. "suggest": {
  1764. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  1765. },
  1766. "type": "library",
  1767. "extra": {
  1768. "laravel": {
  1769. "providers": [
  1770. "Laravel\\Tinker\\TinkerServiceProvider"
  1771. ]
  1772. }
  1773. },
  1774. "autoload": {
  1775. "psr-4": {
  1776. "Laravel\\Tinker\\": "src/"
  1777. }
  1778. },
  1779. "notification-url": "https://packagist.org/downloads/",
  1780. "license": [
  1781. "MIT"
  1782. ],
  1783. "authors": [
  1784. {
  1785. "name": "Taylor Otwell",
  1786. "email": "taylor@laravel.com"
  1787. }
  1788. ],
  1789. "description": "Powerful REPL for the Laravel framework.",
  1790. "keywords": [
  1791. "REPL",
  1792. "Tinker",
  1793. "laravel",
  1794. "psysh"
  1795. ],
  1796. "support": {
  1797. "issues": "https://github.com/laravel/tinker/issues",
  1798. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  1799. },
  1800. "time": "2024-09-23T13:32:56+00:00"
  1801. },
  1802. {
  1803. "name": "league/commonmark",
  1804. "version": "2.5.3",
  1805. "source": {
  1806. "type": "git",
  1807. "url": "https://github.com/thephpleague/commonmark.git",
  1808. "reference": "b650144166dfa7703e62a22e493b853b58d874b0"
  1809. },
  1810. "dist": {
  1811. "type": "zip",
  1812. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
  1813. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  1814. "shasum": ""
  1815. },
  1816. "require": {
  1817. "ext-mbstring": "*",
  1818. "league/config": "^1.1.1",
  1819. "php": "^7.4 || ^8.0",
  1820. "psr/event-dispatcher": "^1.0",
  1821. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1822. "symfony/polyfill-php80": "^1.16"
  1823. },
  1824. "require-dev": {
  1825. "cebe/markdown": "^1.0",
  1826. "commonmark/cmark": "0.31.1",
  1827. "commonmark/commonmark.js": "0.31.1",
  1828. "composer/package-versions-deprecated": "^1.8",
  1829. "embed/embed": "^4.4",
  1830. "erusev/parsedown": "^1.0",
  1831. "ext-json": "*",
  1832. "github/gfm": "0.29.0",
  1833. "michelf/php-markdown": "^1.4 || ^2.0",
  1834. "nyholm/psr7": "^1.5",
  1835. "phpstan/phpstan": "^1.8.2",
  1836. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1837. "scrutinizer/ocular": "^1.8.1",
  1838. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  1839. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  1840. "unleashedtech/php-coding-standard": "^3.1.1",
  1841. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1842. },
  1843. "suggest": {
  1844. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1845. },
  1846. "type": "library",
  1847. "extra": {
  1848. "branch-alias": {
  1849. "dev-main": "2.6-dev"
  1850. }
  1851. },
  1852. "autoload": {
  1853. "psr-4": {
  1854. "League\\CommonMark\\": "src"
  1855. }
  1856. },
  1857. "notification-url": "https://packagist.org/downloads/",
  1858. "license": [
  1859. "BSD-3-Clause"
  1860. ],
  1861. "authors": [
  1862. {
  1863. "name": "Colin O'Dell",
  1864. "email": "colinodell@gmail.com",
  1865. "homepage": "https://www.colinodell.com",
  1866. "role": "Lead Developer"
  1867. }
  1868. ],
  1869. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1870. "homepage": "https://commonmark.thephpleague.com",
  1871. "keywords": [
  1872. "commonmark",
  1873. "flavored",
  1874. "gfm",
  1875. "github",
  1876. "github-flavored",
  1877. "markdown",
  1878. "md",
  1879. "parser"
  1880. ],
  1881. "support": {
  1882. "docs": "https://commonmark.thephpleague.com/",
  1883. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1884. "issues": "https://github.com/thephpleague/commonmark/issues",
  1885. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1886. "source": "https://github.com/thephpleague/commonmark"
  1887. },
  1888. "funding": [
  1889. {
  1890. "url": "https://www.colinodell.com/sponsor",
  1891. "type": "custom"
  1892. },
  1893. {
  1894. "url": "https://www.paypal.me/colinpodell/10.00",
  1895. "type": "custom"
  1896. },
  1897. {
  1898. "url": "https://github.com/colinodell",
  1899. "type": "github"
  1900. },
  1901. {
  1902. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1903. "type": "tidelift"
  1904. }
  1905. ],
  1906. "time": "2024-08-16T11:46:16+00:00"
  1907. },
  1908. {
  1909. "name": "league/config",
  1910. "version": "v1.2.0",
  1911. "source": {
  1912. "type": "git",
  1913. "url": "https://github.com/thephpleague/config.git",
  1914. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1915. },
  1916. "dist": {
  1917. "type": "zip",
  1918. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1919. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1920. "shasum": ""
  1921. },
  1922. "require": {
  1923. "dflydev/dot-access-data": "^3.0.1",
  1924. "nette/schema": "^1.2",
  1925. "php": "^7.4 || ^8.0"
  1926. },
  1927. "require-dev": {
  1928. "phpstan/phpstan": "^1.8.2",
  1929. "phpunit/phpunit": "^9.5.5",
  1930. "scrutinizer/ocular": "^1.8.1",
  1931. "unleashedtech/php-coding-standard": "^3.1",
  1932. "vimeo/psalm": "^4.7.3"
  1933. },
  1934. "type": "library",
  1935. "extra": {
  1936. "branch-alias": {
  1937. "dev-main": "1.2-dev"
  1938. }
  1939. },
  1940. "autoload": {
  1941. "psr-4": {
  1942. "League\\Config\\": "src"
  1943. }
  1944. },
  1945. "notification-url": "https://packagist.org/downloads/",
  1946. "license": [
  1947. "BSD-3-Clause"
  1948. ],
  1949. "authors": [
  1950. {
  1951. "name": "Colin O'Dell",
  1952. "email": "colinodell@gmail.com",
  1953. "homepage": "https://www.colinodell.com",
  1954. "role": "Lead Developer"
  1955. }
  1956. ],
  1957. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1958. "homepage": "https://config.thephpleague.com",
  1959. "keywords": [
  1960. "array",
  1961. "config",
  1962. "configuration",
  1963. "dot",
  1964. "dot-access",
  1965. "nested",
  1966. "schema"
  1967. ],
  1968. "support": {
  1969. "docs": "https://config.thephpleague.com/",
  1970. "issues": "https://github.com/thephpleague/config/issues",
  1971. "rss": "https://github.com/thephpleague/config/releases.atom",
  1972. "source": "https://github.com/thephpleague/config"
  1973. },
  1974. "funding": [
  1975. {
  1976. "url": "https://www.colinodell.com/sponsor",
  1977. "type": "custom"
  1978. },
  1979. {
  1980. "url": "https://www.paypal.me/colinpodell/10.00",
  1981. "type": "custom"
  1982. },
  1983. {
  1984. "url": "https://github.com/colinodell",
  1985. "type": "github"
  1986. }
  1987. ],
  1988. "time": "2022-12-11T20:36:23+00:00"
  1989. },
  1990. {
  1991. "name": "league/flysystem",
  1992. "version": "3.29.1",
  1993. "source": {
  1994. "type": "git",
  1995. "url": "https://github.com/thephpleague/flysystem.git",
  1996. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  1997. },
  1998. "dist": {
  1999. "type": "zip",
  2000. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2001. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2002. "shasum": ""
  2003. },
  2004. "require": {
  2005. "league/flysystem-local": "^3.0.0",
  2006. "league/mime-type-detection": "^1.0.0",
  2007. "php": "^8.0.2"
  2008. },
  2009. "conflict": {
  2010. "async-aws/core": "<1.19.0",
  2011. "async-aws/s3": "<1.14.0",
  2012. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2013. "guzzlehttp/guzzle": "<7.0",
  2014. "guzzlehttp/ringphp": "<1.1.1",
  2015. "phpseclib/phpseclib": "3.0.15",
  2016. "symfony/http-client": "<5.2"
  2017. },
  2018. "require-dev": {
  2019. "async-aws/s3": "^1.5 || ^2.0",
  2020. "async-aws/simple-s3": "^1.1 || ^2.0",
  2021. "aws/aws-sdk-php": "^3.295.10",
  2022. "composer/semver": "^3.0",
  2023. "ext-fileinfo": "*",
  2024. "ext-ftp": "*",
  2025. "ext-mongodb": "^1.3",
  2026. "ext-zip": "*",
  2027. "friendsofphp/php-cs-fixer": "^3.5",
  2028. "google/cloud-storage": "^1.23",
  2029. "guzzlehttp/psr7": "^2.6",
  2030. "microsoft/azure-storage-blob": "^1.1",
  2031. "mongodb/mongodb": "^1.2",
  2032. "phpseclib/phpseclib": "^3.0.36",
  2033. "phpstan/phpstan": "^1.10",
  2034. "phpunit/phpunit": "^9.5.11|^10.0",
  2035. "sabre/dav": "^4.6.0"
  2036. },
  2037. "type": "library",
  2038. "autoload": {
  2039. "psr-4": {
  2040. "League\\Flysystem\\": "src"
  2041. }
  2042. },
  2043. "notification-url": "https://packagist.org/downloads/",
  2044. "license": [
  2045. "MIT"
  2046. ],
  2047. "authors": [
  2048. {
  2049. "name": "Frank de Jonge",
  2050. "email": "info@frankdejonge.nl"
  2051. }
  2052. ],
  2053. "description": "File storage abstraction for PHP",
  2054. "keywords": [
  2055. "WebDAV",
  2056. "aws",
  2057. "cloud",
  2058. "file",
  2059. "files",
  2060. "filesystem",
  2061. "filesystems",
  2062. "ftp",
  2063. "s3",
  2064. "sftp",
  2065. "storage"
  2066. ],
  2067. "support": {
  2068. "issues": "https://github.com/thephpleague/flysystem/issues",
  2069. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  2070. },
  2071. "time": "2024-10-08T08:58:34+00:00"
  2072. },
  2073. {
  2074. "name": "league/flysystem-local",
  2075. "version": "3.29.0",
  2076. "source": {
  2077. "type": "git",
  2078. "url": "https://github.com/thephpleague/flysystem-local.git",
  2079. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  2080. },
  2081. "dist": {
  2082. "type": "zip",
  2083. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2084. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2085. "shasum": ""
  2086. },
  2087. "require": {
  2088. "ext-fileinfo": "*",
  2089. "league/flysystem": "^3.0.0",
  2090. "league/mime-type-detection": "^1.0.0",
  2091. "php": "^8.0.2"
  2092. },
  2093. "type": "library",
  2094. "autoload": {
  2095. "psr-4": {
  2096. "League\\Flysystem\\Local\\": ""
  2097. }
  2098. },
  2099. "notification-url": "https://packagist.org/downloads/",
  2100. "license": [
  2101. "MIT"
  2102. ],
  2103. "authors": [
  2104. {
  2105. "name": "Frank de Jonge",
  2106. "email": "info@frankdejonge.nl"
  2107. }
  2108. ],
  2109. "description": "Local filesystem adapter for Flysystem.",
  2110. "keywords": [
  2111. "Flysystem",
  2112. "file",
  2113. "files",
  2114. "filesystem",
  2115. "local"
  2116. ],
  2117. "support": {
  2118. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  2119. },
  2120. "time": "2024-08-09T21:24:39+00:00"
  2121. },
  2122. {
  2123. "name": "league/mime-type-detection",
  2124. "version": "1.16.0",
  2125. "source": {
  2126. "type": "git",
  2127. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2128. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  2129. },
  2130. "dist": {
  2131. "type": "zip",
  2132. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  2133. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  2134. "shasum": ""
  2135. },
  2136. "require": {
  2137. "ext-fileinfo": "*",
  2138. "php": "^7.4 || ^8.0"
  2139. },
  2140. "require-dev": {
  2141. "friendsofphp/php-cs-fixer": "^3.2",
  2142. "phpstan/phpstan": "^0.12.68",
  2143. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2144. },
  2145. "type": "library",
  2146. "autoload": {
  2147. "psr-4": {
  2148. "League\\MimeTypeDetection\\": "src"
  2149. }
  2150. },
  2151. "notification-url": "https://packagist.org/downloads/",
  2152. "license": [
  2153. "MIT"
  2154. ],
  2155. "authors": [
  2156. {
  2157. "name": "Frank de Jonge",
  2158. "email": "info@frankdejonge.nl"
  2159. }
  2160. ],
  2161. "description": "Mime-type detection for Flysystem",
  2162. "support": {
  2163. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2164. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  2165. },
  2166. "funding": [
  2167. {
  2168. "url": "https://github.com/frankdejonge",
  2169. "type": "github"
  2170. },
  2171. {
  2172. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2173. "type": "tidelift"
  2174. }
  2175. ],
  2176. "time": "2024-09-21T08:32:55+00:00"
  2177. },
  2178. {
  2179. "name": "monolog/monolog",
  2180. "version": "2.9.3",
  2181. "source": {
  2182. "type": "git",
  2183. "url": "https://github.com/Seldaek/monolog.git",
  2184. "reference": "a30bfe2e142720dfa990d0a7e573997f5d884215"
  2185. },
  2186. "dist": {
  2187. "type": "zip",
  2188. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/a30bfe2e142720dfa990d0a7e573997f5d884215",
  2189. "reference": "a30bfe2e142720dfa990d0a7e573997f5d884215",
  2190. "shasum": ""
  2191. },
  2192. "require": {
  2193. "php": ">=7.2",
  2194. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2195. },
  2196. "provide": {
  2197. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2198. },
  2199. "require-dev": {
  2200. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2201. "doctrine/couchdb": "~1.0@dev",
  2202. "elasticsearch/elasticsearch": "^7 || ^8",
  2203. "ext-json": "*",
  2204. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2205. "guzzlehttp/guzzle": "^7.4",
  2206. "guzzlehttp/psr7": "^2.2",
  2207. "mongodb/mongodb": "^1.8",
  2208. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2209. "phpspec/prophecy": "^1.15",
  2210. "phpstan/phpstan": "^1.10",
  2211. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  2212. "predis/predis": "^1.1 || ^2.0",
  2213. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2214. "ruflin/elastica": "^7",
  2215. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2216. "symfony/mailer": "^5.4 || ^6",
  2217. "symfony/mime": "^5.4 || ^6"
  2218. },
  2219. "suggest": {
  2220. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2221. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2222. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2223. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2224. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2225. "ext-mbstring": "Allow to work properly with unicode symbols",
  2226. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2227. "ext-openssl": "Required to send log messages using SSL",
  2228. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2229. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2230. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2231. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2232. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2233. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2234. },
  2235. "type": "library",
  2236. "extra": {
  2237. "branch-alias": {
  2238. "dev-main": "2.x-dev"
  2239. }
  2240. },
  2241. "autoload": {
  2242. "psr-4": {
  2243. "Monolog\\": "src/Monolog"
  2244. }
  2245. },
  2246. "notification-url": "https://packagist.org/downloads/",
  2247. "license": [
  2248. "MIT"
  2249. ],
  2250. "authors": [
  2251. {
  2252. "name": "Jordi Boggiano",
  2253. "email": "j.boggiano@seld.be",
  2254. "homepage": "https://seld.be"
  2255. }
  2256. ],
  2257. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2258. "homepage": "https://github.com/Seldaek/monolog",
  2259. "keywords": [
  2260. "log",
  2261. "logging",
  2262. "psr-3"
  2263. ],
  2264. "support": {
  2265. "issues": "https://github.com/Seldaek/monolog/issues",
  2266. "source": "https://github.com/Seldaek/monolog/tree/2.9.3"
  2267. },
  2268. "funding": [
  2269. {
  2270. "url": "https://github.com/Seldaek",
  2271. "type": "github"
  2272. },
  2273. {
  2274. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2275. "type": "tidelift"
  2276. }
  2277. ],
  2278. "time": "2024-04-12T20:52:51+00:00"
  2279. },
  2280. {
  2281. "name": "nesbot/carbon",
  2282. "version": "2.72.5",
  2283. "source": {
  2284. "type": "git",
  2285. "url": "https://github.com/briannesbitt/Carbon.git",
  2286. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  2287. },
  2288. "dist": {
  2289. "type": "zip",
  2290. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  2291. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  2292. "shasum": ""
  2293. },
  2294. "require": {
  2295. "carbonphp/carbon-doctrine-types": "*",
  2296. "ext-json": "*",
  2297. "php": "^7.1.8 || ^8.0",
  2298. "psr/clock": "^1.0",
  2299. "symfony/polyfill-mbstring": "^1.0",
  2300. "symfony/polyfill-php80": "^1.16",
  2301. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2302. },
  2303. "provide": {
  2304. "psr/clock-implementation": "1.0"
  2305. },
  2306. "require-dev": {
  2307. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  2308. "doctrine/orm": "^2.7 || ^3.0",
  2309. "friendsofphp/php-cs-fixer": "^3.0",
  2310. "kylekatarnls/multi-tester": "^2.0",
  2311. "ondrejmirtes/better-reflection": "*",
  2312. "phpmd/phpmd": "^2.9",
  2313. "phpstan/extension-installer": "^1.0",
  2314. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2315. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2316. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2317. "squizlabs/php_codesniffer": "^3.4"
  2318. },
  2319. "bin": [
  2320. "bin/carbon"
  2321. ],
  2322. "type": "library",
  2323. "extra": {
  2324. "branch-alias": {
  2325. "dev-master": "3.x-dev",
  2326. "dev-2.x": "2.x-dev"
  2327. },
  2328. "laravel": {
  2329. "providers": [
  2330. "Carbon\\Laravel\\ServiceProvider"
  2331. ]
  2332. },
  2333. "phpstan": {
  2334. "includes": [
  2335. "extension.neon"
  2336. ]
  2337. }
  2338. },
  2339. "autoload": {
  2340. "psr-4": {
  2341. "Carbon\\": "src/Carbon/"
  2342. }
  2343. },
  2344. "notification-url": "https://packagist.org/downloads/",
  2345. "license": [
  2346. "MIT"
  2347. ],
  2348. "authors": [
  2349. {
  2350. "name": "Brian Nesbitt",
  2351. "email": "brian@nesbot.com",
  2352. "homepage": "https://markido.com"
  2353. },
  2354. {
  2355. "name": "kylekatarnls",
  2356. "homepage": "https://github.com/kylekatarnls"
  2357. }
  2358. ],
  2359. "description": "An API extension for DateTime that supports 281 different languages.",
  2360. "homepage": "https://carbon.nesbot.com",
  2361. "keywords": [
  2362. "date",
  2363. "datetime",
  2364. "time"
  2365. ],
  2366. "support": {
  2367. "docs": "https://carbon.nesbot.com/docs",
  2368. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2369. "source": "https://github.com/briannesbitt/Carbon"
  2370. },
  2371. "funding": [
  2372. {
  2373. "url": "https://github.com/sponsors/kylekatarnls",
  2374. "type": "github"
  2375. },
  2376. {
  2377. "url": "https://opencollective.com/Carbon#sponsor",
  2378. "type": "opencollective"
  2379. },
  2380. {
  2381. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2382. "type": "tidelift"
  2383. }
  2384. ],
  2385. "time": "2024-06-03T19:18:41+00:00"
  2386. },
  2387. {
  2388. "name": "nette/schema",
  2389. "version": "v1.3.2",
  2390. "source": {
  2391. "type": "git",
  2392. "url": "https://github.com/nette/schema.git",
  2393. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  2394. },
  2395. "dist": {
  2396. "type": "zip",
  2397. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  2398. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  2399. "shasum": ""
  2400. },
  2401. "require": {
  2402. "nette/utils": "^4.0",
  2403. "php": "8.1 - 8.4"
  2404. },
  2405. "require-dev": {
  2406. "nette/tester": "^2.5.2",
  2407. "phpstan/phpstan-nette": "^1.0",
  2408. "tracy/tracy": "^2.8"
  2409. },
  2410. "type": "library",
  2411. "extra": {
  2412. "branch-alias": {
  2413. "dev-master": "1.3-dev"
  2414. }
  2415. },
  2416. "autoload": {
  2417. "classmap": [
  2418. "src/"
  2419. ]
  2420. },
  2421. "notification-url": "https://packagist.org/downloads/",
  2422. "license": [
  2423. "BSD-3-Clause",
  2424. "GPL-2.0-only",
  2425. "GPL-3.0-only"
  2426. ],
  2427. "authors": [
  2428. {
  2429. "name": "David Grudl",
  2430. "homepage": "https://davidgrudl.com"
  2431. },
  2432. {
  2433. "name": "Nette Community",
  2434. "homepage": "https://nette.org/contributors"
  2435. }
  2436. ],
  2437. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2438. "homepage": "https://nette.org",
  2439. "keywords": [
  2440. "config",
  2441. "nette"
  2442. ],
  2443. "support": {
  2444. "issues": "https://github.com/nette/schema/issues",
  2445. "source": "https://github.com/nette/schema/tree/v1.3.2"
  2446. },
  2447. "time": "2024-10-06T23:10:23+00:00"
  2448. },
  2449. {
  2450. "name": "nette/utils",
  2451. "version": "v4.0.5",
  2452. "source": {
  2453. "type": "git",
  2454. "url": "https://github.com/nette/utils.git",
  2455. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  2456. },
  2457. "dist": {
  2458. "type": "zip",
  2459. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2460. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2461. "shasum": ""
  2462. },
  2463. "require": {
  2464. "php": "8.0 - 8.4"
  2465. },
  2466. "conflict": {
  2467. "nette/finder": "<3",
  2468. "nette/schema": "<1.2.2"
  2469. },
  2470. "require-dev": {
  2471. "jetbrains/phpstorm-attributes": "dev-master",
  2472. "nette/tester": "^2.5",
  2473. "phpstan/phpstan": "^1.0",
  2474. "tracy/tracy": "^2.9"
  2475. },
  2476. "suggest": {
  2477. "ext-gd": "to use Image",
  2478. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2479. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2480. "ext-json": "to use Nette\\Utils\\Json",
  2481. "ext-mbstring": "to use Strings::lower() etc...",
  2482. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2483. },
  2484. "type": "library",
  2485. "extra": {
  2486. "branch-alias": {
  2487. "dev-master": "4.0-dev"
  2488. }
  2489. },
  2490. "autoload": {
  2491. "classmap": [
  2492. "src/"
  2493. ]
  2494. },
  2495. "notification-url": "https://packagist.org/downloads/",
  2496. "license": [
  2497. "BSD-3-Clause",
  2498. "GPL-2.0-only",
  2499. "GPL-3.0-only"
  2500. ],
  2501. "authors": [
  2502. {
  2503. "name": "David Grudl",
  2504. "homepage": "https://davidgrudl.com"
  2505. },
  2506. {
  2507. "name": "Nette Community",
  2508. "homepage": "https://nette.org/contributors"
  2509. }
  2510. ],
  2511. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2512. "homepage": "https://nette.org",
  2513. "keywords": [
  2514. "array",
  2515. "core",
  2516. "datetime",
  2517. "images",
  2518. "json",
  2519. "nette",
  2520. "paginator",
  2521. "password",
  2522. "slugify",
  2523. "string",
  2524. "unicode",
  2525. "utf-8",
  2526. "utility",
  2527. "validation"
  2528. ],
  2529. "support": {
  2530. "issues": "https://github.com/nette/utils/issues",
  2531. "source": "https://github.com/nette/utils/tree/v4.0.5"
  2532. },
  2533. "time": "2024-08-07T15:39:19+00:00"
  2534. },
  2535. {
  2536. "name": "nikic/php-parser",
  2537. "version": "v5.3.1",
  2538. "source": {
  2539. "type": "git",
  2540. "url": "https://github.com/nikic/PHP-Parser.git",
  2541. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  2542. },
  2543. "dist": {
  2544. "type": "zip",
  2545. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  2546. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  2547. "shasum": ""
  2548. },
  2549. "require": {
  2550. "ext-ctype": "*",
  2551. "ext-json": "*",
  2552. "ext-tokenizer": "*",
  2553. "php": ">=7.4"
  2554. },
  2555. "require-dev": {
  2556. "ircmaxell/php-yacc": "^0.0.7",
  2557. "phpunit/phpunit": "^9.0"
  2558. },
  2559. "bin": [
  2560. "bin/php-parse"
  2561. ],
  2562. "type": "library",
  2563. "extra": {
  2564. "branch-alias": {
  2565. "dev-master": "5.0-dev"
  2566. }
  2567. },
  2568. "autoload": {
  2569. "psr-4": {
  2570. "PhpParser\\": "lib/PhpParser"
  2571. }
  2572. },
  2573. "notification-url": "https://packagist.org/downloads/",
  2574. "license": [
  2575. "BSD-3-Clause"
  2576. ],
  2577. "authors": [
  2578. {
  2579. "name": "Nikita Popov"
  2580. }
  2581. ],
  2582. "description": "A PHP parser written in PHP",
  2583. "keywords": [
  2584. "parser",
  2585. "php"
  2586. ],
  2587. "support": {
  2588. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2589. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  2590. },
  2591. "time": "2024-10-08T18:51:32+00:00"
  2592. },
  2593. {
  2594. "name": "nunomaduro/termwind",
  2595. "version": "v1.16.0",
  2596. "source": {
  2597. "type": "git",
  2598. "url": "https://github.com/nunomaduro/termwind.git",
  2599. "reference": "dcf1ec3dfa36137b7ce41d43866644a7ab8fc257"
  2600. },
  2601. "dist": {
  2602. "type": "zip",
  2603. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/dcf1ec3dfa36137b7ce41d43866644a7ab8fc257",
  2604. "reference": "dcf1ec3dfa36137b7ce41d43866644a7ab8fc257",
  2605. "shasum": ""
  2606. },
  2607. "require": {
  2608. "ext-mbstring": "*",
  2609. "php": "^8.1",
  2610. "symfony/console": "^6.4.12"
  2611. },
  2612. "require-dev": {
  2613. "illuminate/console": "^10.48.22",
  2614. "illuminate/support": "^10.48.22",
  2615. "laravel/pint": "^1.18.1",
  2616. "pestphp/pest": "^2",
  2617. "pestphp/pest-plugin-mock": "2.0.0",
  2618. "phpstan/phpstan": "^1.12.6",
  2619. "phpstan/phpstan-strict-rules": "^1.6.1",
  2620. "symfony/var-dumper": "^6.4.11",
  2621. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  2622. },
  2623. "type": "library",
  2624. "extra": {
  2625. "laravel": {
  2626. "providers": [
  2627. "Termwind\\Laravel\\TermwindServiceProvider"
  2628. ]
  2629. }
  2630. },
  2631. "autoload": {
  2632. "files": [
  2633. "src/Functions.php"
  2634. ],
  2635. "psr-4": {
  2636. "Termwind\\": "src/"
  2637. }
  2638. },
  2639. "notification-url": "https://packagist.org/downloads/",
  2640. "license": [
  2641. "MIT"
  2642. ],
  2643. "authors": [
  2644. {
  2645. "name": "Nuno Maduro",
  2646. "email": "enunomaduro@gmail.com"
  2647. }
  2648. ],
  2649. "description": "Its like Tailwind CSS, but for the console.",
  2650. "keywords": [
  2651. "cli",
  2652. "console",
  2653. "css",
  2654. "package",
  2655. "php",
  2656. "style"
  2657. ],
  2658. "support": {
  2659. "issues": "https://github.com/nunomaduro/termwind/issues",
  2660. "source": "https://github.com/nunomaduro/termwind/tree/v1.16.0"
  2661. },
  2662. "funding": [
  2663. {
  2664. "url": "https://www.paypal.com/paypalme/enunomaduro",
  2665. "type": "custom"
  2666. },
  2667. {
  2668. "url": "https://github.com/nunomaduro",
  2669. "type": "github"
  2670. },
  2671. {
  2672. "url": "https://github.com/xiCO2k",
  2673. "type": "github"
  2674. }
  2675. ],
  2676. "time": "2024-10-15T15:27:12+00:00"
  2677. },
  2678. {
  2679. "name": "phpoption/phpoption",
  2680. "version": "1.9.3",
  2681. "source": {
  2682. "type": "git",
  2683. "url": "https://github.com/schmittjoh/php-option.git",
  2684. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  2685. },
  2686. "dist": {
  2687. "type": "zip",
  2688. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  2689. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  2690. "shasum": ""
  2691. },
  2692. "require": {
  2693. "php": "^7.2.5 || ^8.0"
  2694. },
  2695. "require-dev": {
  2696. "bamarni/composer-bin-plugin": "^1.8.2",
  2697. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  2698. },
  2699. "type": "library",
  2700. "extra": {
  2701. "bamarni-bin": {
  2702. "bin-links": true,
  2703. "forward-command": false
  2704. },
  2705. "branch-alias": {
  2706. "dev-master": "1.9-dev"
  2707. }
  2708. },
  2709. "autoload": {
  2710. "psr-4": {
  2711. "PhpOption\\": "src/PhpOption/"
  2712. }
  2713. },
  2714. "notification-url": "https://packagist.org/downloads/",
  2715. "license": [
  2716. "Apache-2.0"
  2717. ],
  2718. "authors": [
  2719. {
  2720. "name": "Johannes M. Schmitt",
  2721. "email": "schmittjoh@gmail.com",
  2722. "homepage": "https://github.com/schmittjoh"
  2723. },
  2724. {
  2725. "name": "Graham Campbell",
  2726. "email": "hello@gjcampbell.co.uk",
  2727. "homepage": "https://github.com/GrahamCampbell"
  2728. }
  2729. ],
  2730. "description": "Option Type for PHP",
  2731. "keywords": [
  2732. "language",
  2733. "option",
  2734. "php",
  2735. "type"
  2736. ],
  2737. "support": {
  2738. "issues": "https://github.com/schmittjoh/php-option/issues",
  2739. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  2740. },
  2741. "funding": [
  2742. {
  2743. "url": "https://github.com/GrahamCampbell",
  2744. "type": "github"
  2745. },
  2746. {
  2747. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2748. "type": "tidelift"
  2749. }
  2750. ],
  2751. "time": "2024-07-20T21:41:07+00:00"
  2752. },
  2753. {
  2754. "name": "psr/cache",
  2755. "version": "3.0.0",
  2756. "source": {
  2757. "type": "git",
  2758. "url": "https://github.com/php-fig/cache.git",
  2759. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2760. },
  2761. "dist": {
  2762. "type": "zip",
  2763. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2764. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2765. "shasum": ""
  2766. },
  2767. "require": {
  2768. "php": ">=8.0.0"
  2769. },
  2770. "type": "library",
  2771. "extra": {
  2772. "branch-alias": {
  2773. "dev-master": "1.0.x-dev"
  2774. }
  2775. },
  2776. "autoload": {
  2777. "psr-4": {
  2778. "Psr\\Cache\\": "src/"
  2779. }
  2780. },
  2781. "notification-url": "https://packagist.org/downloads/",
  2782. "license": [
  2783. "MIT"
  2784. ],
  2785. "authors": [
  2786. {
  2787. "name": "PHP-FIG",
  2788. "homepage": "https://www.php-fig.org/"
  2789. }
  2790. ],
  2791. "description": "Common interface for caching libraries",
  2792. "keywords": [
  2793. "cache",
  2794. "psr",
  2795. "psr-6"
  2796. ],
  2797. "support": {
  2798. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2799. },
  2800. "time": "2021-02-03T23:26:27+00:00"
  2801. },
  2802. {
  2803. "name": "psr/clock",
  2804. "version": "1.0.0",
  2805. "source": {
  2806. "type": "git",
  2807. "url": "https://github.com/php-fig/clock.git",
  2808. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2809. },
  2810. "dist": {
  2811. "type": "zip",
  2812. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2813. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2814. "shasum": ""
  2815. },
  2816. "require": {
  2817. "php": "^7.0 || ^8.0"
  2818. },
  2819. "type": "library",
  2820. "autoload": {
  2821. "psr-4": {
  2822. "Psr\\Clock\\": "src/"
  2823. }
  2824. },
  2825. "notification-url": "https://packagist.org/downloads/",
  2826. "license": [
  2827. "MIT"
  2828. ],
  2829. "authors": [
  2830. {
  2831. "name": "PHP-FIG",
  2832. "homepage": "https://www.php-fig.org/"
  2833. }
  2834. ],
  2835. "description": "Common interface for reading the clock.",
  2836. "homepage": "https://github.com/php-fig/clock",
  2837. "keywords": [
  2838. "clock",
  2839. "now",
  2840. "psr",
  2841. "psr-20",
  2842. "time"
  2843. ],
  2844. "support": {
  2845. "issues": "https://github.com/php-fig/clock/issues",
  2846. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2847. },
  2848. "time": "2022-11-25T14:36:26+00:00"
  2849. },
  2850. {
  2851. "name": "psr/container",
  2852. "version": "2.0.2",
  2853. "source": {
  2854. "type": "git",
  2855. "url": "https://github.com/php-fig/container.git",
  2856. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2857. },
  2858. "dist": {
  2859. "type": "zip",
  2860. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2861. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2862. "shasum": ""
  2863. },
  2864. "require": {
  2865. "php": ">=7.4.0"
  2866. },
  2867. "type": "library",
  2868. "extra": {
  2869. "branch-alias": {
  2870. "dev-master": "2.0.x-dev"
  2871. }
  2872. },
  2873. "autoload": {
  2874. "psr-4": {
  2875. "Psr\\Container\\": "src/"
  2876. }
  2877. },
  2878. "notification-url": "https://packagist.org/downloads/",
  2879. "license": [
  2880. "MIT"
  2881. ],
  2882. "authors": [
  2883. {
  2884. "name": "PHP-FIG",
  2885. "homepage": "https://www.php-fig.org/"
  2886. }
  2887. ],
  2888. "description": "Common Container Interface (PHP FIG PSR-11)",
  2889. "homepage": "https://github.com/php-fig/container",
  2890. "keywords": [
  2891. "PSR-11",
  2892. "container",
  2893. "container-interface",
  2894. "container-interop",
  2895. "psr"
  2896. ],
  2897. "support": {
  2898. "issues": "https://github.com/php-fig/container/issues",
  2899. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2900. },
  2901. "time": "2021-11-05T16:47:00+00:00"
  2902. },
  2903. {
  2904. "name": "psr/event-dispatcher",
  2905. "version": "1.0.0",
  2906. "source": {
  2907. "type": "git",
  2908. "url": "https://github.com/php-fig/event-dispatcher.git",
  2909. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2910. },
  2911. "dist": {
  2912. "type": "zip",
  2913. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2914. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2915. "shasum": ""
  2916. },
  2917. "require": {
  2918. "php": ">=7.2.0"
  2919. },
  2920. "type": "library",
  2921. "extra": {
  2922. "branch-alias": {
  2923. "dev-master": "1.0.x-dev"
  2924. }
  2925. },
  2926. "autoload": {
  2927. "psr-4": {
  2928. "Psr\\EventDispatcher\\": "src/"
  2929. }
  2930. },
  2931. "notification-url": "https://packagist.org/downloads/",
  2932. "license": [
  2933. "MIT"
  2934. ],
  2935. "authors": [
  2936. {
  2937. "name": "PHP-FIG",
  2938. "homepage": "http://www.php-fig.org/"
  2939. }
  2940. ],
  2941. "description": "Standard interfaces for event handling.",
  2942. "keywords": [
  2943. "events",
  2944. "psr",
  2945. "psr-14"
  2946. ],
  2947. "support": {
  2948. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2949. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2950. },
  2951. "time": "2019-01-08T18:20:26+00:00"
  2952. },
  2953. {
  2954. "name": "psr/http-client",
  2955. "version": "1.0.3",
  2956. "source": {
  2957. "type": "git",
  2958. "url": "https://github.com/php-fig/http-client.git",
  2959. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  2960. },
  2961. "dist": {
  2962. "type": "zip",
  2963. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2964. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2965. "shasum": ""
  2966. },
  2967. "require": {
  2968. "php": "^7.0 || ^8.0",
  2969. "psr/http-message": "^1.0 || ^2.0"
  2970. },
  2971. "type": "library",
  2972. "extra": {
  2973. "branch-alias": {
  2974. "dev-master": "1.0.x-dev"
  2975. }
  2976. },
  2977. "autoload": {
  2978. "psr-4": {
  2979. "Psr\\Http\\Client\\": "src/"
  2980. }
  2981. },
  2982. "notification-url": "https://packagist.org/downloads/",
  2983. "license": [
  2984. "MIT"
  2985. ],
  2986. "authors": [
  2987. {
  2988. "name": "PHP-FIG",
  2989. "homepage": "https://www.php-fig.org/"
  2990. }
  2991. ],
  2992. "description": "Common interface for HTTP clients",
  2993. "homepage": "https://github.com/php-fig/http-client",
  2994. "keywords": [
  2995. "http",
  2996. "http-client",
  2997. "psr",
  2998. "psr-18"
  2999. ],
  3000. "support": {
  3001. "source": "https://github.com/php-fig/http-client"
  3002. },
  3003. "time": "2023-09-23T14:17:50+00:00"
  3004. },
  3005. {
  3006. "name": "psr/http-factory",
  3007. "version": "1.1.0",
  3008. "source": {
  3009. "type": "git",
  3010. "url": "https://github.com/php-fig/http-factory.git",
  3011. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  3012. },
  3013. "dist": {
  3014. "type": "zip",
  3015. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3016. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3017. "shasum": ""
  3018. },
  3019. "require": {
  3020. "php": ">=7.1",
  3021. "psr/http-message": "^1.0 || ^2.0"
  3022. },
  3023. "type": "library",
  3024. "extra": {
  3025. "branch-alias": {
  3026. "dev-master": "1.0.x-dev"
  3027. }
  3028. },
  3029. "autoload": {
  3030. "psr-4": {
  3031. "Psr\\Http\\Message\\": "src/"
  3032. }
  3033. },
  3034. "notification-url": "https://packagist.org/downloads/",
  3035. "license": [
  3036. "MIT"
  3037. ],
  3038. "authors": [
  3039. {
  3040. "name": "PHP-FIG",
  3041. "homepage": "https://www.php-fig.org/"
  3042. }
  3043. ],
  3044. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  3045. "keywords": [
  3046. "factory",
  3047. "http",
  3048. "message",
  3049. "psr",
  3050. "psr-17",
  3051. "psr-7",
  3052. "request",
  3053. "response"
  3054. ],
  3055. "support": {
  3056. "source": "https://github.com/php-fig/http-factory"
  3057. },
  3058. "time": "2024-04-15T12:06:14+00:00"
  3059. },
  3060. {
  3061. "name": "psr/http-message",
  3062. "version": "2.0",
  3063. "source": {
  3064. "type": "git",
  3065. "url": "https://github.com/php-fig/http-message.git",
  3066. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  3067. },
  3068. "dist": {
  3069. "type": "zip",
  3070. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3071. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3072. "shasum": ""
  3073. },
  3074. "require": {
  3075. "php": "^7.2 || ^8.0"
  3076. },
  3077. "type": "library",
  3078. "extra": {
  3079. "branch-alias": {
  3080. "dev-master": "2.0.x-dev"
  3081. }
  3082. },
  3083. "autoload": {
  3084. "psr-4": {
  3085. "Psr\\Http\\Message\\": "src/"
  3086. }
  3087. },
  3088. "notification-url": "https://packagist.org/downloads/",
  3089. "license": [
  3090. "MIT"
  3091. ],
  3092. "authors": [
  3093. {
  3094. "name": "PHP-FIG",
  3095. "homepage": "https://www.php-fig.org/"
  3096. }
  3097. ],
  3098. "description": "Common interface for HTTP messages",
  3099. "homepage": "https://github.com/php-fig/http-message",
  3100. "keywords": [
  3101. "http",
  3102. "http-message",
  3103. "psr",
  3104. "psr-7",
  3105. "request",
  3106. "response"
  3107. ],
  3108. "support": {
  3109. "source": "https://github.com/php-fig/http-message/tree/2.0"
  3110. },
  3111. "time": "2023-04-04T09:54:51+00:00"
  3112. },
  3113. {
  3114. "name": "psr/log",
  3115. "version": "3.0.2",
  3116. "source": {
  3117. "type": "git",
  3118. "url": "https://github.com/php-fig/log.git",
  3119. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  3120. },
  3121. "dist": {
  3122. "type": "zip",
  3123. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3124. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3125. "shasum": ""
  3126. },
  3127. "require": {
  3128. "php": ">=8.0.0"
  3129. },
  3130. "type": "library",
  3131. "extra": {
  3132. "branch-alias": {
  3133. "dev-master": "3.x-dev"
  3134. }
  3135. },
  3136. "autoload": {
  3137. "psr-4": {
  3138. "Psr\\Log\\": "src"
  3139. }
  3140. },
  3141. "notification-url": "https://packagist.org/downloads/",
  3142. "license": [
  3143. "MIT"
  3144. ],
  3145. "authors": [
  3146. {
  3147. "name": "PHP-FIG",
  3148. "homepage": "https://www.php-fig.org/"
  3149. }
  3150. ],
  3151. "description": "Common interface for logging libraries",
  3152. "homepage": "https://github.com/php-fig/log",
  3153. "keywords": [
  3154. "log",
  3155. "psr",
  3156. "psr-3"
  3157. ],
  3158. "support": {
  3159. "source": "https://github.com/php-fig/log/tree/3.0.2"
  3160. },
  3161. "time": "2024-09-11T13:17:53+00:00"
  3162. },
  3163. {
  3164. "name": "psr/simple-cache",
  3165. "version": "3.0.0",
  3166. "source": {
  3167. "type": "git",
  3168. "url": "https://github.com/php-fig/simple-cache.git",
  3169. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  3170. },
  3171. "dist": {
  3172. "type": "zip",
  3173. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3174. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3175. "shasum": ""
  3176. },
  3177. "require": {
  3178. "php": ">=8.0.0"
  3179. },
  3180. "type": "library",
  3181. "extra": {
  3182. "branch-alias": {
  3183. "dev-master": "3.0.x-dev"
  3184. }
  3185. },
  3186. "autoload": {
  3187. "psr-4": {
  3188. "Psr\\SimpleCache\\": "src/"
  3189. }
  3190. },
  3191. "notification-url": "https://packagist.org/downloads/",
  3192. "license": [
  3193. "MIT"
  3194. ],
  3195. "authors": [
  3196. {
  3197. "name": "PHP-FIG",
  3198. "homepage": "https://www.php-fig.org/"
  3199. }
  3200. ],
  3201. "description": "Common interfaces for simple caching",
  3202. "keywords": [
  3203. "cache",
  3204. "caching",
  3205. "psr",
  3206. "psr-16",
  3207. "simple-cache"
  3208. ],
  3209. "support": {
  3210. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  3211. },
  3212. "time": "2021-10-29T13:26:27+00:00"
  3213. },
  3214. {
  3215. "name": "psy/psysh",
  3216. "version": "v0.12.4",
  3217. "source": {
  3218. "type": "git",
  3219. "url": "https://github.com/bobthecow/psysh.git",
  3220. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  3221. },
  3222. "dist": {
  3223. "type": "zip",
  3224. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  3225. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  3226. "shasum": ""
  3227. },
  3228. "require": {
  3229. "ext-json": "*",
  3230. "ext-tokenizer": "*",
  3231. "nikic/php-parser": "^5.0 || ^4.0",
  3232. "php": "^8.0 || ^7.4",
  3233. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  3234. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  3235. },
  3236. "conflict": {
  3237. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  3238. },
  3239. "require-dev": {
  3240. "bamarni/composer-bin-plugin": "^1.2"
  3241. },
  3242. "suggest": {
  3243. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3244. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3245. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  3246. },
  3247. "bin": [
  3248. "bin/psysh"
  3249. ],
  3250. "type": "library",
  3251. "extra": {
  3252. "branch-alias": {
  3253. "dev-main": "0.12.x-dev"
  3254. },
  3255. "bamarni-bin": {
  3256. "bin-links": false,
  3257. "forward-command": false
  3258. }
  3259. },
  3260. "autoload": {
  3261. "files": [
  3262. "src/functions.php"
  3263. ],
  3264. "psr-4": {
  3265. "Psy\\": "src/"
  3266. }
  3267. },
  3268. "notification-url": "https://packagist.org/downloads/",
  3269. "license": [
  3270. "MIT"
  3271. ],
  3272. "authors": [
  3273. {
  3274. "name": "Justin Hileman",
  3275. "email": "justin@justinhileman.info",
  3276. "homepage": "http://justinhileman.com"
  3277. }
  3278. ],
  3279. "description": "An interactive shell for modern PHP.",
  3280. "homepage": "http://psysh.org",
  3281. "keywords": [
  3282. "REPL",
  3283. "console",
  3284. "interactive",
  3285. "shell"
  3286. ],
  3287. "support": {
  3288. "issues": "https://github.com/bobthecow/psysh/issues",
  3289. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  3290. },
  3291. "time": "2024-06-10T01:18:23+00:00"
  3292. },
  3293. {
  3294. "name": "ralouphie/getallheaders",
  3295. "version": "3.0.3",
  3296. "source": {
  3297. "type": "git",
  3298. "url": "https://github.com/ralouphie/getallheaders.git",
  3299. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3300. },
  3301. "dist": {
  3302. "type": "zip",
  3303. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3304. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3305. "shasum": ""
  3306. },
  3307. "require": {
  3308. "php": ">=5.6"
  3309. },
  3310. "require-dev": {
  3311. "php-coveralls/php-coveralls": "^2.1",
  3312. "phpunit/phpunit": "^5 || ^6.5"
  3313. },
  3314. "type": "library",
  3315. "autoload": {
  3316. "files": [
  3317. "src/getallheaders.php"
  3318. ]
  3319. },
  3320. "notification-url": "https://packagist.org/downloads/",
  3321. "license": [
  3322. "MIT"
  3323. ],
  3324. "authors": [
  3325. {
  3326. "name": "Ralph Khattar",
  3327. "email": "ralph.khattar@gmail.com"
  3328. }
  3329. ],
  3330. "description": "A polyfill for getallheaders.",
  3331. "support": {
  3332. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3333. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3334. },
  3335. "time": "2019-03-08T08:55:37+00:00"
  3336. },
  3337. {
  3338. "name": "ramsey/collection",
  3339. "version": "2.0.0",
  3340. "source": {
  3341. "type": "git",
  3342. "url": "https://github.com/ramsey/collection.git",
  3343. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  3344. },
  3345. "dist": {
  3346. "type": "zip",
  3347. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3348. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3349. "shasum": ""
  3350. },
  3351. "require": {
  3352. "php": "^8.1"
  3353. },
  3354. "require-dev": {
  3355. "captainhook/plugin-composer": "^5.3",
  3356. "ergebnis/composer-normalize": "^2.28.3",
  3357. "fakerphp/faker": "^1.21",
  3358. "hamcrest/hamcrest-php": "^2.0",
  3359. "jangregor/phpstan-prophecy": "^1.0",
  3360. "mockery/mockery": "^1.5",
  3361. "php-parallel-lint/php-console-highlighter": "^1.0",
  3362. "php-parallel-lint/php-parallel-lint": "^1.3",
  3363. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  3364. "phpspec/prophecy-phpunit": "^2.0",
  3365. "phpstan/extension-installer": "^1.2",
  3366. "phpstan/phpstan": "^1.9",
  3367. "phpstan/phpstan-mockery": "^1.1",
  3368. "phpstan/phpstan-phpunit": "^1.3",
  3369. "phpunit/phpunit": "^9.5",
  3370. "psalm/plugin-mockery": "^1.1",
  3371. "psalm/plugin-phpunit": "^0.18.4",
  3372. "ramsey/coding-standard": "^2.0.3",
  3373. "ramsey/conventional-commits": "^1.3",
  3374. "vimeo/psalm": "^5.4"
  3375. },
  3376. "type": "library",
  3377. "extra": {
  3378. "captainhook": {
  3379. "force-install": true
  3380. },
  3381. "ramsey/conventional-commits": {
  3382. "configFile": "conventional-commits.json"
  3383. }
  3384. },
  3385. "autoload": {
  3386. "psr-4": {
  3387. "Ramsey\\Collection\\": "src/"
  3388. }
  3389. },
  3390. "notification-url": "https://packagist.org/downloads/",
  3391. "license": [
  3392. "MIT"
  3393. ],
  3394. "authors": [
  3395. {
  3396. "name": "Ben Ramsey",
  3397. "email": "ben@benramsey.com",
  3398. "homepage": "https://benramsey.com"
  3399. }
  3400. ],
  3401. "description": "A PHP library for representing and manipulating collections.",
  3402. "keywords": [
  3403. "array",
  3404. "collection",
  3405. "hash",
  3406. "map",
  3407. "queue",
  3408. "set"
  3409. ],
  3410. "support": {
  3411. "issues": "https://github.com/ramsey/collection/issues",
  3412. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  3413. },
  3414. "funding": [
  3415. {
  3416. "url": "https://github.com/ramsey",
  3417. "type": "github"
  3418. },
  3419. {
  3420. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  3421. "type": "tidelift"
  3422. }
  3423. ],
  3424. "time": "2022-12-31T21:50:55+00:00"
  3425. },
  3426. {
  3427. "name": "ramsey/uuid",
  3428. "version": "4.7.6",
  3429. "source": {
  3430. "type": "git",
  3431. "url": "https://github.com/ramsey/uuid.git",
  3432. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  3433. },
  3434. "dist": {
  3435. "type": "zip",
  3436. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  3437. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  3438. "shasum": ""
  3439. },
  3440. "require": {
  3441. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  3442. "ext-json": "*",
  3443. "php": "^8.0",
  3444. "ramsey/collection": "^1.2 || ^2.0"
  3445. },
  3446. "replace": {
  3447. "rhumsaa/uuid": "self.version"
  3448. },
  3449. "require-dev": {
  3450. "captainhook/captainhook": "^5.10",
  3451. "captainhook/plugin-composer": "^5.3",
  3452. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3453. "doctrine/annotations": "^1.8",
  3454. "ergebnis/composer-normalize": "^2.15",
  3455. "mockery/mockery": "^1.3",
  3456. "paragonie/random-lib": "^2",
  3457. "php-mock/php-mock": "^2.2",
  3458. "php-mock/php-mock-mockery": "^1.3",
  3459. "php-parallel-lint/php-parallel-lint": "^1.1",
  3460. "phpbench/phpbench": "^1.0",
  3461. "phpstan/extension-installer": "^1.1",
  3462. "phpstan/phpstan": "^1.8",
  3463. "phpstan/phpstan-mockery": "^1.1",
  3464. "phpstan/phpstan-phpunit": "^1.1",
  3465. "phpunit/phpunit": "^8.5 || ^9",
  3466. "ramsey/composer-repl": "^1.4",
  3467. "slevomat/coding-standard": "^8.4",
  3468. "squizlabs/php_codesniffer": "^3.5",
  3469. "vimeo/psalm": "^4.9"
  3470. },
  3471. "suggest": {
  3472. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3473. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3474. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3475. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3476. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3477. },
  3478. "type": "library",
  3479. "extra": {
  3480. "captainhook": {
  3481. "force-install": true
  3482. }
  3483. },
  3484. "autoload": {
  3485. "files": [
  3486. "src/functions.php"
  3487. ],
  3488. "psr-4": {
  3489. "Ramsey\\Uuid\\": "src/"
  3490. }
  3491. },
  3492. "notification-url": "https://packagist.org/downloads/",
  3493. "license": [
  3494. "MIT"
  3495. ],
  3496. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3497. "keywords": [
  3498. "guid",
  3499. "identifier",
  3500. "uuid"
  3501. ],
  3502. "support": {
  3503. "issues": "https://github.com/ramsey/uuid/issues",
  3504. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  3505. },
  3506. "funding": [
  3507. {
  3508. "url": "https://github.com/ramsey",
  3509. "type": "github"
  3510. },
  3511. {
  3512. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  3513. "type": "tidelift"
  3514. }
  3515. ],
  3516. "time": "2024-04-27T21:32:50+00:00"
  3517. },
  3518. {
  3519. "name": "spatie/eloquent-sortable",
  3520. "version": "4.4.0",
  3521. "source": {
  3522. "type": "git",
  3523. "url": "https://github.com/spatie/eloquent-sortable.git",
  3524. "reference": "7a460c775d29741f42744bac52f993cb5b84be0f"
  3525. },
  3526. "dist": {
  3527. "type": "zip",
  3528. "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/7a460c775d29741f42744bac52f993cb5b84be0f",
  3529. "reference": "7a460c775d29741f42744bac52f993cb5b84be0f",
  3530. "shasum": ""
  3531. },
  3532. "require": {
  3533. "illuminate/database": "^9.31|^10.0|^11.0",
  3534. "illuminate/support": "^9.31|^10.0|^11.0",
  3535. "nesbot/carbon": "^2.63|^3.0",
  3536. "php": "^8.1",
  3537. "spatie/laravel-package-tools": "^1.9"
  3538. },
  3539. "require-dev": {
  3540. "orchestra/testbench": "^7.0|^8.0|^9.0",
  3541. "phpunit/phpunit": "^9.5|^10.0"
  3542. },
  3543. "type": "library",
  3544. "extra": {
  3545. "laravel": {
  3546. "providers": [
  3547. "Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
  3548. ]
  3549. }
  3550. },
  3551. "autoload": {
  3552. "psr-4": {
  3553. "Spatie\\EloquentSortable\\": "src/"
  3554. }
  3555. },
  3556. "notification-url": "https://packagist.org/downloads/",
  3557. "license": [
  3558. "MIT"
  3559. ],
  3560. "authors": [
  3561. {
  3562. "name": "Freek Van der Herten",
  3563. "email": "freek@spatie.be"
  3564. }
  3565. ],
  3566. "description": "Sortable behaviour for eloquent models",
  3567. "homepage": "https://github.com/spatie/eloquent-sortable",
  3568. "keywords": [
  3569. "behaviour",
  3570. "eloquent",
  3571. "laravel",
  3572. "model",
  3573. "sort",
  3574. "sortable"
  3575. ],
  3576. "support": {
  3577. "issues": "https://github.com/spatie/eloquent-sortable/issues",
  3578. "source": "https://github.com/spatie/eloquent-sortable/tree/4.4.0"
  3579. },
  3580. "funding": [
  3581. {
  3582. "url": "https://spatie.be/open-source/support-us",
  3583. "type": "custom"
  3584. },
  3585. {
  3586. "url": "https://github.com/spatie",
  3587. "type": "github"
  3588. }
  3589. ],
  3590. "time": "2024-06-04T11:09:54+00:00"
  3591. },
  3592. {
  3593. "name": "spatie/laravel-package-tools",
  3594. "version": "1.16.5",
  3595. "source": {
  3596. "type": "git",
  3597. "url": "https://github.com/spatie/laravel-package-tools.git",
  3598. "reference": "c7413972cf22ffdff97b68499c22baa04eddb6a2"
  3599. },
  3600. "dist": {
  3601. "type": "zip",
  3602. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/c7413972cf22ffdff97b68499c22baa04eddb6a2",
  3603. "reference": "c7413972cf22ffdff97b68499c22baa04eddb6a2",
  3604. "shasum": ""
  3605. },
  3606. "require": {
  3607. "illuminate/contracts": "^9.28|^10.0|^11.0",
  3608. "php": "^8.0"
  3609. },
  3610. "require-dev": {
  3611. "mockery/mockery": "^1.5",
  3612. "orchestra/testbench": "^7.7|^8.0",
  3613. "pestphp/pest": "^1.22",
  3614. "phpunit/phpunit": "^9.5.24",
  3615. "spatie/pest-plugin-test-time": "^1.1"
  3616. },
  3617. "type": "library",
  3618. "autoload": {
  3619. "psr-4": {
  3620. "Spatie\\LaravelPackageTools\\": "src"
  3621. }
  3622. },
  3623. "notification-url": "https://packagist.org/downloads/",
  3624. "license": [
  3625. "MIT"
  3626. ],
  3627. "authors": [
  3628. {
  3629. "name": "Freek Van der Herten",
  3630. "email": "freek@spatie.be",
  3631. "role": "Developer"
  3632. }
  3633. ],
  3634. "description": "Tools for creating Laravel packages",
  3635. "homepage": "https://github.com/spatie/laravel-package-tools",
  3636. "keywords": [
  3637. "laravel-package-tools",
  3638. "spatie"
  3639. ],
  3640. "support": {
  3641. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  3642. "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.5"
  3643. },
  3644. "funding": [
  3645. {
  3646. "url": "https://github.com/spatie",
  3647. "type": "github"
  3648. }
  3649. ],
  3650. "time": "2024-08-27T18:56:10+00:00"
  3651. },
  3652. {
  3653. "name": "symfony/console",
  3654. "version": "v6.4.12",
  3655. "source": {
  3656. "type": "git",
  3657. "url": "https://github.com/symfony/console.git",
  3658. "reference": "72d080eb9edf80e36c19be61f72c98ed8273b765"
  3659. },
  3660. "dist": {
  3661. "type": "zip",
  3662. "url": "https://api.github.com/repos/symfony/console/zipball/72d080eb9edf80e36c19be61f72c98ed8273b765",
  3663. "reference": "72d080eb9edf80e36c19be61f72c98ed8273b765",
  3664. "shasum": ""
  3665. },
  3666. "require": {
  3667. "php": ">=8.1",
  3668. "symfony/deprecation-contracts": "^2.5|^3",
  3669. "symfony/polyfill-mbstring": "~1.0",
  3670. "symfony/service-contracts": "^2.5|^3",
  3671. "symfony/string": "^5.4|^6.0|^7.0"
  3672. },
  3673. "conflict": {
  3674. "symfony/dependency-injection": "<5.4",
  3675. "symfony/dotenv": "<5.4",
  3676. "symfony/event-dispatcher": "<5.4",
  3677. "symfony/lock": "<5.4",
  3678. "symfony/process": "<5.4"
  3679. },
  3680. "provide": {
  3681. "psr/log-implementation": "1.0|2.0|3.0"
  3682. },
  3683. "require-dev": {
  3684. "psr/log": "^1|^2|^3",
  3685. "symfony/config": "^5.4|^6.0|^7.0",
  3686. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3687. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  3688. "symfony/http-foundation": "^6.4|^7.0",
  3689. "symfony/http-kernel": "^6.4|^7.0",
  3690. "symfony/lock": "^5.4|^6.0|^7.0",
  3691. "symfony/messenger": "^5.4|^6.0|^7.0",
  3692. "symfony/process": "^5.4|^6.0|^7.0",
  3693. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  3694. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  3695. },
  3696. "type": "library",
  3697. "autoload": {
  3698. "psr-4": {
  3699. "Symfony\\Component\\Console\\": ""
  3700. },
  3701. "exclude-from-classmap": [
  3702. "/Tests/"
  3703. ]
  3704. },
  3705. "notification-url": "https://packagist.org/downloads/",
  3706. "license": [
  3707. "MIT"
  3708. ],
  3709. "authors": [
  3710. {
  3711. "name": "Fabien Potencier",
  3712. "email": "fabien@symfony.com"
  3713. },
  3714. {
  3715. "name": "Symfony Community",
  3716. "homepage": "https://symfony.com/contributors"
  3717. }
  3718. ],
  3719. "description": "Eases the creation of beautiful and testable command line interfaces",
  3720. "homepage": "https://symfony.com",
  3721. "keywords": [
  3722. "cli",
  3723. "command-line",
  3724. "console",
  3725. "terminal"
  3726. ],
  3727. "support": {
  3728. "source": "https://github.com/symfony/console/tree/v6.4.12"
  3729. },
  3730. "funding": [
  3731. {
  3732. "url": "https://symfony.com/sponsor",
  3733. "type": "custom"
  3734. },
  3735. {
  3736. "url": "https://github.com/fabpot",
  3737. "type": "github"
  3738. },
  3739. {
  3740. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3741. "type": "tidelift"
  3742. }
  3743. ],
  3744. "time": "2024-09-20T08:15:52+00:00"
  3745. },
  3746. {
  3747. "name": "symfony/css-selector",
  3748. "version": "v7.1.1",
  3749. "source": {
  3750. "type": "git",
  3751. "url": "https://github.com/symfony/css-selector.git",
  3752. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
  3753. },
  3754. "dist": {
  3755. "type": "zip",
  3756. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  3757. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  3758. "shasum": ""
  3759. },
  3760. "require": {
  3761. "php": ">=8.2"
  3762. },
  3763. "type": "library",
  3764. "autoload": {
  3765. "psr-4": {
  3766. "Symfony\\Component\\CssSelector\\": ""
  3767. },
  3768. "exclude-from-classmap": [
  3769. "/Tests/"
  3770. ]
  3771. },
  3772. "notification-url": "https://packagist.org/downloads/",
  3773. "license": [
  3774. "MIT"
  3775. ],
  3776. "authors": [
  3777. {
  3778. "name": "Fabien Potencier",
  3779. "email": "fabien@symfony.com"
  3780. },
  3781. {
  3782. "name": "Jean-François Simon",
  3783. "email": "jeanfrancois.simon@sensiolabs.com"
  3784. },
  3785. {
  3786. "name": "Symfony Community",
  3787. "homepage": "https://symfony.com/contributors"
  3788. }
  3789. ],
  3790. "description": "Converts CSS selectors to XPath expressions",
  3791. "homepage": "https://symfony.com",
  3792. "support": {
  3793. "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
  3794. },
  3795. "funding": [
  3796. {
  3797. "url": "https://symfony.com/sponsor",
  3798. "type": "custom"
  3799. },
  3800. {
  3801. "url": "https://github.com/fabpot",
  3802. "type": "github"
  3803. },
  3804. {
  3805. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3806. "type": "tidelift"
  3807. }
  3808. ],
  3809. "time": "2024-05-31T14:57:53+00:00"
  3810. },
  3811. {
  3812. "name": "symfony/deprecation-contracts",
  3813. "version": "v3.5.0",
  3814. "source": {
  3815. "type": "git",
  3816. "url": "https://github.com/symfony/deprecation-contracts.git",
  3817. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  3818. },
  3819. "dist": {
  3820. "type": "zip",
  3821. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3822. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3823. "shasum": ""
  3824. },
  3825. "require": {
  3826. "php": ">=8.1"
  3827. },
  3828. "type": "library",
  3829. "extra": {
  3830. "branch-alias": {
  3831. "dev-main": "3.5-dev"
  3832. },
  3833. "thanks": {
  3834. "name": "symfony/contracts",
  3835. "url": "https://github.com/symfony/contracts"
  3836. }
  3837. },
  3838. "autoload": {
  3839. "files": [
  3840. "function.php"
  3841. ]
  3842. },
  3843. "notification-url": "https://packagist.org/downloads/",
  3844. "license": [
  3845. "MIT"
  3846. ],
  3847. "authors": [
  3848. {
  3849. "name": "Nicolas Grekas",
  3850. "email": "p@tchwork.com"
  3851. },
  3852. {
  3853. "name": "Symfony Community",
  3854. "homepage": "https://symfony.com/contributors"
  3855. }
  3856. ],
  3857. "description": "A generic function and convention to trigger deprecation notices",
  3858. "homepage": "https://symfony.com",
  3859. "support": {
  3860. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  3861. },
  3862. "funding": [
  3863. {
  3864. "url": "https://symfony.com/sponsor",
  3865. "type": "custom"
  3866. },
  3867. {
  3868. "url": "https://github.com/fabpot",
  3869. "type": "github"
  3870. },
  3871. {
  3872. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3873. "type": "tidelift"
  3874. }
  3875. ],
  3876. "time": "2024-04-18T09:32:20+00:00"
  3877. },
  3878. {
  3879. "name": "symfony/error-handler",
  3880. "version": "v6.4.10",
  3881. "source": {
  3882. "type": "git",
  3883. "url": "https://github.com/symfony/error-handler.git",
  3884. "reference": "231f1b2ee80f72daa1972f7340297d67439224f0"
  3885. },
  3886. "dist": {
  3887. "type": "zip",
  3888. "url": "https://api.github.com/repos/symfony/error-handler/zipball/231f1b2ee80f72daa1972f7340297d67439224f0",
  3889. "reference": "231f1b2ee80f72daa1972f7340297d67439224f0",
  3890. "shasum": ""
  3891. },
  3892. "require": {
  3893. "php": ">=8.1",
  3894. "psr/log": "^1|^2|^3",
  3895. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  3896. },
  3897. "conflict": {
  3898. "symfony/deprecation-contracts": "<2.5",
  3899. "symfony/http-kernel": "<6.4"
  3900. },
  3901. "require-dev": {
  3902. "symfony/deprecation-contracts": "^2.5|^3",
  3903. "symfony/http-kernel": "^6.4|^7.0",
  3904. "symfony/serializer": "^5.4|^6.0|^7.0"
  3905. },
  3906. "bin": [
  3907. "Resources/bin/patch-type-declarations"
  3908. ],
  3909. "type": "library",
  3910. "autoload": {
  3911. "psr-4": {
  3912. "Symfony\\Component\\ErrorHandler\\": ""
  3913. },
  3914. "exclude-from-classmap": [
  3915. "/Tests/"
  3916. ]
  3917. },
  3918. "notification-url": "https://packagist.org/downloads/",
  3919. "license": [
  3920. "MIT"
  3921. ],
  3922. "authors": [
  3923. {
  3924. "name": "Fabien Potencier",
  3925. "email": "fabien@symfony.com"
  3926. },
  3927. {
  3928. "name": "Symfony Community",
  3929. "homepage": "https://symfony.com/contributors"
  3930. }
  3931. ],
  3932. "description": "Provides tools to manage errors and ease debugging PHP code",
  3933. "homepage": "https://symfony.com",
  3934. "support": {
  3935. "source": "https://github.com/symfony/error-handler/tree/v6.4.10"
  3936. },
  3937. "funding": [
  3938. {
  3939. "url": "https://symfony.com/sponsor",
  3940. "type": "custom"
  3941. },
  3942. {
  3943. "url": "https://github.com/fabpot",
  3944. "type": "github"
  3945. },
  3946. {
  3947. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3948. "type": "tidelift"
  3949. }
  3950. ],
  3951. "time": "2024-07-26T12:30:32+00:00"
  3952. },
  3953. {
  3954. "name": "symfony/event-dispatcher",
  3955. "version": "v7.1.1",
  3956. "source": {
  3957. "type": "git",
  3958. "url": "https://github.com/symfony/event-dispatcher.git",
  3959. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  3960. },
  3961. "dist": {
  3962. "type": "zip",
  3963. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3964. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3965. "shasum": ""
  3966. },
  3967. "require": {
  3968. "php": ">=8.2",
  3969. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3970. },
  3971. "conflict": {
  3972. "symfony/dependency-injection": "<6.4",
  3973. "symfony/service-contracts": "<2.5"
  3974. },
  3975. "provide": {
  3976. "psr/event-dispatcher-implementation": "1.0",
  3977. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3978. },
  3979. "require-dev": {
  3980. "psr/log": "^1|^2|^3",
  3981. "symfony/config": "^6.4|^7.0",
  3982. "symfony/dependency-injection": "^6.4|^7.0",
  3983. "symfony/error-handler": "^6.4|^7.0",
  3984. "symfony/expression-language": "^6.4|^7.0",
  3985. "symfony/http-foundation": "^6.4|^7.0",
  3986. "symfony/service-contracts": "^2.5|^3",
  3987. "symfony/stopwatch": "^6.4|^7.0"
  3988. },
  3989. "type": "library",
  3990. "autoload": {
  3991. "psr-4": {
  3992. "Symfony\\Component\\EventDispatcher\\": ""
  3993. },
  3994. "exclude-from-classmap": [
  3995. "/Tests/"
  3996. ]
  3997. },
  3998. "notification-url": "https://packagist.org/downloads/",
  3999. "license": [
  4000. "MIT"
  4001. ],
  4002. "authors": [
  4003. {
  4004. "name": "Fabien Potencier",
  4005. "email": "fabien@symfony.com"
  4006. },
  4007. {
  4008. "name": "Symfony Community",
  4009. "homepage": "https://symfony.com/contributors"
  4010. }
  4011. ],
  4012. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4013. "homepage": "https://symfony.com",
  4014. "support": {
  4015. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  4016. },
  4017. "funding": [
  4018. {
  4019. "url": "https://symfony.com/sponsor",
  4020. "type": "custom"
  4021. },
  4022. {
  4023. "url": "https://github.com/fabpot",
  4024. "type": "github"
  4025. },
  4026. {
  4027. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4028. "type": "tidelift"
  4029. }
  4030. ],
  4031. "time": "2024-05-31T14:57:53+00:00"
  4032. },
  4033. {
  4034. "name": "symfony/event-dispatcher-contracts",
  4035. "version": "v3.5.0",
  4036. "source": {
  4037. "type": "git",
  4038. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4039. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  4040. },
  4041. "dist": {
  4042. "type": "zip",
  4043. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  4044. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  4045. "shasum": ""
  4046. },
  4047. "require": {
  4048. "php": ">=8.1",
  4049. "psr/event-dispatcher": "^1"
  4050. },
  4051. "type": "library",
  4052. "extra": {
  4053. "branch-alias": {
  4054. "dev-main": "3.5-dev"
  4055. },
  4056. "thanks": {
  4057. "name": "symfony/contracts",
  4058. "url": "https://github.com/symfony/contracts"
  4059. }
  4060. },
  4061. "autoload": {
  4062. "psr-4": {
  4063. "Symfony\\Contracts\\EventDispatcher\\": ""
  4064. }
  4065. },
  4066. "notification-url": "https://packagist.org/downloads/",
  4067. "license": [
  4068. "MIT"
  4069. ],
  4070. "authors": [
  4071. {
  4072. "name": "Nicolas Grekas",
  4073. "email": "p@tchwork.com"
  4074. },
  4075. {
  4076. "name": "Symfony Community",
  4077. "homepage": "https://symfony.com/contributors"
  4078. }
  4079. ],
  4080. "description": "Generic abstractions related to dispatching event",
  4081. "homepage": "https://symfony.com",
  4082. "keywords": [
  4083. "abstractions",
  4084. "contracts",
  4085. "decoupling",
  4086. "interfaces",
  4087. "interoperability",
  4088. "standards"
  4089. ],
  4090. "support": {
  4091. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  4092. },
  4093. "funding": [
  4094. {
  4095. "url": "https://symfony.com/sponsor",
  4096. "type": "custom"
  4097. },
  4098. {
  4099. "url": "https://github.com/fabpot",
  4100. "type": "github"
  4101. },
  4102. {
  4103. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4104. "type": "tidelift"
  4105. }
  4106. ],
  4107. "time": "2024-04-18T09:32:20+00:00"
  4108. },
  4109. {
  4110. "name": "symfony/finder",
  4111. "version": "v6.4.11",
  4112. "source": {
  4113. "type": "git",
  4114. "url": "https://github.com/symfony/finder.git",
  4115. "reference": "d7eb6daf8cd7e9ac4976e9576b32042ef7253453"
  4116. },
  4117. "dist": {
  4118. "type": "zip",
  4119. "url": "https://api.github.com/repos/symfony/finder/zipball/d7eb6daf8cd7e9ac4976e9576b32042ef7253453",
  4120. "reference": "d7eb6daf8cd7e9ac4976e9576b32042ef7253453",
  4121. "shasum": ""
  4122. },
  4123. "require": {
  4124. "php": ">=8.1"
  4125. },
  4126. "require-dev": {
  4127. "symfony/filesystem": "^6.0|^7.0"
  4128. },
  4129. "type": "library",
  4130. "autoload": {
  4131. "psr-4": {
  4132. "Symfony\\Component\\Finder\\": ""
  4133. },
  4134. "exclude-from-classmap": [
  4135. "/Tests/"
  4136. ]
  4137. },
  4138. "notification-url": "https://packagist.org/downloads/",
  4139. "license": [
  4140. "MIT"
  4141. ],
  4142. "authors": [
  4143. {
  4144. "name": "Fabien Potencier",
  4145. "email": "fabien@symfony.com"
  4146. },
  4147. {
  4148. "name": "Symfony Community",
  4149. "homepage": "https://symfony.com/contributors"
  4150. }
  4151. ],
  4152. "description": "Finds files and directories via an intuitive fluent interface",
  4153. "homepage": "https://symfony.com",
  4154. "support": {
  4155. "source": "https://github.com/symfony/finder/tree/v6.4.11"
  4156. },
  4157. "funding": [
  4158. {
  4159. "url": "https://symfony.com/sponsor",
  4160. "type": "custom"
  4161. },
  4162. {
  4163. "url": "https://github.com/fabpot",
  4164. "type": "github"
  4165. },
  4166. {
  4167. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4168. "type": "tidelift"
  4169. }
  4170. ],
  4171. "time": "2024-08-13T14:27:37+00:00"
  4172. },
  4173. {
  4174. "name": "symfony/http-foundation",
  4175. "version": "v6.4.12",
  4176. "source": {
  4177. "type": "git",
  4178. "url": "https://github.com/symfony/http-foundation.git",
  4179. "reference": "133ac043875f59c26c55e79cf074562127cce4d2"
  4180. },
  4181. "dist": {
  4182. "type": "zip",
  4183. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/133ac043875f59c26c55e79cf074562127cce4d2",
  4184. "reference": "133ac043875f59c26c55e79cf074562127cce4d2",
  4185. "shasum": ""
  4186. },
  4187. "require": {
  4188. "php": ">=8.1",
  4189. "symfony/deprecation-contracts": "^2.5|^3",
  4190. "symfony/polyfill-mbstring": "~1.1",
  4191. "symfony/polyfill-php83": "^1.27"
  4192. },
  4193. "conflict": {
  4194. "symfony/cache": "<6.3"
  4195. },
  4196. "require-dev": {
  4197. "doctrine/dbal": "^2.13.1|^3|^4",
  4198. "predis/predis": "^1.1|^2.0",
  4199. "symfony/cache": "^6.3|^7.0",
  4200. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4201. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4202. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  4203. "symfony/mime": "^5.4|^6.0|^7.0",
  4204. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  4205. },
  4206. "type": "library",
  4207. "autoload": {
  4208. "psr-4": {
  4209. "Symfony\\Component\\HttpFoundation\\": ""
  4210. },
  4211. "exclude-from-classmap": [
  4212. "/Tests/"
  4213. ]
  4214. },
  4215. "notification-url": "https://packagist.org/downloads/",
  4216. "license": [
  4217. "MIT"
  4218. ],
  4219. "authors": [
  4220. {
  4221. "name": "Fabien Potencier",
  4222. "email": "fabien@symfony.com"
  4223. },
  4224. {
  4225. "name": "Symfony Community",
  4226. "homepage": "https://symfony.com/contributors"
  4227. }
  4228. ],
  4229. "description": "Defines an object-oriented layer for the HTTP specification",
  4230. "homepage": "https://symfony.com",
  4231. "support": {
  4232. "source": "https://github.com/symfony/http-foundation/tree/v6.4.12"
  4233. },
  4234. "funding": [
  4235. {
  4236. "url": "https://symfony.com/sponsor",
  4237. "type": "custom"
  4238. },
  4239. {
  4240. "url": "https://github.com/fabpot",
  4241. "type": "github"
  4242. },
  4243. {
  4244. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4245. "type": "tidelift"
  4246. }
  4247. ],
  4248. "time": "2024-09-20T08:18:25+00:00"
  4249. },
  4250. {
  4251. "name": "symfony/http-kernel",
  4252. "version": "v6.4.12",
  4253. "source": {
  4254. "type": "git",
  4255. "url": "https://github.com/symfony/http-kernel.git",
  4256. "reference": "96df83d51b5f78804f70c093b97310794fd6257b"
  4257. },
  4258. "dist": {
  4259. "type": "zip",
  4260. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/96df83d51b5f78804f70c093b97310794fd6257b",
  4261. "reference": "96df83d51b5f78804f70c093b97310794fd6257b",
  4262. "shasum": ""
  4263. },
  4264. "require": {
  4265. "php": ">=8.1",
  4266. "psr/log": "^1|^2|^3",
  4267. "symfony/deprecation-contracts": "^2.5|^3",
  4268. "symfony/error-handler": "^6.4|^7.0",
  4269. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4270. "symfony/http-foundation": "^6.4|^7.0",
  4271. "symfony/polyfill-ctype": "^1.8"
  4272. },
  4273. "conflict": {
  4274. "symfony/browser-kit": "<5.4",
  4275. "symfony/cache": "<5.4",
  4276. "symfony/config": "<6.1",
  4277. "symfony/console": "<5.4",
  4278. "symfony/dependency-injection": "<6.4",
  4279. "symfony/doctrine-bridge": "<5.4",
  4280. "symfony/form": "<5.4",
  4281. "symfony/http-client": "<5.4",
  4282. "symfony/http-client-contracts": "<2.5",
  4283. "symfony/mailer": "<5.4",
  4284. "symfony/messenger": "<5.4",
  4285. "symfony/translation": "<5.4",
  4286. "symfony/translation-contracts": "<2.5",
  4287. "symfony/twig-bridge": "<5.4",
  4288. "symfony/validator": "<6.4",
  4289. "symfony/var-dumper": "<6.3",
  4290. "twig/twig": "<2.13"
  4291. },
  4292. "provide": {
  4293. "psr/log-implementation": "1.0|2.0|3.0"
  4294. },
  4295. "require-dev": {
  4296. "psr/cache": "^1.0|^2.0|^3.0",
  4297. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  4298. "symfony/clock": "^6.2|^7.0",
  4299. "symfony/config": "^6.1|^7.0",
  4300. "symfony/console": "^5.4|^6.0|^7.0",
  4301. "symfony/css-selector": "^5.4|^6.0|^7.0",
  4302. "symfony/dependency-injection": "^6.4|^7.0",
  4303. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  4304. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4305. "symfony/finder": "^5.4|^6.0|^7.0",
  4306. "symfony/http-client-contracts": "^2.5|^3",
  4307. "symfony/process": "^5.4|^6.0|^7.0",
  4308. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  4309. "symfony/routing": "^5.4|^6.0|^7.0",
  4310. "symfony/serializer": "^6.4.4|^7.0.4",
  4311. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  4312. "symfony/translation": "^5.4|^6.0|^7.0",
  4313. "symfony/translation-contracts": "^2.5|^3",
  4314. "symfony/uid": "^5.4|^6.0|^7.0",
  4315. "symfony/validator": "^6.4|^7.0",
  4316. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  4317. "symfony/var-exporter": "^6.2|^7.0",
  4318. "twig/twig": "^2.13|^3.0.4"
  4319. },
  4320. "type": "library",
  4321. "autoload": {
  4322. "psr-4": {
  4323. "Symfony\\Component\\HttpKernel\\": ""
  4324. },
  4325. "exclude-from-classmap": [
  4326. "/Tests/"
  4327. ]
  4328. },
  4329. "notification-url": "https://packagist.org/downloads/",
  4330. "license": [
  4331. "MIT"
  4332. ],
  4333. "authors": [
  4334. {
  4335. "name": "Fabien Potencier",
  4336. "email": "fabien@symfony.com"
  4337. },
  4338. {
  4339. "name": "Symfony Community",
  4340. "homepage": "https://symfony.com/contributors"
  4341. }
  4342. ],
  4343. "description": "Provides a structured process for converting a Request into a Response",
  4344. "homepage": "https://symfony.com",
  4345. "support": {
  4346. "source": "https://github.com/symfony/http-kernel/tree/v6.4.12"
  4347. },
  4348. "funding": [
  4349. {
  4350. "url": "https://symfony.com/sponsor",
  4351. "type": "custom"
  4352. },
  4353. {
  4354. "url": "https://github.com/fabpot",
  4355. "type": "github"
  4356. },
  4357. {
  4358. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4359. "type": "tidelift"
  4360. }
  4361. ],
  4362. "time": "2024-09-21T06:02:57+00:00"
  4363. },
  4364. {
  4365. "name": "symfony/mailer",
  4366. "version": "v6.4.12",
  4367. "source": {
  4368. "type": "git",
  4369. "url": "https://github.com/symfony/mailer.git",
  4370. "reference": "b6a25408c569ae2366b3f663a4edad19420a9c26"
  4371. },
  4372. "dist": {
  4373. "type": "zip",
  4374. "url": "https://api.github.com/repos/symfony/mailer/zipball/b6a25408c569ae2366b3f663a4edad19420a9c26",
  4375. "reference": "b6a25408c569ae2366b3f663a4edad19420a9c26",
  4376. "shasum": ""
  4377. },
  4378. "require": {
  4379. "egulias/email-validator": "^2.1.10|^3|^4",
  4380. "php": ">=8.1",
  4381. "psr/event-dispatcher": "^1",
  4382. "psr/log": "^1|^2|^3",
  4383. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4384. "symfony/mime": "^6.2|^7.0",
  4385. "symfony/service-contracts": "^2.5|^3"
  4386. },
  4387. "conflict": {
  4388. "symfony/http-client-contracts": "<2.5",
  4389. "symfony/http-kernel": "<5.4",
  4390. "symfony/messenger": "<6.2",
  4391. "symfony/mime": "<6.2",
  4392. "symfony/twig-bridge": "<6.2.1"
  4393. },
  4394. "require-dev": {
  4395. "symfony/console": "^5.4|^6.0|^7.0",
  4396. "symfony/http-client": "^5.4|^6.0|^7.0",
  4397. "symfony/messenger": "^6.2|^7.0",
  4398. "symfony/twig-bridge": "^6.2|^7.0"
  4399. },
  4400. "type": "library",
  4401. "autoload": {
  4402. "psr-4": {
  4403. "Symfony\\Component\\Mailer\\": ""
  4404. },
  4405. "exclude-from-classmap": [
  4406. "/Tests/"
  4407. ]
  4408. },
  4409. "notification-url": "https://packagist.org/downloads/",
  4410. "license": [
  4411. "MIT"
  4412. ],
  4413. "authors": [
  4414. {
  4415. "name": "Fabien Potencier",
  4416. "email": "fabien@symfony.com"
  4417. },
  4418. {
  4419. "name": "Symfony Community",
  4420. "homepage": "https://symfony.com/contributors"
  4421. }
  4422. ],
  4423. "description": "Helps sending emails",
  4424. "homepage": "https://symfony.com",
  4425. "support": {
  4426. "source": "https://github.com/symfony/mailer/tree/v6.4.12"
  4427. },
  4428. "funding": [
  4429. {
  4430. "url": "https://symfony.com/sponsor",
  4431. "type": "custom"
  4432. },
  4433. {
  4434. "url": "https://github.com/fabpot",
  4435. "type": "github"
  4436. },
  4437. {
  4438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4439. "type": "tidelift"
  4440. }
  4441. ],
  4442. "time": "2024-09-08T12:30:05+00:00"
  4443. },
  4444. {
  4445. "name": "symfony/mime",
  4446. "version": "v6.4.12",
  4447. "source": {
  4448. "type": "git",
  4449. "url": "https://github.com/symfony/mime.git",
  4450. "reference": "abe16ee7790b16aa525877419deb0f113953f0e1"
  4451. },
  4452. "dist": {
  4453. "type": "zip",
  4454. "url": "https://api.github.com/repos/symfony/mime/zipball/abe16ee7790b16aa525877419deb0f113953f0e1",
  4455. "reference": "abe16ee7790b16aa525877419deb0f113953f0e1",
  4456. "shasum": ""
  4457. },
  4458. "require": {
  4459. "php": ">=8.1",
  4460. "symfony/deprecation-contracts": "^2.5|^3",
  4461. "symfony/polyfill-intl-idn": "^1.10",
  4462. "symfony/polyfill-mbstring": "^1.0"
  4463. },
  4464. "conflict": {
  4465. "egulias/email-validator": "~3.0.0",
  4466. "phpdocumentor/reflection-docblock": "<3.2.2",
  4467. "phpdocumentor/type-resolver": "<1.4.0",
  4468. "symfony/mailer": "<5.4",
  4469. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4470. },
  4471. "require-dev": {
  4472. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4473. "league/html-to-markdown": "^5.0",
  4474. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4475. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4476. "symfony/process": "^5.4|^6.4|^7.0",
  4477. "symfony/property-access": "^5.4|^6.0|^7.0",
  4478. "symfony/property-info": "^5.4|^6.0|^7.0",
  4479. "symfony/serializer": "^6.4.3|^7.0.3"
  4480. },
  4481. "type": "library",
  4482. "autoload": {
  4483. "psr-4": {
  4484. "Symfony\\Component\\Mime\\": ""
  4485. },
  4486. "exclude-from-classmap": [
  4487. "/Tests/"
  4488. ]
  4489. },
  4490. "notification-url": "https://packagist.org/downloads/",
  4491. "license": [
  4492. "MIT"
  4493. ],
  4494. "authors": [
  4495. {
  4496. "name": "Fabien Potencier",
  4497. "email": "fabien@symfony.com"
  4498. },
  4499. {
  4500. "name": "Symfony Community",
  4501. "homepage": "https://symfony.com/contributors"
  4502. }
  4503. ],
  4504. "description": "Allows manipulating MIME messages",
  4505. "homepage": "https://symfony.com",
  4506. "keywords": [
  4507. "mime",
  4508. "mime-type"
  4509. ],
  4510. "support": {
  4511. "source": "https://github.com/symfony/mime/tree/v6.4.12"
  4512. },
  4513. "funding": [
  4514. {
  4515. "url": "https://symfony.com/sponsor",
  4516. "type": "custom"
  4517. },
  4518. {
  4519. "url": "https://github.com/fabpot",
  4520. "type": "github"
  4521. },
  4522. {
  4523. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4524. "type": "tidelift"
  4525. }
  4526. ],
  4527. "time": "2024-09-20T08:18:25+00:00"
  4528. },
  4529. {
  4530. "name": "symfony/polyfill-ctype",
  4531. "version": "v1.31.0",
  4532. "source": {
  4533. "type": "git",
  4534. "url": "https://github.com/symfony/polyfill-ctype.git",
  4535. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  4536. },
  4537. "dist": {
  4538. "type": "zip",
  4539. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  4540. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  4541. "shasum": ""
  4542. },
  4543. "require": {
  4544. "php": ">=7.2"
  4545. },
  4546. "provide": {
  4547. "ext-ctype": "*"
  4548. },
  4549. "suggest": {
  4550. "ext-ctype": "For best performance"
  4551. },
  4552. "type": "library",
  4553. "extra": {
  4554. "thanks": {
  4555. "name": "symfony/polyfill",
  4556. "url": "https://github.com/symfony/polyfill"
  4557. }
  4558. },
  4559. "autoload": {
  4560. "files": [
  4561. "bootstrap.php"
  4562. ],
  4563. "psr-4": {
  4564. "Symfony\\Polyfill\\Ctype\\": ""
  4565. }
  4566. },
  4567. "notification-url": "https://packagist.org/downloads/",
  4568. "license": [
  4569. "MIT"
  4570. ],
  4571. "authors": [
  4572. {
  4573. "name": "Gert de Pagter",
  4574. "email": "BackEndTea@gmail.com"
  4575. },
  4576. {
  4577. "name": "Symfony Community",
  4578. "homepage": "https://symfony.com/contributors"
  4579. }
  4580. ],
  4581. "description": "Symfony polyfill for ctype functions",
  4582. "homepage": "https://symfony.com",
  4583. "keywords": [
  4584. "compatibility",
  4585. "ctype",
  4586. "polyfill",
  4587. "portable"
  4588. ],
  4589. "support": {
  4590. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  4591. },
  4592. "funding": [
  4593. {
  4594. "url": "https://symfony.com/sponsor",
  4595. "type": "custom"
  4596. },
  4597. {
  4598. "url": "https://github.com/fabpot",
  4599. "type": "github"
  4600. },
  4601. {
  4602. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4603. "type": "tidelift"
  4604. }
  4605. ],
  4606. "time": "2024-09-09T11:45:10+00:00"
  4607. },
  4608. {
  4609. "name": "symfony/polyfill-intl-grapheme",
  4610. "version": "v1.31.0",
  4611. "source": {
  4612. "type": "git",
  4613. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4614. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  4615. },
  4616. "dist": {
  4617. "type": "zip",
  4618. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4619. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4620. "shasum": ""
  4621. },
  4622. "require": {
  4623. "php": ">=7.2"
  4624. },
  4625. "suggest": {
  4626. "ext-intl": "For best performance"
  4627. },
  4628. "type": "library",
  4629. "extra": {
  4630. "thanks": {
  4631. "name": "symfony/polyfill",
  4632. "url": "https://github.com/symfony/polyfill"
  4633. }
  4634. },
  4635. "autoload": {
  4636. "files": [
  4637. "bootstrap.php"
  4638. ],
  4639. "psr-4": {
  4640. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4641. }
  4642. },
  4643. "notification-url": "https://packagist.org/downloads/",
  4644. "license": [
  4645. "MIT"
  4646. ],
  4647. "authors": [
  4648. {
  4649. "name": "Nicolas Grekas",
  4650. "email": "p@tchwork.com"
  4651. },
  4652. {
  4653. "name": "Symfony Community",
  4654. "homepage": "https://symfony.com/contributors"
  4655. }
  4656. ],
  4657. "description": "Symfony polyfill for intl's grapheme_* functions",
  4658. "homepage": "https://symfony.com",
  4659. "keywords": [
  4660. "compatibility",
  4661. "grapheme",
  4662. "intl",
  4663. "polyfill",
  4664. "portable",
  4665. "shim"
  4666. ],
  4667. "support": {
  4668. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  4669. },
  4670. "funding": [
  4671. {
  4672. "url": "https://symfony.com/sponsor",
  4673. "type": "custom"
  4674. },
  4675. {
  4676. "url": "https://github.com/fabpot",
  4677. "type": "github"
  4678. },
  4679. {
  4680. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4681. "type": "tidelift"
  4682. }
  4683. ],
  4684. "time": "2024-09-09T11:45:10+00:00"
  4685. },
  4686. {
  4687. "name": "symfony/polyfill-intl-idn",
  4688. "version": "v1.31.0",
  4689. "source": {
  4690. "type": "git",
  4691. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4692. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  4693. },
  4694. "dist": {
  4695. "type": "zip",
  4696. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  4697. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  4698. "shasum": ""
  4699. },
  4700. "require": {
  4701. "php": ">=7.2",
  4702. "symfony/polyfill-intl-normalizer": "^1.10"
  4703. },
  4704. "suggest": {
  4705. "ext-intl": "For best performance"
  4706. },
  4707. "type": "library",
  4708. "extra": {
  4709. "thanks": {
  4710. "name": "symfony/polyfill",
  4711. "url": "https://github.com/symfony/polyfill"
  4712. }
  4713. },
  4714. "autoload": {
  4715. "files": [
  4716. "bootstrap.php"
  4717. ],
  4718. "psr-4": {
  4719. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4720. }
  4721. },
  4722. "notification-url": "https://packagist.org/downloads/",
  4723. "license": [
  4724. "MIT"
  4725. ],
  4726. "authors": [
  4727. {
  4728. "name": "Laurent Bassin",
  4729. "email": "laurent@bassin.info"
  4730. },
  4731. {
  4732. "name": "Trevor Rowbotham",
  4733. "email": "trevor.rowbotham@pm.me"
  4734. },
  4735. {
  4736. "name": "Symfony Community",
  4737. "homepage": "https://symfony.com/contributors"
  4738. }
  4739. ],
  4740. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4741. "homepage": "https://symfony.com",
  4742. "keywords": [
  4743. "compatibility",
  4744. "idn",
  4745. "intl",
  4746. "polyfill",
  4747. "portable",
  4748. "shim"
  4749. ],
  4750. "support": {
  4751. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  4752. },
  4753. "funding": [
  4754. {
  4755. "url": "https://symfony.com/sponsor",
  4756. "type": "custom"
  4757. },
  4758. {
  4759. "url": "https://github.com/fabpot",
  4760. "type": "github"
  4761. },
  4762. {
  4763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4764. "type": "tidelift"
  4765. }
  4766. ],
  4767. "time": "2024-09-09T11:45:10+00:00"
  4768. },
  4769. {
  4770. "name": "symfony/polyfill-intl-normalizer",
  4771. "version": "v1.31.0",
  4772. "source": {
  4773. "type": "git",
  4774. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4775. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  4776. },
  4777. "dist": {
  4778. "type": "zip",
  4779. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  4780. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  4781. "shasum": ""
  4782. },
  4783. "require": {
  4784. "php": ">=7.2"
  4785. },
  4786. "suggest": {
  4787. "ext-intl": "For best performance"
  4788. },
  4789. "type": "library",
  4790. "extra": {
  4791. "thanks": {
  4792. "name": "symfony/polyfill",
  4793. "url": "https://github.com/symfony/polyfill"
  4794. }
  4795. },
  4796. "autoload": {
  4797. "files": [
  4798. "bootstrap.php"
  4799. ],
  4800. "psr-4": {
  4801. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4802. },
  4803. "classmap": [
  4804. "Resources/stubs"
  4805. ]
  4806. },
  4807. "notification-url": "https://packagist.org/downloads/",
  4808. "license": [
  4809. "MIT"
  4810. ],
  4811. "authors": [
  4812. {
  4813. "name": "Nicolas Grekas",
  4814. "email": "p@tchwork.com"
  4815. },
  4816. {
  4817. "name": "Symfony Community",
  4818. "homepage": "https://symfony.com/contributors"
  4819. }
  4820. ],
  4821. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4822. "homepage": "https://symfony.com",
  4823. "keywords": [
  4824. "compatibility",
  4825. "intl",
  4826. "normalizer",
  4827. "polyfill",
  4828. "portable",
  4829. "shim"
  4830. ],
  4831. "support": {
  4832. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  4833. },
  4834. "funding": [
  4835. {
  4836. "url": "https://symfony.com/sponsor",
  4837. "type": "custom"
  4838. },
  4839. {
  4840. "url": "https://github.com/fabpot",
  4841. "type": "github"
  4842. },
  4843. {
  4844. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4845. "type": "tidelift"
  4846. }
  4847. ],
  4848. "time": "2024-09-09T11:45:10+00:00"
  4849. },
  4850. {
  4851. "name": "symfony/polyfill-mbstring",
  4852. "version": "v1.31.0",
  4853. "source": {
  4854. "type": "git",
  4855. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4856. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  4857. },
  4858. "dist": {
  4859. "type": "zip",
  4860. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  4861. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  4862. "shasum": ""
  4863. },
  4864. "require": {
  4865. "php": ">=7.2"
  4866. },
  4867. "provide": {
  4868. "ext-mbstring": "*"
  4869. },
  4870. "suggest": {
  4871. "ext-mbstring": "For best performance"
  4872. },
  4873. "type": "library",
  4874. "extra": {
  4875. "thanks": {
  4876. "name": "symfony/polyfill",
  4877. "url": "https://github.com/symfony/polyfill"
  4878. }
  4879. },
  4880. "autoload": {
  4881. "files": [
  4882. "bootstrap.php"
  4883. ],
  4884. "psr-4": {
  4885. "Symfony\\Polyfill\\Mbstring\\": ""
  4886. }
  4887. },
  4888. "notification-url": "https://packagist.org/downloads/",
  4889. "license": [
  4890. "MIT"
  4891. ],
  4892. "authors": [
  4893. {
  4894. "name": "Nicolas Grekas",
  4895. "email": "p@tchwork.com"
  4896. },
  4897. {
  4898. "name": "Symfony Community",
  4899. "homepage": "https://symfony.com/contributors"
  4900. }
  4901. ],
  4902. "description": "Symfony polyfill for the Mbstring extension",
  4903. "homepage": "https://symfony.com",
  4904. "keywords": [
  4905. "compatibility",
  4906. "mbstring",
  4907. "polyfill",
  4908. "portable",
  4909. "shim"
  4910. ],
  4911. "support": {
  4912. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  4913. },
  4914. "funding": [
  4915. {
  4916. "url": "https://symfony.com/sponsor",
  4917. "type": "custom"
  4918. },
  4919. {
  4920. "url": "https://github.com/fabpot",
  4921. "type": "github"
  4922. },
  4923. {
  4924. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4925. "type": "tidelift"
  4926. }
  4927. ],
  4928. "time": "2024-09-09T11:45:10+00:00"
  4929. },
  4930. {
  4931. "name": "symfony/polyfill-php80",
  4932. "version": "v1.31.0",
  4933. "source": {
  4934. "type": "git",
  4935. "url": "https://github.com/symfony/polyfill-php80.git",
  4936. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  4937. },
  4938. "dist": {
  4939. "type": "zip",
  4940. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  4941. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  4942. "shasum": ""
  4943. },
  4944. "require": {
  4945. "php": ">=7.2"
  4946. },
  4947. "type": "library",
  4948. "extra": {
  4949. "thanks": {
  4950. "name": "symfony/polyfill",
  4951. "url": "https://github.com/symfony/polyfill"
  4952. }
  4953. },
  4954. "autoload": {
  4955. "files": [
  4956. "bootstrap.php"
  4957. ],
  4958. "psr-4": {
  4959. "Symfony\\Polyfill\\Php80\\": ""
  4960. },
  4961. "classmap": [
  4962. "Resources/stubs"
  4963. ]
  4964. },
  4965. "notification-url": "https://packagist.org/downloads/",
  4966. "license": [
  4967. "MIT"
  4968. ],
  4969. "authors": [
  4970. {
  4971. "name": "Ion Bazan",
  4972. "email": "ion.bazan@gmail.com"
  4973. },
  4974. {
  4975. "name": "Nicolas Grekas",
  4976. "email": "p@tchwork.com"
  4977. },
  4978. {
  4979. "name": "Symfony Community",
  4980. "homepage": "https://symfony.com/contributors"
  4981. }
  4982. ],
  4983. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4984. "homepage": "https://symfony.com",
  4985. "keywords": [
  4986. "compatibility",
  4987. "polyfill",
  4988. "portable",
  4989. "shim"
  4990. ],
  4991. "support": {
  4992. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  4993. },
  4994. "funding": [
  4995. {
  4996. "url": "https://symfony.com/sponsor",
  4997. "type": "custom"
  4998. },
  4999. {
  5000. "url": "https://github.com/fabpot",
  5001. "type": "github"
  5002. },
  5003. {
  5004. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5005. "type": "tidelift"
  5006. }
  5007. ],
  5008. "time": "2024-09-09T11:45:10+00:00"
  5009. },
  5010. {
  5011. "name": "symfony/polyfill-php83",
  5012. "version": "v1.31.0",
  5013. "source": {
  5014. "type": "git",
  5015. "url": "https://github.com/symfony/polyfill-php83.git",
  5016. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  5017. },
  5018. "dist": {
  5019. "type": "zip",
  5020. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  5021. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  5022. "shasum": ""
  5023. },
  5024. "require": {
  5025. "php": ">=7.2"
  5026. },
  5027. "type": "library",
  5028. "extra": {
  5029. "thanks": {
  5030. "name": "symfony/polyfill",
  5031. "url": "https://github.com/symfony/polyfill"
  5032. }
  5033. },
  5034. "autoload": {
  5035. "files": [
  5036. "bootstrap.php"
  5037. ],
  5038. "psr-4": {
  5039. "Symfony\\Polyfill\\Php83\\": ""
  5040. },
  5041. "classmap": [
  5042. "Resources/stubs"
  5043. ]
  5044. },
  5045. "notification-url": "https://packagist.org/downloads/",
  5046. "license": [
  5047. "MIT"
  5048. ],
  5049. "authors": [
  5050. {
  5051. "name": "Nicolas Grekas",
  5052. "email": "p@tchwork.com"
  5053. },
  5054. {
  5055. "name": "Symfony Community",
  5056. "homepage": "https://symfony.com/contributors"
  5057. }
  5058. ],
  5059. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5060. "homepage": "https://symfony.com",
  5061. "keywords": [
  5062. "compatibility",
  5063. "polyfill",
  5064. "portable",
  5065. "shim"
  5066. ],
  5067. "support": {
  5068. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  5069. },
  5070. "funding": [
  5071. {
  5072. "url": "https://symfony.com/sponsor",
  5073. "type": "custom"
  5074. },
  5075. {
  5076. "url": "https://github.com/fabpot",
  5077. "type": "github"
  5078. },
  5079. {
  5080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5081. "type": "tidelift"
  5082. }
  5083. ],
  5084. "time": "2024-09-09T11:45:10+00:00"
  5085. },
  5086. {
  5087. "name": "symfony/polyfill-uuid",
  5088. "version": "v1.31.0",
  5089. "source": {
  5090. "type": "git",
  5091. "url": "https://github.com/symfony/polyfill-uuid.git",
  5092. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  5093. },
  5094. "dist": {
  5095. "type": "zip",
  5096. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  5097. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  5098. "shasum": ""
  5099. },
  5100. "require": {
  5101. "php": ">=7.2"
  5102. },
  5103. "provide": {
  5104. "ext-uuid": "*"
  5105. },
  5106. "suggest": {
  5107. "ext-uuid": "For best performance"
  5108. },
  5109. "type": "library",
  5110. "extra": {
  5111. "thanks": {
  5112. "name": "symfony/polyfill",
  5113. "url": "https://github.com/symfony/polyfill"
  5114. }
  5115. },
  5116. "autoload": {
  5117. "files": [
  5118. "bootstrap.php"
  5119. ],
  5120. "psr-4": {
  5121. "Symfony\\Polyfill\\Uuid\\": ""
  5122. }
  5123. },
  5124. "notification-url": "https://packagist.org/downloads/",
  5125. "license": [
  5126. "MIT"
  5127. ],
  5128. "authors": [
  5129. {
  5130. "name": "Grégoire Pineau",
  5131. "email": "lyrixx@lyrixx.info"
  5132. },
  5133. {
  5134. "name": "Symfony Community",
  5135. "homepage": "https://symfony.com/contributors"
  5136. }
  5137. ],
  5138. "description": "Symfony polyfill for uuid functions",
  5139. "homepage": "https://symfony.com",
  5140. "keywords": [
  5141. "compatibility",
  5142. "polyfill",
  5143. "portable",
  5144. "uuid"
  5145. ],
  5146. "support": {
  5147. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  5148. },
  5149. "funding": [
  5150. {
  5151. "url": "https://symfony.com/sponsor",
  5152. "type": "custom"
  5153. },
  5154. {
  5155. "url": "https://github.com/fabpot",
  5156. "type": "github"
  5157. },
  5158. {
  5159. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5160. "type": "tidelift"
  5161. }
  5162. ],
  5163. "time": "2024-09-09T11:45:10+00:00"
  5164. },
  5165. {
  5166. "name": "symfony/process",
  5167. "version": "v6.4.12",
  5168. "source": {
  5169. "type": "git",
  5170. "url": "https://github.com/symfony/process.git",
  5171. "reference": "3f94e5f13ff58df371a7ead461b6e8068900fbb3"
  5172. },
  5173. "dist": {
  5174. "type": "zip",
  5175. "url": "https://api.github.com/repos/symfony/process/zipball/3f94e5f13ff58df371a7ead461b6e8068900fbb3",
  5176. "reference": "3f94e5f13ff58df371a7ead461b6e8068900fbb3",
  5177. "shasum": ""
  5178. },
  5179. "require": {
  5180. "php": ">=8.1"
  5181. },
  5182. "type": "library",
  5183. "autoload": {
  5184. "psr-4": {
  5185. "Symfony\\Component\\Process\\": ""
  5186. },
  5187. "exclude-from-classmap": [
  5188. "/Tests/"
  5189. ]
  5190. },
  5191. "notification-url": "https://packagist.org/downloads/",
  5192. "license": [
  5193. "MIT"
  5194. ],
  5195. "authors": [
  5196. {
  5197. "name": "Fabien Potencier",
  5198. "email": "fabien@symfony.com"
  5199. },
  5200. {
  5201. "name": "Symfony Community",
  5202. "homepage": "https://symfony.com/contributors"
  5203. }
  5204. ],
  5205. "description": "Executes commands in sub-processes",
  5206. "homepage": "https://symfony.com",
  5207. "support": {
  5208. "source": "https://github.com/symfony/process/tree/v6.4.12"
  5209. },
  5210. "funding": [
  5211. {
  5212. "url": "https://symfony.com/sponsor",
  5213. "type": "custom"
  5214. },
  5215. {
  5216. "url": "https://github.com/fabpot",
  5217. "type": "github"
  5218. },
  5219. {
  5220. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5221. "type": "tidelift"
  5222. }
  5223. ],
  5224. "time": "2024-09-17T12:47:12+00:00"
  5225. },
  5226. {
  5227. "name": "symfony/routing",
  5228. "version": "v6.4.12",
  5229. "source": {
  5230. "type": "git",
  5231. "url": "https://github.com/symfony/routing.git",
  5232. "reference": "a7c8036bd159486228dc9be3e846a00a0dda9f9f"
  5233. },
  5234. "dist": {
  5235. "type": "zip",
  5236. "url": "https://api.github.com/repos/symfony/routing/zipball/a7c8036bd159486228dc9be3e846a00a0dda9f9f",
  5237. "reference": "a7c8036bd159486228dc9be3e846a00a0dda9f9f",
  5238. "shasum": ""
  5239. },
  5240. "require": {
  5241. "php": ">=8.1",
  5242. "symfony/deprecation-contracts": "^2.5|^3"
  5243. },
  5244. "conflict": {
  5245. "doctrine/annotations": "<1.12",
  5246. "symfony/config": "<6.2",
  5247. "symfony/dependency-injection": "<5.4",
  5248. "symfony/yaml": "<5.4"
  5249. },
  5250. "require-dev": {
  5251. "doctrine/annotations": "^1.12|^2",
  5252. "psr/log": "^1|^2|^3",
  5253. "symfony/config": "^6.2|^7.0",
  5254. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5255. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5256. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  5257. "symfony/yaml": "^5.4|^6.0|^7.0"
  5258. },
  5259. "type": "library",
  5260. "autoload": {
  5261. "psr-4": {
  5262. "Symfony\\Component\\Routing\\": ""
  5263. },
  5264. "exclude-from-classmap": [
  5265. "/Tests/"
  5266. ]
  5267. },
  5268. "notification-url": "https://packagist.org/downloads/",
  5269. "license": [
  5270. "MIT"
  5271. ],
  5272. "authors": [
  5273. {
  5274. "name": "Fabien Potencier",
  5275. "email": "fabien@symfony.com"
  5276. },
  5277. {
  5278. "name": "Symfony Community",
  5279. "homepage": "https://symfony.com/contributors"
  5280. }
  5281. ],
  5282. "description": "Maps an HTTP request to a set of configuration variables",
  5283. "homepage": "https://symfony.com",
  5284. "keywords": [
  5285. "router",
  5286. "routing",
  5287. "uri",
  5288. "url"
  5289. ],
  5290. "support": {
  5291. "source": "https://github.com/symfony/routing/tree/v6.4.12"
  5292. },
  5293. "funding": [
  5294. {
  5295. "url": "https://symfony.com/sponsor",
  5296. "type": "custom"
  5297. },
  5298. {
  5299. "url": "https://github.com/fabpot",
  5300. "type": "github"
  5301. },
  5302. {
  5303. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5304. "type": "tidelift"
  5305. }
  5306. ],
  5307. "time": "2024-09-20T08:32:26+00:00"
  5308. },
  5309. {
  5310. "name": "symfony/service-contracts",
  5311. "version": "v3.5.0",
  5312. "source": {
  5313. "type": "git",
  5314. "url": "https://github.com/symfony/service-contracts.git",
  5315. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  5316. },
  5317. "dist": {
  5318. "type": "zip",
  5319. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  5320. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  5321. "shasum": ""
  5322. },
  5323. "require": {
  5324. "php": ">=8.1",
  5325. "psr/container": "^1.1|^2.0",
  5326. "symfony/deprecation-contracts": "^2.5|^3"
  5327. },
  5328. "conflict": {
  5329. "ext-psr": "<1.1|>=2"
  5330. },
  5331. "type": "library",
  5332. "extra": {
  5333. "branch-alias": {
  5334. "dev-main": "3.5-dev"
  5335. },
  5336. "thanks": {
  5337. "name": "symfony/contracts",
  5338. "url": "https://github.com/symfony/contracts"
  5339. }
  5340. },
  5341. "autoload": {
  5342. "psr-4": {
  5343. "Symfony\\Contracts\\Service\\": ""
  5344. },
  5345. "exclude-from-classmap": [
  5346. "/Test/"
  5347. ]
  5348. },
  5349. "notification-url": "https://packagist.org/downloads/",
  5350. "license": [
  5351. "MIT"
  5352. ],
  5353. "authors": [
  5354. {
  5355. "name": "Nicolas Grekas",
  5356. "email": "p@tchwork.com"
  5357. },
  5358. {
  5359. "name": "Symfony Community",
  5360. "homepage": "https://symfony.com/contributors"
  5361. }
  5362. ],
  5363. "description": "Generic abstractions related to writing services",
  5364. "homepage": "https://symfony.com",
  5365. "keywords": [
  5366. "abstractions",
  5367. "contracts",
  5368. "decoupling",
  5369. "interfaces",
  5370. "interoperability",
  5371. "standards"
  5372. ],
  5373. "support": {
  5374. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  5375. },
  5376. "funding": [
  5377. {
  5378. "url": "https://symfony.com/sponsor",
  5379. "type": "custom"
  5380. },
  5381. {
  5382. "url": "https://github.com/fabpot",
  5383. "type": "github"
  5384. },
  5385. {
  5386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5387. "type": "tidelift"
  5388. }
  5389. ],
  5390. "time": "2024-04-18T09:32:20+00:00"
  5391. },
  5392. {
  5393. "name": "symfony/string",
  5394. "version": "v7.1.5",
  5395. "source": {
  5396. "type": "git",
  5397. "url": "https://github.com/symfony/string.git",
  5398. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306"
  5399. },
  5400. "dist": {
  5401. "type": "zip",
  5402. "url": "https://api.github.com/repos/symfony/string/zipball/d66f9c343fa894ec2037cc928381df90a7ad4306",
  5403. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306",
  5404. "shasum": ""
  5405. },
  5406. "require": {
  5407. "php": ">=8.2",
  5408. "symfony/polyfill-ctype": "~1.8",
  5409. "symfony/polyfill-intl-grapheme": "~1.0",
  5410. "symfony/polyfill-intl-normalizer": "~1.0",
  5411. "symfony/polyfill-mbstring": "~1.0"
  5412. },
  5413. "conflict": {
  5414. "symfony/translation-contracts": "<2.5"
  5415. },
  5416. "require-dev": {
  5417. "symfony/emoji": "^7.1",
  5418. "symfony/error-handler": "^6.4|^7.0",
  5419. "symfony/http-client": "^6.4|^7.0",
  5420. "symfony/intl": "^6.4|^7.0",
  5421. "symfony/translation-contracts": "^2.5|^3.0",
  5422. "symfony/var-exporter": "^6.4|^7.0"
  5423. },
  5424. "type": "library",
  5425. "autoload": {
  5426. "files": [
  5427. "Resources/functions.php"
  5428. ],
  5429. "psr-4": {
  5430. "Symfony\\Component\\String\\": ""
  5431. },
  5432. "exclude-from-classmap": [
  5433. "/Tests/"
  5434. ]
  5435. },
  5436. "notification-url": "https://packagist.org/downloads/",
  5437. "license": [
  5438. "MIT"
  5439. ],
  5440. "authors": [
  5441. {
  5442. "name": "Nicolas Grekas",
  5443. "email": "p@tchwork.com"
  5444. },
  5445. {
  5446. "name": "Symfony Community",
  5447. "homepage": "https://symfony.com/contributors"
  5448. }
  5449. ],
  5450. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  5451. "homepage": "https://symfony.com",
  5452. "keywords": [
  5453. "grapheme",
  5454. "i18n",
  5455. "string",
  5456. "unicode",
  5457. "utf-8",
  5458. "utf8"
  5459. ],
  5460. "support": {
  5461. "source": "https://github.com/symfony/string/tree/v7.1.5"
  5462. },
  5463. "funding": [
  5464. {
  5465. "url": "https://symfony.com/sponsor",
  5466. "type": "custom"
  5467. },
  5468. {
  5469. "url": "https://github.com/fabpot",
  5470. "type": "github"
  5471. },
  5472. {
  5473. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5474. "type": "tidelift"
  5475. }
  5476. ],
  5477. "time": "2024-09-20T08:28:38+00:00"
  5478. },
  5479. {
  5480. "name": "symfony/translation",
  5481. "version": "v6.4.12",
  5482. "source": {
  5483. "type": "git",
  5484. "url": "https://github.com/symfony/translation.git",
  5485. "reference": "cf8360b8352b086be620fae8342c4d96e391a489"
  5486. },
  5487. "dist": {
  5488. "type": "zip",
  5489. "url": "https://api.github.com/repos/symfony/translation/zipball/cf8360b8352b086be620fae8342c4d96e391a489",
  5490. "reference": "cf8360b8352b086be620fae8342c4d96e391a489",
  5491. "shasum": ""
  5492. },
  5493. "require": {
  5494. "php": ">=8.1",
  5495. "symfony/deprecation-contracts": "^2.5|^3",
  5496. "symfony/polyfill-mbstring": "~1.0",
  5497. "symfony/translation-contracts": "^2.5|^3.0"
  5498. },
  5499. "conflict": {
  5500. "symfony/config": "<5.4",
  5501. "symfony/console": "<5.4",
  5502. "symfony/dependency-injection": "<5.4",
  5503. "symfony/http-client-contracts": "<2.5",
  5504. "symfony/http-kernel": "<5.4",
  5505. "symfony/service-contracts": "<2.5",
  5506. "symfony/twig-bundle": "<5.4",
  5507. "symfony/yaml": "<5.4"
  5508. },
  5509. "provide": {
  5510. "symfony/translation-implementation": "2.3|3.0"
  5511. },
  5512. "require-dev": {
  5513. "nikic/php-parser": "^4.18|^5.0",
  5514. "psr/log": "^1|^2|^3",
  5515. "symfony/config": "^5.4|^6.0|^7.0",
  5516. "symfony/console": "^5.4|^6.0|^7.0",
  5517. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5518. "symfony/finder": "^5.4|^6.0|^7.0",
  5519. "symfony/http-client-contracts": "^2.5|^3.0",
  5520. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  5521. "symfony/intl": "^5.4|^6.0|^7.0",
  5522. "symfony/polyfill-intl-icu": "^1.21",
  5523. "symfony/routing": "^5.4|^6.0|^7.0",
  5524. "symfony/service-contracts": "^2.5|^3",
  5525. "symfony/yaml": "^5.4|^6.0|^7.0"
  5526. },
  5527. "type": "library",
  5528. "autoload": {
  5529. "files": [
  5530. "Resources/functions.php"
  5531. ],
  5532. "psr-4": {
  5533. "Symfony\\Component\\Translation\\": ""
  5534. },
  5535. "exclude-from-classmap": [
  5536. "/Tests/"
  5537. ]
  5538. },
  5539. "notification-url": "https://packagist.org/downloads/",
  5540. "license": [
  5541. "MIT"
  5542. ],
  5543. "authors": [
  5544. {
  5545. "name": "Fabien Potencier",
  5546. "email": "fabien@symfony.com"
  5547. },
  5548. {
  5549. "name": "Symfony Community",
  5550. "homepage": "https://symfony.com/contributors"
  5551. }
  5552. ],
  5553. "description": "Provides tools to internationalize your application",
  5554. "homepage": "https://symfony.com",
  5555. "support": {
  5556. "source": "https://github.com/symfony/translation/tree/v6.4.12"
  5557. },
  5558. "funding": [
  5559. {
  5560. "url": "https://symfony.com/sponsor",
  5561. "type": "custom"
  5562. },
  5563. {
  5564. "url": "https://github.com/fabpot",
  5565. "type": "github"
  5566. },
  5567. {
  5568. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5569. "type": "tidelift"
  5570. }
  5571. ],
  5572. "time": "2024-09-16T06:02:54+00:00"
  5573. },
  5574. {
  5575. "name": "symfony/translation-contracts",
  5576. "version": "v3.5.0",
  5577. "source": {
  5578. "type": "git",
  5579. "url": "https://github.com/symfony/translation-contracts.git",
  5580. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  5581. },
  5582. "dist": {
  5583. "type": "zip",
  5584. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  5585. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  5586. "shasum": ""
  5587. },
  5588. "require": {
  5589. "php": ">=8.1"
  5590. },
  5591. "type": "library",
  5592. "extra": {
  5593. "branch-alias": {
  5594. "dev-main": "3.5-dev"
  5595. },
  5596. "thanks": {
  5597. "name": "symfony/contracts",
  5598. "url": "https://github.com/symfony/contracts"
  5599. }
  5600. },
  5601. "autoload": {
  5602. "psr-4": {
  5603. "Symfony\\Contracts\\Translation\\": ""
  5604. },
  5605. "exclude-from-classmap": [
  5606. "/Test/"
  5607. ]
  5608. },
  5609. "notification-url": "https://packagist.org/downloads/",
  5610. "license": [
  5611. "MIT"
  5612. ],
  5613. "authors": [
  5614. {
  5615. "name": "Nicolas Grekas",
  5616. "email": "p@tchwork.com"
  5617. },
  5618. {
  5619. "name": "Symfony Community",
  5620. "homepage": "https://symfony.com/contributors"
  5621. }
  5622. ],
  5623. "description": "Generic abstractions related to translation",
  5624. "homepage": "https://symfony.com",
  5625. "keywords": [
  5626. "abstractions",
  5627. "contracts",
  5628. "decoupling",
  5629. "interfaces",
  5630. "interoperability",
  5631. "standards"
  5632. ],
  5633. "support": {
  5634. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  5635. },
  5636. "funding": [
  5637. {
  5638. "url": "https://symfony.com/sponsor",
  5639. "type": "custom"
  5640. },
  5641. {
  5642. "url": "https://github.com/fabpot",
  5643. "type": "github"
  5644. },
  5645. {
  5646. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5647. "type": "tidelift"
  5648. }
  5649. ],
  5650. "time": "2024-04-18T09:32:20+00:00"
  5651. },
  5652. {
  5653. "name": "symfony/uid",
  5654. "version": "v6.4.12",
  5655. "source": {
  5656. "type": "git",
  5657. "url": "https://github.com/symfony/uid.git",
  5658. "reference": "2f16054e0a9b194b8ca581d4a64eee3f7d4a9d4d"
  5659. },
  5660. "dist": {
  5661. "type": "zip",
  5662. "url": "https://api.github.com/repos/symfony/uid/zipball/2f16054e0a9b194b8ca581d4a64eee3f7d4a9d4d",
  5663. "reference": "2f16054e0a9b194b8ca581d4a64eee3f7d4a9d4d",
  5664. "shasum": ""
  5665. },
  5666. "require": {
  5667. "php": ">=8.1",
  5668. "symfony/polyfill-uuid": "^1.15"
  5669. },
  5670. "require-dev": {
  5671. "symfony/console": "^5.4|^6.0|^7.0"
  5672. },
  5673. "type": "library",
  5674. "autoload": {
  5675. "psr-4": {
  5676. "Symfony\\Component\\Uid\\": ""
  5677. },
  5678. "exclude-from-classmap": [
  5679. "/Tests/"
  5680. ]
  5681. },
  5682. "notification-url": "https://packagist.org/downloads/",
  5683. "license": [
  5684. "MIT"
  5685. ],
  5686. "authors": [
  5687. {
  5688. "name": "Grégoire Pineau",
  5689. "email": "lyrixx@lyrixx.info"
  5690. },
  5691. {
  5692. "name": "Nicolas Grekas",
  5693. "email": "p@tchwork.com"
  5694. },
  5695. {
  5696. "name": "Symfony Community",
  5697. "homepage": "https://symfony.com/contributors"
  5698. }
  5699. ],
  5700. "description": "Provides an object-oriented API to generate and represent UIDs",
  5701. "homepage": "https://symfony.com",
  5702. "keywords": [
  5703. "UID",
  5704. "ulid",
  5705. "uuid"
  5706. ],
  5707. "support": {
  5708. "source": "https://github.com/symfony/uid/tree/v6.4.12"
  5709. },
  5710. "funding": [
  5711. {
  5712. "url": "https://symfony.com/sponsor",
  5713. "type": "custom"
  5714. },
  5715. {
  5716. "url": "https://github.com/fabpot",
  5717. "type": "github"
  5718. },
  5719. {
  5720. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5721. "type": "tidelift"
  5722. }
  5723. ],
  5724. "time": "2024-09-20T08:32:26+00:00"
  5725. },
  5726. {
  5727. "name": "symfony/var-dumper",
  5728. "version": "v6.4.11",
  5729. "source": {
  5730. "type": "git",
  5731. "url": "https://github.com/symfony/var-dumper.git",
  5732. "reference": "ee14c8254a480913268b1e3b1cba8045ed122694"
  5733. },
  5734. "dist": {
  5735. "type": "zip",
  5736. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ee14c8254a480913268b1e3b1cba8045ed122694",
  5737. "reference": "ee14c8254a480913268b1e3b1cba8045ed122694",
  5738. "shasum": ""
  5739. },
  5740. "require": {
  5741. "php": ">=8.1",
  5742. "symfony/deprecation-contracts": "^2.5|^3",
  5743. "symfony/polyfill-mbstring": "~1.0"
  5744. },
  5745. "conflict": {
  5746. "symfony/console": "<5.4"
  5747. },
  5748. "require-dev": {
  5749. "ext-iconv": "*",
  5750. "symfony/console": "^5.4|^6.0|^7.0",
  5751. "symfony/error-handler": "^6.3|^7.0",
  5752. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  5753. "symfony/process": "^5.4|^6.0|^7.0",
  5754. "symfony/uid": "^5.4|^6.0|^7.0",
  5755. "twig/twig": "^2.13|^3.0.4"
  5756. },
  5757. "bin": [
  5758. "Resources/bin/var-dump-server"
  5759. ],
  5760. "type": "library",
  5761. "autoload": {
  5762. "files": [
  5763. "Resources/functions/dump.php"
  5764. ],
  5765. "psr-4": {
  5766. "Symfony\\Component\\VarDumper\\": ""
  5767. },
  5768. "exclude-from-classmap": [
  5769. "/Tests/"
  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": "Provides mechanisms for walking through any arbitrary PHP variable",
  5787. "homepage": "https://symfony.com",
  5788. "keywords": [
  5789. "debug",
  5790. "dump"
  5791. ],
  5792. "support": {
  5793. "source": "https://github.com/symfony/var-dumper/tree/v6.4.11"
  5794. },
  5795. "funding": [
  5796. {
  5797. "url": "https://symfony.com/sponsor",
  5798. "type": "custom"
  5799. },
  5800. {
  5801. "url": "https://github.com/fabpot",
  5802. "type": "github"
  5803. },
  5804. {
  5805. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5806. "type": "tidelift"
  5807. }
  5808. ],
  5809. "time": "2024-08-30T16:03:21+00:00"
  5810. },
  5811. {
  5812. "name": "tijsverkoyen/css-to-inline-styles",
  5813. "version": "v2.2.7",
  5814. "source": {
  5815. "type": "git",
  5816. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5817. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  5818. },
  5819. "dist": {
  5820. "type": "zip",
  5821. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  5822. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  5823. "shasum": ""
  5824. },
  5825. "require": {
  5826. "ext-dom": "*",
  5827. "ext-libxml": "*",
  5828. "php": "^5.5 || ^7.0 || ^8.0",
  5829. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  5830. },
  5831. "require-dev": {
  5832. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  5833. },
  5834. "type": "library",
  5835. "extra": {
  5836. "branch-alias": {
  5837. "dev-master": "2.2.x-dev"
  5838. }
  5839. },
  5840. "autoload": {
  5841. "psr-4": {
  5842. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5843. }
  5844. },
  5845. "notification-url": "https://packagist.org/downloads/",
  5846. "license": [
  5847. "BSD-3-Clause"
  5848. ],
  5849. "authors": [
  5850. {
  5851. "name": "Tijs Verkoyen",
  5852. "email": "css_to_inline_styles@verkoyen.eu",
  5853. "role": "Developer"
  5854. }
  5855. ],
  5856. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  5857. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5858. "support": {
  5859. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  5860. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  5861. },
  5862. "time": "2023-12-08T13:03:43+00:00"
  5863. },
  5864. {
  5865. "name": "vlucas/phpdotenv",
  5866. "version": "v5.6.1",
  5867. "source": {
  5868. "type": "git",
  5869. "url": "https://github.com/vlucas/phpdotenv.git",
  5870. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  5871. },
  5872. "dist": {
  5873. "type": "zip",
  5874. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  5875. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  5876. "shasum": ""
  5877. },
  5878. "require": {
  5879. "ext-pcre": "*",
  5880. "graham-campbell/result-type": "^1.1.3",
  5881. "php": "^7.2.5 || ^8.0",
  5882. "phpoption/phpoption": "^1.9.3",
  5883. "symfony/polyfill-ctype": "^1.24",
  5884. "symfony/polyfill-mbstring": "^1.24",
  5885. "symfony/polyfill-php80": "^1.24"
  5886. },
  5887. "require-dev": {
  5888. "bamarni/composer-bin-plugin": "^1.8.2",
  5889. "ext-filter": "*",
  5890. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5891. },
  5892. "suggest": {
  5893. "ext-filter": "Required to use the boolean validator."
  5894. },
  5895. "type": "library",
  5896. "extra": {
  5897. "bamarni-bin": {
  5898. "bin-links": true,
  5899. "forward-command": false
  5900. },
  5901. "branch-alias": {
  5902. "dev-master": "5.6-dev"
  5903. }
  5904. },
  5905. "autoload": {
  5906. "psr-4": {
  5907. "Dotenv\\": "src/"
  5908. }
  5909. },
  5910. "notification-url": "https://packagist.org/downloads/",
  5911. "license": [
  5912. "BSD-3-Clause"
  5913. ],
  5914. "authors": [
  5915. {
  5916. "name": "Graham Campbell",
  5917. "email": "hello@gjcampbell.co.uk",
  5918. "homepage": "https://github.com/GrahamCampbell"
  5919. },
  5920. {
  5921. "name": "Vance Lucas",
  5922. "email": "vance@vancelucas.com",
  5923. "homepage": "https://github.com/vlucas"
  5924. }
  5925. ],
  5926. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5927. "keywords": [
  5928. "dotenv",
  5929. "env",
  5930. "environment"
  5931. ],
  5932. "support": {
  5933. "issues": "https://github.com/vlucas/phpdotenv/issues",
  5934. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  5935. },
  5936. "funding": [
  5937. {
  5938. "url": "https://github.com/GrahamCampbell",
  5939. "type": "github"
  5940. },
  5941. {
  5942. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  5943. "type": "tidelift"
  5944. }
  5945. ],
  5946. "time": "2024-07-20T21:52:34+00:00"
  5947. },
  5948. {
  5949. "name": "voku/portable-ascii",
  5950. "version": "2.0.1",
  5951. "source": {
  5952. "type": "git",
  5953. "url": "https://github.com/voku/portable-ascii.git",
  5954. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  5955. },
  5956. "dist": {
  5957. "type": "zip",
  5958. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  5959. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  5960. "shasum": ""
  5961. },
  5962. "require": {
  5963. "php": ">=7.0.0"
  5964. },
  5965. "require-dev": {
  5966. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  5967. },
  5968. "suggest": {
  5969. "ext-intl": "Use Intl for transliterator_transliterate() support"
  5970. },
  5971. "type": "library",
  5972. "autoload": {
  5973. "psr-4": {
  5974. "voku\\": "src/voku/"
  5975. }
  5976. },
  5977. "notification-url": "https://packagist.org/downloads/",
  5978. "license": [
  5979. "MIT"
  5980. ],
  5981. "authors": [
  5982. {
  5983. "name": "Lars Moelleken",
  5984. "homepage": "http://www.moelleken.org/"
  5985. }
  5986. ],
  5987. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  5988. "homepage": "https://github.com/voku/portable-ascii",
  5989. "keywords": [
  5990. "ascii",
  5991. "clean",
  5992. "php"
  5993. ],
  5994. "support": {
  5995. "issues": "https://github.com/voku/portable-ascii/issues",
  5996. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  5997. },
  5998. "funding": [
  5999. {
  6000. "url": "https://www.paypal.me/moelleken",
  6001. "type": "custom"
  6002. },
  6003. {
  6004. "url": "https://github.com/voku",
  6005. "type": "github"
  6006. },
  6007. {
  6008. "url": "https://opencollective.com/portable-ascii",
  6009. "type": "open_collective"
  6010. },
  6011. {
  6012. "url": "https://www.patreon.com/voku",
  6013. "type": "patreon"
  6014. },
  6015. {
  6016. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6017. "type": "tidelift"
  6018. }
  6019. ],
  6020. "time": "2022-03-08T17:03:00+00:00"
  6021. },
  6022. {
  6023. "name": "webmozart/assert",
  6024. "version": "1.11.0",
  6025. "source": {
  6026. "type": "git",
  6027. "url": "https://github.com/webmozarts/assert.git",
  6028. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  6029. },
  6030. "dist": {
  6031. "type": "zip",
  6032. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6033. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6034. "shasum": ""
  6035. },
  6036. "require": {
  6037. "ext-ctype": "*",
  6038. "php": "^7.2 || ^8.0"
  6039. },
  6040. "conflict": {
  6041. "phpstan/phpstan": "<0.12.20",
  6042. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6043. },
  6044. "require-dev": {
  6045. "phpunit/phpunit": "^8.5.13"
  6046. },
  6047. "type": "library",
  6048. "extra": {
  6049. "branch-alias": {
  6050. "dev-master": "1.10-dev"
  6051. }
  6052. },
  6053. "autoload": {
  6054. "psr-4": {
  6055. "Webmozart\\Assert\\": "src/"
  6056. }
  6057. },
  6058. "notification-url": "https://packagist.org/downloads/",
  6059. "license": [
  6060. "MIT"
  6061. ],
  6062. "authors": [
  6063. {
  6064. "name": "Bernhard Schussek",
  6065. "email": "bschussek@gmail.com"
  6066. }
  6067. ],
  6068. "description": "Assertions to validate method input/output with nice error messages.",
  6069. "keywords": [
  6070. "assert",
  6071. "check",
  6072. "validate"
  6073. ],
  6074. "support": {
  6075. "issues": "https://github.com/webmozarts/assert/issues",
  6076. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  6077. },
  6078. "time": "2022-06-03T18:03:27+00:00"
  6079. }
  6080. ],
  6081. "packages-dev": [
  6082. {
  6083. "name": "doctrine/instantiator",
  6084. "version": "2.0.0",
  6085. "source": {
  6086. "type": "git",
  6087. "url": "https://github.com/doctrine/instantiator.git",
  6088. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  6089. },
  6090. "dist": {
  6091. "type": "zip",
  6092. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  6093. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  6094. "shasum": ""
  6095. },
  6096. "require": {
  6097. "php": "^8.1"
  6098. },
  6099. "require-dev": {
  6100. "doctrine/coding-standard": "^11",
  6101. "ext-pdo": "*",
  6102. "ext-phar": "*",
  6103. "phpbench/phpbench": "^1.2",
  6104. "phpstan/phpstan": "^1.9.4",
  6105. "phpstan/phpstan-phpunit": "^1.3",
  6106. "phpunit/phpunit": "^9.5.27",
  6107. "vimeo/psalm": "^5.4"
  6108. },
  6109. "type": "library",
  6110. "autoload": {
  6111. "psr-4": {
  6112. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  6113. }
  6114. },
  6115. "notification-url": "https://packagist.org/downloads/",
  6116. "license": [
  6117. "MIT"
  6118. ],
  6119. "authors": [
  6120. {
  6121. "name": "Marco Pivetta",
  6122. "email": "ocramius@gmail.com",
  6123. "homepage": "https://ocramius.github.io/"
  6124. }
  6125. ],
  6126. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  6127. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  6128. "keywords": [
  6129. "constructor",
  6130. "instantiate"
  6131. ],
  6132. "support": {
  6133. "issues": "https://github.com/doctrine/instantiator/issues",
  6134. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  6135. },
  6136. "funding": [
  6137. {
  6138. "url": "https://www.doctrine-project.org/sponsorship.html",
  6139. "type": "custom"
  6140. },
  6141. {
  6142. "url": "https://www.patreon.com/phpdoctrine",
  6143. "type": "patreon"
  6144. },
  6145. {
  6146. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  6147. "type": "tidelift"
  6148. }
  6149. ],
  6150. "time": "2022-12-30T00:23:10+00:00"
  6151. },
  6152. {
  6153. "name": "fakerphp/faker",
  6154. "version": "v1.23.1",
  6155. "source": {
  6156. "type": "git",
  6157. "url": "https://github.com/FakerPHP/Faker.git",
  6158. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  6159. },
  6160. "dist": {
  6161. "type": "zip",
  6162. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  6163. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  6164. "shasum": ""
  6165. },
  6166. "require": {
  6167. "php": "^7.4 || ^8.0",
  6168. "psr/container": "^1.0 || ^2.0",
  6169. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  6170. },
  6171. "conflict": {
  6172. "fzaninotto/faker": "*"
  6173. },
  6174. "require-dev": {
  6175. "bamarni/composer-bin-plugin": "^1.4.1",
  6176. "doctrine/persistence": "^1.3 || ^2.0",
  6177. "ext-intl": "*",
  6178. "phpunit/phpunit": "^9.5.26",
  6179. "symfony/phpunit-bridge": "^5.4.16"
  6180. },
  6181. "suggest": {
  6182. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  6183. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  6184. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  6185. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  6186. "ext-mbstring": "Required for multibyte Unicode string functionality."
  6187. },
  6188. "type": "library",
  6189. "autoload": {
  6190. "psr-4": {
  6191. "Faker\\": "src/Faker/"
  6192. }
  6193. },
  6194. "notification-url": "https://packagist.org/downloads/",
  6195. "license": [
  6196. "MIT"
  6197. ],
  6198. "authors": [
  6199. {
  6200. "name": "François Zaninotto"
  6201. }
  6202. ],
  6203. "description": "Faker is a PHP library that generates fake data for you.",
  6204. "keywords": [
  6205. "data",
  6206. "faker",
  6207. "fixtures"
  6208. ],
  6209. "support": {
  6210. "issues": "https://github.com/FakerPHP/Faker/issues",
  6211. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  6212. },
  6213. "time": "2024-01-02T13:46:09+00:00"
  6214. },
  6215. {
  6216. "name": "filp/whoops",
  6217. "version": "2.16.0",
  6218. "source": {
  6219. "type": "git",
  6220. "url": "https://github.com/filp/whoops.git",
  6221. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  6222. },
  6223. "dist": {
  6224. "type": "zip",
  6225. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  6226. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  6227. "shasum": ""
  6228. },
  6229. "require": {
  6230. "php": "^7.1 || ^8.0",
  6231. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  6232. },
  6233. "require-dev": {
  6234. "mockery/mockery": "^1.0",
  6235. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  6236. "symfony/var-dumper": "^4.0 || ^5.0"
  6237. },
  6238. "suggest": {
  6239. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  6240. "whoops/soap": "Formats errors as SOAP responses"
  6241. },
  6242. "type": "library",
  6243. "extra": {
  6244. "branch-alias": {
  6245. "dev-master": "2.7-dev"
  6246. }
  6247. },
  6248. "autoload": {
  6249. "psr-4": {
  6250. "Whoops\\": "src/Whoops/"
  6251. }
  6252. },
  6253. "notification-url": "https://packagist.org/downloads/",
  6254. "license": [
  6255. "MIT"
  6256. ],
  6257. "authors": [
  6258. {
  6259. "name": "Filipe Dobreira",
  6260. "homepage": "https://github.com/filp",
  6261. "role": "Developer"
  6262. }
  6263. ],
  6264. "description": "php error handling for cool kids",
  6265. "homepage": "https://filp.github.io/whoops/",
  6266. "keywords": [
  6267. "error",
  6268. "exception",
  6269. "handling",
  6270. "library",
  6271. "throwable",
  6272. "whoops"
  6273. ],
  6274. "support": {
  6275. "issues": "https://github.com/filp/whoops/issues",
  6276. "source": "https://github.com/filp/whoops/tree/2.16.0"
  6277. },
  6278. "funding": [
  6279. {
  6280. "url": "https://github.com/denis-sokolov",
  6281. "type": "github"
  6282. }
  6283. ],
  6284. "time": "2024-09-25T12:00:00+00:00"
  6285. },
  6286. {
  6287. "name": "hamcrest/hamcrest-php",
  6288. "version": "v2.0.1",
  6289. "source": {
  6290. "type": "git",
  6291. "url": "https://github.com/hamcrest/hamcrest-php.git",
  6292. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  6293. },
  6294. "dist": {
  6295. "type": "zip",
  6296. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6297. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6298. "shasum": ""
  6299. },
  6300. "require": {
  6301. "php": "^5.3|^7.0|^8.0"
  6302. },
  6303. "replace": {
  6304. "cordoval/hamcrest-php": "*",
  6305. "davedevelopment/hamcrest-php": "*",
  6306. "kodova/hamcrest-php": "*"
  6307. },
  6308. "require-dev": {
  6309. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  6310. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  6311. },
  6312. "type": "library",
  6313. "extra": {
  6314. "branch-alias": {
  6315. "dev-master": "2.1-dev"
  6316. }
  6317. },
  6318. "autoload": {
  6319. "classmap": [
  6320. "hamcrest"
  6321. ]
  6322. },
  6323. "notification-url": "https://packagist.org/downloads/",
  6324. "license": [
  6325. "BSD-3-Clause"
  6326. ],
  6327. "description": "This is the PHP port of Hamcrest Matchers",
  6328. "keywords": [
  6329. "test"
  6330. ],
  6331. "support": {
  6332. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  6333. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  6334. },
  6335. "time": "2020-07-09T08:09:16+00:00"
  6336. },
  6337. {
  6338. "name": "laravel/pint",
  6339. "version": "v1.18.1",
  6340. "source": {
  6341. "type": "git",
  6342. "url": "https://github.com/laravel/pint.git",
  6343. "reference": "35c00c05ec43e6b46d295efc0f4386ceb30d50d9"
  6344. },
  6345. "dist": {
  6346. "type": "zip",
  6347. "url": "https://api.github.com/repos/laravel/pint/zipball/35c00c05ec43e6b46d295efc0f4386ceb30d50d9",
  6348. "reference": "35c00c05ec43e6b46d295efc0f4386ceb30d50d9",
  6349. "shasum": ""
  6350. },
  6351. "require": {
  6352. "ext-json": "*",
  6353. "ext-mbstring": "*",
  6354. "ext-tokenizer": "*",
  6355. "ext-xml": "*",
  6356. "php": "^8.1.0"
  6357. },
  6358. "require-dev": {
  6359. "friendsofphp/php-cs-fixer": "^3.64.0",
  6360. "illuminate/view": "^10.48.20",
  6361. "larastan/larastan": "^2.9.8",
  6362. "laravel-zero/framework": "^10.4.0",
  6363. "mockery/mockery": "^1.6.12",
  6364. "nunomaduro/termwind": "^1.15.1",
  6365. "pestphp/pest": "^2.35.1"
  6366. },
  6367. "bin": [
  6368. "builds/pint"
  6369. ],
  6370. "type": "project",
  6371. "autoload": {
  6372. "psr-4": {
  6373. "App\\": "app/",
  6374. "Database\\Seeders\\": "database/seeders/",
  6375. "Database\\Factories\\": "database/factories/"
  6376. }
  6377. },
  6378. "notification-url": "https://packagist.org/downloads/",
  6379. "license": [
  6380. "MIT"
  6381. ],
  6382. "authors": [
  6383. {
  6384. "name": "Nuno Maduro",
  6385. "email": "enunomaduro@gmail.com"
  6386. }
  6387. ],
  6388. "description": "An opinionated code formatter for PHP.",
  6389. "homepage": "https://laravel.com",
  6390. "keywords": [
  6391. "format",
  6392. "formatter",
  6393. "lint",
  6394. "linter",
  6395. "php"
  6396. ],
  6397. "support": {
  6398. "issues": "https://github.com/laravel/pint/issues",
  6399. "source": "https://github.com/laravel/pint"
  6400. },
  6401. "time": "2024-09-24T17:22:50+00:00"
  6402. },
  6403. {
  6404. "name": "laravel/sail",
  6405. "version": "v1.36.0",
  6406. "source": {
  6407. "type": "git",
  6408. "url": "https://github.com/laravel/sail.git",
  6409. "reference": "f184d3d687155d06bc8cb9ff6dc48596a138460c"
  6410. },
  6411. "dist": {
  6412. "type": "zip",
  6413. "url": "https://api.github.com/repos/laravel/sail/zipball/f184d3d687155d06bc8cb9ff6dc48596a138460c",
  6414. "reference": "f184d3d687155d06bc8cb9ff6dc48596a138460c",
  6415. "shasum": ""
  6416. },
  6417. "require": {
  6418. "illuminate/console": "^9.52.16|^10.0|^11.0",
  6419. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  6420. "illuminate/support": "^9.52.16|^10.0|^11.0",
  6421. "php": "^8.0",
  6422. "symfony/console": "^6.0|^7.0",
  6423. "symfony/yaml": "^6.0|^7.0"
  6424. },
  6425. "require-dev": {
  6426. "orchestra/testbench": "^7.0|^8.0|^9.0",
  6427. "phpstan/phpstan": "^1.10"
  6428. },
  6429. "bin": [
  6430. "bin/sail"
  6431. ],
  6432. "type": "library",
  6433. "extra": {
  6434. "laravel": {
  6435. "providers": [
  6436. "Laravel\\Sail\\SailServiceProvider"
  6437. ]
  6438. }
  6439. },
  6440. "autoload": {
  6441. "psr-4": {
  6442. "Laravel\\Sail\\": "src/"
  6443. }
  6444. },
  6445. "notification-url": "https://packagist.org/downloads/",
  6446. "license": [
  6447. "MIT"
  6448. ],
  6449. "authors": [
  6450. {
  6451. "name": "Taylor Otwell",
  6452. "email": "taylor@laravel.com"
  6453. }
  6454. ],
  6455. "description": "Docker files for running a basic Laravel application.",
  6456. "keywords": [
  6457. "docker",
  6458. "laravel"
  6459. ],
  6460. "support": {
  6461. "issues": "https://github.com/laravel/sail/issues",
  6462. "source": "https://github.com/laravel/sail"
  6463. },
  6464. "time": "2024-10-10T13:26:02+00:00"
  6465. },
  6466. {
  6467. "name": "mockery/mockery",
  6468. "version": "1.6.12",
  6469. "source": {
  6470. "type": "git",
  6471. "url": "https://github.com/mockery/mockery.git",
  6472. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  6473. },
  6474. "dist": {
  6475. "type": "zip",
  6476. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  6477. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  6478. "shasum": ""
  6479. },
  6480. "require": {
  6481. "hamcrest/hamcrest-php": "^2.0.1",
  6482. "lib-pcre": ">=7.0",
  6483. "php": ">=7.3"
  6484. },
  6485. "conflict": {
  6486. "phpunit/phpunit": "<8.0"
  6487. },
  6488. "require-dev": {
  6489. "phpunit/phpunit": "^8.5 || ^9.6.17",
  6490. "symplify/easy-coding-standard": "^12.1.14"
  6491. },
  6492. "type": "library",
  6493. "autoload": {
  6494. "files": [
  6495. "library/helpers.php",
  6496. "library/Mockery.php"
  6497. ],
  6498. "psr-4": {
  6499. "Mockery\\": "library/Mockery"
  6500. }
  6501. },
  6502. "notification-url": "https://packagist.org/downloads/",
  6503. "license": [
  6504. "BSD-3-Clause"
  6505. ],
  6506. "authors": [
  6507. {
  6508. "name": "Pádraic Brady",
  6509. "email": "padraic.brady@gmail.com",
  6510. "homepage": "https://github.com/padraic",
  6511. "role": "Author"
  6512. },
  6513. {
  6514. "name": "Dave Marshall",
  6515. "email": "dave.marshall@atstsolutions.co.uk",
  6516. "homepage": "https://davedevelopment.co.uk",
  6517. "role": "Developer"
  6518. },
  6519. {
  6520. "name": "Nathanael Esayeas",
  6521. "email": "nathanael.esayeas@protonmail.com",
  6522. "homepage": "https://github.com/ghostwriter",
  6523. "role": "Lead Developer"
  6524. }
  6525. ],
  6526. "description": "Mockery is a simple yet flexible PHP mock object framework",
  6527. "homepage": "https://github.com/mockery/mockery",
  6528. "keywords": [
  6529. "BDD",
  6530. "TDD",
  6531. "library",
  6532. "mock",
  6533. "mock objects",
  6534. "mockery",
  6535. "stub",
  6536. "test",
  6537. "test double",
  6538. "testing"
  6539. ],
  6540. "support": {
  6541. "docs": "https://docs.mockery.io/",
  6542. "issues": "https://github.com/mockery/mockery/issues",
  6543. "rss": "https://github.com/mockery/mockery/releases.atom",
  6544. "security": "https://github.com/mockery/mockery/security/advisories",
  6545. "source": "https://github.com/mockery/mockery"
  6546. },
  6547. "time": "2024-05-16T03:13:13+00:00"
  6548. },
  6549. {
  6550. "name": "myclabs/deep-copy",
  6551. "version": "1.12.0",
  6552. "source": {
  6553. "type": "git",
  6554. "url": "https://github.com/myclabs/DeepCopy.git",
  6555. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  6556. },
  6557. "dist": {
  6558. "type": "zip",
  6559. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  6560. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  6561. "shasum": ""
  6562. },
  6563. "require": {
  6564. "php": "^7.1 || ^8.0"
  6565. },
  6566. "conflict": {
  6567. "doctrine/collections": "<1.6.8",
  6568. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  6569. },
  6570. "require-dev": {
  6571. "doctrine/collections": "^1.6.8",
  6572. "doctrine/common": "^2.13.3 || ^3.2.2",
  6573. "phpspec/prophecy": "^1.10",
  6574. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  6575. },
  6576. "type": "library",
  6577. "autoload": {
  6578. "files": [
  6579. "src/DeepCopy/deep_copy.php"
  6580. ],
  6581. "psr-4": {
  6582. "DeepCopy\\": "src/DeepCopy/"
  6583. }
  6584. },
  6585. "notification-url": "https://packagist.org/downloads/",
  6586. "license": [
  6587. "MIT"
  6588. ],
  6589. "description": "Create deep copies (clones) of your objects",
  6590. "keywords": [
  6591. "clone",
  6592. "copy",
  6593. "duplicate",
  6594. "object",
  6595. "object graph"
  6596. ],
  6597. "support": {
  6598. "issues": "https://github.com/myclabs/DeepCopy/issues",
  6599. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  6600. },
  6601. "funding": [
  6602. {
  6603. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  6604. "type": "tidelift"
  6605. }
  6606. ],
  6607. "time": "2024-06-12T14:39:25+00:00"
  6608. },
  6609. {
  6610. "name": "nunomaduro/collision",
  6611. "version": "v6.4.0",
  6612. "source": {
  6613. "type": "git",
  6614. "url": "https://github.com/nunomaduro/collision.git",
  6615. "reference": "f05978827b9343cba381ca05b8c7deee346b6015"
  6616. },
  6617. "dist": {
  6618. "type": "zip",
  6619. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015",
  6620. "reference": "f05978827b9343cba381ca05b8c7deee346b6015",
  6621. "shasum": ""
  6622. },
  6623. "require": {
  6624. "filp/whoops": "^2.14.5",
  6625. "php": "^8.0.0",
  6626. "symfony/console": "^6.0.2"
  6627. },
  6628. "require-dev": {
  6629. "brianium/paratest": "^6.4.1",
  6630. "laravel/framework": "^9.26.1",
  6631. "laravel/pint": "^1.1.1",
  6632. "nunomaduro/larastan": "^1.0.3",
  6633. "nunomaduro/mock-final-classes": "^1.1.0",
  6634. "orchestra/testbench": "^7.7",
  6635. "phpunit/phpunit": "^9.5.23",
  6636. "spatie/ignition": "^1.4.1"
  6637. },
  6638. "type": "library",
  6639. "extra": {
  6640. "branch-alias": {
  6641. "dev-develop": "6.x-dev"
  6642. },
  6643. "laravel": {
  6644. "providers": [
  6645. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  6646. ]
  6647. }
  6648. },
  6649. "autoload": {
  6650. "psr-4": {
  6651. "NunoMaduro\\Collision\\": "src/"
  6652. }
  6653. },
  6654. "notification-url": "https://packagist.org/downloads/",
  6655. "license": [
  6656. "MIT"
  6657. ],
  6658. "authors": [
  6659. {
  6660. "name": "Nuno Maduro",
  6661. "email": "enunomaduro@gmail.com"
  6662. }
  6663. ],
  6664. "description": "Cli error handling for console/command-line PHP applications.",
  6665. "keywords": [
  6666. "artisan",
  6667. "cli",
  6668. "command-line",
  6669. "console",
  6670. "error",
  6671. "handling",
  6672. "laravel",
  6673. "laravel-zero",
  6674. "php",
  6675. "symfony"
  6676. ],
  6677. "support": {
  6678. "issues": "https://github.com/nunomaduro/collision/issues",
  6679. "source": "https://github.com/nunomaduro/collision"
  6680. },
  6681. "funding": [
  6682. {
  6683. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6684. "type": "custom"
  6685. },
  6686. {
  6687. "url": "https://github.com/nunomaduro",
  6688. "type": "github"
  6689. },
  6690. {
  6691. "url": "https://www.patreon.com/nunomaduro",
  6692. "type": "patreon"
  6693. }
  6694. ],
  6695. "time": "2023-01-03T12:54:54+00:00"
  6696. },
  6697. {
  6698. "name": "phar-io/manifest",
  6699. "version": "2.0.4",
  6700. "source": {
  6701. "type": "git",
  6702. "url": "https://github.com/phar-io/manifest.git",
  6703. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  6704. },
  6705. "dist": {
  6706. "type": "zip",
  6707. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  6708. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  6709. "shasum": ""
  6710. },
  6711. "require": {
  6712. "ext-dom": "*",
  6713. "ext-libxml": "*",
  6714. "ext-phar": "*",
  6715. "ext-xmlwriter": "*",
  6716. "phar-io/version": "^3.0.1",
  6717. "php": "^7.2 || ^8.0"
  6718. },
  6719. "type": "library",
  6720. "extra": {
  6721. "branch-alias": {
  6722. "dev-master": "2.0.x-dev"
  6723. }
  6724. },
  6725. "autoload": {
  6726. "classmap": [
  6727. "src/"
  6728. ]
  6729. },
  6730. "notification-url": "https://packagist.org/downloads/",
  6731. "license": [
  6732. "BSD-3-Clause"
  6733. ],
  6734. "authors": [
  6735. {
  6736. "name": "Arne Blankerts",
  6737. "email": "arne@blankerts.de",
  6738. "role": "Developer"
  6739. },
  6740. {
  6741. "name": "Sebastian Heuer",
  6742. "email": "sebastian@phpeople.de",
  6743. "role": "Developer"
  6744. },
  6745. {
  6746. "name": "Sebastian Bergmann",
  6747. "email": "sebastian@phpunit.de",
  6748. "role": "Developer"
  6749. }
  6750. ],
  6751. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6752. "support": {
  6753. "issues": "https://github.com/phar-io/manifest/issues",
  6754. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  6755. },
  6756. "funding": [
  6757. {
  6758. "url": "https://github.com/theseer",
  6759. "type": "github"
  6760. }
  6761. ],
  6762. "time": "2024-03-03T12:33:53+00:00"
  6763. },
  6764. {
  6765. "name": "phar-io/version",
  6766. "version": "3.2.1",
  6767. "source": {
  6768. "type": "git",
  6769. "url": "https://github.com/phar-io/version.git",
  6770. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  6771. },
  6772. "dist": {
  6773. "type": "zip",
  6774. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6775. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6776. "shasum": ""
  6777. },
  6778. "require": {
  6779. "php": "^7.2 || ^8.0"
  6780. },
  6781. "type": "library",
  6782. "autoload": {
  6783. "classmap": [
  6784. "src/"
  6785. ]
  6786. },
  6787. "notification-url": "https://packagist.org/downloads/",
  6788. "license": [
  6789. "BSD-3-Clause"
  6790. ],
  6791. "authors": [
  6792. {
  6793. "name": "Arne Blankerts",
  6794. "email": "arne@blankerts.de",
  6795. "role": "Developer"
  6796. },
  6797. {
  6798. "name": "Sebastian Heuer",
  6799. "email": "sebastian@phpeople.de",
  6800. "role": "Developer"
  6801. },
  6802. {
  6803. "name": "Sebastian Bergmann",
  6804. "email": "sebastian@phpunit.de",
  6805. "role": "Developer"
  6806. }
  6807. ],
  6808. "description": "Library for handling version information and constraints",
  6809. "support": {
  6810. "issues": "https://github.com/phar-io/version/issues",
  6811. "source": "https://github.com/phar-io/version/tree/3.2.1"
  6812. },
  6813. "time": "2022-02-21T01:04:05+00:00"
  6814. },
  6815. {
  6816. "name": "phpunit/php-code-coverage",
  6817. "version": "9.2.32",
  6818. "source": {
  6819. "type": "git",
  6820. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6821. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  6822. },
  6823. "dist": {
  6824. "type": "zip",
  6825. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  6826. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  6827. "shasum": ""
  6828. },
  6829. "require": {
  6830. "ext-dom": "*",
  6831. "ext-libxml": "*",
  6832. "ext-xmlwriter": "*",
  6833. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  6834. "php": ">=7.3",
  6835. "phpunit/php-file-iterator": "^3.0.6",
  6836. "phpunit/php-text-template": "^2.0.4",
  6837. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  6838. "sebastian/complexity": "^2.0.3",
  6839. "sebastian/environment": "^5.1.5",
  6840. "sebastian/lines-of-code": "^1.0.4",
  6841. "sebastian/version": "^3.0.2",
  6842. "theseer/tokenizer": "^1.2.3"
  6843. },
  6844. "require-dev": {
  6845. "phpunit/phpunit": "^9.6"
  6846. },
  6847. "suggest": {
  6848. "ext-pcov": "PHP extension that provides line coverage",
  6849. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  6850. },
  6851. "type": "library",
  6852. "extra": {
  6853. "branch-alias": {
  6854. "dev-main": "9.2.x-dev"
  6855. }
  6856. },
  6857. "autoload": {
  6858. "classmap": [
  6859. "src/"
  6860. ]
  6861. },
  6862. "notification-url": "https://packagist.org/downloads/",
  6863. "license": [
  6864. "BSD-3-Clause"
  6865. ],
  6866. "authors": [
  6867. {
  6868. "name": "Sebastian Bergmann",
  6869. "email": "sebastian@phpunit.de",
  6870. "role": "lead"
  6871. }
  6872. ],
  6873. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6874. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6875. "keywords": [
  6876. "coverage",
  6877. "testing",
  6878. "xunit"
  6879. ],
  6880. "support": {
  6881. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  6882. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  6883. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  6884. },
  6885. "funding": [
  6886. {
  6887. "url": "https://github.com/sebastianbergmann",
  6888. "type": "github"
  6889. }
  6890. ],
  6891. "time": "2024-08-22T04:23:01+00:00"
  6892. },
  6893. {
  6894. "name": "phpunit/php-file-iterator",
  6895. "version": "3.0.6",
  6896. "source": {
  6897. "type": "git",
  6898. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6899. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  6900. },
  6901. "dist": {
  6902. "type": "zip",
  6903. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  6904. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  6905. "shasum": ""
  6906. },
  6907. "require": {
  6908. "php": ">=7.3"
  6909. },
  6910. "require-dev": {
  6911. "phpunit/phpunit": "^9.3"
  6912. },
  6913. "type": "library",
  6914. "extra": {
  6915. "branch-alias": {
  6916. "dev-master": "3.0-dev"
  6917. }
  6918. },
  6919. "autoload": {
  6920. "classmap": [
  6921. "src/"
  6922. ]
  6923. },
  6924. "notification-url": "https://packagist.org/downloads/",
  6925. "license": [
  6926. "BSD-3-Clause"
  6927. ],
  6928. "authors": [
  6929. {
  6930. "name": "Sebastian Bergmann",
  6931. "email": "sebastian@phpunit.de",
  6932. "role": "lead"
  6933. }
  6934. ],
  6935. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6936. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6937. "keywords": [
  6938. "filesystem",
  6939. "iterator"
  6940. ],
  6941. "support": {
  6942. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  6943. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  6944. },
  6945. "funding": [
  6946. {
  6947. "url": "https://github.com/sebastianbergmann",
  6948. "type": "github"
  6949. }
  6950. ],
  6951. "time": "2021-12-02T12:48:52+00:00"
  6952. },
  6953. {
  6954. "name": "phpunit/php-invoker",
  6955. "version": "3.1.1",
  6956. "source": {
  6957. "type": "git",
  6958. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  6959. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  6960. },
  6961. "dist": {
  6962. "type": "zip",
  6963. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6964. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6965. "shasum": ""
  6966. },
  6967. "require": {
  6968. "php": ">=7.3"
  6969. },
  6970. "require-dev": {
  6971. "ext-pcntl": "*",
  6972. "phpunit/phpunit": "^9.3"
  6973. },
  6974. "suggest": {
  6975. "ext-pcntl": "*"
  6976. },
  6977. "type": "library",
  6978. "extra": {
  6979. "branch-alias": {
  6980. "dev-master": "3.1-dev"
  6981. }
  6982. },
  6983. "autoload": {
  6984. "classmap": [
  6985. "src/"
  6986. ]
  6987. },
  6988. "notification-url": "https://packagist.org/downloads/",
  6989. "license": [
  6990. "BSD-3-Clause"
  6991. ],
  6992. "authors": [
  6993. {
  6994. "name": "Sebastian Bergmann",
  6995. "email": "sebastian@phpunit.de",
  6996. "role": "lead"
  6997. }
  6998. ],
  6999. "description": "Invoke callables with a timeout",
  7000. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7001. "keywords": [
  7002. "process"
  7003. ],
  7004. "support": {
  7005. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7006. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  7007. },
  7008. "funding": [
  7009. {
  7010. "url": "https://github.com/sebastianbergmann",
  7011. "type": "github"
  7012. }
  7013. ],
  7014. "time": "2020-09-28T05:58:55+00:00"
  7015. },
  7016. {
  7017. "name": "phpunit/php-text-template",
  7018. "version": "2.0.4",
  7019. "source": {
  7020. "type": "git",
  7021. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7022. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  7023. },
  7024. "dist": {
  7025. "type": "zip",
  7026. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  7027. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  7028. "shasum": ""
  7029. },
  7030. "require": {
  7031. "php": ">=7.3"
  7032. },
  7033. "require-dev": {
  7034. "phpunit/phpunit": "^9.3"
  7035. },
  7036. "type": "library",
  7037. "extra": {
  7038. "branch-alias": {
  7039. "dev-master": "2.0-dev"
  7040. }
  7041. },
  7042. "autoload": {
  7043. "classmap": [
  7044. "src/"
  7045. ]
  7046. },
  7047. "notification-url": "https://packagist.org/downloads/",
  7048. "license": [
  7049. "BSD-3-Clause"
  7050. ],
  7051. "authors": [
  7052. {
  7053. "name": "Sebastian Bergmann",
  7054. "email": "sebastian@phpunit.de",
  7055. "role": "lead"
  7056. }
  7057. ],
  7058. "description": "Simple template engine.",
  7059. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7060. "keywords": [
  7061. "template"
  7062. ],
  7063. "support": {
  7064. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  7065. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  7066. },
  7067. "funding": [
  7068. {
  7069. "url": "https://github.com/sebastianbergmann",
  7070. "type": "github"
  7071. }
  7072. ],
  7073. "time": "2020-10-26T05:33:50+00:00"
  7074. },
  7075. {
  7076. "name": "phpunit/php-timer",
  7077. "version": "5.0.3",
  7078. "source": {
  7079. "type": "git",
  7080. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7081. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  7082. },
  7083. "dist": {
  7084. "type": "zip",
  7085. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  7086. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  7087. "shasum": ""
  7088. },
  7089. "require": {
  7090. "php": ">=7.3"
  7091. },
  7092. "require-dev": {
  7093. "phpunit/phpunit": "^9.3"
  7094. },
  7095. "type": "library",
  7096. "extra": {
  7097. "branch-alias": {
  7098. "dev-master": "5.0-dev"
  7099. }
  7100. },
  7101. "autoload": {
  7102. "classmap": [
  7103. "src/"
  7104. ]
  7105. },
  7106. "notification-url": "https://packagist.org/downloads/",
  7107. "license": [
  7108. "BSD-3-Clause"
  7109. ],
  7110. "authors": [
  7111. {
  7112. "name": "Sebastian Bergmann",
  7113. "email": "sebastian@phpunit.de",
  7114. "role": "lead"
  7115. }
  7116. ],
  7117. "description": "Utility class for timing",
  7118. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7119. "keywords": [
  7120. "timer"
  7121. ],
  7122. "support": {
  7123. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  7124. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  7125. },
  7126. "funding": [
  7127. {
  7128. "url": "https://github.com/sebastianbergmann",
  7129. "type": "github"
  7130. }
  7131. ],
  7132. "time": "2020-10-26T13:16:10+00:00"
  7133. },
  7134. {
  7135. "name": "phpunit/phpunit",
  7136. "version": "9.6.21",
  7137. "source": {
  7138. "type": "git",
  7139. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7140. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa"
  7141. },
  7142. "dist": {
  7143. "type": "zip",
  7144. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  7145. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  7146. "shasum": ""
  7147. },
  7148. "require": {
  7149. "doctrine/instantiator": "^1.5.0 || ^2",
  7150. "ext-dom": "*",
  7151. "ext-json": "*",
  7152. "ext-libxml": "*",
  7153. "ext-mbstring": "*",
  7154. "ext-xml": "*",
  7155. "ext-xmlwriter": "*",
  7156. "myclabs/deep-copy": "^1.12.0",
  7157. "phar-io/manifest": "^2.0.4",
  7158. "phar-io/version": "^3.2.1",
  7159. "php": ">=7.3",
  7160. "phpunit/php-code-coverage": "^9.2.32",
  7161. "phpunit/php-file-iterator": "^3.0.6",
  7162. "phpunit/php-invoker": "^3.1.1",
  7163. "phpunit/php-text-template": "^2.0.4",
  7164. "phpunit/php-timer": "^5.0.3",
  7165. "sebastian/cli-parser": "^1.0.2",
  7166. "sebastian/code-unit": "^1.0.8",
  7167. "sebastian/comparator": "^4.0.8",
  7168. "sebastian/diff": "^4.0.6",
  7169. "sebastian/environment": "^5.1.5",
  7170. "sebastian/exporter": "^4.0.6",
  7171. "sebastian/global-state": "^5.0.7",
  7172. "sebastian/object-enumerator": "^4.0.4",
  7173. "sebastian/resource-operations": "^3.0.4",
  7174. "sebastian/type": "^3.2.1",
  7175. "sebastian/version": "^3.0.2"
  7176. },
  7177. "suggest": {
  7178. "ext-soap": "To be able to generate mocks based on WSDL files",
  7179. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7180. },
  7181. "bin": [
  7182. "phpunit"
  7183. ],
  7184. "type": "library",
  7185. "extra": {
  7186. "branch-alias": {
  7187. "dev-master": "9.6-dev"
  7188. }
  7189. },
  7190. "autoload": {
  7191. "files": [
  7192. "src/Framework/Assert/Functions.php"
  7193. ],
  7194. "classmap": [
  7195. "src/"
  7196. ]
  7197. },
  7198. "notification-url": "https://packagist.org/downloads/",
  7199. "license": [
  7200. "BSD-3-Clause"
  7201. ],
  7202. "authors": [
  7203. {
  7204. "name": "Sebastian Bergmann",
  7205. "email": "sebastian@phpunit.de",
  7206. "role": "lead"
  7207. }
  7208. ],
  7209. "description": "The PHP Unit Testing framework.",
  7210. "homepage": "https://phpunit.de/",
  7211. "keywords": [
  7212. "phpunit",
  7213. "testing",
  7214. "xunit"
  7215. ],
  7216. "support": {
  7217. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  7218. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  7219. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.21"
  7220. },
  7221. "funding": [
  7222. {
  7223. "url": "https://phpunit.de/sponsors.html",
  7224. "type": "custom"
  7225. },
  7226. {
  7227. "url": "https://github.com/sebastianbergmann",
  7228. "type": "github"
  7229. },
  7230. {
  7231. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  7232. "type": "tidelift"
  7233. }
  7234. ],
  7235. "time": "2024-09-19T10:50:18+00:00"
  7236. },
  7237. {
  7238. "name": "sebastian/cli-parser",
  7239. "version": "1.0.2",
  7240. "source": {
  7241. "type": "git",
  7242. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  7243. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  7244. },
  7245. "dist": {
  7246. "type": "zip",
  7247. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  7248. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  7249. "shasum": ""
  7250. },
  7251. "require": {
  7252. "php": ">=7.3"
  7253. },
  7254. "require-dev": {
  7255. "phpunit/phpunit": "^9.3"
  7256. },
  7257. "type": "library",
  7258. "extra": {
  7259. "branch-alias": {
  7260. "dev-master": "1.0-dev"
  7261. }
  7262. },
  7263. "autoload": {
  7264. "classmap": [
  7265. "src/"
  7266. ]
  7267. },
  7268. "notification-url": "https://packagist.org/downloads/",
  7269. "license": [
  7270. "BSD-3-Clause"
  7271. ],
  7272. "authors": [
  7273. {
  7274. "name": "Sebastian Bergmann",
  7275. "email": "sebastian@phpunit.de",
  7276. "role": "lead"
  7277. }
  7278. ],
  7279. "description": "Library for parsing CLI options",
  7280. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  7281. "support": {
  7282. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  7283. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  7284. },
  7285. "funding": [
  7286. {
  7287. "url": "https://github.com/sebastianbergmann",
  7288. "type": "github"
  7289. }
  7290. ],
  7291. "time": "2024-03-02T06:27:43+00:00"
  7292. },
  7293. {
  7294. "name": "sebastian/code-unit",
  7295. "version": "1.0.8",
  7296. "source": {
  7297. "type": "git",
  7298. "url": "https://github.com/sebastianbergmann/code-unit.git",
  7299. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  7300. },
  7301. "dist": {
  7302. "type": "zip",
  7303. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  7304. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  7305. "shasum": ""
  7306. },
  7307. "require": {
  7308. "php": ">=7.3"
  7309. },
  7310. "require-dev": {
  7311. "phpunit/phpunit": "^9.3"
  7312. },
  7313. "type": "library",
  7314. "extra": {
  7315. "branch-alias": {
  7316. "dev-master": "1.0-dev"
  7317. }
  7318. },
  7319. "autoload": {
  7320. "classmap": [
  7321. "src/"
  7322. ]
  7323. },
  7324. "notification-url": "https://packagist.org/downloads/",
  7325. "license": [
  7326. "BSD-3-Clause"
  7327. ],
  7328. "authors": [
  7329. {
  7330. "name": "Sebastian Bergmann",
  7331. "email": "sebastian@phpunit.de",
  7332. "role": "lead"
  7333. }
  7334. ],
  7335. "description": "Collection of value objects that represent the PHP code units",
  7336. "homepage": "https://github.com/sebastianbergmann/code-unit",
  7337. "support": {
  7338. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  7339. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  7340. },
  7341. "funding": [
  7342. {
  7343. "url": "https://github.com/sebastianbergmann",
  7344. "type": "github"
  7345. }
  7346. ],
  7347. "time": "2020-10-26T13:08:54+00:00"
  7348. },
  7349. {
  7350. "name": "sebastian/code-unit-reverse-lookup",
  7351. "version": "2.0.3",
  7352. "source": {
  7353. "type": "git",
  7354. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7355. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  7356. },
  7357. "dist": {
  7358. "type": "zip",
  7359. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  7360. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  7361. "shasum": ""
  7362. },
  7363. "require": {
  7364. "php": ">=7.3"
  7365. },
  7366. "require-dev": {
  7367. "phpunit/phpunit": "^9.3"
  7368. },
  7369. "type": "library",
  7370. "extra": {
  7371. "branch-alias": {
  7372. "dev-master": "2.0-dev"
  7373. }
  7374. },
  7375. "autoload": {
  7376. "classmap": [
  7377. "src/"
  7378. ]
  7379. },
  7380. "notification-url": "https://packagist.org/downloads/",
  7381. "license": [
  7382. "BSD-3-Clause"
  7383. ],
  7384. "authors": [
  7385. {
  7386. "name": "Sebastian Bergmann",
  7387. "email": "sebastian@phpunit.de"
  7388. }
  7389. ],
  7390. "description": "Looks up which function or method a line of code belongs to",
  7391. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7392. "support": {
  7393. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  7394. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  7395. },
  7396. "funding": [
  7397. {
  7398. "url": "https://github.com/sebastianbergmann",
  7399. "type": "github"
  7400. }
  7401. ],
  7402. "time": "2020-09-28T05:30:19+00:00"
  7403. },
  7404. {
  7405. "name": "sebastian/comparator",
  7406. "version": "4.0.8",
  7407. "source": {
  7408. "type": "git",
  7409. "url": "https://github.com/sebastianbergmann/comparator.git",
  7410. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  7411. },
  7412. "dist": {
  7413. "type": "zip",
  7414. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  7415. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  7416. "shasum": ""
  7417. },
  7418. "require": {
  7419. "php": ">=7.3",
  7420. "sebastian/diff": "^4.0",
  7421. "sebastian/exporter": "^4.0"
  7422. },
  7423. "require-dev": {
  7424. "phpunit/phpunit": "^9.3"
  7425. },
  7426. "type": "library",
  7427. "extra": {
  7428. "branch-alias": {
  7429. "dev-master": "4.0-dev"
  7430. }
  7431. },
  7432. "autoload": {
  7433. "classmap": [
  7434. "src/"
  7435. ]
  7436. },
  7437. "notification-url": "https://packagist.org/downloads/",
  7438. "license": [
  7439. "BSD-3-Clause"
  7440. ],
  7441. "authors": [
  7442. {
  7443. "name": "Sebastian Bergmann",
  7444. "email": "sebastian@phpunit.de"
  7445. },
  7446. {
  7447. "name": "Jeff Welch",
  7448. "email": "whatthejeff@gmail.com"
  7449. },
  7450. {
  7451. "name": "Volker Dusch",
  7452. "email": "github@wallbash.com"
  7453. },
  7454. {
  7455. "name": "Bernhard Schussek",
  7456. "email": "bschussek@2bepublished.at"
  7457. }
  7458. ],
  7459. "description": "Provides the functionality to compare PHP values for equality",
  7460. "homepage": "https://github.com/sebastianbergmann/comparator",
  7461. "keywords": [
  7462. "comparator",
  7463. "compare",
  7464. "equality"
  7465. ],
  7466. "support": {
  7467. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  7468. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  7469. },
  7470. "funding": [
  7471. {
  7472. "url": "https://github.com/sebastianbergmann",
  7473. "type": "github"
  7474. }
  7475. ],
  7476. "time": "2022-09-14T12:41:17+00:00"
  7477. },
  7478. {
  7479. "name": "sebastian/complexity",
  7480. "version": "2.0.3",
  7481. "source": {
  7482. "type": "git",
  7483. "url": "https://github.com/sebastianbergmann/complexity.git",
  7484. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  7485. },
  7486. "dist": {
  7487. "type": "zip",
  7488. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  7489. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  7490. "shasum": ""
  7491. },
  7492. "require": {
  7493. "nikic/php-parser": "^4.18 || ^5.0",
  7494. "php": ">=7.3"
  7495. },
  7496. "require-dev": {
  7497. "phpunit/phpunit": "^9.3"
  7498. },
  7499. "type": "library",
  7500. "extra": {
  7501. "branch-alias": {
  7502. "dev-master": "2.0-dev"
  7503. }
  7504. },
  7505. "autoload": {
  7506. "classmap": [
  7507. "src/"
  7508. ]
  7509. },
  7510. "notification-url": "https://packagist.org/downloads/",
  7511. "license": [
  7512. "BSD-3-Clause"
  7513. ],
  7514. "authors": [
  7515. {
  7516. "name": "Sebastian Bergmann",
  7517. "email": "sebastian@phpunit.de",
  7518. "role": "lead"
  7519. }
  7520. ],
  7521. "description": "Library for calculating the complexity of PHP code units",
  7522. "homepage": "https://github.com/sebastianbergmann/complexity",
  7523. "support": {
  7524. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  7525. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  7526. },
  7527. "funding": [
  7528. {
  7529. "url": "https://github.com/sebastianbergmann",
  7530. "type": "github"
  7531. }
  7532. ],
  7533. "time": "2023-12-22T06:19:30+00:00"
  7534. },
  7535. {
  7536. "name": "sebastian/diff",
  7537. "version": "4.0.6",
  7538. "source": {
  7539. "type": "git",
  7540. "url": "https://github.com/sebastianbergmann/diff.git",
  7541. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  7542. },
  7543. "dist": {
  7544. "type": "zip",
  7545. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  7546. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  7547. "shasum": ""
  7548. },
  7549. "require": {
  7550. "php": ">=7.3"
  7551. },
  7552. "require-dev": {
  7553. "phpunit/phpunit": "^9.3",
  7554. "symfony/process": "^4.2 || ^5"
  7555. },
  7556. "type": "library",
  7557. "extra": {
  7558. "branch-alias": {
  7559. "dev-master": "4.0-dev"
  7560. }
  7561. },
  7562. "autoload": {
  7563. "classmap": [
  7564. "src/"
  7565. ]
  7566. },
  7567. "notification-url": "https://packagist.org/downloads/",
  7568. "license": [
  7569. "BSD-3-Clause"
  7570. ],
  7571. "authors": [
  7572. {
  7573. "name": "Sebastian Bergmann",
  7574. "email": "sebastian@phpunit.de"
  7575. },
  7576. {
  7577. "name": "Kore Nordmann",
  7578. "email": "mail@kore-nordmann.de"
  7579. }
  7580. ],
  7581. "description": "Diff implementation",
  7582. "homepage": "https://github.com/sebastianbergmann/diff",
  7583. "keywords": [
  7584. "diff",
  7585. "udiff",
  7586. "unidiff",
  7587. "unified diff"
  7588. ],
  7589. "support": {
  7590. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7591. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  7592. },
  7593. "funding": [
  7594. {
  7595. "url": "https://github.com/sebastianbergmann",
  7596. "type": "github"
  7597. }
  7598. ],
  7599. "time": "2024-03-02T06:30:58+00:00"
  7600. },
  7601. {
  7602. "name": "sebastian/environment",
  7603. "version": "5.1.5",
  7604. "source": {
  7605. "type": "git",
  7606. "url": "https://github.com/sebastianbergmann/environment.git",
  7607. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  7608. },
  7609. "dist": {
  7610. "type": "zip",
  7611. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  7612. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  7613. "shasum": ""
  7614. },
  7615. "require": {
  7616. "php": ">=7.3"
  7617. },
  7618. "require-dev": {
  7619. "phpunit/phpunit": "^9.3"
  7620. },
  7621. "suggest": {
  7622. "ext-posix": "*"
  7623. },
  7624. "type": "library",
  7625. "extra": {
  7626. "branch-alias": {
  7627. "dev-master": "5.1-dev"
  7628. }
  7629. },
  7630. "autoload": {
  7631. "classmap": [
  7632. "src/"
  7633. ]
  7634. },
  7635. "notification-url": "https://packagist.org/downloads/",
  7636. "license": [
  7637. "BSD-3-Clause"
  7638. ],
  7639. "authors": [
  7640. {
  7641. "name": "Sebastian Bergmann",
  7642. "email": "sebastian@phpunit.de"
  7643. }
  7644. ],
  7645. "description": "Provides functionality to handle HHVM/PHP environments",
  7646. "homepage": "http://www.github.com/sebastianbergmann/environment",
  7647. "keywords": [
  7648. "Xdebug",
  7649. "environment",
  7650. "hhvm"
  7651. ],
  7652. "support": {
  7653. "issues": "https://github.com/sebastianbergmann/environment/issues",
  7654. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  7655. },
  7656. "funding": [
  7657. {
  7658. "url": "https://github.com/sebastianbergmann",
  7659. "type": "github"
  7660. }
  7661. ],
  7662. "time": "2023-02-03T06:03:51+00:00"
  7663. },
  7664. {
  7665. "name": "sebastian/exporter",
  7666. "version": "4.0.6",
  7667. "source": {
  7668. "type": "git",
  7669. "url": "https://github.com/sebastianbergmann/exporter.git",
  7670. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  7671. },
  7672. "dist": {
  7673. "type": "zip",
  7674. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  7675. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  7676. "shasum": ""
  7677. },
  7678. "require": {
  7679. "php": ">=7.3",
  7680. "sebastian/recursion-context": "^4.0"
  7681. },
  7682. "require-dev": {
  7683. "ext-mbstring": "*",
  7684. "phpunit/phpunit": "^9.3"
  7685. },
  7686. "type": "library",
  7687. "extra": {
  7688. "branch-alias": {
  7689. "dev-master": "4.0-dev"
  7690. }
  7691. },
  7692. "autoload": {
  7693. "classmap": [
  7694. "src/"
  7695. ]
  7696. },
  7697. "notification-url": "https://packagist.org/downloads/",
  7698. "license": [
  7699. "BSD-3-Clause"
  7700. ],
  7701. "authors": [
  7702. {
  7703. "name": "Sebastian Bergmann",
  7704. "email": "sebastian@phpunit.de"
  7705. },
  7706. {
  7707. "name": "Jeff Welch",
  7708. "email": "whatthejeff@gmail.com"
  7709. },
  7710. {
  7711. "name": "Volker Dusch",
  7712. "email": "github@wallbash.com"
  7713. },
  7714. {
  7715. "name": "Adam Harvey",
  7716. "email": "aharvey@php.net"
  7717. },
  7718. {
  7719. "name": "Bernhard Schussek",
  7720. "email": "bschussek@gmail.com"
  7721. }
  7722. ],
  7723. "description": "Provides the functionality to export PHP variables for visualization",
  7724. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  7725. "keywords": [
  7726. "export",
  7727. "exporter"
  7728. ],
  7729. "support": {
  7730. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  7731. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  7732. },
  7733. "funding": [
  7734. {
  7735. "url": "https://github.com/sebastianbergmann",
  7736. "type": "github"
  7737. }
  7738. ],
  7739. "time": "2024-03-02T06:33:00+00:00"
  7740. },
  7741. {
  7742. "name": "sebastian/global-state",
  7743. "version": "5.0.7",
  7744. "source": {
  7745. "type": "git",
  7746. "url": "https://github.com/sebastianbergmann/global-state.git",
  7747. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  7748. },
  7749. "dist": {
  7750. "type": "zip",
  7751. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  7752. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  7753. "shasum": ""
  7754. },
  7755. "require": {
  7756. "php": ">=7.3",
  7757. "sebastian/object-reflector": "^2.0",
  7758. "sebastian/recursion-context": "^4.0"
  7759. },
  7760. "require-dev": {
  7761. "ext-dom": "*",
  7762. "phpunit/phpunit": "^9.3"
  7763. },
  7764. "suggest": {
  7765. "ext-uopz": "*"
  7766. },
  7767. "type": "library",
  7768. "extra": {
  7769. "branch-alias": {
  7770. "dev-master": "5.0-dev"
  7771. }
  7772. },
  7773. "autoload": {
  7774. "classmap": [
  7775. "src/"
  7776. ]
  7777. },
  7778. "notification-url": "https://packagist.org/downloads/",
  7779. "license": [
  7780. "BSD-3-Clause"
  7781. ],
  7782. "authors": [
  7783. {
  7784. "name": "Sebastian Bergmann",
  7785. "email": "sebastian@phpunit.de"
  7786. }
  7787. ],
  7788. "description": "Snapshotting of global state",
  7789. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7790. "keywords": [
  7791. "global state"
  7792. ],
  7793. "support": {
  7794. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  7795. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  7796. },
  7797. "funding": [
  7798. {
  7799. "url": "https://github.com/sebastianbergmann",
  7800. "type": "github"
  7801. }
  7802. ],
  7803. "time": "2024-03-02T06:35:11+00:00"
  7804. },
  7805. {
  7806. "name": "sebastian/lines-of-code",
  7807. "version": "1.0.4",
  7808. "source": {
  7809. "type": "git",
  7810. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  7811. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  7812. },
  7813. "dist": {
  7814. "type": "zip",
  7815. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  7816. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  7817. "shasum": ""
  7818. },
  7819. "require": {
  7820. "nikic/php-parser": "^4.18 || ^5.0",
  7821. "php": ">=7.3"
  7822. },
  7823. "require-dev": {
  7824. "phpunit/phpunit": "^9.3"
  7825. },
  7826. "type": "library",
  7827. "extra": {
  7828. "branch-alias": {
  7829. "dev-master": "1.0-dev"
  7830. }
  7831. },
  7832. "autoload": {
  7833. "classmap": [
  7834. "src/"
  7835. ]
  7836. },
  7837. "notification-url": "https://packagist.org/downloads/",
  7838. "license": [
  7839. "BSD-3-Clause"
  7840. ],
  7841. "authors": [
  7842. {
  7843. "name": "Sebastian Bergmann",
  7844. "email": "sebastian@phpunit.de",
  7845. "role": "lead"
  7846. }
  7847. ],
  7848. "description": "Library for counting the lines of code in PHP source code",
  7849. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  7850. "support": {
  7851. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  7852. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  7853. },
  7854. "funding": [
  7855. {
  7856. "url": "https://github.com/sebastianbergmann",
  7857. "type": "github"
  7858. }
  7859. ],
  7860. "time": "2023-12-22T06:20:34+00:00"
  7861. },
  7862. {
  7863. "name": "sebastian/object-enumerator",
  7864. "version": "4.0.4",
  7865. "source": {
  7866. "type": "git",
  7867. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7868. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  7869. },
  7870. "dist": {
  7871. "type": "zip",
  7872. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  7873. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  7874. "shasum": ""
  7875. },
  7876. "require": {
  7877. "php": ">=7.3",
  7878. "sebastian/object-reflector": "^2.0",
  7879. "sebastian/recursion-context": "^4.0"
  7880. },
  7881. "require-dev": {
  7882. "phpunit/phpunit": "^9.3"
  7883. },
  7884. "type": "library",
  7885. "extra": {
  7886. "branch-alias": {
  7887. "dev-master": "4.0-dev"
  7888. }
  7889. },
  7890. "autoload": {
  7891. "classmap": [
  7892. "src/"
  7893. ]
  7894. },
  7895. "notification-url": "https://packagist.org/downloads/",
  7896. "license": [
  7897. "BSD-3-Clause"
  7898. ],
  7899. "authors": [
  7900. {
  7901. "name": "Sebastian Bergmann",
  7902. "email": "sebastian@phpunit.de"
  7903. }
  7904. ],
  7905. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7906. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7907. "support": {
  7908. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  7909. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  7910. },
  7911. "funding": [
  7912. {
  7913. "url": "https://github.com/sebastianbergmann",
  7914. "type": "github"
  7915. }
  7916. ],
  7917. "time": "2020-10-26T13:12:34+00:00"
  7918. },
  7919. {
  7920. "name": "sebastian/object-reflector",
  7921. "version": "2.0.4",
  7922. "source": {
  7923. "type": "git",
  7924. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7925. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  7926. },
  7927. "dist": {
  7928. "type": "zip",
  7929. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7930. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7931. "shasum": ""
  7932. },
  7933. "require": {
  7934. "php": ">=7.3"
  7935. },
  7936. "require-dev": {
  7937. "phpunit/phpunit": "^9.3"
  7938. },
  7939. "type": "library",
  7940. "extra": {
  7941. "branch-alias": {
  7942. "dev-master": "2.0-dev"
  7943. }
  7944. },
  7945. "autoload": {
  7946. "classmap": [
  7947. "src/"
  7948. ]
  7949. },
  7950. "notification-url": "https://packagist.org/downloads/",
  7951. "license": [
  7952. "BSD-3-Clause"
  7953. ],
  7954. "authors": [
  7955. {
  7956. "name": "Sebastian Bergmann",
  7957. "email": "sebastian@phpunit.de"
  7958. }
  7959. ],
  7960. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7961. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7962. "support": {
  7963. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  7964. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  7965. },
  7966. "funding": [
  7967. {
  7968. "url": "https://github.com/sebastianbergmann",
  7969. "type": "github"
  7970. }
  7971. ],
  7972. "time": "2020-10-26T13:14:26+00:00"
  7973. },
  7974. {
  7975. "name": "sebastian/recursion-context",
  7976. "version": "4.0.5",
  7977. "source": {
  7978. "type": "git",
  7979. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7980. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  7981. },
  7982. "dist": {
  7983. "type": "zip",
  7984. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  7985. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  7986. "shasum": ""
  7987. },
  7988. "require": {
  7989. "php": ">=7.3"
  7990. },
  7991. "require-dev": {
  7992. "phpunit/phpunit": "^9.3"
  7993. },
  7994. "type": "library",
  7995. "extra": {
  7996. "branch-alias": {
  7997. "dev-master": "4.0-dev"
  7998. }
  7999. },
  8000. "autoload": {
  8001. "classmap": [
  8002. "src/"
  8003. ]
  8004. },
  8005. "notification-url": "https://packagist.org/downloads/",
  8006. "license": [
  8007. "BSD-3-Clause"
  8008. ],
  8009. "authors": [
  8010. {
  8011. "name": "Sebastian Bergmann",
  8012. "email": "sebastian@phpunit.de"
  8013. },
  8014. {
  8015. "name": "Jeff Welch",
  8016. "email": "whatthejeff@gmail.com"
  8017. },
  8018. {
  8019. "name": "Adam Harvey",
  8020. "email": "aharvey@php.net"
  8021. }
  8022. ],
  8023. "description": "Provides functionality to recursively process PHP variables",
  8024. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  8025. "support": {
  8026. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  8027. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  8028. },
  8029. "funding": [
  8030. {
  8031. "url": "https://github.com/sebastianbergmann",
  8032. "type": "github"
  8033. }
  8034. ],
  8035. "time": "2023-02-03T06:07:39+00:00"
  8036. },
  8037. {
  8038. "name": "sebastian/resource-operations",
  8039. "version": "3.0.4",
  8040. "source": {
  8041. "type": "git",
  8042. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8043. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  8044. },
  8045. "dist": {
  8046. "type": "zip",
  8047. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  8048. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  8049. "shasum": ""
  8050. },
  8051. "require": {
  8052. "php": ">=7.3"
  8053. },
  8054. "require-dev": {
  8055. "phpunit/phpunit": "^9.0"
  8056. },
  8057. "type": "library",
  8058. "extra": {
  8059. "branch-alias": {
  8060. "dev-main": "3.0-dev"
  8061. }
  8062. },
  8063. "autoload": {
  8064. "classmap": [
  8065. "src/"
  8066. ]
  8067. },
  8068. "notification-url": "https://packagist.org/downloads/",
  8069. "license": [
  8070. "BSD-3-Clause"
  8071. ],
  8072. "authors": [
  8073. {
  8074. "name": "Sebastian Bergmann",
  8075. "email": "sebastian@phpunit.de"
  8076. }
  8077. ],
  8078. "description": "Provides a list of PHP built-in functions that operate on resources",
  8079. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  8080. "support": {
  8081. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  8082. },
  8083. "funding": [
  8084. {
  8085. "url": "https://github.com/sebastianbergmann",
  8086. "type": "github"
  8087. }
  8088. ],
  8089. "time": "2024-03-14T16:00:52+00:00"
  8090. },
  8091. {
  8092. "name": "sebastian/type",
  8093. "version": "3.2.1",
  8094. "source": {
  8095. "type": "git",
  8096. "url": "https://github.com/sebastianbergmann/type.git",
  8097. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  8098. },
  8099. "dist": {
  8100. "type": "zip",
  8101. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  8102. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  8103. "shasum": ""
  8104. },
  8105. "require": {
  8106. "php": ">=7.3"
  8107. },
  8108. "require-dev": {
  8109. "phpunit/phpunit": "^9.5"
  8110. },
  8111. "type": "library",
  8112. "extra": {
  8113. "branch-alias": {
  8114. "dev-master": "3.2-dev"
  8115. }
  8116. },
  8117. "autoload": {
  8118. "classmap": [
  8119. "src/"
  8120. ]
  8121. },
  8122. "notification-url": "https://packagist.org/downloads/",
  8123. "license": [
  8124. "BSD-3-Clause"
  8125. ],
  8126. "authors": [
  8127. {
  8128. "name": "Sebastian Bergmann",
  8129. "email": "sebastian@phpunit.de",
  8130. "role": "lead"
  8131. }
  8132. ],
  8133. "description": "Collection of value objects that represent the types of the PHP type system",
  8134. "homepage": "https://github.com/sebastianbergmann/type",
  8135. "support": {
  8136. "issues": "https://github.com/sebastianbergmann/type/issues",
  8137. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  8138. },
  8139. "funding": [
  8140. {
  8141. "url": "https://github.com/sebastianbergmann",
  8142. "type": "github"
  8143. }
  8144. ],
  8145. "time": "2023-02-03T06:13:03+00:00"
  8146. },
  8147. {
  8148. "name": "sebastian/version",
  8149. "version": "3.0.2",
  8150. "source": {
  8151. "type": "git",
  8152. "url": "https://github.com/sebastianbergmann/version.git",
  8153. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  8154. },
  8155. "dist": {
  8156. "type": "zip",
  8157. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  8158. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  8159. "shasum": ""
  8160. },
  8161. "require": {
  8162. "php": ">=7.3"
  8163. },
  8164. "type": "library",
  8165. "extra": {
  8166. "branch-alias": {
  8167. "dev-master": "3.0-dev"
  8168. }
  8169. },
  8170. "autoload": {
  8171. "classmap": [
  8172. "src/"
  8173. ]
  8174. },
  8175. "notification-url": "https://packagist.org/downloads/",
  8176. "license": [
  8177. "BSD-3-Clause"
  8178. ],
  8179. "authors": [
  8180. {
  8181. "name": "Sebastian Bergmann",
  8182. "email": "sebastian@phpunit.de",
  8183. "role": "lead"
  8184. }
  8185. ],
  8186. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8187. "homepage": "https://github.com/sebastianbergmann/version",
  8188. "support": {
  8189. "issues": "https://github.com/sebastianbergmann/version/issues",
  8190. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  8191. },
  8192. "funding": [
  8193. {
  8194. "url": "https://github.com/sebastianbergmann",
  8195. "type": "github"
  8196. }
  8197. ],
  8198. "time": "2020-09-28T06:39:44+00:00"
  8199. },
  8200. {
  8201. "name": "spatie/backtrace",
  8202. "version": "1.6.2",
  8203. "source": {
  8204. "type": "git",
  8205. "url": "https://github.com/spatie/backtrace.git",
  8206. "reference": "1a9a145b044677ae3424693f7b06479fc8c137a9"
  8207. },
  8208. "dist": {
  8209. "type": "zip",
  8210. "url": "https://api.github.com/repos/spatie/backtrace/zipball/1a9a145b044677ae3424693f7b06479fc8c137a9",
  8211. "reference": "1a9a145b044677ae3424693f7b06479fc8c137a9",
  8212. "shasum": ""
  8213. },
  8214. "require": {
  8215. "php": "^7.3|^8.0"
  8216. },
  8217. "require-dev": {
  8218. "ext-json": "*",
  8219. "laravel/serializable-closure": "^1.3",
  8220. "phpunit/phpunit": "^9.3",
  8221. "spatie/phpunit-snapshot-assertions": "^4.2",
  8222. "symfony/var-dumper": "^5.1"
  8223. },
  8224. "type": "library",
  8225. "autoload": {
  8226. "psr-4": {
  8227. "Spatie\\Backtrace\\": "src"
  8228. }
  8229. },
  8230. "notification-url": "https://packagist.org/downloads/",
  8231. "license": [
  8232. "MIT"
  8233. ],
  8234. "authors": [
  8235. {
  8236. "name": "Freek Van de Herten",
  8237. "email": "freek@spatie.be",
  8238. "homepage": "https://spatie.be",
  8239. "role": "Developer"
  8240. }
  8241. ],
  8242. "description": "A better backtrace",
  8243. "homepage": "https://github.com/spatie/backtrace",
  8244. "keywords": [
  8245. "Backtrace",
  8246. "spatie"
  8247. ],
  8248. "support": {
  8249. "source": "https://github.com/spatie/backtrace/tree/1.6.2"
  8250. },
  8251. "funding": [
  8252. {
  8253. "url": "https://github.com/sponsors/spatie",
  8254. "type": "github"
  8255. },
  8256. {
  8257. "url": "https://spatie.be/open-source/support-us",
  8258. "type": "other"
  8259. }
  8260. ],
  8261. "time": "2024-07-22T08:21:24+00:00"
  8262. },
  8263. {
  8264. "name": "spatie/flare-client-php",
  8265. "version": "1.8.0",
  8266. "source": {
  8267. "type": "git",
  8268. "url": "https://github.com/spatie/flare-client-php.git",
  8269. "reference": "180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122"
  8270. },
  8271. "dist": {
  8272. "type": "zip",
  8273. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122",
  8274. "reference": "180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122",
  8275. "shasum": ""
  8276. },
  8277. "require": {
  8278. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  8279. "php": "^8.0",
  8280. "spatie/backtrace": "^1.6.1",
  8281. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  8282. "symfony/mime": "^5.2|^6.0|^7.0",
  8283. "symfony/process": "^5.2|^6.0|^7.0",
  8284. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  8285. },
  8286. "require-dev": {
  8287. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  8288. "pestphp/pest": "^1.20|^2.0",
  8289. "phpstan/extension-installer": "^1.1",
  8290. "phpstan/phpstan-deprecation-rules": "^1.0",
  8291. "phpstan/phpstan-phpunit": "^1.0",
  8292. "spatie/pest-plugin-snapshots": "^1.0|^2.0"
  8293. },
  8294. "type": "library",
  8295. "extra": {
  8296. "branch-alias": {
  8297. "dev-main": "1.3.x-dev"
  8298. }
  8299. },
  8300. "autoload": {
  8301. "files": [
  8302. "src/helpers.php"
  8303. ],
  8304. "psr-4": {
  8305. "Spatie\\FlareClient\\": "src"
  8306. }
  8307. },
  8308. "notification-url": "https://packagist.org/downloads/",
  8309. "license": [
  8310. "MIT"
  8311. ],
  8312. "description": "Send PHP errors to Flare",
  8313. "homepage": "https://github.com/spatie/flare-client-php",
  8314. "keywords": [
  8315. "exception",
  8316. "flare",
  8317. "reporting",
  8318. "spatie"
  8319. ],
  8320. "support": {
  8321. "issues": "https://github.com/spatie/flare-client-php/issues",
  8322. "source": "https://github.com/spatie/flare-client-php/tree/1.8.0"
  8323. },
  8324. "funding": [
  8325. {
  8326. "url": "https://github.com/spatie",
  8327. "type": "github"
  8328. }
  8329. ],
  8330. "time": "2024-08-01T08:27:26+00:00"
  8331. },
  8332. {
  8333. "name": "spatie/ignition",
  8334. "version": "1.14.2",
  8335. "source": {
  8336. "type": "git",
  8337. "url": "https://github.com/spatie/ignition.git",
  8338. "reference": "5e11c11f675bb5251f061491a493e04a1a571532"
  8339. },
  8340. "dist": {
  8341. "type": "zip",
  8342. "url": "https://api.github.com/repos/spatie/ignition/zipball/5e11c11f675bb5251f061491a493e04a1a571532",
  8343. "reference": "5e11c11f675bb5251f061491a493e04a1a571532",
  8344. "shasum": ""
  8345. },
  8346. "require": {
  8347. "ext-json": "*",
  8348. "ext-mbstring": "*",
  8349. "php": "^8.0",
  8350. "spatie/backtrace": "^1.5.3",
  8351. "spatie/flare-client-php": "^1.4.0",
  8352. "symfony/console": "^5.4|^6.0|^7.0",
  8353. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  8354. },
  8355. "require-dev": {
  8356. "illuminate/cache": "^9.52|^10.0|^11.0",
  8357. "mockery/mockery": "^1.4",
  8358. "pestphp/pest": "^1.20|^2.0",
  8359. "phpstan/extension-installer": "^1.1",
  8360. "phpstan/phpstan-deprecation-rules": "^1.0",
  8361. "phpstan/phpstan-phpunit": "^1.0",
  8362. "psr/simple-cache-implementation": "*",
  8363. "symfony/cache": "^5.4|^6.0|^7.0",
  8364. "symfony/process": "^5.4|^6.0|^7.0",
  8365. "vlucas/phpdotenv": "^5.5"
  8366. },
  8367. "suggest": {
  8368. "openai-php/client": "Require get solutions from OpenAI",
  8369. "simple-cache-implementation": "To cache solutions from OpenAI"
  8370. },
  8371. "type": "library",
  8372. "extra": {
  8373. "branch-alias": {
  8374. "dev-main": "1.5.x-dev"
  8375. }
  8376. },
  8377. "autoload": {
  8378. "psr-4": {
  8379. "Spatie\\Ignition\\": "src"
  8380. }
  8381. },
  8382. "notification-url": "https://packagist.org/downloads/",
  8383. "license": [
  8384. "MIT"
  8385. ],
  8386. "authors": [
  8387. {
  8388. "name": "Spatie",
  8389. "email": "info@spatie.be",
  8390. "role": "Developer"
  8391. }
  8392. ],
  8393. "description": "A beautiful error page for PHP applications.",
  8394. "homepage": "https://flareapp.io/ignition",
  8395. "keywords": [
  8396. "error",
  8397. "flare",
  8398. "laravel",
  8399. "page"
  8400. ],
  8401. "support": {
  8402. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8403. "forum": "https://twitter.com/flareappio",
  8404. "issues": "https://github.com/spatie/ignition/issues",
  8405. "source": "https://github.com/spatie/ignition"
  8406. },
  8407. "funding": [
  8408. {
  8409. "url": "https://github.com/spatie",
  8410. "type": "github"
  8411. }
  8412. ],
  8413. "time": "2024-05-29T08:10:20+00:00"
  8414. },
  8415. {
  8416. "name": "spatie/laravel-ignition",
  8417. "version": "1.7.0",
  8418. "source": {
  8419. "type": "git",
  8420. "url": "https://github.com/spatie/laravel-ignition.git",
  8421. "reference": "b6d5c33cf0b8260d6540572af2d9bcf9182fe5fb"
  8422. },
  8423. "dist": {
  8424. "type": "zip",
  8425. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/b6d5c33cf0b8260d6540572af2d9bcf9182fe5fb",
  8426. "reference": "b6d5c33cf0b8260d6540572af2d9bcf9182fe5fb",
  8427. "shasum": ""
  8428. },
  8429. "require": {
  8430. "ext-curl": "*",
  8431. "ext-json": "*",
  8432. "ext-mbstring": "*",
  8433. "illuminate/support": "^8.77|^9.27",
  8434. "monolog/monolog": "^2.3",
  8435. "php": "^8.0",
  8436. "spatie/flare-client-php": "^1.0.1",
  8437. "spatie/ignition": "<= 1.14.2",
  8438. "symfony/console": "^5.0|^6.0",
  8439. "symfony/var-dumper": "^5.0|^6.0"
  8440. },
  8441. "require-dev": {
  8442. "filp/whoops": "^2.14",
  8443. "livewire/livewire": "^2.8|dev-develop",
  8444. "mockery/mockery": "^1.4",
  8445. "nunomaduro/larastan": "^1.0",
  8446. "orchestra/testbench": "^6.23|^7.0",
  8447. "pestphp/pest": "^1.20",
  8448. "phpstan/extension-installer": "^1.1",
  8449. "phpstan/phpstan-deprecation-rules": "^1.0",
  8450. "phpstan/phpstan-phpunit": "^1.0",
  8451. "spatie/laravel-ray": "^1.27"
  8452. },
  8453. "type": "library",
  8454. "extra": {
  8455. "laravel": {
  8456. "providers": [
  8457. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  8458. ],
  8459. "aliases": {
  8460. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  8461. }
  8462. }
  8463. },
  8464. "autoload": {
  8465. "files": [
  8466. "src/helpers.php"
  8467. ],
  8468. "psr-4": {
  8469. "Spatie\\LaravelIgnition\\": "src"
  8470. }
  8471. },
  8472. "notification-url": "https://packagist.org/downloads/",
  8473. "license": [
  8474. "MIT"
  8475. ],
  8476. "authors": [
  8477. {
  8478. "name": "Spatie",
  8479. "email": "info@spatie.be",
  8480. "role": "Developer"
  8481. }
  8482. ],
  8483. "description": "A beautiful error page for Laravel applications.",
  8484. "homepage": "https://flareapp.io/ignition",
  8485. "keywords": [
  8486. "error",
  8487. "flare",
  8488. "laravel",
  8489. "page"
  8490. ],
  8491. "support": {
  8492. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8493. "forum": "https://twitter.com/flareappio",
  8494. "issues": "https://github.com/spatie/laravel-ignition/issues",
  8495. "source": "https://github.com/spatie/laravel-ignition"
  8496. },
  8497. "funding": [
  8498. {
  8499. "url": "https://github.com/spatie",
  8500. "type": "github"
  8501. }
  8502. ],
  8503. "time": "2024-06-13T07:21:06+00:00"
  8504. },
  8505. {
  8506. "name": "symfony/yaml",
  8507. "version": "v7.1.5",
  8508. "source": {
  8509. "type": "git",
  8510. "url": "https://github.com/symfony/yaml.git",
  8511. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4"
  8512. },
  8513. "dist": {
  8514. "type": "zip",
  8515. "url": "https://api.github.com/repos/symfony/yaml/zipball/4e561c316e135e053bd758bf3b3eb291d9919de4",
  8516. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4",
  8517. "shasum": ""
  8518. },
  8519. "require": {
  8520. "php": ">=8.2",
  8521. "symfony/polyfill-ctype": "^1.8"
  8522. },
  8523. "conflict": {
  8524. "symfony/console": "<6.4"
  8525. },
  8526. "require-dev": {
  8527. "symfony/console": "^6.4|^7.0"
  8528. },
  8529. "bin": [
  8530. "Resources/bin/yaml-lint"
  8531. ],
  8532. "type": "library",
  8533. "autoload": {
  8534. "psr-4": {
  8535. "Symfony\\Component\\Yaml\\": ""
  8536. },
  8537. "exclude-from-classmap": [
  8538. "/Tests/"
  8539. ]
  8540. },
  8541. "notification-url": "https://packagist.org/downloads/",
  8542. "license": [
  8543. "MIT"
  8544. ],
  8545. "authors": [
  8546. {
  8547. "name": "Fabien Potencier",
  8548. "email": "fabien@symfony.com"
  8549. },
  8550. {
  8551. "name": "Symfony Community",
  8552. "homepage": "https://symfony.com/contributors"
  8553. }
  8554. ],
  8555. "description": "Loads and dumps YAML files",
  8556. "homepage": "https://symfony.com",
  8557. "support": {
  8558. "source": "https://github.com/symfony/yaml/tree/v7.1.5"
  8559. },
  8560. "funding": [
  8561. {
  8562. "url": "https://symfony.com/sponsor",
  8563. "type": "custom"
  8564. },
  8565. {
  8566. "url": "https://github.com/fabpot",
  8567. "type": "github"
  8568. },
  8569. {
  8570. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8571. "type": "tidelift"
  8572. }
  8573. ],
  8574. "time": "2024-09-17T12:49:58+00:00"
  8575. },
  8576. {
  8577. "name": "theseer/tokenizer",
  8578. "version": "1.2.3",
  8579. "source": {
  8580. "type": "git",
  8581. "url": "https://github.com/theseer/tokenizer.git",
  8582. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  8583. },
  8584. "dist": {
  8585. "type": "zip",
  8586. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  8587. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  8588. "shasum": ""
  8589. },
  8590. "require": {
  8591. "ext-dom": "*",
  8592. "ext-tokenizer": "*",
  8593. "ext-xmlwriter": "*",
  8594. "php": "^7.2 || ^8.0"
  8595. },
  8596. "type": "library",
  8597. "autoload": {
  8598. "classmap": [
  8599. "src/"
  8600. ]
  8601. },
  8602. "notification-url": "https://packagist.org/downloads/",
  8603. "license": [
  8604. "BSD-3-Clause"
  8605. ],
  8606. "authors": [
  8607. {
  8608. "name": "Arne Blankerts",
  8609. "email": "arne@blankerts.de",
  8610. "role": "Developer"
  8611. }
  8612. ],
  8613. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8614. "support": {
  8615. "issues": "https://github.com/theseer/tokenizer/issues",
  8616. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  8617. },
  8618. "funding": [
  8619. {
  8620. "url": "https://github.com/theseer",
  8621. "type": "github"
  8622. }
  8623. ],
  8624. "time": "2024-03-03T12:36:25+00:00"
  8625. }
  8626. ],
  8627. "aliases": [],
  8628. "minimum-stability": "stable",
  8629. "stability-flags": [],
  8630. "prefer-stable": true,
  8631. "prefer-lowest": false,
  8632. "platform": {
  8633. "php": "^8.0.2"
  8634. },
  8635. "platform-dev": [],
  8636. "plugin-api-version": "2.6.0"
  8637. }