選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

composer.lock 415KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532
  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": "b03717070ac01878f9020273a4e0367b",
  8. "packages": [
  9. {
  10. "name": "akaunting/laravel-money",
  11. "version": "5.1.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/akaunting/laravel-money.git",
  15. "reference": "3e3a4326b252c1a9ecaf0e43ff75e7262d6f28d5"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/3e3a4326b252c1a9ecaf0e43ff75e7262d6f28d5",
  20. "reference": "3e3a4326b252c1a9ecaf0e43ff75e7262d6f28d5",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "illuminate/contracts": "^9.0|^10.0",
  25. "illuminate/support": "^9.0|^10.0",
  26. "illuminate/validation": "^9.0|^10.0",
  27. "illuminate/view": "^9.0|^10.0",
  28. "php": "^8.0",
  29. "vlucas/phpdotenv": "^5.4.1"
  30. },
  31. "require-dev": {
  32. "orchestra/testbench": "^7.4|^8.0",
  33. "phpunit/phpunit": "^9.5|^10.0",
  34. "vimeo/psalm": "^4.23"
  35. },
  36. "type": "library",
  37. "extra": {
  38. "laravel": {
  39. "providers": [
  40. "Akaunting\\Money\\Provider"
  41. ]
  42. }
  43. },
  44. "autoload": {
  45. "files": [
  46. "src/helpers.php"
  47. ],
  48. "psr-4": {
  49. "Akaunting\\Money\\": "src"
  50. }
  51. },
  52. "notification-url": "https://packagist.org/downloads/",
  53. "license": [
  54. "MIT"
  55. ],
  56. "authors": [
  57. {
  58. "name": "Denis Duliçi",
  59. "email": "info@akaunting.com",
  60. "homepage": "https://akaunting.com",
  61. "role": "Developer"
  62. }
  63. ],
  64. "description": "Currency formatting and conversion package for Laravel",
  65. "keywords": [
  66. "convert",
  67. "currency",
  68. "format",
  69. "laravel",
  70. "money"
  71. ],
  72. "support": {
  73. "issues": "https://github.com/akaunting/laravel-money/issues",
  74. "source": "https://github.com/akaunting/laravel-money/tree/5.1.3"
  75. },
  76. "time": "2023-12-10T14:47:48+00:00"
  77. },
  78. {
  79. "name": "andrewdwallo/filament-companies",
  80. "version": "v3.2.0",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "9e7f39faa0e854bec572d8a8890b541cb6a40388"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/9e7f39faa0e854bec572d8a8890b541cb6a40388",
  89. "reference": "9e7f39faa0e854bec572d8a8890b541cb6a40388",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "ext-json": "*",
  94. "filament/filament": "^3.0",
  95. "illuminate/console": "^10.0",
  96. "illuminate/contracts": "^10.0",
  97. "illuminate/support": "^10.0",
  98. "laravel/socialite": "^5.9",
  99. "matomo/device-detector": "^6.1",
  100. "php": "^8.1"
  101. },
  102. "require-dev": {
  103. "laravel/sanctum": "^3.0",
  104. "livewire/livewire": "^3.0@beta",
  105. "mockery/mockery": "^1.0",
  106. "orchestra/testbench": "^8.0",
  107. "phpunit/phpunit": "^9.3"
  108. },
  109. "type": "library",
  110. "extra": {
  111. "laravel": {
  112. "providers": [
  113. "Wallo\\FilamentCompanies\\FilamentCompaniesServiceProvider"
  114. ]
  115. }
  116. },
  117. "autoload": {
  118. "psr-4": {
  119. "Wallo\\FilamentCompanies\\": "src/"
  120. }
  121. },
  122. "notification-url": "https://packagist.org/downloads/",
  123. "license": [
  124. "MIT"
  125. ],
  126. "authors": [
  127. {
  128. "name": "Andrew Wallo",
  129. "email": "andrewdwallo@gmail.com",
  130. "role": "Developer"
  131. }
  132. ],
  133. "description": "A Laravel Authentication System based on Companies built using Filament",
  134. "homepage": "https://github.com/andrewdwallo/filament-companies",
  135. "keywords": [
  136. "ERP",
  137. "andrewdwallo",
  138. "auth",
  139. "companies",
  140. "filament",
  141. "laravel",
  142. "tailwind",
  143. "wallo"
  144. ],
  145. "support": {
  146. "issues": "https://github.com/andrewdwallo/filament-companies/issues",
  147. "source": "https://github.com/andrewdwallo/filament-companies/tree/v3.2.0"
  148. },
  149. "time": "2024-02-08T22:46:27+00:00"
  150. },
  151. {
  152. "name": "andrewdwallo/filament-selectify",
  153. "version": "v2.0.6",
  154. "source": {
  155. "type": "git",
  156. "url": "https://github.com/andrewdwallo/filament-selectify.git",
  157. "reference": "fcd32d3b1f516e53d610c69a529f9e8730f99afb"
  158. },
  159. "dist": {
  160. "type": "zip",
  161. "url": "https://api.github.com/repos/andrewdwallo/filament-selectify/zipball/fcd32d3b1f516e53d610c69a529f9e8730f99afb",
  162. "reference": "fcd32d3b1f516e53d610c69a529f9e8730f99afb",
  163. "shasum": ""
  164. },
  165. "require": {
  166. "filament/forms": "^3.0",
  167. "php": "^8.1",
  168. "spatie/laravel-package-tools": "^1.15.0"
  169. },
  170. "require-dev": {
  171. "laravel/pint": "^1.0",
  172. "nunomaduro/collision": "^7.9",
  173. "orchestra/testbench": "^8.0",
  174. "pestphp/pest": "^2.0",
  175. "pestphp/pest-plugin-arch": "^2.0",
  176. "pestphp/pest-plugin-laravel": "^2.0"
  177. },
  178. "type": "library",
  179. "extra": {
  180. "laravel": {
  181. "providers": [
  182. "Wallo\\FilamentSelectify\\FilamentSelectifyServiceProvider"
  183. ]
  184. }
  185. },
  186. "autoload": {
  187. "psr-4": {
  188. "Wallo\\FilamentSelectify\\": "src/"
  189. }
  190. },
  191. "notification-url": "https://packagist.org/downloads/",
  192. "license": [
  193. "MIT"
  194. ],
  195. "authors": [
  196. {
  197. "name": "Andrew Wallo",
  198. "email": "andrewdwallo@gmail.com",
  199. "role": "Developer"
  200. }
  201. ],
  202. "description": "This is my package filament-selectify",
  203. "homepage": "https://github.com/andrewdwallo/filament-selectify",
  204. "keywords": [
  205. "andrewdwallo",
  206. "filament-selectify",
  207. "laravel"
  208. ],
  209. "support": {
  210. "issues": "https://github.com/andrewdwallo/filament-selectify/issues",
  211. "source": "https://github.com/andrewdwallo/filament-selectify/tree/v2.0.6"
  212. },
  213. "time": "2023-10-20T05:27:17+00:00"
  214. },
  215. {
  216. "name": "andrewdwallo/transmatic",
  217. "version": "v1.0.6",
  218. "source": {
  219. "type": "git",
  220. "url": "https://github.com/andrewdwallo/transmatic.git",
  221. "reference": "289a7f713201debfafd23790c31bb4b0f6988047"
  222. },
  223. "dist": {
  224. "type": "zip",
  225. "url": "https://api.github.com/repos/andrewdwallo/transmatic/zipball/289a7f713201debfafd23790c31bb4b0f6988047",
  226. "reference": "289a7f713201debfafd23790c31bb4b0f6988047",
  227. "shasum": ""
  228. },
  229. "require": {
  230. "aws/aws-sdk-php-laravel": "^3.8",
  231. "ext-intl": "*",
  232. "ext-json": "*",
  233. "illuminate/contracts": "^10.0",
  234. "php": "^8.1",
  235. "spatie/laravel-package-tools": "^1.14.0"
  236. },
  237. "require-dev": {
  238. "laravel/pint": "^1.0",
  239. "nunomaduro/collision": "^7.8",
  240. "nunomaduro/larastan": "^2.0.1",
  241. "orchestra/testbench": "^8.8",
  242. "pestphp/pest": "^2.20",
  243. "pestphp/pest-plugin-arch": "^2.0",
  244. "pestphp/pest-plugin-laravel": "^2.0",
  245. "phpstan/extension-installer": "^1.1",
  246. "phpstan/phpstan-deprecation-rules": "^1.0",
  247. "phpstan/phpstan-phpunit": "^1.0",
  248. "spatie/laravel-ray": "^1.26"
  249. },
  250. "type": "library",
  251. "extra": {
  252. "laravel": {
  253. "providers": [
  254. "Wallo\\Transmatic\\TransmaticServiceProvider"
  255. ],
  256. "aliases": {
  257. "Transmatic": "Wallo\\Transmatic\\Facades\\Transmatic"
  258. }
  259. }
  260. },
  261. "autoload": {
  262. "files": [
  263. "src/helpers.php"
  264. ],
  265. "psr-4": {
  266. "Wallo\\Transmatic\\": "src/",
  267. "Wallo\\Transmatic\\Database\\Factories\\": "database/factories/"
  268. }
  269. },
  270. "notification-url": "https://packagist.org/downloads/",
  271. "license": [
  272. "MIT"
  273. ],
  274. "authors": [
  275. {
  276. "name": "Andrew Wallo",
  277. "email": "andrewdwallo@gmail.com",
  278. "role": "Developer"
  279. }
  280. ],
  281. "description": "Automate and streamline real-time text translations in your Laravel applications",
  282. "homepage": "https://github.com/andrewdwallo/transmatic",
  283. "keywords": [
  284. "andrewdwallo",
  285. "laravel",
  286. "transmatic"
  287. ],
  288. "support": {
  289. "issues": "https://github.com/andrewdwallo/transmatic/issues",
  290. "source": "https://github.com/andrewdwallo/transmatic/tree/v1.0.6"
  291. },
  292. "time": "2024-01-01T22:31:23+00:00"
  293. },
  294. {
  295. "name": "anourvalar/eloquent-serialize",
  296. "version": "1.2.17",
  297. "source": {
  298. "type": "git",
  299. "url": "https://github.com/AnourValar/eloquent-serialize.git",
  300. "reference": "1fcfdd5f41a0d2e7c8cf1d37e7227357bb827aef"
  301. },
  302. "dist": {
  303. "type": "zip",
  304. "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/1fcfdd5f41a0d2e7c8cf1d37e7227357bb827aef",
  305. "reference": "1fcfdd5f41a0d2e7c8cf1d37e7227357bb827aef",
  306. "shasum": ""
  307. },
  308. "require": {
  309. "laravel/framework": "^6.0|^7.0|^8.0|^9.0|^10.0",
  310. "php": "^7.1|^8.0"
  311. },
  312. "require-dev": {
  313. "friendsofphp/php-cs-fixer": "^3.26",
  314. "laravel/legacy-factories": "^1.1",
  315. "orchestra/testbench": "~3.6.0|~3.7.0|~3.8.0|^4.0|^5.0|^6.0|^7.0|^8.0",
  316. "phpstan/phpstan": "^1.10",
  317. "phpunit/phpunit": "^9.5",
  318. "psalm/plugin-laravel": "^2.8",
  319. "squizlabs/php_codesniffer": "^3.7"
  320. },
  321. "type": "library",
  322. "extra": {
  323. "laravel": {
  324. "aliases": {
  325. "EloquentSerialize": "AnourValar\\EloquentSerialize\\Facades\\EloquentSerializeFacade"
  326. }
  327. }
  328. },
  329. "autoload": {
  330. "psr-4": {
  331. "AnourValar\\EloquentSerialize\\": "src/"
  332. }
  333. },
  334. "notification-url": "https://packagist.org/downloads/",
  335. "license": [
  336. "MIT"
  337. ],
  338. "description": "Laravel Query Builder (Eloquent) serialization",
  339. "homepage": "https://github.com/AnourValar/eloquent-serialize",
  340. "keywords": [
  341. "anourvalar",
  342. "builder",
  343. "copy",
  344. "eloquent",
  345. "job",
  346. "laravel",
  347. "query",
  348. "querybuilder",
  349. "queue",
  350. "serializable",
  351. "serialization",
  352. "serialize"
  353. ],
  354. "support": {
  355. "issues": "https://github.com/AnourValar/eloquent-serialize/issues",
  356. "source": "https://github.com/AnourValar/eloquent-serialize/tree/1.2.17"
  357. },
  358. "time": "2023-12-06T15:54:01+00:00"
  359. },
  360. {
  361. "name": "aws/aws-crt-php",
  362. "version": "v1.2.4",
  363. "source": {
  364. "type": "git",
  365. "url": "https://github.com/awslabs/aws-crt-php.git",
  366. "reference": "eb0c6e4e142224a10b08f49ebf87f32611d162b2"
  367. },
  368. "dist": {
  369. "type": "zip",
  370. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/eb0c6e4e142224a10b08f49ebf87f32611d162b2",
  371. "reference": "eb0c6e4e142224a10b08f49ebf87f32611d162b2",
  372. "shasum": ""
  373. },
  374. "require": {
  375. "php": ">=5.5"
  376. },
  377. "require-dev": {
  378. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  379. "yoast/phpunit-polyfills": "^1.0"
  380. },
  381. "suggest": {
  382. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  383. },
  384. "type": "library",
  385. "autoload": {
  386. "classmap": [
  387. "src/"
  388. ]
  389. },
  390. "notification-url": "https://packagist.org/downloads/",
  391. "license": [
  392. "Apache-2.0"
  393. ],
  394. "authors": [
  395. {
  396. "name": "AWS SDK Common Runtime Team",
  397. "email": "aws-sdk-common-runtime@amazon.com"
  398. }
  399. ],
  400. "description": "AWS Common Runtime for PHP",
  401. "homepage": "https://github.com/awslabs/aws-crt-php",
  402. "keywords": [
  403. "amazon",
  404. "aws",
  405. "crt",
  406. "sdk"
  407. ],
  408. "support": {
  409. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  410. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.4"
  411. },
  412. "time": "2023-11-08T00:42:13+00:00"
  413. },
  414. {
  415. "name": "aws/aws-sdk-php",
  416. "version": "3.299.1",
  417. "source": {
  418. "type": "git",
  419. "url": "https://github.com/aws/aws-sdk-php.git",
  420. "reference": "a0f87b8e8bfb9afd0ffd702fcda556b465eee457"
  421. },
  422. "dist": {
  423. "type": "zip",
  424. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/a0f87b8e8bfb9afd0ffd702fcda556b465eee457",
  425. "reference": "a0f87b8e8bfb9afd0ffd702fcda556b465eee457",
  426. "shasum": ""
  427. },
  428. "require": {
  429. "aws/aws-crt-php": "^1.2.3",
  430. "ext-json": "*",
  431. "ext-pcre": "*",
  432. "ext-simplexml": "*",
  433. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  434. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  435. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  436. "mtdowling/jmespath.php": "^2.6",
  437. "php": ">=7.2.5",
  438. "psr/http-message": "^1.0 || ^2.0"
  439. },
  440. "require-dev": {
  441. "andrewsville/php-token-reflection": "^1.4",
  442. "aws/aws-php-sns-message-validator": "~1.0",
  443. "behat/behat": "~3.0",
  444. "composer/composer": "^1.10.22",
  445. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  446. "doctrine/cache": "~1.4",
  447. "ext-dom": "*",
  448. "ext-openssl": "*",
  449. "ext-pcntl": "*",
  450. "ext-sockets": "*",
  451. "nette/neon": "^2.3",
  452. "paragonie/random_compat": ">= 2",
  453. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  454. "psr/cache": "^1.0",
  455. "psr/simple-cache": "^1.0",
  456. "sebastian/comparator": "^1.2.3 || ^4.0",
  457. "yoast/phpunit-polyfills": "^1.0"
  458. },
  459. "suggest": {
  460. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  461. "doctrine/cache": "To use the DoctrineCacheAdapter",
  462. "ext-curl": "To send requests using cURL",
  463. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  464. "ext-sockets": "To use client-side monitoring"
  465. },
  466. "type": "library",
  467. "extra": {
  468. "branch-alias": {
  469. "dev-master": "3.0-dev"
  470. }
  471. },
  472. "autoload": {
  473. "files": [
  474. "src/functions.php"
  475. ],
  476. "psr-4": {
  477. "Aws\\": "src/"
  478. }
  479. },
  480. "notification-url": "https://packagist.org/downloads/",
  481. "license": [
  482. "Apache-2.0"
  483. ],
  484. "authors": [
  485. {
  486. "name": "Amazon Web Services",
  487. "homepage": "http://aws.amazon.com"
  488. }
  489. ],
  490. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  491. "homepage": "http://aws.amazon.com/sdkforphp",
  492. "keywords": [
  493. "amazon",
  494. "aws",
  495. "cloud",
  496. "dynamodb",
  497. "ec2",
  498. "glacier",
  499. "s3",
  500. "sdk"
  501. ],
  502. "support": {
  503. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  504. "issues": "https://github.com/aws/aws-sdk-php/issues",
  505. "source": "https://github.com/aws/aws-sdk-php/tree/3.299.1"
  506. },
  507. "time": "2024-02-16T19:08:34+00:00"
  508. },
  509. {
  510. "name": "aws/aws-sdk-php-laravel",
  511. "version": "3.8.1",
  512. "source": {
  513. "type": "git",
  514. "url": "https://github.com/aws/aws-sdk-php-laravel.git",
  515. "reference": "fdecc2c8c15b3bf3843401b257229c7f883d6bab"
  516. },
  517. "dist": {
  518. "type": "zip",
  519. "url": "https://api.github.com/repos/aws/aws-sdk-php-laravel/zipball/fdecc2c8c15b3bf3843401b257229c7f883d6bab",
  520. "reference": "fdecc2c8c15b3bf3843401b257229c7f883d6bab",
  521. "shasum": ""
  522. },
  523. "require": {
  524. "aws/aws-sdk-php": "~3.0",
  525. "illuminate/support": "^5.1 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
  526. "php": ">=5.5.9"
  527. },
  528. "require-dev": {
  529. "phpunit/phpunit": "^4.0 || ^5.0 || ^9.0",
  530. "vlucas/phpdotenv": "^1.0 || ^2.0 || ^3.0 || ^4.0 || ^5.0",
  531. "yoast/phpunit-polyfills": "^1.0"
  532. },
  533. "suggest": {
  534. "laravel/framework": "To test the Laravel bindings",
  535. "laravel/lumen-framework": "To test the Lumen bindings"
  536. },
  537. "type": "library",
  538. "extra": {
  539. "laravel": {
  540. "providers": [
  541. "Aws\\Laravel\\AwsServiceProvider"
  542. ],
  543. "aliases": {
  544. "AWS": "Aws\\Laravel\\AwsFacade"
  545. }
  546. }
  547. },
  548. "autoload": {
  549. "psr-4": {
  550. "Aws\\Laravel\\": "src/"
  551. }
  552. },
  553. "notification-url": "https://packagist.org/downloads/",
  554. "license": [
  555. "Apache-2.0"
  556. ],
  557. "authors": [
  558. {
  559. "name": "Amazon Web Services",
  560. "homepage": "http://aws.amazon.com"
  561. }
  562. ],
  563. "description": "A simple Laravel 5/6/7/8/9 service provider for including the AWS SDK for PHP.",
  564. "homepage": "http://aws.amazon.com/sdkforphp2",
  565. "keywords": [
  566. "amazon",
  567. "aws",
  568. "dynamodb",
  569. "ec2",
  570. "laravel",
  571. "laravel 10",
  572. "laravel 5",
  573. "laravel 6",
  574. "laravel 7",
  575. "laravel 8",
  576. "laravel 9",
  577. "s3",
  578. "sdk"
  579. ],
  580. "support": {
  581. "issues": "https://github.com/aws/aws-sdk-php-laravel/issues",
  582. "source": "https://github.com/aws/aws-sdk-php-laravel/tree/3.8.1"
  583. },
  584. "time": "2023-03-24T20:26:35+00:00"
  585. },
  586. {
  587. "name": "bezhansalleh/filament-panel-switch",
  588. "version": "1.0.5",
  589. "source": {
  590. "type": "git",
  591. "url": "https://github.com/bezhanSalleh/filament-panel-switch.git",
  592. "reference": "85fdf7ec35a7c35f380d952146594cd423af683d"
  593. },
  594. "dist": {
  595. "type": "zip",
  596. "url": "https://api.github.com/repos/bezhanSalleh/filament-panel-switch/zipball/85fdf7ec35a7c35f380d952146594cd423af683d",
  597. "reference": "85fdf7ec35a7c35f380d952146594cd423af683d",
  598. "shasum": ""
  599. },
  600. "require": {
  601. "filament/filament": "^3.0",
  602. "php": "^8.1",
  603. "spatie/laravel-package-tools": "^1.15.0"
  604. },
  605. "require-dev": {
  606. "laravel/pint": "^1.0",
  607. "nunomaduro/collision": "^7.9",
  608. "orchestra/testbench": "^8.0",
  609. "pestphp/pest": "^2.0",
  610. "pestphp/pest-plugin-arch": "^2.0",
  611. "pestphp/pest-plugin-laravel": "^2.0",
  612. "spatie/laravel-ray": "^1.26"
  613. },
  614. "type": "library",
  615. "extra": {
  616. "laravel": {
  617. "providers": [
  618. "BezhanSalleh\\PanelSwitch\\PanelSwitchServiceProvider"
  619. ],
  620. "aliases": {
  621. "PanelSwitch": "BezhanSalleh\\PanelSwitch\\Facades\\PanelSwitch"
  622. }
  623. }
  624. },
  625. "autoload": {
  626. "psr-4": {
  627. "BezhanSalleh\\PanelSwitch\\": "src/",
  628. "BezhanSalleh\\PanelSwitch\\Database\\Factories\\": "database/factories/"
  629. }
  630. },
  631. "notification-url": "https://packagist.org/downloads/",
  632. "license": [
  633. "MIT"
  634. ],
  635. "authors": [
  636. {
  637. "name": "Bezhan Salleh",
  638. "email": "bezhan_salleh@yahoo.com",
  639. "role": "Developer"
  640. }
  641. ],
  642. "description": "Easily Switch between your Filament Panels",
  643. "homepage": "https://github.com/bezhansalleh/filament-panel-switch",
  644. "keywords": [
  645. "bezhanSalleh",
  646. "filament",
  647. "filament-panel-switch",
  648. "panel-changer",
  649. "panel-navigation",
  650. "panel-switch"
  651. ],
  652. "support": {
  653. "issues": "https://github.com/bezhansalleh/filament-panel-switch/issues",
  654. "source": "https://github.com/bezhansalleh/filament-panel-switch"
  655. },
  656. "funding": [
  657. {
  658. "url": "https://github.com/bezhanSalleh",
  659. "type": "github"
  660. }
  661. ],
  662. "time": "2024-01-12T02:52:11+00:00"
  663. },
  664. {
  665. "name": "blade-ui-kit/blade-heroicons",
  666. "version": "2.3.0",
  667. "source": {
  668. "type": "git",
  669. "url": "https://github.com/blade-ui-kit/blade-heroicons.git",
  670. "reference": "a265dbcf2a098121aad05752d0bba9f59022e4ba"
  671. },
  672. "dist": {
  673. "type": "zip",
  674. "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/a265dbcf2a098121aad05752d0bba9f59022e4ba",
  675. "reference": "a265dbcf2a098121aad05752d0bba9f59022e4ba",
  676. "shasum": ""
  677. },
  678. "require": {
  679. "blade-ui-kit/blade-icons": "^1.6",
  680. "illuminate/support": "^9.0|^10.0|^11.0",
  681. "php": "^8.0"
  682. },
  683. "require-dev": {
  684. "orchestra/testbench": "^7.0|^8.0|^9.0",
  685. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  686. },
  687. "type": "library",
  688. "extra": {
  689. "laravel": {
  690. "providers": [
  691. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  692. ]
  693. }
  694. },
  695. "autoload": {
  696. "psr-4": {
  697. "BladeUI\\Heroicons\\": "src"
  698. }
  699. },
  700. "notification-url": "https://packagist.org/downloads/",
  701. "license": [
  702. "MIT"
  703. ],
  704. "authors": [
  705. {
  706. "name": "Dries Vints",
  707. "homepage": "https://driesvints.com"
  708. }
  709. ],
  710. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  711. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  712. "keywords": [
  713. "Heroicons",
  714. "blade",
  715. "laravel"
  716. ],
  717. "support": {
  718. "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues",
  719. "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/2.3.0"
  720. },
  721. "funding": [
  722. {
  723. "url": "https://github.com/sponsors/driesvints",
  724. "type": "github"
  725. },
  726. {
  727. "url": "https://www.paypal.com/paypalme/driesvints",
  728. "type": "paypal"
  729. }
  730. ],
  731. "time": "2024-02-07T16:33:46+00:00"
  732. },
  733. {
  734. "name": "blade-ui-kit/blade-icons",
  735. "version": "1.6.0",
  736. "source": {
  737. "type": "git",
  738. "url": "https://github.com/blade-ui-kit/blade-icons.git",
  739. "reference": "89660d93f9897d231e9113ba203cd17f4c5efade"
  740. },
  741. "dist": {
  742. "type": "zip",
  743. "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/89660d93f9897d231e9113ba203cd17f4c5efade",
  744. "reference": "89660d93f9897d231e9113ba203cd17f4c5efade",
  745. "shasum": ""
  746. },
  747. "require": {
  748. "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
  749. "illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
  750. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  751. "illuminate/view": "^8.0|^9.0|^10.0|^11.0",
  752. "php": "^7.4|^8.0",
  753. "symfony/console": "^5.3|^6.0|^7.0",
  754. "symfony/finder": "^5.3|^6.0|^7.0"
  755. },
  756. "require-dev": {
  757. "mockery/mockery": "^1.5.1",
  758. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
  759. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  760. },
  761. "bin": [
  762. "bin/blade-icons-generate"
  763. ],
  764. "type": "library",
  765. "extra": {
  766. "laravel": {
  767. "providers": [
  768. "BladeUI\\Icons\\BladeIconsServiceProvider"
  769. ]
  770. }
  771. },
  772. "autoload": {
  773. "files": [
  774. "src/helpers.php"
  775. ],
  776. "psr-4": {
  777. "BladeUI\\Icons\\": "src"
  778. }
  779. },
  780. "notification-url": "https://packagist.org/downloads/",
  781. "license": [
  782. "MIT"
  783. ],
  784. "authors": [
  785. {
  786. "name": "Dries Vints",
  787. "homepage": "https://driesvints.com"
  788. }
  789. ],
  790. "description": "A package to easily make use of icons in your Laravel Blade views.",
  791. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  792. "keywords": [
  793. "blade",
  794. "icons",
  795. "laravel",
  796. "svg"
  797. ],
  798. "support": {
  799. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  800. "source": "https://github.com/blade-ui-kit/blade-icons"
  801. },
  802. "funding": [
  803. {
  804. "url": "https://github.com/sponsors/driesvints",
  805. "type": "github"
  806. },
  807. {
  808. "url": "https://www.paypal.com/paypalme/driesvints",
  809. "type": "paypal"
  810. }
  811. ],
  812. "time": "2024-02-07T16:09:20+00:00"
  813. },
  814. {
  815. "name": "brick/math",
  816. "version": "0.11.0",
  817. "source": {
  818. "type": "git",
  819. "url": "https://github.com/brick/math.git",
  820. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  821. },
  822. "dist": {
  823. "type": "zip",
  824. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  825. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  826. "shasum": ""
  827. },
  828. "require": {
  829. "php": "^8.0"
  830. },
  831. "require-dev": {
  832. "php-coveralls/php-coveralls": "^2.2",
  833. "phpunit/phpunit": "^9.0",
  834. "vimeo/psalm": "5.0.0"
  835. },
  836. "type": "library",
  837. "autoload": {
  838. "psr-4": {
  839. "Brick\\Math\\": "src/"
  840. }
  841. },
  842. "notification-url": "https://packagist.org/downloads/",
  843. "license": [
  844. "MIT"
  845. ],
  846. "description": "Arbitrary-precision arithmetic library",
  847. "keywords": [
  848. "Arbitrary-precision",
  849. "BigInteger",
  850. "BigRational",
  851. "arithmetic",
  852. "bigdecimal",
  853. "bignum",
  854. "brick",
  855. "math"
  856. ],
  857. "support": {
  858. "issues": "https://github.com/brick/math/issues",
  859. "source": "https://github.com/brick/math/tree/0.11.0"
  860. },
  861. "funding": [
  862. {
  863. "url": "https://github.com/BenMorel",
  864. "type": "github"
  865. }
  866. ],
  867. "time": "2023-01-15T23:15:59+00:00"
  868. },
  869. {
  870. "name": "carbonphp/carbon-doctrine-types",
  871. "version": "2.1.0",
  872. "source": {
  873. "type": "git",
  874. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  875. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  876. },
  877. "dist": {
  878. "type": "zip",
  879. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  880. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  881. "shasum": ""
  882. },
  883. "require": {
  884. "php": "^7.4 || ^8.0"
  885. },
  886. "conflict": {
  887. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  888. },
  889. "require-dev": {
  890. "doctrine/dbal": "^3.7.0",
  891. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  892. "phpunit/phpunit": "^10.3"
  893. },
  894. "type": "library",
  895. "autoload": {
  896. "psr-4": {
  897. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  898. }
  899. },
  900. "notification-url": "https://packagist.org/downloads/",
  901. "license": [
  902. "MIT"
  903. ],
  904. "authors": [
  905. {
  906. "name": "KyleKatarn",
  907. "email": "kylekatarnls@gmail.com"
  908. }
  909. ],
  910. "description": "Types to use Carbon in Doctrine",
  911. "keywords": [
  912. "carbon",
  913. "date",
  914. "datetime",
  915. "doctrine",
  916. "time"
  917. ],
  918. "support": {
  919. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  920. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  921. },
  922. "funding": [
  923. {
  924. "url": "https://github.com/kylekatarnls",
  925. "type": "github"
  926. },
  927. {
  928. "url": "https://opencollective.com/Carbon",
  929. "type": "open_collective"
  930. },
  931. {
  932. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  933. "type": "tidelift"
  934. }
  935. ],
  936. "time": "2023-12-11T17:09:12+00:00"
  937. },
  938. {
  939. "name": "danharrin/date-format-converter",
  940. "version": "v0.3.0",
  941. "source": {
  942. "type": "git",
  943. "url": "https://github.com/danharrin/date-format-converter.git",
  944. "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2"
  945. },
  946. "dist": {
  947. "type": "zip",
  948. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
  949. "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
  950. "shasum": ""
  951. },
  952. "require": {
  953. "php": "^7.2|^8.0"
  954. },
  955. "type": "library",
  956. "autoload": {
  957. "files": [
  958. "src/helpers.php",
  959. "src/standards.php"
  960. ],
  961. "psr-4": {
  962. "DanHarrin\\DateFormatConverter\\": "src/"
  963. }
  964. },
  965. "notification-url": "https://packagist.org/downloads/",
  966. "license": [
  967. "MIT"
  968. ],
  969. "authors": [
  970. {
  971. "name": "Dan Harrin",
  972. "email": "dan@danharrin.com"
  973. }
  974. ],
  975. "description": "Convert token-based date formats between standards.",
  976. "homepage": "https://github.com/danharrin/date-format-converter",
  977. "support": {
  978. "issues": "https://github.com/danharrin/date-format-converter/issues",
  979. "source": "https://github.com/danharrin/date-format-converter"
  980. },
  981. "funding": [
  982. {
  983. "url": "https://github.com/danharrin",
  984. "type": "github"
  985. }
  986. ],
  987. "time": "2022-09-29T07:48:20+00:00"
  988. },
  989. {
  990. "name": "danharrin/livewire-rate-limiting",
  991. "version": "v1.3.0",
  992. "source": {
  993. "type": "git",
  994. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  995. "reference": "bf16003f0d977b5a41071526d697eec94ac41735"
  996. },
  997. "dist": {
  998. "type": "zip",
  999. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/bf16003f0d977b5a41071526d697eec94ac41735",
  1000. "reference": "bf16003f0d977b5a41071526d697eec94ac41735",
  1001. "shasum": ""
  1002. },
  1003. "require": {
  1004. "illuminate/support": "^9.0|^10.0|^11.0",
  1005. "php": "^8.0"
  1006. },
  1007. "require-dev": {
  1008. "livewire/livewire": "^3.0",
  1009. "livewire/volt": "^1.3",
  1010. "orchestra/testbench": "^7.0|^8.0|^9.0",
  1011. "phpunit/phpunit": "^9.0|^10.0"
  1012. },
  1013. "type": "library",
  1014. "autoload": {
  1015. "psr-4": {
  1016. "DanHarrin\\LivewireRateLimiting\\": "src"
  1017. }
  1018. },
  1019. "notification-url": "https://packagist.org/downloads/",
  1020. "license": [
  1021. "MIT"
  1022. ],
  1023. "authors": [
  1024. {
  1025. "name": "Dan Harrin",
  1026. "email": "dan@danharrin.com"
  1027. }
  1028. ],
  1029. "description": "Apply rate limiters to Laravel Livewire actions.",
  1030. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  1031. "support": {
  1032. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  1033. "source": "https://github.com/danharrin/livewire-rate-limiting"
  1034. },
  1035. "funding": [
  1036. {
  1037. "url": "https://github.com/danharrin",
  1038. "type": "github"
  1039. }
  1040. ],
  1041. "time": "2024-01-21T14:53:34+00:00"
  1042. },
  1043. {
  1044. "name": "dflydev/dot-access-data",
  1045. "version": "v3.0.2",
  1046. "source": {
  1047. "type": "git",
  1048. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1049. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  1050. },
  1051. "dist": {
  1052. "type": "zip",
  1053. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  1054. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  1055. "shasum": ""
  1056. },
  1057. "require": {
  1058. "php": "^7.1 || ^8.0"
  1059. },
  1060. "require-dev": {
  1061. "phpstan/phpstan": "^0.12.42",
  1062. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1063. "scrutinizer/ocular": "1.6.0",
  1064. "squizlabs/php_codesniffer": "^3.5",
  1065. "vimeo/psalm": "^4.0.0"
  1066. },
  1067. "type": "library",
  1068. "extra": {
  1069. "branch-alias": {
  1070. "dev-main": "3.x-dev"
  1071. }
  1072. },
  1073. "autoload": {
  1074. "psr-4": {
  1075. "Dflydev\\DotAccessData\\": "src/"
  1076. }
  1077. },
  1078. "notification-url": "https://packagist.org/downloads/",
  1079. "license": [
  1080. "MIT"
  1081. ],
  1082. "authors": [
  1083. {
  1084. "name": "Dragonfly Development Inc.",
  1085. "email": "info@dflydev.com",
  1086. "homepage": "http://dflydev.com"
  1087. },
  1088. {
  1089. "name": "Beau Simensen",
  1090. "email": "beau@dflydev.com",
  1091. "homepage": "http://beausimensen.com"
  1092. },
  1093. {
  1094. "name": "Carlos Frutos",
  1095. "email": "carlos@kiwing.it",
  1096. "homepage": "https://github.com/cfrutos"
  1097. },
  1098. {
  1099. "name": "Colin O'Dell",
  1100. "email": "colinodell@gmail.com",
  1101. "homepage": "https://www.colinodell.com"
  1102. }
  1103. ],
  1104. "description": "Given a deep data structure, access data by dot notation.",
  1105. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1106. "keywords": [
  1107. "access",
  1108. "data",
  1109. "dot",
  1110. "notation"
  1111. ],
  1112. "support": {
  1113. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1114. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1115. },
  1116. "time": "2022-10-27T11:44:00+00:00"
  1117. },
  1118. {
  1119. "name": "doctrine/cache",
  1120. "version": "2.2.0",
  1121. "source": {
  1122. "type": "git",
  1123. "url": "https://github.com/doctrine/cache.git",
  1124. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  1125. },
  1126. "dist": {
  1127. "type": "zip",
  1128. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  1129. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  1130. "shasum": ""
  1131. },
  1132. "require": {
  1133. "php": "~7.1 || ^8.0"
  1134. },
  1135. "conflict": {
  1136. "doctrine/common": ">2.2,<2.4"
  1137. },
  1138. "require-dev": {
  1139. "cache/integration-tests": "dev-master",
  1140. "doctrine/coding-standard": "^9",
  1141. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1142. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1143. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1144. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1145. },
  1146. "type": "library",
  1147. "autoload": {
  1148. "psr-4": {
  1149. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1150. }
  1151. },
  1152. "notification-url": "https://packagist.org/downloads/",
  1153. "license": [
  1154. "MIT"
  1155. ],
  1156. "authors": [
  1157. {
  1158. "name": "Guilherme Blanco",
  1159. "email": "guilhermeblanco@gmail.com"
  1160. },
  1161. {
  1162. "name": "Roman Borschel",
  1163. "email": "roman@code-factory.org"
  1164. },
  1165. {
  1166. "name": "Benjamin Eberlei",
  1167. "email": "kontakt@beberlei.de"
  1168. },
  1169. {
  1170. "name": "Jonathan Wage",
  1171. "email": "jonwage@gmail.com"
  1172. },
  1173. {
  1174. "name": "Johannes Schmitt",
  1175. "email": "schmittjoh@gmail.com"
  1176. }
  1177. ],
  1178. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1179. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1180. "keywords": [
  1181. "abstraction",
  1182. "apcu",
  1183. "cache",
  1184. "caching",
  1185. "couchdb",
  1186. "memcached",
  1187. "php",
  1188. "redis",
  1189. "xcache"
  1190. ],
  1191. "support": {
  1192. "issues": "https://github.com/doctrine/cache/issues",
  1193. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  1194. },
  1195. "funding": [
  1196. {
  1197. "url": "https://www.doctrine-project.org/sponsorship.html",
  1198. "type": "custom"
  1199. },
  1200. {
  1201. "url": "https://www.patreon.com/phpdoctrine",
  1202. "type": "patreon"
  1203. },
  1204. {
  1205. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1206. "type": "tidelift"
  1207. }
  1208. ],
  1209. "time": "2022-05-20T20:07:39+00:00"
  1210. },
  1211. {
  1212. "name": "doctrine/dbal",
  1213. "version": "3.8.2",
  1214. "source": {
  1215. "type": "git",
  1216. "url": "https://github.com/doctrine/dbal.git",
  1217. "reference": "a19a1d05ca211f41089dffcc387733a6875196cb"
  1218. },
  1219. "dist": {
  1220. "type": "zip",
  1221. "url": "https://api.github.com/repos/doctrine/dbal/zipball/a19a1d05ca211f41089dffcc387733a6875196cb",
  1222. "reference": "a19a1d05ca211f41089dffcc387733a6875196cb",
  1223. "shasum": ""
  1224. },
  1225. "require": {
  1226. "composer-runtime-api": "^2",
  1227. "doctrine/cache": "^1.11|^2.0",
  1228. "doctrine/deprecations": "^0.5.3|^1",
  1229. "doctrine/event-manager": "^1|^2",
  1230. "php": "^7.4 || ^8.0",
  1231. "psr/cache": "^1|^2|^3",
  1232. "psr/log": "^1|^2|^3"
  1233. },
  1234. "require-dev": {
  1235. "doctrine/coding-standard": "12.0.0",
  1236. "fig/log-test": "^1",
  1237. "jetbrains/phpstorm-stubs": "2023.1",
  1238. "phpstan/phpstan": "1.10.57",
  1239. "phpstan/phpstan-strict-rules": "^1.5",
  1240. "phpunit/phpunit": "9.6.16",
  1241. "psalm/plugin-phpunit": "0.18.4",
  1242. "slevomat/coding-standard": "8.13.1",
  1243. "squizlabs/php_codesniffer": "3.8.1",
  1244. "symfony/cache": "^5.4|^6.0|^7.0",
  1245. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  1246. "vimeo/psalm": "4.30.0"
  1247. },
  1248. "suggest": {
  1249. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1250. },
  1251. "bin": [
  1252. "bin/doctrine-dbal"
  1253. ],
  1254. "type": "library",
  1255. "autoload": {
  1256. "psr-4": {
  1257. "Doctrine\\DBAL\\": "src"
  1258. }
  1259. },
  1260. "notification-url": "https://packagist.org/downloads/",
  1261. "license": [
  1262. "MIT"
  1263. ],
  1264. "authors": [
  1265. {
  1266. "name": "Guilherme Blanco",
  1267. "email": "guilhermeblanco@gmail.com"
  1268. },
  1269. {
  1270. "name": "Roman Borschel",
  1271. "email": "roman@code-factory.org"
  1272. },
  1273. {
  1274. "name": "Benjamin Eberlei",
  1275. "email": "kontakt@beberlei.de"
  1276. },
  1277. {
  1278. "name": "Jonathan Wage",
  1279. "email": "jonwage@gmail.com"
  1280. }
  1281. ],
  1282. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1283. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1284. "keywords": [
  1285. "abstraction",
  1286. "database",
  1287. "db2",
  1288. "dbal",
  1289. "mariadb",
  1290. "mssql",
  1291. "mysql",
  1292. "oci8",
  1293. "oracle",
  1294. "pdo",
  1295. "pgsql",
  1296. "postgresql",
  1297. "queryobject",
  1298. "sasql",
  1299. "sql",
  1300. "sqlite",
  1301. "sqlserver",
  1302. "sqlsrv"
  1303. ],
  1304. "support": {
  1305. "issues": "https://github.com/doctrine/dbal/issues",
  1306. "source": "https://github.com/doctrine/dbal/tree/3.8.2"
  1307. },
  1308. "funding": [
  1309. {
  1310. "url": "https://www.doctrine-project.org/sponsorship.html",
  1311. "type": "custom"
  1312. },
  1313. {
  1314. "url": "https://www.patreon.com/phpdoctrine",
  1315. "type": "patreon"
  1316. },
  1317. {
  1318. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1319. "type": "tidelift"
  1320. }
  1321. ],
  1322. "time": "2024-02-12T18:36:36+00:00"
  1323. },
  1324. {
  1325. "name": "doctrine/deprecations",
  1326. "version": "1.1.3",
  1327. "source": {
  1328. "type": "git",
  1329. "url": "https://github.com/doctrine/deprecations.git",
  1330. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  1331. },
  1332. "dist": {
  1333. "type": "zip",
  1334. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1335. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1336. "shasum": ""
  1337. },
  1338. "require": {
  1339. "php": "^7.1 || ^8.0"
  1340. },
  1341. "require-dev": {
  1342. "doctrine/coding-standard": "^9",
  1343. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1344. "phpstan/phpstan-phpunit": "^1.0",
  1345. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1346. "psalm/plugin-phpunit": "0.18.4",
  1347. "psr/log": "^1 || ^2 || ^3",
  1348. "vimeo/psalm": "4.30.0 || 5.12.0"
  1349. },
  1350. "suggest": {
  1351. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1352. },
  1353. "type": "library",
  1354. "autoload": {
  1355. "psr-4": {
  1356. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1357. }
  1358. },
  1359. "notification-url": "https://packagist.org/downloads/",
  1360. "license": [
  1361. "MIT"
  1362. ],
  1363. "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.",
  1364. "homepage": "https://www.doctrine-project.org/",
  1365. "support": {
  1366. "issues": "https://github.com/doctrine/deprecations/issues",
  1367. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  1368. },
  1369. "time": "2024-01-30T19:34:25+00:00"
  1370. },
  1371. {
  1372. "name": "doctrine/event-manager",
  1373. "version": "2.0.0",
  1374. "source": {
  1375. "type": "git",
  1376. "url": "https://github.com/doctrine/event-manager.git",
  1377. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  1378. },
  1379. "dist": {
  1380. "type": "zip",
  1381. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  1382. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  1383. "shasum": ""
  1384. },
  1385. "require": {
  1386. "php": "^8.1"
  1387. },
  1388. "conflict": {
  1389. "doctrine/common": "<2.9"
  1390. },
  1391. "require-dev": {
  1392. "doctrine/coding-standard": "^10",
  1393. "phpstan/phpstan": "^1.8.8",
  1394. "phpunit/phpunit": "^9.5",
  1395. "vimeo/psalm": "^4.28"
  1396. },
  1397. "type": "library",
  1398. "autoload": {
  1399. "psr-4": {
  1400. "Doctrine\\Common\\": "src"
  1401. }
  1402. },
  1403. "notification-url": "https://packagist.org/downloads/",
  1404. "license": [
  1405. "MIT"
  1406. ],
  1407. "authors": [
  1408. {
  1409. "name": "Guilherme Blanco",
  1410. "email": "guilhermeblanco@gmail.com"
  1411. },
  1412. {
  1413. "name": "Roman Borschel",
  1414. "email": "roman@code-factory.org"
  1415. },
  1416. {
  1417. "name": "Benjamin Eberlei",
  1418. "email": "kontakt@beberlei.de"
  1419. },
  1420. {
  1421. "name": "Jonathan Wage",
  1422. "email": "jonwage@gmail.com"
  1423. },
  1424. {
  1425. "name": "Johannes Schmitt",
  1426. "email": "schmittjoh@gmail.com"
  1427. },
  1428. {
  1429. "name": "Marco Pivetta",
  1430. "email": "ocramius@gmail.com"
  1431. }
  1432. ],
  1433. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1434. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1435. "keywords": [
  1436. "event",
  1437. "event dispatcher",
  1438. "event manager",
  1439. "event system",
  1440. "events"
  1441. ],
  1442. "support": {
  1443. "issues": "https://github.com/doctrine/event-manager/issues",
  1444. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  1445. },
  1446. "funding": [
  1447. {
  1448. "url": "https://www.doctrine-project.org/sponsorship.html",
  1449. "type": "custom"
  1450. },
  1451. {
  1452. "url": "https://www.patreon.com/phpdoctrine",
  1453. "type": "patreon"
  1454. },
  1455. {
  1456. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1457. "type": "tidelift"
  1458. }
  1459. ],
  1460. "time": "2022-10-12T20:59:15+00:00"
  1461. },
  1462. {
  1463. "name": "doctrine/inflector",
  1464. "version": "2.0.9",
  1465. "source": {
  1466. "type": "git",
  1467. "url": "https://github.com/doctrine/inflector.git",
  1468. "reference": "2930cd5ef353871c821d5c43ed030d39ac8cfe65"
  1469. },
  1470. "dist": {
  1471. "type": "zip",
  1472. "url": "https://api.github.com/repos/doctrine/inflector/zipball/2930cd5ef353871c821d5c43ed030d39ac8cfe65",
  1473. "reference": "2930cd5ef353871c821d5c43ed030d39ac8cfe65",
  1474. "shasum": ""
  1475. },
  1476. "require": {
  1477. "php": "^7.2 || ^8.0"
  1478. },
  1479. "require-dev": {
  1480. "doctrine/coding-standard": "^11.0",
  1481. "phpstan/phpstan": "^1.8",
  1482. "phpstan/phpstan-phpunit": "^1.1",
  1483. "phpstan/phpstan-strict-rules": "^1.3",
  1484. "phpunit/phpunit": "^8.5 || ^9.5",
  1485. "vimeo/psalm": "^4.25 || ^5.4"
  1486. },
  1487. "type": "library",
  1488. "autoload": {
  1489. "psr-4": {
  1490. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1491. }
  1492. },
  1493. "notification-url": "https://packagist.org/downloads/",
  1494. "license": [
  1495. "MIT"
  1496. ],
  1497. "authors": [
  1498. {
  1499. "name": "Guilherme Blanco",
  1500. "email": "guilhermeblanco@gmail.com"
  1501. },
  1502. {
  1503. "name": "Roman Borschel",
  1504. "email": "roman@code-factory.org"
  1505. },
  1506. {
  1507. "name": "Benjamin Eberlei",
  1508. "email": "kontakt@beberlei.de"
  1509. },
  1510. {
  1511. "name": "Jonathan Wage",
  1512. "email": "jonwage@gmail.com"
  1513. },
  1514. {
  1515. "name": "Johannes Schmitt",
  1516. "email": "schmittjoh@gmail.com"
  1517. }
  1518. ],
  1519. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1520. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1521. "keywords": [
  1522. "inflection",
  1523. "inflector",
  1524. "lowercase",
  1525. "manipulation",
  1526. "php",
  1527. "plural",
  1528. "singular",
  1529. "strings",
  1530. "uppercase",
  1531. "words"
  1532. ],
  1533. "support": {
  1534. "issues": "https://github.com/doctrine/inflector/issues",
  1535. "source": "https://github.com/doctrine/inflector/tree/2.0.9"
  1536. },
  1537. "funding": [
  1538. {
  1539. "url": "https://www.doctrine-project.org/sponsorship.html",
  1540. "type": "custom"
  1541. },
  1542. {
  1543. "url": "https://www.patreon.com/phpdoctrine",
  1544. "type": "patreon"
  1545. },
  1546. {
  1547. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1548. "type": "tidelift"
  1549. }
  1550. ],
  1551. "time": "2024-01-15T18:05:13+00:00"
  1552. },
  1553. {
  1554. "name": "doctrine/lexer",
  1555. "version": "3.0.1",
  1556. "source": {
  1557. "type": "git",
  1558. "url": "https://github.com/doctrine/lexer.git",
  1559. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1560. },
  1561. "dist": {
  1562. "type": "zip",
  1563. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1564. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1565. "shasum": ""
  1566. },
  1567. "require": {
  1568. "php": "^8.1"
  1569. },
  1570. "require-dev": {
  1571. "doctrine/coding-standard": "^12",
  1572. "phpstan/phpstan": "^1.10",
  1573. "phpunit/phpunit": "^10.5",
  1574. "psalm/plugin-phpunit": "^0.18.3",
  1575. "vimeo/psalm": "^5.21"
  1576. },
  1577. "type": "library",
  1578. "autoload": {
  1579. "psr-4": {
  1580. "Doctrine\\Common\\Lexer\\": "src"
  1581. }
  1582. },
  1583. "notification-url": "https://packagist.org/downloads/",
  1584. "license": [
  1585. "MIT"
  1586. ],
  1587. "authors": [
  1588. {
  1589. "name": "Guilherme Blanco",
  1590. "email": "guilhermeblanco@gmail.com"
  1591. },
  1592. {
  1593. "name": "Roman Borschel",
  1594. "email": "roman@code-factory.org"
  1595. },
  1596. {
  1597. "name": "Johannes Schmitt",
  1598. "email": "schmittjoh@gmail.com"
  1599. }
  1600. ],
  1601. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1602. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1603. "keywords": [
  1604. "annotations",
  1605. "docblock",
  1606. "lexer",
  1607. "parser",
  1608. "php"
  1609. ],
  1610. "support": {
  1611. "issues": "https://github.com/doctrine/lexer/issues",
  1612. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1613. },
  1614. "funding": [
  1615. {
  1616. "url": "https://www.doctrine-project.org/sponsorship.html",
  1617. "type": "custom"
  1618. },
  1619. {
  1620. "url": "https://www.patreon.com/phpdoctrine",
  1621. "type": "patreon"
  1622. },
  1623. {
  1624. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1625. "type": "tidelift"
  1626. }
  1627. ],
  1628. "time": "2024-02-05T11:56:58+00:00"
  1629. },
  1630. {
  1631. "name": "dragonmantank/cron-expression",
  1632. "version": "v3.3.3",
  1633. "source": {
  1634. "type": "git",
  1635. "url": "https://github.com/dragonmantank/cron-expression.git",
  1636. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1637. },
  1638. "dist": {
  1639. "type": "zip",
  1640. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1641. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1642. "shasum": ""
  1643. },
  1644. "require": {
  1645. "php": "^7.2|^8.0",
  1646. "webmozart/assert": "^1.0"
  1647. },
  1648. "replace": {
  1649. "mtdowling/cron-expression": "^1.0"
  1650. },
  1651. "require-dev": {
  1652. "phpstan/extension-installer": "^1.0",
  1653. "phpstan/phpstan": "^1.0",
  1654. "phpstan/phpstan-webmozart-assert": "^1.0",
  1655. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1656. },
  1657. "type": "library",
  1658. "autoload": {
  1659. "psr-4": {
  1660. "Cron\\": "src/Cron/"
  1661. }
  1662. },
  1663. "notification-url": "https://packagist.org/downloads/",
  1664. "license": [
  1665. "MIT"
  1666. ],
  1667. "authors": [
  1668. {
  1669. "name": "Chris Tankersley",
  1670. "email": "chris@ctankersley.com",
  1671. "homepage": "https://github.com/dragonmantank"
  1672. }
  1673. ],
  1674. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1675. "keywords": [
  1676. "cron",
  1677. "schedule"
  1678. ],
  1679. "support": {
  1680. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1681. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1682. },
  1683. "funding": [
  1684. {
  1685. "url": "https://github.com/dragonmantank",
  1686. "type": "github"
  1687. }
  1688. ],
  1689. "time": "2023-08-10T19:36:49+00:00"
  1690. },
  1691. {
  1692. "name": "egulias/email-validator",
  1693. "version": "4.0.2",
  1694. "source": {
  1695. "type": "git",
  1696. "url": "https://github.com/egulias/EmailValidator.git",
  1697. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1698. },
  1699. "dist": {
  1700. "type": "zip",
  1701. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1702. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1703. "shasum": ""
  1704. },
  1705. "require": {
  1706. "doctrine/lexer": "^2.0 || ^3.0",
  1707. "php": ">=8.1",
  1708. "symfony/polyfill-intl-idn": "^1.26"
  1709. },
  1710. "require-dev": {
  1711. "phpunit/phpunit": "^10.2",
  1712. "vimeo/psalm": "^5.12"
  1713. },
  1714. "suggest": {
  1715. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1716. },
  1717. "type": "library",
  1718. "extra": {
  1719. "branch-alias": {
  1720. "dev-master": "4.0.x-dev"
  1721. }
  1722. },
  1723. "autoload": {
  1724. "psr-4": {
  1725. "Egulias\\EmailValidator\\": "src"
  1726. }
  1727. },
  1728. "notification-url": "https://packagist.org/downloads/",
  1729. "license": [
  1730. "MIT"
  1731. ],
  1732. "authors": [
  1733. {
  1734. "name": "Eduardo Gulias Davis"
  1735. }
  1736. ],
  1737. "description": "A library for validating emails against several RFCs",
  1738. "homepage": "https://github.com/egulias/EmailValidator",
  1739. "keywords": [
  1740. "email",
  1741. "emailvalidation",
  1742. "emailvalidator",
  1743. "validation",
  1744. "validator"
  1745. ],
  1746. "support": {
  1747. "issues": "https://github.com/egulias/EmailValidator/issues",
  1748. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1749. },
  1750. "funding": [
  1751. {
  1752. "url": "https://github.com/egulias",
  1753. "type": "github"
  1754. }
  1755. ],
  1756. "time": "2023-10-06T06:47:41+00:00"
  1757. },
  1758. {
  1759. "name": "filament/actions",
  1760. "version": "v3.2.34",
  1761. "source": {
  1762. "type": "git",
  1763. "url": "https://github.com/filamentphp/actions.git",
  1764. "reference": "db3f17e5a6c550e98f8246bc2ca9c882fe1bb0e2"
  1765. },
  1766. "dist": {
  1767. "type": "zip",
  1768. "url": "https://api.github.com/repos/filamentphp/actions/zipball/db3f17e5a6c550e98f8246bc2ca9c882fe1bb0e2",
  1769. "reference": "db3f17e5a6c550e98f8246bc2ca9c882fe1bb0e2",
  1770. "shasum": ""
  1771. },
  1772. "require": {
  1773. "anourvalar/eloquent-serialize": "^1.2",
  1774. "filament/forms": "self.version",
  1775. "filament/infolists": "self.version",
  1776. "filament/notifications": "self.version",
  1777. "filament/support": "self.version",
  1778. "illuminate/contracts": "^10.0",
  1779. "illuminate/database": "^10.0",
  1780. "illuminate/support": "^10.0",
  1781. "league/csv": "^9.14",
  1782. "openspout/openspout": "^4.23",
  1783. "php": "^8.1",
  1784. "spatie/laravel-package-tools": "^1.9"
  1785. },
  1786. "type": "library",
  1787. "extra": {
  1788. "laravel": {
  1789. "providers": [
  1790. "Filament\\Actions\\ActionsServiceProvider"
  1791. ]
  1792. }
  1793. },
  1794. "autoload": {
  1795. "psr-4": {
  1796. "Filament\\Actions\\": "src"
  1797. }
  1798. },
  1799. "notification-url": "https://packagist.org/downloads/",
  1800. "license": [
  1801. "MIT"
  1802. ],
  1803. "description": "Easily add beautiful action modals to any Livewire component.",
  1804. "homepage": "https://github.com/filamentphp/filament",
  1805. "support": {
  1806. "issues": "https://github.com/filamentphp/filament/issues",
  1807. "source": "https://github.com/filamentphp/filament"
  1808. },
  1809. "time": "2024-02-12T17:10:13+00:00"
  1810. },
  1811. {
  1812. "name": "filament/filament",
  1813. "version": "v3.2.34",
  1814. "source": {
  1815. "type": "git",
  1816. "url": "https://github.com/filamentphp/panels.git",
  1817. "reference": "275758cf9a0dea16214a89f8185a992d4b9cafea"
  1818. },
  1819. "dist": {
  1820. "type": "zip",
  1821. "url": "https://api.github.com/repos/filamentphp/panels/zipball/275758cf9a0dea16214a89f8185a992d4b9cafea",
  1822. "reference": "275758cf9a0dea16214a89f8185a992d4b9cafea",
  1823. "shasum": ""
  1824. },
  1825. "require": {
  1826. "danharrin/livewire-rate-limiting": "^0.3|^1.0",
  1827. "filament/actions": "self.version",
  1828. "filament/forms": "self.version",
  1829. "filament/infolists": "self.version",
  1830. "filament/notifications": "self.version",
  1831. "filament/support": "self.version",
  1832. "filament/tables": "self.version",
  1833. "filament/widgets": "self.version",
  1834. "illuminate/auth": "^10.0",
  1835. "illuminate/console": "^10.0",
  1836. "illuminate/contracts": "^10.0",
  1837. "illuminate/cookie": "^10.0",
  1838. "illuminate/database": "^10.0",
  1839. "illuminate/http": "^10.0",
  1840. "illuminate/routing": "^10.0",
  1841. "illuminate/session": "^10.0",
  1842. "illuminate/support": "^10.0",
  1843. "illuminate/view": "^10.0",
  1844. "php": "^8.1",
  1845. "spatie/laravel-package-tools": "^1.9"
  1846. },
  1847. "type": "library",
  1848. "extra": {
  1849. "laravel": {
  1850. "providers": [
  1851. "Filament\\FilamentServiceProvider"
  1852. ]
  1853. }
  1854. },
  1855. "autoload": {
  1856. "files": [
  1857. "src/global_helpers.php",
  1858. "src/helpers.php"
  1859. ],
  1860. "psr-4": {
  1861. "Filament\\": "src"
  1862. }
  1863. },
  1864. "notification-url": "https://packagist.org/downloads/",
  1865. "license": [
  1866. "MIT"
  1867. ],
  1868. "description": "A collection of full-stack components for accelerated Laravel app development.",
  1869. "homepage": "https://github.com/filamentphp/filament",
  1870. "support": {
  1871. "issues": "https://github.com/filamentphp/filament/issues",
  1872. "source": "https://github.com/filamentphp/filament"
  1873. },
  1874. "time": "2024-02-13T11:56:58+00:00"
  1875. },
  1876. {
  1877. "name": "filament/forms",
  1878. "version": "v3.2.34",
  1879. "source": {
  1880. "type": "git",
  1881. "url": "https://github.com/filamentphp/forms.git",
  1882. "reference": "2c1772bba223fee30b855870059b111bb2e465a9"
  1883. },
  1884. "dist": {
  1885. "type": "zip",
  1886. "url": "https://api.github.com/repos/filamentphp/forms/zipball/2c1772bba223fee30b855870059b111bb2e465a9",
  1887. "reference": "2c1772bba223fee30b855870059b111bb2e465a9",
  1888. "shasum": ""
  1889. },
  1890. "require": {
  1891. "danharrin/date-format-converter": "^0.3",
  1892. "filament/actions": "self.version",
  1893. "filament/support": "self.version",
  1894. "illuminate/console": "^10.0",
  1895. "illuminate/contracts": "^10.0",
  1896. "illuminate/database": "^10.0",
  1897. "illuminate/filesystem": "^10.0",
  1898. "illuminate/support": "^10.0",
  1899. "illuminate/validation": "^10.0",
  1900. "illuminate/view": "^10.0",
  1901. "php": "^8.1",
  1902. "spatie/laravel-package-tools": "^1.9"
  1903. },
  1904. "type": "library",
  1905. "extra": {
  1906. "laravel": {
  1907. "providers": [
  1908. "Filament\\Forms\\FormsServiceProvider"
  1909. ]
  1910. }
  1911. },
  1912. "autoload": {
  1913. "files": [
  1914. "src/helpers.php"
  1915. ],
  1916. "psr-4": {
  1917. "Filament\\Forms\\": "src"
  1918. }
  1919. },
  1920. "notification-url": "https://packagist.org/downloads/",
  1921. "license": [
  1922. "MIT"
  1923. ],
  1924. "description": "Easily add beautiful forms to any Livewire component.",
  1925. "homepage": "https://github.com/filamentphp/filament",
  1926. "support": {
  1927. "issues": "https://github.com/filamentphp/filament/issues",
  1928. "source": "https://github.com/filamentphp/filament"
  1929. },
  1930. "time": "2024-02-11T20:52:55+00:00"
  1931. },
  1932. {
  1933. "name": "filament/infolists",
  1934. "version": "v3.2.34",
  1935. "source": {
  1936. "type": "git",
  1937. "url": "https://github.com/filamentphp/infolists.git",
  1938. "reference": "0af24d86945ed91dbd9cb48cff67b61e06d5913e"
  1939. },
  1940. "dist": {
  1941. "type": "zip",
  1942. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/0af24d86945ed91dbd9cb48cff67b61e06d5913e",
  1943. "reference": "0af24d86945ed91dbd9cb48cff67b61e06d5913e",
  1944. "shasum": ""
  1945. },
  1946. "require": {
  1947. "filament/actions": "self.version",
  1948. "filament/support": "self.version",
  1949. "illuminate/console": "^10.0",
  1950. "illuminate/contracts": "^10.0",
  1951. "illuminate/database": "^10.0",
  1952. "illuminate/filesystem": "^10.0",
  1953. "illuminate/support": "^10.0",
  1954. "illuminate/view": "^10.0",
  1955. "php": "^8.1",
  1956. "spatie/laravel-package-tools": "^1.9"
  1957. },
  1958. "type": "library",
  1959. "extra": {
  1960. "laravel": {
  1961. "providers": [
  1962. "Filament\\Infolists\\InfolistsServiceProvider"
  1963. ]
  1964. }
  1965. },
  1966. "autoload": {
  1967. "psr-4": {
  1968. "Filament\\Infolists\\": "src"
  1969. }
  1970. },
  1971. "notification-url": "https://packagist.org/downloads/",
  1972. "license": [
  1973. "MIT"
  1974. ],
  1975. "description": "Easily add beautiful read-only infolists to any Livewire component.",
  1976. "homepage": "https://github.com/filamentphp/filament",
  1977. "support": {
  1978. "issues": "https://github.com/filamentphp/filament/issues",
  1979. "source": "https://github.com/filamentphp/filament"
  1980. },
  1981. "time": "2024-02-09T17:40:48+00:00"
  1982. },
  1983. {
  1984. "name": "filament/notifications",
  1985. "version": "v3.2.34",
  1986. "source": {
  1987. "type": "git",
  1988. "url": "https://github.com/filamentphp/notifications.git",
  1989. "reference": "4786bb652bf6d64a9e68cf8302cf761f8dff3c4b"
  1990. },
  1991. "dist": {
  1992. "type": "zip",
  1993. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/4786bb652bf6d64a9e68cf8302cf761f8dff3c4b",
  1994. "reference": "4786bb652bf6d64a9e68cf8302cf761f8dff3c4b",
  1995. "shasum": ""
  1996. },
  1997. "require": {
  1998. "filament/actions": "self.version",
  1999. "filament/support": "self.version",
  2000. "illuminate/contracts": "^10.0",
  2001. "illuminate/filesystem": "^10.0",
  2002. "illuminate/notifications": "^10.0",
  2003. "illuminate/support": "^10.0",
  2004. "php": "^8.1",
  2005. "spatie/laravel-package-tools": "^1.9"
  2006. },
  2007. "type": "library",
  2008. "extra": {
  2009. "laravel": {
  2010. "providers": [
  2011. "Filament\\Notifications\\NotificationsServiceProvider"
  2012. ]
  2013. }
  2014. },
  2015. "autoload": {
  2016. "files": [
  2017. "src/Testing/Autoload.php"
  2018. ],
  2019. "psr-4": {
  2020. "Filament\\Notifications\\": "src"
  2021. }
  2022. },
  2023. "notification-url": "https://packagist.org/downloads/",
  2024. "license": [
  2025. "MIT"
  2026. ],
  2027. "description": "Easily add beautiful notifications to any Livewire app.",
  2028. "homepage": "https://github.com/filamentphp/filament",
  2029. "support": {
  2030. "issues": "https://github.com/filamentphp/filament/issues",
  2031. "source": "https://github.com/filamentphp/filament"
  2032. },
  2033. "time": "2024-02-07T18:46:44+00:00"
  2034. },
  2035. {
  2036. "name": "filament/spatie-laravel-tags-plugin",
  2037. "version": "v3.2.34",
  2038. "source": {
  2039. "type": "git",
  2040. "url": "https://github.com/filamentphp/spatie-laravel-tags-plugin.git",
  2041. "reference": "69c933b272a0d39632d2a706f566a645638c3969"
  2042. },
  2043. "dist": {
  2044. "type": "zip",
  2045. "url": "https://api.github.com/repos/filamentphp/spatie-laravel-tags-plugin/zipball/69c933b272a0d39632d2a706f566a645638c3969",
  2046. "reference": "69c933b272a0d39632d2a706f566a645638c3969",
  2047. "shasum": ""
  2048. },
  2049. "require": {
  2050. "illuminate/database": "^10.0",
  2051. "php": "^8.1",
  2052. "spatie/laravel-tags": "^4.0"
  2053. },
  2054. "type": "library",
  2055. "autoload": {
  2056. "psr-4": {
  2057. "Filament\\": "src"
  2058. }
  2059. },
  2060. "notification-url": "https://packagist.org/downloads/",
  2061. "license": [
  2062. "MIT"
  2063. ],
  2064. "description": "Filament support for `spatie/laravel-tags`.",
  2065. "homepage": "https://github.com/filamentphp/filament",
  2066. "support": {
  2067. "issues": "https://github.com/filamentphp/filament/issues",
  2068. "source": "https://github.com/filamentphp/filament"
  2069. },
  2070. "time": "2024-01-29T13:20:09+00:00"
  2071. },
  2072. {
  2073. "name": "filament/support",
  2074. "version": "v3.2.34",
  2075. "source": {
  2076. "type": "git",
  2077. "url": "https://github.com/filamentphp/support.git",
  2078. "reference": "c2be482587352c21bd9dc215b2e489c3598a9a06"
  2079. },
  2080. "dist": {
  2081. "type": "zip",
  2082. "url": "https://api.github.com/repos/filamentphp/support/zipball/c2be482587352c21bd9dc215b2e489c3598a9a06",
  2083. "reference": "c2be482587352c21bd9dc215b2e489c3598a9a06",
  2084. "shasum": ""
  2085. },
  2086. "require": {
  2087. "blade-ui-kit/blade-heroicons": "^2.2.1",
  2088. "doctrine/dbal": "^3.2",
  2089. "ext-intl": "*",
  2090. "illuminate/contracts": "^10.0",
  2091. "illuminate/support": "^10.0",
  2092. "illuminate/view": "^10.0",
  2093. "livewire/livewire": "^3.2.3",
  2094. "php": "^8.1",
  2095. "ryangjchandler/blade-capture-directive": "^0.2|^0.3",
  2096. "spatie/color": "^1.5",
  2097. "spatie/invade": "^1.0|^2.0",
  2098. "spatie/laravel-package-tools": "^1.9",
  2099. "symfony/html-sanitizer": "^6.1"
  2100. },
  2101. "type": "library",
  2102. "extra": {
  2103. "laravel": {
  2104. "providers": [
  2105. "Filament\\Support\\SupportServiceProvider"
  2106. ]
  2107. }
  2108. },
  2109. "autoload": {
  2110. "files": [
  2111. "src/helpers.php"
  2112. ],
  2113. "psr-4": {
  2114. "Filament\\Support\\": "src"
  2115. }
  2116. },
  2117. "notification-url": "https://packagist.org/downloads/",
  2118. "license": [
  2119. "MIT"
  2120. ],
  2121. "description": "Core helper methods and foundation code for all Filament packages.",
  2122. "homepage": "https://github.com/filamentphp/filament",
  2123. "support": {
  2124. "issues": "https://github.com/filamentphp/filament/issues",
  2125. "source": "https://github.com/filamentphp/filament"
  2126. },
  2127. "time": "2024-02-13T06:30:24+00:00"
  2128. },
  2129. {
  2130. "name": "filament/tables",
  2131. "version": "v3.2.34",
  2132. "source": {
  2133. "type": "git",
  2134. "url": "https://github.com/filamentphp/tables.git",
  2135. "reference": "684cd0e83203f2ffc43f38451fd5a87df8f0c944"
  2136. },
  2137. "dist": {
  2138. "type": "zip",
  2139. "url": "https://api.github.com/repos/filamentphp/tables/zipball/684cd0e83203f2ffc43f38451fd5a87df8f0c944",
  2140. "reference": "684cd0e83203f2ffc43f38451fd5a87df8f0c944",
  2141. "shasum": ""
  2142. },
  2143. "require": {
  2144. "filament/actions": "self.version",
  2145. "filament/forms": "self.version",
  2146. "filament/support": "self.version",
  2147. "illuminate/console": "^10.0",
  2148. "illuminate/contracts": "^10.0",
  2149. "illuminate/database": "^10.0",
  2150. "illuminate/filesystem": "^10.0",
  2151. "illuminate/support": "^10.0",
  2152. "illuminate/view": "^10.0",
  2153. "kirschbaum-development/eloquent-power-joins": "^3.0",
  2154. "php": "^8.1",
  2155. "spatie/laravel-package-tools": "^1.9"
  2156. },
  2157. "type": "library",
  2158. "extra": {
  2159. "laravel": {
  2160. "providers": [
  2161. "Filament\\Tables\\TablesServiceProvider"
  2162. ]
  2163. }
  2164. },
  2165. "autoload": {
  2166. "psr-4": {
  2167. "Filament\\Tables\\": "src"
  2168. }
  2169. },
  2170. "notification-url": "https://packagist.org/downloads/",
  2171. "license": [
  2172. "MIT"
  2173. ],
  2174. "description": "Easily add beautiful tables to any Livewire component.",
  2175. "homepage": "https://github.com/filamentphp/filament",
  2176. "support": {
  2177. "issues": "https://github.com/filamentphp/filament/issues",
  2178. "source": "https://github.com/filamentphp/filament"
  2179. },
  2180. "time": "2024-02-13T11:57:12+00:00"
  2181. },
  2182. {
  2183. "name": "filament/widgets",
  2184. "version": "v3.2.34",
  2185. "source": {
  2186. "type": "git",
  2187. "url": "https://github.com/filamentphp/widgets.git",
  2188. "reference": "3aa945b635745c5731a9728134411d500cf3a30a"
  2189. },
  2190. "dist": {
  2191. "type": "zip",
  2192. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/3aa945b635745c5731a9728134411d500cf3a30a",
  2193. "reference": "3aa945b635745c5731a9728134411d500cf3a30a",
  2194. "shasum": ""
  2195. },
  2196. "require": {
  2197. "filament/support": "self.version",
  2198. "php": "^8.1",
  2199. "spatie/laravel-package-tools": "^1.9"
  2200. },
  2201. "type": "library",
  2202. "extra": {
  2203. "laravel": {
  2204. "providers": [
  2205. "Filament\\Widgets\\WidgetsServiceProvider"
  2206. ]
  2207. }
  2208. },
  2209. "autoload": {
  2210. "psr-4": {
  2211. "Filament\\Widgets\\": "src"
  2212. }
  2213. },
  2214. "notification-url": "https://packagist.org/downloads/",
  2215. "license": [
  2216. "MIT"
  2217. ],
  2218. "description": "Easily add beautiful dashboard widgets to any Livewire component.",
  2219. "homepage": "https://github.com/filamentphp/filament",
  2220. "support": {
  2221. "issues": "https://github.com/filamentphp/filament/issues",
  2222. "source": "https://github.com/filamentphp/filament"
  2223. },
  2224. "time": "2024-02-01T11:30:24+00:00"
  2225. },
  2226. {
  2227. "name": "fruitcake/php-cors",
  2228. "version": "v1.3.0",
  2229. "source": {
  2230. "type": "git",
  2231. "url": "https://github.com/fruitcake/php-cors.git",
  2232. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  2233. },
  2234. "dist": {
  2235. "type": "zip",
  2236. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  2237. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  2238. "shasum": ""
  2239. },
  2240. "require": {
  2241. "php": "^7.4|^8.0",
  2242. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  2243. },
  2244. "require-dev": {
  2245. "phpstan/phpstan": "^1.4",
  2246. "phpunit/phpunit": "^9",
  2247. "squizlabs/php_codesniffer": "^3.5"
  2248. },
  2249. "type": "library",
  2250. "extra": {
  2251. "branch-alias": {
  2252. "dev-master": "1.2-dev"
  2253. }
  2254. },
  2255. "autoload": {
  2256. "psr-4": {
  2257. "Fruitcake\\Cors\\": "src/"
  2258. }
  2259. },
  2260. "notification-url": "https://packagist.org/downloads/",
  2261. "license": [
  2262. "MIT"
  2263. ],
  2264. "authors": [
  2265. {
  2266. "name": "Fruitcake",
  2267. "homepage": "https://fruitcake.nl"
  2268. },
  2269. {
  2270. "name": "Barryvdh",
  2271. "email": "barryvdh@gmail.com"
  2272. }
  2273. ],
  2274. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  2275. "homepage": "https://github.com/fruitcake/php-cors",
  2276. "keywords": [
  2277. "cors",
  2278. "laravel",
  2279. "symfony"
  2280. ],
  2281. "support": {
  2282. "issues": "https://github.com/fruitcake/php-cors/issues",
  2283. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  2284. },
  2285. "funding": [
  2286. {
  2287. "url": "https://fruitcake.nl",
  2288. "type": "custom"
  2289. },
  2290. {
  2291. "url": "https://github.com/barryvdh",
  2292. "type": "github"
  2293. }
  2294. ],
  2295. "time": "2023-10-12T05:21:21+00:00"
  2296. },
  2297. {
  2298. "name": "graham-campbell/result-type",
  2299. "version": "v1.1.2",
  2300. "source": {
  2301. "type": "git",
  2302. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2303. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  2304. },
  2305. "dist": {
  2306. "type": "zip",
  2307. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  2308. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  2309. "shasum": ""
  2310. },
  2311. "require": {
  2312. "php": "^7.2.5 || ^8.0",
  2313. "phpoption/phpoption": "^1.9.2"
  2314. },
  2315. "require-dev": {
  2316. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  2317. },
  2318. "type": "library",
  2319. "autoload": {
  2320. "psr-4": {
  2321. "GrahamCampbell\\ResultType\\": "src/"
  2322. }
  2323. },
  2324. "notification-url": "https://packagist.org/downloads/",
  2325. "license": [
  2326. "MIT"
  2327. ],
  2328. "authors": [
  2329. {
  2330. "name": "Graham Campbell",
  2331. "email": "hello@gjcampbell.co.uk",
  2332. "homepage": "https://github.com/GrahamCampbell"
  2333. }
  2334. ],
  2335. "description": "An Implementation Of The Result Type",
  2336. "keywords": [
  2337. "Graham Campbell",
  2338. "GrahamCampbell",
  2339. "Result Type",
  2340. "Result-Type",
  2341. "result"
  2342. ],
  2343. "support": {
  2344. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2345. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  2346. },
  2347. "funding": [
  2348. {
  2349. "url": "https://github.com/GrahamCampbell",
  2350. "type": "github"
  2351. },
  2352. {
  2353. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2354. "type": "tidelift"
  2355. }
  2356. ],
  2357. "time": "2023-11-12T22:16:48+00:00"
  2358. },
  2359. {
  2360. "name": "guzzlehttp/guzzle",
  2361. "version": "7.8.1",
  2362. "source": {
  2363. "type": "git",
  2364. "url": "https://github.com/guzzle/guzzle.git",
  2365. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  2366. },
  2367. "dist": {
  2368. "type": "zip",
  2369. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  2370. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  2371. "shasum": ""
  2372. },
  2373. "require": {
  2374. "ext-json": "*",
  2375. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  2376. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  2377. "php": "^7.2.5 || ^8.0",
  2378. "psr/http-client": "^1.0",
  2379. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2380. },
  2381. "provide": {
  2382. "psr/http-client-implementation": "1.0"
  2383. },
  2384. "require-dev": {
  2385. "bamarni/composer-bin-plugin": "^1.8.2",
  2386. "ext-curl": "*",
  2387. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  2388. "php-http/message-factory": "^1.1",
  2389. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2390. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2391. },
  2392. "suggest": {
  2393. "ext-curl": "Required for CURL handler support",
  2394. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2395. "psr/log": "Required for using the Log middleware"
  2396. },
  2397. "type": "library",
  2398. "extra": {
  2399. "bamarni-bin": {
  2400. "bin-links": true,
  2401. "forward-command": false
  2402. }
  2403. },
  2404. "autoload": {
  2405. "files": [
  2406. "src/functions_include.php"
  2407. ],
  2408. "psr-4": {
  2409. "GuzzleHttp\\": "src/"
  2410. }
  2411. },
  2412. "notification-url": "https://packagist.org/downloads/",
  2413. "license": [
  2414. "MIT"
  2415. ],
  2416. "authors": [
  2417. {
  2418. "name": "Graham Campbell",
  2419. "email": "hello@gjcampbell.co.uk",
  2420. "homepage": "https://github.com/GrahamCampbell"
  2421. },
  2422. {
  2423. "name": "Michael Dowling",
  2424. "email": "mtdowling@gmail.com",
  2425. "homepage": "https://github.com/mtdowling"
  2426. },
  2427. {
  2428. "name": "Jeremy Lindblom",
  2429. "email": "jeremeamia@gmail.com",
  2430. "homepage": "https://github.com/jeremeamia"
  2431. },
  2432. {
  2433. "name": "George Mponos",
  2434. "email": "gmponos@gmail.com",
  2435. "homepage": "https://github.com/gmponos"
  2436. },
  2437. {
  2438. "name": "Tobias Nyholm",
  2439. "email": "tobias.nyholm@gmail.com",
  2440. "homepage": "https://github.com/Nyholm"
  2441. },
  2442. {
  2443. "name": "Márk Sági-Kazár",
  2444. "email": "mark.sagikazar@gmail.com",
  2445. "homepage": "https://github.com/sagikazarmark"
  2446. },
  2447. {
  2448. "name": "Tobias Schultze",
  2449. "email": "webmaster@tubo-world.de",
  2450. "homepage": "https://github.com/Tobion"
  2451. }
  2452. ],
  2453. "description": "Guzzle is a PHP HTTP client library",
  2454. "keywords": [
  2455. "client",
  2456. "curl",
  2457. "framework",
  2458. "http",
  2459. "http client",
  2460. "psr-18",
  2461. "psr-7",
  2462. "rest",
  2463. "web service"
  2464. ],
  2465. "support": {
  2466. "issues": "https://github.com/guzzle/guzzle/issues",
  2467. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  2468. },
  2469. "funding": [
  2470. {
  2471. "url": "https://github.com/GrahamCampbell",
  2472. "type": "github"
  2473. },
  2474. {
  2475. "url": "https://github.com/Nyholm",
  2476. "type": "github"
  2477. },
  2478. {
  2479. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2480. "type": "tidelift"
  2481. }
  2482. ],
  2483. "time": "2023-12-03T20:35:24+00:00"
  2484. },
  2485. {
  2486. "name": "guzzlehttp/promises",
  2487. "version": "2.0.2",
  2488. "source": {
  2489. "type": "git",
  2490. "url": "https://github.com/guzzle/promises.git",
  2491. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  2492. },
  2493. "dist": {
  2494. "type": "zip",
  2495. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  2496. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  2497. "shasum": ""
  2498. },
  2499. "require": {
  2500. "php": "^7.2.5 || ^8.0"
  2501. },
  2502. "require-dev": {
  2503. "bamarni/composer-bin-plugin": "^1.8.2",
  2504. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2505. },
  2506. "type": "library",
  2507. "extra": {
  2508. "bamarni-bin": {
  2509. "bin-links": true,
  2510. "forward-command": false
  2511. }
  2512. },
  2513. "autoload": {
  2514. "psr-4": {
  2515. "GuzzleHttp\\Promise\\": "src/"
  2516. }
  2517. },
  2518. "notification-url": "https://packagist.org/downloads/",
  2519. "license": [
  2520. "MIT"
  2521. ],
  2522. "authors": [
  2523. {
  2524. "name": "Graham Campbell",
  2525. "email": "hello@gjcampbell.co.uk",
  2526. "homepage": "https://github.com/GrahamCampbell"
  2527. },
  2528. {
  2529. "name": "Michael Dowling",
  2530. "email": "mtdowling@gmail.com",
  2531. "homepage": "https://github.com/mtdowling"
  2532. },
  2533. {
  2534. "name": "Tobias Nyholm",
  2535. "email": "tobias.nyholm@gmail.com",
  2536. "homepage": "https://github.com/Nyholm"
  2537. },
  2538. {
  2539. "name": "Tobias Schultze",
  2540. "email": "webmaster@tubo-world.de",
  2541. "homepage": "https://github.com/Tobion"
  2542. }
  2543. ],
  2544. "description": "Guzzle promises library",
  2545. "keywords": [
  2546. "promise"
  2547. ],
  2548. "support": {
  2549. "issues": "https://github.com/guzzle/promises/issues",
  2550. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  2551. },
  2552. "funding": [
  2553. {
  2554. "url": "https://github.com/GrahamCampbell",
  2555. "type": "github"
  2556. },
  2557. {
  2558. "url": "https://github.com/Nyholm",
  2559. "type": "github"
  2560. },
  2561. {
  2562. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2563. "type": "tidelift"
  2564. }
  2565. ],
  2566. "time": "2023-12-03T20:19:20+00:00"
  2567. },
  2568. {
  2569. "name": "guzzlehttp/psr7",
  2570. "version": "2.6.2",
  2571. "source": {
  2572. "type": "git",
  2573. "url": "https://github.com/guzzle/psr7.git",
  2574. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  2575. },
  2576. "dist": {
  2577. "type": "zip",
  2578. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2579. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2580. "shasum": ""
  2581. },
  2582. "require": {
  2583. "php": "^7.2.5 || ^8.0",
  2584. "psr/http-factory": "^1.0",
  2585. "psr/http-message": "^1.1 || ^2.0",
  2586. "ralouphie/getallheaders": "^3.0"
  2587. },
  2588. "provide": {
  2589. "psr/http-factory-implementation": "1.0",
  2590. "psr/http-message-implementation": "1.0"
  2591. },
  2592. "require-dev": {
  2593. "bamarni/composer-bin-plugin": "^1.8.2",
  2594. "http-interop/http-factory-tests": "^0.9",
  2595. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2596. },
  2597. "suggest": {
  2598. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2599. },
  2600. "type": "library",
  2601. "extra": {
  2602. "bamarni-bin": {
  2603. "bin-links": true,
  2604. "forward-command": false
  2605. }
  2606. },
  2607. "autoload": {
  2608. "psr-4": {
  2609. "GuzzleHttp\\Psr7\\": "src/"
  2610. }
  2611. },
  2612. "notification-url": "https://packagist.org/downloads/",
  2613. "license": [
  2614. "MIT"
  2615. ],
  2616. "authors": [
  2617. {
  2618. "name": "Graham Campbell",
  2619. "email": "hello@gjcampbell.co.uk",
  2620. "homepage": "https://github.com/GrahamCampbell"
  2621. },
  2622. {
  2623. "name": "Michael Dowling",
  2624. "email": "mtdowling@gmail.com",
  2625. "homepage": "https://github.com/mtdowling"
  2626. },
  2627. {
  2628. "name": "George Mponos",
  2629. "email": "gmponos@gmail.com",
  2630. "homepage": "https://github.com/gmponos"
  2631. },
  2632. {
  2633. "name": "Tobias Nyholm",
  2634. "email": "tobias.nyholm@gmail.com",
  2635. "homepage": "https://github.com/Nyholm"
  2636. },
  2637. {
  2638. "name": "Márk Sági-Kazár",
  2639. "email": "mark.sagikazar@gmail.com",
  2640. "homepage": "https://github.com/sagikazarmark"
  2641. },
  2642. {
  2643. "name": "Tobias Schultze",
  2644. "email": "webmaster@tubo-world.de",
  2645. "homepage": "https://github.com/Tobion"
  2646. },
  2647. {
  2648. "name": "Márk Sági-Kazár",
  2649. "email": "mark.sagikazar@gmail.com",
  2650. "homepage": "https://sagikazarmark.hu"
  2651. }
  2652. ],
  2653. "description": "PSR-7 message implementation that also provides common utility methods",
  2654. "keywords": [
  2655. "http",
  2656. "message",
  2657. "psr-7",
  2658. "request",
  2659. "response",
  2660. "stream",
  2661. "uri",
  2662. "url"
  2663. ],
  2664. "support": {
  2665. "issues": "https://github.com/guzzle/psr7/issues",
  2666. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  2667. },
  2668. "funding": [
  2669. {
  2670. "url": "https://github.com/GrahamCampbell",
  2671. "type": "github"
  2672. },
  2673. {
  2674. "url": "https://github.com/Nyholm",
  2675. "type": "github"
  2676. },
  2677. {
  2678. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2679. "type": "tidelift"
  2680. }
  2681. ],
  2682. "time": "2023-12-03T20:05:35+00:00"
  2683. },
  2684. {
  2685. "name": "guzzlehttp/uri-template",
  2686. "version": "v1.0.3",
  2687. "source": {
  2688. "type": "git",
  2689. "url": "https://github.com/guzzle/uri-template.git",
  2690. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  2691. },
  2692. "dist": {
  2693. "type": "zip",
  2694. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2695. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2696. "shasum": ""
  2697. },
  2698. "require": {
  2699. "php": "^7.2.5 || ^8.0",
  2700. "symfony/polyfill-php80": "^1.24"
  2701. },
  2702. "require-dev": {
  2703. "bamarni/composer-bin-plugin": "^1.8.2",
  2704. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2705. "uri-template/tests": "1.0.0"
  2706. },
  2707. "type": "library",
  2708. "extra": {
  2709. "bamarni-bin": {
  2710. "bin-links": true,
  2711. "forward-command": false
  2712. }
  2713. },
  2714. "autoload": {
  2715. "psr-4": {
  2716. "GuzzleHttp\\UriTemplate\\": "src"
  2717. }
  2718. },
  2719. "notification-url": "https://packagist.org/downloads/",
  2720. "license": [
  2721. "MIT"
  2722. ],
  2723. "authors": [
  2724. {
  2725. "name": "Graham Campbell",
  2726. "email": "hello@gjcampbell.co.uk",
  2727. "homepage": "https://github.com/GrahamCampbell"
  2728. },
  2729. {
  2730. "name": "Michael Dowling",
  2731. "email": "mtdowling@gmail.com",
  2732. "homepage": "https://github.com/mtdowling"
  2733. },
  2734. {
  2735. "name": "George Mponos",
  2736. "email": "gmponos@gmail.com",
  2737. "homepage": "https://github.com/gmponos"
  2738. },
  2739. {
  2740. "name": "Tobias Nyholm",
  2741. "email": "tobias.nyholm@gmail.com",
  2742. "homepage": "https://github.com/Nyholm"
  2743. }
  2744. ],
  2745. "description": "A polyfill class for uri_template of PHP",
  2746. "keywords": [
  2747. "guzzlehttp",
  2748. "uri-template"
  2749. ],
  2750. "support": {
  2751. "issues": "https://github.com/guzzle/uri-template/issues",
  2752. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  2753. },
  2754. "funding": [
  2755. {
  2756. "url": "https://github.com/GrahamCampbell",
  2757. "type": "github"
  2758. },
  2759. {
  2760. "url": "https://github.com/Nyholm",
  2761. "type": "github"
  2762. },
  2763. {
  2764. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2765. "type": "tidelift"
  2766. }
  2767. ],
  2768. "time": "2023-12-03T19:50:20+00:00"
  2769. },
  2770. {
  2771. "name": "kirschbaum-development/eloquent-power-joins",
  2772. "version": "3.5.0",
  2773. "source": {
  2774. "type": "git",
  2775. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  2776. "reference": "13feb3692ab6c0475b2c05de131d5f5822fb250a"
  2777. },
  2778. "dist": {
  2779. "type": "zip",
  2780. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/13feb3692ab6c0475b2c05de131d5f5822fb250a",
  2781. "reference": "13feb3692ab6c0475b2c05de131d5f5822fb250a",
  2782. "shasum": ""
  2783. },
  2784. "require": {
  2785. "illuminate/database": "^8.0|^9.0|^10.0|^11.0",
  2786. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  2787. "php": "^8.0"
  2788. },
  2789. "require-dev": {
  2790. "laravel/legacy-factories": "^1.0@dev",
  2791. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  2792. "phpunit/phpunit": "^8.0|^9.0|^10.0"
  2793. },
  2794. "type": "library",
  2795. "extra": {
  2796. "laravel": {
  2797. "providers": [
  2798. "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider"
  2799. ]
  2800. }
  2801. },
  2802. "autoload": {
  2803. "psr-4": {
  2804. "Kirschbaum\\PowerJoins\\": "src"
  2805. }
  2806. },
  2807. "notification-url": "https://packagist.org/downloads/",
  2808. "license": [
  2809. "MIT"
  2810. ],
  2811. "authors": [
  2812. {
  2813. "name": "Luis Dalmolin",
  2814. "email": "luis.nh@gmail.com",
  2815. "role": "Developer"
  2816. }
  2817. ],
  2818. "description": "The Laravel magic applied to joins.",
  2819. "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins",
  2820. "keywords": [
  2821. "eloquent",
  2822. "join",
  2823. "laravel",
  2824. "mysql"
  2825. ],
  2826. "support": {
  2827. "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
  2828. "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/3.5.0"
  2829. },
  2830. "time": "2024-02-13T15:40:14+00:00"
  2831. },
  2832. {
  2833. "name": "laravel/framework",
  2834. "version": "v10.44.0",
  2835. "source": {
  2836. "type": "git",
  2837. "url": "https://github.com/laravel/framework.git",
  2838. "reference": "1199dbe361787bbe9648131a79f53921b4148cf6"
  2839. },
  2840. "dist": {
  2841. "type": "zip",
  2842. "url": "https://api.github.com/repos/laravel/framework/zipball/1199dbe361787bbe9648131a79f53921b4148cf6",
  2843. "reference": "1199dbe361787bbe9648131a79f53921b4148cf6",
  2844. "shasum": ""
  2845. },
  2846. "require": {
  2847. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  2848. "composer-runtime-api": "^2.2",
  2849. "doctrine/inflector": "^2.0.5",
  2850. "dragonmantank/cron-expression": "^3.3.2",
  2851. "egulias/email-validator": "^3.2.1|^4.0",
  2852. "ext-ctype": "*",
  2853. "ext-filter": "*",
  2854. "ext-hash": "*",
  2855. "ext-mbstring": "*",
  2856. "ext-openssl": "*",
  2857. "ext-session": "*",
  2858. "ext-tokenizer": "*",
  2859. "fruitcake/php-cors": "^1.2",
  2860. "guzzlehttp/uri-template": "^1.0",
  2861. "laravel/prompts": "^0.1.9",
  2862. "laravel/serializable-closure": "^1.3",
  2863. "league/commonmark": "^2.2.1",
  2864. "league/flysystem": "^3.8.0",
  2865. "monolog/monolog": "^3.0",
  2866. "nesbot/carbon": "^2.67",
  2867. "nunomaduro/termwind": "^1.13",
  2868. "php": "^8.1",
  2869. "psr/container": "^1.1.1|^2.0.1",
  2870. "psr/log": "^1.0|^2.0|^3.0",
  2871. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2872. "ramsey/uuid": "^4.7",
  2873. "symfony/console": "^6.2",
  2874. "symfony/error-handler": "^6.2",
  2875. "symfony/finder": "^6.2",
  2876. "symfony/http-foundation": "^6.4",
  2877. "symfony/http-kernel": "^6.2",
  2878. "symfony/mailer": "^6.2",
  2879. "symfony/mime": "^6.2",
  2880. "symfony/process": "^6.2",
  2881. "symfony/routing": "^6.2",
  2882. "symfony/uid": "^6.2",
  2883. "symfony/var-dumper": "^6.2",
  2884. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2885. "vlucas/phpdotenv": "^5.4.1",
  2886. "voku/portable-ascii": "^2.0"
  2887. },
  2888. "conflict": {
  2889. "carbonphp/carbon-doctrine-types": ">=3.0",
  2890. "doctrine/dbal": ">=4.0",
  2891. "phpunit/phpunit": ">=11.0.0",
  2892. "tightenco/collect": "<5.5.33"
  2893. },
  2894. "provide": {
  2895. "psr/container-implementation": "1.1|2.0",
  2896. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2897. },
  2898. "replace": {
  2899. "illuminate/auth": "self.version",
  2900. "illuminate/broadcasting": "self.version",
  2901. "illuminate/bus": "self.version",
  2902. "illuminate/cache": "self.version",
  2903. "illuminate/collections": "self.version",
  2904. "illuminate/conditionable": "self.version",
  2905. "illuminate/config": "self.version",
  2906. "illuminate/console": "self.version",
  2907. "illuminate/container": "self.version",
  2908. "illuminate/contracts": "self.version",
  2909. "illuminate/cookie": "self.version",
  2910. "illuminate/database": "self.version",
  2911. "illuminate/encryption": "self.version",
  2912. "illuminate/events": "self.version",
  2913. "illuminate/filesystem": "self.version",
  2914. "illuminate/hashing": "self.version",
  2915. "illuminate/http": "self.version",
  2916. "illuminate/log": "self.version",
  2917. "illuminate/macroable": "self.version",
  2918. "illuminate/mail": "self.version",
  2919. "illuminate/notifications": "self.version",
  2920. "illuminate/pagination": "self.version",
  2921. "illuminate/pipeline": "self.version",
  2922. "illuminate/process": "self.version",
  2923. "illuminate/queue": "self.version",
  2924. "illuminate/redis": "self.version",
  2925. "illuminate/routing": "self.version",
  2926. "illuminate/session": "self.version",
  2927. "illuminate/support": "self.version",
  2928. "illuminate/testing": "self.version",
  2929. "illuminate/translation": "self.version",
  2930. "illuminate/validation": "self.version",
  2931. "illuminate/view": "self.version"
  2932. },
  2933. "require-dev": {
  2934. "ably/ably-php": "^1.0",
  2935. "aws/aws-sdk-php": "^3.235.5",
  2936. "doctrine/dbal": "^3.5.1",
  2937. "ext-gmp": "*",
  2938. "fakerphp/faker": "^1.21",
  2939. "guzzlehttp/guzzle": "^7.5",
  2940. "league/flysystem-aws-s3-v3": "^3.0",
  2941. "league/flysystem-ftp": "^3.0",
  2942. "league/flysystem-path-prefixing": "^3.3",
  2943. "league/flysystem-read-only": "^3.3",
  2944. "league/flysystem-sftp-v3": "^3.0",
  2945. "mockery/mockery": "^1.5.1",
  2946. "nyholm/psr7": "^1.2",
  2947. "orchestra/testbench-core": "^8.18",
  2948. "pda/pheanstalk": "^4.0",
  2949. "phpstan/phpstan": "^1.4.7",
  2950. "phpunit/phpunit": "^10.0.7",
  2951. "predis/predis": "^2.0.2",
  2952. "symfony/cache": "^6.2",
  2953. "symfony/http-client": "^6.2.4",
  2954. "symfony/psr-http-message-bridge": "^2.0"
  2955. },
  2956. "suggest": {
  2957. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2958. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  2959. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2960. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).",
  2961. "ext-apcu": "Required to use the APC cache driver.",
  2962. "ext-fileinfo": "Required to use the Filesystem class.",
  2963. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2964. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2965. "ext-memcached": "Required to use the memcache cache driver.",
  2966. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2967. "ext-pdo": "Required to use all database features.",
  2968. "ext-posix": "Required to use all features of the queue worker.",
  2969. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2970. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2971. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2972. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  2973. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2974. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  2975. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  2976. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  2977. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  2978. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  2979. "mockery/mockery": "Required to use mocking (^1.5.1).",
  2980. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2981. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2982. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).",
  2983. "predis/predis": "Required to use the predis connector (^2.0.2).",
  2984. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2985. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2986. "symfony/cache": "Required to PSR-6 cache bridge (^6.2).",
  2987. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).",
  2988. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).",
  2989. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).",
  2990. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).",
  2991. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  2992. },
  2993. "type": "library",
  2994. "extra": {
  2995. "branch-alias": {
  2996. "dev-master": "10.x-dev"
  2997. }
  2998. },
  2999. "autoload": {
  3000. "files": [
  3001. "src/Illuminate/Collections/helpers.php",
  3002. "src/Illuminate/Events/functions.php",
  3003. "src/Illuminate/Filesystem/functions.php",
  3004. "src/Illuminate/Foundation/helpers.php",
  3005. "src/Illuminate/Support/helpers.php"
  3006. ],
  3007. "psr-4": {
  3008. "Illuminate\\": "src/Illuminate/",
  3009. "Illuminate\\Support\\": [
  3010. "src/Illuminate/Macroable/",
  3011. "src/Illuminate/Collections/",
  3012. "src/Illuminate/Conditionable/"
  3013. ]
  3014. }
  3015. },
  3016. "notification-url": "https://packagist.org/downloads/",
  3017. "license": [
  3018. "MIT"
  3019. ],
  3020. "authors": [
  3021. {
  3022. "name": "Taylor Otwell",
  3023. "email": "taylor@laravel.com"
  3024. }
  3025. ],
  3026. "description": "The Laravel Framework.",
  3027. "homepage": "https://laravel.com",
  3028. "keywords": [
  3029. "framework",
  3030. "laravel"
  3031. ],
  3032. "support": {
  3033. "issues": "https://github.com/laravel/framework/issues",
  3034. "source": "https://github.com/laravel/framework"
  3035. },
  3036. "time": "2024-02-13T16:01:16+00:00"
  3037. },
  3038. {
  3039. "name": "laravel/prompts",
  3040. "version": "v0.1.15",
  3041. "source": {
  3042. "type": "git",
  3043. "url": "https://github.com/laravel/prompts.git",
  3044. "reference": "d814a27514d99b03c85aa42b22cfd946568636c1"
  3045. },
  3046. "dist": {
  3047. "type": "zip",
  3048. "url": "https://api.github.com/repos/laravel/prompts/zipball/d814a27514d99b03c85aa42b22cfd946568636c1",
  3049. "reference": "d814a27514d99b03c85aa42b22cfd946568636c1",
  3050. "shasum": ""
  3051. },
  3052. "require": {
  3053. "ext-mbstring": "*",
  3054. "illuminate/collections": "^10.0|^11.0",
  3055. "php": "^8.1",
  3056. "symfony/console": "^6.2|^7.0"
  3057. },
  3058. "conflict": {
  3059. "illuminate/console": ">=10.17.0 <10.25.0",
  3060. "laravel/framework": ">=10.17.0 <10.25.0"
  3061. },
  3062. "require-dev": {
  3063. "mockery/mockery": "^1.5",
  3064. "pestphp/pest": "^2.3",
  3065. "phpstan/phpstan": "^1.11",
  3066. "phpstan/phpstan-mockery": "^1.1"
  3067. },
  3068. "suggest": {
  3069. "ext-pcntl": "Required for the spinner to be animated."
  3070. },
  3071. "type": "library",
  3072. "extra": {
  3073. "branch-alias": {
  3074. "dev-main": "0.1.x-dev"
  3075. }
  3076. },
  3077. "autoload": {
  3078. "files": [
  3079. "src/helpers.php"
  3080. ],
  3081. "psr-4": {
  3082. "Laravel\\Prompts\\": "src/"
  3083. }
  3084. },
  3085. "notification-url": "https://packagist.org/downloads/",
  3086. "license": [
  3087. "MIT"
  3088. ],
  3089. "support": {
  3090. "issues": "https://github.com/laravel/prompts/issues",
  3091. "source": "https://github.com/laravel/prompts/tree/v0.1.15"
  3092. },
  3093. "time": "2023-12-29T22:37:42+00:00"
  3094. },
  3095. {
  3096. "name": "laravel/sanctum",
  3097. "version": "v3.3.3",
  3098. "source": {
  3099. "type": "git",
  3100. "url": "https://github.com/laravel/sanctum.git",
  3101. "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5"
  3102. },
  3103. "dist": {
  3104. "type": "zip",
  3105. "url": "https://api.github.com/repos/laravel/sanctum/zipball/8c104366459739f3ada0e994bcd3e6fd681ce3d5",
  3106. "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5",
  3107. "shasum": ""
  3108. },
  3109. "require": {
  3110. "ext-json": "*",
  3111. "illuminate/console": "^9.21|^10.0",
  3112. "illuminate/contracts": "^9.21|^10.0",
  3113. "illuminate/database": "^9.21|^10.0",
  3114. "illuminate/support": "^9.21|^10.0",
  3115. "php": "^8.0.2"
  3116. },
  3117. "require-dev": {
  3118. "mockery/mockery": "^1.0",
  3119. "orchestra/testbench": "^7.28.2|^8.8.3",
  3120. "phpstan/phpstan": "^1.10",
  3121. "phpunit/phpunit": "^9.6"
  3122. },
  3123. "type": "library",
  3124. "extra": {
  3125. "branch-alias": {
  3126. "dev-master": "3.x-dev"
  3127. },
  3128. "laravel": {
  3129. "providers": [
  3130. "Laravel\\Sanctum\\SanctumServiceProvider"
  3131. ]
  3132. }
  3133. },
  3134. "autoload": {
  3135. "psr-4": {
  3136. "Laravel\\Sanctum\\": "src/"
  3137. }
  3138. },
  3139. "notification-url": "https://packagist.org/downloads/",
  3140. "license": [
  3141. "MIT"
  3142. ],
  3143. "authors": [
  3144. {
  3145. "name": "Taylor Otwell",
  3146. "email": "taylor@laravel.com"
  3147. }
  3148. ],
  3149. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3150. "keywords": [
  3151. "auth",
  3152. "laravel",
  3153. "sanctum"
  3154. ],
  3155. "support": {
  3156. "issues": "https://github.com/laravel/sanctum/issues",
  3157. "source": "https://github.com/laravel/sanctum"
  3158. },
  3159. "time": "2023-12-19T18:44:48+00:00"
  3160. },
  3161. {
  3162. "name": "laravel/serializable-closure",
  3163. "version": "v1.3.3",
  3164. "source": {
  3165. "type": "git",
  3166. "url": "https://github.com/laravel/serializable-closure.git",
  3167. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  3168. },
  3169. "dist": {
  3170. "type": "zip",
  3171. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  3172. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  3173. "shasum": ""
  3174. },
  3175. "require": {
  3176. "php": "^7.3|^8.0"
  3177. },
  3178. "require-dev": {
  3179. "nesbot/carbon": "^2.61",
  3180. "pestphp/pest": "^1.21.3",
  3181. "phpstan/phpstan": "^1.8.2",
  3182. "symfony/var-dumper": "^5.4.11"
  3183. },
  3184. "type": "library",
  3185. "extra": {
  3186. "branch-alias": {
  3187. "dev-master": "1.x-dev"
  3188. }
  3189. },
  3190. "autoload": {
  3191. "psr-4": {
  3192. "Laravel\\SerializableClosure\\": "src/"
  3193. }
  3194. },
  3195. "notification-url": "https://packagist.org/downloads/",
  3196. "license": [
  3197. "MIT"
  3198. ],
  3199. "authors": [
  3200. {
  3201. "name": "Taylor Otwell",
  3202. "email": "taylor@laravel.com"
  3203. },
  3204. {
  3205. "name": "Nuno Maduro",
  3206. "email": "nuno@laravel.com"
  3207. }
  3208. ],
  3209. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3210. "keywords": [
  3211. "closure",
  3212. "laravel",
  3213. "serializable"
  3214. ],
  3215. "support": {
  3216. "issues": "https://github.com/laravel/serializable-closure/issues",
  3217. "source": "https://github.com/laravel/serializable-closure"
  3218. },
  3219. "time": "2023-11-08T14:08:06+00:00"
  3220. },
  3221. {
  3222. "name": "laravel/socialite",
  3223. "version": "v5.12.1",
  3224. "source": {
  3225. "type": "git",
  3226. "url": "https://github.com/laravel/socialite.git",
  3227. "reference": "7dae1b072573809f32ab6dcf4aebb57c8b3e8acf"
  3228. },
  3229. "dist": {
  3230. "type": "zip",
  3231. "url": "https://api.github.com/repos/laravel/socialite/zipball/7dae1b072573809f32ab6dcf4aebb57c8b3e8acf",
  3232. "reference": "7dae1b072573809f32ab6dcf4aebb57c8b3e8acf",
  3233. "shasum": ""
  3234. },
  3235. "require": {
  3236. "ext-json": "*",
  3237. "guzzlehttp/guzzle": "^6.0|^7.0",
  3238. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3239. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3240. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3241. "league/oauth1-client": "^1.10.1",
  3242. "php": "^7.2|^8.0"
  3243. },
  3244. "require-dev": {
  3245. "mockery/mockery": "^1.0",
  3246. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  3247. "phpstan/phpstan": "^1.10",
  3248. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  3249. },
  3250. "type": "library",
  3251. "extra": {
  3252. "branch-alias": {
  3253. "dev-master": "5.x-dev"
  3254. },
  3255. "laravel": {
  3256. "providers": [
  3257. "Laravel\\Socialite\\SocialiteServiceProvider"
  3258. ],
  3259. "aliases": {
  3260. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3261. }
  3262. }
  3263. },
  3264. "autoload": {
  3265. "psr-4": {
  3266. "Laravel\\Socialite\\": "src/"
  3267. }
  3268. },
  3269. "notification-url": "https://packagist.org/downloads/",
  3270. "license": [
  3271. "MIT"
  3272. ],
  3273. "authors": [
  3274. {
  3275. "name": "Taylor Otwell",
  3276. "email": "taylor@laravel.com"
  3277. }
  3278. ],
  3279. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3280. "homepage": "https://laravel.com",
  3281. "keywords": [
  3282. "laravel",
  3283. "oauth"
  3284. ],
  3285. "support": {
  3286. "issues": "https://github.com/laravel/socialite/issues",
  3287. "source": "https://github.com/laravel/socialite"
  3288. },
  3289. "time": "2024-02-16T08:58:20+00:00"
  3290. },
  3291. {
  3292. "name": "laravel/tinker",
  3293. "version": "v2.9.0",
  3294. "source": {
  3295. "type": "git",
  3296. "url": "https://github.com/laravel/tinker.git",
  3297. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  3298. },
  3299. "dist": {
  3300. "type": "zip",
  3301. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  3302. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  3303. "shasum": ""
  3304. },
  3305. "require": {
  3306. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3307. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3308. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3309. "php": "^7.2.5|^8.0",
  3310. "psy/psysh": "^0.11.1|^0.12.0",
  3311. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3312. },
  3313. "require-dev": {
  3314. "mockery/mockery": "~1.3.3|^1.4.2",
  3315. "phpstan/phpstan": "^1.10",
  3316. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3317. },
  3318. "suggest": {
  3319. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  3320. },
  3321. "type": "library",
  3322. "extra": {
  3323. "laravel": {
  3324. "providers": [
  3325. "Laravel\\Tinker\\TinkerServiceProvider"
  3326. ]
  3327. }
  3328. },
  3329. "autoload": {
  3330. "psr-4": {
  3331. "Laravel\\Tinker\\": "src/"
  3332. }
  3333. },
  3334. "notification-url": "https://packagist.org/downloads/",
  3335. "license": [
  3336. "MIT"
  3337. ],
  3338. "authors": [
  3339. {
  3340. "name": "Taylor Otwell",
  3341. "email": "taylor@laravel.com"
  3342. }
  3343. ],
  3344. "description": "Powerful REPL for the Laravel framework.",
  3345. "keywords": [
  3346. "REPL",
  3347. "Tinker",
  3348. "laravel",
  3349. "psysh"
  3350. ],
  3351. "support": {
  3352. "issues": "https://github.com/laravel/tinker/issues",
  3353. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  3354. },
  3355. "time": "2024-01-04T16:10:04+00:00"
  3356. },
  3357. {
  3358. "name": "league/commonmark",
  3359. "version": "2.4.2",
  3360. "source": {
  3361. "type": "git",
  3362. "url": "https://github.com/thephpleague/commonmark.git",
  3363. "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf"
  3364. },
  3365. "dist": {
  3366. "type": "zip",
  3367. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/91c24291965bd6d7c46c46a12ba7492f83b1cadf",
  3368. "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf",
  3369. "shasum": ""
  3370. },
  3371. "require": {
  3372. "ext-mbstring": "*",
  3373. "league/config": "^1.1.1",
  3374. "php": "^7.4 || ^8.0",
  3375. "psr/event-dispatcher": "^1.0",
  3376. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3377. "symfony/polyfill-php80": "^1.16"
  3378. },
  3379. "require-dev": {
  3380. "cebe/markdown": "^1.0",
  3381. "commonmark/cmark": "0.30.3",
  3382. "commonmark/commonmark.js": "0.30.0",
  3383. "composer/package-versions-deprecated": "^1.8",
  3384. "embed/embed": "^4.4",
  3385. "erusev/parsedown": "^1.0",
  3386. "ext-json": "*",
  3387. "github/gfm": "0.29.0",
  3388. "michelf/php-markdown": "^1.4 || ^2.0",
  3389. "nyholm/psr7": "^1.5",
  3390. "phpstan/phpstan": "^1.8.2",
  3391. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3392. "scrutinizer/ocular": "^1.8.1",
  3393. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  3394. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  3395. "unleashedtech/php-coding-standard": "^3.1.1",
  3396. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3397. },
  3398. "suggest": {
  3399. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3400. },
  3401. "type": "library",
  3402. "extra": {
  3403. "branch-alias": {
  3404. "dev-main": "2.5-dev"
  3405. }
  3406. },
  3407. "autoload": {
  3408. "psr-4": {
  3409. "League\\CommonMark\\": "src"
  3410. }
  3411. },
  3412. "notification-url": "https://packagist.org/downloads/",
  3413. "license": [
  3414. "BSD-3-Clause"
  3415. ],
  3416. "authors": [
  3417. {
  3418. "name": "Colin O'Dell",
  3419. "email": "colinodell@gmail.com",
  3420. "homepage": "https://www.colinodell.com",
  3421. "role": "Lead Developer"
  3422. }
  3423. ],
  3424. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3425. "homepage": "https://commonmark.thephpleague.com",
  3426. "keywords": [
  3427. "commonmark",
  3428. "flavored",
  3429. "gfm",
  3430. "github",
  3431. "github-flavored",
  3432. "markdown",
  3433. "md",
  3434. "parser"
  3435. ],
  3436. "support": {
  3437. "docs": "https://commonmark.thephpleague.com/",
  3438. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3439. "issues": "https://github.com/thephpleague/commonmark/issues",
  3440. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3441. "source": "https://github.com/thephpleague/commonmark"
  3442. },
  3443. "funding": [
  3444. {
  3445. "url": "https://www.colinodell.com/sponsor",
  3446. "type": "custom"
  3447. },
  3448. {
  3449. "url": "https://www.paypal.me/colinpodell/10.00",
  3450. "type": "custom"
  3451. },
  3452. {
  3453. "url": "https://github.com/colinodell",
  3454. "type": "github"
  3455. },
  3456. {
  3457. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3458. "type": "tidelift"
  3459. }
  3460. ],
  3461. "time": "2024-02-02T11:59:32+00:00"
  3462. },
  3463. {
  3464. "name": "league/config",
  3465. "version": "v1.2.0",
  3466. "source": {
  3467. "type": "git",
  3468. "url": "https://github.com/thephpleague/config.git",
  3469. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3470. },
  3471. "dist": {
  3472. "type": "zip",
  3473. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3474. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3475. "shasum": ""
  3476. },
  3477. "require": {
  3478. "dflydev/dot-access-data": "^3.0.1",
  3479. "nette/schema": "^1.2",
  3480. "php": "^7.4 || ^8.0"
  3481. },
  3482. "require-dev": {
  3483. "phpstan/phpstan": "^1.8.2",
  3484. "phpunit/phpunit": "^9.5.5",
  3485. "scrutinizer/ocular": "^1.8.1",
  3486. "unleashedtech/php-coding-standard": "^3.1",
  3487. "vimeo/psalm": "^4.7.3"
  3488. },
  3489. "type": "library",
  3490. "extra": {
  3491. "branch-alias": {
  3492. "dev-main": "1.2-dev"
  3493. }
  3494. },
  3495. "autoload": {
  3496. "psr-4": {
  3497. "League\\Config\\": "src"
  3498. }
  3499. },
  3500. "notification-url": "https://packagist.org/downloads/",
  3501. "license": [
  3502. "BSD-3-Clause"
  3503. ],
  3504. "authors": [
  3505. {
  3506. "name": "Colin O'Dell",
  3507. "email": "colinodell@gmail.com",
  3508. "homepage": "https://www.colinodell.com",
  3509. "role": "Lead Developer"
  3510. }
  3511. ],
  3512. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3513. "homepage": "https://config.thephpleague.com",
  3514. "keywords": [
  3515. "array",
  3516. "config",
  3517. "configuration",
  3518. "dot",
  3519. "dot-access",
  3520. "nested",
  3521. "schema"
  3522. ],
  3523. "support": {
  3524. "docs": "https://config.thephpleague.com/",
  3525. "issues": "https://github.com/thephpleague/config/issues",
  3526. "rss": "https://github.com/thephpleague/config/releases.atom",
  3527. "source": "https://github.com/thephpleague/config"
  3528. },
  3529. "funding": [
  3530. {
  3531. "url": "https://www.colinodell.com/sponsor",
  3532. "type": "custom"
  3533. },
  3534. {
  3535. "url": "https://www.paypal.me/colinpodell/10.00",
  3536. "type": "custom"
  3537. },
  3538. {
  3539. "url": "https://github.com/colinodell",
  3540. "type": "github"
  3541. }
  3542. ],
  3543. "time": "2022-12-11T20:36:23+00:00"
  3544. },
  3545. {
  3546. "name": "league/csv",
  3547. "version": "9.14.0",
  3548. "source": {
  3549. "type": "git",
  3550. "url": "https://github.com/thephpleague/csv.git",
  3551. "reference": "34bf0df7340b60824b9449b5c526fcc3325070d5"
  3552. },
  3553. "dist": {
  3554. "type": "zip",
  3555. "url": "https://api.github.com/repos/thephpleague/csv/zipball/34bf0df7340b60824b9449b5c526fcc3325070d5",
  3556. "reference": "34bf0df7340b60824b9449b5c526fcc3325070d5",
  3557. "shasum": ""
  3558. },
  3559. "require": {
  3560. "ext-filter": "*",
  3561. "ext-json": "*",
  3562. "ext-mbstring": "*",
  3563. "php": "^8.1.2"
  3564. },
  3565. "require-dev": {
  3566. "doctrine/collections": "^2.1.4",
  3567. "ext-dom": "*",
  3568. "ext-xdebug": "*",
  3569. "friendsofphp/php-cs-fixer": "^v3.22.0",
  3570. "phpbench/phpbench": "^1.2.15",
  3571. "phpstan/phpstan": "^1.10.50",
  3572. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  3573. "phpstan/phpstan-phpunit": "^1.3.15",
  3574. "phpstan/phpstan-strict-rules": "^1.5.2",
  3575. "phpunit/phpunit": "^10.5.3",
  3576. "symfony/var-dumper": "^6.4.0"
  3577. },
  3578. "suggest": {
  3579. "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
  3580. "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters"
  3581. },
  3582. "type": "library",
  3583. "extra": {
  3584. "branch-alias": {
  3585. "dev-master": "9.x-dev"
  3586. }
  3587. },
  3588. "autoload": {
  3589. "files": [
  3590. "src/functions_include.php"
  3591. ],
  3592. "psr-4": {
  3593. "League\\Csv\\": "src"
  3594. }
  3595. },
  3596. "notification-url": "https://packagist.org/downloads/",
  3597. "license": [
  3598. "MIT"
  3599. ],
  3600. "authors": [
  3601. {
  3602. "name": "Ignace Nyamagana Butera",
  3603. "email": "nyamsprod@gmail.com",
  3604. "homepage": "https://github.com/nyamsprod/",
  3605. "role": "Developer"
  3606. }
  3607. ],
  3608. "description": "CSV data manipulation made easy in PHP",
  3609. "homepage": "https://csv.thephpleague.com",
  3610. "keywords": [
  3611. "convert",
  3612. "csv",
  3613. "export",
  3614. "filter",
  3615. "import",
  3616. "read",
  3617. "transform",
  3618. "write"
  3619. ],
  3620. "support": {
  3621. "docs": "https://csv.thephpleague.com",
  3622. "issues": "https://github.com/thephpleague/csv/issues",
  3623. "rss": "https://github.com/thephpleague/csv/releases.atom",
  3624. "source": "https://github.com/thephpleague/csv"
  3625. },
  3626. "funding": [
  3627. {
  3628. "url": "https://github.com/sponsors/nyamsprod",
  3629. "type": "github"
  3630. }
  3631. ],
  3632. "time": "2023-12-29T07:34:53+00:00"
  3633. },
  3634. {
  3635. "name": "league/flysystem",
  3636. "version": "3.24.0",
  3637. "source": {
  3638. "type": "git",
  3639. "url": "https://github.com/thephpleague/flysystem.git",
  3640. "reference": "b25a361508c407563b34fac6f64a8a17a8819675"
  3641. },
  3642. "dist": {
  3643. "type": "zip",
  3644. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/b25a361508c407563b34fac6f64a8a17a8819675",
  3645. "reference": "b25a361508c407563b34fac6f64a8a17a8819675",
  3646. "shasum": ""
  3647. },
  3648. "require": {
  3649. "league/flysystem-local": "^3.0.0",
  3650. "league/mime-type-detection": "^1.0.0",
  3651. "php": "^8.0.2"
  3652. },
  3653. "conflict": {
  3654. "async-aws/core": "<1.19.0",
  3655. "async-aws/s3": "<1.14.0",
  3656. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3657. "guzzlehttp/guzzle": "<7.0",
  3658. "guzzlehttp/ringphp": "<1.1.1",
  3659. "phpseclib/phpseclib": "3.0.15",
  3660. "symfony/http-client": "<5.2"
  3661. },
  3662. "require-dev": {
  3663. "async-aws/s3": "^1.5 || ^2.0",
  3664. "async-aws/simple-s3": "^1.1 || ^2.0",
  3665. "aws/aws-sdk-php": "^3.295.10",
  3666. "composer/semver": "^3.0",
  3667. "ext-fileinfo": "*",
  3668. "ext-ftp": "*",
  3669. "ext-zip": "*",
  3670. "friendsofphp/php-cs-fixer": "^3.5",
  3671. "google/cloud-storage": "^1.23",
  3672. "microsoft/azure-storage-blob": "^1.1",
  3673. "phpseclib/phpseclib": "^3.0.34",
  3674. "phpstan/phpstan": "^1.10",
  3675. "phpunit/phpunit": "^9.5.11|^10.0",
  3676. "sabre/dav": "^4.6.0"
  3677. },
  3678. "type": "library",
  3679. "autoload": {
  3680. "psr-4": {
  3681. "League\\Flysystem\\": "src"
  3682. }
  3683. },
  3684. "notification-url": "https://packagist.org/downloads/",
  3685. "license": [
  3686. "MIT"
  3687. ],
  3688. "authors": [
  3689. {
  3690. "name": "Frank de Jonge",
  3691. "email": "info@frankdejonge.nl"
  3692. }
  3693. ],
  3694. "description": "File storage abstraction for PHP",
  3695. "keywords": [
  3696. "WebDAV",
  3697. "aws",
  3698. "cloud",
  3699. "file",
  3700. "files",
  3701. "filesystem",
  3702. "filesystems",
  3703. "ftp",
  3704. "s3",
  3705. "sftp",
  3706. "storage"
  3707. ],
  3708. "support": {
  3709. "issues": "https://github.com/thephpleague/flysystem/issues",
  3710. "source": "https://github.com/thephpleague/flysystem/tree/3.24.0"
  3711. },
  3712. "funding": [
  3713. {
  3714. "url": "https://ecologi.com/frankdejonge",
  3715. "type": "custom"
  3716. },
  3717. {
  3718. "url": "https://github.com/frankdejonge",
  3719. "type": "github"
  3720. }
  3721. ],
  3722. "time": "2024-02-04T12:10:17+00:00"
  3723. },
  3724. {
  3725. "name": "league/flysystem-local",
  3726. "version": "3.23.1",
  3727. "source": {
  3728. "type": "git",
  3729. "url": "https://github.com/thephpleague/flysystem-local.git",
  3730. "reference": "b884d2bf9b53bb4804a56d2df4902bb51e253f00"
  3731. },
  3732. "dist": {
  3733. "type": "zip",
  3734. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/b884d2bf9b53bb4804a56d2df4902bb51e253f00",
  3735. "reference": "b884d2bf9b53bb4804a56d2df4902bb51e253f00",
  3736. "shasum": ""
  3737. },
  3738. "require": {
  3739. "ext-fileinfo": "*",
  3740. "league/flysystem": "^3.0.0",
  3741. "league/mime-type-detection": "^1.0.0",
  3742. "php": "^8.0.2"
  3743. },
  3744. "type": "library",
  3745. "autoload": {
  3746. "psr-4": {
  3747. "League\\Flysystem\\Local\\": ""
  3748. }
  3749. },
  3750. "notification-url": "https://packagist.org/downloads/",
  3751. "license": [
  3752. "MIT"
  3753. ],
  3754. "authors": [
  3755. {
  3756. "name": "Frank de Jonge",
  3757. "email": "info@frankdejonge.nl"
  3758. }
  3759. ],
  3760. "description": "Local filesystem adapter for Flysystem.",
  3761. "keywords": [
  3762. "Flysystem",
  3763. "file",
  3764. "files",
  3765. "filesystem",
  3766. "local"
  3767. ],
  3768. "support": {
  3769. "issues": "https://github.com/thephpleague/flysystem-local/issues",
  3770. "source": "https://github.com/thephpleague/flysystem-local/tree/3.23.1"
  3771. },
  3772. "funding": [
  3773. {
  3774. "url": "https://ecologi.com/frankdejonge",
  3775. "type": "custom"
  3776. },
  3777. {
  3778. "url": "https://github.com/frankdejonge",
  3779. "type": "github"
  3780. }
  3781. ],
  3782. "time": "2024-01-26T18:25:23+00:00"
  3783. },
  3784. {
  3785. "name": "league/mime-type-detection",
  3786. "version": "1.15.0",
  3787. "source": {
  3788. "type": "git",
  3789. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3790. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  3791. },
  3792. "dist": {
  3793. "type": "zip",
  3794. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  3795. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  3796. "shasum": ""
  3797. },
  3798. "require": {
  3799. "ext-fileinfo": "*",
  3800. "php": "^7.4 || ^8.0"
  3801. },
  3802. "require-dev": {
  3803. "friendsofphp/php-cs-fixer": "^3.2",
  3804. "phpstan/phpstan": "^0.12.68",
  3805. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3806. },
  3807. "type": "library",
  3808. "autoload": {
  3809. "psr-4": {
  3810. "League\\MimeTypeDetection\\": "src"
  3811. }
  3812. },
  3813. "notification-url": "https://packagist.org/downloads/",
  3814. "license": [
  3815. "MIT"
  3816. ],
  3817. "authors": [
  3818. {
  3819. "name": "Frank de Jonge",
  3820. "email": "info@frankdejonge.nl"
  3821. }
  3822. ],
  3823. "description": "Mime-type detection for Flysystem",
  3824. "support": {
  3825. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3826. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  3827. },
  3828. "funding": [
  3829. {
  3830. "url": "https://github.com/frankdejonge",
  3831. "type": "github"
  3832. },
  3833. {
  3834. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3835. "type": "tidelift"
  3836. }
  3837. ],
  3838. "time": "2024-01-28T23:22:08+00:00"
  3839. },
  3840. {
  3841. "name": "league/oauth1-client",
  3842. "version": "v1.10.1",
  3843. "source": {
  3844. "type": "git",
  3845. "url": "https://github.com/thephpleague/oauth1-client.git",
  3846. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  3847. },
  3848. "dist": {
  3849. "type": "zip",
  3850. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  3851. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  3852. "shasum": ""
  3853. },
  3854. "require": {
  3855. "ext-json": "*",
  3856. "ext-openssl": "*",
  3857. "guzzlehttp/guzzle": "^6.0|^7.0",
  3858. "guzzlehttp/psr7": "^1.7|^2.0",
  3859. "php": ">=7.1||>=8.0"
  3860. },
  3861. "require-dev": {
  3862. "ext-simplexml": "*",
  3863. "friendsofphp/php-cs-fixer": "^2.17",
  3864. "mockery/mockery": "^1.3.3",
  3865. "phpstan/phpstan": "^0.12.42",
  3866. "phpunit/phpunit": "^7.5||9.5"
  3867. },
  3868. "suggest": {
  3869. "ext-simplexml": "For decoding XML-based responses."
  3870. },
  3871. "type": "library",
  3872. "extra": {
  3873. "branch-alias": {
  3874. "dev-master": "1.0-dev",
  3875. "dev-develop": "2.0-dev"
  3876. }
  3877. },
  3878. "autoload": {
  3879. "psr-4": {
  3880. "League\\OAuth1\\Client\\": "src/"
  3881. }
  3882. },
  3883. "notification-url": "https://packagist.org/downloads/",
  3884. "license": [
  3885. "MIT"
  3886. ],
  3887. "authors": [
  3888. {
  3889. "name": "Ben Corlett",
  3890. "email": "bencorlett@me.com",
  3891. "homepage": "http://www.webcomm.com.au",
  3892. "role": "Developer"
  3893. }
  3894. ],
  3895. "description": "OAuth 1.0 Client Library",
  3896. "keywords": [
  3897. "Authentication",
  3898. "SSO",
  3899. "authorization",
  3900. "bitbucket",
  3901. "identity",
  3902. "idp",
  3903. "oauth",
  3904. "oauth1",
  3905. "single sign on",
  3906. "trello",
  3907. "tumblr",
  3908. "twitter"
  3909. ],
  3910. "support": {
  3911. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  3912. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  3913. },
  3914. "time": "2022-04-15T14:02:14+00:00"
  3915. },
  3916. {
  3917. "name": "league/uri",
  3918. "version": "7.4.0",
  3919. "source": {
  3920. "type": "git",
  3921. "url": "https://github.com/thephpleague/uri.git",
  3922. "reference": "bf414ba956d902f5d98bf9385fcf63954f09dce5"
  3923. },
  3924. "dist": {
  3925. "type": "zip",
  3926. "url": "https://api.github.com/repos/thephpleague/uri/zipball/bf414ba956d902f5d98bf9385fcf63954f09dce5",
  3927. "reference": "bf414ba956d902f5d98bf9385fcf63954f09dce5",
  3928. "shasum": ""
  3929. },
  3930. "require": {
  3931. "league/uri-interfaces": "^7.3",
  3932. "php": "^8.1"
  3933. },
  3934. "conflict": {
  3935. "league/uri-schemes": "^1.0"
  3936. },
  3937. "suggest": {
  3938. "ext-bcmath": "to improve IPV4 host parsing",
  3939. "ext-fileinfo": "to create Data URI from file contennts",
  3940. "ext-gmp": "to improve IPV4 host parsing",
  3941. "ext-intl": "to handle IDN host with the best performance",
  3942. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  3943. "league/uri-components": "Needed to easily manipulate URI objects components",
  3944. "php-64bit": "to improve IPV4 host parsing",
  3945. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  3946. },
  3947. "type": "library",
  3948. "extra": {
  3949. "branch-alias": {
  3950. "dev-master": "7.x-dev"
  3951. }
  3952. },
  3953. "autoload": {
  3954. "psr-4": {
  3955. "League\\Uri\\": ""
  3956. }
  3957. },
  3958. "notification-url": "https://packagist.org/downloads/",
  3959. "license": [
  3960. "MIT"
  3961. ],
  3962. "authors": [
  3963. {
  3964. "name": "Ignace Nyamagana Butera",
  3965. "email": "nyamsprod@gmail.com",
  3966. "homepage": "https://nyamsprod.com"
  3967. }
  3968. ],
  3969. "description": "URI manipulation library",
  3970. "homepage": "https://uri.thephpleague.com",
  3971. "keywords": [
  3972. "data-uri",
  3973. "file-uri",
  3974. "ftp",
  3975. "hostname",
  3976. "http",
  3977. "https",
  3978. "middleware",
  3979. "parse_str",
  3980. "parse_url",
  3981. "psr-7",
  3982. "query-string",
  3983. "querystring",
  3984. "rfc3986",
  3985. "rfc3987",
  3986. "rfc6570",
  3987. "uri",
  3988. "uri-template",
  3989. "url",
  3990. "ws"
  3991. ],
  3992. "support": {
  3993. "docs": "https://uri.thephpleague.com",
  3994. "forum": "https://thephpleague.slack.com",
  3995. "issues": "https://github.com/thephpleague/uri-src/issues",
  3996. "source": "https://github.com/thephpleague/uri/tree/7.4.0"
  3997. },
  3998. "funding": [
  3999. {
  4000. "url": "https://github.com/sponsors/nyamsprod",
  4001. "type": "github"
  4002. }
  4003. ],
  4004. "time": "2023-12-01T06:24:25+00:00"
  4005. },
  4006. {
  4007. "name": "league/uri-interfaces",
  4008. "version": "7.4.0",
  4009. "source": {
  4010. "type": "git",
  4011. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4012. "reference": "bd8c487ec236930f7bbc42b8d374fa882fbba0f3"
  4013. },
  4014. "dist": {
  4015. "type": "zip",
  4016. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/bd8c487ec236930f7bbc42b8d374fa882fbba0f3",
  4017. "reference": "bd8c487ec236930f7bbc42b8d374fa882fbba0f3",
  4018. "shasum": ""
  4019. },
  4020. "require": {
  4021. "ext-filter": "*",
  4022. "php": "^8.1",
  4023. "psr/http-factory": "^1",
  4024. "psr/http-message": "^1.1 || ^2.0"
  4025. },
  4026. "suggest": {
  4027. "ext-bcmath": "to improve IPV4 host parsing",
  4028. "ext-gmp": "to improve IPV4 host parsing",
  4029. "ext-intl": "to handle IDN host with the best performance",
  4030. "php-64bit": "to improve IPV4 host parsing",
  4031. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4032. },
  4033. "type": "library",
  4034. "extra": {
  4035. "branch-alias": {
  4036. "dev-master": "7.x-dev"
  4037. }
  4038. },
  4039. "autoload": {
  4040. "psr-4": {
  4041. "League\\Uri\\": ""
  4042. }
  4043. },
  4044. "notification-url": "https://packagist.org/downloads/",
  4045. "license": [
  4046. "MIT"
  4047. ],
  4048. "authors": [
  4049. {
  4050. "name": "Ignace Nyamagana Butera",
  4051. "email": "nyamsprod@gmail.com",
  4052. "homepage": "https://nyamsprod.com"
  4053. }
  4054. ],
  4055. "description": "Common interfaces and classes for URI representation and interaction",
  4056. "homepage": "https://uri.thephpleague.com",
  4057. "keywords": [
  4058. "data-uri",
  4059. "file-uri",
  4060. "ftp",
  4061. "hostname",
  4062. "http",
  4063. "https",
  4064. "parse_str",
  4065. "parse_url",
  4066. "psr-7",
  4067. "query-string",
  4068. "querystring",
  4069. "rfc3986",
  4070. "rfc3987",
  4071. "rfc6570",
  4072. "uri",
  4073. "url",
  4074. "ws"
  4075. ],
  4076. "support": {
  4077. "docs": "https://uri.thephpleague.com",
  4078. "forum": "https://thephpleague.slack.com",
  4079. "issues": "https://github.com/thephpleague/uri-src/issues",
  4080. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.0"
  4081. },
  4082. "funding": [
  4083. {
  4084. "url": "https://github.com/sponsors/nyamsprod",
  4085. "type": "github"
  4086. }
  4087. ],
  4088. "time": "2023-11-24T15:40:42+00:00"
  4089. },
  4090. {
  4091. "name": "livewire/livewire",
  4092. "version": "v3.4.4",
  4093. "source": {
  4094. "type": "git",
  4095. "url": "https://github.com/livewire/livewire.git",
  4096. "reference": "c0489d4a76382f6dcf6e2702112f86aa089d0c8d"
  4097. },
  4098. "dist": {
  4099. "type": "zip",
  4100. "url": "https://api.github.com/repos/livewire/livewire/zipball/c0489d4a76382f6dcf6e2702112f86aa089d0c8d",
  4101. "reference": "c0489d4a76382f6dcf6e2702112f86aa089d0c8d",
  4102. "shasum": ""
  4103. },
  4104. "require": {
  4105. "illuminate/database": "^10.0|^11.0",
  4106. "illuminate/routing": "^10.0|^11.0",
  4107. "illuminate/support": "^10.0|^11.0",
  4108. "illuminate/validation": "^10.0|^11.0",
  4109. "league/mime-type-detection": "^1.9",
  4110. "php": "^8.1",
  4111. "symfony/http-kernel": "^6.2|^7.0"
  4112. },
  4113. "require-dev": {
  4114. "calebporzio/sushi": "^2.1",
  4115. "laravel/framework": "^10.0|^11.0",
  4116. "laravel/prompts": "^0.1.6",
  4117. "mockery/mockery": "^1.3.1",
  4118. "orchestra/testbench": "8.20.0|^9.0",
  4119. "orchestra/testbench-dusk": "8.20.0|^9.0",
  4120. "phpunit/phpunit": "^10.4",
  4121. "psy/psysh": "^0.11.22|^0.12"
  4122. },
  4123. "type": "library",
  4124. "extra": {
  4125. "laravel": {
  4126. "providers": [
  4127. "Livewire\\LivewireServiceProvider"
  4128. ],
  4129. "aliases": {
  4130. "Livewire": "Livewire\\Livewire"
  4131. }
  4132. }
  4133. },
  4134. "autoload": {
  4135. "files": [
  4136. "src/helpers.php"
  4137. ],
  4138. "psr-4": {
  4139. "Livewire\\": "src/"
  4140. }
  4141. },
  4142. "notification-url": "https://packagist.org/downloads/",
  4143. "license": [
  4144. "MIT"
  4145. ],
  4146. "authors": [
  4147. {
  4148. "name": "Caleb Porzio",
  4149. "email": "calebporzio@gmail.com"
  4150. }
  4151. ],
  4152. "description": "A front-end framework for Laravel.",
  4153. "support": {
  4154. "issues": "https://github.com/livewire/livewire/issues",
  4155. "source": "https://github.com/livewire/livewire/tree/v3.4.4"
  4156. },
  4157. "funding": [
  4158. {
  4159. "url": "https://github.com/livewire",
  4160. "type": "github"
  4161. }
  4162. ],
  4163. "time": "2024-01-28T19:07:11+00:00"
  4164. },
  4165. {
  4166. "name": "masterminds/html5",
  4167. "version": "2.8.1",
  4168. "source": {
  4169. "type": "git",
  4170. "url": "https://github.com/Masterminds/html5-php.git",
  4171. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  4172. },
  4173. "dist": {
  4174. "type": "zip",
  4175. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  4176. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  4177. "shasum": ""
  4178. },
  4179. "require": {
  4180. "ext-dom": "*",
  4181. "php": ">=5.3.0"
  4182. },
  4183. "require-dev": {
  4184. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  4185. },
  4186. "type": "library",
  4187. "extra": {
  4188. "branch-alias": {
  4189. "dev-master": "2.7-dev"
  4190. }
  4191. },
  4192. "autoload": {
  4193. "psr-4": {
  4194. "Masterminds\\": "src"
  4195. }
  4196. },
  4197. "notification-url": "https://packagist.org/downloads/",
  4198. "license": [
  4199. "MIT"
  4200. ],
  4201. "authors": [
  4202. {
  4203. "name": "Matt Butcher",
  4204. "email": "technosophos@gmail.com"
  4205. },
  4206. {
  4207. "name": "Matt Farina",
  4208. "email": "matt@mattfarina.com"
  4209. },
  4210. {
  4211. "name": "Asmir Mustafic",
  4212. "email": "goetas@gmail.com"
  4213. }
  4214. ],
  4215. "description": "An HTML5 parser and serializer.",
  4216. "homepage": "http://masterminds.github.io/html5-php",
  4217. "keywords": [
  4218. "HTML5",
  4219. "dom",
  4220. "html",
  4221. "parser",
  4222. "querypath",
  4223. "serializer",
  4224. "xml"
  4225. ],
  4226. "support": {
  4227. "issues": "https://github.com/Masterminds/html5-php/issues",
  4228. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  4229. },
  4230. "time": "2023-05-10T11:58:31+00:00"
  4231. },
  4232. {
  4233. "name": "matomo/device-detector",
  4234. "version": "6.3.0",
  4235. "source": {
  4236. "type": "git",
  4237. "url": "https://github.com/matomo-org/device-detector.git",
  4238. "reference": "35efad75b31f2596701834d19f097497909572a4"
  4239. },
  4240. "dist": {
  4241. "type": "zip",
  4242. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/35efad75b31f2596701834d19f097497909572a4",
  4243. "reference": "35efad75b31f2596701834d19f097497909572a4",
  4244. "shasum": ""
  4245. },
  4246. "require": {
  4247. "mustangostang/spyc": "*",
  4248. "php": "^7.2|^8.0"
  4249. },
  4250. "replace": {
  4251. "piwik/device-detector": "self.version"
  4252. },
  4253. "require-dev": {
  4254. "matthiasmullie/scrapbook": "^1.4.7",
  4255. "mayflower/mo4-coding-standard": "^v9.0.0",
  4256. "phpstan/phpstan": "^1.10.44",
  4257. "phpunit/phpunit": "^8.5.8",
  4258. "psr/cache": "^1.0.1",
  4259. "psr/simple-cache": "^1.0.1",
  4260. "symfony/yaml": "^5.1.7"
  4261. },
  4262. "suggest": {
  4263. "doctrine/cache": "Can directly be used for caching purpose",
  4264. "ext-yaml": "Necessary for using the Pecl YAML parser"
  4265. },
  4266. "type": "library",
  4267. "autoload": {
  4268. "psr-4": {
  4269. "DeviceDetector\\": ""
  4270. },
  4271. "exclude-from-classmap": [
  4272. "Tests/"
  4273. ]
  4274. },
  4275. "notification-url": "https://packagist.org/downloads/",
  4276. "license": [
  4277. "LGPL-3.0-or-later"
  4278. ],
  4279. "authors": [
  4280. {
  4281. "name": "The Matomo Team",
  4282. "email": "hello@matomo.org",
  4283. "homepage": "https://matomo.org/team/"
  4284. }
  4285. ],
  4286. "description": "The Universal Device Detection library, that parses User Agents and detects devices (desktop, tablet, mobile, tv, cars, console, etc.), clients (browsers, media players, mobile apps, feed readers, libraries, etc), operating systems, devices, brands and models.",
  4287. "homepage": "https://matomo.org",
  4288. "keywords": [
  4289. "devicedetection",
  4290. "parser",
  4291. "useragent"
  4292. ],
  4293. "support": {
  4294. "forum": "https://forum.matomo.org/",
  4295. "issues": "https://github.com/matomo-org/device-detector/issues",
  4296. "source": "https://github.com/matomo-org/matomo",
  4297. "wiki": "https://dev.matomo.org/"
  4298. },
  4299. "time": "2024-02-16T16:26:57+00:00"
  4300. },
  4301. {
  4302. "name": "monolog/monolog",
  4303. "version": "3.5.0",
  4304. "source": {
  4305. "type": "git",
  4306. "url": "https://github.com/Seldaek/monolog.git",
  4307. "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448"
  4308. },
  4309. "dist": {
  4310. "type": "zip",
  4311. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c915e2634718dbc8a4a15c61b0e62e7a44e14448",
  4312. "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448",
  4313. "shasum": ""
  4314. },
  4315. "require": {
  4316. "php": ">=8.1",
  4317. "psr/log": "^2.0 || ^3.0"
  4318. },
  4319. "provide": {
  4320. "psr/log-implementation": "3.0.0"
  4321. },
  4322. "require-dev": {
  4323. "aws/aws-sdk-php": "^3.0",
  4324. "doctrine/couchdb": "~1.0@dev",
  4325. "elasticsearch/elasticsearch": "^7 || ^8",
  4326. "ext-json": "*",
  4327. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4328. "guzzlehttp/guzzle": "^7.4.5",
  4329. "guzzlehttp/psr7": "^2.2",
  4330. "mongodb/mongodb": "^1.8",
  4331. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4332. "phpstan/phpstan": "^1.9",
  4333. "phpstan/phpstan-deprecation-rules": "^1.0",
  4334. "phpstan/phpstan-strict-rules": "^1.4",
  4335. "phpunit/phpunit": "^10.1",
  4336. "predis/predis": "^1.1 || ^2",
  4337. "ruflin/elastica": "^7",
  4338. "symfony/mailer": "^5.4 || ^6",
  4339. "symfony/mime": "^5.4 || ^6"
  4340. },
  4341. "suggest": {
  4342. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4343. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4344. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4345. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4346. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4347. "ext-mbstring": "Allow to work properly with unicode symbols",
  4348. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4349. "ext-openssl": "Required to send log messages using SSL",
  4350. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4351. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4352. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4353. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4354. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4355. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4356. },
  4357. "type": "library",
  4358. "extra": {
  4359. "branch-alias": {
  4360. "dev-main": "3.x-dev"
  4361. }
  4362. },
  4363. "autoload": {
  4364. "psr-4": {
  4365. "Monolog\\": "src/Monolog"
  4366. }
  4367. },
  4368. "notification-url": "https://packagist.org/downloads/",
  4369. "license": [
  4370. "MIT"
  4371. ],
  4372. "authors": [
  4373. {
  4374. "name": "Jordi Boggiano",
  4375. "email": "j.boggiano@seld.be",
  4376. "homepage": "https://seld.be"
  4377. }
  4378. ],
  4379. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4380. "homepage": "https://github.com/Seldaek/monolog",
  4381. "keywords": [
  4382. "log",
  4383. "logging",
  4384. "psr-3"
  4385. ],
  4386. "support": {
  4387. "issues": "https://github.com/Seldaek/monolog/issues",
  4388. "source": "https://github.com/Seldaek/monolog/tree/3.5.0"
  4389. },
  4390. "funding": [
  4391. {
  4392. "url": "https://github.com/Seldaek",
  4393. "type": "github"
  4394. },
  4395. {
  4396. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4397. "type": "tidelift"
  4398. }
  4399. ],
  4400. "time": "2023-10-27T15:32:31+00:00"
  4401. },
  4402. {
  4403. "name": "mtdowling/jmespath.php",
  4404. "version": "2.7.0",
  4405. "source": {
  4406. "type": "git",
  4407. "url": "https://github.com/jmespath/jmespath.php.git",
  4408. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  4409. },
  4410. "dist": {
  4411. "type": "zip",
  4412. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  4413. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  4414. "shasum": ""
  4415. },
  4416. "require": {
  4417. "php": "^7.2.5 || ^8.0",
  4418. "symfony/polyfill-mbstring": "^1.17"
  4419. },
  4420. "require-dev": {
  4421. "composer/xdebug-handler": "^3.0.3",
  4422. "phpunit/phpunit": "^8.5.33"
  4423. },
  4424. "bin": [
  4425. "bin/jp.php"
  4426. ],
  4427. "type": "library",
  4428. "extra": {
  4429. "branch-alias": {
  4430. "dev-master": "2.7-dev"
  4431. }
  4432. },
  4433. "autoload": {
  4434. "files": [
  4435. "src/JmesPath.php"
  4436. ],
  4437. "psr-4": {
  4438. "JmesPath\\": "src/"
  4439. }
  4440. },
  4441. "notification-url": "https://packagist.org/downloads/",
  4442. "license": [
  4443. "MIT"
  4444. ],
  4445. "authors": [
  4446. {
  4447. "name": "Graham Campbell",
  4448. "email": "hello@gjcampbell.co.uk",
  4449. "homepage": "https://github.com/GrahamCampbell"
  4450. },
  4451. {
  4452. "name": "Michael Dowling",
  4453. "email": "mtdowling@gmail.com",
  4454. "homepage": "https://github.com/mtdowling"
  4455. }
  4456. ],
  4457. "description": "Declaratively specify how to extract elements from a JSON document",
  4458. "keywords": [
  4459. "json",
  4460. "jsonpath"
  4461. ],
  4462. "support": {
  4463. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4464. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  4465. },
  4466. "time": "2023-08-25T10:54:48+00:00"
  4467. },
  4468. {
  4469. "name": "mustangostang/spyc",
  4470. "version": "0.6.3",
  4471. "source": {
  4472. "type": "git",
  4473. "url": "git@github.com:mustangostang/spyc.git",
  4474. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  4475. },
  4476. "dist": {
  4477. "type": "zip",
  4478. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  4479. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  4480. "shasum": ""
  4481. },
  4482. "require": {
  4483. "php": ">=5.3.1"
  4484. },
  4485. "require-dev": {
  4486. "phpunit/phpunit": "4.3.*@dev"
  4487. },
  4488. "type": "library",
  4489. "extra": {
  4490. "branch-alias": {
  4491. "dev-master": "0.5.x-dev"
  4492. }
  4493. },
  4494. "autoload": {
  4495. "files": [
  4496. "Spyc.php"
  4497. ]
  4498. },
  4499. "notification-url": "https://packagist.org/downloads/",
  4500. "license": [
  4501. "MIT"
  4502. ],
  4503. "authors": [
  4504. {
  4505. "name": "mustangostang",
  4506. "email": "vlad.andersen@gmail.com"
  4507. }
  4508. ],
  4509. "description": "A simple YAML loader/dumper class for PHP",
  4510. "homepage": "https://github.com/mustangostang/spyc/",
  4511. "keywords": [
  4512. "spyc",
  4513. "yaml",
  4514. "yml"
  4515. ],
  4516. "time": "2019-09-10T13:16:29+00:00"
  4517. },
  4518. {
  4519. "name": "nesbot/carbon",
  4520. "version": "2.72.3",
  4521. "source": {
  4522. "type": "git",
  4523. "url": "https://github.com/briannesbitt/Carbon.git",
  4524. "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83"
  4525. },
  4526. "dist": {
  4527. "type": "zip",
  4528. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/0c6fd108360c562f6e4fd1dedb8233b423e91c83",
  4529. "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83",
  4530. "shasum": ""
  4531. },
  4532. "require": {
  4533. "carbonphp/carbon-doctrine-types": "*",
  4534. "ext-json": "*",
  4535. "php": "^7.1.8 || ^8.0",
  4536. "psr/clock": "^1.0",
  4537. "symfony/polyfill-mbstring": "^1.0",
  4538. "symfony/polyfill-php80": "^1.16",
  4539. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4540. },
  4541. "provide": {
  4542. "psr/clock-implementation": "1.0"
  4543. },
  4544. "require-dev": {
  4545. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4546. "doctrine/orm": "^2.7 || ^3.0",
  4547. "friendsofphp/php-cs-fixer": "^3.0",
  4548. "kylekatarnls/multi-tester": "^2.0",
  4549. "ondrejmirtes/better-reflection": "*",
  4550. "phpmd/phpmd": "^2.9",
  4551. "phpstan/extension-installer": "^1.0",
  4552. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4553. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4554. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4555. "squizlabs/php_codesniffer": "^3.4"
  4556. },
  4557. "bin": [
  4558. "bin/carbon"
  4559. ],
  4560. "type": "library",
  4561. "extra": {
  4562. "branch-alias": {
  4563. "dev-3.x": "3.x-dev",
  4564. "dev-master": "2.x-dev"
  4565. },
  4566. "laravel": {
  4567. "providers": [
  4568. "Carbon\\Laravel\\ServiceProvider"
  4569. ]
  4570. },
  4571. "phpstan": {
  4572. "includes": [
  4573. "extension.neon"
  4574. ]
  4575. }
  4576. },
  4577. "autoload": {
  4578. "psr-4": {
  4579. "Carbon\\": "src/Carbon/"
  4580. }
  4581. },
  4582. "notification-url": "https://packagist.org/downloads/",
  4583. "license": [
  4584. "MIT"
  4585. ],
  4586. "authors": [
  4587. {
  4588. "name": "Brian Nesbitt",
  4589. "email": "brian@nesbot.com",
  4590. "homepage": "https://markido.com"
  4591. },
  4592. {
  4593. "name": "kylekatarnls",
  4594. "homepage": "https://github.com/kylekatarnls"
  4595. }
  4596. ],
  4597. "description": "An API extension for DateTime that supports 281 different languages.",
  4598. "homepage": "https://carbon.nesbot.com",
  4599. "keywords": [
  4600. "date",
  4601. "datetime",
  4602. "time"
  4603. ],
  4604. "support": {
  4605. "docs": "https://carbon.nesbot.com/docs",
  4606. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4607. "source": "https://github.com/briannesbitt/Carbon"
  4608. },
  4609. "funding": [
  4610. {
  4611. "url": "https://github.com/sponsors/kylekatarnls",
  4612. "type": "github"
  4613. },
  4614. {
  4615. "url": "https://opencollective.com/Carbon#sponsor",
  4616. "type": "opencollective"
  4617. },
  4618. {
  4619. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4620. "type": "tidelift"
  4621. }
  4622. ],
  4623. "time": "2024-01-25T10:35:09+00:00"
  4624. },
  4625. {
  4626. "name": "nette/schema",
  4627. "version": "v1.3.0",
  4628. "source": {
  4629. "type": "git",
  4630. "url": "https://github.com/nette/schema.git",
  4631. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188"
  4632. },
  4633. "dist": {
  4634. "type": "zip",
  4635. "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  4636. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  4637. "shasum": ""
  4638. },
  4639. "require": {
  4640. "nette/utils": "^4.0",
  4641. "php": "8.1 - 8.3"
  4642. },
  4643. "require-dev": {
  4644. "nette/tester": "^2.4",
  4645. "phpstan/phpstan-nette": "^1.0",
  4646. "tracy/tracy": "^2.8"
  4647. },
  4648. "type": "library",
  4649. "extra": {
  4650. "branch-alias": {
  4651. "dev-master": "1.3-dev"
  4652. }
  4653. },
  4654. "autoload": {
  4655. "classmap": [
  4656. "src/"
  4657. ]
  4658. },
  4659. "notification-url": "https://packagist.org/downloads/",
  4660. "license": [
  4661. "BSD-3-Clause",
  4662. "GPL-2.0-only",
  4663. "GPL-3.0-only"
  4664. ],
  4665. "authors": [
  4666. {
  4667. "name": "David Grudl",
  4668. "homepage": "https://davidgrudl.com"
  4669. },
  4670. {
  4671. "name": "Nette Community",
  4672. "homepage": "https://nette.org/contributors"
  4673. }
  4674. ],
  4675. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4676. "homepage": "https://nette.org",
  4677. "keywords": [
  4678. "config",
  4679. "nette"
  4680. ],
  4681. "support": {
  4682. "issues": "https://github.com/nette/schema/issues",
  4683. "source": "https://github.com/nette/schema/tree/v1.3.0"
  4684. },
  4685. "time": "2023-12-11T11:54:22+00:00"
  4686. },
  4687. {
  4688. "name": "nette/utils",
  4689. "version": "v4.0.4",
  4690. "source": {
  4691. "type": "git",
  4692. "url": "https://github.com/nette/utils.git",
  4693. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218"
  4694. },
  4695. "dist": {
  4696. "type": "zip",
  4697. "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  4698. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  4699. "shasum": ""
  4700. },
  4701. "require": {
  4702. "php": ">=8.0 <8.4"
  4703. },
  4704. "conflict": {
  4705. "nette/finder": "<3",
  4706. "nette/schema": "<1.2.2"
  4707. },
  4708. "require-dev": {
  4709. "jetbrains/phpstorm-attributes": "dev-master",
  4710. "nette/tester": "^2.5",
  4711. "phpstan/phpstan": "^1.0",
  4712. "tracy/tracy": "^2.9"
  4713. },
  4714. "suggest": {
  4715. "ext-gd": "to use Image",
  4716. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4717. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4718. "ext-json": "to use Nette\\Utils\\Json",
  4719. "ext-mbstring": "to use Strings::lower() etc...",
  4720. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  4721. },
  4722. "type": "library",
  4723. "extra": {
  4724. "branch-alias": {
  4725. "dev-master": "4.0-dev"
  4726. }
  4727. },
  4728. "autoload": {
  4729. "classmap": [
  4730. "src/"
  4731. ]
  4732. },
  4733. "notification-url": "https://packagist.org/downloads/",
  4734. "license": [
  4735. "BSD-3-Clause",
  4736. "GPL-2.0-only",
  4737. "GPL-3.0-only"
  4738. ],
  4739. "authors": [
  4740. {
  4741. "name": "David Grudl",
  4742. "homepage": "https://davidgrudl.com"
  4743. },
  4744. {
  4745. "name": "Nette Community",
  4746. "homepage": "https://nette.org/contributors"
  4747. }
  4748. ],
  4749. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4750. "homepage": "https://nette.org",
  4751. "keywords": [
  4752. "array",
  4753. "core",
  4754. "datetime",
  4755. "images",
  4756. "json",
  4757. "nette",
  4758. "paginator",
  4759. "password",
  4760. "slugify",
  4761. "string",
  4762. "unicode",
  4763. "utf-8",
  4764. "utility",
  4765. "validation"
  4766. ],
  4767. "support": {
  4768. "issues": "https://github.com/nette/utils/issues",
  4769. "source": "https://github.com/nette/utils/tree/v4.0.4"
  4770. },
  4771. "time": "2024-01-17T16:50:36+00:00"
  4772. },
  4773. {
  4774. "name": "nikic/php-parser",
  4775. "version": "v5.0.0",
  4776. "source": {
  4777. "type": "git",
  4778. "url": "https://github.com/nikic/PHP-Parser.git",
  4779. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc"
  4780. },
  4781. "dist": {
  4782. "type": "zip",
  4783. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  4784. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  4785. "shasum": ""
  4786. },
  4787. "require": {
  4788. "ext-ctype": "*",
  4789. "ext-json": "*",
  4790. "ext-tokenizer": "*",
  4791. "php": ">=7.4"
  4792. },
  4793. "require-dev": {
  4794. "ircmaxell/php-yacc": "^0.0.7",
  4795. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  4796. },
  4797. "bin": [
  4798. "bin/php-parse"
  4799. ],
  4800. "type": "library",
  4801. "extra": {
  4802. "branch-alias": {
  4803. "dev-master": "5.0-dev"
  4804. }
  4805. },
  4806. "autoload": {
  4807. "psr-4": {
  4808. "PhpParser\\": "lib/PhpParser"
  4809. }
  4810. },
  4811. "notification-url": "https://packagist.org/downloads/",
  4812. "license": [
  4813. "BSD-3-Clause"
  4814. ],
  4815. "authors": [
  4816. {
  4817. "name": "Nikita Popov"
  4818. }
  4819. ],
  4820. "description": "A PHP parser written in PHP",
  4821. "keywords": [
  4822. "parser",
  4823. "php"
  4824. ],
  4825. "support": {
  4826. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4827. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.0"
  4828. },
  4829. "time": "2024-01-07T17:17:35+00:00"
  4830. },
  4831. {
  4832. "name": "nunomaduro/termwind",
  4833. "version": "v1.15.1",
  4834. "source": {
  4835. "type": "git",
  4836. "url": "https://github.com/nunomaduro/termwind.git",
  4837. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  4838. },
  4839. "dist": {
  4840. "type": "zip",
  4841. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  4842. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  4843. "shasum": ""
  4844. },
  4845. "require": {
  4846. "ext-mbstring": "*",
  4847. "php": "^8.0",
  4848. "symfony/console": "^5.3.0|^6.0.0"
  4849. },
  4850. "require-dev": {
  4851. "ergebnis/phpstan-rules": "^1.0.",
  4852. "illuminate/console": "^8.0|^9.0",
  4853. "illuminate/support": "^8.0|^9.0",
  4854. "laravel/pint": "^1.0.0",
  4855. "pestphp/pest": "^1.21.0",
  4856. "pestphp/pest-plugin-mock": "^1.0",
  4857. "phpstan/phpstan": "^1.4.6",
  4858. "phpstan/phpstan-strict-rules": "^1.1.0",
  4859. "symfony/var-dumper": "^5.2.7|^6.0.0",
  4860. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  4861. },
  4862. "type": "library",
  4863. "extra": {
  4864. "laravel": {
  4865. "providers": [
  4866. "Termwind\\Laravel\\TermwindServiceProvider"
  4867. ]
  4868. }
  4869. },
  4870. "autoload": {
  4871. "files": [
  4872. "src/Functions.php"
  4873. ],
  4874. "psr-4": {
  4875. "Termwind\\": "src/"
  4876. }
  4877. },
  4878. "notification-url": "https://packagist.org/downloads/",
  4879. "license": [
  4880. "MIT"
  4881. ],
  4882. "authors": [
  4883. {
  4884. "name": "Nuno Maduro",
  4885. "email": "enunomaduro@gmail.com"
  4886. }
  4887. ],
  4888. "description": "Its like Tailwind CSS, but for the console.",
  4889. "keywords": [
  4890. "cli",
  4891. "console",
  4892. "css",
  4893. "package",
  4894. "php",
  4895. "style"
  4896. ],
  4897. "support": {
  4898. "issues": "https://github.com/nunomaduro/termwind/issues",
  4899. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  4900. },
  4901. "funding": [
  4902. {
  4903. "url": "https://www.paypal.com/paypalme/enunomaduro",
  4904. "type": "custom"
  4905. },
  4906. {
  4907. "url": "https://github.com/nunomaduro",
  4908. "type": "github"
  4909. },
  4910. {
  4911. "url": "https://github.com/xiCO2k",
  4912. "type": "github"
  4913. }
  4914. ],
  4915. "time": "2023-02-08T01:06:31+00:00"
  4916. },
  4917. {
  4918. "name": "openspout/openspout",
  4919. "version": "v4.23.0",
  4920. "source": {
  4921. "type": "git",
  4922. "url": "https://github.com/openspout/openspout.git",
  4923. "reference": "28f6a0e45acc3377f34c26cc3866e21f0447e0c8"
  4924. },
  4925. "dist": {
  4926. "type": "zip",
  4927. "url": "https://api.github.com/repos/openspout/openspout/zipball/28f6a0e45acc3377f34c26cc3866e21f0447e0c8",
  4928. "reference": "28f6a0e45acc3377f34c26cc3866e21f0447e0c8",
  4929. "shasum": ""
  4930. },
  4931. "require": {
  4932. "ext-dom": "*",
  4933. "ext-fileinfo": "*",
  4934. "ext-filter": "*",
  4935. "ext-libxml": "*",
  4936. "ext-xmlreader": "*",
  4937. "ext-zip": "*",
  4938. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  4939. },
  4940. "require-dev": {
  4941. "ext-zlib": "*",
  4942. "friendsofphp/php-cs-fixer": "^3.46.0",
  4943. "infection/infection": "^0.27.9",
  4944. "phpbench/phpbench": "^1.2.15",
  4945. "phpstan/phpstan": "^1.10.55",
  4946. "phpstan/phpstan-phpunit": "^1.3.15",
  4947. "phpstan/phpstan-strict-rules": "^1.5.2",
  4948. "phpunit/phpunit": "^10.5.5"
  4949. },
  4950. "suggest": {
  4951. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
  4952. "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  4953. },
  4954. "type": "library",
  4955. "extra": {
  4956. "branch-alias": {
  4957. "dev-master": "3.3.x-dev"
  4958. }
  4959. },
  4960. "autoload": {
  4961. "psr-4": {
  4962. "OpenSpout\\": "src/"
  4963. }
  4964. },
  4965. "notification-url": "https://packagist.org/downloads/",
  4966. "license": [
  4967. "MIT"
  4968. ],
  4969. "authors": [
  4970. {
  4971. "name": "Adrien Loison",
  4972. "email": "adrien@box.com"
  4973. }
  4974. ],
  4975. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  4976. "homepage": "https://github.com/openspout/openspout",
  4977. "keywords": [
  4978. "OOXML",
  4979. "csv",
  4980. "excel",
  4981. "memory",
  4982. "odf",
  4983. "ods",
  4984. "office",
  4985. "open",
  4986. "php",
  4987. "read",
  4988. "scale",
  4989. "spreadsheet",
  4990. "stream",
  4991. "write",
  4992. "xlsx"
  4993. ],
  4994. "support": {
  4995. "issues": "https://github.com/openspout/openspout/issues",
  4996. "source": "https://github.com/openspout/openspout/tree/v4.23.0"
  4997. },
  4998. "funding": [
  4999. {
  5000. "url": "https://paypal.me/filippotessarotto",
  5001. "type": "custom"
  5002. },
  5003. {
  5004. "url": "https://github.com/Slamdunk",
  5005. "type": "github"
  5006. }
  5007. ],
  5008. "time": "2024-01-09T09:30:37+00:00"
  5009. },
  5010. {
  5011. "name": "phpoption/phpoption",
  5012. "version": "1.9.2",
  5013. "source": {
  5014. "type": "git",
  5015. "url": "https://github.com/schmittjoh/php-option.git",
  5016. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  5017. },
  5018. "dist": {
  5019. "type": "zip",
  5020. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  5021. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  5022. "shasum": ""
  5023. },
  5024. "require": {
  5025. "php": "^7.2.5 || ^8.0"
  5026. },
  5027. "require-dev": {
  5028. "bamarni/composer-bin-plugin": "^1.8.2",
  5029. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5030. },
  5031. "type": "library",
  5032. "extra": {
  5033. "bamarni-bin": {
  5034. "bin-links": true,
  5035. "forward-command": true
  5036. },
  5037. "branch-alias": {
  5038. "dev-master": "1.9-dev"
  5039. }
  5040. },
  5041. "autoload": {
  5042. "psr-4": {
  5043. "PhpOption\\": "src/PhpOption/"
  5044. }
  5045. },
  5046. "notification-url": "https://packagist.org/downloads/",
  5047. "license": [
  5048. "Apache-2.0"
  5049. ],
  5050. "authors": [
  5051. {
  5052. "name": "Johannes M. Schmitt",
  5053. "email": "schmittjoh@gmail.com",
  5054. "homepage": "https://github.com/schmittjoh"
  5055. },
  5056. {
  5057. "name": "Graham Campbell",
  5058. "email": "hello@gjcampbell.co.uk",
  5059. "homepage": "https://github.com/GrahamCampbell"
  5060. }
  5061. ],
  5062. "description": "Option Type for PHP",
  5063. "keywords": [
  5064. "language",
  5065. "option",
  5066. "php",
  5067. "type"
  5068. ],
  5069. "support": {
  5070. "issues": "https://github.com/schmittjoh/php-option/issues",
  5071. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  5072. },
  5073. "funding": [
  5074. {
  5075. "url": "https://github.com/GrahamCampbell",
  5076. "type": "github"
  5077. },
  5078. {
  5079. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5080. "type": "tidelift"
  5081. }
  5082. ],
  5083. "time": "2023-11-12T21:59:55+00:00"
  5084. },
  5085. {
  5086. "name": "psr/cache",
  5087. "version": "3.0.0",
  5088. "source": {
  5089. "type": "git",
  5090. "url": "https://github.com/php-fig/cache.git",
  5091. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5092. },
  5093. "dist": {
  5094. "type": "zip",
  5095. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5096. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5097. "shasum": ""
  5098. },
  5099. "require": {
  5100. "php": ">=8.0.0"
  5101. },
  5102. "type": "library",
  5103. "extra": {
  5104. "branch-alias": {
  5105. "dev-master": "1.0.x-dev"
  5106. }
  5107. },
  5108. "autoload": {
  5109. "psr-4": {
  5110. "Psr\\Cache\\": "src/"
  5111. }
  5112. },
  5113. "notification-url": "https://packagist.org/downloads/",
  5114. "license": [
  5115. "MIT"
  5116. ],
  5117. "authors": [
  5118. {
  5119. "name": "PHP-FIG",
  5120. "homepage": "https://www.php-fig.org/"
  5121. }
  5122. ],
  5123. "description": "Common interface for caching libraries",
  5124. "keywords": [
  5125. "cache",
  5126. "psr",
  5127. "psr-6"
  5128. ],
  5129. "support": {
  5130. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5131. },
  5132. "time": "2021-02-03T23:26:27+00:00"
  5133. },
  5134. {
  5135. "name": "psr/clock",
  5136. "version": "1.0.0",
  5137. "source": {
  5138. "type": "git",
  5139. "url": "https://github.com/php-fig/clock.git",
  5140. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5141. },
  5142. "dist": {
  5143. "type": "zip",
  5144. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5145. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5146. "shasum": ""
  5147. },
  5148. "require": {
  5149. "php": "^7.0 || ^8.0"
  5150. },
  5151. "type": "library",
  5152. "autoload": {
  5153. "psr-4": {
  5154. "Psr\\Clock\\": "src/"
  5155. }
  5156. },
  5157. "notification-url": "https://packagist.org/downloads/",
  5158. "license": [
  5159. "MIT"
  5160. ],
  5161. "authors": [
  5162. {
  5163. "name": "PHP-FIG",
  5164. "homepage": "https://www.php-fig.org/"
  5165. }
  5166. ],
  5167. "description": "Common interface for reading the clock.",
  5168. "homepage": "https://github.com/php-fig/clock",
  5169. "keywords": [
  5170. "clock",
  5171. "now",
  5172. "psr",
  5173. "psr-20",
  5174. "time"
  5175. ],
  5176. "support": {
  5177. "issues": "https://github.com/php-fig/clock/issues",
  5178. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5179. },
  5180. "time": "2022-11-25T14:36:26+00:00"
  5181. },
  5182. {
  5183. "name": "psr/container",
  5184. "version": "2.0.2",
  5185. "source": {
  5186. "type": "git",
  5187. "url": "https://github.com/php-fig/container.git",
  5188. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5189. },
  5190. "dist": {
  5191. "type": "zip",
  5192. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5193. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5194. "shasum": ""
  5195. },
  5196. "require": {
  5197. "php": ">=7.4.0"
  5198. },
  5199. "type": "library",
  5200. "extra": {
  5201. "branch-alias": {
  5202. "dev-master": "2.0.x-dev"
  5203. }
  5204. },
  5205. "autoload": {
  5206. "psr-4": {
  5207. "Psr\\Container\\": "src/"
  5208. }
  5209. },
  5210. "notification-url": "https://packagist.org/downloads/",
  5211. "license": [
  5212. "MIT"
  5213. ],
  5214. "authors": [
  5215. {
  5216. "name": "PHP-FIG",
  5217. "homepage": "https://www.php-fig.org/"
  5218. }
  5219. ],
  5220. "description": "Common Container Interface (PHP FIG PSR-11)",
  5221. "homepage": "https://github.com/php-fig/container",
  5222. "keywords": [
  5223. "PSR-11",
  5224. "container",
  5225. "container-interface",
  5226. "container-interop",
  5227. "psr"
  5228. ],
  5229. "support": {
  5230. "issues": "https://github.com/php-fig/container/issues",
  5231. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5232. },
  5233. "time": "2021-11-05T16:47:00+00:00"
  5234. },
  5235. {
  5236. "name": "psr/event-dispatcher",
  5237. "version": "1.0.0",
  5238. "source": {
  5239. "type": "git",
  5240. "url": "https://github.com/php-fig/event-dispatcher.git",
  5241. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5242. },
  5243. "dist": {
  5244. "type": "zip",
  5245. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5246. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5247. "shasum": ""
  5248. },
  5249. "require": {
  5250. "php": ">=7.2.0"
  5251. },
  5252. "type": "library",
  5253. "extra": {
  5254. "branch-alias": {
  5255. "dev-master": "1.0.x-dev"
  5256. }
  5257. },
  5258. "autoload": {
  5259. "psr-4": {
  5260. "Psr\\EventDispatcher\\": "src/"
  5261. }
  5262. },
  5263. "notification-url": "https://packagist.org/downloads/",
  5264. "license": [
  5265. "MIT"
  5266. ],
  5267. "authors": [
  5268. {
  5269. "name": "PHP-FIG",
  5270. "homepage": "http://www.php-fig.org/"
  5271. }
  5272. ],
  5273. "description": "Standard interfaces for event handling.",
  5274. "keywords": [
  5275. "events",
  5276. "psr",
  5277. "psr-14"
  5278. ],
  5279. "support": {
  5280. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5281. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5282. },
  5283. "time": "2019-01-08T18:20:26+00:00"
  5284. },
  5285. {
  5286. "name": "psr/http-client",
  5287. "version": "1.0.3",
  5288. "source": {
  5289. "type": "git",
  5290. "url": "https://github.com/php-fig/http-client.git",
  5291. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5292. },
  5293. "dist": {
  5294. "type": "zip",
  5295. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5296. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5297. "shasum": ""
  5298. },
  5299. "require": {
  5300. "php": "^7.0 || ^8.0",
  5301. "psr/http-message": "^1.0 || ^2.0"
  5302. },
  5303. "type": "library",
  5304. "extra": {
  5305. "branch-alias": {
  5306. "dev-master": "1.0.x-dev"
  5307. }
  5308. },
  5309. "autoload": {
  5310. "psr-4": {
  5311. "Psr\\Http\\Client\\": "src/"
  5312. }
  5313. },
  5314. "notification-url": "https://packagist.org/downloads/",
  5315. "license": [
  5316. "MIT"
  5317. ],
  5318. "authors": [
  5319. {
  5320. "name": "PHP-FIG",
  5321. "homepage": "https://www.php-fig.org/"
  5322. }
  5323. ],
  5324. "description": "Common interface for HTTP clients",
  5325. "homepage": "https://github.com/php-fig/http-client",
  5326. "keywords": [
  5327. "http",
  5328. "http-client",
  5329. "psr",
  5330. "psr-18"
  5331. ],
  5332. "support": {
  5333. "source": "https://github.com/php-fig/http-client"
  5334. },
  5335. "time": "2023-09-23T14:17:50+00:00"
  5336. },
  5337. {
  5338. "name": "psr/http-factory",
  5339. "version": "1.0.2",
  5340. "source": {
  5341. "type": "git",
  5342. "url": "https://github.com/php-fig/http-factory.git",
  5343. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  5344. },
  5345. "dist": {
  5346. "type": "zip",
  5347. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  5348. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  5349. "shasum": ""
  5350. },
  5351. "require": {
  5352. "php": ">=7.0.0",
  5353. "psr/http-message": "^1.0 || ^2.0"
  5354. },
  5355. "type": "library",
  5356. "extra": {
  5357. "branch-alias": {
  5358. "dev-master": "1.0.x-dev"
  5359. }
  5360. },
  5361. "autoload": {
  5362. "psr-4": {
  5363. "Psr\\Http\\Message\\": "src/"
  5364. }
  5365. },
  5366. "notification-url": "https://packagist.org/downloads/",
  5367. "license": [
  5368. "MIT"
  5369. ],
  5370. "authors": [
  5371. {
  5372. "name": "PHP-FIG",
  5373. "homepage": "https://www.php-fig.org/"
  5374. }
  5375. ],
  5376. "description": "Common interfaces for PSR-7 HTTP message factories",
  5377. "keywords": [
  5378. "factory",
  5379. "http",
  5380. "message",
  5381. "psr",
  5382. "psr-17",
  5383. "psr-7",
  5384. "request",
  5385. "response"
  5386. ],
  5387. "support": {
  5388. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  5389. },
  5390. "time": "2023-04-10T20:10:41+00:00"
  5391. },
  5392. {
  5393. "name": "psr/http-message",
  5394. "version": "2.0",
  5395. "source": {
  5396. "type": "git",
  5397. "url": "https://github.com/php-fig/http-message.git",
  5398. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5399. },
  5400. "dist": {
  5401. "type": "zip",
  5402. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5403. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5404. "shasum": ""
  5405. },
  5406. "require": {
  5407. "php": "^7.2 || ^8.0"
  5408. },
  5409. "type": "library",
  5410. "extra": {
  5411. "branch-alias": {
  5412. "dev-master": "2.0.x-dev"
  5413. }
  5414. },
  5415. "autoload": {
  5416. "psr-4": {
  5417. "Psr\\Http\\Message\\": "src/"
  5418. }
  5419. },
  5420. "notification-url": "https://packagist.org/downloads/",
  5421. "license": [
  5422. "MIT"
  5423. ],
  5424. "authors": [
  5425. {
  5426. "name": "PHP-FIG",
  5427. "homepage": "https://www.php-fig.org/"
  5428. }
  5429. ],
  5430. "description": "Common interface for HTTP messages",
  5431. "homepage": "https://github.com/php-fig/http-message",
  5432. "keywords": [
  5433. "http",
  5434. "http-message",
  5435. "psr",
  5436. "psr-7",
  5437. "request",
  5438. "response"
  5439. ],
  5440. "support": {
  5441. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5442. },
  5443. "time": "2023-04-04T09:54:51+00:00"
  5444. },
  5445. {
  5446. "name": "psr/log",
  5447. "version": "3.0.0",
  5448. "source": {
  5449. "type": "git",
  5450. "url": "https://github.com/php-fig/log.git",
  5451. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5452. },
  5453. "dist": {
  5454. "type": "zip",
  5455. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5456. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5457. "shasum": ""
  5458. },
  5459. "require": {
  5460. "php": ">=8.0.0"
  5461. },
  5462. "type": "library",
  5463. "extra": {
  5464. "branch-alias": {
  5465. "dev-master": "3.x-dev"
  5466. }
  5467. },
  5468. "autoload": {
  5469. "psr-4": {
  5470. "Psr\\Log\\": "src"
  5471. }
  5472. },
  5473. "notification-url": "https://packagist.org/downloads/",
  5474. "license": [
  5475. "MIT"
  5476. ],
  5477. "authors": [
  5478. {
  5479. "name": "PHP-FIG",
  5480. "homepage": "https://www.php-fig.org/"
  5481. }
  5482. ],
  5483. "description": "Common interface for logging libraries",
  5484. "homepage": "https://github.com/php-fig/log",
  5485. "keywords": [
  5486. "log",
  5487. "psr",
  5488. "psr-3"
  5489. ],
  5490. "support": {
  5491. "source": "https://github.com/php-fig/log/tree/3.0.0"
  5492. },
  5493. "time": "2021-07-14T16:46:02+00:00"
  5494. },
  5495. {
  5496. "name": "psr/simple-cache",
  5497. "version": "3.0.0",
  5498. "source": {
  5499. "type": "git",
  5500. "url": "https://github.com/php-fig/simple-cache.git",
  5501. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5502. },
  5503. "dist": {
  5504. "type": "zip",
  5505. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5506. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5507. "shasum": ""
  5508. },
  5509. "require": {
  5510. "php": ">=8.0.0"
  5511. },
  5512. "type": "library",
  5513. "extra": {
  5514. "branch-alias": {
  5515. "dev-master": "3.0.x-dev"
  5516. }
  5517. },
  5518. "autoload": {
  5519. "psr-4": {
  5520. "Psr\\SimpleCache\\": "src/"
  5521. }
  5522. },
  5523. "notification-url": "https://packagist.org/downloads/",
  5524. "license": [
  5525. "MIT"
  5526. ],
  5527. "authors": [
  5528. {
  5529. "name": "PHP-FIG",
  5530. "homepage": "https://www.php-fig.org/"
  5531. }
  5532. ],
  5533. "description": "Common interfaces for simple caching",
  5534. "keywords": [
  5535. "cache",
  5536. "caching",
  5537. "psr",
  5538. "psr-16",
  5539. "simple-cache"
  5540. ],
  5541. "support": {
  5542. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5543. },
  5544. "time": "2021-10-29T13:26:27+00:00"
  5545. },
  5546. {
  5547. "name": "psy/psysh",
  5548. "version": "v0.12.0",
  5549. "source": {
  5550. "type": "git",
  5551. "url": "https://github.com/bobthecow/psysh.git",
  5552. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d"
  5553. },
  5554. "dist": {
  5555. "type": "zip",
  5556. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d",
  5557. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d",
  5558. "shasum": ""
  5559. },
  5560. "require": {
  5561. "ext-json": "*",
  5562. "ext-tokenizer": "*",
  5563. "nikic/php-parser": "^5.0 || ^4.0",
  5564. "php": "^8.0 || ^7.4",
  5565. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  5566. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  5567. },
  5568. "conflict": {
  5569. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  5570. },
  5571. "require-dev": {
  5572. "bamarni/composer-bin-plugin": "^1.2"
  5573. },
  5574. "suggest": {
  5575. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5576. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5577. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  5578. },
  5579. "bin": [
  5580. "bin/psysh"
  5581. ],
  5582. "type": "library",
  5583. "extra": {
  5584. "branch-alias": {
  5585. "dev-main": "0.12.x-dev"
  5586. },
  5587. "bamarni-bin": {
  5588. "bin-links": false,
  5589. "forward-command": false
  5590. }
  5591. },
  5592. "autoload": {
  5593. "files": [
  5594. "src/functions.php"
  5595. ],
  5596. "psr-4": {
  5597. "Psy\\": "src/"
  5598. }
  5599. },
  5600. "notification-url": "https://packagist.org/downloads/",
  5601. "license": [
  5602. "MIT"
  5603. ],
  5604. "authors": [
  5605. {
  5606. "name": "Justin Hileman",
  5607. "email": "justin@justinhileman.info",
  5608. "homepage": "http://justinhileman.com"
  5609. }
  5610. ],
  5611. "description": "An interactive shell for modern PHP.",
  5612. "homepage": "http://psysh.org",
  5613. "keywords": [
  5614. "REPL",
  5615. "console",
  5616. "interactive",
  5617. "shell"
  5618. ],
  5619. "support": {
  5620. "issues": "https://github.com/bobthecow/psysh/issues",
  5621. "source": "https://github.com/bobthecow/psysh/tree/v0.12.0"
  5622. },
  5623. "time": "2023-12-20T15:28:09+00:00"
  5624. },
  5625. {
  5626. "name": "ralouphie/getallheaders",
  5627. "version": "3.0.3",
  5628. "source": {
  5629. "type": "git",
  5630. "url": "https://github.com/ralouphie/getallheaders.git",
  5631. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5632. },
  5633. "dist": {
  5634. "type": "zip",
  5635. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5636. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5637. "shasum": ""
  5638. },
  5639. "require": {
  5640. "php": ">=5.6"
  5641. },
  5642. "require-dev": {
  5643. "php-coveralls/php-coveralls": "^2.1",
  5644. "phpunit/phpunit": "^5 || ^6.5"
  5645. },
  5646. "type": "library",
  5647. "autoload": {
  5648. "files": [
  5649. "src/getallheaders.php"
  5650. ]
  5651. },
  5652. "notification-url": "https://packagist.org/downloads/",
  5653. "license": [
  5654. "MIT"
  5655. ],
  5656. "authors": [
  5657. {
  5658. "name": "Ralph Khattar",
  5659. "email": "ralph.khattar@gmail.com"
  5660. }
  5661. ],
  5662. "description": "A polyfill for getallheaders.",
  5663. "support": {
  5664. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5665. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5666. },
  5667. "time": "2019-03-08T08:55:37+00:00"
  5668. },
  5669. {
  5670. "name": "ramsey/collection",
  5671. "version": "2.0.0",
  5672. "source": {
  5673. "type": "git",
  5674. "url": "https://github.com/ramsey/collection.git",
  5675. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  5676. },
  5677. "dist": {
  5678. "type": "zip",
  5679. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  5680. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  5681. "shasum": ""
  5682. },
  5683. "require": {
  5684. "php": "^8.1"
  5685. },
  5686. "require-dev": {
  5687. "captainhook/plugin-composer": "^5.3",
  5688. "ergebnis/composer-normalize": "^2.28.3",
  5689. "fakerphp/faker": "^1.21",
  5690. "hamcrest/hamcrest-php": "^2.0",
  5691. "jangregor/phpstan-prophecy": "^1.0",
  5692. "mockery/mockery": "^1.5",
  5693. "php-parallel-lint/php-console-highlighter": "^1.0",
  5694. "php-parallel-lint/php-parallel-lint": "^1.3",
  5695. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  5696. "phpspec/prophecy-phpunit": "^2.0",
  5697. "phpstan/extension-installer": "^1.2",
  5698. "phpstan/phpstan": "^1.9",
  5699. "phpstan/phpstan-mockery": "^1.1",
  5700. "phpstan/phpstan-phpunit": "^1.3",
  5701. "phpunit/phpunit": "^9.5",
  5702. "psalm/plugin-mockery": "^1.1",
  5703. "psalm/plugin-phpunit": "^0.18.4",
  5704. "ramsey/coding-standard": "^2.0.3",
  5705. "ramsey/conventional-commits": "^1.3",
  5706. "vimeo/psalm": "^5.4"
  5707. },
  5708. "type": "library",
  5709. "extra": {
  5710. "captainhook": {
  5711. "force-install": true
  5712. },
  5713. "ramsey/conventional-commits": {
  5714. "configFile": "conventional-commits.json"
  5715. }
  5716. },
  5717. "autoload": {
  5718. "psr-4": {
  5719. "Ramsey\\Collection\\": "src/"
  5720. }
  5721. },
  5722. "notification-url": "https://packagist.org/downloads/",
  5723. "license": [
  5724. "MIT"
  5725. ],
  5726. "authors": [
  5727. {
  5728. "name": "Ben Ramsey",
  5729. "email": "ben@benramsey.com",
  5730. "homepage": "https://benramsey.com"
  5731. }
  5732. ],
  5733. "description": "A PHP library for representing and manipulating collections.",
  5734. "keywords": [
  5735. "array",
  5736. "collection",
  5737. "hash",
  5738. "map",
  5739. "queue",
  5740. "set"
  5741. ],
  5742. "support": {
  5743. "issues": "https://github.com/ramsey/collection/issues",
  5744. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  5745. },
  5746. "funding": [
  5747. {
  5748. "url": "https://github.com/ramsey",
  5749. "type": "github"
  5750. },
  5751. {
  5752. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  5753. "type": "tidelift"
  5754. }
  5755. ],
  5756. "time": "2022-12-31T21:50:55+00:00"
  5757. },
  5758. {
  5759. "name": "ramsey/uuid",
  5760. "version": "4.7.5",
  5761. "source": {
  5762. "type": "git",
  5763. "url": "https://github.com/ramsey/uuid.git",
  5764. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e"
  5765. },
  5766. "dist": {
  5767. "type": "zip",
  5768. "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  5769. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  5770. "shasum": ""
  5771. },
  5772. "require": {
  5773. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  5774. "ext-json": "*",
  5775. "php": "^8.0",
  5776. "ramsey/collection": "^1.2 || ^2.0"
  5777. },
  5778. "replace": {
  5779. "rhumsaa/uuid": "self.version"
  5780. },
  5781. "require-dev": {
  5782. "captainhook/captainhook": "^5.10",
  5783. "captainhook/plugin-composer": "^5.3",
  5784. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5785. "doctrine/annotations": "^1.8",
  5786. "ergebnis/composer-normalize": "^2.15",
  5787. "mockery/mockery": "^1.3",
  5788. "paragonie/random-lib": "^2",
  5789. "php-mock/php-mock": "^2.2",
  5790. "php-mock/php-mock-mockery": "^1.3",
  5791. "php-parallel-lint/php-parallel-lint": "^1.1",
  5792. "phpbench/phpbench": "^1.0",
  5793. "phpstan/extension-installer": "^1.1",
  5794. "phpstan/phpstan": "^1.8",
  5795. "phpstan/phpstan-mockery": "^1.1",
  5796. "phpstan/phpstan-phpunit": "^1.1",
  5797. "phpunit/phpunit": "^8.5 || ^9",
  5798. "ramsey/composer-repl": "^1.4",
  5799. "slevomat/coding-standard": "^8.4",
  5800. "squizlabs/php_codesniffer": "^3.5",
  5801. "vimeo/psalm": "^4.9"
  5802. },
  5803. "suggest": {
  5804. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5805. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5806. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5807. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5808. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5809. },
  5810. "type": "library",
  5811. "extra": {
  5812. "captainhook": {
  5813. "force-install": true
  5814. }
  5815. },
  5816. "autoload": {
  5817. "files": [
  5818. "src/functions.php"
  5819. ],
  5820. "psr-4": {
  5821. "Ramsey\\Uuid\\": "src/"
  5822. }
  5823. },
  5824. "notification-url": "https://packagist.org/downloads/",
  5825. "license": [
  5826. "MIT"
  5827. ],
  5828. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5829. "keywords": [
  5830. "guid",
  5831. "identifier",
  5832. "uuid"
  5833. ],
  5834. "support": {
  5835. "issues": "https://github.com/ramsey/uuid/issues",
  5836. "source": "https://github.com/ramsey/uuid/tree/4.7.5"
  5837. },
  5838. "funding": [
  5839. {
  5840. "url": "https://github.com/ramsey",
  5841. "type": "github"
  5842. },
  5843. {
  5844. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  5845. "type": "tidelift"
  5846. }
  5847. ],
  5848. "time": "2023-11-08T05:53:05+00:00"
  5849. },
  5850. {
  5851. "name": "ryangjchandler/blade-capture-directive",
  5852. "version": "v0.3.0",
  5853. "source": {
  5854. "type": "git",
  5855. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  5856. "reference": "62fd2ecb50b938a46025093bcb64fcaddd531f89"
  5857. },
  5858. "dist": {
  5859. "type": "zip",
  5860. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/62fd2ecb50b938a46025093bcb64fcaddd531f89",
  5861. "reference": "62fd2ecb50b938a46025093bcb64fcaddd531f89",
  5862. "shasum": ""
  5863. },
  5864. "require": {
  5865. "illuminate/contracts": "^9.0|^10.0",
  5866. "php": "^8.0",
  5867. "spatie/laravel-package-tools": "^1.9.2"
  5868. },
  5869. "require-dev": {
  5870. "nunomaduro/collision": "^6.0|^7.0",
  5871. "nunomaduro/larastan": "^2.0",
  5872. "orchestra/testbench": "^7.22|^8.0",
  5873. "pestphp/pest": "^1.21",
  5874. "pestphp/pest-plugin-laravel": "^1.1",
  5875. "phpstan/extension-installer": "^1.1",
  5876. "phpstan/phpstan-deprecation-rules": "^1.0",
  5877. "phpstan/phpstan-phpunit": "^1.0",
  5878. "phpunit/phpunit": "^9.5",
  5879. "spatie/laravel-ray": "^1.26"
  5880. },
  5881. "type": "library",
  5882. "extra": {
  5883. "laravel": {
  5884. "providers": [
  5885. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  5886. ],
  5887. "aliases": {
  5888. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  5889. }
  5890. }
  5891. },
  5892. "autoload": {
  5893. "psr-4": {
  5894. "RyanChandler\\BladeCaptureDirective\\": "src",
  5895. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  5896. }
  5897. },
  5898. "notification-url": "https://packagist.org/downloads/",
  5899. "license": [
  5900. "MIT"
  5901. ],
  5902. "authors": [
  5903. {
  5904. "name": "Ryan Chandler",
  5905. "email": "support@ryangjchandler.co.uk",
  5906. "role": "Developer"
  5907. }
  5908. ],
  5909. "description": "Create inline partials in your Blade templates with ease.",
  5910. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  5911. "keywords": [
  5912. "blade-capture-directive",
  5913. "laravel",
  5914. "ryangjchandler"
  5915. ],
  5916. "support": {
  5917. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  5918. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v0.3.0"
  5919. },
  5920. "funding": [
  5921. {
  5922. "url": "https://github.com/ryangjchandler",
  5923. "type": "github"
  5924. }
  5925. ],
  5926. "time": "2023-02-14T16:54:54+00:00"
  5927. },
  5928. {
  5929. "name": "spatie/color",
  5930. "version": "1.5.3",
  5931. "source": {
  5932. "type": "git",
  5933. "url": "https://github.com/spatie/color.git",
  5934. "reference": "49739265900cabce4640cd26c3266fd8d2cca390"
  5935. },
  5936. "dist": {
  5937. "type": "zip",
  5938. "url": "https://api.github.com/repos/spatie/color/zipball/49739265900cabce4640cd26c3266fd8d2cca390",
  5939. "reference": "49739265900cabce4640cd26c3266fd8d2cca390",
  5940. "shasum": ""
  5941. },
  5942. "require": {
  5943. "php": "^7.3|^8.0"
  5944. },
  5945. "require-dev": {
  5946. "pestphp/pest": "^1.22",
  5947. "phpunit/phpunit": "^6.5||^9.0"
  5948. },
  5949. "type": "library",
  5950. "autoload": {
  5951. "psr-4": {
  5952. "Spatie\\Color\\": "src"
  5953. }
  5954. },
  5955. "notification-url": "https://packagist.org/downloads/",
  5956. "license": [
  5957. "MIT"
  5958. ],
  5959. "authors": [
  5960. {
  5961. "name": "Sebastian De Deyne",
  5962. "email": "sebastian@spatie.be",
  5963. "homepage": "https://spatie.be",
  5964. "role": "Developer"
  5965. }
  5966. ],
  5967. "description": "A little library to handle color conversions",
  5968. "homepage": "https://github.com/spatie/color",
  5969. "keywords": [
  5970. "color",
  5971. "conversion",
  5972. "rgb",
  5973. "spatie"
  5974. ],
  5975. "support": {
  5976. "issues": "https://github.com/spatie/color/issues",
  5977. "source": "https://github.com/spatie/color/tree/1.5.3"
  5978. },
  5979. "funding": [
  5980. {
  5981. "url": "https://github.com/spatie",
  5982. "type": "github"
  5983. }
  5984. ],
  5985. "time": "2022-12-18T12:58:32+00:00"
  5986. },
  5987. {
  5988. "name": "spatie/eloquent-sortable",
  5989. "version": "4.1.1",
  5990. "source": {
  5991. "type": "git",
  5992. "url": "https://github.com/spatie/eloquent-sortable.git",
  5993. "reference": "7614a20c417b53e025b17eac8e84bc3d65962428"
  5994. },
  5995. "dist": {
  5996. "type": "zip",
  5997. "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/7614a20c417b53e025b17eac8e84bc3d65962428",
  5998. "reference": "7614a20c417b53e025b17eac8e84bc3d65962428",
  5999. "shasum": ""
  6000. },
  6001. "require": {
  6002. "illuminate/database": "^9.0|^10.0",
  6003. "illuminate/support": "^9.0|^10.0",
  6004. "nesbot/carbon": "^2.63",
  6005. "php": "^8.1",
  6006. "spatie/laravel-package-tools": "^1.9"
  6007. },
  6008. "require-dev": {
  6009. "orchestra/testbench": "^7.0|^8.0",
  6010. "phpunit/phpunit": "^9.5"
  6011. },
  6012. "type": "library",
  6013. "extra": {
  6014. "laravel": {
  6015. "providers": [
  6016. "Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
  6017. ]
  6018. }
  6019. },
  6020. "autoload": {
  6021. "psr-4": {
  6022. "Spatie\\EloquentSortable\\": "src/"
  6023. }
  6024. },
  6025. "notification-url": "https://packagist.org/downloads/",
  6026. "license": [
  6027. "MIT"
  6028. ],
  6029. "authors": [
  6030. {
  6031. "name": "Freek Van der Herten",
  6032. "email": "freek@spatie.be"
  6033. }
  6034. ],
  6035. "description": "Sortable behaviour for eloquent models",
  6036. "homepage": "https://github.com/spatie/eloquent-sortable",
  6037. "keywords": [
  6038. "behaviour",
  6039. "eloquent",
  6040. "laravel",
  6041. "model",
  6042. "sort",
  6043. "sortable"
  6044. ],
  6045. "support": {
  6046. "issues": "https://github.com/spatie/eloquent-sortable/issues",
  6047. "source": "https://github.com/spatie/eloquent-sortable/tree/4.1.1"
  6048. },
  6049. "funding": [
  6050. {
  6051. "url": "https://spatie.be/open-source/support-us",
  6052. "type": "custom"
  6053. },
  6054. {
  6055. "url": "https://github.com/spatie",
  6056. "type": "github"
  6057. }
  6058. ],
  6059. "time": "2024-01-22T08:45:25+00:00"
  6060. },
  6061. {
  6062. "name": "spatie/invade",
  6063. "version": "2.0.0",
  6064. "source": {
  6065. "type": "git",
  6066. "url": "https://github.com/spatie/invade.git",
  6067. "reference": "7b20a25486de69198e402da20dc924d8bcc8024a"
  6068. },
  6069. "dist": {
  6070. "type": "zip",
  6071. "url": "https://api.github.com/repos/spatie/invade/zipball/7b20a25486de69198e402da20dc924d8bcc8024a",
  6072. "reference": "7b20a25486de69198e402da20dc924d8bcc8024a",
  6073. "shasum": ""
  6074. },
  6075. "require": {
  6076. "php": "^8.0"
  6077. },
  6078. "require-dev": {
  6079. "pestphp/pest": "^1.20",
  6080. "phpstan/phpstan": "^1.4",
  6081. "spatie/ray": "^1.28"
  6082. },
  6083. "type": "library",
  6084. "autoload": {
  6085. "files": [
  6086. "src/functions.php"
  6087. ],
  6088. "psr-4": {
  6089. "Spatie\\Invade\\": "src"
  6090. }
  6091. },
  6092. "notification-url": "https://packagist.org/downloads/",
  6093. "license": [
  6094. "MIT"
  6095. ],
  6096. "authors": [
  6097. {
  6098. "name": "Freek Van der Herten",
  6099. "email": "freek@spatie.be",
  6100. "role": "Developer"
  6101. }
  6102. ],
  6103. "description": "A PHP function to work with private properties and methods",
  6104. "homepage": "https://github.com/spatie/invade",
  6105. "keywords": [
  6106. "invade",
  6107. "spatie"
  6108. ],
  6109. "support": {
  6110. "source": "https://github.com/spatie/invade/tree/2.0.0"
  6111. },
  6112. "funding": [
  6113. {
  6114. "url": "https://github.com/spatie",
  6115. "type": "github"
  6116. }
  6117. ],
  6118. "time": "2023-07-19T18:55:36+00:00"
  6119. },
  6120. {
  6121. "name": "spatie/laravel-package-tools",
  6122. "version": "1.16.2",
  6123. "source": {
  6124. "type": "git",
  6125. "url": "https://github.com/spatie/laravel-package-tools.git",
  6126. "reference": "e62eeb1fe8a8a0b2e83227a6c279c8c59f7d3a15"
  6127. },
  6128. "dist": {
  6129. "type": "zip",
  6130. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/e62eeb1fe8a8a0b2e83227a6c279c8c59f7d3a15",
  6131. "reference": "e62eeb1fe8a8a0b2e83227a6c279c8c59f7d3a15",
  6132. "shasum": ""
  6133. },
  6134. "require": {
  6135. "illuminate/contracts": "^9.28|^10.0|^11.0",
  6136. "php": "^8.0"
  6137. },
  6138. "require-dev": {
  6139. "mockery/mockery": "^1.5",
  6140. "orchestra/testbench": "^7.7|^8.0",
  6141. "pestphp/pest": "^1.22",
  6142. "phpunit/phpunit": "^9.5.24",
  6143. "spatie/pest-plugin-test-time": "^1.1"
  6144. },
  6145. "type": "library",
  6146. "autoload": {
  6147. "psr-4": {
  6148. "Spatie\\LaravelPackageTools\\": "src"
  6149. }
  6150. },
  6151. "notification-url": "https://packagist.org/downloads/",
  6152. "license": [
  6153. "MIT"
  6154. ],
  6155. "authors": [
  6156. {
  6157. "name": "Freek Van der Herten",
  6158. "email": "freek@spatie.be",
  6159. "role": "Developer"
  6160. }
  6161. ],
  6162. "description": "Tools for creating Laravel packages",
  6163. "homepage": "https://github.com/spatie/laravel-package-tools",
  6164. "keywords": [
  6165. "laravel-package-tools",
  6166. "spatie"
  6167. ],
  6168. "support": {
  6169. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6170. "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.2"
  6171. },
  6172. "funding": [
  6173. {
  6174. "url": "https://github.com/spatie",
  6175. "type": "github"
  6176. }
  6177. ],
  6178. "time": "2024-01-11T08:43:00+00:00"
  6179. },
  6180. {
  6181. "name": "spatie/laravel-tags",
  6182. "version": "4.5.2",
  6183. "source": {
  6184. "type": "git",
  6185. "url": "https://github.com/spatie/laravel-tags.git",
  6186. "reference": "627587878731650c52d79e2132cfd1410a18d428"
  6187. },
  6188. "dist": {
  6189. "type": "zip",
  6190. "url": "https://api.github.com/repos/spatie/laravel-tags/zipball/627587878731650c52d79e2132cfd1410a18d428",
  6191. "reference": "627587878731650c52d79e2132cfd1410a18d428",
  6192. "shasum": ""
  6193. },
  6194. "require": {
  6195. "laravel/framework": "^8.67|^9.0|^10.0",
  6196. "nesbot/carbon": "^2.63",
  6197. "php": "^8.0",
  6198. "spatie/eloquent-sortable": "^3.10|^4.0",
  6199. "spatie/laravel-package-tools": "^1.4",
  6200. "spatie/laravel-translatable": "^4.6|^5.0|^6.0"
  6201. },
  6202. "require-dev": {
  6203. "orchestra/testbench": "^6.13|^7.0|^8.0",
  6204. "pestphp/pest": "^1.22",
  6205. "phpunit/phpunit": "^9.5.2"
  6206. },
  6207. "type": "library",
  6208. "extra": {
  6209. "laravel": {
  6210. "providers": [
  6211. "Spatie\\Tags\\TagsServiceProvider"
  6212. ]
  6213. }
  6214. },
  6215. "autoload": {
  6216. "psr-4": {
  6217. "Spatie\\Tags\\": "src"
  6218. }
  6219. },
  6220. "notification-url": "https://packagist.org/downloads/",
  6221. "license": [
  6222. "MIT"
  6223. ],
  6224. "authors": [
  6225. {
  6226. "name": "Freek Van der Herten",
  6227. "email": "freek@spatie.be",
  6228. "homepage": "https://spatie.be",
  6229. "role": "Developer"
  6230. }
  6231. ],
  6232. "description": "Add tags and taggable behaviour to your Laravel app",
  6233. "homepage": "https://github.com/spatie/laravel-tags",
  6234. "keywords": [
  6235. "laravel-tags",
  6236. "spatie"
  6237. ],
  6238. "support": {
  6239. "issues": "https://github.com/spatie/laravel-tags/issues",
  6240. "source": "https://github.com/spatie/laravel-tags/tree/4.5.2"
  6241. },
  6242. "funding": [
  6243. {
  6244. "url": "https://github.com/spatie",
  6245. "type": "github"
  6246. }
  6247. ],
  6248. "time": "2024-01-19T22:10:13+00:00"
  6249. },
  6250. {
  6251. "name": "spatie/laravel-translatable",
  6252. "version": "6.5.5",
  6253. "source": {
  6254. "type": "git",
  6255. "url": "https://github.com/spatie/laravel-translatable.git",
  6256. "reference": "d6dc7c9fe3c678ce50b2d6a4a7434fcbcfc3df4c"
  6257. },
  6258. "dist": {
  6259. "type": "zip",
  6260. "url": "https://api.github.com/repos/spatie/laravel-translatable/zipball/d6dc7c9fe3c678ce50b2d6a4a7434fcbcfc3df4c",
  6261. "reference": "d6dc7c9fe3c678ce50b2d6a4a7434fcbcfc3df4c",
  6262. "shasum": ""
  6263. },
  6264. "require": {
  6265. "illuminate/database": "^9.0|^10.0",
  6266. "illuminate/support": "^9.0|^10.0",
  6267. "php": "^8.0",
  6268. "spatie/laravel-package-tools": "^1.11"
  6269. },
  6270. "require-dev": {
  6271. "mockery/mockery": "^1.4",
  6272. "orchestra/testbench": "^7.0|^8.0",
  6273. "pestphp/pest": "^1.20"
  6274. },
  6275. "type": "library",
  6276. "extra": {
  6277. "laravel": {
  6278. "providers": [
  6279. "Spatie\\Translatable\\TranslatableServiceProvider"
  6280. ]
  6281. },
  6282. "aliases": {
  6283. "Translatable": "Spatie\\Translatable\\Facades\\Translatable"
  6284. }
  6285. },
  6286. "autoload": {
  6287. "psr-4": {
  6288. "Spatie\\Translatable\\": "src"
  6289. }
  6290. },
  6291. "notification-url": "https://packagist.org/downloads/",
  6292. "license": [
  6293. "MIT"
  6294. ],
  6295. "authors": [
  6296. {
  6297. "name": "Freek Van der Herten",
  6298. "email": "freek@spatie.be",
  6299. "homepage": "https://spatie.be",
  6300. "role": "Developer"
  6301. },
  6302. {
  6303. "name": "Sebastian De Deyne",
  6304. "email": "sebastian@spatie.be",
  6305. "homepage": "https://spatie.be",
  6306. "role": "Developer"
  6307. }
  6308. ],
  6309. "description": "A trait to make an Eloquent model hold translations",
  6310. "homepage": "https://github.com/spatie/laravel-translatable",
  6311. "keywords": [
  6312. "eloquent",
  6313. "i8n",
  6314. "laravel-translatable",
  6315. "model",
  6316. "multilingual",
  6317. "spatie",
  6318. "translate"
  6319. ],
  6320. "support": {
  6321. "issues": "https://github.com/spatie/laravel-translatable/issues",
  6322. "source": "https://github.com/spatie/laravel-translatable/tree/6.5.5"
  6323. },
  6324. "funding": [
  6325. {
  6326. "url": "https://github.com/spatie",
  6327. "type": "github"
  6328. }
  6329. ],
  6330. "time": "2023-12-06T10:56:22+00:00"
  6331. },
  6332. {
  6333. "name": "squirephp/model",
  6334. "version": "v3.4.4",
  6335. "source": {
  6336. "type": "git",
  6337. "url": "https://github.com/squirephp/model.git",
  6338. "reference": "dbd3cd2fb74c36f6aabd9294de40a8f64c82518d"
  6339. },
  6340. "dist": {
  6341. "type": "zip",
  6342. "url": "https://api.github.com/repos/squirephp/model/zipball/dbd3cd2fb74c36f6aabd9294de40a8f64c82518d",
  6343. "reference": "dbd3cd2fb74c36f6aabd9294de40a8f64c82518d",
  6344. "shasum": ""
  6345. },
  6346. "require": {
  6347. "ext-pdo_sqlite": "*",
  6348. "illuminate/database": "^8.40|^9.0|^10.0",
  6349. "illuminate/support": "^8.0|^9.0|^10.0",
  6350. "php": "^8.0"
  6351. },
  6352. "type": "library",
  6353. "extra": {
  6354. "laravel": {
  6355. "providers": [
  6356. "Squire\\ModelServiceProvider"
  6357. ]
  6358. }
  6359. },
  6360. "autoload": {
  6361. "psr-4": {
  6362. "Squire\\": "src"
  6363. }
  6364. },
  6365. "notification-url": "https://packagist.org/downloads/",
  6366. "license": [
  6367. "MIT"
  6368. ],
  6369. "authors": [
  6370. {
  6371. "name": "Dan Harrin",
  6372. "email": "dan@danharrin.com"
  6373. }
  6374. ],
  6375. "description": "A library containing the base Squire model class.",
  6376. "homepage": "https://github.com/squirephp",
  6377. "keywords": [
  6378. "squire"
  6379. ],
  6380. "support": {
  6381. "issues": "https://github.com/squirephp/squire/issues",
  6382. "source": "https://github.com/squirephp/squire"
  6383. },
  6384. "time": "2023-02-18T12:44:15+00:00"
  6385. },
  6386. {
  6387. "name": "squirephp/repository",
  6388. "version": "v3.4.4",
  6389. "source": {
  6390. "type": "git",
  6391. "url": "https://github.com/squirephp/repository.git",
  6392. "reference": "dffe543ee093cdad29c776ae901eb5aa43ac371a"
  6393. },
  6394. "dist": {
  6395. "type": "zip",
  6396. "url": "https://api.github.com/repos/squirephp/repository/zipball/dffe543ee093cdad29c776ae901eb5aa43ac371a",
  6397. "reference": "dffe543ee093cdad29c776ae901eb5aa43ac371a",
  6398. "shasum": ""
  6399. },
  6400. "require": {
  6401. "illuminate/support": "^8.0|^9.0|^10.0",
  6402. "php": "^8.0"
  6403. },
  6404. "type": "library",
  6405. "extra": {
  6406. "laravel": {
  6407. "providers": [
  6408. "Squire\\RepositoryServiceProvider"
  6409. ],
  6410. "aliases": {
  6411. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  6412. }
  6413. }
  6414. },
  6415. "autoload": {
  6416. "psr-4": {
  6417. "Squire\\": "src"
  6418. }
  6419. },
  6420. "notification-url": "https://packagist.org/downloads/",
  6421. "license": [
  6422. "MIT"
  6423. ],
  6424. "authors": [
  6425. {
  6426. "name": "Dan Harrin",
  6427. "email": "dan@danharrin.com"
  6428. }
  6429. ],
  6430. "description": "A library containing the Squire repository.",
  6431. "homepage": "https://github.com/squirephp",
  6432. "keywords": [
  6433. "squire"
  6434. ],
  6435. "support": {
  6436. "issues": "https://github.com/squirephp/squire/issues",
  6437. "source": "https://github.com/squirephp/squire"
  6438. },
  6439. "time": "2023-02-18T12:44:39+00:00"
  6440. },
  6441. {
  6442. "name": "symfony/console",
  6443. "version": "v6.4.3",
  6444. "source": {
  6445. "type": "git",
  6446. "url": "https://github.com/symfony/console.git",
  6447. "reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e"
  6448. },
  6449. "dist": {
  6450. "type": "zip",
  6451. "url": "https://api.github.com/repos/symfony/console/zipball/2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e",
  6452. "reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e",
  6453. "shasum": ""
  6454. },
  6455. "require": {
  6456. "php": ">=8.1",
  6457. "symfony/deprecation-contracts": "^2.5|^3",
  6458. "symfony/polyfill-mbstring": "~1.0",
  6459. "symfony/service-contracts": "^2.5|^3",
  6460. "symfony/string": "^5.4|^6.0|^7.0"
  6461. },
  6462. "conflict": {
  6463. "symfony/dependency-injection": "<5.4",
  6464. "symfony/dotenv": "<5.4",
  6465. "symfony/event-dispatcher": "<5.4",
  6466. "symfony/lock": "<5.4",
  6467. "symfony/process": "<5.4"
  6468. },
  6469. "provide": {
  6470. "psr/log-implementation": "1.0|2.0|3.0"
  6471. },
  6472. "require-dev": {
  6473. "psr/log": "^1|^2|^3",
  6474. "symfony/config": "^5.4|^6.0|^7.0",
  6475. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6476. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6477. "symfony/http-foundation": "^6.4|^7.0",
  6478. "symfony/http-kernel": "^6.4|^7.0",
  6479. "symfony/lock": "^5.4|^6.0|^7.0",
  6480. "symfony/messenger": "^5.4|^6.0|^7.0",
  6481. "symfony/process": "^5.4|^6.0|^7.0",
  6482. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6483. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6484. },
  6485. "type": "library",
  6486. "autoload": {
  6487. "psr-4": {
  6488. "Symfony\\Component\\Console\\": ""
  6489. },
  6490. "exclude-from-classmap": [
  6491. "/Tests/"
  6492. ]
  6493. },
  6494. "notification-url": "https://packagist.org/downloads/",
  6495. "license": [
  6496. "MIT"
  6497. ],
  6498. "authors": [
  6499. {
  6500. "name": "Fabien Potencier",
  6501. "email": "fabien@symfony.com"
  6502. },
  6503. {
  6504. "name": "Symfony Community",
  6505. "homepage": "https://symfony.com/contributors"
  6506. }
  6507. ],
  6508. "description": "Eases the creation of beautiful and testable command line interfaces",
  6509. "homepage": "https://symfony.com",
  6510. "keywords": [
  6511. "cli",
  6512. "command-line",
  6513. "console",
  6514. "terminal"
  6515. ],
  6516. "support": {
  6517. "source": "https://github.com/symfony/console/tree/v6.4.3"
  6518. },
  6519. "funding": [
  6520. {
  6521. "url": "https://symfony.com/sponsor",
  6522. "type": "custom"
  6523. },
  6524. {
  6525. "url": "https://github.com/fabpot",
  6526. "type": "github"
  6527. },
  6528. {
  6529. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6530. "type": "tidelift"
  6531. }
  6532. ],
  6533. "time": "2024-01-23T14:51:35+00:00"
  6534. },
  6535. {
  6536. "name": "symfony/css-selector",
  6537. "version": "v7.0.3",
  6538. "source": {
  6539. "type": "git",
  6540. "url": "https://github.com/symfony/css-selector.git",
  6541. "reference": "ec60a4edf94e63b0556b6a0888548bb400a3a3be"
  6542. },
  6543. "dist": {
  6544. "type": "zip",
  6545. "url": "https://api.github.com/repos/symfony/css-selector/zipball/ec60a4edf94e63b0556b6a0888548bb400a3a3be",
  6546. "reference": "ec60a4edf94e63b0556b6a0888548bb400a3a3be",
  6547. "shasum": ""
  6548. },
  6549. "require": {
  6550. "php": ">=8.2"
  6551. },
  6552. "type": "library",
  6553. "autoload": {
  6554. "psr-4": {
  6555. "Symfony\\Component\\CssSelector\\": ""
  6556. },
  6557. "exclude-from-classmap": [
  6558. "/Tests/"
  6559. ]
  6560. },
  6561. "notification-url": "https://packagist.org/downloads/",
  6562. "license": [
  6563. "MIT"
  6564. ],
  6565. "authors": [
  6566. {
  6567. "name": "Fabien Potencier",
  6568. "email": "fabien@symfony.com"
  6569. },
  6570. {
  6571. "name": "Jean-François Simon",
  6572. "email": "jeanfrancois.simon@sensiolabs.com"
  6573. },
  6574. {
  6575. "name": "Symfony Community",
  6576. "homepage": "https://symfony.com/contributors"
  6577. }
  6578. ],
  6579. "description": "Converts CSS selectors to XPath expressions",
  6580. "homepage": "https://symfony.com",
  6581. "support": {
  6582. "source": "https://github.com/symfony/css-selector/tree/v7.0.3"
  6583. },
  6584. "funding": [
  6585. {
  6586. "url": "https://symfony.com/sponsor",
  6587. "type": "custom"
  6588. },
  6589. {
  6590. "url": "https://github.com/fabpot",
  6591. "type": "github"
  6592. },
  6593. {
  6594. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6595. "type": "tidelift"
  6596. }
  6597. ],
  6598. "time": "2024-01-23T15:02:46+00:00"
  6599. },
  6600. {
  6601. "name": "symfony/deprecation-contracts",
  6602. "version": "v3.4.0",
  6603. "source": {
  6604. "type": "git",
  6605. "url": "https://github.com/symfony/deprecation-contracts.git",
  6606. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  6607. },
  6608. "dist": {
  6609. "type": "zip",
  6610. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  6611. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  6612. "shasum": ""
  6613. },
  6614. "require": {
  6615. "php": ">=8.1"
  6616. },
  6617. "type": "library",
  6618. "extra": {
  6619. "branch-alias": {
  6620. "dev-main": "3.4-dev"
  6621. },
  6622. "thanks": {
  6623. "name": "symfony/contracts",
  6624. "url": "https://github.com/symfony/contracts"
  6625. }
  6626. },
  6627. "autoload": {
  6628. "files": [
  6629. "function.php"
  6630. ]
  6631. },
  6632. "notification-url": "https://packagist.org/downloads/",
  6633. "license": [
  6634. "MIT"
  6635. ],
  6636. "authors": [
  6637. {
  6638. "name": "Nicolas Grekas",
  6639. "email": "p@tchwork.com"
  6640. },
  6641. {
  6642. "name": "Symfony Community",
  6643. "homepage": "https://symfony.com/contributors"
  6644. }
  6645. ],
  6646. "description": "A generic function and convention to trigger deprecation notices",
  6647. "homepage": "https://symfony.com",
  6648. "support": {
  6649. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  6650. },
  6651. "funding": [
  6652. {
  6653. "url": "https://symfony.com/sponsor",
  6654. "type": "custom"
  6655. },
  6656. {
  6657. "url": "https://github.com/fabpot",
  6658. "type": "github"
  6659. },
  6660. {
  6661. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6662. "type": "tidelift"
  6663. }
  6664. ],
  6665. "time": "2023-05-23T14:45:45+00:00"
  6666. },
  6667. {
  6668. "name": "symfony/error-handler",
  6669. "version": "v6.4.3",
  6670. "source": {
  6671. "type": "git",
  6672. "url": "https://github.com/symfony/error-handler.git",
  6673. "reference": "6dc3c76a278b77f01d864a6005d640822c6f26a6"
  6674. },
  6675. "dist": {
  6676. "type": "zip",
  6677. "url": "https://api.github.com/repos/symfony/error-handler/zipball/6dc3c76a278b77f01d864a6005d640822c6f26a6",
  6678. "reference": "6dc3c76a278b77f01d864a6005d640822c6f26a6",
  6679. "shasum": ""
  6680. },
  6681. "require": {
  6682. "php": ">=8.1",
  6683. "psr/log": "^1|^2|^3",
  6684. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6685. },
  6686. "conflict": {
  6687. "symfony/deprecation-contracts": "<2.5",
  6688. "symfony/http-kernel": "<6.4"
  6689. },
  6690. "require-dev": {
  6691. "symfony/deprecation-contracts": "^2.5|^3",
  6692. "symfony/http-kernel": "^6.4|^7.0",
  6693. "symfony/serializer": "^5.4|^6.0|^7.0"
  6694. },
  6695. "bin": [
  6696. "Resources/bin/patch-type-declarations"
  6697. ],
  6698. "type": "library",
  6699. "autoload": {
  6700. "psr-4": {
  6701. "Symfony\\Component\\ErrorHandler\\": ""
  6702. },
  6703. "exclude-from-classmap": [
  6704. "/Tests/"
  6705. ]
  6706. },
  6707. "notification-url": "https://packagist.org/downloads/",
  6708. "license": [
  6709. "MIT"
  6710. ],
  6711. "authors": [
  6712. {
  6713. "name": "Fabien Potencier",
  6714. "email": "fabien@symfony.com"
  6715. },
  6716. {
  6717. "name": "Symfony Community",
  6718. "homepage": "https://symfony.com/contributors"
  6719. }
  6720. ],
  6721. "description": "Provides tools to manage errors and ease debugging PHP code",
  6722. "homepage": "https://symfony.com",
  6723. "support": {
  6724. "source": "https://github.com/symfony/error-handler/tree/v6.4.3"
  6725. },
  6726. "funding": [
  6727. {
  6728. "url": "https://symfony.com/sponsor",
  6729. "type": "custom"
  6730. },
  6731. {
  6732. "url": "https://github.com/fabpot",
  6733. "type": "github"
  6734. },
  6735. {
  6736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6737. "type": "tidelift"
  6738. }
  6739. ],
  6740. "time": "2024-01-29T15:40:36+00:00"
  6741. },
  6742. {
  6743. "name": "symfony/event-dispatcher",
  6744. "version": "v7.0.3",
  6745. "source": {
  6746. "type": "git",
  6747. "url": "https://github.com/symfony/event-dispatcher.git",
  6748. "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e"
  6749. },
  6750. "dist": {
  6751. "type": "zip",
  6752. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/834c28d533dd0636f910909d01b9ff45cc094b5e",
  6753. "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e",
  6754. "shasum": ""
  6755. },
  6756. "require": {
  6757. "php": ">=8.2",
  6758. "symfony/event-dispatcher-contracts": "^2.5|^3"
  6759. },
  6760. "conflict": {
  6761. "symfony/dependency-injection": "<6.4",
  6762. "symfony/service-contracts": "<2.5"
  6763. },
  6764. "provide": {
  6765. "psr/event-dispatcher-implementation": "1.0",
  6766. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6767. },
  6768. "require-dev": {
  6769. "psr/log": "^1|^2|^3",
  6770. "symfony/config": "^6.4|^7.0",
  6771. "symfony/dependency-injection": "^6.4|^7.0",
  6772. "symfony/error-handler": "^6.4|^7.0",
  6773. "symfony/expression-language": "^6.4|^7.0",
  6774. "symfony/http-foundation": "^6.4|^7.0",
  6775. "symfony/service-contracts": "^2.5|^3",
  6776. "symfony/stopwatch": "^6.4|^7.0"
  6777. },
  6778. "type": "library",
  6779. "autoload": {
  6780. "psr-4": {
  6781. "Symfony\\Component\\EventDispatcher\\": ""
  6782. },
  6783. "exclude-from-classmap": [
  6784. "/Tests/"
  6785. ]
  6786. },
  6787. "notification-url": "https://packagist.org/downloads/",
  6788. "license": [
  6789. "MIT"
  6790. ],
  6791. "authors": [
  6792. {
  6793. "name": "Fabien Potencier",
  6794. "email": "fabien@symfony.com"
  6795. },
  6796. {
  6797. "name": "Symfony Community",
  6798. "homepage": "https://symfony.com/contributors"
  6799. }
  6800. ],
  6801. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6802. "homepage": "https://symfony.com",
  6803. "support": {
  6804. "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.3"
  6805. },
  6806. "funding": [
  6807. {
  6808. "url": "https://symfony.com/sponsor",
  6809. "type": "custom"
  6810. },
  6811. {
  6812. "url": "https://github.com/fabpot",
  6813. "type": "github"
  6814. },
  6815. {
  6816. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6817. "type": "tidelift"
  6818. }
  6819. ],
  6820. "time": "2024-01-23T15:02:46+00:00"
  6821. },
  6822. {
  6823. "name": "symfony/event-dispatcher-contracts",
  6824. "version": "v3.4.0",
  6825. "source": {
  6826. "type": "git",
  6827. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6828. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  6829. },
  6830. "dist": {
  6831. "type": "zip",
  6832. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  6833. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  6834. "shasum": ""
  6835. },
  6836. "require": {
  6837. "php": ">=8.1",
  6838. "psr/event-dispatcher": "^1"
  6839. },
  6840. "type": "library",
  6841. "extra": {
  6842. "branch-alias": {
  6843. "dev-main": "3.4-dev"
  6844. },
  6845. "thanks": {
  6846. "name": "symfony/contracts",
  6847. "url": "https://github.com/symfony/contracts"
  6848. }
  6849. },
  6850. "autoload": {
  6851. "psr-4": {
  6852. "Symfony\\Contracts\\EventDispatcher\\": ""
  6853. }
  6854. },
  6855. "notification-url": "https://packagist.org/downloads/",
  6856. "license": [
  6857. "MIT"
  6858. ],
  6859. "authors": [
  6860. {
  6861. "name": "Nicolas Grekas",
  6862. "email": "p@tchwork.com"
  6863. },
  6864. {
  6865. "name": "Symfony Community",
  6866. "homepage": "https://symfony.com/contributors"
  6867. }
  6868. ],
  6869. "description": "Generic abstractions related to dispatching event",
  6870. "homepage": "https://symfony.com",
  6871. "keywords": [
  6872. "abstractions",
  6873. "contracts",
  6874. "decoupling",
  6875. "interfaces",
  6876. "interoperability",
  6877. "standards"
  6878. ],
  6879. "support": {
  6880. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  6881. },
  6882. "funding": [
  6883. {
  6884. "url": "https://symfony.com/sponsor",
  6885. "type": "custom"
  6886. },
  6887. {
  6888. "url": "https://github.com/fabpot",
  6889. "type": "github"
  6890. },
  6891. {
  6892. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6893. "type": "tidelift"
  6894. }
  6895. ],
  6896. "time": "2023-05-23T14:45:45+00:00"
  6897. },
  6898. {
  6899. "name": "symfony/finder",
  6900. "version": "v6.4.0",
  6901. "source": {
  6902. "type": "git",
  6903. "url": "https://github.com/symfony/finder.git",
  6904. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce"
  6905. },
  6906. "dist": {
  6907. "type": "zip",
  6908. "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce",
  6909. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce",
  6910. "shasum": ""
  6911. },
  6912. "require": {
  6913. "php": ">=8.1"
  6914. },
  6915. "require-dev": {
  6916. "symfony/filesystem": "^6.0|^7.0"
  6917. },
  6918. "type": "library",
  6919. "autoload": {
  6920. "psr-4": {
  6921. "Symfony\\Component\\Finder\\": ""
  6922. },
  6923. "exclude-from-classmap": [
  6924. "/Tests/"
  6925. ]
  6926. },
  6927. "notification-url": "https://packagist.org/downloads/",
  6928. "license": [
  6929. "MIT"
  6930. ],
  6931. "authors": [
  6932. {
  6933. "name": "Fabien Potencier",
  6934. "email": "fabien@symfony.com"
  6935. },
  6936. {
  6937. "name": "Symfony Community",
  6938. "homepage": "https://symfony.com/contributors"
  6939. }
  6940. ],
  6941. "description": "Finds files and directories via an intuitive fluent interface",
  6942. "homepage": "https://symfony.com",
  6943. "support": {
  6944. "source": "https://github.com/symfony/finder/tree/v6.4.0"
  6945. },
  6946. "funding": [
  6947. {
  6948. "url": "https://symfony.com/sponsor",
  6949. "type": "custom"
  6950. },
  6951. {
  6952. "url": "https://github.com/fabpot",
  6953. "type": "github"
  6954. },
  6955. {
  6956. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6957. "type": "tidelift"
  6958. }
  6959. ],
  6960. "time": "2023-10-31T17:30:12+00:00"
  6961. },
  6962. {
  6963. "name": "symfony/html-sanitizer",
  6964. "version": "v6.4.3",
  6965. "source": {
  6966. "type": "git",
  6967. "url": "https://github.com/symfony/html-sanitizer.git",
  6968. "reference": "116335ab09e10b05405f01d8afd31ccc3832b08b"
  6969. },
  6970. "dist": {
  6971. "type": "zip",
  6972. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/116335ab09e10b05405f01d8afd31ccc3832b08b",
  6973. "reference": "116335ab09e10b05405f01d8afd31ccc3832b08b",
  6974. "shasum": ""
  6975. },
  6976. "require": {
  6977. "ext-dom": "*",
  6978. "league/uri": "^6.5|^7.0",
  6979. "masterminds/html5": "^2.7.2",
  6980. "php": ">=8.1"
  6981. },
  6982. "type": "library",
  6983. "autoload": {
  6984. "psr-4": {
  6985. "Symfony\\Component\\HtmlSanitizer\\": ""
  6986. },
  6987. "exclude-from-classmap": [
  6988. "/Tests/"
  6989. ]
  6990. },
  6991. "notification-url": "https://packagist.org/downloads/",
  6992. "license": [
  6993. "MIT"
  6994. ],
  6995. "authors": [
  6996. {
  6997. "name": "Titouan Galopin",
  6998. "email": "galopintitouan@gmail.com"
  6999. },
  7000. {
  7001. "name": "Symfony Community",
  7002. "homepage": "https://symfony.com/contributors"
  7003. }
  7004. ],
  7005. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  7006. "homepage": "https://symfony.com",
  7007. "keywords": [
  7008. "Purifier",
  7009. "html",
  7010. "sanitizer"
  7011. ],
  7012. "support": {
  7013. "source": "https://github.com/symfony/html-sanitizer/tree/v6.4.3"
  7014. },
  7015. "funding": [
  7016. {
  7017. "url": "https://symfony.com/sponsor",
  7018. "type": "custom"
  7019. },
  7020. {
  7021. "url": "https://github.com/fabpot",
  7022. "type": "github"
  7023. },
  7024. {
  7025. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7026. "type": "tidelift"
  7027. }
  7028. ],
  7029. "time": "2024-01-23T14:51:35+00:00"
  7030. },
  7031. {
  7032. "name": "symfony/http-foundation",
  7033. "version": "v6.4.3",
  7034. "source": {
  7035. "type": "git",
  7036. "url": "https://github.com/symfony/http-foundation.git",
  7037. "reference": "5677bdf7cade4619cb17fc9e1e7b31ec392244a9"
  7038. },
  7039. "dist": {
  7040. "type": "zip",
  7041. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5677bdf7cade4619cb17fc9e1e7b31ec392244a9",
  7042. "reference": "5677bdf7cade4619cb17fc9e1e7b31ec392244a9",
  7043. "shasum": ""
  7044. },
  7045. "require": {
  7046. "php": ">=8.1",
  7047. "symfony/deprecation-contracts": "^2.5|^3",
  7048. "symfony/polyfill-mbstring": "~1.1",
  7049. "symfony/polyfill-php83": "^1.27"
  7050. },
  7051. "conflict": {
  7052. "symfony/cache": "<6.3"
  7053. },
  7054. "require-dev": {
  7055. "doctrine/dbal": "^2.13.1|^3|^4",
  7056. "predis/predis": "^1.1|^2.0",
  7057. "symfony/cache": "^6.3|^7.0",
  7058. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7059. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7060. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  7061. "symfony/mime": "^5.4|^6.0|^7.0",
  7062. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  7063. },
  7064. "type": "library",
  7065. "autoload": {
  7066. "psr-4": {
  7067. "Symfony\\Component\\HttpFoundation\\": ""
  7068. },
  7069. "exclude-from-classmap": [
  7070. "/Tests/"
  7071. ]
  7072. },
  7073. "notification-url": "https://packagist.org/downloads/",
  7074. "license": [
  7075. "MIT"
  7076. ],
  7077. "authors": [
  7078. {
  7079. "name": "Fabien Potencier",
  7080. "email": "fabien@symfony.com"
  7081. },
  7082. {
  7083. "name": "Symfony Community",
  7084. "homepage": "https://symfony.com/contributors"
  7085. }
  7086. ],
  7087. "description": "Defines an object-oriented layer for the HTTP specification",
  7088. "homepage": "https://symfony.com",
  7089. "support": {
  7090. "source": "https://github.com/symfony/http-foundation/tree/v6.4.3"
  7091. },
  7092. "funding": [
  7093. {
  7094. "url": "https://symfony.com/sponsor",
  7095. "type": "custom"
  7096. },
  7097. {
  7098. "url": "https://github.com/fabpot",
  7099. "type": "github"
  7100. },
  7101. {
  7102. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7103. "type": "tidelift"
  7104. }
  7105. ],
  7106. "time": "2024-01-23T14:51:35+00:00"
  7107. },
  7108. {
  7109. "name": "symfony/http-kernel",
  7110. "version": "v6.4.3",
  7111. "source": {
  7112. "type": "git",
  7113. "url": "https://github.com/symfony/http-kernel.git",
  7114. "reference": "9c6ec4e543044f7568a53a76ab1484ecd30637a2"
  7115. },
  7116. "dist": {
  7117. "type": "zip",
  7118. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9c6ec4e543044f7568a53a76ab1484ecd30637a2",
  7119. "reference": "9c6ec4e543044f7568a53a76ab1484ecd30637a2",
  7120. "shasum": ""
  7121. },
  7122. "require": {
  7123. "php": ">=8.1",
  7124. "psr/log": "^1|^2|^3",
  7125. "symfony/deprecation-contracts": "^2.5|^3",
  7126. "symfony/error-handler": "^6.4|^7.0",
  7127. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7128. "symfony/http-foundation": "^6.4|^7.0",
  7129. "symfony/polyfill-ctype": "^1.8"
  7130. },
  7131. "conflict": {
  7132. "symfony/browser-kit": "<5.4",
  7133. "symfony/cache": "<5.4",
  7134. "symfony/config": "<6.1",
  7135. "symfony/console": "<5.4",
  7136. "symfony/dependency-injection": "<6.4",
  7137. "symfony/doctrine-bridge": "<5.4",
  7138. "symfony/form": "<5.4",
  7139. "symfony/http-client": "<5.4",
  7140. "symfony/http-client-contracts": "<2.5",
  7141. "symfony/mailer": "<5.4",
  7142. "symfony/messenger": "<5.4",
  7143. "symfony/translation": "<5.4",
  7144. "symfony/translation-contracts": "<2.5",
  7145. "symfony/twig-bridge": "<5.4",
  7146. "symfony/validator": "<6.4",
  7147. "symfony/var-dumper": "<6.3",
  7148. "twig/twig": "<2.13"
  7149. },
  7150. "provide": {
  7151. "psr/log-implementation": "1.0|2.0|3.0"
  7152. },
  7153. "require-dev": {
  7154. "psr/cache": "^1.0|^2.0|^3.0",
  7155. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  7156. "symfony/clock": "^6.2|^7.0",
  7157. "symfony/config": "^6.1|^7.0",
  7158. "symfony/console": "^5.4|^6.0|^7.0",
  7159. "symfony/css-selector": "^5.4|^6.0|^7.0",
  7160. "symfony/dependency-injection": "^6.4|^7.0",
  7161. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  7162. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7163. "symfony/finder": "^5.4|^6.0|^7.0",
  7164. "symfony/http-client-contracts": "^2.5|^3",
  7165. "symfony/process": "^5.4|^6.0|^7.0",
  7166. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  7167. "symfony/routing": "^5.4|^6.0|^7.0",
  7168. "symfony/serializer": "^6.3|^7.0",
  7169. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7170. "symfony/translation": "^5.4|^6.0|^7.0",
  7171. "symfony/translation-contracts": "^2.5|^3",
  7172. "symfony/uid": "^5.4|^6.0|^7.0",
  7173. "symfony/validator": "^6.4|^7.0",
  7174. "symfony/var-exporter": "^6.2|^7.0",
  7175. "twig/twig": "^2.13|^3.0.4"
  7176. },
  7177. "type": "library",
  7178. "autoload": {
  7179. "psr-4": {
  7180. "Symfony\\Component\\HttpKernel\\": ""
  7181. },
  7182. "exclude-from-classmap": [
  7183. "/Tests/"
  7184. ]
  7185. },
  7186. "notification-url": "https://packagist.org/downloads/",
  7187. "license": [
  7188. "MIT"
  7189. ],
  7190. "authors": [
  7191. {
  7192. "name": "Fabien Potencier",
  7193. "email": "fabien@symfony.com"
  7194. },
  7195. {
  7196. "name": "Symfony Community",
  7197. "homepage": "https://symfony.com/contributors"
  7198. }
  7199. ],
  7200. "description": "Provides a structured process for converting a Request into a Response",
  7201. "homepage": "https://symfony.com",
  7202. "support": {
  7203. "source": "https://github.com/symfony/http-kernel/tree/v6.4.3"
  7204. },
  7205. "funding": [
  7206. {
  7207. "url": "https://symfony.com/sponsor",
  7208. "type": "custom"
  7209. },
  7210. {
  7211. "url": "https://github.com/fabpot",
  7212. "type": "github"
  7213. },
  7214. {
  7215. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7216. "type": "tidelift"
  7217. }
  7218. ],
  7219. "time": "2024-01-31T07:21:29+00:00"
  7220. },
  7221. {
  7222. "name": "symfony/intl",
  7223. "version": "v6.4.3",
  7224. "source": {
  7225. "type": "git",
  7226. "url": "https://github.com/symfony/intl.git",
  7227. "reference": "2628ded562ca132ed7cdea72f5ec6aaf65d94414"
  7228. },
  7229. "dist": {
  7230. "type": "zip",
  7231. "url": "https://api.github.com/repos/symfony/intl/zipball/2628ded562ca132ed7cdea72f5ec6aaf65d94414",
  7232. "reference": "2628ded562ca132ed7cdea72f5ec6aaf65d94414",
  7233. "shasum": ""
  7234. },
  7235. "require": {
  7236. "php": ">=8.1"
  7237. },
  7238. "require-dev": {
  7239. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7240. "symfony/finder": "^5.4|^6.0|^7.0",
  7241. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7242. },
  7243. "type": "library",
  7244. "autoload": {
  7245. "psr-4": {
  7246. "Symfony\\Component\\Intl\\": ""
  7247. },
  7248. "exclude-from-classmap": [
  7249. "/Tests/"
  7250. ]
  7251. },
  7252. "notification-url": "https://packagist.org/downloads/",
  7253. "license": [
  7254. "MIT"
  7255. ],
  7256. "authors": [
  7257. {
  7258. "name": "Bernhard Schussek",
  7259. "email": "bschussek@gmail.com"
  7260. },
  7261. {
  7262. "name": "Eriksen Costa",
  7263. "email": "eriksen.costa@infranology.com.br"
  7264. },
  7265. {
  7266. "name": "Igor Wiedler",
  7267. "email": "igor@wiedler.ch"
  7268. },
  7269. {
  7270. "name": "Symfony Community",
  7271. "homepage": "https://symfony.com/contributors"
  7272. }
  7273. ],
  7274. "description": "Provides access to the localization data of the ICU library",
  7275. "homepage": "https://symfony.com",
  7276. "keywords": [
  7277. "i18n",
  7278. "icu",
  7279. "internationalization",
  7280. "intl",
  7281. "l10n",
  7282. "localization"
  7283. ],
  7284. "support": {
  7285. "source": "https://github.com/symfony/intl/tree/v6.4.3"
  7286. },
  7287. "funding": [
  7288. {
  7289. "url": "https://symfony.com/sponsor",
  7290. "type": "custom"
  7291. },
  7292. {
  7293. "url": "https://github.com/fabpot",
  7294. "type": "github"
  7295. },
  7296. {
  7297. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7298. "type": "tidelift"
  7299. }
  7300. ],
  7301. "time": "2024-01-23T14:51:35+00:00"
  7302. },
  7303. {
  7304. "name": "symfony/mailer",
  7305. "version": "v6.4.3",
  7306. "source": {
  7307. "type": "git",
  7308. "url": "https://github.com/symfony/mailer.git",
  7309. "reference": "74412c62f88a85a41b61f0b71ab0afcaad6f03ee"
  7310. },
  7311. "dist": {
  7312. "type": "zip",
  7313. "url": "https://api.github.com/repos/symfony/mailer/zipball/74412c62f88a85a41b61f0b71ab0afcaad6f03ee",
  7314. "reference": "74412c62f88a85a41b61f0b71ab0afcaad6f03ee",
  7315. "shasum": ""
  7316. },
  7317. "require": {
  7318. "egulias/email-validator": "^2.1.10|^3|^4",
  7319. "php": ">=8.1",
  7320. "psr/event-dispatcher": "^1",
  7321. "psr/log": "^1|^2|^3",
  7322. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7323. "symfony/mime": "^6.2|^7.0",
  7324. "symfony/service-contracts": "^2.5|^3"
  7325. },
  7326. "conflict": {
  7327. "symfony/http-client-contracts": "<2.5",
  7328. "symfony/http-kernel": "<5.4",
  7329. "symfony/messenger": "<6.2",
  7330. "symfony/mime": "<6.2",
  7331. "symfony/twig-bridge": "<6.2.1"
  7332. },
  7333. "require-dev": {
  7334. "symfony/console": "^5.4|^6.0|^7.0",
  7335. "symfony/http-client": "^5.4|^6.0|^7.0",
  7336. "symfony/messenger": "^6.2|^7.0",
  7337. "symfony/twig-bridge": "^6.2|^7.0"
  7338. },
  7339. "type": "library",
  7340. "autoload": {
  7341. "psr-4": {
  7342. "Symfony\\Component\\Mailer\\": ""
  7343. },
  7344. "exclude-from-classmap": [
  7345. "/Tests/"
  7346. ]
  7347. },
  7348. "notification-url": "https://packagist.org/downloads/",
  7349. "license": [
  7350. "MIT"
  7351. ],
  7352. "authors": [
  7353. {
  7354. "name": "Fabien Potencier",
  7355. "email": "fabien@symfony.com"
  7356. },
  7357. {
  7358. "name": "Symfony Community",
  7359. "homepage": "https://symfony.com/contributors"
  7360. }
  7361. ],
  7362. "description": "Helps sending emails",
  7363. "homepage": "https://symfony.com",
  7364. "support": {
  7365. "source": "https://github.com/symfony/mailer/tree/v6.4.3"
  7366. },
  7367. "funding": [
  7368. {
  7369. "url": "https://symfony.com/sponsor",
  7370. "type": "custom"
  7371. },
  7372. {
  7373. "url": "https://github.com/fabpot",
  7374. "type": "github"
  7375. },
  7376. {
  7377. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7378. "type": "tidelift"
  7379. }
  7380. ],
  7381. "time": "2024-01-29T15:01:07+00:00"
  7382. },
  7383. {
  7384. "name": "symfony/mime",
  7385. "version": "v6.4.3",
  7386. "source": {
  7387. "type": "git",
  7388. "url": "https://github.com/symfony/mime.git",
  7389. "reference": "5017e0a9398c77090b7694be46f20eb796262a34"
  7390. },
  7391. "dist": {
  7392. "type": "zip",
  7393. "url": "https://api.github.com/repos/symfony/mime/zipball/5017e0a9398c77090b7694be46f20eb796262a34",
  7394. "reference": "5017e0a9398c77090b7694be46f20eb796262a34",
  7395. "shasum": ""
  7396. },
  7397. "require": {
  7398. "php": ">=8.1",
  7399. "symfony/deprecation-contracts": "^2.5|^3",
  7400. "symfony/polyfill-intl-idn": "^1.10",
  7401. "symfony/polyfill-mbstring": "^1.0"
  7402. },
  7403. "conflict": {
  7404. "egulias/email-validator": "~3.0.0",
  7405. "phpdocumentor/reflection-docblock": "<3.2.2",
  7406. "phpdocumentor/type-resolver": "<1.4.0",
  7407. "symfony/mailer": "<5.4",
  7408. "symfony/serializer": "<6.3.2"
  7409. },
  7410. "require-dev": {
  7411. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7412. "league/html-to-markdown": "^5.0",
  7413. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7414. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7415. "symfony/property-access": "^5.4|^6.0|^7.0",
  7416. "symfony/property-info": "^5.4|^6.0|^7.0",
  7417. "symfony/serializer": "^6.3.2|^7.0"
  7418. },
  7419. "type": "library",
  7420. "autoload": {
  7421. "psr-4": {
  7422. "Symfony\\Component\\Mime\\": ""
  7423. },
  7424. "exclude-from-classmap": [
  7425. "/Tests/"
  7426. ]
  7427. },
  7428. "notification-url": "https://packagist.org/downloads/",
  7429. "license": [
  7430. "MIT"
  7431. ],
  7432. "authors": [
  7433. {
  7434. "name": "Fabien Potencier",
  7435. "email": "fabien@symfony.com"
  7436. },
  7437. {
  7438. "name": "Symfony Community",
  7439. "homepage": "https://symfony.com/contributors"
  7440. }
  7441. ],
  7442. "description": "Allows manipulating MIME messages",
  7443. "homepage": "https://symfony.com",
  7444. "keywords": [
  7445. "mime",
  7446. "mime-type"
  7447. ],
  7448. "support": {
  7449. "source": "https://github.com/symfony/mime/tree/v6.4.3"
  7450. },
  7451. "funding": [
  7452. {
  7453. "url": "https://symfony.com/sponsor",
  7454. "type": "custom"
  7455. },
  7456. {
  7457. "url": "https://github.com/fabpot",
  7458. "type": "github"
  7459. },
  7460. {
  7461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7462. "type": "tidelift"
  7463. }
  7464. ],
  7465. "time": "2024-01-30T08:32:12+00:00"
  7466. },
  7467. {
  7468. "name": "symfony/polyfill-ctype",
  7469. "version": "v1.29.0",
  7470. "source": {
  7471. "type": "git",
  7472. "url": "https://github.com/symfony/polyfill-ctype.git",
  7473. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  7474. },
  7475. "dist": {
  7476. "type": "zip",
  7477. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  7478. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  7479. "shasum": ""
  7480. },
  7481. "require": {
  7482. "php": ">=7.1"
  7483. },
  7484. "provide": {
  7485. "ext-ctype": "*"
  7486. },
  7487. "suggest": {
  7488. "ext-ctype": "For best performance"
  7489. },
  7490. "type": "library",
  7491. "extra": {
  7492. "thanks": {
  7493. "name": "symfony/polyfill",
  7494. "url": "https://github.com/symfony/polyfill"
  7495. }
  7496. },
  7497. "autoload": {
  7498. "files": [
  7499. "bootstrap.php"
  7500. ],
  7501. "psr-4": {
  7502. "Symfony\\Polyfill\\Ctype\\": ""
  7503. }
  7504. },
  7505. "notification-url": "https://packagist.org/downloads/",
  7506. "license": [
  7507. "MIT"
  7508. ],
  7509. "authors": [
  7510. {
  7511. "name": "Gert de Pagter",
  7512. "email": "BackEndTea@gmail.com"
  7513. },
  7514. {
  7515. "name": "Symfony Community",
  7516. "homepage": "https://symfony.com/contributors"
  7517. }
  7518. ],
  7519. "description": "Symfony polyfill for ctype functions",
  7520. "homepage": "https://symfony.com",
  7521. "keywords": [
  7522. "compatibility",
  7523. "ctype",
  7524. "polyfill",
  7525. "portable"
  7526. ],
  7527. "support": {
  7528. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  7529. },
  7530. "funding": [
  7531. {
  7532. "url": "https://symfony.com/sponsor",
  7533. "type": "custom"
  7534. },
  7535. {
  7536. "url": "https://github.com/fabpot",
  7537. "type": "github"
  7538. },
  7539. {
  7540. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7541. "type": "tidelift"
  7542. }
  7543. ],
  7544. "time": "2024-01-29T20:11:03+00:00"
  7545. },
  7546. {
  7547. "name": "symfony/polyfill-intl-grapheme",
  7548. "version": "v1.29.0",
  7549. "source": {
  7550. "type": "git",
  7551. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7552. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  7553. },
  7554. "dist": {
  7555. "type": "zip",
  7556. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  7557. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  7558. "shasum": ""
  7559. },
  7560. "require": {
  7561. "php": ">=7.1"
  7562. },
  7563. "suggest": {
  7564. "ext-intl": "For best performance"
  7565. },
  7566. "type": "library",
  7567. "extra": {
  7568. "thanks": {
  7569. "name": "symfony/polyfill",
  7570. "url": "https://github.com/symfony/polyfill"
  7571. }
  7572. },
  7573. "autoload": {
  7574. "files": [
  7575. "bootstrap.php"
  7576. ],
  7577. "psr-4": {
  7578. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7579. }
  7580. },
  7581. "notification-url": "https://packagist.org/downloads/",
  7582. "license": [
  7583. "MIT"
  7584. ],
  7585. "authors": [
  7586. {
  7587. "name": "Nicolas Grekas",
  7588. "email": "p@tchwork.com"
  7589. },
  7590. {
  7591. "name": "Symfony Community",
  7592. "homepage": "https://symfony.com/contributors"
  7593. }
  7594. ],
  7595. "description": "Symfony polyfill for intl's grapheme_* functions",
  7596. "homepage": "https://symfony.com",
  7597. "keywords": [
  7598. "compatibility",
  7599. "grapheme",
  7600. "intl",
  7601. "polyfill",
  7602. "portable",
  7603. "shim"
  7604. ],
  7605. "support": {
  7606. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  7607. },
  7608. "funding": [
  7609. {
  7610. "url": "https://symfony.com/sponsor",
  7611. "type": "custom"
  7612. },
  7613. {
  7614. "url": "https://github.com/fabpot",
  7615. "type": "github"
  7616. },
  7617. {
  7618. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7619. "type": "tidelift"
  7620. }
  7621. ],
  7622. "time": "2024-01-29T20:11:03+00:00"
  7623. },
  7624. {
  7625. "name": "symfony/polyfill-intl-idn",
  7626. "version": "v1.29.0",
  7627. "source": {
  7628. "type": "git",
  7629. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7630. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919"
  7631. },
  7632. "dist": {
  7633. "type": "zip",
  7634. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919",
  7635. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919",
  7636. "shasum": ""
  7637. },
  7638. "require": {
  7639. "php": ">=7.1",
  7640. "symfony/polyfill-intl-normalizer": "^1.10",
  7641. "symfony/polyfill-php72": "^1.10"
  7642. },
  7643. "suggest": {
  7644. "ext-intl": "For best performance"
  7645. },
  7646. "type": "library",
  7647. "extra": {
  7648. "thanks": {
  7649. "name": "symfony/polyfill",
  7650. "url": "https://github.com/symfony/polyfill"
  7651. }
  7652. },
  7653. "autoload": {
  7654. "files": [
  7655. "bootstrap.php"
  7656. ],
  7657. "psr-4": {
  7658. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7659. }
  7660. },
  7661. "notification-url": "https://packagist.org/downloads/",
  7662. "license": [
  7663. "MIT"
  7664. ],
  7665. "authors": [
  7666. {
  7667. "name": "Laurent Bassin",
  7668. "email": "laurent@bassin.info"
  7669. },
  7670. {
  7671. "name": "Trevor Rowbotham",
  7672. "email": "trevor.rowbotham@pm.me"
  7673. },
  7674. {
  7675. "name": "Symfony Community",
  7676. "homepage": "https://symfony.com/contributors"
  7677. }
  7678. ],
  7679. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7680. "homepage": "https://symfony.com",
  7681. "keywords": [
  7682. "compatibility",
  7683. "idn",
  7684. "intl",
  7685. "polyfill",
  7686. "portable",
  7687. "shim"
  7688. ],
  7689. "support": {
  7690. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0"
  7691. },
  7692. "funding": [
  7693. {
  7694. "url": "https://symfony.com/sponsor",
  7695. "type": "custom"
  7696. },
  7697. {
  7698. "url": "https://github.com/fabpot",
  7699. "type": "github"
  7700. },
  7701. {
  7702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7703. "type": "tidelift"
  7704. }
  7705. ],
  7706. "time": "2024-01-29T20:11:03+00:00"
  7707. },
  7708. {
  7709. "name": "symfony/polyfill-intl-normalizer",
  7710. "version": "v1.29.0",
  7711. "source": {
  7712. "type": "git",
  7713. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7714. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  7715. },
  7716. "dist": {
  7717. "type": "zip",
  7718. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  7719. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  7720. "shasum": ""
  7721. },
  7722. "require": {
  7723. "php": ">=7.1"
  7724. },
  7725. "suggest": {
  7726. "ext-intl": "For best performance"
  7727. },
  7728. "type": "library",
  7729. "extra": {
  7730. "thanks": {
  7731. "name": "symfony/polyfill",
  7732. "url": "https://github.com/symfony/polyfill"
  7733. }
  7734. },
  7735. "autoload": {
  7736. "files": [
  7737. "bootstrap.php"
  7738. ],
  7739. "psr-4": {
  7740. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7741. },
  7742. "classmap": [
  7743. "Resources/stubs"
  7744. ]
  7745. },
  7746. "notification-url": "https://packagist.org/downloads/",
  7747. "license": [
  7748. "MIT"
  7749. ],
  7750. "authors": [
  7751. {
  7752. "name": "Nicolas Grekas",
  7753. "email": "p@tchwork.com"
  7754. },
  7755. {
  7756. "name": "Symfony Community",
  7757. "homepage": "https://symfony.com/contributors"
  7758. }
  7759. ],
  7760. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7761. "homepage": "https://symfony.com",
  7762. "keywords": [
  7763. "compatibility",
  7764. "intl",
  7765. "normalizer",
  7766. "polyfill",
  7767. "portable",
  7768. "shim"
  7769. ],
  7770. "support": {
  7771. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  7772. },
  7773. "funding": [
  7774. {
  7775. "url": "https://symfony.com/sponsor",
  7776. "type": "custom"
  7777. },
  7778. {
  7779. "url": "https://github.com/fabpot",
  7780. "type": "github"
  7781. },
  7782. {
  7783. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7784. "type": "tidelift"
  7785. }
  7786. ],
  7787. "time": "2024-01-29T20:11:03+00:00"
  7788. },
  7789. {
  7790. "name": "symfony/polyfill-mbstring",
  7791. "version": "v1.29.0",
  7792. "source": {
  7793. "type": "git",
  7794. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7795. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  7796. },
  7797. "dist": {
  7798. "type": "zip",
  7799. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  7800. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  7801. "shasum": ""
  7802. },
  7803. "require": {
  7804. "php": ">=7.1"
  7805. },
  7806. "provide": {
  7807. "ext-mbstring": "*"
  7808. },
  7809. "suggest": {
  7810. "ext-mbstring": "For best performance"
  7811. },
  7812. "type": "library",
  7813. "extra": {
  7814. "thanks": {
  7815. "name": "symfony/polyfill",
  7816. "url": "https://github.com/symfony/polyfill"
  7817. }
  7818. },
  7819. "autoload": {
  7820. "files": [
  7821. "bootstrap.php"
  7822. ],
  7823. "psr-4": {
  7824. "Symfony\\Polyfill\\Mbstring\\": ""
  7825. }
  7826. },
  7827. "notification-url": "https://packagist.org/downloads/",
  7828. "license": [
  7829. "MIT"
  7830. ],
  7831. "authors": [
  7832. {
  7833. "name": "Nicolas Grekas",
  7834. "email": "p@tchwork.com"
  7835. },
  7836. {
  7837. "name": "Symfony Community",
  7838. "homepage": "https://symfony.com/contributors"
  7839. }
  7840. ],
  7841. "description": "Symfony polyfill for the Mbstring extension",
  7842. "homepage": "https://symfony.com",
  7843. "keywords": [
  7844. "compatibility",
  7845. "mbstring",
  7846. "polyfill",
  7847. "portable",
  7848. "shim"
  7849. ],
  7850. "support": {
  7851. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  7852. },
  7853. "funding": [
  7854. {
  7855. "url": "https://symfony.com/sponsor",
  7856. "type": "custom"
  7857. },
  7858. {
  7859. "url": "https://github.com/fabpot",
  7860. "type": "github"
  7861. },
  7862. {
  7863. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7864. "type": "tidelift"
  7865. }
  7866. ],
  7867. "time": "2024-01-29T20:11:03+00:00"
  7868. },
  7869. {
  7870. "name": "symfony/polyfill-php72",
  7871. "version": "v1.29.0",
  7872. "source": {
  7873. "type": "git",
  7874. "url": "https://github.com/symfony/polyfill-php72.git",
  7875. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  7876. },
  7877. "dist": {
  7878. "type": "zip",
  7879. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7880. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7881. "shasum": ""
  7882. },
  7883. "require": {
  7884. "php": ">=7.1"
  7885. },
  7886. "type": "library",
  7887. "extra": {
  7888. "thanks": {
  7889. "name": "symfony/polyfill",
  7890. "url": "https://github.com/symfony/polyfill"
  7891. }
  7892. },
  7893. "autoload": {
  7894. "files": [
  7895. "bootstrap.php"
  7896. ],
  7897. "psr-4": {
  7898. "Symfony\\Polyfill\\Php72\\": ""
  7899. }
  7900. },
  7901. "notification-url": "https://packagist.org/downloads/",
  7902. "license": [
  7903. "MIT"
  7904. ],
  7905. "authors": [
  7906. {
  7907. "name": "Nicolas Grekas",
  7908. "email": "p@tchwork.com"
  7909. },
  7910. {
  7911. "name": "Symfony Community",
  7912. "homepage": "https://symfony.com/contributors"
  7913. }
  7914. ],
  7915. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7916. "homepage": "https://symfony.com",
  7917. "keywords": [
  7918. "compatibility",
  7919. "polyfill",
  7920. "portable",
  7921. "shim"
  7922. ],
  7923. "support": {
  7924. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  7925. },
  7926. "funding": [
  7927. {
  7928. "url": "https://symfony.com/sponsor",
  7929. "type": "custom"
  7930. },
  7931. {
  7932. "url": "https://github.com/fabpot",
  7933. "type": "github"
  7934. },
  7935. {
  7936. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7937. "type": "tidelift"
  7938. }
  7939. ],
  7940. "time": "2024-01-29T20:11:03+00:00"
  7941. },
  7942. {
  7943. "name": "symfony/polyfill-php80",
  7944. "version": "v1.29.0",
  7945. "source": {
  7946. "type": "git",
  7947. "url": "https://github.com/symfony/polyfill-php80.git",
  7948. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  7949. },
  7950. "dist": {
  7951. "type": "zip",
  7952. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7953. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7954. "shasum": ""
  7955. },
  7956. "require": {
  7957. "php": ">=7.1"
  7958. },
  7959. "type": "library",
  7960. "extra": {
  7961. "thanks": {
  7962. "name": "symfony/polyfill",
  7963. "url": "https://github.com/symfony/polyfill"
  7964. }
  7965. },
  7966. "autoload": {
  7967. "files": [
  7968. "bootstrap.php"
  7969. ],
  7970. "psr-4": {
  7971. "Symfony\\Polyfill\\Php80\\": ""
  7972. },
  7973. "classmap": [
  7974. "Resources/stubs"
  7975. ]
  7976. },
  7977. "notification-url": "https://packagist.org/downloads/",
  7978. "license": [
  7979. "MIT"
  7980. ],
  7981. "authors": [
  7982. {
  7983. "name": "Ion Bazan",
  7984. "email": "ion.bazan@gmail.com"
  7985. },
  7986. {
  7987. "name": "Nicolas Grekas",
  7988. "email": "p@tchwork.com"
  7989. },
  7990. {
  7991. "name": "Symfony Community",
  7992. "homepage": "https://symfony.com/contributors"
  7993. }
  7994. ],
  7995. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7996. "homepage": "https://symfony.com",
  7997. "keywords": [
  7998. "compatibility",
  7999. "polyfill",
  8000. "portable",
  8001. "shim"
  8002. ],
  8003. "support": {
  8004. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  8005. },
  8006. "funding": [
  8007. {
  8008. "url": "https://symfony.com/sponsor",
  8009. "type": "custom"
  8010. },
  8011. {
  8012. "url": "https://github.com/fabpot",
  8013. "type": "github"
  8014. },
  8015. {
  8016. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8017. "type": "tidelift"
  8018. }
  8019. ],
  8020. "time": "2024-01-29T20:11:03+00:00"
  8021. },
  8022. {
  8023. "name": "symfony/polyfill-php83",
  8024. "version": "v1.29.0",
  8025. "source": {
  8026. "type": "git",
  8027. "url": "https://github.com/symfony/polyfill-php83.git",
  8028. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  8029. },
  8030. "dist": {
  8031. "type": "zip",
  8032. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  8033. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  8034. "shasum": ""
  8035. },
  8036. "require": {
  8037. "php": ">=7.1",
  8038. "symfony/polyfill-php80": "^1.14"
  8039. },
  8040. "type": "library",
  8041. "extra": {
  8042. "thanks": {
  8043. "name": "symfony/polyfill",
  8044. "url": "https://github.com/symfony/polyfill"
  8045. }
  8046. },
  8047. "autoload": {
  8048. "files": [
  8049. "bootstrap.php"
  8050. ],
  8051. "psr-4": {
  8052. "Symfony\\Polyfill\\Php83\\": ""
  8053. },
  8054. "classmap": [
  8055. "Resources/stubs"
  8056. ]
  8057. },
  8058. "notification-url": "https://packagist.org/downloads/",
  8059. "license": [
  8060. "MIT"
  8061. ],
  8062. "authors": [
  8063. {
  8064. "name": "Nicolas Grekas",
  8065. "email": "p@tchwork.com"
  8066. },
  8067. {
  8068. "name": "Symfony Community",
  8069. "homepage": "https://symfony.com/contributors"
  8070. }
  8071. ],
  8072. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8073. "homepage": "https://symfony.com",
  8074. "keywords": [
  8075. "compatibility",
  8076. "polyfill",
  8077. "portable",
  8078. "shim"
  8079. ],
  8080. "support": {
  8081. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  8082. },
  8083. "funding": [
  8084. {
  8085. "url": "https://symfony.com/sponsor",
  8086. "type": "custom"
  8087. },
  8088. {
  8089. "url": "https://github.com/fabpot",
  8090. "type": "github"
  8091. },
  8092. {
  8093. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8094. "type": "tidelift"
  8095. }
  8096. ],
  8097. "time": "2024-01-29T20:11:03+00:00"
  8098. },
  8099. {
  8100. "name": "symfony/polyfill-uuid",
  8101. "version": "v1.29.0",
  8102. "source": {
  8103. "type": "git",
  8104. "url": "https://github.com/symfony/polyfill-uuid.git",
  8105. "reference": "3abdd21b0ceaa3000ee950097bc3cf9efc137853"
  8106. },
  8107. "dist": {
  8108. "type": "zip",
  8109. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/3abdd21b0ceaa3000ee950097bc3cf9efc137853",
  8110. "reference": "3abdd21b0ceaa3000ee950097bc3cf9efc137853",
  8111. "shasum": ""
  8112. },
  8113. "require": {
  8114. "php": ">=7.1"
  8115. },
  8116. "provide": {
  8117. "ext-uuid": "*"
  8118. },
  8119. "suggest": {
  8120. "ext-uuid": "For best performance"
  8121. },
  8122. "type": "library",
  8123. "extra": {
  8124. "thanks": {
  8125. "name": "symfony/polyfill",
  8126. "url": "https://github.com/symfony/polyfill"
  8127. }
  8128. },
  8129. "autoload": {
  8130. "files": [
  8131. "bootstrap.php"
  8132. ],
  8133. "psr-4": {
  8134. "Symfony\\Polyfill\\Uuid\\": ""
  8135. }
  8136. },
  8137. "notification-url": "https://packagist.org/downloads/",
  8138. "license": [
  8139. "MIT"
  8140. ],
  8141. "authors": [
  8142. {
  8143. "name": "Grégoire Pineau",
  8144. "email": "lyrixx@lyrixx.info"
  8145. },
  8146. {
  8147. "name": "Symfony Community",
  8148. "homepage": "https://symfony.com/contributors"
  8149. }
  8150. ],
  8151. "description": "Symfony polyfill for uuid functions",
  8152. "homepage": "https://symfony.com",
  8153. "keywords": [
  8154. "compatibility",
  8155. "polyfill",
  8156. "portable",
  8157. "uuid"
  8158. ],
  8159. "support": {
  8160. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.29.0"
  8161. },
  8162. "funding": [
  8163. {
  8164. "url": "https://symfony.com/sponsor",
  8165. "type": "custom"
  8166. },
  8167. {
  8168. "url": "https://github.com/fabpot",
  8169. "type": "github"
  8170. },
  8171. {
  8172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8173. "type": "tidelift"
  8174. }
  8175. ],
  8176. "time": "2024-01-29T20:11:03+00:00"
  8177. },
  8178. {
  8179. "name": "symfony/process",
  8180. "version": "v6.4.3",
  8181. "source": {
  8182. "type": "git",
  8183. "url": "https://github.com/symfony/process.git",
  8184. "reference": "31642b0818bfcff85930344ef93193f8c607e0a3"
  8185. },
  8186. "dist": {
  8187. "type": "zip",
  8188. "url": "https://api.github.com/repos/symfony/process/zipball/31642b0818bfcff85930344ef93193f8c607e0a3",
  8189. "reference": "31642b0818bfcff85930344ef93193f8c607e0a3",
  8190. "shasum": ""
  8191. },
  8192. "require": {
  8193. "php": ">=8.1"
  8194. },
  8195. "type": "library",
  8196. "autoload": {
  8197. "psr-4": {
  8198. "Symfony\\Component\\Process\\": ""
  8199. },
  8200. "exclude-from-classmap": [
  8201. "/Tests/"
  8202. ]
  8203. },
  8204. "notification-url": "https://packagist.org/downloads/",
  8205. "license": [
  8206. "MIT"
  8207. ],
  8208. "authors": [
  8209. {
  8210. "name": "Fabien Potencier",
  8211. "email": "fabien@symfony.com"
  8212. },
  8213. {
  8214. "name": "Symfony Community",
  8215. "homepage": "https://symfony.com/contributors"
  8216. }
  8217. ],
  8218. "description": "Executes commands in sub-processes",
  8219. "homepage": "https://symfony.com",
  8220. "support": {
  8221. "source": "https://github.com/symfony/process/tree/v6.4.3"
  8222. },
  8223. "funding": [
  8224. {
  8225. "url": "https://symfony.com/sponsor",
  8226. "type": "custom"
  8227. },
  8228. {
  8229. "url": "https://github.com/fabpot",
  8230. "type": "github"
  8231. },
  8232. {
  8233. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8234. "type": "tidelift"
  8235. }
  8236. ],
  8237. "time": "2024-01-23T14:51:35+00:00"
  8238. },
  8239. {
  8240. "name": "symfony/routing",
  8241. "version": "v6.4.3",
  8242. "source": {
  8243. "type": "git",
  8244. "url": "https://github.com/symfony/routing.git",
  8245. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842"
  8246. },
  8247. "dist": {
  8248. "type": "zip",
  8249. "url": "https://api.github.com/repos/symfony/routing/zipball/3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  8250. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  8251. "shasum": ""
  8252. },
  8253. "require": {
  8254. "php": ">=8.1",
  8255. "symfony/deprecation-contracts": "^2.5|^3"
  8256. },
  8257. "conflict": {
  8258. "doctrine/annotations": "<1.12",
  8259. "symfony/config": "<6.2",
  8260. "symfony/dependency-injection": "<5.4",
  8261. "symfony/yaml": "<5.4"
  8262. },
  8263. "require-dev": {
  8264. "doctrine/annotations": "^1.12|^2",
  8265. "psr/log": "^1|^2|^3",
  8266. "symfony/config": "^6.2|^7.0",
  8267. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8268. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8269. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8270. "symfony/yaml": "^5.4|^6.0|^7.0"
  8271. },
  8272. "type": "library",
  8273. "autoload": {
  8274. "psr-4": {
  8275. "Symfony\\Component\\Routing\\": ""
  8276. },
  8277. "exclude-from-classmap": [
  8278. "/Tests/"
  8279. ]
  8280. },
  8281. "notification-url": "https://packagist.org/downloads/",
  8282. "license": [
  8283. "MIT"
  8284. ],
  8285. "authors": [
  8286. {
  8287. "name": "Fabien Potencier",
  8288. "email": "fabien@symfony.com"
  8289. },
  8290. {
  8291. "name": "Symfony Community",
  8292. "homepage": "https://symfony.com/contributors"
  8293. }
  8294. ],
  8295. "description": "Maps an HTTP request to a set of configuration variables",
  8296. "homepage": "https://symfony.com",
  8297. "keywords": [
  8298. "router",
  8299. "routing",
  8300. "uri",
  8301. "url"
  8302. ],
  8303. "support": {
  8304. "source": "https://github.com/symfony/routing/tree/v6.4.3"
  8305. },
  8306. "funding": [
  8307. {
  8308. "url": "https://symfony.com/sponsor",
  8309. "type": "custom"
  8310. },
  8311. {
  8312. "url": "https://github.com/fabpot",
  8313. "type": "github"
  8314. },
  8315. {
  8316. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8317. "type": "tidelift"
  8318. }
  8319. ],
  8320. "time": "2024-01-30T13:55:02+00:00"
  8321. },
  8322. {
  8323. "name": "symfony/service-contracts",
  8324. "version": "v3.4.1",
  8325. "source": {
  8326. "type": "git",
  8327. "url": "https://github.com/symfony/service-contracts.git",
  8328. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0"
  8329. },
  8330. "dist": {
  8331. "type": "zip",
  8332. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0",
  8333. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
  8334. "shasum": ""
  8335. },
  8336. "require": {
  8337. "php": ">=8.1",
  8338. "psr/container": "^1.1|^2.0"
  8339. },
  8340. "conflict": {
  8341. "ext-psr": "<1.1|>=2"
  8342. },
  8343. "type": "library",
  8344. "extra": {
  8345. "branch-alias": {
  8346. "dev-main": "3.4-dev"
  8347. },
  8348. "thanks": {
  8349. "name": "symfony/contracts",
  8350. "url": "https://github.com/symfony/contracts"
  8351. }
  8352. },
  8353. "autoload": {
  8354. "psr-4": {
  8355. "Symfony\\Contracts\\Service\\": ""
  8356. },
  8357. "exclude-from-classmap": [
  8358. "/Test/"
  8359. ]
  8360. },
  8361. "notification-url": "https://packagist.org/downloads/",
  8362. "license": [
  8363. "MIT"
  8364. ],
  8365. "authors": [
  8366. {
  8367. "name": "Nicolas Grekas",
  8368. "email": "p@tchwork.com"
  8369. },
  8370. {
  8371. "name": "Symfony Community",
  8372. "homepage": "https://symfony.com/contributors"
  8373. }
  8374. ],
  8375. "description": "Generic abstractions related to writing services",
  8376. "homepage": "https://symfony.com",
  8377. "keywords": [
  8378. "abstractions",
  8379. "contracts",
  8380. "decoupling",
  8381. "interfaces",
  8382. "interoperability",
  8383. "standards"
  8384. ],
  8385. "support": {
  8386. "source": "https://github.com/symfony/service-contracts/tree/v3.4.1"
  8387. },
  8388. "funding": [
  8389. {
  8390. "url": "https://symfony.com/sponsor",
  8391. "type": "custom"
  8392. },
  8393. {
  8394. "url": "https://github.com/fabpot",
  8395. "type": "github"
  8396. },
  8397. {
  8398. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8399. "type": "tidelift"
  8400. }
  8401. ],
  8402. "time": "2023-12-26T14:02:43+00:00"
  8403. },
  8404. {
  8405. "name": "symfony/string",
  8406. "version": "v7.0.3",
  8407. "source": {
  8408. "type": "git",
  8409. "url": "https://github.com/symfony/string.git",
  8410. "reference": "524aac4a280b90a4420d8d6a040718d0586505ac"
  8411. },
  8412. "dist": {
  8413. "type": "zip",
  8414. "url": "https://api.github.com/repos/symfony/string/zipball/524aac4a280b90a4420d8d6a040718d0586505ac",
  8415. "reference": "524aac4a280b90a4420d8d6a040718d0586505ac",
  8416. "shasum": ""
  8417. },
  8418. "require": {
  8419. "php": ">=8.2",
  8420. "symfony/polyfill-ctype": "~1.8",
  8421. "symfony/polyfill-intl-grapheme": "~1.0",
  8422. "symfony/polyfill-intl-normalizer": "~1.0",
  8423. "symfony/polyfill-mbstring": "~1.0"
  8424. },
  8425. "conflict": {
  8426. "symfony/translation-contracts": "<2.5"
  8427. },
  8428. "require-dev": {
  8429. "symfony/error-handler": "^6.4|^7.0",
  8430. "symfony/http-client": "^6.4|^7.0",
  8431. "symfony/intl": "^6.4|^7.0",
  8432. "symfony/translation-contracts": "^2.5|^3.0",
  8433. "symfony/var-exporter": "^6.4|^7.0"
  8434. },
  8435. "type": "library",
  8436. "autoload": {
  8437. "files": [
  8438. "Resources/functions.php"
  8439. ],
  8440. "psr-4": {
  8441. "Symfony\\Component\\String\\": ""
  8442. },
  8443. "exclude-from-classmap": [
  8444. "/Tests/"
  8445. ]
  8446. },
  8447. "notification-url": "https://packagist.org/downloads/",
  8448. "license": [
  8449. "MIT"
  8450. ],
  8451. "authors": [
  8452. {
  8453. "name": "Nicolas Grekas",
  8454. "email": "p@tchwork.com"
  8455. },
  8456. {
  8457. "name": "Symfony Community",
  8458. "homepage": "https://symfony.com/contributors"
  8459. }
  8460. ],
  8461. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8462. "homepage": "https://symfony.com",
  8463. "keywords": [
  8464. "grapheme",
  8465. "i18n",
  8466. "string",
  8467. "unicode",
  8468. "utf-8",
  8469. "utf8"
  8470. ],
  8471. "support": {
  8472. "source": "https://github.com/symfony/string/tree/v7.0.3"
  8473. },
  8474. "funding": [
  8475. {
  8476. "url": "https://symfony.com/sponsor",
  8477. "type": "custom"
  8478. },
  8479. {
  8480. "url": "https://github.com/fabpot",
  8481. "type": "github"
  8482. },
  8483. {
  8484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8485. "type": "tidelift"
  8486. }
  8487. ],
  8488. "time": "2024-01-29T15:41:16+00:00"
  8489. },
  8490. {
  8491. "name": "symfony/translation",
  8492. "version": "v6.4.3",
  8493. "source": {
  8494. "type": "git",
  8495. "url": "https://github.com/symfony/translation.git",
  8496. "reference": "637c51191b6b184184bbf98937702bcf554f7d04"
  8497. },
  8498. "dist": {
  8499. "type": "zip",
  8500. "url": "https://api.github.com/repos/symfony/translation/zipball/637c51191b6b184184bbf98937702bcf554f7d04",
  8501. "reference": "637c51191b6b184184bbf98937702bcf554f7d04",
  8502. "shasum": ""
  8503. },
  8504. "require": {
  8505. "php": ">=8.1",
  8506. "symfony/deprecation-contracts": "^2.5|^3",
  8507. "symfony/polyfill-mbstring": "~1.0",
  8508. "symfony/translation-contracts": "^2.5|^3.0"
  8509. },
  8510. "conflict": {
  8511. "symfony/config": "<5.4",
  8512. "symfony/console": "<5.4",
  8513. "symfony/dependency-injection": "<5.4",
  8514. "symfony/http-client-contracts": "<2.5",
  8515. "symfony/http-kernel": "<5.4",
  8516. "symfony/service-contracts": "<2.5",
  8517. "symfony/twig-bundle": "<5.4",
  8518. "symfony/yaml": "<5.4"
  8519. },
  8520. "provide": {
  8521. "symfony/translation-implementation": "2.3|3.0"
  8522. },
  8523. "require-dev": {
  8524. "nikic/php-parser": "^4.18|^5.0",
  8525. "psr/log": "^1|^2|^3",
  8526. "symfony/config": "^5.4|^6.0|^7.0",
  8527. "symfony/console": "^5.4|^6.0|^7.0",
  8528. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8529. "symfony/finder": "^5.4|^6.0|^7.0",
  8530. "symfony/http-client-contracts": "^2.5|^3.0",
  8531. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8532. "symfony/intl": "^5.4|^6.0|^7.0",
  8533. "symfony/polyfill-intl-icu": "^1.21",
  8534. "symfony/routing": "^5.4|^6.0|^7.0",
  8535. "symfony/service-contracts": "^2.5|^3",
  8536. "symfony/yaml": "^5.4|^6.0|^7.0"
  8537. },
  8538. "type": "library",
  8539. "autoload": {
  8540. "files": [
  8541. "Resources/functions.php"
  8542. ],
  8543. "psr-4": {
  8544. "Symfony\\Component\\Translation\\": ""
  8545. },
  8546. "exclude-from-classmap": [
  8547. "/Tests/"
  8548. ]
  8549. },
  8550. "notification-url": "https://packagist.org/downloads/",
  8551. "license": [
  8552. "MIT"
  8553. ],
  8554. "authors": [
  8555. {
  8556. "name": "Fabien Potencier",
  8557. "email": "fabien@symfony.com"
  8558. },
  8559. {
  8560. "name": "Symfony Community",
  8561. "homepage": "https://symfony.com/contributors"
  8562. }
  8563. ],
  8564. "description": "Provides tools to internationalize your application",
  8565. "homepage": "https://symfony.com",
  8566. "support": {
  8567. "source": "https://github.com/symfony/translation/tree/v6.4.3"
  8568. },
  8569. "funding": [
  8570. {
  8571. "url": "https://symfony.com/sponsor",
  8572. "type": "custom"
  8573. },
  8574. {
  8575. "url": "https://github.com/fabpot",
  8576. "type": "github"
  8577. },
  8578. {
  8579. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8580. "type": "tidelift"
  8581. }
  8582. ],
  8583. "time": "2024-01-29T13:11:52+00:00"
  8584. },
  8585. {
  8586. "name": "symfony/translation-contracts",
  8587. "version": "v3.4.1",
  8588. "source": {
  8589. "type": "git",
  8590. "url": "https://github.com/symfony/translation-contracts.git",
  8591. "reference": "06450585bf65e978026bda220cdebca3f867fde7"
  8592. },
  8593. "dist": {
  8594. "type": "zip",
  8595. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7",
  8596. "reference": "06450585bf65e978026bda220cdebca3f867fde7",
  8597. "shasum": ""
  8598. },
  8599. "require": {
  8600. "php": ">=8.1"
  8601. },
  8602. "type": "library",
  8603. "extra": {
  8604. "branch-alias": {
  8605. "dev-main": "3.4-dev"
  8606. },
  8607. "thanks": {
  8608. "name": "symfony/contracts",
  8609. "url": "https://github.com/symfony/contracts"
  8610. }
  8611. },
  8612. "autoload": {
  8613. "psr-4": {
  8614. "Symfony\\Contracts\\Translation\\": ""
  8615. },
  8616. "exclude-from-classmap": [
  8617. "/Test/"
  8618. ]
  8619. },
  8620. "notification-url": "https://packagist.org/downloads/",
  8621. "license": [
  8622. "MIT"
  8623. ],
  8624. "authors": [
  8625. {
  8626. "name": "Nicolas Grekas",
  8627. "email": "p@tchwork.com"
  8628. },
  8629. {
  8630. "name": "Symfony Community",
  8631. "homepage": "https://symfony.com/contributors"
  8632. }
  8633. ],
  8634. "description": "Generic abstractions related to translation",
  8635. "homepage": "https://symfony.com",
  8636. "keywords": [
  8637. "abstractions",
  8638. "contracts",
  8639. "decoupling",
  8640. "interfaces",
  8641. "interoperability",
  8642. "standards"
  8643. ],
  8644. "support": {
  8645. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1"
  8646. },
  8647. "funding": [
  8648. {
  8649. "url": "https://symfony.com/sponsor",
  8650. "type": "custom"
  8651. },
  8652. {
  8653. "url": "https://github.com/fabpot",
  8654. "type": "github"
  8655. },
  8656. {
  8657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8658. "type": "tidelift"
  8659. }
  8660. ],
  8661. "time": "2023-12-26T14:02:43+00:00"
  8662. },
  8663. {
  8664. "name": "symfony/uid",
  8665. "version": "v6.4.3",
  8666. "source": {
  8667. "type": "git",
  8668. "url": "https://github.com/symfony/uid.git",
  8669. "reference": "1d31267211cc3a2fff32bcfc7c1818dac41b6fc0"
  8670. },
  8671. "dist": {
  8672. "type": "zip",
  8673. "url": "https://api.github.com/repos/symfony/uid/zipball/1d31267211cc3a2fff32bcfc7c1818dac41b6fc0",
  8674. "reference": "1d31267211cc3a2fff32bcfc7c1818dac41b6fc0",
  8675. "shasum": ""
  8676. },
  8677. "require": {
  8678. "php": ">=8.1",
  8679. "symfony/polyfill-uuid": "^1.15"
  8680. },
  8681. "require-dev": {
  8682. "symfony/console": "^5.4|^6.0|^7.0"
  8683. },
  8684. "type": "library",
  8685. "autoload": {
  8686. "psr-4": {
  8687. "Symfony\\Component\\Uid\\": ""
  8688. },
  8689. "exclude-from-classmap": [
  8690. "/Tests/"
  8691. ]
  8692. },
  8693. "notification-url": "https://packagist.org/downloads/",
  8694. "license": [
  8695. "MIT"
  8696. ],
  8697. "authors": [
  8698. {
  8699. "name": "Grégoire Pineau",
  8700. "email": "lyrixx@lyrixx.info"
  8701. },
  8702. {
  8703. "name": "Nicolas Grekas",
  8704. "email": "p@tchwork.com"
  8705. },
  8706. {
  8707. "name": "Symfony Community",
  8708. "homepage": "https://symfony.com/contributors"
  8709. }
  8710. ],
  8711. "description": "Provides an object-oriented API to generate and represent UIDs",
  8712. "homepage": "https://symfony.com",
  8713. "keywords": [
  8714. "UID",
  8715. "ulid",
  8716. "uuid"
  8717. ],
  8718. "support": {
  8719. "source": "https://github.com/symfony/uid/tree/v6.4.3"
  8720. },
  8721. "funding": [
  8722. {
  8723. "url": "https://symfony.com/sponsor",
  8724. "type": "custom"
  8725. },
  8726. {
  8727. "url": "https://github.com/fabpot",
  8728. "type": "github"
  8729. },
  8730. {
  8731. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8732. "type": "tidelift"
  8733. }
  8734. ],
  8735. "time": "2024-01-23T14:51:35+00:00"
  8736. },
  8737. {
  8738. "name": "symfony/var-dumper",
  8739. "version": "v6.4.3",
  8740. "source": {
  8741. "type": "git",
  8742. "url": "https://github.com/symfony/var-dumper.git",
  8743. "reference": "0435a08f69125535336177c29d56af3abc1f69da"
  8744. },
  8745. "dist": {
  8746. "type": "zip",
  8747. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0435a08f69125535336177c29d56af3abc1f69da",
  8748. "reference": "0435a08f69125535336177c29d56af3abc1f69da",
  8749. "shasum": ""
  8750. },
  8751. "require": {
  8752. "php": ">=8.1",
  8753. "symfony/deprecation-contracts": "^2.5|^3",
  8754. "symfony/polyfill-mbstring": "~1.0"
  8755. },
  8756. "conflict": {
  8757. "symfony/console": "<5.4"
  8758. },
  8759. "require-dev": {
  8760. "ext-iconv": "*",
  8761. "symfony/console": "^5.4|^6.0|^7.0",
  8762. "symfony/error-handler": "^6.3|^7.0",
  8763. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8764. "symfony/process": "^5.4|^6.0|^7.0",
  8765. "symfony/uid": "^5.4|^6.0|^7.0",
  8766. "twig/twig": "^2.13|^3.0.4"
  8767. },
  8768. "bin": [
  8769. "Resources/bin/var-dump-server"
  8770. ],
  8771. "type": "library",
  8772. "autoload": {
  8773. "files": [
  8774. "Resources/functions/dump.php"
  8775. ],
  8776. "psr-4": {
  8777. "Symfony\\Component\\VarDumper\\": ""
  8778. },
  8779. "exclude-from-classmap": [
  8780. "/Tests/"
  8781. ]
  8782. },
  8783. "notification-url": "https://packagist.org/downloads/",
  8784. "license": [
  8785. "MIT"
  8786. ],
  8787. "authors": [
  8788. {
  8789. "name": "Nicolas Grekas",
  8790. "email": "p@tchwork.com"
  8791. },
  8792. {
  8793. "name": "Symfony Community",
  8794. "homepage": "https://symfony.com/contributors"
  8795. }
  8796. ],
  8797. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8798. "homepage": "https://symfony.com",
  8799. "keywords": [
  8800. "debug",
  8801. "dump"
  8802. ],
  8803. "support": {
  8804. "source": "https://github.com/symfony/var-dumper/tree/v6.4.3"
  8805. },
  8806. "funding": [
  8807. {
  8808. "url": "https://symfony.com/sponsor",
  8809. "type": "custom"
  8810. },
  8811. {
  8812. "url": "https://github.com/fabpot",
  8813. "type": "github"
  8814. },
  8815. {
  8816. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8817. "type": "tidelift"
  8818. }
  8819. ],
  8820. "time": "2024-01-23T14:53:30+00:00"
  8821. },
  8822. {
  8823. "name": "tijsverkoyen/css-to-inline-styles",
  8824. "version": "v2.2.7",
  8825. "source": {
  8826. "type": "git",
  8827. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8828. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  8829. },
  8830. "dist": {
  8831. "type": "zip",
  8832. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8833. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8834. "shasum": ""
  8835. },
  8836. "require": {
  8837. "ext-dom": "*",
  8838. "ext-libxml": "*",
  8839. "php": "^5.5 || ^7.0 || ^8.0",
  8840. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  8841. },
  8842. "require-dev": {
  8843. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8844. },
  8845. "type": "library",
  8846. "extra": {
  8847. "branch-alias": {
  8848. "dev-master": "2.2.x-dev"
  8849. }
  8850. },
  8851. "autoload": {
  8852. "psr-4": {
  8853. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8854. }
  8855. },
  8856. "notification-url": "https://packagist.org/downloads/",
  8857. "license": [
  8858. "BSD-3-Clause"
  8859. ],
  8860. "authors": [
  8861. {
  8862. "name": "Tijs Verkoyen",
  8863. "email": "css_to_inline_styles@verkoyen.eu",
  8864. "role": "Developer"
  8865. }
  8866. ],
  8867. "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.",
  8868. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8869. "support": {
  8870. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8871. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  8872. },
  8873. "time": "2023-12-08T13:03:43+00:00"
  8874. },
  8875. {
  8876. "name": "vlucas/phpdotenv",
  8877. "version": "v5.6.0",
  8878. "source": {
  8879. "type": "git",
  8880. "url": "https://github.com/vlucas/phpdotenv.git",
  8881. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  8882. },
  8883. "dist": {
  8884. "type": "zip",
  8885. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  8886. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  8887. "shasum": ""
  8888. },
  8889. "require": {
  8890. "ext-pcre": "*",
  8891. "graham-campbell/result-type": "^1.1.2",
  8892. "php": "^7.2.5 || ^8.0",
  8893. "phpoption/phpoption": "^1.9.2",
  8894. "symfony/polyfill-ctype": "^1.24",
  8895. "symfony/polyfill-mbstring": "^1.24",
  8896. "symfony/polyfill-php80": "^1.24"
  8897. },
  8898. "require-dev": {
  8899. "bamarni/composer-bin-plugin": "^1.8.2",
  8900. "ext-filter": "*",
  8901. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8902. },
  8903. "suggest": {
  8904. "ext-filter": "Required to use the boolean validator."
  8905. },
  8906. "type": "library",
  8907. "extra": {
  8908. "bamarni-bin": {
  8909. "bin-links": true,
  8910. "forward-command": true
  8911. },
  8912. "branch-alias": {
  8913. "dev-master": "5.6-dev"
  8914. }
  8915. },
  8916. "autoload": {
  8917. "psr-4": {
  8918. "Dotenv\\": "src/"
  8919. }
  8920. },
  8921. "notification-url": "https://packagist.org/downloads/",
  8922. "license": [
  8923. "BSD-3-Clause"
  8924. ],
  8925. "authors": [
  8926. {
  8927. "name": "Graham Campbell",
  8928. "email": "hello@gjcampbell.co.uk",
  8929. "homepage": "https://github.com/GrahamCampbell"
  8930. },
  8931. {
  8932. "name": "Vance Lucas",
  8933. "email": "vance@vancelucas.com",
  8934. "homepage": "https://github.com/vlucas"
  8935. }
  8936. ],
  8937. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8938. "keywords": [
  8939. "dotenv",
  8940. "env",
  8941. "environment"
  8942. ],
  8943. "support": {
  8944. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8945. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  8946. },
  8947. "funding": [
  8948. {
  8949. "url": "https://github.com/GrahamCampbell",
  8950. "type": "github"
  8951. },
  8952. {
  8953. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8954. "type": "tidelift"
  8955. }
  8956. ],
  8957. "time": "2023-11-12T22:43:29+00:00"
  8958. },
  8959. {
  8960. "name": "voku/portable-ascii",
  8961. "version": "2.0.1",
  8962. "source": {
  8963. "type": "git",
  8964. "url": "https://github.com/voku/portable-ascii.git",
  8965. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  8966. },
  8967. "dist": {
  8968. "type": "zip",
  8969. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  8970. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  8971. "shasum": ""
  8972. },
  8973. "require": {
  8974. "php": ">=7.0.0"
  8975. },
  8976. "require-dev": {
  8977. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8978. },
  8979. "suggest": {
  8980. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8981. },
  8982. "type": "library",
  8983. "autoload": {
  8984. "psr-4": {
  8985. "voku\\": "src/voku/"
  8986. }
  8987. },
  8988. "notification-url": "https://packagist.org/downloads/",
  8989. "license": [
  8990. "MIT"
  8991. ],
  8992. "authors": [
  8993. {
  8994. "name": "Lars Moelleken",
  8995. "homepage": "http://www.moelleken.org/"
  8996. }
  8997. ],
  8998. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8999. "homepage": "https://github.com/voku/portable-ascii",
  9000. "keywords": [
  9001. "ascii",
  9002. "clean",
  9003. "php"
  9004. ],
  9005. "support": {
  9006. "issues": "https://github.com/voku/portable-ascii/issues",
  9007. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  9008. },
  9009. "funding": [
  9010. {
  9011. "url": "https://www.paypal.me/moelleken",
  9012. "type": "custom"
  9013. },
  9014. {
  9015. "url": "https://github.com/voku",
  9016. "type": "github"
  9017. },
  9018. {
  9019. "url": "https://opencollective.com/portable-ascii",
  9020. "type": "open_collective"
  9021. },
  9022. {
  9023. "url": "https://www.patreon.com/voku",
  9024. "type": "patreon"
  9025. },
  9026. {
  9027. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9028. "type": "tidelift"
  9029. }
  9030. ],
  9031. "time": "2022-03-08T17:03:00+00:00"
  9032. },
  9033. {
  9034. "name": "webmozart/assert",
  9035. "version": "1.11.0",
  9036. "source": {
  9037. "type": "git",
  9038. "url": "https://github.com/webmozarts/assert.git",
  9039. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9040. },
  9041. "dist": {
  9042. "type": "zip",
  9043. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9044. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9045. "shasum": ""
  9046. },
  9047. "require": {
  9048. "ext-ctype": "*",
  9049. "php": "^7.2 || ^8.0"
  9050. },
  9051. "conflict": {
  9052. "phpstan/phpstan": "<0.12.20",
  9053. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9054. },
  9055. "require-dev": {
  9056. "phpunit/phpunit": "^8.5.13"
  9057. },
  9058. "type": "library",
  9059. "extra": {
  9060. "branch-alias": {
  9061. "dev-master": "1.10-dev"
  9062. }
  9063. },
  9064. "autoload": {
  9065. "psr-4": {
  9066. "Webmozart\\Assert\\": "src/"
  9067. }
  9068. },
  9069. "notification-url": "https://packagist.org/downloads/",
  9070. "license": [
  9071. "MIT"
  9072. ],
  9073. "authors": [
  9074. {
  9075. "name": "Bernhard Schussek",
  9076. "email": "bschussek@gmail.com"
  9077. }
  9078. ],
  9079. "description": "Assertions to validate method input/output with nice error messages.",
  9080. "keywords": [
  9081. "assert",
  9082. "check",
  9083. "validate"
  9084. ],
  9085. "support": {
  9086. "issues": "https://github.com/webmozarts/assert/issues",
  9087. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9088. },
  9089. "time": "2022-06-03T18:03:27+00:00"
  9090. }
  9091. ],
  9092. "packages-dev": [
  9093. {
  9094. "name": "fakerphp/faker",
  9095. "version": "v1.23.1",
  9096. "source": {
  9097. "type": "git",
  9098. "url": "https://github.com/FakerPHP/Faker.git",
  9099. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  9100. },
  9101. "dist": {
  9102. "type": "zip",
  9103. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  9104. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  9105. "shasum": ""
  9106. },
  9107. "require": {
  9108. "php": "^7.4 || ^8.0",
  9109. "psr/container": "^1.0 || ^2.0",
  9110. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9111. },
  9112. "conflict": {
  9113. "fzaninotto/faker": "*"
  9114. },
  9115. "require-dev": {
  9116. "bamarni/composer-bin-plugin": "^1.4.1",
  9117. "doctrine/persistence": "^1.3 || ^2.0",
  9118. "ext-intl": "*",
  9119. "phpunit/phpunit": "^9.5.26",
  9120. "symfony/phpunit-bridge": "^5.4.16"
  9121. },
  9122. "suggest": {
  9123. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9124. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9125. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9126. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9127. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9128. },
  9129. "type": "library",
  9130. "autoload": {
  9131. "psr-4": {
  9132. "Faker\\": "src/Faker/"
  9133. }
  9134. },
  9135. "notification-url": "https://packagist.org/downloads/",
  9136. "license": [
  9137. "MIT"
  9138. ],
  9139. "authors": [
  9140. {
  9141. "name": "François Zaninotto"
  9142. }
  9143. ],
  9144. "description": "Faker is a PHP library that generates fake data for you.",
  9145. "keywords": [
  9146. "data",
  9147. "faker",
  9148. "fixtures"
  9149. ],
  9150. "support": {
  9151. "issues": "https://github.com/FakerPHP/Faker/issues",
  9152. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  9153. },
  9154. "time": "2024-01-02T13:46:09+00:00"
  9155. },
  9156. {
  9157. "name": "filp/whoops",
  9158. "version": "2.15.4",
  9159. "source": {
  9160. "type": "git",
  9161. "url": "https://github.com/filp/whoops.git",
  9162. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  9163. },
  9164. "dist": {
  9165. "type": "zip",
  9166. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9167. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9168. "shasum": ""
  9169. },
  9170. "require": {
  9171. "php": "^5.5.9 || ^7.0 || ^8.0",
  9172. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9173. },
  9174. "require-dev": {
  9175. "mockery/mockery": "^0.9 || ^1.0",
  9176. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  9177. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  9178. },
  9179. "suggest": {
  9180. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9181. "whoops/soap": "Formats errors as SOAP responses"
  9182. },
  9183. "type": "library",
  9184. "extra": {
  9185. "branch-alias": {
  9186. "dev-master": "2.7-dev"
  9187. }
  9188. },
  9189. "autoload": {
  9190. "psr-4": {
  9191. "Whoops\\": "src/Whoops/"
  9192. }
  9193. },
  9194. "notification-url": "https://packagist.org/downloads/",
  9195. "license": [
  9196. "MIT"
  9197. ],
  9198. "authors": [
  9199. {
  9200. "name": "Filipe Dobreira",
  9201. "homepage": "https://github.com/filp",
  9202. "role": "Developer"
  9203. }
  9204. ],
  9205. "description": "php error handling for cool kids",
  9206. "homepage": "https://filp.github.io/whoops/",
  9207. "keywords": [
  9208. "error",
  9209. "exception",
  9210. "handling",
  9211. "library",
  9212. "throwable",
  9213. "whoops"
  9214. ],
  9215. "support": {
  9216. "issues": "https://github.com/filp/whoops/issues",
  9217. "source": "https://github.com/filp/whoops/tree/2.15.4"
  9218. },
  9219. "funding": [
  9220. {
  9221. "url": "https://github.com/denis-sokolov",
  9222. "type": "github"
  9223. }
  9224. ],
  9225. "time": "2023-11-03T12:00:00+00:00"
  9226. },
  9227. {
  9228. "name": "hamcrest/hamcrest-php",
  9229. "version": "v2.0.1",
  9230. "source": {
  9231. "type": "git",
  9232. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9233. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9234. },
  9235. "dist": {
  9236. "type": "zip",
  9237. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9238. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9239. "shasum": ""
  9240. },
  9241. "require": {
  9242. "php": "^5.3|^7.0|^8.0"
  9243. },
  9244. "replace": {
  9245. "cordoval/hamcrest-php": "*",
  9246. "davedevelopment/hamcrest-php": "*",
  9247. "kodova/hamcrest-php": "*"
  9248. },
  9249. "require-dev": {
  9250. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9251. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9252. },
  9253. "type": "library",
  9254. "extra": {
  9255. "branch-alias": {
  9256. "dev-master": "2.1-dev"
  9257. }
  9258. },
  9259. "autoload": {
  9260. "classmap": [
  9261. "hamcrest"
  9262. ]
  9263. },
  9264. "notification-url": "https://packagist.org/downloads/",
  9265. "license": [
  9266. "BSD-3-Clause"
  9267. ],
  9268. "description": "This is the PHP port of Hamcrest Matchers",
  9269. "keywords": [
  9270. "test"
  9271. ],
  9272. "support": {
  9273. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9274. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9275. },
  9276. "time": "2020-07-09T08:09:16+00:00"
  9277. },
  9278. {
  9279. "name": "laravel/pint",
  9280. "version": "v1.13.11",
  9281. "source": {
  9282. "type": "git",
  9283. "url": "https://github.com/laravel/pint.git",
  9284. "reference": "60a163c3e7e3346a1dec96d3e6f02e6465452552"
  9285. },
  9286. "dist": {
  9287. "type": "zip",
  9288. "url": "https://api.github.com/repos/laravel/pint/zipball/60a163c3e7e3346a1dec96d3e6f02e6465452552",
  9289. "reference": "60a163c3e7e3346a1dec96d3e6f02e6465452552",
  9290. "shasum": ""
  9291. },
  9292. "require": {
  9293. "ext-json": "*",
  9294. "ext-mbstring": "*",
  9295. "ext-tokenizer": "*",
  9296. "ext-xml": "*",
  9297. "php": "^8.1.0"
  9298. },
  9299. "require-dev": {
  9300. "friendsofphp/php-cs-fixer": "^3.49.0",
  9301. "illuminate/view": "^10.43.0",
  9302. "larastan/larastan": "^2.8.1",
  9303. "laravel-zero/framework": "^10.3.0",
  9304. "mockery/mockery": "^1.6.7",
  9305. "nunomaduro/termwind": "^1.15.1",
  9306. "pestphp/pest": "^2.33.6"
  9307. },
  9308. "bin": [
  9309. "builds/pint"
  9310. ],
  9311. "type": "project",
  9312. "autoload": {
  9313. "psr-4": {
  9314. "App\\": "app/",
  9315. "Database\\Seeders\\": "database/seeders/",
  9316. "Database\\Factories\\": "database/factories/"
  9317. }
  9318. },
  9319. "notification-url": "https://packagist.org/downloads/",
  9320. "license": [
  9321. "MIT"
  9322. ],
  9323. "authors": [
  9324. {
  9325. "name": "Nuno Maduro",
  9326. "email": "enunomaduro@gmail.com"
  9327. }
  9328. ],
  9329. "description": "An opinionated code formatter for PHP.",
  9330. "homepage": "https://laravel.com",
  9331. "keywords": [
  9332. "format",
  9333. "formatter",
  9334. "lint",
  9335. "linter",
  9336. "php"
  9337. ],
  9338. "support": {
  9339. "issues": "https://github.com/laravel/pint/issues",
  9340. "source": "https://github.com/laravel/pint"
  9341. },
  9342. "time": "2024-02-13T17:20:13+00:00"
  9343. },
  9344. {
  9345. "name": "laravel/sail",
  9346. "version": "v1.27.4",
  9347. "source": {
  9348. "type": "git",
  9349. "url": "https://github.com/laravel/sail.git",
  9350. "reference": "3047e1a157fad968cc5f6e620d5cbe5c0867fffd"
  9351. },
  9352. "dist": {
  9353. "type": "zip",
  9354. "url": "https://api.github.com/repos/laravel/sail/zipball/3047e1a157fad968cc5f6e620d5cbe5c0867fffd",
  9355. "reference": "3047e1a157fad968cc5f6e620d5cbe5c0867fffd",
  9356. "shasum": ""
  9357. },
  9358. "require": {
  9359. "illuminate/console": "^9.52.16|^10.0|^11.0",
  9360. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  9361. "illuminate/support": "^9.52.16|^10.0|^11.0",
  9362. "php": "^8.0",
  9363. "symfony/yaml": "^6.0|^7.0"
  9364. },
  9365. "require-dev": {
  9366. "orchestra/testbench": "^7.0|^8.0|^9.0",
  9367. "phpstan/phpstan": "^1.10"
  9368. },
  9369. "bin": [
  9370. "bin/sail"
  9371. ],
  9372. "type": "library",
  9373. "extra": {
  9374. "laravel": {
  9375. "providers": [
  9376. "Laravel\\Sail\\SailServiceProvider"
  9377. ]
  9378. }
  9379. },
  9380. "autoload": {
  9381. "psr-4": {
  9382. "Laravel\\Sail\\": "src/"
  9383. }
  9384. },
  9385. "notification-url": "https://packagist.org/downloads/",
  9386. "license": [
  9387. "MIT"
  9388. ],
  9389. "authors": [
  9390. {
  9391. "name": "Taylor Otwell",
  9392. "email": "taylor@laravel.com"
  9393. }
  9394. ],
  9395. "description": "Docker files for running a basic Laravel application.",
  9396. "keywords": [
  9397. "docker",
  9398. "laravel"
  9399. ],
  9400. "support": {
  9401. "issues": "https://github.com/laravel/sail/issues",
  9402. "source": "https://github.com/laravel/sail"
  9403. },
  9404. "time": "2024-02-08T15:24:21+00:00"
  9405. },
  9406. {
  9407. "name": "mockery/mockery",
  9408. "version": "1.6.7",
  9409. "source": {
  9410. "type": "git",
  9411. "url": "https://github.com/mockery/mockery.git",
  9412. "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06"
  9413. },
  9414. "dist": {
  9415. "type": "zip",
  9416. "url": "https://api.github.com/repos/mockery/mockery/zipball/0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06",
  9417. "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06",
  9418. "shasum": ""
  9419. },
  9420. "require": {
  9421. "hamcrest/hamcrest-php": "^2.0.1",
  9422. "lib-pcre": ">=7.0",
  9423. "php": ">=7.3"
  9424. },
  9425. "conflict": {
  9426. "phpunit/phpunit": "<8.0"
  9427. },
  9428. "require-dev": {
  9429. "phpunit/phpunit": "^8.5 || ^9.6.10",
  9430. "symplify/easy-coding-standard": "^12.0.8"
  9431. },
  9432. "type": "library",
  9433. "autoload": {
  9434. "files": [
  9435. "library/helpers.php",
  9436. "library/Mockery.php"
  9437. ],
  9438. "psr-4": {
  9439. "Mockery\\": "library/Mockery"
  9440. }
  9441. },
  9442. "notification-url": "https://packagist.org/downloads/",
  9443. "license": [
  9444. "BSD-3-Clause"
  9445. ],
  9446. "authors": [
  9447. {
  9448. "name": "Pádraic Brady",
  9449. "email": "padraic.brady@gmail.com",
  9450. "homepage": "https://github.com/padraic",
  9451. "role": "Author"
  9452. },
  9453. {
  9454. "name": "Dave Marshall",
  9455. "email": "dave.marshall@atstsolutions.co.uk",
  9456. "homepage": "https://davedevelopment.co.uk",
  9457. "role": "Developer"
  9458. },
  9459. {
  9460. "name": "Nathanael Esayeas",
  9461. "email": "nathanael.esayeas@protonmail.com",
  9462. "homepage": "https://github.com/ghostwriter",
  9463. "role": "Lead Developer"
  9464. }
  9465. ],
  9466. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9467. "homepage": "https://github.com/mockery/mockery",
  9468. "keywords": [
  9469. "BDD",
  9470. "TDD",
  9471. "library",
  9472. "mock",
  9473. "mock objects",
  9474. "mockery",
  9475. "stub",
  9476. "test",
  9477. "test double",
  9478. "testing"
  9479. ],
  9480. "support": {
  9481. "docs": "https://docs.mockery.io/",
  9482. "issues": "https://github.com/mockery/mockery/issues",
  9483. "rss": "https://github.com/mockery/mockery/releases.atom",
  9484. "security": "https://github.com/mockery/mockery/security/advisories",
  9485. "source": "https://github.com/mockery/mockery"
  9486. },
  9487. "time": "2023-12-10T02:24:34+00:00"
  9488. },
  9489. {
  9490. "name": "myclabs/deep-copy",
  9491. "version": "1.11.1",
  9492. "source": {
  9493. "type": "git",
  9494. "url": "https://github.com/myclabs/DeepCopy.git",
  9495. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  9496. },
  9497. "dist": {
  9498. "type": "zip",
  9499. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9500. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9501. "shasum": ""
  9502. },
  9503. "require": {
  9504. "php": "^7.1 || ^8.0"
  9505. },
  9506. "conflict": {
  9507. "doctrine/collections": "<1.6.8",
  9508. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  9509. },
  9510. "require-dev": {
  9511. "doctrine/collections": "^1.6.8",
  9512. "doctrine/common": "^2.13.3 || ^3.2.2",
  9513. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9514. },
  9515. "type": "library",
  9516. "autoload": {
  9517. "files": [
  9518. "src/DeepCopy/deep_copy.php"
  9519. ],
  9520. "psr-4": {
  9521. "DeepCopy\\": "src/DeepCopy/"
  9522. }
  9523. },
  9524. "notification-url": "https://packagist.org/downloads/",
  9525. "license": [
  9526. "MIT"
  9527. ],
  9528. "description": "Create deep copies (clones) of your objects",
  9529. "keywords": [
  9530. "clone",
  9531. "copy",
  9532. "duplicate",
  9533. "object",
  9534. "object graph"
  9535. ],
  9536. "support": {
  9537. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9538. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9539. },
  9540. "funding": [
  9541. {
  9542. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9543. "type": "tidelift"
  9544. }
  9545. ],
  9546. "time": "2023-03-08T13:26:56+00:00"
  9547. },
  9548. {
  9549. "name": "nunomaduro/collision",
  9550. "version": "v7.10.0",
  9551. "source": {
  9552. "type": "git",
  9553. "url": "https://github.com/nunomaduro/collision.git",
  9554. "reference": "49ec67fa7b002712da8526678abd651c09f375b2"
  9555. },
  9556. "dist": {
  9557. "type": "zip",
  9558. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/49ec67fa7b002712da8526678abd651c09f375b2",
  9559. "reference": "49ec67fa7b002712da8526678abd651c09f375b2",
  9560. "shasum": ""
  9561. },
  9562. "require": {
  9563. "filp/whoops": "^2.15.3",
  9564. "nunomaduro/termwind": "^1.15.1",
  9565. "php": "^8.1.0",
  9566. "symfony/console": "^6.3.4"
  9567. },
  9568. "conflict": {
  9569. "laravel/framework": ">=11.0.0"
  9570. },
  9571. "require-dev": {
  9572. "brianium/paratest": "^7.3.0",
  9573. "laravel/framework": "^10.28.0",
  9574. "laravel/pint": "^1.13.3",
  9575. "laravel/sail": "^1.25.0",
  9576. "laravel/sanctum": "^3.3.1",
  9577. "laravel/tinker": "^2.8.2",
  9578. "nunomaduro/larastan": "^2.6.4",
  9579. "orchestra/testbench-core": "^8.13.0",
  9580. "pestphp/pest": "^2.23.2",
  9581. "phpunit/phpunit": "^10.4.1",
  9582. "sebastian/environment": "^6.0.1",
  9583. "spatie/laravel-ignition": "^2.3.1"
  9584. },
  9585. "type": "library",
  9586. "extra": {
  9587. "laravel": {
  9588. "providers": [
  9589. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9590. ]
  9591. }
  9592. },
  9593. "autoload": {
  9594. "files": [
  9595. "./src/Adapters/Phpunit/Autoload.php"
  9596. ],
  9597. "psr-4": {
  9598. "NunoMaduro\\Collision\\": "src/"
  9599. }
  9600. },
  9601. "notification-url": "https://packagist.org/downloads/",
  9602. "license": [
  9603. "MIT"
  9604. ],
  9605. "authors": [
  9606. {
  9607. "name": "Nuno Maduro",
  9608. "email": "enunomaduro@gmail.com"
  9609. }
  9610. ],
  9611. "description": "Cli error handling for console/command-line PHP applications.",
  9612. "keywords": [
  9613. "artisan",
  9614. "cli",
  9615. "command-line",
  9616. "console",
  9617. "error",
  9618. "handling",
  9619. "laravel",
  9620. "laravel-zero",
  9621. "php",
  9622. "symfony"
  9623. ],
  9624. "support": {
  9625. "issues": "https://github.com/nunomaduro/collision/issues",
  9626. "source": "https://github.com/nunomaduro/collision"
  9627. },
  9628. "funding": [
  9629. {
  9630. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9631. "type": "custom"
  9632. },
  9633. {
  9634. "url": "https://github.com/nunomaduro",
  9635. "type": "github"
  9636. },
  9637. {
  9638. "url": "https://www.patreon.com/nunomaduro",
  9639. "type": "patreon"
  9640. }
  9641. ],
  9642. "time": "2023-10-11T15:45:01+00:00"
  9643. },
  9644. {
  9645. "name": "phar-io/manifest",
  9646. "version": "2.0.3",
  9647. "source": {
  9648. "type": "git",
  9649. "url": "https://github.com/phar-io/manifest.git",
  9650. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9651. },
  9652. "dist": {
  9653. "type": "zip",
  9654. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9655. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9656. "shasum": ""
  9657. },
  9658. "require": {
  9659. "ext-dom": "*",
  9660. "ext-phar": "*",
  9661. "ext-xmlwriter": "*",
  9662. "phar-io/version": "^3.0.1",
  9663. "php": "^7.2 || ^8.0"
  9664. },
  9665. "type": "library",
  9666. "extra": {
  9667. "branch-alias": {
  9668. "dev-master": "2.0.x-dev"
  9669. }
  9670. },
  9671. "autoload": {
  9672. "classmap": [
  9673. "src/"
  9674. ]
  9675. },
  9676. "notification-url": "https://packagist.org/downloads/",
  9677. "license": [
  9678. "BSD-3-Clause"
  9679. ],
  9680. "authors": [
  9681. {
  9682. "name": "Arne Blankerts",
  9683. "email": "arne@blankerts.de",
  9684. "role": "Developer"
  9685. },
  9686. {
  9687. "name": "Sebastian Heuer",
  9688. "email": "sebastian@phpeople.de",
  9689. "role": "Developer"
  9690. },
  9691. {
  9692. "name": "Sebastian Bergmann",
  9693. "email": "sebastian@phpunit.de",
  9694. "role": "Developer"
  9695. }
  9696. ],
  9697. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9698. "support": {
  9699. "issues": "https://github.com/phar-io/manifest/issues",
  9700. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9701. },
  9702. "time": "2021-07-20T11:28:43+00:00"
  9703. },
  9704. {
  9705. "name": "phar-io/version",
  9706. "version": "3.2.1",
  9707. "source": {
  9708. "type": "git",
  9709. "url": "https://github.com/phar-io/version.git",
  9710. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9711. },
  9712. "dist": {
  9713. "type": "zip",
  9714. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9715. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9716. "shasum": ""
  9717. },
  9718. "require": {
  9719. "php": "^7.2 || ^8.0"
  9720. },
  9721. "type": "library",
  9722. "autoload": {
  9723. "classmap": [
  9724. "src/"
  9725. ]
  9726. },
  9727. "notification-url": "https://packagist.org/downloads/",
  9728. "license": [
  9729. "BSD-3-Clause"
  9730. ],
  9731. "authors": [
  9732. {
  9733. "name": "Arne Blankerts",
  9734. "email": "arne@blankerts.de",
  9735. "role": "Developer"
  9736. },
  9737. {
  9738. "name": "Sebastian Heuer",
  9739. "email": "sebastian@phpeople.de",
  9740. "role": "Developer"
  9741. },
  9742. {
  9743. "name": "Sebastian Bergmann",
  9744. "email": "sebastian@phpunit.de",
  9745. "role": "Developer"
  9746. }
  9747. ],
  9748. "description": "Library for handling version information and constraints",
  9749. "support": {
  9750. "issues": "https://github.com/phar-io/version/issues",
  9751. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9752. },
  9753. "time": "2022-02-21T01:04:05+00:00"
  9754. },
  9755. {
  9756. "name": "phpunit/php-code-coverage",
  9757. "version": "10.1.11",
  9758. "source": {
  9759. "type": "git",
  9760. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9761. "reference": "78c3b7625965c2513ee96569a4dbb62601784145"
  9762. },
  9763. "dist": {
  9764. "type": "zip",
  9765. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/78c3b7625965c2513ee96569a4dbb62601784145",
  9766. "reference": "78c3b7625965c2513ee96569a4dbb62601784145",
  9767. "shasum": ""
  9768. },
  9769. "require": {
  9770. "ext-dom": "*",
  9771. "ext-libxml": "*",
  9772. "ext-xmlwriter": "*",
  9773. "nikic/php-parser": "^4.18 || ^5.0",
  9774. "php": ">=8.1",
  9775. "phpunit/php-file-iterator": "^4.0",
  9776. "phpunit/php-text-template": "^3.0",
  9777. "sebastian/code-unit-reverse-lookup": "^3.0",
  9778. "sebastian/complexity": "^3.0",
  9779. "sebastian/environment": "^6.0",
  9780. "sebastian/lines-of-code": "^2.0",
  9781. "sebastian/version": "^4.0",
  9782. "theseer/tokenizer": "^1.2.0"
  9783. },
  9784. "require-dev": {
  9785. "phpunit/phpunit": "^10.1"
  9786. },
  9787. "suggest": {
  9788. "ext-pcov": "PHP extension that provides line coverage",
  9789. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9790. },
  9791. "type": "library",
  9792. "extra": {
  9793. "branch-alias": {
  9794. "dev-main": "10.1-dev"
  9795. }
  9796. },
  9797. "autoload": {
  9798. "classmap": [
  9799. "src/"
  9800. ]
  9801. },
  9802. "notification-url": "https://packagist.org/downloads/",
  9803. "license": [
  9804. "BSD-3-Clause"
  9805. ],
  9806. "authors": [
  9807. {
  9808. "name": "Sebastian Bergmann",
  9809. "email": "sebastian@phpunit.de",
  9810. "role": "lead"
  9811. }
  9812. ],
  9813. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9814. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9815. "keywords": [
  9816. "coverage",
  9817. "testing",
  9818. "xunit"
  9819. ],
  9820. "support": {
  9821. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9822. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9823. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.11"
  9824. },
  9825. "funding": [
  9826. {
  9827. "url": "https://github.com/sebastianbergmann",
  9828. "type": "github"
  9829. }
  9830. ],
  9831. "time": "2023-12-21T15:38:30+00:00"
  9832. },
  9833. {
  9834. "name": "phpunit/php-file-iterator",
  9835. "version": "4.1.0",
  9836. "source": {
  9837. "type": "git",
  9838. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9839. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9840. },
  9841. "dist": {
  9842. "type": "zip",
  9843. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9844. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9845. "shasum": ""
  9846. },
  9847. "require": {
  9848. "php": ">=8.1"
  9849. },
  9850. "require-dev": {
  9851. "phpunit/phpunit": "^10.0"
  9852. },
  9853. "type": "library",
  9854. "extra": {
  9855. "branch-alias": {
  9856. "dev-main": "4.0-dev"
  9857. }
  9858. },
  9859. "autoload": {
  9860. "classmap": [
  9861. "src/"
  9862. ]
  9863. },
  9864. "notification-url": "https://packagist.org/downloads/",
  9865. "license": [
  9866. "BSD-3-Clause"
  9867. ],
  9868. "authors": [
  9869. {
  9870. "name": "Sebastian Bergmann",
  9871. "email": "sebastian@phpunit.de",
  9872. "role": "lead"
  9873. }
  9874. ],
  9875. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9876. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9877. "keywords": [
  9878. "filesystem",
  9879. "iterator"
  9880. ],
  9881. "support": {
  9882. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9883. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9884. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9885. },
  9886. "funding": [
  9887. {
  9888. "url": "https://github.com/sebastianbergmann",
  9889. "type": "github"
  9890. }
  9891. ],
  9892. "time": "2023-08-31T06:24:48+00:00"
  9893. },
  9894. {
  9895. "name": "phpunit/php-invoker",
  9896. "version": "4.0.0",
  9897. "source": {
  9898. "type": "git",
  9899. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9900. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9901. },
  9902. "dist": {
  9903. "type": "zip",
  9904. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9905. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9906. "shasum": ""
  9907. },
  9908. "require": {
  9909. "php": ">=8.1"
  9910. },
  9911. "require-dev": {
  9912. "ext-pcntl": "*",
  9913. "phpunit/phpunit": "^10.0"
  9914. },
  9915. "suggest": {
  9916. "ext-pcntl": "*"
  9917. },
  9918. "type": "library",
  9919. "extra": {
  9920. "branch-alias": {
  9921. "dev-main": "4.0-dev"
  9922. }
  9923. },
  9924. "autoload": {
  9925. "classmap": [
  9926. "src/"
  9927. ]
  9928. },
  9929. "notification-url": "https://packagist.org/downloads/",
  9930. "license": [
  9931. "BSD-3-Clause"
  9932. ],
  9933. "authors": [
  9934. {
  9935. "name": "Sebastian Bergmann",
  9936. "email": "sebastian@phpunit.de",
  9937. "role": "lead"
  9938. }
  9939. ],
  9940. "description": "Invoke callables with a timeout",
  9941. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9942. "keywords": [
  9943. "process"
  9944. ],
  9945. "support": {
  9946. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9947. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9948. },
  9949. "funding": [
  9950. {
  9951. "url": "https://github.com/sebastianbergmann",
  9952. "type": "github"
  9953. }
  9954. ],
  9955. "time": "2023-02-03T06:56:09+00:00"
  9956. },
  9957. {
  9958. "name": "phpunit/php-text-template",
  9959. "version": "3.0.1",
  9960. "source": {
  9961. "type": "git",
  9962. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9963. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9964. },
  9965. "dist": {
  9966. "type": "zip",
  9967. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9968. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9969. "shasum": ""
  9970. },
  9971. "require": {
  9972. "php": ">=8.1"
  9973. },
  9974. "require-dev": {
  9975. "phpunit/phpunit": "^10.0"
  9976. },
  9977. "type": "library",
  9978. "extra": {
  9979. "branch-alias": {
  9980. "dev-main": "3.0-dev"
  9981. }
  9982. },
  9983. "autoload": {
  9984. "classmap": [
  9985. "src/"
  9986. ]
  9987. },
  9988. "notification-url": "https://packagist.org/downloads/",
  9989. "license": [
  9990. "BSD-3-Clause"
  9991. ],
  9992. "authors": [
  9993. {
  9994. "name": "Sebastian Bergmann",
  9995. "email": "sebastian@phpunit.de",
  9996. "role": "lead"
  9997. }
  9998. ],
  9999. "description": "Simple template engine.",
  10000. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10001. "keywords": [
  10002. "template"
  10003. ],
  10004. "support": {
  10005. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10006. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  10007. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  10008. },
  10009. "funding": [
  10010. {
  10011. "url": "https://github.com/sebastianbergmann",
  10012. "type": "github"
  10013. }
  10014. ],
  10015. "time": "2023-08-31T14:07:24+00:00"
  10016. },
  10017. {
  10018. "name": "phpunit/php-timer",
  10019. "version": "6.0.0",
  10020. "source": {
  10021. "type": "git",
  10022. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10023. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  10024. },
  10025. "dist": {
  10026. "type": "zip",
  10027. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  10028. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  10029. "shasum": ""
  10030. },
  10031. "require": {
  10032. "php": ">=8.1"
  10033. },
  10034. "require-dev": {
  10035. "phpunit/phpunit": "^10.0"
  10036. },
  10037. "type": "library",
  10038. "extra": {
  10039. "branch-alias": {
  10040. "dev-main": "6.0-dev"
  10041. }
  10042. },
  10043. "autoload": {
  10044. "classmap": [
  10045. "src/"
  10046. ]
  10047. },
  10048. "notification-url": "https://packagist.org/downloads/",
  10049. "license": [
  10050. "BSD-3-Clause"
  10051. ],
  10052. "authors": [
  10053. {
  10054. "name": "Sebastian Bergmann",
  10055. "email": "sebastian@phpunit.de",
  10056. "role": "lead"
  10057. }
  10058. ],
  10059. "description": "Utility class for timing",
  10060. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10061. "keywords": [
  10062. "timer"
  10063. ],
  10064. "support": {
  10065. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10066. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  10067. },
  10068. "funding": [
  10069. {
  10070. "url": "https://github.com/sebastianbergmann",
  10071. "type": "github"
  10072. }
  10073. ],
  10074. "time": "2023-02-03T06:57:52+00:00"
  10075. },
  10076. {
  10077. "name": "phpunit/phpunit",
  10078. "version": "10.5.10",
  10079. "source": {
  10080. "type": "git",
  10081. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10082. "reference": "50b8e314b6d0dd06521dc31d1abffa73f25f850c"
  10083. },
  10084. "dist": {
  10085. "type": "zip",
  10086. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/50b8e314b6d0dd06521dc31d1abffa73f25f850c",
  10087. "reference": "50b8e314b6d0dd06521dc31d1abffa73f25f850c",
  10088. "shasum": ""
  10089. },
  10090. "require": {
  10091. "ext-dom": "*",
  10092. "ext-json": "*",
  10093. "ext-libxml": "*",
  10094. "ext-mbstring": "*",
  10095. "ext-xml": "*",
  10096. "ext-xmlwriter": "*",
  10097. "myclabs/deep-copy": "^1.10.1",
  10098. "phar-io/manifest": "^2.0.3",
  10099. "phar-io/version": "^3.0.2",
  10100. "php": ">=8.1",
  10101. "phpunit/php-code-coverage": "^10.1.5",
  10102. "phpunit/php-file-iterator": "^4.0",
  10103. "phpunit/php-invoker": "^4.0",
  10104. "phpunit/php-text-template": "^3.0",
  10105. "phpunit/php-timer": "^6.0",
  10106. "sebastian/cli-parser": "^2.0",
  10107. "sebastian/code-unit": "^2.0",
  10108. "sebastian/comparator": "^5.0",
  10109. "sebastian/diff": "^5.0",
  10110. "sebastian/environment": "^6.0",
  10111. "sebastian/exporter": "^5.1",
  10112. "sebastian/global-state": "^6.0.1",
  10113. "sebastian/object-enumerator": "^5.0",
  10114. "sebastian/recursion-context": "^5.0",
  10115. "sebastian/type": "^4.0",
  10116. "sebastian/version": "^4.0"
  10117. },
  10118. "suggest": {
  10119. "ext-soap": "To be able to generate mocks based on WSDL files"
  10120. },
  10121. "bin": [
  10122. "phpunit"
  10123. ],
  10124. "type": "library",
  10125. "extra": {
  10126. "branch-alias": {
  10127. "dev-main": "10.5-dev"
  10128. }
  10129. },
  10130. "autoload": {
  10131. "files": [
  10132. "src/Framework/Assert/Functions.php"
  10133. ],
  10134. "classmap": [
  10135. "src/"
  10136. ]
  10137. },
  10138. "notification-url": "https://packagist.org/downloads/",
  10139. "license": [
  10140. "BSD-3-Clause"
  10141. ],
  10142. "authors": [
  10143. {
  10144. "name": "Sebastian Bergmann",
  10145. "email": "sebastian@phpunit.de",
  10146. "role": "lead"
  10147. }
  10148. ],
  10149. "description": "The PHP Unit Testing framework.",
  10150. "homepage": "https://phpunit.de/",
  10151. "keywords": [
  10152. "phpunit",
  10153. "testing",
  10154. "xunit"
  10155. ],
  10156. "support": {
  10157. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10158. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10159. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.10"
  10160. },
  10161. "funding": [
  10162. {
  10163. "url": "https://phpunit.de/sponsors.html",
  10164. "type": "custom"
  10165. },
  10166. {
  10167. "url": "https://github.com/sebastianbergmann",
  10168. "type": "github"
  10169. },
  10170. {
  10171. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10172. "type": "tidelift"
  10173. }
  10174. ],
  10175. "time": "2024-02-04T09:07:51+00:00"
  10176. },
  10177. {
  10178. "name": "sebastian/cli-parser",
  10179. "version": "2.0.0",
  10180. "source": {
  10181. "type": "git",
  10182. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10183. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae"
  10184. },
  10185. "dist": {
  10186. "type": "zip",
  10187. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae",
  10188. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae",
  10189. "shasum": ""
  10190. },
  10191. "require": {
  10192. "php": ">=8.1"
  10193. },
  10194. "require-dev": {
  10195. "phpunit/phpunit": "^10.0"
  10196. },
  10197. "type": "library",
  10198. "extra": {
  10199. "branch-alias": {
  10200. "dev-main": "2.0-dev"
  10201. }
  10202. },
  10203. "autoload": {
  10204. "classmap": [
  10205. "src/"
  10206. ]
  10207. },
  10208. "notification-url": "https://packagist.org/downloads/",
  10209. "license": [
  10210. "BSD-3-Clause"
  10211. ],
  10212. "authors": [
  10213. {
  10214. "name": "Sebastian Bergmann",
  10215. "email": "sebastian@phpunit.de",
  10216. "role": "lead"
  10217. }
  10218. ],
  10219. "description": "Library for parsing CLI options",
  10220. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10221. "support": {
  10222. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10223. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.0"
  10224. },
  10225. "funding": [
  10226. {
  10227. "url": "https://github.com/sebastianbergmann",
  10228. "type": "github"
  10229. }
  10230. ],
  10231. "time": "2023-02-03T06:58:15+00:00"
  10232. },
  10233. {
  10234. "name": "sebastian/code-unit",
  10235. "version": "2.0.0",
  10236. "source": {
  10237. "type": "git",
  10238. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10239. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10240. },
  10241. "dist": {
  10242. "type": "zip",
  10243. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10244. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10245. "shasum": ""
  10246. },
  10247. "require": {
  10248. "php": ">=8.1"
  10249. },
  10250. "require-dev": {
  10251. "phpunit/phpunit": "^10.0"
  10252. },
  10253. "type": "library",
  10254. "extra": {
  10255. "branch-alias": {
  10256. "dev-main": "2.0-dev"
  10257. }
  10258. },
  10259. "autoload": {
  10260. "classmap": [
  10261. "src/"
  10262. ]
  10263. },
  10264. "notification-url": "https://packagist.org/downloads/",
  10265. "license": [
  10266. "BSD-3-Clause"
  10267. ],
  10268. "authors": [
  10269. {
  10270. "name": "Sebastian Bergmann",
  10271. "email": "sebastian@phpunit.de",
  10272. "role": "lead"
  10273. }
  10274. ],
  10275. "description": "Collection of value objects that represent the PHP code units",
  10276. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10277. "support": {
  10278. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10279. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10280. },
  10281. "funding": [
  10282. {
  10283. "url": "https://github.com/sebastianbergmann",
  10284. "type": "github"
  10285. }
  10286. ],
  10287. "time": "2023-02-03T06:58:43+00:00"
  10288. },
  10289. {
  10290. "name": "sebastian/code-unit-reverse-lookup",
  10291. "version": "3.0.0",
  10292. "source": {
  10293. "type": "git",
  10294. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10295. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10296. },
  10297. "dist": {
  10298. "type": "zip",
  10299. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10300. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10301. "shasum": ""
  10302. },
  10303. "require": {
  10304. "php": ">=8.1"
  10305. },
  10306. "require-dev": {
  10307. "phpunit/phpunit": "^10.0"
  10308. },
  10309. "type": "library",
  10310. "extra": {
  10311. "branch-alias": {
  10312. "dev-main": "3.0-dev"
  10313. }
  10314. },
  10315. "autoload": {
  10316. "classmap": [
  10317. "src/"
  10318. ]
  10319. },
  10320. "notification-url": "https://packagist.org/downloads/",
  10321. "license": [
  10322. "BSD-3-Clause"
  10323. ],
  10324. "authors": [
  10325. {
  10326. "name": "Sebastian Bergmann",
  10327. "email": "sebastian@phpunit.de"
  10328. }
  10329. ],
  10330. "description": "Looks up which function or method a line of code belongs to",
  10331. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10332. "support": {
  10333. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10334. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10335. },
  10336. "funding": [
  10337. {
  10338. "url": "https://github.com/sebastianbergmann",
  10339. "type": "github"
  10340. }
  10341. ],
  10342. "time": "2023-02-03T06:59:15+00:00"
  10343. },
  10344. {
  10345. "name": "sebastian/comparator",
  10346. "version": "5.0.1",
  10347. "source": {
  10348. "type": "git",
  10349. "url": "https://github.com/sebastianbergmann/comparator.git",
  10350. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  10351. },
  10352. "dist": {
  10353. "type": "zip",
  10354. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  10355. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  10356. "shasum": ""
  10357. },
  10358. "require": {
  10359. "ext-dom": "*",
  10360. "ext-mbstring": "*",
  10361. "php": ">=8.1",
  10362. "sebastian/diff": "^5.0",
  10363. "sebastian/exporter": "^5.0"
  10364. },
  10365. "require-dev": {
  10366. "phpunit/phpunit": "^10.3"
  10367. },
  10368. "type": "library",
  10369. "extra": {
  10370. "branch-alias": {
  10371. "dev-main": "5.0-dev"
  10372. }
  10373. },
  10374. "autoload": {
  10375. "classmap": [
  10376. "src/"
  10377. ]
  10378. },
  10379. "notification-url": "https://packagist.org/downloads/",
  10380. "license": [
  10381. "BSD-3-Clause"
  10382. ],
  10383. "authors": [
  10384. {
  10385. "name": "Sebastian Bergmann",
  10386. "email": "sebastian@phpunit.de"
  10387. },
  10388. {
  10389. "name": "Jeff Welch",
  10390. "email": "whatthejeff@gmail.com"
  10391. },
  10392. {
  10393. "name": "Volker Dusch",
  10394. "email": "github@wallbash.com"
  10395. },
  10396. {
  10397. "name": "Bernhard Schussek",
  10398. "email": "bschussek@2bepublished.at"
  10399. }
  10400. ],
  10401. "description": "Provides the functionality to compare PHP values for equality",
  10402. "homepage": "https://github.com/sebastianbergmann/comparator",
  10403. "keywords": [
  10404. "comparator",
  10405. "compare",
  10406. "equality"
  10407. ],
  10408. "support": {
  10409. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10410. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10411. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  10412. },
  10413. "funding": [
  10414. {
  10415. "url": "https://github.com/sebastianbergmann",
  10416. "type": "github"
  10417. }
  10418. ],
  10419. "time": "2023-08-14T13:18:12+00:00"
  10420. },
  10421. {
  10422. "name": "sebastian/complexity",
  10423. "version": "3.2.0",
  10424. "source": {
  10425. "type": "git",
  10426. "url": "https://github.com/sebastianbergmann/complexity.git",
  10427. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10428. },
  10429. "dist": {
  10430. "type": "zip",
  10431. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10432. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10433. "shasum": ""
  10434. },
  10435. "require": {
  10436. "nikic/php-parser": "^4.18 || ^5.0",
  10437. "php": ">=8.1"
  10438. },
  10439. "require-dev": {
  10440. "phpunit/phpunit": "^10.0"
  10441. },
  10442. "type": "library",
  10443. "extra": {
  10444. "branch-alias": {
  10445. "dev-main": "3.2-dev"
  10446. }
  10447. },
  10448. "autoload": {
  10449. "classmap": [
  10450. "src/"
  10451. ]
  10452. },
  10453. "notification-url": "https://packagist.org/downloads/",
  10454. "license": [
  10455. "BSD-3-Clause"
  10456. ],
  10457. "authors": [
  10458. {
  10459. "name": "Sebastian Bergmann",
  10460. "email": "sebastian@phpunit.de",
  10461. "role": "lead"
  10462. }
  10463. ],
  10464. "description": "Library for calculating the complexity of PHP code units",
  10465. "homepage": "https://github.com/sebastianbergmann/complexity",
  10466. "support": {
  10467. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10468. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10469. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10470. },
  10471. "funding": [
  10472. {
  10473. "url": "https://github.com/sebastianbergmann",
  10474. "type": "github"
  10475. }
  10476. ],
  10477. "time": "2023-12-21T08:37:17+00:00"
  10478. },
  10479. {
  10480. "name": "sebastian/diff",
  10481. "version": "5.1.0",
  10482. "source": {
  10483. "type": "git",
  10484. "url": "https://github.com/sebastianbergmann/diff.git",
  10485. "reference": "fbf413a49e54f6b9b17e12d900ac7f6101591b7f"
  10486. },
  10487. "dist": {
  10488. "type": "zip",
  10489. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/fbf413a49e54f6b9b17e12d900ac7f6101591b7f",
  10490. "reference": "fbf413a49e54f6b9b17e12d900ac7f6101591b7f",
  10491. "shasum": ""
  10492. },
  10493. "require": {
  10494. "php": ">=8.1"
  10495. },
  10496. "require-dev": {
  10497. "phpunit/phpunit": "^10.0",
  10498. "symfony/process": "^4.2 || ^5"
  10499. },
  10500. "type": "library",
  10501. "extra": {
  10502. "branch-alias": {
  10503. "dev-main": "5.1-dev"
  10504. }
  10505. },
  10506. "autoload": {
  10507. "classmap": [
  10508. "src/"
  10509. ]
  10510. },
  10511. "notification-url": "https://packagist.org/downloads/",
  10512. "license": [
  10513. "BSD-3-Clause"
  10514. ],
  10515. "authors": [
  10516. {
  10517. "name": "Sebastian Bergmann",
  10518. "email": "sebastian@phpunit.de"
  10519. },
  10520. {
  10521. "name": "Kore Nordmann",
  10522. "email": "mail@kore-nordmann.de"
  10523. }
  10524. ],
  10525. "description": "Diff implementation",
  10526. "homepage": "https://github.com/sebastianbergmann/diff",
  10527. "keywords": [
  10528. "diff",
  10529. "udiff",
  10530. "unidiff",
  10531. "unified diff"
  10532. ],
  10533. "support": {
  10534. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10535. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10536. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.0"
  10537. },
  10538. "funding": [
  10539. {
  10540. "url": "https://github.com/sebastianbergmann",
  10541. "type": "github"
  10542. }
  10543. ],
  10544. "time": "2023-12-22T10:55:06+00:00"
  10545. },
  10546. {
  10547. "name": "sebastian/environment",
  10548. "version": "6.0.1",
  10549. "source": {
  10550. "type": "git",
  10551. "url": "https://github.com/sebastianbergmann/environment.git",
  10552. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951"
  10553. },
  10554. "dist": {
  10555. "type": "zip",
  10556. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951",
  10557. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951",
  10558. "shasum": ""
  10559. },
  10560. "require": {
  10561. "php": ">=8.1"
  10562. },
  10563. "require-dev": {
  10564. "phpunit/phpunit": "^10.0"
  10565. },
  10566. "suggest": {
  10567. "ext-posix": "*"
  10568. },
  10569. "type": "library",
  10570. "extra": {
  10571. "branch-alias": {
  10572. "dev-main": "6.0-dev"
  10573. }
  10574. },
  10575. "autoload": {
  10576. "classmap": [
  10577. "src/"
  10578. ]
  10579. },
  10580. "notification-url": "https://packagist.org/downloads/",
  10581. "license": [
  10582. "BSD-3-Clause"
  10583. ],
  10584. "authors": [
  10585. {
  10586. "name": "Sebastian Bergmann",
  10587. "email": "sebastian@phpunit.de"
  10588. }
  10589. ],
  10590. "description": "Provides functionality to handle HHVM/PHP environments",
  10591. "homepage": "https://github.com/sebastianbergmann/environment",
  10592. "keywords": [
  10593. "Xdebug",
  10594. "environment",
  10595. "hhvm"
  10596. ],
  10597. "support": {
  10598. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10599. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10600. "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1"
  10601. },
  10602. "funding": [
  10603. {
  10604. "url": "https://github.com/sebastianbergmann",
  10605. "type": "github"
  10606. }
  10607. ],
  10608. "time": "2023-04-11T05:39:26+00:00"
  10609. },
  10610. {
  10611. "name": "sebastian/exporter",
  10612. "version": "5.1.1",
  10613. "source": {
  10614. "type": "git",
  10615. "url": "https://github.com/sebastianbergmann/exporter.git",
  10616. "reference": "64f51654862e0f5e318db7e9dcc2292c63cdbddc"
  10617. },
  10618. "dist": {
  10619. "type": "zip",
  10620. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/64f51654862e0f5e318db7e9dcc2292c63cdbddc",
  10621. "reference": "64f51654862e0f5e318db7e9dcc2292c63cdbddc",
  10622. "shasum": ""
  10623. },
  10624. "require": {
  10625. "ext-mbstring": "*",
  10626. "php": ">=8.1",
  10627. "sebastian/recursion-context": "^5.0"
  10628. },
  10629. "require-dev": {
  10630. "phpunit/phpunit": "^10.0"
  10631. },
  10632. "type": "library",
  10633. "extra": {
  10634. "branch-alias": {
  10635. "dev-main": "5.1-dev"
  10636. }
  10637. },
  10638. "autoload": {
  10639. "classmap": [
  10640. "src/"
  10641. ]
  10642. },
  10643. "notification-url": "https://packagist.org/downloads/",
  10644. "license": [
  10645. "BSD-3-Clause"
  10646. ],
  10647. "authors": [
  10648. {
  10649. "name": "Sebastian Bergmann",
  10650. "email": "sebastian@phpunit.de"
  10651. },
  10652. {
  10653. "name": "Jeff Welch",
  10654. "email": "whatthejeff@gmail.com"
  10655. },
  10656. {
  10657. "name": "Volker Dusch",
  10658. "email": "github@wallbash.com"
  10659. },
  10660. {
  10661. "name": "Adam Harvey",
  10662. "email": "aharvey@php.net"
  10663. },
  10664. {
  10665. "name": "Bernhard Schussek",
  10666. "email": "bschussek@gmail.com"
  10667. }
  10668. ],
  10669. "description": "Provides the functionality to export PHP variables for visualization",
  10670. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10671. "keywords": [
  10672. "export",
  10673. "exporter"
  10674. ],
  10675. "support": {
  10676. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10677. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10678. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.1"
  10679. },
  10680. "funding": [
  10681. {
  10682. "url": "https://github.com/sebastianbergmann",
  10683. "type": "github"
  10684. }
  10685. ],
  10686. "time": "2023-09-24T13:22:09+00:00"
  10687. },
  10688. {
  10689. "name": "sebastian/global-state",
  10690. "version": "6.0.1",
  10691. "source": {
  10692. "type": "git",
  10693. "url": "https://github.com/sebastianbergmann/global-state.git",
  10694. "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4"
  10695. },
  10696. "dist": {
  10697. "type": "zip",
  10698. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/7ea9ead78f6d380d2a667864c132c2f7b83055e4",
  10699. "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4",
  10700. "shasum": ""
  10701. },
  10702. "require": {
  10703. "php": ">=8.1",
  10704. "sebastian/object-reflector": "^3.0",
  10705. "sebastian/recursion-context": "^5.0"
  10706. },
  10707. "require-dev": {
  10708. "ext-dom": "*",
  10709. "phpunit/phpunit": "^10.0"
  10710. },
  10711. "type": "library",
  10712. "extra": {
  10713. "branch-alias": {
  10714. "dev-main": "6.0-dev"
  10715. }
  10716. },
  10717. "autoload": {
  10718. "classmap": [
  10719. "src/"
  10720. ]
  10721. },
  10722. "notification-url": "https://packagist.org/downloads/",
  10723. "license": [
  10724. "BSD-3-Clause"
  10725. ],
  10726. "authors": [
  10727. {
  10728. "name": "Sebastian Bergmann",
  10729. "email": "sebastian@phpunit.de"
  10730. }
  10731. ],
  10732. "description": "Snapshotting of global state",
  10733. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10734. "keywords": [
  10735. "global state"
  10736. ],
  10737. "support": {
  10738. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10739. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10740. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.1"
  10741. },
  10742. "funding": [
  10743. {
  10744. "url": "https://github.com/sebastianbergmann",
  10745. "type": "github"
  10746. }
  10747. ],
  10748. "time": "2023-07-19T07:19:23+00:00"
  10749. },
  10750. {
  10751. "name": "sebastian/lines-of-code",
  10752. "version": "2.0.2",
  10753. "source": {
  10754. "type": "git",
  10755. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10756. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10757. },
  10758. "dist": {
  10759. "type": "zip",
  10760. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10761. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10762. "shasum": ""
  10763. },
  10764. "require": {
  10765. "nikic/php-parser": "^4.18 || ^5.0",
  10766. "php": ">=8.1"
  10767. },
  10768. "require-dev": {
  10769. "phpunit/phpunit": "^10.0"
  10770. },
  10771. "type": "library",
  10772. "extra": {
  10773. "branch-alias": {
  10774. "dev-main": "2.0-dev"
  10775. }
  10776. },
  10777. "autoload": {
  10778. "classmap": [
  10779. "src/"
  10780. ]
  10781. },
  10782. "notification-url": "https://packagist.org/downloads/",
  10783. "license": [
  10784. "BSD-3-Clause"
  10785. ],
  10786. "authors": [
  10787. {
  10788. "name": "Sebastian Bergmann",
  10789. "email": "sebastian@phpunit.de",
  10790. "role": "lead"
  10791. }
  10792. ],
  10793. "description": "Library for counting the lines of code in PHP source code",
  10794. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10795. "support": {
  10796. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10797. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10798. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10799. },
  10800. "funding": [
  10801. {
  10802. "url": "https://github.com/sebastianbergmann",
  10803. "type": "github"
  10804. }
  10805. ],
  10806. "time": "2023-12-21T08:38:20+00:00"
  10807. },
  10808. {
  10809. "name": "sebastian/object-enumerator",
  10810. "version": "5.0.0",
  10811. "source": {
  10812. "type": "git",
  10813. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10814. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10815. },
  10816. "dist": {
  10817. "type": "zip",
  10818. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10819. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10820. "shasum": ""
  10821. },
  10822. "require": {
  10823. "php": ">=8.1",
  10824. "sebastian/object-reflector": "^3.0",
  10825. "sebastian/recursion-context": "^5.0"
  10826. },
  10827. "require-dev": {
  10828. "phpunit/phpunit": "^10.0"
  10829. },
  10830. "type": "library",
  10831. "extra": {
  10832. "branch-alias": {
  10833. "dev-main": "5.0-dev"
  10834. }
  10835. },
  10836. "autoload": {
  10837. "classmap": [
  10838. "src/"
  10839. ]
  10840. },
  10841. "notification-url": "https://packagist.org/downloads/",
  10842. "license": [
  10843. "BSD-3-Clause"
  10844. ],
  10845. "authors": [
  10846. {
  10847. "name": "Sebastian Bergmann",
  10848. "email": "sebastian@phpunit.de"
  10849. }
  10850. ],
  10851. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10852. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10853. "support": {
  10854. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10855. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10856. },
  10857. "funding": [
  10858. {
  10859. "url": "https://github.com/sebastianbergmann",
  10860. "type": "github"
  10861. }
  10862. ],
  10863. "time": "2023-02-03T07:08:32+00:00"
  10864. },
  10865. {
  10866. "name": "sebastian/object-reflector",
  10867. "version": "3.0.0",
  10868. "source": {
  10869. "type": "git",
  10870. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10871. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10872. },
  10873. "dist": {
  10874. "type": "zip",
  10875. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10876. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10877. "shasum": ""
  10878. },
  10879. "require": {
  10880. "php": ">=8.1"
  10881. },
  10882. "require-dev": {
  10883. "phpunit/phpunit": "^10.0"
  10884. },
  10885. "type": "library",
  10886. "extra": {
  10887. "branch-alias": {
  10888. "dev-main": "3.0-dev"
  10889. }
  10890. },
  10891. "autoload": {
  10892. "classmap": [
  10893. "src/"
  10894. ]
  10895. },
  10896. "notification-url": "https://packagist.org/downloads/",
  10897. "license": [
  10898. "BSD-3-Clause"
  10899. ],
  10900. "authors": [
  10901. {
  10902. "name": "Sebastian Bergmann",
  10903. "email": "sebastian@phpunit.de"
  10904. }
  10905. ],
  10906. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10907. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10908. "support": {
  10909. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10910. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10911. },
  10912. "funding": [
  10913. {
  10914. "url": "https://github.com/sebastianbergmann",
  10915. "type": "github"
  10916. }
  10917. ],
  10918. "time": "2023-02-03T07:06:18+00:00"
  10919. },
  10920. {
  10921. "name": "sebastian/recursion-context",
  10922. "version": "5.0.0",
  10923. "source": {
  10924. "type": "git",
  10925. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10926. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10927. },
  10928. "dist": {
  10929. "type": "zip",
  10930. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10931. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10932. "shasum": ""
  10933. },
  10934. "require": {
  10935. "php": ">=8.1"
  10936. },
  10937. "require-dev": {
  10938. "phpunit/phpunit": "^10.0"
  10939. },
  10940. "type": "library",
  10941. "extra": {
  10942. "branch-alias": {
  10943. "dev-main": "5.0-dev"
  10944. }
  10945. },
  10946. "autoload": {
  10947. "classmap": [
  10948. "src/"
  10949. ]
  10950. },
  10951. "notification-url": "https://packagist.org/downloads/",
  10952. "license": [
  10953. "BSD-3-Clause"
  10954. ],
  10955. "authors": [
  10956. {
  10957. "name": "Sebastian Bergmann",
  10958. "email": "sebastian@phpunit.de"
  10959. },
  10960. {
  10961. "name": "Jeff Welch",
  10962. "email": "whatthejeff@gmail.com"
  10963. },
  10964. {
  10965. "name": "Adam Harvey",
  10966. "email": "aharvey@php.net"
  10967. }
  10968. ],
  10969. "description": "Provides functionality to recursively process PHP variables",
  10970. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10971. "support": {
  10972. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10973. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10974. },
  10975. "funding": [
  10976. {
  10977. "url": "https://github.com/sebastianbergmann",
  10978. "type": "github"
  10979. }
  10980. ],
  10981. "time": "2023-02-03T07:05:40+00:00"
  10982. },
  10983. {
  10984. "name": "sebastian/type",
  10985. "version": "4.0.0",
  10986. "source": {
  10987. "type": "git",
  10988. "url": "https://github.com/sebastianbergmann/type.git",
  10989. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10990. },
  10991. "dist": {
  10992. "type": "zip",
  10993. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10994. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10995. "shasum": ""
  10996. },
  10997. "require": {
  10998. "php": ">=8.1"
  10999. },
  11000. "require-dev": {
  11001. "phpunit/phpunit": "^10.0"
  11002. },
  11003. "type": "library",
  11004. "extra": {
  11005. "branch-alias": {
  11006. "dev-main": "4.0-dev"
  11007. }
  11008. },
  11009. "autoload": {
  11010. "classmap": [
  11011. "src/"
  11012. ]
  11013. },
  11014. "notification-url": "https://packagist.org/downloads/",
  11015. "license": [
  11016. "BSD-3-Clause"
  11017. ],
  11018. "authors": [
  11019. {
  11020. "name": "Sebastian Bergmann",
  11021. "email": "sebastian@phpunit.de",
  11022. "role": "lead"
  11023. }
  11024. ],
  11025. "description": "Collection of value objects that represent the types of the PHP type system",
  11026. "homepage": "https://github.com/sebastianbergmann/type",
  11027. "support": {
  11028. "issues": "https://github.com/sebastianbergmann/type/issues",
  11029. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  11030. },
  11031. "funding": [
  11032. {
  11033. "url": "https://github.com/sebastianbergmann",
  11034. "type": "github"
  11035. }
  11036. ],
  11037. "time": "2023-02-03T07:10:45+00:00"
  11038. },
  11039. {
  11040. "name": "sebastian/version",
  11041. "version": "4.0.1",
  11042. "source": {
  11043. "type": "git",
  11044. "url": "https://github.com/sebastianbergmann/version.git",
  11045. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  11046. },
  11047. "dist": {
  11048. "type": "zip",
  11049. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11050. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11051. "shasum": ""
  11052. },
  11053. "require": {
  11054. "php": ">=8.1"
  11055. },
  11056. "type": "library",
  11057. "extra": {
  11058. "branch-alias": {
  11059. "dev-main": "4.0-dev"
  11060. }
  11061. },
  11062. "autoload": {
  11063. "classmap": [
  11064. "src/"
  11065. ]
  11066. },
  11067. "notification-url": "https://packagist.org/downloads/",
  11068. "license": [
  11069. "BSD-3-Clause"
  11070. ],
  11071. "authors": [
  11072. {
  11073. "name": "Sebastian Bergmann",
  11074. "email": "sebastian@phpunit.de",
  11075. "role": "lead"
  11076. }
  11077. ],
  11078. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11079. "homepage": "https://github.com/sebastianbergmann/version",
  11080. "support": {
  11081. "issues": "https://github.com/sebastianbergmann/version/issues",
  11082. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  11083. },
  11084. "funding": [
  11085. {
  11086. "url": "https://github.com/sebastianbergmann",
  11087. "type": "github"
  11088. }
  11089. ],
  11090. "time": "2023-02-07T11:34:05+00:00"
  11091. },
  11092. {
  11093. "name": "spatie/backtrace",
  11094. "version": "1.5.3",
  11095. "source": {
  11096. "type": "git",
  11097. "url": "https://github.com/spatie/backtrace.git",
  11098. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab"
  11099. },
  11100. "dist": {
  11101. "type": "zip",
  11102. "url": "https://api.github.com/repos/spatie/backtrace/zipball/483f76a82964a0431aa836b6ed0edde0c248e3ab",
  11103. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab",
  11104. "shasum": ""
  11105. },
  11106. "require": {
  11107. "php": "^7.3|^8.0"
  11108. },
  11109. "require-dev": {
  11110. "ext-json": "*",
  11111. "phpunit/phpunit": "^9.3",
  11112. "spatie/phpunit-snapshot-assertions": "^4.2",
  11113. "symfony/var-dumper": "^5.1"
  11114. },
  11115. "type": "library",
  11116. "autoload": {
  11117. "psr-4": {
  11118. "Spatie\\Backtrace\\": "src"
  11119. }
  11120. },
  11121. "notification-url": "https://packagist.org/downloads/",
  11122. "license": [
  11123. "MIT"
  11124. ],
  11125. "authors": [
  11126. {
  11127. "name": "Freek Van de Herten",
  11128. "email": "freek@spatie.be",
  11129. "homepage": "https://spatie.be",
  11130. "role": "Developer"
  11131. }
  11132. ],
  11133. "description": "A better backtrace",
  11134. "homepage": "https://github.com/spatie/backtrace",
  11135. "keywords": [
  11136. "Backtrace",
  11137. "spatie"
  11138. ],
  11139. "support": {
  11140. "source": "https://github.com/spatie/backtrace/tree/1.5.3"
  11141. },
  11142. "funding": [
  11143. {
  11144. "url": "https://github.com/sponsors/spatie",
  11145. "type": "github"
  11146. },
  11147. {
  11148. "url": "https://spatie.be/open-source/support-us",
  11149. "type": "other"
  11150. }
  11151. ],
  11152. "time": "2023-06-28T12:59:17+00:00"
  11153. },
  11154. {
  11155. "name": "spatie/flare-client-php",
  11156. "version": "1.4.4",
  11157. "source": {
  11158. "type": "git",
  11159. "url": "https://github.com/spatie/flare-client-php.git",
  11160. "reference": "17082e780752d346c2db12ef5d6bee8e835e399c"
  11161. },
  11162. "dist": {
  11163. "type": "zip",
  11164. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/17082e780752d346c2db12ef5d6bee8e835e399c",
  11165. "reference": "17082e780752d346c2db12ef5d6bee8e835e399c",
  11166. "shasum": ""
  11167. },
  11168. "require": {
  11169. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  11170. "php": "^8.0",
  11171. "spatie/backtrace": "^1.5.2",
  11172. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  11173. "symfony/mime": "^5.2|^6.0|^7.0",
  11174. "symfony/process": "^5.2|^6.0|^7.0",
  11175. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  11176. },
  11177. "require-dev": {
  11178. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  11179. "pestphp/pest": "^1.20|^2.0",
  11180. "phpstan/extension-installer": "^1.1",
  11181. "phpstan/phpstan-deprecation-rules": "^1.0",
  11182. "phpstan/phpstan-phpunit": "^1.0",
  11183. "spatie/phpunit-snapshot-assertions": "^4.0|^5.0"
  11184. },
  11185. "type": "library",
  11186. "extra": {
  11187. "branch-alias": {
  11188. "dev-main": "1.3.x-dev"
  11189. }
  11190. },
  11191. "autoload": {
  11192. "files": [
  11193. "src/helpers.php"
  11194. ],
  11195. "psr-4": {
  11196. "Spatie\\FlareClient\\": "src"
  11197. }
  11198. },
  11199. "notification-url": "https://packagist.org/downloads/",
  11200. "license": [
  11201. "MIT"
  11202. ],
  11203. "description": "Send PHP errors to Flare",
  11204. "homepage": "https://github.com/spatie/flare-client-php",
  11205. "keywords": [
  11206. "exception",
  11207. "flare",
  11208. "reporting",
  11209. "spatie"
  11210. ],
  11211. "support": {
  11212. "issues": "https://github.com/spatie/flare-client-php/issues",
  11213. "source": "https://github.com/spatie/flare-client-php/tree/1.4.4"
  11214. },
  11215. "funding": [
  11216. {
  11217. "url": "https://github.com/spatie",
  11218. "type": "github"
  11219. }
  11220. ],
  11221. "time": "2024-01-31T14:18:45+00:00"
  11222. },
  11223. {
  11224. "name": "spatie/ignition",
  11225. "version": "1.12.0",
  11226. "source": {
  11227. "type": "git",
  11228. "url": "https://github.com/spatie/ignition.git",
  11229. "reference": "5b6f801c605a593106b623e45ca41496a6e7d56d"
  11230. },
  11231. "dist": {
  11232. "type": "zip",
  11233. "url": "https://api.github.com/repos/spatie/ignition/zipball/5b6f801c605a593106b623e45ca41496a6e7d56d",
  11234. "reference": "5b6f801c605a593106b623e45ca41496a6e7d56d",
  11235. "shasum": ""
  11236. },
  11237. "require": {
  11238. "ext-json": "*",
  11239. "ext-mbstring": "*",
  11240. "php": "^8.0",
  11241. "spatie/backtrace": "^1.5.3",
  11242. "spatie/flare-client-php": "^1.4.0",
  11243. "symfony/console": "^5.4|^6.0|^7.0",
  11244. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  11245. },
  11246. "require-dev": {
  11247. "illuminate/cache": "^9.52|^10.0|^11.0",
  11248. "mockery/mockery": "^1.4",
  11249. "pestphp/pest": "^1.20|^2.0",
  11250. "phpstan/extension-installer": "^1.1",
  11251. "phpstan/phpstan-deprecation-rules": "^1.0",
  11252. "phpstan/phpstan-phpunit": "^1.0",
  11253. "psr/simple-cache-implementation": "*",
  11254. "symfony/cache": "^5.4|^6.0|^7.0",
  11255. "symfony/process": "^5.4|^6.0|^7.0",
  11256. "vlucas/phpdotenv": "^5.5"
  11257. },
  11258. "suggest": {
  11259. "openai-php/client": "Require get solutions from OpenAI",
  11260. "simple-cache-implementation": "To cache solutions from OpenAI"
  11261. },
  11262. "type": "library",
  11263. "extra": {
  11264. "branch-alias": {
  11265. "dev-main": "1.5.x-dev"
  11266. }
  11267. },
  11268. "autoload": {
  11269. "psr-4": {
  11270. "Spatie\\Ignition\\": "src"
  11271. }
  11272. },
  11273. "notification-url": "https://packagist.org/downloads/",
  11274. "license": [
  11275. "MIT"
  11276. ],
  11277. "authors": [
  11278. {
  11279. "name": "Spatie",
  11280. "email": "info@spatie.be",
  11281. "role": "Developer"
  11282. }
  11283. ],
  11284. "description": "A beautiful error page for PHP applications.",
  11285. "homepage": "https://flareapp.io/ignition",
  11286. "keywords": [
  11287. "error",
  11288. "flare",
  11289. "laravel",
  11290. "page"
  11291. ],
  11292. "support": {
  11293. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  11294. "forum": "https://twitter.com/flareappio",
  11295. "issues": "https://github.com/spatie/ignition/issues",
  11296. "source": "https://github.com/spatie/ignition"
  11297. },
  11298. "funding": [
  11299. {
  11300. "url": "https://github.com/spatie",
  11301. "type": "github"
  11302. }
  11303. ],
  11304. "time": "2024-01-03T15:49:39+00:00"
  11305. },
  11306. {
  11307. "name": "spatie/laravel-ignition",
  11308. "version": "2.4.2",
  11309. "source": {
  11310. "type": "git",
  11311. "url": "https://github.com/spatie/laravel-ignition.git",
  11312. "reference": "351504f4570e32908839fc5a2dc53bf77d02f85e"
  11313. },
  11314. "dist": {
  11315. "type": "zip",
  11316. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/351504f4570e32908839fc5a2dc53bf77d02f85e",
  11317. "reference": "351504f4570e32908839fc5a2dc53bf77d02f85e",
  11318. "shasum": ""
  11319. },
  11320. "require": {
  11321. "ext-curl": "*",
  11322. "ext-json": "*",
  11323. "ext-mbstring": "*",
  11324. "illuminate/support": "^10.0|^11.0",
  11325. "php": "^8.1",
  11326. "spatie/flare-client-php": "^1.3.5",
  11327. "spatie/ignition": "^1.9",
  11328. "symfony/console": "^6.2.3|^7.0",
  11329. "symfony/var-dumper": "^6.2.3|^7.0"
  11330. },
  11331. "require-dev": {
  11332. "livewire/livewire": "^2.11|^3.3.5",
  11333. "mockery/mockery": "^1.5.1",
  11334. "openai-php/client": "^0.8.1",
  11335. "orchestra/testbench": "^8.0|^9.0",
  11336. "pestphp/pest": "^2.30",
  11337. "phpstan/extension-installer": "^1.2",
  11338. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  11339. "phpstan/phpstan-phpunit": "^1.3.3",
  11340. "vlucas/phpdotenv": "^5.5"
  11341. },
  11342. "suggest": {
  11343. "openai-php/client": "Require get solutions from OpenAI",
  11344. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  11345. },
  11346. "type": "library",
  11347. "extra": {
  11348. "laravel": {
  11349. "providers": [
  11350. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  11351. ],
  11352. "aliases": {
  11353. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  11354. }
  11355. }
  11356. },
  11357. "autoload": {
  11358. "files": [
  11359. "src/helpers.php"
  11360. ],
  11361. "psr-4": {
  11362. "Spatie\\LaravelIgnition\\": "src"
  11363. }
  11364. },
  11365. "notification-url": "https://packagist.org/downloads/",
  11366. "license": [
  11367. "MIT"
  11368. ],
  11369. "authors": [
  11370. {
  11371. "name": "Spatie",
  11372. "email": "info@spatie.be",
  11373. "role": "Developer"
  11374. }
  11375. ],
  11376. "description": "A beautiful error page for Laravel applications.",
  11377. "homepage": "https://flareapp.io/ignition",
  11378. "keywords": [
  11379. "error",
  11380. "flare",
  11381. "laravel",
  11382. "page"
  11383. ],
  11384. "support": {
  11385. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  11386. "forum": "https://twitter.com/flareappio",
  11387. "issues": "https://github.com/spatie/laravel-ignition/issues",
  11388. "source": "https://github.com/spatie/laravel-ignition"
  11389. },
  11390. "funding": [
  11391. {
  11392. "url": "https://github.com/spatie",
  11393. "type": "github"
  11394. }
  11395. ],
  11396. "time": "2024-02-09T16:08:40+00:00"
  11397. },
  11398. {
  11399. "name": "symfony/yaml",
  11400. "version": "v7.0.3",
  11401. "source": {
  11402. "type": "git",
  11403. "url": "https://github.com/symfony/yaml.git",
  11404. "reference": "2d4fca631c00700597e9442a0b2451ce234513d3"
  11405. },
  11406. "dist": {
  11407. "type": "zip",
  11408. "url": "https://api.github.com/repos/symfony/yaml/zipball/2d4fca631c00700597e9442a0b2451ce234513d3",
  11409. "reference": "2d4fca631c00700597e9442a0b2451ce234513d3",
  11410. "shasum": ""
  11411. },
  11412. "require": {
  11413. "php": ">=8.2",
  11414. "symfony/polyfill-ctype": "^1.8"
  11415. },
  11416. "conflict": {
  11417. "symfony/console": "<6.4"
  11418. },
  11419. "require-dev": {
  11420. "symfony/console": "^6.4|^7.0"
  11421. },
  11422. "bin": [
  11423. "Resources/bin/yaml-lint"
  11424. ],
  11425. "type": "library",
  11426. "autoload": {
  11427. "psr-4": {
  11428. "Symfony\\Component\\Yaml\\": ""
  11429. },
  11430. "exclude-from-classmap": [
  11431. "/Tests/"
  11432. ]
  11433. },
  11434. "notification-url": "https://packagist.org/downloads/",
  11435. "license": [
  11436. "MIT"
  11437. ],
  11438. "authors": [
  11439. {
  11440. "name": "Fabien Potencier",
  11441. "email": "fabien@symfony.com"
  11442. },
  11443. {
  11444. "name": "Symfony Community",
  11445. "homepage": "https://symfony.com/contributors"
  11446. }
  11447. ],
  11448. "description": "Loads and dumps YAML files",
  11449. "homepage": "https://symfony.com",
  11450. "support": {
  11451. "source": "https://github.com/symfony/yaml/tree/v7.0.3"
  11452. },
  11453. "funding": [
  11454. {
  11455. "url": "https://symfony.com/sponsor",
  11456. "type": "custom"
  11457. },
  11458. {
  11459. "url": "https://github.com/fabpot",
  11460. "type": "github"
  11461. },
  11462. {
  11463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11464. "type": "tidelift"
  11465. }
  11466. ],
  11467. "time": "2024-01-23T15:02:46+00:00"
  11468. },
  11469. {
  11470. "name": "theseer/tokenizer",
  11471. "version": "1.2.2",
  11472. "source": {
  11473. "type": "git",
  11474. "url": "https://github.com/theseer/tokenizer.git",
  11475. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96"
  11476. },
  11477. "dist": {
  11478. "type": "zip",
  11479. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  11480. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  11481. "shasum": ""
  11482. },
  11483. "require": {
  11484. "ext-dom": "*",
  11485. "ext-tokenizer": "*",
  11486. "ext-xmlwriter": "*",
  11487. "php": "^7.2 || ^8.0"
  11488. },
  11489. "type": "library",
  11490. "autoload": {
  11491. "classmap": [
  11492. "src/"
  11493. ]
  11494. },
  11495. "notification-url": "https://packagist.org/downloads/",
  11496. "license": [
  11497. "BSD-3-Clause"
  11498. ],
  11499. "authors": [
  11500. {
  11501. "name": "Arne Blankerts",
  11502. "email": "arne@blankerts.de",
  11503. "role": "Developer"
  11504. }
  11505. ],
  11506. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11507. "support": {
  11508. "issues": "https://github.com/theseer/tokenizer/issues",
  11509. "source": "https://github.com/theseer/tokenizer/tree/1.2.2"
  11510. },
  11511. "funding": [
  11512. {
  11513. "url": "https://github.com/theseer",
  11514. "type": "github"
  11515. }
  11516. ],
  11517. "time": "2023-11-20T00:12:19+00:00"
  11518. }
  11519. ],
  11520. "aliases": [],
  11521. "minimum-stability": "stable",
  11522. "stability-flags": [],
  11523. "prefer-stable": true,
  11524. "prefer-lowest": false,
  11525. "platform": {
  11526. "php": "^8.2",
  11527. "ext-bcmath": "*",
  11528. "ext-intl": "*"
  11529. },
  11530. "platform-dev": [],
  11531. "plugin-api-version": "2.6.0"
  11532. }