You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.lock 395KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001
  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": "ef54c369214df605df67b71ff0e8cc11",
  8. "packages": [
  9. {
  10. "name": "akaunting/laravel-money",
  11. "version": "4.0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/akaunting/laravel-money.git",
  15. "reference": "df99d0f5d415490ef7e79362c3b694e8cc8af903"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/df99d0f5d415490ef7e79362c3b694e8cc8af903",
  20. "reference": "df99d0f5d415490ef7e79362c3b694e8cc8af903",
  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/4.0.1"
  75. },
  76. "time": "2023-03-16T14:39:27+00:00"
  77. },
  78. {
  79. "name": "andrewdwallo/filament-companies",
  80. "version": "v2.0.6",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "5bcb3f106649c9b71ac54d344fbc96c3f5d53e0b"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/5bcb3f106649c9b71ac54d344fbc96c3f5d53e0b",
  89. "reference": "5bcb3f106649c9b71ac54d344fbc96c3f5d53e0b",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "ext-json": "*",
  94. "filament/filament": "^2.16",
  95. "illuminate/console": "^8.6|^9.0|^10.0",
  96. "illuminate/contracts": "^8.6|^9.0|^10.0",
  97. "illuminate/support": "^8.6|^9.0|^10.0",
  98. "laravel/fortify": "^1.15",
  99. "laravel/socialite": "^5.6",
  100. "matomo/device-detector": "^6.1",
  101. "php": "^8.0"
  102. },
  103. "require-dev": {
  104. "laravel/sanctum": "^3.0",
  105. "mockery/mockery": "^1.0",
  106. "orchestra/testbench": "^7.0|^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/v2.0.6"
  148. },
  149. "time": "2023-07-30T22:10:48+00:00"
  150. },
  151. {
  152. "name": "andrewdwallo/filament-selectify",
  153. "version": "v1.0.0",
  154. "source": {
  155. "type": "git",
  156. "url": "https://github.com/andrewdwallo/filament-selectify.git",
  157. "reference": "48156f6b0313c3fd96bf0594fe3cd564c8b8181c"
  158. },
  159. "dist": {
  160. "type": "zip",
  161. "url": "https://api.github.com/repos/andrewdwallo/filament-selectify/zipball/48156f6b0313c3fd96bf0594fe3cd564c8b8181c",
  162. "reference": "48156f6b0313c3fd96bf0594fe3cd564c8b8181c",
  163. "shasum": ""
  164. },
  165. "require": {
  166. "filament/forms": "^2.0",
  167. "illuminate/contracts": "^8.6|^9.0|^10.0",
  168. "php": "^8.0",
  169. "spatie/laravel-package-tools": "^1.14.0"
  170. },
  171. "require-dev": {
  172. "laravel/pint": "^1.0",
  173. "nunomaduro/collision": "^7.9",
  174. "orchestra/testbench": "^8.0",
  175. "pestphp/pest": "^2.0",
  176. "pestphp/pest-plugin-arch": "^2.0",
  177. "pestphp/pest-plugin-laravel": "^2.0"
  178. },
  179. "type": "library",
  180. "extra": {
  181. "laravel": {
  182. "providers": [
  183. "Wallo\\FilamentSelectify\\FilamentSelectifyServiceProvider"
  184. ]
  185. }
  186. },
  187. "autoload": {
  188. "psr-4": {
  189. "Wallo\\FilamentSelectify\\": "src/"
  190. }
  191. },
  192. "notification-url": "https://packagist.org/downloads/",
  193. "license": [
  194. "MIT"
  195. ],
  196. "authors": [
  197. {
  198. "name": "Andrew Wallo",
  199. "email": "andrewdwallo@gmail.com",
  200. "role": "Developer"
  201. }
  202. ],
  203. "description": "This is my package filament-selectify",
  204. "homepage": "https://github.com/andrewdwallo/filament-selectify",
  205. "keywords": [
  206. "andrewdwallo",
  207. "filament-selectify",
  208. "laravel"
  209. ],
  210. "support": {
  211. "issues": "https://github.com/andrewdwallo/filament-selectify/issues",
  212. "source": "https://github.com/andrewdwallo/filament-selectify/tree/v1.0.0"
  213. },
  214. "time": "2023-07-01T03:00:10+00:00"
  215. },
  216. {
  217. "name": "bacon/bacon-qr-code",
  218. "version": "2.0.8",
  219. "source": {
  220. "type": "git",
  221. "url": "https://github.com/Bacon/BaconQrCode.git",
  222. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  223. },
  224. "dist": {
  225. "type": "zip",
  226. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  227. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  228. "shasum": ""
  229. },
  230. "require": {
  231. "dasprid/enum": "^1.0.3",
  232. "ext-iconv": "*",
  233. "php": "^7.1 || ^8.0"
  234. },
  235. "require-dev": {
  236. "phly/keep-a-changelog": "^2.1",
  237. "phpunit/phpunit": "^7 | ^8 | ^9",
  238. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  239. "squizlabs/php_codesniffer": "^3.4"
  240. },
  241. "suggest": {
  242. "ext-imagick": "to generate QR code images"
  243. },
  244. "type": "library",
  245. "autoload": {
  246. "psr-4": {
  247. "BaconQrCode\\": "src/"
  248. }
  249. },
  250. "notification-url": "https://packagist.org/downloads/",
  251. "license": [
  252. "BSD-2-Clause"
  253. ],
  254. "authors": [
  255. {
  256. "name": "Ben Scholzen 'DASPRiD'",
  257. "email": "mail@dasprids.de",
  258. "homepage": "https://dasprids.de/",
  259. "role": "Developer"
  260. }
  261. ],
  262. "description": "BaconQrCode is a QR code generator for PHP.",
  263. "homepage": "https://github.com/Bacon/BaconQrCode",
  264. "support": {
  265. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  266. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  267. },
  268. "time": "2022-12-07T17:46:57+00:00"
  269. },
  270. {
  271. "name": "blade-ui-kit/blade-heroicons",
  272. "version": "1.4.0",
  273. "source": {
  274. "type": "git",
  275. "url": "https://github.com/blade-ui-kit/blade-heroicons.git",
  276. "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b"
  277. },
  278. "dist": {
  279. "type": "zip",
  280. "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/dea08e8308d9bad9ebff1bc482d5985dbaacc91b",
  281. "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b",
  282. "shasum": ""
  283. },
  284. "require": {
  285. "blade-ui-kit/blade-icons": "^1.1",
  286. "illuminate/support": "^8.0|^9.0|^10.0",
  287. "php": "^7.4|^8.0"
  288. },
  289. "require-dev": {
  290. "orchestra/testbench": "^6.0|^7.0|^8.0",
  291. "phpunit/phpunit": "^9.0"
  292. },
  293. "type": "library",
  294. "extra": {
  295. "laravel": {
  296. "providers": [
  297. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  298. ]
  299. }
  300. },
  301. "autoload": {
  302. "psr-4": {
  303. "BladeUI\\Heroicons\\": "src"
  304. }
  305. },
  306. "notification-url": "https://packagist.org/downloads/",
  307. "license": [
  308. "MIT"
  309. ],
  310. "authors": [
  311. {
  312. "name": "Dries Vints",
  313. "homepage": "https://driesvints.com"
  314. }
  315. ],
  316. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  317. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  318. "keywords": [
  319. "Heroicons",
  320. "blade",
  321. "laravel"
  322. ],
  323. "support": {
  324. "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues",
  325. "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/1.4.0"
  326. },
  327. "funding": [
  328. {
  329. "url": "https://github.com/caneco",
  330. "type": "github"
  331. },
  332. {
  333. "url": "https://github.com/driesvints",
  334. "type": "github"
  335. }
  336. ],
  337. "time": "2023-01-25T17:57:58+00:00"
  338. },
  339. {
  340. "name": "blade-ui-kit/blade-icons",
  341. "version": "1.5.2",
  342. "source": {
  343. "type": "git",
  344. "url": "https://github.com/blade-ui-kit/blade-icons.git",
  345. "reference": "4d6b6b2548b1994a777211a985e18691701891e4"
  346. },
  347. "dist": {
  348. "type": "zip",
  349. "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/4d6b6b2548b1994a777211a985e18691701891e4",
  350. "reference": "4d6b6b2548b1994a777211a985e18691701891e4",
  351. "shasum": ""
  352. },
  353. "require": {
  354. "illuminate/contracts": "^8.0|^9.0|^10.0",
  355. "illuminate/filesystem": "^8.0|^9.0|^10.0",
  356. "illuminate/support": "^8.0|^9.0|^10.0",
  357. "illuminate/view": "^8.0|^9.0|^10.0",
  358. "php": "^7.4|^8.0",
  359. "symfony/console": "^5.3|^6.0",
  360. "symfony/finder": "^5.3|^6.0"
  361. },
  362. "require-dev": {
  363. "mockery/mockery": "^1.3",
  364. "orchestra/testbench": "^6.0|^7.0|^8.0",
  365. "phpunit/phpunit": "^9.0"
  366. },
  367. "bin": [
  368. "bin/blade-icons-generate"
  369. ],
  370. "type": "library",
  371. "extra": {
  372. "laravel": {
  373. "providers": [
  374. "BladeUI\\Icons\\BladeIconsServiceProvider"
  375. ]
  376. }
  377. },
  378. "autoload": {
  379. "files": [
  380. "src/helpers.php"
  381. ],
  382. "psr-4": {
  383. "BladeUI\\Icons\\": "src"
  384. }
  385. },
  386. "notification-url": "https://packagist.org/downloads/",
  387. "license": [
  388. "MIT"
  389. ],
  390. "authors": [
  391. {
  392. "name": "Dries Vints",
  393. "homepage": "https://driesvints.com"
  394. }
  395. ],
  396. "description": "A package to easily make use of icons in your Laravel Blade views.",
  397. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  398. "keywords": [
  399. "blade",
  400. "icons",
  401. "laravel",
  402. "svg"
  403. ],
  404. "support": {
  405. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  406. "source": "https://github.com/blade-ui-kit/blade-icons"
  407. },
  408. "funding": [
  409. {
  410. "url": "https://github.com/sponsors/driesvints",
  411. "type": "github"
  412. }
  413. ],
  414. "time": "2023-06-09T15:47:26+00:00"
  415. },
  416. {
  417. "name": "brick/math",
  418. "version": "0.11.0",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/brick/math.git",
  422. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  427. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  428. "shasum": ""
  429. },
  430. "require": {
  431. "php": "^8.0"
  432. },
  433. "require-dev": {
  434. "php-coveralls/php-coveralls": "^2.2",
  435. "phpunit/phpunit": "^9.0",
  436. "vimeo/psalm": "5.0.0"
  437. },
  438. "type": "library",
  439. "autoload": {
  440. "psr-4": {
  441. "Brick\\Math\\": "src/"
  442. }
  443. },
  444. "notification-url": "https://packagist.org/downloads/",
  445. "license": [
  446. "MIT"
  447. ],
  448. "description": "Arbitrary-precision arithmetic library",
  449. "keywords": [
  450. "Arbitrary-precision",
  451. "BigInteger",
  452. "BigRational",
  453. "arithmetic",
  454. "bigdecimal",
  455. "bignum",
  456. "brick",
  457. "math"
  458. ],
  459. "support": {
  460. "issues": "https://github.com/brick/math/issues",
  461. "source": "https://github.com/brick/math/tree/0.11.0"
  462. },
  463. "funding": [
  464. {
  465. "url": "https://github.com/BenMorel",
  466. "type": "github"
  467. }
  468. ],
  469. "time": "2023-01-15T23:15:59+00:00"
  470. },
  471. {
  472. "name": "danharrin/date-format-converter",
  473. "version": "v0.3.0",
  474. "source": {
  475. "type": "git",
  476. "url": "https://github.com/danharrin/date-format-converter.git",
  477. "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2"
  478. },
  479. "dist": {
  480. "type": "zip",
  481. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
  482. "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
  483. "shasum": ""
  484. },
  485. "require": {
  486. "php": "^7.2|^8.0"
  487. },
  488. "type": "library",
  489. "autoload": {
  490. "files": [
  491. "src/helpers.php",
  492. "src/standards.php"
  493. ],
  494. "psr-4": {
  495. "DanHarrin\\DateFormatConverter\\": "src/"
  496. }
  497. },
  498. "notification-url": "https://packagist.org/downloads/",
  499. "license": [
  500. "MIT"
  501. ],
  502. "authors": [
  503. {
  504. "name": "Dan Harrin",
  505. "email": "dan@danharrin.com"
  506. }
  507. ],
  508. "description": "Convert token-based date formats between standards.",
  509. "homepage": "https://github.com/danharrin/date-format-converter",
  510. "support": {
  511. "issues": "https://github.com/danharrin/date-format-converter/issues",
  512. "source": "https://github.com/danharrin/date-format-converter"
  513. },
  514. "funding": [
  515. {
  516. "url": "https://github.com/danharrin",
  517. "type": "github"
  518. }
  519. ],
  520. "time": "2022-09-29T07:48:20+00:00"
  521. },
  522. {
  523. "name": "danharrin/livewire-rate-limiting",
  524. "version": "v1.1.0",
  525. "source": {
  526. "type": "git",
  527. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  528. "reference": "a55996683cabf2e93893280d602191243b3b80b8"
  529. },
  530. "dist": {
  531. "type": "zip",
  532. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/a55996683cabf2e93893280d602191243b3b80b8",
  533. "reference": "a55996683cabf2e93893280d602191243b3b80b8",
  534. "shasum": ""
  535. },
  536. "require": {
  537. "illuminate/support": "^9.0|^10.0",
  538. "php": "^8.0"
  539. },
  540. "require-dev": {
  541. "livewire/livewire": "^2.3",
  542. "orchestra/testbench": "^7.0|^8.0",
  543. "phpunit/phpunit": "^9.0|^10.0"
  544. },
  545. "type": "library",
  546. "autoload": {
  547. "psr-4": {
  548. "DanHarrin\\LivewireRateLimiting\\": "src"
  549. }
  550. },
  551. "notification-url": "https://packagist.org/downloads/",
  552. "license": [
  553. "MIT"
  554. ],
  555. "authors": [
  556. {
  557. "name": "Dan Harrin",
  558. "email": "dan@danharrin.com"
  559. }
  560. ],
  561. "description": "Apply rate limiters to Laravel Livewire actions.",
  562. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  563. "support": {
  564. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  565. "source": "https://github.com/danharrin/livewire-rate-limiting"
  566. },
  567. "funding": [
  568. {
  569. "url": "https://github.com/danharrin",
  570. "type": "github"
  571. }
  572. ],
  573. "time": "2023-03-12T12:17:29+00:00"
  574. },
  575. {
  576. "name": "dasprid/enum",
  577. "version": "1.0.4",
  578. "source": {
  579. "type": "git",
  580. "url": "https://github.com/DASPRiD/Enum.git",
  581. "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f"
  582. },
  583. "dist": {
  584. "type": "zip",
  585. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8e6b6ea76eabbf19ea2bf5b67b98e1860474012f",
  586. "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f",
  587. "shasum": ""
  588. },
  589. "require": {
  590. "php": ">=7.1 <9.0"
  591. },
  592. "require-dev": {
  593. "phpunit/phpunit": "^7 | ^8 | ^9",
  594. "squizlabs/php_codesniffer": "*"
  595. },
  596. "type": "library",
  597. "autoload": {
  598. "psr-4": {
  599. "DASPRiD\\Enum\\": "src/"
  600. }
  601. },
  602. "notification-url": "https://packagist.org/downloads/",
  603. "license": [
  604. "BSD-2-Clause"
  605. ],
  606. "authors": [
  607. {
  608. "name": "Ben Scholzen 'DASPRiD'",
  609. "email": "mail@dasprids.de",
  610. "homepage": "https://dasprids.de/",
  611. "role": "Developer"
  612. }
  613. ],
  614. "description": "PHP 7.1 enum implementation",
  615. "keywords": [
  616. "enum",
  617. "map"
  618. ],
  619. "support": {
  620. "issues": "https://github.com/DASPRiD/Enum/issues",
  621. "source": "https://github.com/DASPRiD/Enum/tree/1.0.4"
  622. },
  623. "time": "2023-03-01T18:44:03+00:00"
  624. },
  625. {
  626. "name": "dflydev/dot-access-data",
  627. "version": "v3.0.2",
  628. "source": {
  629. "type": "git",
  630. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  631. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  632. },
  633. "dist": {
  634. "type": "zip",
  635. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  636. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  637. "shasum": ""
  638. },
  639. "require": {
  640. "php": "^7.1 || ^8.0"
  641. },
  642. "require-dev": {
  643. "phpstan/phpstan": "^0.12.42",
  644. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  645. "scrutinizer/ocular": "1.6.0",
  646. "squizlabs/php_codesniffer": "^3.5",
  647. "vimeo/psalm": "^4.0.0"
  648. },
  649. "type": "library",
  650. "extra": {
  651. "branch-alias": {
  652. "dev-main": "3.x-dev"
  653. }
  654. },
  655. "autoload": {
  656. "psr-4": {
  657. "Dflydev\\DotAccessData\\": "src/"
  658. }
  659. },
  660. "notification-url": "https://packagist.org/downloads/",
  661. "license": [
  662. "MIT"
  663. ],
  664. "authors": [
  665. {
  666. "name": "Dragonfly Development Inc.",
  667. "email": "info@dflydev.com",
  668. "homepage": "http://dflydev.com"
  669. },
  670. {
  671. "name": "Beau Simensen",
  672. "email": "beau@dflydev.com",
  673. "homepage": "http://beausimensen.com"
  674. },
  675. {
  676. "name": "Carlos Frutos",
  677. "email": "carlos@kiwing.it",
  678. "homepage": "https://github.com/cfrutos"
  679. },
  680. {
  681. "name": "Colin O'Dell",
  682. "email": "colinodell@gmail.com",
  683. "homepage": "https://www.colinodell.com"
  684. }
  685. ],
  686. "description": "Given a deep data structure, access data by dot notation.",
  687. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  688. "keywords": [
  689. "access",
  690. "data",
  691. "dot",
  692. "notation"
  693. ],
  694. "support": {
  695. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  696. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  697. },
  698. "time": "2022-10-27T11:44:00+00:00"
  699. },
  700. {
  701. "name": "doctrine/inflector",
  702. "version": "2.0.8",
  703. "source": {
  704. "type": "git",
  705. "url": "https://github.com/doctrine/inflector.git",
  706. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  707. },
  708. "dist": {
  709. "type": "zip",
  710. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  711. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  712. "shasum": ""
  713. },
  714. "require": {
  715. "php": "^7.2 || ^8.0"
  716. },
  717. "require-dev": {
  718. "doctrine/coding-standard": "^11.0",
  719. "phpstan/phpstan": "^1.8",
  720. "phpstan/phpstan-phpunit": "^1.1",
  721. "phpstan/phpstan-strict-rules": "^1.3",
  722. "phpunit/phpunit": "^8.5 || ^9.5",
  723. "vimeo/psalm": "^4.25 || ^5.4"
  724. },
  725. "type": "library",
  726. "autoload": {
  727. "psr-4": {
  728. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  729. }
  730. },
  731. "notification-url": "https://packagist.org/downloads/",
  732. "license": [
  733. "MIT"
  734. ],
  735. "authors": [
  736. {
  737. "name": "Guilherme Blanco",
  738. "email": "guilhermeblanco@gmail.com"
  739. },
  740. {
  741. "name": "Roman Borschel",
  742. "email": "roman@code-factory.org"
  743. },
  744. {
  745. "name": "Benjamin Eberlei",
  746. "email": "kontakt@beberlei.de"
  747. },
  748. {
  749. "name": "Jonathan Wage",
  750. "email": "jonwage@gmail.com"
  751. },
  752. {
  753. "name": "Johannes Schmitt",
  754. "email": "schmittjoh@gmail.com"
  755. }
  756. ],
  757. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  758. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  759. "keywords": [
  760. "inflection",
  761. "inflector",
  762. "lowercase",
  763. "manipulation",
  764. "php",
  765. "plural",
  766. "singular",
  767. "strings",
  768. "uppercase",
  769. "words"
  770. ],
  771. "support": {
  772. "issues": "https://github.com/doctrine/inflector/issues",
  773. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  774. },
  775. "funding": [
  776. {
  777. "url": "https://www.doctrine-project.org/sponsorship.html",
  778. "type": "custom"
  779. },
  780. {
  781. "url": "https://www.patreon.com/phpdoctrine",
  782. "type": "patreon"
  783. },
  784. {
  785. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  786. "type": "tidelift"
  787. }
  788. ],
  789. "time": "2023-06-16T13:40:37+00:00"
  790. },
  791. {
  792. "name": "doctrine/lexer",
  793. "version": "3.0.0",
  794. "source": {
  795. "type": "git",
  796. "url": "https://github.com/doctrine/lexer.git",
  797. "reference": "84a527db05647743d50373e0ec53a152f2cde568"
  798. },
  799. "dist": {
  800. "type": "zip",
  801. "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
  802. "reference": "84a527db05647743d50373e0ec53a152f2cde568",
  803. "shasum": ""
  804. },
  805. "require": {
  806. "php": "^8.1"
  807. },
  808. "require-dev": {
  809. "doctrine/coding-standard": "^10",
  810. "phpstan/phpstan": "^1.9",
  811. "phpunit/phpunit": "^9.5",
  812. "psalm/plugin-phpunit": "^0.18.3",
  813. "vimeo/psalm": "^5.0"
  814. },
  815. "type": "library",
  816. "autoload": {
  817. "psr-4": {
  818. "Doctrine\\Common\\Lexer\\": "src"
  819. }
  820. },
  821. "notification-url": "https://packagist.org/downloads/",
  822. "license": [
  823. "MIT"
  824. ],
  825. "authors": [
  826. {
  827. "name": "Guilherme Blanco",
  828. "email": "guilhermeblanco@gmail.com"
  829. },
  830. {
  831. "name": "Roman Borschel",
  832. "email": "roman@code-factory.org"
  833. },
  834. {
  835. "name": "Johannes Schmitt",
  836. "email": "schmittjoh@gmail.com"
  837. }
  838. ],
  839. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  840. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  841. "keywords": [
  842. "annotations",
  843. "docblock",
  844. "lexer",
  845. "parser",
  846. "php"
  847. ],
  848. "support": {
  849. "issues": "https://github.com/doctrine/lexer/issues",
  850. "source": "https://github.com/doctrine/lexer/tree/3.0.0"
  851. },
  852. "funding": [
  853. {
  854. "url": "https://www.doctrine-project.org/sponsorship.html",
  855. "type": "custom"
  856. },
  857. {
  858. "url": "https://www.patreon.com/phpdoctrine",
  859. "type": "patreon"
  860. },
  861. {
  862. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  863. "type": "tidelift"
  864. }
  865. ],
  866. "time": "2022-12-15T16:57:16+00:00"
  867. },
  868. {
  869. "name": "dragonmantank/cron-expression",
  870. "version": "v3.3.2",
  871. "source": {
  872. "type": "git",
  873. "url": "https://github.com/dragonmantank/cron-expression.git",
  874. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8"
  875. },
  876. "dist": {
  877. "type": "zip",
  878. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8",
  879. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8",
  880. "shasum": ""
  881. },
  882. "require": {
  883. "php": "^7.2|^8.0",
  884. "webmozart/assert": "^1.0"
  885. },
  886. "replace": {
  887. "mtdowling/cron-expression": "^1.0"
  888. },
  889. "require-dev": {
  890. "phpstan/extension-installer": "^1.0",
  891. "phpstan/phpstan": "^1.0",
  892. "phpstan/phpstan-webmozart-assert": "^1.0",
  893. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  894. },
  895. "type": "library",
  896. "autoload": {
  897. "psr-4": {
  898. "Cron\\": "src/Cron/"
  899. }
  900. },
  901. "notification-url": "https://packagist.org/downloads/",
  902. "license": [
  903. "MIT"
  904. ],
  905. "authors": [
  906. {
  907. "name": "Chris Tankersley",
  908. "email": "chris@ctankersley.com",
  909. "homepage": "https://github.com/dragonmantank"
  910. }
  911. ],
  912. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  913. "keywords": [
  914. "cron",
  915. "schedule"
  916. ],
  917. "support": {
  918. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  919. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2"
  920. },
  921. "funding": [
  922. {
  923. "url": "https://github.com/dragonmantank",
  924. "type": "github"
  925. }
  926. ],
  927. "time": "2022-09-10T18:51:20+00:00"
  928. },
  929. {
  930. "name": "egulias/email-validator",
  931. "version": "4.0.1",
  932. "source": {
  933. "type": "git",
  934. "url": "https://github.com/egulias/EmailValidator.git",
  935. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
  936. },
  937. "dist": {
  938. "type": "zip",
  939. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  940. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  941. "shasum": ""
  942. },
  943. "require": {
  944. "doctrine/lexer": "^2.0 || ^3.0",
  945. "php": ">=8.1",
  946. "symfony/polyfill-intl-idn": "^1.26"
  947. },
  948. "require-dev": {
  949. "phpunit/phpunit": "^9.5.27",
  950. "vimeo/psalm": "^4.30"
  951. },
  952. "suggest": {
  953. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  954. },
  955. "type": "library",
  956. "extra": {
  957. "branch-alias": {
  958. "dev-master": "4.0.x-dev"
  959. }
  960. },
  961. "autoload": {
  962. "psr-4": {
  963. "Egulias\\EmailValidator\\": "src"
  964. }
  965. },
  966. "notification-url": "https://packagist.org/downloads/",
  967. "license": [
  968. "MIT"
  969. ],
  970. "authors": [
  971. {
  972. "name": "Eduardo Gulias Davis"
  973. }
  974. ],
  975. "description": "A library for validating emails against several RFCs",
  976. "homepage": "https://github.com/egulias/EmailValidator",
  977. "keywords": [
  978. "email",
  979. "emailvalidation",
  980. "emailvalidator",
  981. "validation",
  982. "validator"
  983. ],
  984. "support": {
  985. "issues": "https://github.com/egulias/EmailValidator/issues",
  986. "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
  987. },
  988. "funding": [
  989. {
  990. "url": "https://github.com/egulias",
  991. "type": "github"
  992. }
  993. ],
  994. "time": "2023-01-14T14:17:03+00:00"
  995. },
  996. {
  997. "name": "filament/filament",
  998. "version": "v2.17.52",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/filamentphp/panels.git",
  1002. "reference": "8a735eadb6940d58215c5220d1f612bac3a47c21"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/filamentphp/panels/zipball/8a735eadb6940d58215c5220d1f612bac3a47c21",
  1007. "reference": "8a735eadb6940d58215c5220d1f612bac3a47c21",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "danharrin/livewire-rate-limiting": "^0.3|^1.0",
  1012. "filament/forms": "self.version",
  1013. "filament/notifications": "self.version",
  1014. "filament/support": "self.version",
  1015. "filament/tables": "self.version",
  1016. "illuminate/auth": "^8.6|^9.0|^10.0",
  1017. "illuminate/console": "^8.6|^9.0|^10.0",
  1018. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1019. "illuminate/cookie": "^8.6|^9.0|^10.0",
  1020. "illuminate/database": "^8.6|^9.0|^10.0",
  1021. "illuminate/http": "^8.6|^9.0|^10.0",
  1022. "illuminate/routing": "^8.6|^9.0|^10.0",
  1023. "illuminate/session": "^8.6|^9.0|^10.0",
  1024. "illuminate/support": "^8.6|^9.0|^10.0",
  1025. "illuminate/view": "^8.6|^9.0|^10.0",
  1026. "livewire/livewire": "^2.10.7",
  1027. "php": "^8.0",
  1028. "spatie/laravel-package-tools": "^1.9"
  1029. },
  1030. "type": "library",
  1031. "extra": {
  1032. "laravel": {
  1033. "providers": [
  1034. "Filament\\FilamentServiceProvider"
  1035. ]
  1036. }
  1037. },
  1038. "autoload": {
  1039. "files": [
  1040. "src/helpers.php"
  1041. ],
  1042. "psr-4": {
  1043. "Filament\\": "src"
  1044. }
  1045. },
  1046. "notification-url": "https://packagist.org/downloads/",
  1047. "license": [
  1048. "MIT"
  1049. ],
  1050. "description": "Effortlessly build TALL-powered admin panels.",
  1051. "homepage": "https://github.com/filamentphp/filament",
  1052. "support": {
  1053. "issues": "https://github.com/filamentphp/filament/issues",
  1054. "source": "https://github.com/filamentphp/filament"
  1055. },
  1056. "time": "2023-07-23T10:32:22+00:00"
  1057. },
  1058. {
  1059. "name": "filament/forms",
  1060. "version": "v2.17.52",
  1061. "source": {
  1062. "type": "git",
  1063. "url": "https://github.com/filamentphp/forms.git",
  1064. "reference": "499560b5637ae5b9bcb57666810ad961b7def2e2"
  1065. },
  1066. "dist": {
  1067. "type": "zip",
  1068. "url": "https://api.github.com/repos/filamentphp/forms/zipball/499560b5637ae5b9bcb57666810ad961b7def2e2",
  1069. "reference": "499560b5637ae5b9bcb57666810ad961b7def2e2",
  1070. "shasum": ""
  1071. },
  1072. "require": {
  1073. "blade-ui-kit/blade-heroicons": "^1.2",
  1074. "danharrin/date-format-converter": "^0.3",
  1075. "filament/notifications": "self.version",
  1076. "filament/support": "self.version",
  1077. "illuminate/console": "^8.6|^9.0|^10.0",
  1078. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1079. "illuminate/database": "^8.6|^9.0|^10.0",
  1080. "illuminate/filesystem": "^8.6|^9.0|^10.0",
  1081. "illuminate/support": "^8.6|^9.0|^10.0",
  1082. "illuminate/validation": "^8.6|^9.0|^10.0",
  1083. "illuminate/view": "^8.6|^9.0|^10.0",
  1084. "livewire/livewire": "^2.10.7",
  1085. "php": "^8.0",
  1086. "spatie/laravel-package-tools": "^1.9"
  1087. },
  1088. "type": "library",
  1089. "extra": {
  1090. "laravel": {
  1091. "providers": [
  1092. "Filament\\Forms\\FormsServiceProvider"
  1093. ]
  1094. }
  1095. },
  1096. "autoload": {
  1097. "files": [
  1098. "src/helpers.php"
  1099. ],
  1100. "psr-4": {
  1101. "Filament\\Forms\\": "src"
  1102. }
  1103. },
  1104. "notification-url": "https://packagist.org/downloads/",
  1105. "license": [
  1106. "MIT"
  1107. ],
  1108. "description": "Effortlessly build TALL-powered forms.",
  1109. "homepage": "https://github.com/filamentphp/filament",
  1110. "support": {
  1111. "issues": "https://github.com/filamentphp/filament/issues",
  1112. "source": "https://github.com/filamentphp/filament"
  1113. },
  1114. "time": "2023-08-07T23:50:00+00:00"
  1115. },
  1116. {
  1117. "name": "filament/notifications",
  1118. "version": "v2.17.52",
  1119. "source": {
  1120. "type": "git",
  1121. "url": "https://github.com/filamentphp/notifications.git",
  1122. "reference": "d28fd12dbb4602f24f94d88730128d28f0f565db"
  1123. },
  1124. "dist": {
  1125. "type": "zip",
  1126. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/d28fd12dbb4602f24f94d88730128d28f0f565db",
  1127. "reference": "d28fd12dbb4602f24f94d88730128d28f0f565db",
  1128. "shasum": ""
  1129. },
  1130. "require": {
  1131. "blade-ui-kit/blade-heroicons": "^1.2",
  1132. "filament/support": "self.version",
  1133. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1134. "illuminate/filesystem": "^8.6|^9.0|^10.0",
  1135. "illuminate/notifications": "^8.6|^9.0|^10.0",
  1136. "illuminate/support": "^8.6|^9.0|^10.0",
  1137. "livewire/livewire": "^2.10.7",
  1138. "php": "^8.0",
  1139. "spatie/laravel-package-tools": "^1.9"
  1140. },
  1141. "type": "library",
  1142. "extra": {
  1143. "laravel": {
  1144. "providers": [
  1145. "Filament\\Notifications\\NotificationsServiceProvider"
  1146. ]
  1147. }
  1148. },
  1149. "autoload": {
  1150. "files": [
  1151. "src/Testing/Autoload.php"
  1152. ],
  1153. "psr-4": {
  1154. "Filament\\Notifications\\": "src"
  1155. }
  1156. },
  1157. "notification-url": "https://packagist.org/downloads/",
  1158. "license": [
  1159. "MIT"
  1160. ],
  1161. "description": "Effortlessly build TALL-powered notifications.",
  1162. "homepage": "https://github.com/filamentphp/filament",
  1163. "support": {
  1164. "issues": "https://github.com/filamentphp/filament/issues",
  1165. "source": "https://github.com/filamentphp/filament"
  1166. },
  1167. "time": "2023-07-03T09:23:01+00:00"
  1168. },
  1169. {
  1170. "name": "filament/spatie-laravel-tags-plugin",
  1171. "version": "v2.17.52",
  1172. "source": {
  1173. "type": "git",
  1174. "url": "https://github.com/filamentphp/spatie-laravel-tags-plugin.git",
  1175. "reference": "70ed1268cdd3b631e90b8326c20882962674f57f"
  1176. },
  1177. "dist": {
  1178. "type": "zip",
  1179. "url": "https://api.github.com/repos/filamentphp/spatie-laravel-tags-plugin/zipball/70ed1268cdd3b631e90b8326c20882962674f57f",
  1180. "reference": "70ed1268cdd3b631e90b8326c20882962674f57f",
  1181. "shasum": ""
  1182. },
  1183. "require": {
  1184. "illuminate/database": "^8.6|^9.0|^10.0",
  1185. "php": "^8.0",
  1186. "spatie/laravel-tags": "^4.0"
  1187. },
  1188. "type": "library",
  1189. "autoload": {
  1190. "psr-4": {
  1191. "Filament\\": "src"
  1192. }
  1193. },
  1194. "notification-url": "https://packagist.org/downloads/",
  1195. "license": [
  1196. "MIT"
  1197. ],
  1198. "description": "Filament support for `spatie/laravel-tags`.",
  1199. "homepage": "https://github.com/filamentphp/filament",
  1200. "support": {
  1201. "issues": "https://github.com/filamentphp/filament/issues",
  1202. "source": "https://github.com/filamentphp/filament"
  1203. },
  1204. "time": "2023-05-20T17:45:48+00:00"
  1205. },
  1206. {
  1207. "name": "filament/support",
  1208. "version": "v2.17.52",
  1209. "source": {
  1210. "type": "git",
  1211. "url": "https://github.com/filamentphp/support.git",
  1212. "reference": "9982a88704efc58b710c4e6b5000d85a6f4daf56"
  1213. },
  1214. "dist": {
  1215. "type": "zip",
  1216. "url": "https://api.github.com/repos/filamentphp/support/zipball/9982a88704efc58b710c4e6b5000d85a6f4daf56",
  1217. "reference": "9982a88704efc58b710c4e6b5000d85a6f4daf56",
  1218. "shasum": ""
  1219. },
  1220. "require": {
  1221. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1222. "illuminate/support": "^8.6|^9.0|^10.0",
  1223. "illuminate/view": "^8.6|^9.0|^10.0",
  1224. "php": "^8.0",
  1225. "ryangjchandler/blade-capture-directive": "^0.2|^0.3",
  1226. "spatie/laravel-package-tools": "^1.9",
  1227. "tgalopin/html-sanitizer": "^1.5"
  1228. },
  1229. "type": "library",
  1230. "extra": {
  1231. "laravel": {
  1232. "providers": [
  1233. "Filament\\Support\\SupportServiceProvider"
  1234. ]
  1235. }
  1236. },
  1237. "autoload": {
  1238. "files": [
  1239. "src/helpers.php"
  1240. ],
  1241. "psr-4": {
  1242. "Filament\\Support\\": "src"
  1243. }
  1244. },
  1245. "notification-url": "https://packagist.org/downloads/",
  1246. "license": [
  1247. "MIT"
  1248. ],
  1249. "description": "Associated helper methods and foundation code for Filament packages.",
  1250. "homepage": "https://github.com/filamentphp/filament",
  1251. "support": {
  1252. "issues": "https://github.com/filamentphp/filament/issues",
  1253. "source": "https://github.com/filamentphp/filament"
  1254. },
  1255. "time": "2023-07-03T09:23:04+00:00"
  1256. },
  1257. {
  1258. "name": "filament/tables",
  1259. "version": "v2.17.52",
  1260. "source": {
  1261. "type": "git",
  1262. "url": "https://github.com/filamentphp/tables.git",
  1263. "reference": "0c66490a4a3e7809d3bb62c363f41840f6a9a875"
  1264. },
  1265. "dist": {
  1266. "type": "zip",
  1267. "url": "https://api.github.com/repos/filamentphp/tables/zipball/0c66490a4a3e7809d3bb62c363f41840f6a9a875",
  1268. "reference": "0c66490a4a3e7809d3bb62c363f41840f6a9a875",
  1269. "shasum": ""
  1270. },
  1271. "require": {
  1272. "akaunting/laravel-money": "^1.2|^2.0|^3.0|^4.0",
  1273. "blade-ui-kit/blade-heroicons": "^1.2",
  1274. "filament/forms": "self.version",
  1275. "filament/notifications": "self.version",
  1276. "filament/support": "self.version",
  1277. "illuminate/console": "^8.6|^9.0|^10.0",
  1278. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1279. "illuminate/database": "^8.6|^9.0|^10.0",
  1280. "illuminate/filesystem": "^8.6|^9.0|^10.0",
  1281. "illuminate/support": "^8.6|^9.0|^10.0",
  1282. "illuminate/view": "^8.6|^9.0|^10.0",
  1283. "livewire/livewire": "^2.10.7",
  1284. "php": "^8.0",
  1285. "spatie/invade": "^1.0",
  1286. "spatie/laravel-package-tools": "^1.9"
  1287. },
  1288. "type": "library",
  1289. "extra": {
  1290. "laravel": {
  1291. "providers": [
  1292. "Filament\\Tables\\TablesServiceProvider"
  1293. ]
  1294. }
  1295. },
  1296. "autoload": {
  1297. "psr-4": {
  1298. "Filament\\Tables\\": "src"
  1299. }
  1300. },
  1301. "notification-url": "https://packagist.org/downloads/",
  1302. "license": [
  1303. "MIT"
  1304. ],
  1305. "description": "Effortlessly build TALL-powered tables.",
  1306. "homepage": "https://github.com/filamentphp/filament",
  1307. "support": {
  1308. "issues": "https://github.com/filamentphp/filament/issues",
  1309. "source": "https://github.com/filamentphp/filament"
  1310. },
  1311. "time": "2023-07-23T10:32:18+00:00"
  1312. },
  1313. {
  1314. "name": "flowframe/laravel-trend",
  1315. "version": "v0.1.5",
  1316. "source": {
  1317. "type": "git",
  1318. "url": "https://github.com/Flowframe/laravel-trend.git",
  1319. "reference": "bc43bf7840ff60aca39e856ad96f5e990fac83d7"
  1320. },
  1321. "dist": {
  1322. "type": "zip",
  1323. "url": "https://api.github.com/repos/Flowframe/laravel-trend/zipball/bc43bf7840ff60aca39e856ad96f5e990fac83d7",
  1324. "reference": "bc43bf7840ff60aca39e856ad96f5e990fac83d7",
  1325. "shasum": ""
  1326. },
  1327. "require": {
  1328. "illuminate/contracts": "^8.37|^9|^10.0",
  1329. "php": "^8.0",
  1330. "spatie/laravel-package-tools": "^1.4.3"
  1331. },
  1332. "require-dev": {
  1333. "nunomaduro/collision": "^5.3|^6.1",
  1334. "orchestra/testbench": "^6.15|^7.0|^8.0",
  1335. "pestphp/pest": "^1.18",
  1336. "pestphp/pest-plugin-laravel": "^1.1",
  1337. "spatie/laravel-ray": "^1.23",
  1338. "vimeo/psalm": "^4.8|^5.6"
  1339. },
  1340. "type": "library",
  1341. "extra": {
  1342. "laravel": {
  1343. "providers": [
  1344. "Flowframe\\Trend\\TrendServiceProvider"
  1345. ],
  1346. "aliases": {
  1347. "Trend": "Flowframe\\Trend\\TrendFacade"
  1348. }
  1349. }
  1350. },
  1351. "autoload": {
  1352. "psr-4": {
  1353. "Flowframe\\Trend\\": "src",
  1354. "Flowframe\\Trend\\Database\\Factories\\": "database/factories"
  1355. }
  1356. },
  1357. "notification-url": "https://packagist.org/downloads/",
  1358. "license": [
  1359. "MIT"
  1360. ],
  1361. "authors": [
  1362. {
  1363. "name": "Lars Klopstra",
  1364. "email": "lars@flowframe.nl",
  1365. "role": "Developer"
  1366. }
  1367. ],
  1368. "description": "Easily generate model trends",
  1369. "homepage": "https://github.com/flowframe/laravel-trend",
  1370. "keywords": [
  1371. "Flowframe",
  1372. "laravel",
  1373. "laravel-trend"
  1374. ],
  1375. "support": {
  1376. "issues": "https://github.com/Flowframe/laravel-trend/issues",
  1377. "source": "https://github.com/Flowframe/laravel-trend/tree/v0.1.5"
  1378. },
  1379. "funding": [
  1380. {
  1381. "url": "https://github.com/larsklopstra",
  1382. "type": "github"
  1383. }
  1384. ],
  1385. "time": "2023-03-22T20:51:43+00:00"
  1386. },
  1387. {
  1388. "name": "fruitcake/php-cors",
  1389. "version": "v1.2.0",
  1390. "source": {
  1391. "type": "git",
  1392. "url": "https://github.com/fruitcake/php-cors.git",
  1393. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  1394. },
  1395. "dist": {
  1396. "type": "zip",
  1397. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1398. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1399. "shasum": ""
  1400. },
  1401. "require": {
  1402. "php": "^7.4|^8.0",
  1403. "symfony/http-foundation": "^4.4|^5.4|^6"
  1404. },
  1405. "require-dev": {
  1406. "phpstan/phpstan": "^1.4",
  1407. "phpunit/phpunit": "^9",
  1408. "squizlabs/php_codesniffer": "^3.5"
  1409. },
  1410. "type": "library",
  1411. "extra": {
  1412. "branch-alias": {
  1413. "dev-main": "1.1-dev"
  1414. }
  1415. },
  1416. "autoload": {
  1417. "psr-4": {
  1418. "Fruitcake\\Cors\\": "src/"
  1419. }
  1420. },
  1421. "notification-url": "https://packagist.org/downloads/",
  1422. "license": [
  1423. "MIT"
  1424. ],
  1425. "authors": [
  1426. {
  1427. "name": "Fruitcake",
  1428. "homepage": "https://fruitcake.nl"
  1429. },
  1430. {
  1431. "name": "Barryvdh",
  1432. "email": "barryvdh@gmail.com"
  1433. }
  1434. ],
  1435. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1436. "homepage": "https://github.com/fruitcake/php-cors",
  1437. "keywords": [
  1438. "cors",
  1439. "laravel",
  1440. "symfony"
  1441. ],
  1442. "support": {
  1443. "issues": "https://github.com/fruitcake/php-cors/issues",
  1444. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  1445. },
  1446. "funding": [
  1447. {
  1448. "url": "https://fruitcake.nl",
  1449. "type": "custom"
  1450. },
  1451. {
  1452. "url": "https://github.com/barryvdh",
  1453. "type": "github"
  1454. }
  1455. ],
  1456. "time": "2022-02-20T15:07:15+00:00"
  1457. },
  1458. {
  1459. "name": "graham-campbell/result-type",
  1460. "version": "v1.1.1",
  1461. "source": {
  1462. "type": "git",
  1463. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1464. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
  1465. },
  1466. "dist": {
  1467. "type": "zip",
  1468. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1469. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1470. "shasum": ""
  1471. },
  1472. "require": {
  1473. "php": "^7.2.5 || ^8.0",
  1474. "phpoption/phpoption": "^1.9.1"
  1475. },
  1476. "require-dev": {
  1477. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  1478. },
  1479. "type": "library",
  1480. "autoload": {
  1481. "psr-4": {
  1482. "GrahamCampbell\\ResultType\\": "src/"
  1483. }
  1484. },
  1485. "notification-url": "https://packagist.org/downloads/",
  1486. "license": [
  1487. "MIT"
  1488. ],
  1489. "authors": [
  1490. {
  1491. "name": "Graham Campbell",
  1492. "email": "hello@gjcampbell.co.uk",
  1493. "homepage": "https://github.com/GrahamCampbell"
  1494. }
  1495. ],
  1496. "description": "An Implementation Of The Result Type",
  1497. "keywords": [
  1498. "Graham Campbell",
  1499. "GrahamCampbell",
  1500. "Result Type",
  1501. "Result-Type",
  1502. "result"
  1503. ],
  1504. "support": {
  1505. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1506. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1"
  1507. },
  1508. "funding": [
  1509. {
  1510. "url": "https://github.com/GrahamCampbell",
  1511. "type": "github"
  1512. },
  1513. {
  1514. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1515. "type": "tidelift"
  1516. }
  1517. ],
  1518. "time": "2023-02-25T20:23:15+00:00"
  1519. },
  1520. {
  1521. "name": "guzzlehttp/guzzle",
  1522. "version": "7.7.0",
  1523. "source": {
  1524. "type": "git",
  1525. "url": "https://github.com/guzzle/guzzle.git",
  1526. "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5"
  1527. },
  1528. "dist": {
  1529. "type": "zip",
  1530. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/fb7566caccf22d74d1ab270de3551f72a58399f5",
  1531. "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5",
  1532. "shasum": ""
  1533. },
  1534. "require": {
  1535. "ext-json": "*",
  1536. "guzzlehttp/promises": "^1.5.3 || ^2.0",
  1537. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  1538. "php": "^7.2.5 || ^8.0",
  1539. "psr/http-client": "^1.0",
  1540. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1541. },
  1542. "provide": {
  1543. "psr/http-client-implementation": "1.0"
  1544. },
  1545. "require-dev": {
  1546. "bamarni/composer-bin-plugin": "^1.8.1",
  1547. "ext-curl": "*",
  1548. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1549. "php-http/message-factory": "^1.1",
  1550. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  1551. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1552. },
  1553. "suggest": {
  1554. "ext-curl": "Required for CURL handler support",
  1555. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1556. "psr/log": "Required for using the Log middleware"
  1557. },
  1558. "type": "library",
  1559. "extra": {
  1560. "bamarni-bin": {
  1561. "bin-links": true,
  1562. "forward-command": false
  1563. }
  1564. },
  1565. "autoload": {
  1566. "files": [
  1567. "src/functions_include.php"
  1568. ],
  1569. "psr-4": {
  1570. "GuzzleHttp\\": "src/"
  1571. }
  1572. },
  1573. "notification-url": "https://packagist.org/downloads/",
  1574. "license": [
  1575. "MIT"
  1576. ],
  1577. "authors": [
  1578. {
  1579. "name": "Graham Campbell",
  1580. "email": "hello@gjcampbell.co.uk",
  1581. "homepage": "https://github.com/GrahamCampbell"
  1582. },
  1583. {
  1584. "name": "Michael Dowling",
  1585. "email": "mtdowling@gmail.com",
  1586. "homepage": "https://github.com/mtdowling"
  1587. },
  1588. {
  1589. "name": "Jeremy Lindblom",
  1590. "email": "jeremeamia@gmail.com",
  1591. "homepage": "https://github.com/jeremeamia"
  1592. },
  1593. {
  1594. "name": "George Mponos",
  1595. "email": "gmponos@gmail.com",
  1596. "homepage": "https://github.com/gmponos"
  1597. },
  1598. {
  1599. "name": "Tobias Nyholm",
  1600. "email": "tobias.nyholm@gmail.com",
  1601. "homepage": "https://github.com/Nyholm"
  1602. },
  1603. {
  1604. "name": "Márk Sági-Kazár",
  1605. "email": "mark.sagikazar@gmail.com",
  1606. "homepage": "https://github.com/sagikazarmark"
  1607. },
  1608. {
  1609. "name": "Tobias Schultze",
  1610. "email": "webmaster@tubo-world.de",
  1611. "homepage": "https://github.com/Tobion"
  1612. }
  1613. ],
  1614. "description": "Guzzle is a PHP HTTP client library",
  1615. "keywords": [
  1616. "client",
  1617. "curl",
  1618. "framework",
  1619. "http",
  1620. "http client",
  1621. "psr-18",
  1622. "psr-7",
  1623. "rest",
  1624. "web service"
  1625. ],
  1626. "support": {
  1627. "issues": "https://github.com/guzzle/guzzle/issues",
  1628. "source": "https://github.com/guzzle/guzzle/tree/7.7.0"
  1629. },
  1630. "funding": [
  1631. {
  1632. "url": "https://github.com/GrahamCampbell",
  1633. "type": "github"
  1634. },
  1635. {
  1636. "url": "https://github.com/Nyholm",
  1637. "type": "github"
  1638. },
  1639. {
  1640. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1641. "type": "tidelift"
  1642. }
  1643. ],
  1644. "time": "2023-05-21T14:04:53+00:00"
  1645. },
  1646. {
  1647. "name": "guzzlehttp/promises",
  1648. "version": "2.0.1",
  1649. "source": {
  1650. "type": "git",
  1651. "url": "https://github.com/guzzle/promises.git",
  1652. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  1653. },
  1654. "dist": {
  1655. "type": "zip",
  1656. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  1657. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  1658. "shasum": ""
  1659. },
  1660. "require": {
  1661. "php": "^7.2.5 || ^8.0"
  1662. },
  1663. "require-dev": {
  1664. "bamarni/composer-bin-plugin": "^1.8.1",
  1665. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1666. },
  1667. "type": "library",
  1668. "extra": {
  1669. "bamarni-bin": {
  1670. "bin-links": true,
  1671. "forward-command": false
  1672. }
  1673. },
  1674. "autoload": {
  1675. "psr-4": {
  1676. "GuzzleHttp\\Promise\\": "src/"
  1677. }
  1678. },
  1679. "notification-url": "https://packagist.org/downloads/",
  1680. "license": [
  1681. "MIT"
  1682. ],
  1683. "authors": [
  1684. {
  1685. "name": "Graham Campbell",
  1686. "email": "hello@gjcampbell.co.uk",
  1687. "homepage": "https://github.com/GrahamCampbell"
  1688. },
  1689. {
  1690. "name": "Michael Dowling",
  1691. "email": "mtdowling@gmail.com",
  1692. "homepage": "https://github.com/mtdowling"
  1693. },
  1694. {
  1695. "name": "Tobias Nyholm",
  1696. "email": "tobias.nyholm@gmail.com",
  1697. "homepage": "https://github.com/Nyholm"
  1698. },
  1699. {
  1700. "name": "Tobias Schultze",
  1701. "email": "webmaster@tubo-world.de",
  1702. "homepage": "https://github.com/Tobion"
  1703. }
  1704. ],
  1705. "description": "Guzzle promises library",
  1706. "keywords": [
  1707. "promise"
  1708. ],
  1709. "support": {
  1710. "issues": "https://github.com/guzzle/promises/issues",
  1711. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  1712. },
  1713. "funding": [
  1714. {
  1715. "url": "https://github.com/GrahamCampbell",
  1716. "type": "github"
  1717. },
  1718. {
  1719. "url": "https://github.com/Nyholm",
  1720. "type": "github"
  1721. },
  1722. {
  1723. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1724. "type": "tidelift"
  1725. }
  1726. ],
  1727. "time": "2023-08-03T15:11:55+00:00"
  1728. },
  1729. {
  1730. "name": "guzzlehttp/psr7",
  1731. "version": "2.6.0",
  1732. "source": {
  1733. "type": "git",
  1734. "url": "https://github.com/guzzle/psr7.git",
  1735. "reference": "8bd7c33a0734ae1c5d074360512beb716bef3f77"
  1736. },
  1737. "dist": {
  1738. "type": "zip",
  1739. "url": "https://api.github.com/repos/guzzle/psr7/zipball/8bd7c33a0734ae1c5d074360512beb716bef3f77",
  1740. "reference": "8bd7c33a0734ae1c5d074360512beb716bef3f77",
  1741. "shasum": ""
  1742. },
  1743. "require": {
  1744. "php": "^7.2.5 || ^8.0",
  1745. "psr/http-factory": "^1.0",
  1746. "psr/http-message": "^1.1 || ^2.0",
  1747. "ralouphie/getallheaders": "^3.0"
  1748. },
  1749. "provide": {
  1750. "psr/http-factory-implementation": "1.0",
  1751. "psr/http-message-implementation": "1.0"
  1752. },
  1753. "require-dev": {
  1754. "bamarni/composer-bin-plugin": "^1.8.1",
  1755. "http-interop/http-factory-tests": "^0.9",
  1756. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1757. },
  1758. "suggest": {
  1759. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1760. },
  1761. "type": "library",
  1762. "extra": {
  1763. "bamarni-bin": {
  1764. "bin-links": true,
  1765. "forward-command": false
  1766. }
  1767. },
  1768. "autoload": {
  1769. "psr-4": {
  1770. "GuzzleHttp\\Psr7\\": "src/"
  1771. }
  1772. },
  1773. "notification-url": "https://packagist.org/downloads/",
  1774. "license": [
  1775. "MIT"
  1776. ],
  1777. "authors": [
  1778. {
  1779. "name": "Graham Campbell",
  1780. "email": "hello@gjcampbell.co.uk",
  1781. "homepage": "https://github.com/GrahamCampbell"
  1782. },
  1783. {
  1784. "name": "Michael Dowling",
  1785. "email": "mtdowling@gmail.com",
  1786. "homepage": "https://github.com/mtdowling"
  1787. },
  1788. {
  1789. "name": "George Mponos",
  1790. "email": "gmponos@gmail.com",
  1791. "homepage": "https://github.com/gmponos"
  1792. },
  1793. {
  1794. "name": "Tobias Nyholm",
  1795. "email": "tobias.nyholm@gmail.com",
  1796. "homepage": "https://github.com/Nyholm"
  1797. },
  1798. {
  1799. "name": "Márk Sági-Kazár",
  1800. "email": "mark.sagikazar@gmail.com",
  1801. "homepage": "https://github.com/sagikazarmark"
  1802. },
  1803. {
  1804. "name": "Tobias Schultze",
  1805. "email": "webmaster@tubo-world.de",
  1806. "homepage": "https://github.com/Tobion"
  1807. },
  1808. {
  1809. "name": "Márk Sági-Kazár",
  1810. "email": "mark.sagikazar@gmail.com",
  1811. "homepage": "https://sagikazarmark.hu"
  1812. }
  1813. ],
  1814. "description": "PSR-7 message implementation that also provides common utility methods",
  1815. "keywords": [
  1816. "http",
  1817. "message",
  1818. "psr-7",
  1819. "request",
  1820. "response",
  1821. "stream",
  1822. "uri",
  1823. "url"
  1824. ],
  1825. "support": {
  1826. "issues": "https://github.com/guzzle/psr7/issues",
  1827. "source": "https://github.com/guzzle/psr7/tree/2.6.0"
  1828. },
  1829. "funding": [
  1830. {
  1831. "url": "https://github.com/GrahamCampbell",
  1832. "type": "github"
  1833. },
  1834. {
  1835. "url": "https://github.com/Nyholm",
  1836. "type": "github"
  1837. },
  1838. {
  1839. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1840. "type": "tidelift"
  1841. }
  1842. ],
  1843. "time": "2023-08-03T15:06:02+00:00"
  1844. },
  1845. {
  1846. "name": "guzzlehttp/uri-template",
  1847. "version": "v1.0.1",
  1848. "source": {
  1849. "type": "git",
  1850. "url": "https://github.com/guzzle/uri-template.git",
  1851. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2"
  1852. },
  1853. "dist": {
  1854. "type": "zip",
  1855. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2",
  1856. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2",
  1857. "shasum": ""
  1858. },
  1859. "require": {
  1860. "php": "^7.2.5 || ^8.0",
  1861. "symfony/polyfill-php80": "^1.17"
  1862. },
  1863. "require-dev": {
  1864. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  1865. "uri-template/tests": "1.0.0"
  1866. },
  1867. "type": "library",
  1868. "extra": {
  1869. "branch-alias": {
  1870. "dev-master": "1.0-dev"
  1871. }
  1872. },
  1873. "autoload": {
  1874. "psr-4": {
  1875. "GuzzleHttp\\UriTemplate\\": "src"
  1876. }
  1877. },
  1878. "notification-url": "https://packagist.org/downloads/",
  1879. "license": [
  1880. "MIT"
  1881. ],
  1882. "authors": [
  1883. {
  1884. "name": "Graham Campbell",
  1885. "email": "hello@gjcampbell.co.uk",
  1886. "homepage": "https://github.com/GrahamCampbell"
  1887. },
  1888. {
  1889. "name": "Michael Dowling",
  1890. "email": "mtdowling@gmail.com",
  1891. "homepage": "https://github.com/mtdowling"
  1892. },
  1893. {
  1894. "name": "George Mponos",
  1895. "email": "gmponos@gmail.com",
  1896. "homepage": "https://github.com/gmponos"
  1897. },
  1898. {
  1899. "name": "Tobias Nyholm",
  1900. "email": "tobias.nyholm@gmail.com",
  1901. "homepage": "https://github.com/Nyholm"
  1902. }
  1903. ],
  1904. "description": "A polyfill class for uri_template of PHP",
  1905. "keywords": [
  1906. "guzzlehttp",
  1907. "uri-template"
  1908. ],
  1909. "support": {
  1910. "issues": "https://github.com/guzzle/uri-template/issues",
  1911. "source": "https://github.com/guzzle/uri-template/tree/v1.0.1"
  1912. },
  1913. "funding": [
  1914. {
  1915. "url": "https://github.com/GrahamCampbell",
  1916. "type": "github"
  1917. },
  1918. {
  1919. "url": "https://github.com/Nyholm",
  1920. "type": "github"
  1921. },
  1922. {
  1923. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1924. "type": "tidelift"
  1925. }
  1926. ],
  1927. "time": "2021-10-07T12:57:01+00:00"
  1928. },
  1929. {
  1930. "name": "laravel/fortify",
  1931. "version": "v1.17.4",
  1932. "source": {
  1933. "type": "git",
  1934. "url": "https://github.com/laravel/fortify.git",
  1935. "reference": "110dd0d09b70461d651218240120e24ba8d8cbe1"
  1936. },
  1937. "dist": {
  1938. "type": "zip",
  1939. "url": "https://api.github.com/repos/laravel/fortify/zipball/110dd0d09b70461d651218240120e24ba8d8cbe1",
  1940. "reference": "110dd0d09b70461d651218240120e24ba8d8cbe1",
  1941. "shasum": ""
  1942. },
  1943. "require": {
  1944. "bacon/bacon-qr-code": "^2.0",
  1945. "ext-json": "*",
  1946. "illuminate/support": "^8.82|^9.0|^10.0",
  1947. "php": "^7.3|^8.0",
  1948. "pragmarx/google2fa": "^7.0|^8.0"
  1949. },
  1950. "require-dev": {
  1951. "mockery/mockery": "^1.0",
  1952. "orchestra/testbench": "^6.0|^7.0|^8.0",
  1953. "phpstan/phpstan": "^1.10",
  1954. "phpunit/phpunit": "^9.3"
  1955. },
  1956. "type": "library",
  1957. "extra": {
  1958. "branch-alias": {
  1959. "dev-master": "1.x-dev"
  1960. },
  1961. "laravel": {
  1962. "providers": [
  1963. "Laravel\\Fortify\\FortifyServiceProvider"
  1964. ]
  1965. }
  1966. },
  1967. "autoload": {
  1968. "psr-4": {
  1969. "Laravel\\Fortify\\": "src/"
  1970. }
  1971. },
  1972. "notification-url": "https://packagist.org/downloads/",
  1973. "license": [
  1974. "MIT"
  1975. ],
  1976. "authors": [
  1977. {
  1978. "name": "Taylor Otwell",
  1979. "email": "taylor@laravel.com"
  1980. }
  1981. ],
  1982. "description": "Backend controllers and scaffolding for Laravel authentication.",
  1983. "keywords": [
  1984. "auth",
  1985. "laravel"
  1986. ],
  1987. "support": {
  1988. "issues": "https://github.com/laravel/fortify/issues",
  1989. "source": "https://github.com/laravel/fortify"
  1990. },
  1991. "time": "2023-06-18T09:17:00+00:00"
  1992. },
  1993. {
  1994. "name": "laravel/framework",
  1995. "version": "v10.18.0",
  1996. "source": {
  1997. "type": "git",
  1998. "url": "https://github.com/laravel/framework.git",
  1999. "reference": "9d41928900f7ecf409627a7d06c0a4dfecff2ea7"
  2000. },
  2001. "dist": {
  2002. "type": "zip",
  2003. "url": "https://api.github.com/repos/laravel/framework/zipball/9d41928900f7ecf409627a7d06c0a4dfecff2ea7",
  2004. "reference": "9d41928900f7ecf409627a7d06c0a4dfecff2ea7",
  2005. "shasum": ""
  2006. },
  2007. "require": {
  2008. "brick/math": "^0.9.3|^0.10.2|^0.11",
  2009. "composer-runtime-api": "^2.2",
  2010. "doctrine/inflector": "^2.0.5",
  2011. "dragonmantank/cron-expression": "^3.3.2",
  2012. "egulias/email-validator": "^3.2.1|^4.0",
  2013. "ext-ctype": "*",
  2014. "ext-filter": "*",
  2015. "ext-hash": "*",
  2016. "ext-mbstring": "*",
  2017. "ext-openssl": "*",
  2018. "ext-session": "*",
  2019. "ext-tokenizer": "*",
  2020. "fruitcake/php-cors": "^1.2",
  2021. "guzzlehttp/uri-template": "^1.0",
  2022. "laravel/prompts": "^0.1",
  2023. "laravel/serializable-closure": "^1.3",
  2024. "league/commonmark": "^2.2.1",
  2025. "league/flysystem": "^3.8.0",
  2026. "monolog/monolog": "^3.0",
  2027. "nesbot/carbon": "^2.67",
  2028. "nunomaduro/termwind": "^1.13",
  2029. "php": "^8.1",
  2030. "psr/container": "^1.1.1|^2.0.1",
  2031. "psr/log": "^1.0|^2.0|^3.0",
  2032. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2033. "ramsey/uuid": "^4.7",
  2034. "symfony/console": "^6.2",
  2035. "symfony/error-handler": "^6.2",
  2036. "symfony/finder": "^6.2",
  2037. "symfony/http-foundation": "^6.2",
  2038. "symfony/http-kernel": "^6.2",
  2039. "symfony/mailer": "^6.2",
  2040. "symfony/mime": "^6.2",
  2041. "symfony/process": "^6.2",
  2042. "symfony/routing": "^6.2",
  2043. "symfony/uid": "^6.2",
  2044. "symfony/var-dumper": "^6.2",
  2045. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2046. "vlucas/phpdotenv": "^5.4.1",
  2047. "voku/portable-ascii": "^2.0"
  2048. },
  2049. "conflict": {
  2050. "tightenco/collect": "<5.5.33"
  2051. },
  2052. "provide": {
  2053. "psr/container-implementation": "1.1|2.0",
  2054. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2055. },
  2056. "replace": {
  2057. "illuminate/auth": "self.version",
  2058. "illuminate/broadcasting": "self.version",
  2059. "illuminate/bus": "self.version",
  2060. "illuminate/cache": "self.version",
  2061. "illuminate/collections": "self.version",
  2062. "illuminate/conditionable": "self.version",
  2063. "illuminate/config": "self.version",
  2064. "illuminate/console": "self.version",
  2065. "illuminate/container": "self.version",
  2066. "illuminate/contracts": "self.version",
  2067. "illuminate/cookie": "self.version",
  2068. "illuminate/database": "self.version",
  2069. "illuminate/encryption": "self.version",
  2070. "illuminate/events": "self.version",
  2071. "illuminate/filesystem": "self.version",
  2072. "illuminate/hashing": "self.version",
  2073. "illuminate/http": "self.version",
  2074. "illuminate/log": "self.version",
  2075. "illuminate/macroable": "self.version",
  2076. "illuminate/mail": "self.version",
  2077. "illuminate/notifications": "self.version",
  2078. "illuminate/pagination": "self.version",
  2079. "illuminate/pipeline": "self.version",
  2080. "illuminate/process": "self.version",
  2081. "illuminate/queue": "self.version",
  2082. "illuminate/redis": "self.version",
  2083. "illuminate/routing": "self.version",
  2084. "illuminate/session": "self.version",
  2085. "illuminate/support": "self.version",
  2086. "illuminate/testing": "self.version",
  2087. "illuminate/translation": "self.version",
  2088. "illuminate/validation": "self.version",
  2089. "illuminate/view": "self.version"
  2090. },
  2091. "require-dev": {
  2092. "ably/ably-php": "^1.0",
  2093. "aws/aws-sdk-php": "^3.235.5",
  2094. "doctrine/dbal": "^3.5.1",
  2095. "ext-gmp": "*",
  2096. "fakerphp/faker": "^1.21",
  2097. "guzzlehttp/guzzle": "^7.5",
  2098. "league/flysystem-aws-s3-v3": "^3.0",
  2099. "league/flysystem-ftp": "^3.0",
  2100. "league/flysystem-path-prefixing": "^3.3",
  2101. "league/flysystem-read-only": "^3.3",
  2102. "league/flysystem-sftp-v3": "^3.0",
  2103. "mockery/mockery": "^1.5.1",
  2104. "orchestra/testbench-core": "^8.4",
  2105. "pda/pheanstalk": "^4.0",
  2106. "phpstan/phpstan": "^1.4.7",
  2107. "phpunit/phpunit": "^10.0.7",
  2108. "predis/predis": "^2.0.2",
  2109. "symfony/cache": "^6.2",
  2110. "symfony/http-client": "^6.2.4"
  2111. },
  2112. "suggest": {
  2113. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2114. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  2115. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2116. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).",
  2117. "ext-apcu": "Required to use the APC cache driver.",
  2118. "ext-fileinfo": "Required to use the Filesystem class.",
  2119. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2120. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2121. "ext-memcached": "Required to use the memcache cache driver.",
  2122. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2123. "ext-pdo": "Required to use all database features.",
  2124. "ext-posix": "Required to use all features of the queue worker.",
  2125. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2126. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2127. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2128. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  2129. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2130. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  2131. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  2132. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  2133. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  2134. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  2135. "mockery/mockery": "Required to use mocking (^1.5.1).",
  2136. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2137. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2138. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).",
  2139. "predis/predis": "Required to use the predis connector (^2.0.2).",
  2140. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2141. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2142. "symfony/cache": "Required to PSR-6 cache bridge (^6.2).",
  2143. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).",
  2144. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).",
  2145. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).",
  2146. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).",
  2147. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  2148. },
  2149. "type": "library",
  2150. "extra": {
  2151. "branch-alias": {
  2152. "dev-master": "10.x-dev"
  2153. }
  2154. },
  2155. "autoload": {
  2156. "files": [
  2157. "src/Illuminate/Collections/helpers.php",
  2158. "src/Illuminate/Events/functions.php",
  2159. "src/Illuminate/Foundation/helpers.php",
  2160. "src/Illuminate/Support/helpers.php"
  2161. ],
  2162. "psr-4": {
  2163. "Illuminate\\": "src/Illuminate/",
  2164. "Illuminate\\Support\\": [
  2165. "src/Illuminate/Macroable/",
  2166. "src/Illuminate/Collections/",
  2167. "src/Illuminate/Conditionable/"
  2168. ]
  2169. }
  2170. },
  2171. "notification-url": "https://packagist.org/downloads/",
  2172. "license": [
  2173. "MIT"
  2174. ],
  2175. "authors": [
  2176. {
  2177. "name": "Taylor Otwell",
  2178. "email": "taylor@laravel.com"
  2179. }
  2180. ],
  2181. "description": "The Laravel Framework.",
  2182. "homepage": "https://laravel.com",
  2183. "keywords": [
  2184. "framework",
  2185. "laravel"
  2186. ],
  2187. "support": {
  2188. "issues": "https://github.com/laravel/framework/issues",
  2189. "source": "https://github.com/laravel/framework"
  2190. },
  2191. "time": "2023-08-08T14:30:38+00:00"
  2192. },
  2193. {
  2194. "name": "laravel/prompts",
  2195. "version": "v0.1.4",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://github.com/laravel/prompts.git",
  2199. "reference": "1b3ab520a75eddefcda99f49fb551d231769b1fa"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://api.github.com/repos/laravel/prompts/zipball/1b3ab520a75eddefcda99f49fb551d231769b1fa",
  2204. "reference": "1b3ab520a75eddefcda99f49fb551d231769b1fa",
  2205. "shasum": ""
  2206. },
  2207. "require": {
  2208. "ext-mbstring": "*",
  2209. "illuminate/collections": "^10.0|^11.0",
  2210. "php": "^8.1",
  2211. "symfony/console": "^6.2"
  2212. },
  2213. "require-dev": {
  2214. "mockery/mockery": "^1.5",
  2215. "pestphp/pest": "^2.3",
  2216. "phpstan/phpstan": "^1.10",
  2217. "phpstan/phpstan-mockery": "^1.1"
  2218. },
  2219. "suggest": {
  2220. "ext-pcntl": "Required for the spinner to be animated."
  2221. },
  2222. "type": "library",
  2223. "autoload": {
  2224. "files": [
  2225. "src/helpers.php"
  2226. ],
  2227. "psr-4": {
  2228. "Laravel\\Prompts\\": "src/"
  2229. }
  2230. },
  2231. "notification-url": "https://packagist.org/downloads/",
  2232. "license": [
  2233. "MIT"
  2234. ],
  2235. "support": {
  2236. "issues": "https://github.com/laravel/prompts/issues",
  2237. "source": "https://github.com/laravel/prompts/tree/v0.1.4"
  2238. },
  2239. "time": "2023-08-07T13:14:59+00:00"
  2240. },
  2241. {
  2242. "name": "laravel/sanctum",
  2243. "version": "v3.2.5",
  2244. "source": {
  2245. "type": "git",
  2246. "url": "https://github.com/laravel/sanctum.git",
  2247. "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876"
  2248. },
  2249. "dist": {
  2250. "type": "zip",
  2251. "url": "https://api.github.com/repos/laravel/sanctum/zipball/8ebda85d59d3c414863a7f4d816ef8302faad876",
  2252. "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876",
  2253. "shasum": ""
  2254. },
  2255. "require": {
  2256. "ext-json": "*",
  2257. "illuminate/console": "^9.21|^10.0",
  2258. "illuminate/contracts": "^9.21|^10.0",
  2259. "illuminate/database": "^9.21|^10.0",
  2260. "illuminate/support": "^9.21|^10.0",
  2261. "php": "^8.0.2"
  2262. },
  2263. "require-dev": {
  2264. "mockery/mockery": "^1.0",
  2265. "orchestra/testbench": "^7.0|^8.0",
  2266. "phpstan/phpstan": "^1.10",
  2267. "phpunit/phpunit": "^9.3"
  2268. },
  2269. "type": "library",
  2270. "extra": {
  2271. "branch-alias": {
  2272. "dev-master": "3.x-dev"
  2273. },
  2274. "laravel": {
  2275. "providers": [
  2276. "Laravel\\Sanctum\\SanctumServiceProvider"
  2277. ]
  2278. }
  2279. },
  2280. "autoload": {
  2281. "psr-4": {
  2282. "Laravel\\Sanctum\\": "src/"
  2283. }
  2284. },
  2285. "notification-url": "https://packagist.org/downloads/",
  2286. "license": [
  2287. "MIT"
  2288. ],
  2289. "authors": [
  2290. {
  2291. "name": "Taylor Otwell",
  2292. "email": "taylor@laravel.com"
  2293. }
  2294. ],
  2295. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2296. "keywords": [
  2297. "auth",
  2298. "laravel",
  2299. "sanctum"
  2300. ],
  2301. "support": {
  2302. "issues": "https://github.com/laravel/sanctum/issues",
  2303. "source": "https://github.com/laravel/sanctum"
  2304. },
  2305. "time": "2023-05-01T19:39:51+00:00"
  2306. },
  2307. {
  2308. "name": "laravel/serializable-closure",
  2309. "version": "v1.3.1",
  2310. "source": {
  2311. "type": "git",
  2312. "url": "https://github.com/laravel/serializable-closure.git",
  2313. "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902"
  2314. },
  2315. "dist": {
  2316. "type": "zip",
  2317. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/e5a3057a5591e1cfe8183034b0203921abe2c902",
  2318. "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902",
  2319. "shasum": ""
  2320. },
  2321. "require": {
  2322. "php": "^7.3|^8.0"
  2323. },
  2324. "require-dev": {
  2325. "nesbot/carbon": "^2.61",
  2326. "pestphp/pest": "^1.21.3",
  2327. "phpstan/phpstan": "^1.8.2",
  2328. "symfony/var-dumper": "^5.4.11"
  2329. },
  2330. "type": "library",
  2331. "extra": {
  2332. "branch-alias": {
  2333. "dev-master": "1.x-dev"
  2334. }
  2335. },
  2336. "autoload": {
  2337. "psr-4": {
  2338. "Laravel\\SerializableClosure\\": "src/"
  2339. }
  2340. },
  2341. "notification-url": "https://packagist.org/downloads/",
  2342. "license": [
  2343. "MIT"
  2344. ],
  2345. "authors": [
  2346. {
  2347. "name": "Taylor Otwell",
  2348. "email": "taylor@laravel.com"
  2349. },
  2350. {
  2351. "name": "Nuno Maduro",
  2352. "email": "nuno@laravel.com"
  2353. }
  2354. ],
  2355. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2356. "keywords": [
  2357. "closure",
  2358. "laravel",
  2359. "serializable"
  2360. ],
  2361. "support": {
  2362. "issues": "https://github.com/laravel/serializable-closure/issues",
  2363. "source": "https://github.com/laravel/serializable-closure"
  2364. },
  2365. "time": "2023-07-14T13:56:28+00:00"
  2366. },
  2367. {
  2368. "name": "laravel/socialite",
  2369. "version": "v5.8.0",
  2370. "source": {
  2371. "type": "git",
  2372. "url": "https://github.com/laravel/socialite.git",
  2373. "reference": "50148edf24b6cd3e428aa9bc06a5d915b24376bb"
  2374. },
  2375. "dist": {
  2376. "type": "zip",
  2377. "url": "https://api.github.com/repos/laravel/socialite/zipball/50148edf24b6cd3e428aa9bc06a5d915b24376bb",
  2378. "reference": "50148edf24b6cd3e428aa9bc06a5d915b24376bb",
  2379. "shasum": ""
  2380. },
  2381. "require": {
  2382. "ext-json": "*",
  2383. "guzzlehttp/guzzle": "^6.0|^7.0",
  2384. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2385. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2386. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2387. "league/oauth1-client": "^1.10.1",
  2388. "php": "^7.2|^8.0"
  2389. },
  2390. "require-dev": {
  2391. "mockery/mockery": "^1.0",
  2392. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
  2393. "phpstan/phpstan": "^1.10",
  2394. "phpunit/phpunit": "^8.0|^9.3"
  2395. },
  2396. "type": "library",
  2397. "extra": {
  2398. "branch-alias": {
  2399. "dev-master": "5.x-dev"
  2400. },
  2401. "laravel": {
  2402. "providers": [
  2403. "Laravel\\Socialite\\SocialiteServiceProvider"
  2404. ],
  2405. "aliases": {
  2406. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2407. }
  2408. }
  2409. },
  2410. "autoload": {
  2411. "psr-4": {
  2412. "Laravel\\Socialite\\": "src/"
  2413. }
  2414. },
  2415. "notification-url": "https://packagist.org/downloads/",
  2416. "license": [
  2417. "MIT"
  2418. ],
  2419. "authors": [
  2420. {
  2421. "name": "Taylor Otwell",
  2422. "email": "taylor@laravel.com"
  2423. }
  2424. ],
  2425. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2426. "homepage": "https://laravel.com",
  2427. "keywords": [
  2428. "laravel",
  2429. "oauth"
  2430. ],
  2431. "support": {
  2432. "issues": "https://github.com/laravel/socialite/issues",
  2433. "source": "https://github.com/laravel/socialite"
  2434. },
  2435. "time": "2023-07-14T14:22:58+00:00"
  2436. },
  2437. {
  2438. "name": "laravel/tinker",
  2439. "version": "v2.8.1",
  2440. "source": {
  2441. "type": "git",
  2442. "url": "https://github.com/laravel/tinker.git",
  2443. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
  2444. },
  2445. "dist": {
  2446. "type": "zip",
  2447. "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2448. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2449. "shasum": ""
  2450. },
  2451. "require": {
  2452. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2453. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2454. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2455. "php": "^7.2.5|^8.0",
  2456. "psy/psysh": "^0.10.4|^0.11.1",
  2457. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2458. },
  2459. "require-dev": {
  2460. "mockery/mockery": "~1.3.3|^1.4.2",
  2461. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2462. },
  2463. "suggest": {
  2464. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  2465. },
  2466. "type": "library",
  2467. "extra": {
  2468. "branch-alias": {
  2469. "dev-master": "2.x-dev"
  2470. },
  2471. "laravel": {
  2472. "providers": [
  2473. "Laravel\\Tinker\\TinkerServiceProvider"
  2474. ]
  2475. }
  2476. },
  2477. "autoload": {
  2478. "psr-4": {
  2479. "Laravel\\Tinker\\": "src/"
  2480. }
  2481. },
  2482. "notification-url": "https://packagist.org/downloads/",
  2483. "license": [
  2484. "MIT"
  2485. ],
  2486. "authors": [
  2487. {
  2488. "name": "Taylor Otwell",
  2489. "email": "taylor@laravel.com"
  2490. }
  2491. ],
  2492. "description": "Powerful REPL for the Laravel framework.",
  2493. "keywords": [
  2494. "REPL",
  2495. "Tinker",
  2496. "laravel",
  2497. "psysh"
  2498. ],
  2499. "support": {
  2500. "issues": "https://github.com/laravel/tinker/issues",
  2501. "source": "https://github.com/laravel/tinker/tree/v2.8.1"
  2502. },
  2503. "time": "2023-02-15T16:40:09+00:00"
  2504. },
  2505. {
  2506. "name": "league/commonmark",
  2507. "version": "2.4.0",
  2508. "source": {
  2509. "type": "git",
  2510. "url": "https://github.com/thephpleague/commonmark.git",
  2511. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048"
  2512. },
  2513. "dist": {
  2514. "type": "zip",
  2515. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  2516. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  2517. "shasum": ""
  2518. },
  2519. "require": {
  2520. "ext-mbstring": "*",
  2521. "league/config": "^1.1.1",
  2522. "php": "^7.4 || ^8.0",
  2523. "psr/event-dispatcher": "^1.0",
  2524. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2525. "symfony/polyfill-php80": "^1.16"
  2526. },
  2527. "require-dev": {
  2528. "cebe/markdown": "^1.0",
  2529. "commonmark/cmark": "0.30.0",
  2530. "commonmark/commonmark.js": "0.30.0",
  2531. "composer/package-versions-deprecated": "^1.8",
  2532. "embed/embed": "^4.4",
  2533. "erusev/parsedown": "^1.0",
  2534. "ext-json": "*",
  2535. "github/gfm": "0.29.0",
  2536. "michelf/php-markdown": "^1.4 || ^2.0",
  2537. "nyholm/psr7": "^1.5",
  2538. "phpstan/phpstan": "^1.8.2",
  2539. "phpunit/phpunit": "^9.5.21",
  2540. "scrutinizer/ocular": "^1.8.1",
  2541. "symfony/finder": "^5.3 | ^6.0",
  2542. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2543. "unleashedtech/php-coding-standard": "^3.1.1",
  2544. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2545. },
  2546. "suggest": {
  2547. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2548. },
  2549. "type": "library",
  2550. "extra": {
  2551. "branch-alias": {
  2552. "dev-main": "2.5-dev"
  2553. }
  2554. },
  2555. "autoload": {
  2556. "psr-4": {
  2557. "League\\CommonMark\\": "src"
  2558. }
  2559. },
  2560. "notification-url": "https://packagist.org/downloads/",
  2561. "license": [
  2562. "BSD-3-Clause"
  2563. ],
  2564. "authors": [
  2565. {
  2566. "name": "Colin O'Dell",
  2567. "email": "colinodell@gmail.com",
  2568. "homepage": "https://www.colinodell.com",
  2569. "role": "Lead Developer"
  2570. }
  2571. ],
  2572. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2573. "homepage": "https://commonmark.thephpleague.com",
  2574. "keywords": [
  2575. "commonmark",
  2576. "flavored",
  2577. "gfm",
  2578. "github",
  2579. "github-flavored",
  2580. "markdown",
  2581. "md",
  2582. "parser"
  2583. ],
  2584. "support": {
  2585. "docs": "https://commonmark.thephpleague.com/",
  2586. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2587. "issues": "https://github.com/thephpleague/commonmark/issues",
  2588. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2589. "source": "https://github.com/thephpleague/commonmark"
  2590. },
  2591. "funding": [
  2592. {
  2593. "url": "https://www.colinodell.com/sponsor",
  2594. "type": "custom"
  2595. },
  2596. {
  2597. "url": "https://www.paypal.me/colinpodell/10.00",
  2598. "type": "custom"
  2599. },
  2600. {
  2601. "url": "https://github.com/colinodell",
  2602. "type": "github"
  2603. },
  2604. {
  2605. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2606. "type": "tidelift"
  2607. }
  2608. ],
  2609. "time": "2023-03-24T15:16:10+00:00"
  2610. },
  2611. {
  2612. "name": "league/config",
  2613. "version": "v1.2.0",
  2614. "source": {
  2615. "type": "git",
  2616. "url": "https://github.com/thephpleague/config.git",
  2617. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2618. },
  2619. "dist": {
  2620. "type": "zip",
  2621. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2622. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2623. "shasum": ""
  2624. },
  2625. "require": {
  2626. "dflydev/dot-access-data": "^3.0.1",
  2627. "nette/schema": "^1.2",
  2628. "php": "^7.4 || ^8.0"
  2629. },
  2630. "require-dev": {
  2631. "phpstan/phpstan": "^1.8.2",
  2632. "phpunit/phpunit": "^9.5.5",
  2633. "scrutinizer/ocular": "^1.8.1",
  2634. "unleashedtech/php-coding-standard": "^3.1",
  2635. "vimeo/psalm": "^4.7.3"
  2636. },
  2637. "type": "library",
  2638. "extra": {
  2639. "branch-alias": {
  2640. "dev-main": "1.2-dev"
  2641. }
  2642. },
  2643. "autoload": {
  2644. "psr-4": {
  2645. "League\\Config\\": "src"
  2646. }
  2647. },
  2648. "notification-url": "https://packagist.org/downloads/",
  2649. "license": [
  2650. "BSD-3-Clause"
  2651. ],
  2652. "authors": [
  2653. {
  2654. "name": "Colin O'Dell",
  2655. "email": "colinodell@gmail.com",
  2656. "homepage": "https://www.colinodell.com",
  2657. "role": "Lead Developer"
  2658. }
  2659. ],
  2660. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2661. "homepage": "https://config.thephpleague.com",
  2662. "keywords": [
  2663. "array",
  2664. "config",
  2665. "configuration",
  2666. "dot",
  2667. "dot-access",
  2668. "nested",
  2669. "schema"
  2670. ],
  2671. "support": {
  2672. "docs": "https://config.thephpleague.com/",
  2673. "issues": "https://github.com/thephpleague/config/issues",
  2674. "rss": "https://github.com/thephpleague/config/releases.atom",
  2675. "source": "https://github.com/thephpleague/config"
  2676. },
  2677. "funding": [
  2678. {
  2679. "url": "https://www.colinodell.com/sponsor",
  2680. "type": "custom"
  2681. },
  2682. {
  2683. "url": "https://www.paypal.me/colinpodell/10.00",
  2684. "type": "custom"
  2685. },
  2686. {
  2687. "url": "https://github.com/colinodell",
  2688. "type": "github"
  2689. }
  2690. ],
  2691. "time": "2022-12-11T20:36:23+00:00"
  2692. },
  2693. {
  2694. "name": "league/flysystem",
  2695. "version": "3.15.1",
  2696. "source": {
  2697. "type": "git",
  2698. "url": "https://github.com/thephpleague/flysystem.git",
  2699. "reference": "a141d430414fcb8bf797a18716b09f759a385bed"
  2700. },
  2701. "dist": {
  2702. "type": "zip",
  2703. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a141d430414fcb8bf797a18716b09f759a385bed",
  2704. "reference": "a141d430414fcb8bf797a18716b09f759a385bed",
  2705. "shasum": ""
  2706. },
  2707. "require": {
  2708. "league/flysystem-local": "^3.0.0",
  2709. "league/mime-type-detection": "^1.0.0",
  2710. "php": "^8.0.2"
  2711. },
  2712. "conflict": {
  2713. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2714. "guzzlehttp/guzzle": "<7.0",
  2715. "guzzlehttp/ringphp": "<1.1.1",
  2716. "phpseclib/phpseclib": "3.0.15",
  2717. "symfony/http-client": "<5.2"
  2718. },
  2719. "require-dev": {
  2720. "async-aws/s3": "^1.5",
  2721. "async-aws/simple-s3": "^1.1",
  2722. "aws/aws-sdk-php": "^3.220.0",
  2723. "composer/semver": "^3.0",
  2724. "ext-fileinfo": "*",
  2725. "ext-ftp": "*",
  2726. "ext-zip": "*",
  2727. "friendsofphp/php-cs-fixer": "^3.5",
  2728. "google/cloud-storage": "^1.23",
  2729. "microsoft/azure-storage-blob": "^1.1",
  2730. "phpseclib/phpseclib": "^3.0.14",
  2731. "phpstan/phpstan": "^0.12.26",
  2732. "phpunit/phpunit": "^9.5.11",
  2733. "sabre/dav": "^4.3.1"
  2734. },
  2735. "type": "library",
  2736. "autoload": {
  2737. "psr-4": {
  2738. "League\\Flysystem\\": "src"
  2739. }
  2740. },
  2741. "notification-url": "https://packagist.org/downloads/",
  2742. "license": [
  2743. "MIT"
  2744. ],
  2745. "authors": [
  2746. {
  2747. "name": "Frank de Jonge",
  2748. "email": "info@frankdejonge.nl"
  2749. }
  2750. ],
  2751. "description": "File storage abstraction for PHP",
  2752. "keywords": [
  2753. "WebDAV",
  2754. "aws",
  2755. "cloud",
  2756. "file",
  2757. "files",
  2758. "filesystem",
  2759. "filesystems",
  2760. "ftp",
  2761. "s3",
  2762. "sftp",
  2763. "storage"
  2764. ],
  2765. "support": {
  2766. "issues": "https://github.com/thephpleague/flysystem/issues",
  2767. "source": "https://github.com/thephpleague/flysystem/tree/3.15.1"
  2768. },
  2769. "funding": [
  2770. {
  2771. "url": "https://ecologi.com/frankdejonge",
  2772. "type": "custom"
  2773. },
  2774. {
  2775. "url": "https://github.com/frankdejonge",
  2776. "type": "github"
  2777. }
  2778. ],
  2779. "time": "2023-05-04T09:04:26+00:00"
  2780. },
  2781. {
  2782. "name": "league/flysystem-local",
  2783. "version": "3.15.0",
  2784. "source": {
  2785. "type": "git",
  2786. "url": "https://github.com/thephpleague/flysystem-local.git",
  2787. "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3"
  2788. },
  2789. "dist": {
  2790. "type": "zip",
  2791. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/543f64c397fefdf9cfeac443ffb6beff602796b3",
  2792. "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3",
  2793. "shasum": ""
  2794. },
  2795. "require": {
  2796. "ext-fileinfo": "*",
  2797. "league/flysystem": "^3.0.0",
  2798. "league/mime-type-detection": "^1.0.0",
  2799. "php": "^8.0.2"
  2800. },
  2801. "type": "library",
  2802. "autoload": {
  2803. "psr-4": {
  2804. "League\\Flysystem\\Local\\": ""
  2805. }
  2806. },
  2807. "notification-url": "https://packagist.org/downloads/",
  2808. "license": [
  2809. "MIT"
  2810. ],
  2811. "authors": [
  2812. {
  2813. "name": "Frank de Jonge",
  2814. "email": "info@frankdejonge.nl"
  2815. }
  2816. ],
  2817. "description": "Local filesystem adapter for Flysystem.",
  2818. "keywords": [
  2819. "Flysystem",
  2820. "file",
  2821. "files",
  2822. "filesystem",
  2823. "local"
  2824. ],
  2825. "support": {
  2826. "issues": "https://github.com/thephpleague/flysystem-local/issues",
  2827. "source": "https://github.com/thephpleague/flysystem-local/tree/3.15.0"
  2828. },
  2829. "funding": [
  2830. {
  2831. "url": "https://ecologi.com/frankdejonge",
  2832. "type": "custom"
  2833. },
  2834. {
  2835. "url": "https://github.com/frankdejonge",
  2836. "type": "github"
  2837. }
  2838. ],
  2839. "time": "2023-05-02T20:02:14+00:00"
  2840. },
  2841. {
  2842. "name": "league/mime-type-detection",
  2843. "version": "1.13.0",
  2844. "source": {
  2845. "type": "git",
  2846. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2847. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96"
  2848. },
  2849. "dist": {
  2850. "type": "zip",
  2851. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96",
  2852. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96",
  2853. "shasum": ""
  2854. },
  2855. "require": {
  2856. "ext-fileinfo": "*",
  2857. "php": "^7.4 || ^8.0"
  2858. },
  2859. "require-dev": {
  2860. "friendsofphp/php-cs-fixer": "^3.2",
  2861. "phpstan/phpstan": "^0.12.68",
  2862. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2863. },
  2864. "type": "library",
  2865. "autoload": {
  2866. "psr-4": {
  2867. "League\\MimeTypeDetection\\": "src"
  2868. }
  2869. },
  2870. "notification-url": "https://packagist.org/downloads/",
  2871. "license": [
  2872. "MIT"
  2873. ],
  2874. "authors": [
  2875. {
  2876. "name": "Frank de Jonge",
  2877. "email": "info@frankdejonge.nl"
  2878. }
  2879. ],
  2880. "description": "Mime-type detection for Flysystem",
  2881. "support": {
  2882. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2883. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0"
  2884. },
  2885. "funding": [
  2886. {
  2887. "url": "https://github.com/frankdejonge",
  2888. "type": "github"
  2889. },
  2890. {
  2891. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2892. "type": "tidelift"
  2893. }
  2894. ],
  2895. "time": "2023-08-05T12:09:49+00:00"
  2896. },
  2897. {
  2898. "name": "league/oauth1-client",
  2899. "version": "v1.10.1",
  2900. "source": {
  2901. "type": "git",
  2902. "url": "https://github.com/thephpleague/oauth1-client.git",
  2903. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  2904. },
  2905. "dist": {
  2906. "type": "zip",
  2907. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  2908. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  2909. "shasum": ""
  2910. },
  2911. "require": {
  2912. "ext-json": "*",
  2913. "ext-openssl": "*",
  2914. "guzzlehttp/guzzle": "^6.0|^7.0",
  2915. "guzzlehttp/psr7": "^1.7|^2.0",
  2916. "php": ">=7.1||>=8.0"
  2917. },
  2918. "require-dev": {
  2919. "ext-simplexml": "*",
  2920. "friendsofphp/php-cs-fixer": "^2.17",
  2921. "mockery/mockery": "^1.3.3",
  2922. "phpstan/phpstan": "^0.12.42",
  2923. "phpunit/phpunit": "^7.5||9.5"
  2924. },
  2925. "suggest": {
  2926. "ext-simplexml": "For decoding XML-based responses."
  2927. },
  2928. "type": "library",
  2929. "extra": {
  2930. "branch-alias": {
  2931. "dev-master": "1.0-dev",
  2932. "dev-develop": "2.0-dev"
  2933. }
  2934. },
  2935. "autoload": {
  2936. "psr-4": {
  2937. "League\\OAuth1\\Client\\": "src/"
  2938. }
  2939. },
  2940. "notification-url": "https://packagist.org/downloads/",
  2941. "license": [
  2942. "MIT"
  2943. ],
  2944. "authors": [
  2945. {
  2946. "name": "Ben Corlett",
  2947. "email": "bencorlett@me.com",
  2948. "homepage": "http://www.webcomm.com.au",
  2949. "role": "Developer"
  2950. }
  2951. ],
  2952. "description": "OAuth 1.0 Client Library",
  2953. "keywords": [
  2954. "Authentication",
  2955. "SSO",
  2956. "authorization",
  2957. "bitbucket",
  2958. "identity",
  2959. "idp",
  2960. "oauth",
  2961. "oauth1",
  2962. "single sign on",
  2963. "trello",
  2964. "tumblr",
  2965. "twitter"
  2966. ],
  2967. "support": {
  2968. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  2969. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  2970. },
  2971. "time": "2022-04-15T14:02:14+00:00"
  2972. },
  2973. {
  2974. "name": "league/uri-parser",
  2975. "version": "1.4.1",
  2976. "source": {
  2977. "type": "git",
  2978. "url": "https://github.com/thephpleague/uri-parser.git",
  2979. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00"
  2980. },
  2981. "dist": {
  2982. "type": "zip",
  2983. "url": "https://api.github.com/repos/thephpleague/uri-parser/zipball/671548427e4c932352d9b9279fdfa345bf63fa00",
  2984. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00",
  2985. "shasum": ""
  2986. },
  2987. "require": {
  2988. "php": ">=7.0.0"
  2989. },
  2990. "require-dev": {
  2991. "friendsofphp/php-cs-fixer": "^2.0",
  2992. "phpstan/phpstan": "^0.9.2",
  2993. "phpstan/phpstan-phpunit": "^0.9.4",
  2994. "phpstan/phpstan-strict-rules": "^0.9.0",
  2995. "phpunit/phpunit": "^6.0"
  2996. },
  2997. "suggest": {
  2998. "ext-intl": "Allow parsing RFC3987 compliant hosts",
  2999. "league/uri-schemes": "Allow validating and normalizing URI parsing results"
  3000. },
  3001. "type": "library",
  3002. "extra": {
  3003. "branch-alias": {
  3004. "dev-master": "1.x-dev"
  3005. }
  3006. },
  3007. "autoload": {
  3008. "files": [
  3009. "src/functions_include.php"
  3010. ],
  3011. "psr-4": {
  3012. "League\\Uri\\": "src"
  3013. }
  3014. },
  3015. "notification-url": "https://packagist.org/downloads/",
  3016. "license": [
  3017. "MIT"
  3018. ],
  3019. "authors": [
  3020. {
  3021. "name": "Ignace Nyamagana Butera",
  3022. "email": "nyamsprod@gmail.com",
  3023. "homepage": "https://nyamsprod.com"
  3024. }
  3025. ],
  3026. "description": "userland URI parser RFC 3986 compliant",
  3027. "homepage": "https://github.com/thephpleague/uri-parser",
  3028. "keywords": [
  3029. "parse_url",
  3030. "parser",
  3031. "rfc3986",
  3032. "rfc3987",
  3033. "uri",
  3034. "url"
  3035. ],
  3036. "support": {
  3037. "issues": "https://github.com/thephpleague/uri-parser/issues",
  3038. "source": "https://github.com/thephpleague/uri-parser/tree/master"
  3039. },
  3040. "abandoned": true,
  3041. "time": "2018-11-22T07:55:51+00:00"
  3042. },
  3043. {
  3044. "name": "leandrocfe/filament-apex-charts",
  3045. "version": "1.0.3",
  3046. "source": {
  3047. "type": "git",
  3048. "url": "https://github.com/leandrocfe/filament-apex-charts.git",
  3049. "reference": "af32c6f3014d9fd784d4d7329e9b1cce56b37196"
  3050. },
  3051. "dist": {
  3052. "type": "zip",
  3053. "url": "https://api.github.com/repos/leandrocfe/filament-apex-charts/zipball/af32c6f3014d9fd784d4d7329e9b1cce56b37196",
  3054. "reference": "af32c6f3014d9fd784d4d7329e9b1cce56b37196",
  3055. "shasum": ""
  3056. },
  3057. "require": {
  3058. "filament/filament": "^2.16",
  3059. "illuminate/contracts": "^9.0|^10.0",
  3060. "livewire/livewire": "^2.11",
  3061. "php": "^8.1",
  3062. "spatie/laravel-package-tools": "^1.13.0"
  3063. },
  3064. "require-dev": {
  3065. "laravel/pint": "^1.0",
  3066. "nunomaduro/collision": "^6.0|^7.0",
  3067. "nunomaduro/larastan": "^2.0.1",
  3068. "orchestra/testbench": "^7.0|^8.0",
  3069. "pestphp/pest": "^1.21",
  3070. "pestphp/pest-plugin-laravel": "^1.1",
  3071. "phpstan/extension-installer": "^1.1",
  3072. "phpstan/phpstan-deprecation-rules": "^1.0",
  3073. "phpstan/phpstan-phpunit": "^1.0",
  3074. "phpunit/phpunit": "^9.5|^10.0"
  3075. },
  3076. "type": "library",
  3077. "extra": {
  3078. "laravel": {
  3079. "providers": [
  3080. "Leandrocfe\\FilamentApexCharts\\FilamentApexChartsServiceProvider"
  3081. ],
  3082. "aliases": {
  3083. "FilamentApexCharts": "Leandrocfe\\FilamentApexCharts\\Facades\\FilamentApexCharts"
  3084. }
  3085. }
  3086. },
  3087. "autoload": {
  3088. "psr-4": {
  3089. "Leandrocfe\\FilamentApexCharts\\": "src"
  3090. }
  3091. },
  3092. "notification-url": "https://packagist.org/downloads/",
  3093. "license": [
  3094. "MIT"
  3095. ],
  3096. "authors": [
  3097. {
  3098. "name": "Leandro Costa Ferreira",
  3099. "email": "leandrocfe@gmail.com",
  3100. "role": "Developer"
  3101. }
  3102. ],
  3103. "description": "Apex Charts integration for Filament PHP.",
  3104. "homepage": "https://github.com/leandrocfe/filament-apex-charts",
  3105. "keywords": [
  3106. "apexcharts",
  3107. "filament-apex-charts",
  3108. "laravel",
  3109. "leandrocfe"
  3110. ],
  3111. "support": {
  3112. "issues": "https://github.com/leandrocfe/filament-apex-charts/issues",
  3113. "source": "https://github.com/leandrocfe/filament-apex-charts/tree/1.0.3"
  3114. },
  3115. "time": "2023-06-02T11:05:07+00:00"
  3116. },
  3117. {
  3118. "name": "livewire/livewire",
  3119. "version": "v2.12.5",
  3120. "source": {
  3121. "type": "git",
  3122. "url": "https://github.com/livewire/livewire.git",
  3123. "reference": "96a249f5ab51d8377817d802f91d1e440869c1d6"
  3124. },
  3125. "dist": {
  3126. "type": "zip",
  3127. "url": "https://api.github.com/repos/livewire/livewire/zipball/96a249f5ab51d8377817d802f91d1e440869c1d6",
  3128. "reference": "96a249f5ab51d8377817d802f91d1e440869c1d6",
  3129. "shasum": ""
  3130. },
  3131. "require": {
  3132. "illuminate/database": "^7.0|^8.0|^9.0|^10.0",
  3133. "illuminate/support": "^7.0|^8.0|^9.0|^10.0",
  3134. "illuminate/validation": "^7.0|^8.0|^9.0|^10.0",
  3135. "league/mime-type-detection": "^1.9",
  3136. "php": "^7.2.5|^8.0",
  3137. "symfony/http-kernel": "^5.0|^6.0"
  3138. },
  3139. "require-dev": {
  3140. "calebporzio/sushi": "^2.1",
  3141. "laravel/framework": "^7.0|^8.0|^9.0|^10.0",
  3142. "mockery/mockery": "^1.3.1",
  3143. "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0",
  3144. "orchestra/testbench-dusk": "^5.2|^6.0|^7.0|^8.0",
  3145. "phpunit/phpunit": "^8.4|^9.0",
  3146. "psy/psysh": "@stable"
  3147. },
  3148. "type": "library",
  3149. "extra": {
  3150. "laravel": {
  3151. "providers": [
  3152. "Livewire\\LivewireServiceProvider"
  3153. ],
  3154. "aliases": {
  3155. "Livewire": "Livewire\\Livewire"
  3156. }
  3157. }
  3158. },
  3159. "autoload": {
  3160. "files": [
  3161. "src/helpers.php"
  3162. ],
  3163. "psr-4": {
  3164. "Livewire\\": "src/"
  3165. }
  3166. },
  3167. "notification-url": "https://packagist.org/downloads/",
  3168. "license": [
  3169. "MIT"
  3170. ],
  3171. "authors": [
  3172. {
  3173. "name": "Caleb Porzio",
  3174. "email": "calebporzio@gmail.com"
  3175. }
  3176. ],
  3177. "description": "A front-end framework for Laravel.",
  3178. "support": {
  3179. "issues": "https://github.com/livewire/livewire/issues",
  3180. "source": "https://github.com/livewire/livewire/tree/v2.12.5"
  3181. },
  3182. "funding": [
  3183. {
  3184. "url": "https://github.com/livewire",
  3185. "type": "github"
  3186. }
  3187. ],
  3188. "time": "2023-08-02T06:31:31+00:00"
  3189. },
  3190. {
  3191. "name": "masterminds/html5",
  3192. "version": "2.8.1",
  3193. "source": {
  3194. "type": "git",
  3195. "url": "https://github.com/Masterminds/html5-php.git",
  3196. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  3197. },
  3198. "dist": {
  3199. "type": "zip",
  3200. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  3201. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  3202. "shasum": ""
  3203. },
  3204. "require": {
  3205. "ext-dom": "*",
  3206. "php": ">=5.3.0"
  3207. },
  3208. "require-dev": {
  3209. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  3210. },
  3211. "type": "library",
  3212. "extra": {
  3213. "branch-alias": {
  3214. "dev-master": "2.7-dev"
  3215. }
  3216. },
  3217. "autoload": {
  3218. "psr-4": {
  3219. "Masterminds\\": "src"
  3220. }
  3221. },
  3222. "notification-url": "https://packagist.org/downloads/",
  3223. "license": [
  3224. "MIT"
  3225. ],
  3226. "authors": [
  3227. {
  3228. "name": "Matt Butcher",
  3229. "email": "technosophos@gmail.com"
  3230. },
  3231. {
  3232. "name": "Matt Farina",
  3233. "email": "matt@mattfarina.com"
  3234. },
  3235. {
  3236. "name": "Asmir Mustafic",
  3237. "email": "goetas@gmail.com"
  3238. }
  3239. ],
  3240. "description": "An HTML5 parser and serializer.",
  3241. "homepage": "http://masterminds.github.io/html5-php",
  3242. "keywords": [
  3243. "HTML5",
  3244. "dom",
  3245. "html",
  3246. "parser",
  3247. "querypath",
  3248. "serializer",
  3249. "xml"
  3250. ],
  3251. "support": {
  3252. "issues": "https://github.com/Masterminds/html5-php/issues",
  3253. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  3254. },
  3255. "time": "2023-05-10T11:58:31+00:00"
  3256. },
  3257. {
  3258. "name": "matomo/device-detector",
  3259. "version": "6.1.4",
  3260. "source": {
  3261. "type": "git",
  3262. "url": "https://github.com/matomo-org/device-detector.git",
  3263. "reference": "74f6c4f6732b3ad6cdf25560746841d522969112"
  3264. },
  3265. "dist": {
  3266. "type": "zip",
  3267. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/74f6c4f6732b3ad6cdf25560746841d522969112",
  3268. "reference": "74f6c4f6732b3ad6cdf25560746841d522969112",
  3269. "shasum": ""
  3270. },
  3271. "require": {
  3272. "mustangostang/spyc": "*",
  3273. "php": "^7.2|^8.0"
  3274. },
  3275. "replace": {
  3276. "piwik/device-detector": "self.version"
  3277. },
  3278. "require-dev": {
  3279. "matthiasmullie/scrapbook": "^1.4.7",
  3280. "mayflower/mo4-coding-standard": "^v8.0.0",
  3281. "phpstan/phpstan": "^0.12.52",
  3282. "phpunit/phpunit": "^8.5.8",
  3283. "psr/cache": "^1.0.1",
  3284. "psr/simple-cache": "^1.0.1",
  3285. "symfony/yaml": "^5.1.7"
  3286. },
  3287. "suggest": {
  3288. "doctrine/cache": "Can directly be used for caching purpose",
  3289. "ext-yaml": "Necessary for using the Pecl YAML parser"
  3290. },
  3291. "type": "library",
  3292. "autoload": {
  3293. "psr-4": {
  3294. "DeviceDetector\\": ""
  3295. },
  3296. "exclude-from-classmap": [
  3297. "Tests/"
  3298. ]
  3299. },
  3300. "notification-url": "https://packagist.org/downloads/",
  3301. "license": [
  3302. "LGPL-3.0-or-later"
  3303. ],
  3304. "authors": [
  3305. {
  3306. "name": "The Matomo Team",
  3307. "email": "hello@matomo.org",
  3308. "homepage": "https://matomo.org/team/"
  3309. }
  3310. ],
  3311. "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.",
  3312. "homepage": "https://matomo.org",
  3313. "keywords": [
  3314. "devicedetection",
  3315. "parser",
  3316. "useragent"
  3317. ],
  3318. "support": {
  3319. "forum": "https://forum.matomo.org/",
  3320. "issues": "https://github.com/matomo-org/device-detector/issues",
  3321. "source": "https://github.com/matomo-org/matomo",
  3322. "wiki": "https://dev.matomo.org/"
  3323. },
  3324. "time": "2023-08-02T08:48:53+00:00"
  3325. },
  3326. {
  3327. "name": "monolog/monolog",
  3328. "version": "3.4.0",
  3329. "source": {
  3330. "type": "git",
  3331. "url": "https://github.com/Seldaek/monolog.git",
  3332. "reference": "e2392369686d420ca32df3803de28b5d6f76867d"
  3333. },
  3334. "dist": {
  3335. "type": "zip",
  3336. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e2392369686d420ca32df3803de28b5d6f76867d",
  3337. "reference": "e2392369686d420ca32df3803de28b5d6f76867d",
  3338. "shasum": ""
  3339. },
  3340. "require": {
  3341. "php": ">=8.1",
  3342. "psr/log": "^2.0 || ^3.0"
  3343. },
  3344. "provide": {
  3345. "psr/log-implementation": "3.0.0"
  3346. },
  3347. "require-dev": {
  3348. "aws/aws-sdk-php": "^3.0",
  3349. "doctrine/couchdb": "~1.0@dev",
  3350. "elasticsearch/elasticsearch": "^7 || ^8",
  3351. "ext-json": "*",
  3352. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  3353. "guzzlehttp/guzzle": "^7.4.5",
  3354. "guzzlehttp/psr7": "^2.2",
  3355. "mongodb/mongodb": "^1.8",
  3356. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3357. "phpstan/phpstan": "^1.9",
  3358. "phpstan/phpstan-deprecation-rules": "^1.0",
  3359. "phpstan/phpstan-strict-rules": "^1.4",
  3360. "phpunit/phpunit": "^10.1",
  3361. "predis/predis": "^1.1 || ^2",
  3362. "ruflin/elastica": "^7",
  3363. "symfony/mailer": "^5.4 || ^6",
  3364. "symfony/mime": "^5.4 || ^6"
  3365. },
  3366. "suggest": {
  3367. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3368. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3369. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3370. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3371. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3372. "ext-mbstring": "Allow to work properly with unicode symbols",
  3373. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3374. "ext-openssl": "Required to send log messages using SSL",
  3375. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3376. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3377. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3378. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3379. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3380. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3381. },
  3382. "type": "library",
  3383. "extra": {
  3384. "branch-alias": {
  3385. "dev-main": "3.x-dev"
  3386. }
  3387. },
  3388. "autoload": {
  3389. "psr-4": {
  3390. "Monolog\\": "src/Monolog"
  3391. }
  3392. },
  3393. "notification-url": "https://packagist.org/downloads/",
  3394. "license": [
  3395. "MIT"
  3396. ],
  3397. "authors": [
  3398. {
  3399. "name": "Jordi Boggiano",
  3400. "email": "j.boggiano@seld.be",
  3401. "homepage": "https://seld.be"
  3402. }
  3403. ],
  3404. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3405. "homepage": "https://github.com/Seldaek/monolog",
  3406. "keywords": [
  3407. "log",
  3408. "logging",
  3409. "psr-3"
  3410. ],
  3411. "support": {
  3412. "issues": "https://github.com/Seldaek/monolog/issues",
  3413. "source": "https://github.com/Seldaek/monolog/tree/3.4.0"
  3414. },
  3415. "funding": [
  3416. {
  3417. "url": "https://github.com/Seldaek",
  3418. "type": "github"
  3419. },
  3420. {
  3421. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3422. "type": "tidelift"
  3423. }
  3424. ],
  3425. "time": "2023-06-21T08:46:11+00:00"
  3426. },
  3427. {
  3428. "name": "mustangostang/spyc",
  3429. "version": "0.6.3",
  3430. "source": {
  3431. "type": "git",
  3432. "url": "git@github.com:mustangostang/spyc.git",
  3433. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  3434. },
  3435. "dist": {
  3436. "type": "zip",
  3437. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  3438. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  3439. "shasum": ""
  3440. },
  3441. "require": {
  3442. "php": ">=5.3.1"
  3443. },
  3444. "require-dev": {
  3445. "phpunit/phpunit": "4.3.*@dev"
  3446. },
  3447. "type": "library",
  3448. "extra": {
  3449. "branch-alias": {
  3450. "dev-master": "0.5.x-dev"
  3451. }
  3452. },
  3453. "autoload": {
  3454. "files": [
  3455. "Spyc.php"
  3456. ]
  3457. },
  3458. "notification-url": "https://packagist.org/downloads/",
  3459. "license": [
  3460. "MIT"
  3461. ],
  3462. "authors": [
  3463. {
  3464. "name": "mustangostang",
  3465. "email": "vlad.andersen@gmail.com"
  3466. }
  3467. ],
  3468. "description": "A simple YAML loader/dumper class for PHP",
  3469. "homepage": "https://github.com/mustangostang/spyc/",
  3470. "keywords": [
  3471. "spyc",
  3472. "yaml",
  3473. "yml"
  3474. ],
  3475. "time": "2019-09-10T13:16:29+00:00"
  3476. },
  3477. {
  3478. "name": "nesbot/carbon",
  3479. "version": "2.68.1",
  3480. "source": {
  3481. "type": "git",
  3482. "url": "https://github.com/briannesbitt/Carbon.git",
  3483. "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da"
  3484. },
  3485. "dist": {
  3486. "type": "zip",
  3487. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4f991ed2a403c85efbc4f23eb4030063fdbe01da",
  3488. "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da",
  3489. "shasum": ""
  3490. },
  3491. "require": {
  3492. "ext-json": "*",
  3493. "php": "^7.1.8 || ^8.0",
  3494. "symfony/polyfill-mbstring": "^1.0",
  3495. "symfony/polyfill-php80": "^1.16",
  3496. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3497. },
  3498. "require-dev": {
  3499. "doctrine/dbal": "^2.0 || ^3.1.4",
  3500. "doctrine/orm": "^2.7",
  3501. "friendsofphp/php-cs-fixer": "^3.0",
  3502. "kylekatarnls/multi-tester": "^2.0",
  3503. "ondrejmirtes/better-reflection": "*",
  3504. "phpmd/phpmd": "^2.9",
  3505. "phpstan/extension-installer": "^1.0",
  3506. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3507. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3508. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3509. "squizlabs/php_codesniffer": "^3.4"
  3510. },
  3511. "bin": [
  3512. "bin/carbon"
  3513. ],
  3514. "type": "library",
  3515. "extra": {
  3516. "branch-alias": {
  3517. "dev-3.x": "3.x-dev",
  3518. "dev-master": "2.x-dev"
  3519. },
  3520. "laravel": {
  3521. "providers": [
  3522. "Carbon\\Laravel\\ServiceProvider"
  3523. ]
  3524. },
  3525. "phpstan": {
  3526. "includes": [
  3527. "extension.neon"
  3528. ]
  3529. }
  3530. },
  3531. "autoload": {
  3532. "psr-4": {
  3533. "Carbon\\": "src/Carbon/"
  3534. }
  3535. },
  3536. "notification-url": "https://packagist.org/downloads/",
  3537. "license": [
  3538. "MIT"
  3539. ],
  3540. "authors": [
  3541. {
  3542. "name": "Brian Nesbitt",
  3543. "email": "brian@nesbot.com",
  3544. "homepage": "https://markido.com"
  3545. },
  3546. {
  3547. "name": "kylekatarnls",
  3548. "homepage": "https://github.com/kylekatarnls"
  3549. }
  3550. ],
  3551. "description": "An API extension for DateTime that supports 281 different languages.",
  3552. "homepage": "https://carbon.nesbot.com",
  3553. "keywords": [
  3554. "date",
  3555. "datetime",
  3556. "time"
  3557. ],
  3558. "support": {
  3559. "docs": "https://carbon.nesbot.com/docs",
  3560. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3561. "source": "https://github.com/briannesbitt/Carbon"
  3562. },
  3563. "funding": [
  3564. {
  3565. "url": "https://github.com/sponsors/kylekatarnls",
  3566. "type": "github"
  3567. },
  3568. {
  3569. "url": "https://opencollective.com/Carbon#sponsor",
  3570. "type": "opencollective"
  3571. },
  3572. {
  3573. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3574. "type": "tidelift"
  3575. }
  3576. ],
  3577. "time": "2023-06-20T18:29:04+00:00"
  3578. },
  3579. {
  3580. "name": "nette/schema",
  3581. "version": "v1.2.4",
  3582. "source": {
  3583. "type": "git",
  3584. "url": "https://github.com/nette/schema.git",
  3585. "reference": "c9ff517a53903b3d4e29ec547fb20feecb05b8ab"
  3586. },
  3587. "dist": {
  3588. "type": "zip",
  3589. "url": "https://api.github.com/repos/nette/schema/zipball/c9ff517a53903b3d4e29ec547fb20feecb05b8ab",
  3590. "reference": "c9ff517a53903b3d4e29ec547fb20feecb05b8ab",
  3591. "shasum": ""
  3592. },
  3593. "require": {
  3594. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3595. "php": "7.1 - 8.3"
  3596. },
  3597. "require-dev": {
  3598. "nette/tester": "^2.3 || ^2.4",
  3599. "phpstan/phpstan-nette": "^1.0",
  3600. "tracy/tracy": "^2.7"
  3601. },
  3602. "type": "library",
  3603. "extra": {
  3604. "branch-alias": {
  3605. "dev-master": "1.2-dev"
  3606. }
  3607. },
  3608. "autoload": {
  3609. "classmap": [
  3610. "src/"
  3611. ]
  3612. },
  3613. "notification-url": "https://packagist.org/downloads/",
  3614. "license": [
  3615. "BSD-3-Clause",
  3616. "GPL-2.0-only",
  3617. "GPL-3.0-only"
  3618. ],
  3619. "authors": [
  3620. {
  3621. "name": "David Grudl",
  3622. "homepage": "https://davidgrudl.com"
  3623. },
  3624. {
  3625. "name": "Nette Community",
  3626. "homepage": "https://nette.org/contributors"
  3627. }
  3628. ],
  3629. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3630. "homepage": "https://nette.org",
  3631. "keywords": [
  3632. "config",
  3633. "nette"
  3634. ],
  3635. "support": {
  3636. "issues": "https://github.com/nette/schema/issues",
  3637. "source": "https://github.com/nette/schema/tree/v1.2.4"
  3638. },
  3639. "time": "2023-08-05T18:56:25+00:00"
  3640. },
  3641. {
  3642. "name": "nette/utils",
  3643. "version": "v4.0.1",
  3644. "source": {
  3645. "type": "git",
  3646. "url": "https://github.com/nette/utils.git",
  3647. "reference": "9124157137da01b1f5a5a22d6486cb975f26db7e"
  3648. },
  3649. "dist": {
  3650. "type": "zip",
  3651. "url": "https://api.github.com/repos/nette/utils/zipball/9124157137da01b1f5a5a22d6486cb975f26db7e",
  3652. "reference": "9124157137da01b1f5a5a22d6486cb975f26db7e",
  3653. "shasum": ""
  3654. },
  3655. "require": {
  3656. "php": ">=8.0 <8.4"
  3657. },
  3658. "conflict": {
  3659. "nette/finder": "<3",
  3660. "nette/schema": "<1.2.2"
  3661. },
  3662. "require-dev": {
  3663. "jetbrains/phpstorm-attributes": "dev-master",
  3664. "nette/tester": "^2.5",
  3665. "phpstan/phpstan": "^1.0",
  3666. "tracy/tracy": "^2.9"
  3667. },
  3668. "suggest": {
  3669. "ext-gd": "to use Image",
  3670. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3671. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3672. "ext-json": "to use Nette\\Utils\\Json",
  3673. "ext-mbstring": "to use Strings::lower() etc...",
  3674. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3675. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3676. },
  3677. "type": "library",
  3678. "extra": {
  3679. "branch-alias": {
  3680. "dev-master": "4.0-dev"
  3681. }
  3682. },
  3683. "autoload": {
  3684. "classmap": [
  3685. "src/"
  3686. ]
  3687. },
  3688. "notification-url": "https://packagist.org/downloads/",
  3689. "license": [
  3690. "BSD-3-Clause",
  3691. "GPL-2.0-only",
  3692. "GPL-3.0-only"
  3693. ],
  3694. "authors": [
  3695. {
  3696. "name": "David Grudl",
  3697. "homepage": "https://davidgrudl.com"
  3698. },
  3699. {
  3700. "name": "Nette Community",
  3701. "homepage": "https://nette.org/contributors"
  3702. }
  3703. ],
  3704. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3705. "homepage": "https://nette.org",
  3706. "keywords": [
  3707. "array",
  3708. "core",
  3709. "datetime",
  3710. "images",
  3711. "json",
  3712. "nette",
  3713. "paginator",
  3714. "password",
  3715. "slugify",
  3716. "string",
  3717. "unicode",
  3718. "utf-8",
  3719. "utility",
  3720. "validation"
  3721. ],
  3722. "support": {
  3723. "issues": "https://github.com/nette/utils/issues",
  3724. "source": "https://github.com/nette/utils/tree/v4.0.1"
  3725. },
  3726. "time": "2023-07-30T15:42:21+00:00"
  3727. },
  3728. {
  3729. "name": "nikic/php-parser",
  3730. "version": "v4.16.0",
  3731. "source": {
  3732. "type": "git",
  3733. "url": "https://github.com/nikic/PHP-Parser.git",
  3734. "reference": "19526a33fb561ef417e822e85f08a00db4059c17"
  3735. },
  3736. "dist": {
  3737. "type": "zip",
  3738. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/19526a33fb561ef417e822e85f08a00db4059c17",
  3739. "reference": "19526a33fb561ef417e822e85f08a00db4059c17",
  3740. "shasum": ""
  3741. },
  3742. "require": {
  3743. "ext-tokenizer": "*",
  3744. "php": ">=7.0"
  3745. },
  3746. "require-dev": {
  3747. "ircmaxell/php-yacc": "^0.0.7",
  3748. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3749. },
  3750. "bin": [
  3751. "bin/php-parse"
  3752. ],
  3753. "type": "library",
  3754. "extra": {
  3755. "branch-alias": {
  3756. "dev-master": "4.9-dev"
  3757. }
  3758. },
  3759. "autoload": {
  3760. "psr-4": {
  3761. "PhpParser\\": "lib/PhpParser"
  3762. }
  3763. },
  3764. "notification-url": "https://packagist.org/downloads/",
  3765. "license": [
  3766. "BSD-3-Clause"
  3767. ],
  3768. "authors": [
  3769. {
  3770. "name": "Nikita Popov"
  3771. }
  3772. ],
  3773. "description": "A PHP parser written in PHP",
  3774. "keywords": [
  3775. "parser",
  3776. "php"
  3777. ],
  3778. "support": {
  3779. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3780. "source": "https://github.com/nikic/PHP-Parser/tree/v4.16.0"
  3781. },
  3782. "time": "2023-06-25T14:52:30+00:00"
  3783. },
  3784. {
  3785. "name": "nunomaduro/termwind",
  3786. "version": "v1.15.1",
  3787. "source": {
  3788. "type": "git",
  3789. "url": "https://github.com/nunomaduro/termwind.git",
  3790. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  3791. },
  3792. "dist": {
  3793. "type": "zip",
  3794. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3795. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3796. "shasum": ""
  3797. },
  3798. "require": {
  3799. "ext-mbstring": "*",
  3800. "php": "^8.0",
  3801. "symfony/console": "^5.3.0|^6.0.0"
  3802. },
  3803. "require-dev": {
  3804. "ergebnis/phpstan-rules": "^1.0.",
  3805. "illuminate/console": "^8.0|^9.0",
  3806. "illuminate/support": "^8.0|^9.0",
  3807. "laravel/pint": "^1.0.0",
  3808. "pestphp/pest": "^1.21.0",
  3809. "pestphp/pest-plugin-mock": "^1.0",
  3810. "phpstan/phpstan": "^1.4.6",
  3811. "phpstan/phpstan-strict-rules": "^1.1.0",
  3812. "symfony/var-dumper": "^5.2.7|^6.0.0",
  3813. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3814. },
  3815. "type": "library",
  3816. "extra": {
  3817. "laravel": {
  3818. "providers": [
  3819. "Termwind\\Laravel\\TermwindServiceProvider"
  3820. ]
  3821. }
  3822. },
  3823. "autoload": {
  3824. "files": [
  3825. "src/Functions.php"
  3826. ],
  3827. "psr-4": {
  3828. "Termwind\\": "src/"
  3829. }
  3830. },
  3831. "notification-url": "https://packagist.org/downloads/",
  3832. "license": [
  3833. "MIT"
  3834. ],
  3835. "authors": [
  3836. {
  3837. "name": "Nuno Maduro",
  3838. "email": "enunomaduro@gmail.com"
  3839. }
  3840. ],
  3841. "description": "Its like Tailwind CSS, but for the console.",
  3842. "keywords": [
  3843. "cli",
  3844. "console",
  3845. "css",
  3846. "package",
  3847. "php",
  3848. "style"
  3849. ],
  3850. "support": {
  3851. "issues": "https://github.com/nunomaduro/termwind/issues",
  3852. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  3853. },
  3854. "funding": [
  3855. {
  3856. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3857. "type": "custom"
  3858. },
  3859. {
  3860. "url": "https://github.com/nunomaduro",
  3861. "type": "github"
  3862. },
  3863. {
  3864. "url": "https://github.com/xiCO2k",
  3865. "type": "github"
  3866. }
  3867. ],
  3868. "time": "2023-02-08T01:06:31+00:00"
  3869. },
  3870. {
  3871. "name": "paragonie/constant_time_encoding",
  3872. "version": "v2.6.3",
  3873. "source": {
  3874. "type": "git",
  3875. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3876. "reference": "58c3f47f650c94ec05a151692652a868995d2938"
  3877. },
  3878. "dist": {
  3879. "type": "zip",
  3880. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938",
  3881. "reference": "58c3f47f650c94ec05a151692652a868995d2938",
  3882. "shasum": ""
  3883. },
  3884. "require": {
  3885. "php": "^7|^8"
  3886. },
  3887. "require-dev": {
  3888. "phpunit/phpunit": "^6|^7|^8|^9",
  3889. "vimeo/psalm": "^1|^2|^3|^4"
  3890. },
  3891. "type": "library",
  3892. "autoload": {
  3893. "psr-4": {
  3894. "ParagonIE\\ConstantTime\\": "src/"
  3895. }
  3896. },
  3897. "notification-url": "https://packagist.org/downloads/",
  3898. "license": [
  3899. "MIT"
  3900. ],
  3901. "authors": [
  3902. {
  3903. "name": "Paragon Initiative Enterprises",
  3904. "email": "security@paragonie.com",
  3905. "homepage": "https://paragonie.com",
  3906. "role": "Maintainer"
  3907. },
  3908. {
  3909. "name": "Steve 'Sc00bz' Thomas",
  3910. "email": "steve@tobtu.com",
  3911. "homepage": "https://www.tobtu.com",
  3912. "role": "Original Developer"
  3913. }
  3914. ],
  3915. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3916. "keywords": [
  3917. "base16",
  3918. "base32",
  3919. "base32_decode",
  3920. "base32_encode",
  3921. "base64",
  3922. "base64_decode",
  3923. "base64_encode",
  3924. "bin2hex",
  3925. "encoding",
  3926. "hex",
  3927. "hex2bin",
  3928. "rfc4648"
  3929. ],
  3930. "support": {
  3931. "email": "info@paragonie.com",
  3932. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3933. "source": "https://github.com/paragonie/constant_time_encoding"
  3934. },
  3935. "time": "2022-06-14T06:56:20+00:00"
  3936. },
  3937. {
  3938. "name": "phpoption/phpoption",
  3939. "version": "1.9.1",
  3940. "source": {
  3941. "type": "git",
  3942. "url": "https://github.com/schmittjoh/php-option.git",
  3943. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  3944. },
  3945. "dist": {
  3946. "type": "zip",
  3947. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  3948. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  3949. "shasum": ""
  3950. },
  3951. "require": {
  3952. "php": "^7.2.5 || ^8.0"
  3953. },
  3954. "require-dev": {
  3955. "bamarni/composer-bin-plugin": "^1.8.2",
  3956. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  3957. },
  3958. "type": "library",
  3959. "extra": {
  3960. "bamarni-bin": {
  3961. "bin-links": true,
  3962. "forward-command": true
  3963. },
  3964. "branch-alias": {
  3965. "dev-master": "1.9-dev"
  3966. }
  3967. },
  3968. "autoload": {
  3969. "psr-4": {
  3970. "PhpOption\\": "src/PhpOption/"
  3971. }
  3972. },
  3973. "notification-url": "https://packagist.org/downloads/",
  3974. "license": [
  3975. "Apache-2.0"
  3976. ],
  3977. "authors": [
  3978. {
  3979. "name": "Johannes M. Schmitt",
  3980. "email": "schmittjoh@gmail.com",
  3981. "homepage": "https://github.com/schmittjoh"
  3982. },
  3983. {
  3984. "name": "Graham Campbell",
  3985. "email": "hello@gjcampbell.co.uk",
  3986. "homepage": "https://github.com/GrahamCampbell"
  3987. }
  3988. ],
  3989. "description": "Option Type for PHP",
  3990. "keywords": [
  3991. "language",
  3992. "option",
  3993. "php",
  3994. "type"
  3995. ],
  3996. "support": {
  3997. "issues": "https://github.com/schmittjoh/php-option/issues",
  3998. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  3999. },
  4000. "funding": [
  4001. {
  4002. "url": "https://github.com/GrahamCampbell",
  4003. "type": "github"
  4004. },
  4005. {
  4006. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4007. "type": "tidelift"
  4008. }
  4009. ],
  4010. "time": "2023-02-25T19:38:58+00:00"
  4011. },
  4012. {
  4013. "name": "pragmarx/google2fa",
  4014. "version": "v8.0.1",
  4015. "source": {
  4016. "type": "git",
  4017. "url": "https://github.com/antonioribeiro/google2fa.git",
  4018. "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3"
  4019. },
  4020. "dist": {
  4021. "type": "zip",
  4022. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/80c3d801b31fe165f8fe99ea085e0a37834e1be3",
  4023. "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3",
  4024. "shasum": ""
  4025. },
  4026. "require": {
  4027. "paragonie/constant_time_encoding": "^1.0|^2.0",
  4028. "php": "^7.1|^8.0"
  4029. },
  4030. "require-dev": {
  4031. "phpstan/phpstan": "^0.12.18",
  4032. "phpunit/phpunit": "^7.5.15|^8.5|^9.0"
  4033. },
  4034. "type": "library",
  4035. "autoload": {
  4036. "psr-4": {
  4037. "PragmaRX\\Google2FA\\": "src/"
  4038. }
  4039. },
  4040. "notification-url": "https://packagist.org/downloads/",
  4041. "license": [
  4042. "MIT"
  4043. ],
  4044. "authors": [
  4045. {
  4046. "name": "Antonio Carlos Ribeiro",
  4047. "email": "acr@antoniocarlosribeiro.com",
  4048. "role": "Creator & Designer"
  4049. }
  4050. ],
  4051. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  4052. "keywords": [
  4053. "2fa",
  4054. "Authentication",
  4055. "Two Factor Authentication",
  4056. "google2fa"
  4057. ],
  4058. "support": {
  4059. "issues": "https://github.com/antonioribeiro/google2fa/issues",
  4060. "source": "https://github.com/antonioribeiro/google2fa/tree/v8.0.1"
  4061. },
  4062. "time": "2022-06-13T21:57:56+00:00"
  4063. },
  4064. {
  4065. "name": "psr/container",
  4066. "version": "2.0.2",
  4067. "source": {
  4068. "type": "git",
  4069. "url": "https://github.com/php-fig/container.git",
  4070. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4071. },
  4072. "dist": {
  4073. "type": "zip",
  4074. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4075. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4076. "shasum": ""
  4077. },
  4078. "require": {
  4079. "php": ">=7.4.0"
  4080. },
  4081. "type": "library",
  4082. "extra": {
  4083. "branch-alias": {
  4084. "dev-master": "2.0.x-dev"
  4085. }
  4086. },
  4087. "autoload": {
  4088. "psr-4": {
  4089. "Psr\\Container\\": "src/"
  4090. }
  4091. },
  4092. "notification-url": "https://packagist.org/downloads/",
  4093. "license": [
  4094. "MIT"
  4095. ],
  4096. "authors": [
  4097. {
  4098. "name": "PHP-FIG",
  4099. "homepage": "https://www.php-fig.org/"
  4100. }
  4101. ],
  4102. "description": "Common Container Interface (PHP FIG PSR-11)",
  4103. "homepage": "https://github.com/php-fig/container",
  4104. "keywords": [
  4105. "PSR-11",
  4106. "container",
  4107. "container-interface",
  4108. "container-interop",
  4109. "psr"
  4110. ],
  4111. "support": {
  4112. "issues": "https://github.com/php-fig/container/issues",
  4113. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4114. },
  4115. "time": "2021-11-05T16:47:00+00:00"
  4116. },
  4117. {
  4118. "name": "psr/event-dispatcher",
  4119. "version": "1.0.0",
  4120. "source": {
  4121. "type": "git",
  4122. "url": "https://github.com/php-fig/event-dispatcher.git",
  4123. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4124. },
  4125. "dist": {
  4126. "type": "zip",
  4127. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4128. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4129. "shasum": ""
  4130. },
  4131. "require": {
  4132. "php": ">=7.2.0"
  4133. },
  4134. "type": "library",
  4135. "extra": {
  4136. "branch-alias": {
  4137. "dev-master": "1.0.x-dev"
  4138. }
  4139. },
  4140. "autoload": {
  4141. "psr-4": {
  4142. "Psr\\EventDispatcher\\": "src/"
  4143. }
  4144. },
  4145. "notification-url": "https://packagist.org/downloads/",
  4146. "license": [
  4147. "MIT"
  4148. ],
  4149. "authors": [
  4150. {
  4151. "name": "PHP-FIG",
  4152. "homepage": "http://www.php-fig.org/"
  4153. }
  4154. ],
  4155. "description": "Standard interfaces for event handling.",
  4156. "keywords": [
  4157. "events",
  4158. "psr",
  4159. "psr-14"
  4160. ],
  4161. "support": {
  4162. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4163. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4164. },
  4165. "time": "2019-01-08T18:20:26+00:00"
  4166. },
  4167. {
  4168. "name": "psr/http-client",
  4169. "version": "1.0.2",
  4170. "source": {
  4171. "type": "git",
  4172. "url": "https://github.com/php-fig/http-client.git",
  4173. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
  4174. },
  4175. "dist": {
  4176. "type": "zip",
  4177. "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  4178. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  4179. "shasum": ""
  4180. },
  4181. "require": {
  4182. "php": "^7.0 || ^8.0",
  4183. "psr/http-message": "^1.0 || ^2.0"
  4184. },
  4185. "type": "library",
  4186. "extra": {
  4187. "branch-alias": {
  4188. "dev-master": "1.0.x-dev"
  4189. }
  4190. },
  4191. "autoload": {
  4192. "psr-4": {
  4193. "Psr\\Http\\Client\\": "src/"
  4194. }
  4195. },
  4196. "notification-url": "https://packagist.org/downloads/",
  4197. "license": [
  4198. "MIT"
  4199. ],
  4200. "authors": [
  4201. {
  4202. "name": "PHP-FIG",
  4203. "homepage": "https://www.php-fig.org/"
  4204. }
  4205. ],
  4206. "description": "Common interface for HTTP clients",
  4207. "homepage": "https://github.com/php-fig/http-client",
  4208. "keywords": [
  4209. "http",
  4210. "http-client",
  4211. "psr",
  4212. "psr-18"
  4213. ],
  4214. "support": {
  4215. "source": "https://github.com/php-fig/http-client/tree/1.0.2"
  4216. },
  4217. "time": "2023-04-10T20:12:12+00:00"
  4218. },
  4219. {
  4220. "name": "psr/http-factory",
  4221. "version": "1.0.2",
  4222. "source": {
  4223. "type": "git",
  4224. "url": "https://github.com/php-fig/http-factory.git",
  4225. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4226. },
  4227. "dist": {
  4228. "type": "zip",
  4229. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4230. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4231. "shasum": ""
  4232. },
  4233. "require": {
  4234. "php": ">=7.0.0",
  4235. "psr/http-message": "^1.0 || ^2.0"
  4236. },
  4237. "type": "library",
  4238. "extra": {
  4239. "branch-alias": {
  4240. "dev-master": "1.0.x-dev"
  4241. }
  4242. },
  4243. "autoload": {
  4244. "psr-4": {
  4245. "Psr\\Http\\Message\\": "src/"
  4246. }
  4247. },
  4248. "notification-url": "https://packagist.org/downloads/",
  4249. "license": [
  4250. "MIT"
  4251. ],
  4252. "authors": [
  4253. {
  4254. "name": "PHP-FIG",
  4255. "homepage": "https://www.php-fig.org/"
  4256. }
  4257. ],
  4258. "description": "Common interfaces for PSR-7 HTTP message factories",
  4259. "keywords": [
  4260. "factory",
  4261. "http",
  4262. "message",
  4263. "psr",
  4264. "psr-17",
  4265. "psr-7",
  4266. "request",
  4267. "response"
  4268. ],
  4269. "support": {
  4270. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4271. },
  4272. "time": "2023-04-10T20:10:41+00:00"
  4273. },
  4274. {
  4275. "name": "psr/http-message",
  4276. "version": "2.0",
  4277. "source": {
  4278. "type": "git",
  4279. "url": "https://github.com/php-fig/http-message.git",
  4280. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4281. },
  4282. "dist": {
  4283. "type": "zip",
  4284. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4285. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4286. "shasum": ""
  4287. },
  4288. "require": {
  4289. "php": "^7.2 || ^8.0"
  4290. },
  4291. "type": "library",
  4292. "extra": {
  4293. "branch-alias": {
  4294. "dev-master": "2.0.x-dev"
  4295. }
  4296. },
  4297. "autoload": {
  4298. "psr-4": {
  4299. "Psr\\Http\\Message\\": "src/"
  4300. }
  4301. },
  4302. "notification-url": "https://packagist.org/downloads/",
  4303. "license": [
  4304. "MIT"
  4305. ],
  4306. "authors": [
  4307. {
  4308. "name": "PHP-FIG",
  4309. "homepage": "https://www.php-fig.org/"
  4310. }
  4311. ],
  4312. "description": "Common interface for HTTP messages",
  4313. "homepage": "https://github.com/php-fig/http-message",
  4314. "keywords": [
  4315. "http",
  4316. "http-message",
  4317. "psr",
  4318. "psr-7",
  4319. "request",
  4320. "response"
  4321. ],
  4322. "support": {
  4323. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4324. },
  4325. "time": "2023-04-04T09:54:51+00:00"
  4326. },
  4327. {
  4328. "name": "psr/log",
  4329. "version": "3.0.0",
  4330. "source": {
  4331. "type": "git",
  4332. "url": "https://github.com/php-fig/log.git",
  4333. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  4334. },
  4335. "dist": {
  4336. "type": "zip",
  4337. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4338. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4339. "shasum": ""
  4340. },
  4341. "require": {
  4342. "php": ">=8.0.0"
  4343. },
  4344. "type": "library",
  4345. "extra": {
  4346. "branch-alias": {
  4347. "dev-master": "3.x-dev"
  4348. }
  4349. },
  4350. "autoload": {
  4351. "psr-4": {
  4352. "Psr\\Log\\": "src"
  4353. }
  4354. },
  4355. "notification-url": "https://packagist.org/downloads/",
  4356. "license": [
  4357. "MIT"
  4358. ],
  4359. "authors": [
  4360. {
  4361. "name": "PHP-FIG",
  4362. "homepage": "https://www.php-fig.org/"
  4363. }
  4364. ],
  4365. "description": "Common interface for logging libraries",
  4366. "homepage": "https://github.com/php-fig/log",
  4367. "keywords": [
  4368. "log",
  4369. "psr",
  4370. "psr-3"
  4371. ],
  4372. "support": {
  4373. "source": "https://github.com/php-fig/log/tree/3.0.0"
  4374. },
  4375. "time": "2021-07-14T16:46:02+00:00"
  4376. },
  4377. {
  4378. "name": "psr/simple-cache",
  4379. "version": "3.0.0",
  4380. "source": {
  4381. "type": "git",
  4382. "url": "https://github.com/php-fig/simple-cache.git",
  4383. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4384. },
  4385. "dist": {
  4386. "type": "zip",
  4387. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4388. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4389. "shasum": ""
  4390. },
  4391. "require": {
  4392. "php": ">=8.0.0"
  4393. },
  4394. "type": "library",
  4395. "extra": {
  4396. "branch-alias": {
  4397. "dev-master": "3.0.x-dev"
  4398. }
  4399. },
  4400. "autoload": {
  4401. "psr-4": {
  4402. "Psr\\SimpleCache\\": "src/"
  4403. }
  4404. },
  4405. "notification-url": "https://packagist.org/downloads/",
  4406. "license": [
  4407. "MIT"
  4408. ],
  4409. "authors": [
  4410. {
  4411. "name": "PHP-FIG",
  4412. "homepage": "https://www.php-fig.org/"
  4413. }
  4414. ],
  4415. "description": "Common interfaces for simple caching",
  4416. "keywords": [
  4417. "cache",
  4418. "caching",
  4419. "psr",
  4420. "psr-16",
  4421. "simple-cache"
  4422. ],
  4423. "support": {
  4424. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4425. },
  4426. "time": "2021-10-29T13:26:27+00:00"
  4427. },
  4428. {
  4429. "name": "psy/psysh",
  4430. "version": "v0.11.20",
  4431. "source": {
  4432. "type": "git",
  4433. "url": "https://github.com/bobthecow/psysh.git",
  4434. "reference": "0fa27040553d1d280a67a4393194df5228afea5b"
  4435. },
  4436. "dist": {
  4437. "type": "zip",
  4438. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/0fa27040553d1d280a67a4393194df5228afea5b",
  4439. "reference": "0fa27040553d1d280a67a4393194df5228afea5b",
  4440. "shasum": ""
  4441. },
  4442. "require": {
  4443. "ext-json": "*",
  4444. "ext-tokenizer": "*",
  4445. "nikic/php-parser": "^4.0 || ^3.1",
  4446. "php": "^8.0 || ^7.0.8",
  4447. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4448. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4449. },
  4450. "conflict": {
  4451. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4452. },
  4453. "require-dev": {
  4454. "bamarni/composer-bin-plugin": "^1.2"
  4455. },
  4456. "suggest": {
  4457. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4458. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4459. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4460. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4461. },
  4462. "bin": [
  4463. "bin/psysh"
  4464. ],
  4465. "type": "library",
  4466. "extra": {
  4467. "branch-alias": {
  4468. "dev-main": "0.11.x-dev"
  4469. }
  4470. },
  4471. "autoload": {
  4472. "files": [
  4473. "src/functions.php"
  4474. ],
  4475. "psr-4": {
  4476. "Psy\\": "src/"
  4477. }
  4478. },
  4479. "notification-url": "https://packagist.org/downloads/",
  4480. "license": [
  4481. "MIT"
  4482. ],
  4483. "authors": [
  4484. {
  4485. "name": "Justin Hileman",
  4486. "email": "justin@justinhileman.info",
  4487. "homepage": "http://justinhileman.com"
  4488. }
  4489. ],
  4490. "description": "An interactive shell for modern PHP.",
  4491. "homepage": "http://psysh.org",
  4492. "keywords": [
  4493. "REPL",
  4494. "console",
  4495. "interactive",
  4496. "shell"
  4497. ],
  4498. "support": {
  4499. "issues": "https://github.com/bobthecow/psysh/issues",
  4500. "source": "https://github.com/bobthecow/psysh/tree/v0.11.20"
  4501. },
  4502. "time": "2023-07-31T14:32:22+00:00"
  4503. },
  4504. {
  4505. "name": "ralouphie/getallheaders",
  4506. "version": "3.0.3",
  4507. "source": {
  4508. "type": "git",
  4509. "url": "https://github.com/ralouphie/getallheaders.git",
  4510. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4511. },
  4512. "dist": {
  4513. "type": "zip",
  4514. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4515. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4516. "shasum": ""
  4517. },
  4518. "require": {
  4519. "php": ">=5.6"
  4520. },
  4521. "require-dev": {
  4522. "php-coveralls/php-coveralls": "^2.1",
  4523. "phpunit/phpunit": "^5 || ^6.5"
  4524. },
  4525. "type": "library",
  4526. "autoload": {
  4527. "files": [
  4528. "src/getallheaders.php"
  4529. ]
  4530. },
  4531. "notification-url": "https://packagist.org/downloads/",
  4532. "license": [
  4533. "MIT"
  4534. ],
  4535. "authors": [
  4536. {
  4537. "name": "Ralph Khattar",
  4538. "email": "ralph.khattar@gmail.com"
  4539. }
  4540. ],
  4541. "description": "A polyfill for getallheaders.",
  4542. "support": {
  4543. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4544. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4545. },
  4546. "time": "2019-03-08T08:55:37+00:00"
  4547. },
  4548. {
  4549. "name": "ramsey/collection",
  4550. "version": "2.0.0",
  4551. "source": {
  4552. "type": "git",
  4553. "url": "https://github.com/ramsey/collection.git",
  4554. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4555. },
  4556. "dist": {
  4557. "type": "zip",
  4558. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4559. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4560. "shasum": ""
  4561. },
  4562. "require": {
  4563. "php": "^8.1"
  4564. },
  4565. "require-dev": {
  4566. "captainhook/plugin-composer": "^5.3",
  4567. "ergebnis/composer-normalize": "^2.28.3",
  4568. "fakerphp/faker": "^1.21",
  4569. "hamcrest/hamcrest-php": "^2.0",
  4570. "jangregor/phpstan-prophecy": "^1.0",
  4571. "mockery/mockery": "^1.5",
  4572. "php-parallel-lint/php-console-highlighter": "^1.0",
  4573. "php-parallel-lint/php-parallel-lint": "^1.3",
  4574. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4575. "phpspec/prophecy-phpunit": "^2.0",
  4576. "phpstan/extension-installer": "^1.2",
  4577. "phpstan/phpstan": "^1.9",
  4578. "phpstan/phpstan-mockery": "^1.1",
  4579. "phpstan/phpstan-phpunit": "^1.3",
  4580. "phpunit/phpunit": "^9.5",
  4581. "psalm/plugin-mockery": "^1.1",
  4582. "psalm/plugin-phpunit": "^0.18.4",
  4583. "ramsey/coding-standard": "^2.0.3",
  4584. "ramsey/conventional-commits": "^1.3",
  4585. "vimeo/psalm": "^5.4"
  4586. },
  4587. "type": "library",
  4588. "extra": {
  4589. "captainhook": {
  4590. "force-install": true
  4591. },
  4592. "ramsey/conventional-commits": {
  4593. "configFile": "conventional-commits.json"
  4594. }
  4595. },
  4596. "autoload": {
  4597. "psr-4": {
  4598. "Ramsey\\Collection\\": "src/"
  4599. }
  4600. },
  4601. "notification-url": "https://packagist.org/downloads/",
  4602. "license": [
  4603. "MIT"
  4604. ],
  4605. "authors": [
  4606. {
  4607. "name": "Ben Ramsey",
  4608. "email": "ben@benramsey.com",
  4609. "homepage": "https://benramsey.com"
  4610. }
  4611. ],
  4612. "description": "A PHP library for representing and manipulating collections.",
  4613. "keywords": [
  4614. "array",
  4615. "collection",
  4616. "hash",
  4617. "map",
  4618. "queue",
  4619. "set"
  4620. ],
  4621. "support": {
  4622. "issues": "https://github.com/ramsey/collection/issues",
  4623. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4624. },
  4625. "funding": [
  4626. {
  4627. "url": "https://github.com/ramsey",
  4628. "type": "github"
  4629. },
  4630. {
  4631. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4632. "type": "tidelift"
  4633. }
  4634. ],
  4635. "time": "2022-12-31T21:50:55+00:00"
  4636. },
  4637. {
  4638. "name": "ramsey/uuid",
  4639. "version": "4.7.4",
  4640. "source": {
  4641. "type": "git",
  4642. "url": "https://github.com/ramsey/uuid.git",
  4643. "reference": "60a4c63ab724854332900504274f6150ff26d286"
  4644. },
  4645. "dist": {
  4646. "type": "zip",
  4647. "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
  4648. "reference": "60a4c63ab724854332900504274f6150ff26d286",
  4649. "shasum": ""
  4650. },
  4651. "require": {
  4652. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4653. "ext-json": "*",
  4654. "php": "^8.0",
  4655. "ramsey/collection": "^1.2 || ^2.0"
  4656. },
  4657. "replace": {
  4658. "rhumsaa/uuid": "self.version"
  4659. },
  4660. "require-dev": {
  4661. "captainhook/captainhook": "^5.10",
  4662. "captainhook/plugin-composer": "^5.3",
  4663. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4664. "doctrine/annotations": "^1.8",
  4665. "ergebnis/composer-normalize": "^2.15",
  4666. "mockery/mockery": "^1.3",
  4667. "paragonie/random-lib": "^2",
  4668. "php-mock/php-mock": "^2.2",
  4669. "php-mock/php-mock-mockery": "^1.3",
  4670. "php-parallel-lint/php-parallel-lint": "^1.1",
  4671. "phpbench/phpbench": "^1.0",
  4672. "phpstan/extension-installer": "^1.1",
  4673. "phpstan/phpstan": "^1.8",
  4674. "phpstan/phpstan-mockery": "^1.1",
  4675. "phpstan/phpstan-phpunit": "^1.1",
  4676. "phpunit/phpunit": "^8.5 || ^9",
  4677. "ramsey/composer-repl": "^1.4",
  4678. "slevomat/coding-standard": "^8.4",
  4679. "squizlabs/php_codesniffer": "^3.5",
  4680. "vimeo/psalm": "^4.9"
  4681. },
  4682. "suggest": {
  4683. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4684. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4685. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4686. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4687. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4688. },
  4689. "type": "library",
  4690. "extra": {
  4691. "captainhook": {
  4692. "force-install": true
  4693. }
  4694. },
  4695. "autoload": {
  4696. "files": [
  4697. "src/functions.php"
  4698. ],
  4699. "psr-4": {
  4700. "Ramsey\\Uuid\\": "src/"
  4701. }
  4702. },
  4703. "notification-url": "https://packagist.org/downloads/",
  4704. "license": [
  4705. "MIT"
  4706. ],
  4707. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4708. "keywords": [
  4709. "guid",
  4710. "identifier",
  4711. "uuid"
  4712. ],
  4713. "support": {
  4714. "issues": "https://github.com/ramsey/uuid/issues",
  4715. "source": "https://github.com/ramsey/uuid/tree/4.7.4"
  4716. },
  4717. "funding": [
  4718. {
  4719. "url": "https://github.com/ramsey",
  4720. "type": "github"
  4721. },
  4722. {
  4723. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4724. "type": "tidelift"
  4725. }
  4726. ],
  4727. "time": "2023-04-15T23:01:58+00:00"
  4728. },
  4729. {
  4730. "name": "ryangjchandler/blade-capture-directive",
  4731. "version": "v0.3.0",
  4732. "source": {
  4733. "type": "git",
  4734. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  4735. "reference": "62fd2ecb50b938a46025093bcb64fcaddd531f89"
  4736. },
  4737. "dist": {
  4738. "type": "zip",
  4739. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/62fd2ecb50b938a46025093bcb64fcaddd531f89",
  4740. "reference": "62fd2ecb50b938a46025093bcb64fcaddd531f89",
  4741. "shasum": ""
  4742. },
  4743. "require": {
  4744. "illuminate/contracts": "^9.0|^10.0",
  4745. "php": "^8.0",
  4746. "spatie/laravel-package-tools": "^1.9.2"
  4747. },
  4748. "require-dev": {
  4749. "nunomaduro/collision": "^6.0|^7.0",
  4750. "nunomaduro/larastan": "^2.0",
  4751. "orchestra/testbench": "^7.22|^8.0",
  4752. "pestphp/pest": "^1.21",
  4753. "pestphp/pest-plugin-laravel": "^1.1",
  4754. "phpstan/extension-installer": "^1.1",
  4755. "phpstan/phpstan-deprecation-rules": "^1.0",
  4756. "phpstan/phpstan-phpunit": "^1.0",
  4757. "phpunit/phpunit": "^9.5",
  4758. "spatie/laravel-ray": "^1.26"
  4759. },
  4760. "type": "library",
  4761. "extra": {
  4762. "laravel": {
  4763. "providers": [
  4764. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  4765. ],
  4766. "aliases": {
  4767. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  4768. }
  4769. }
  4770. },
  4771. "autoload": {
  4772. "psr-4": {
  4773. "RyanChandler\\BladeCaptureDirective\\": "src",
  4774. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  4775. }
  4776. },
  4777. "notification-url": "https://packagist.org/downloads/",
  4778. "license": [
  4779. "MIT"
  4780. ],
  4781. "authors": [
  4782. {
  4783. "name": "Ryan Chandler",
  4784. "email": "support@ryangjchandler.co.uk",
  4785. "role": "Developer"
  4786. }
  4787. ],
  4788. "description": "Create inline partials in your Blade templates with ease.",
  4789. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  4790. "keywords": [
  4791. "blade-capture-directive",
  4792. "laravel",
  4793. "ryangjchandler"
  4794. ],
  4795. "support": {
  4796. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  4797. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v0.3.0"
  4798. },
  4799. "funding": [
  4800. {
  4801. "url": "https://github.com/ryangjchandler",
  4802. "type": "github"
  4803. }
  4804. ],
  4805. "time": "2023-02-14T16:54:54+00:00"
  4806. },
  4807. {
  4808. "name": "spatie/eloquent-sortable",
  4809. "version": "4.0.2",
  4810. "source": {
  4811. "type": "git",
  4812. "url": "https://github.com/spatie/eloquent-sortable.git",
  4813. "reference": "74994d10a17d15d2cdb319d6b2ad7cb6fa067c0a"
  4814. },
  4815. "dist": {
  4816. "type": "zip",
  4817. "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/74994d10a17d15d2cdb319d6b2ad7cb6fa067c0a",
  4818. "reference": "74994d10a17d15d2cdb319d6b2ad7cb6fa067c0a",
  4819. "shasum": ""
  4820. },
  4821. "require": {
  4822. "illuminate/database": "^9.0|^10.0",
  4823. "illuminate/support": "^9.0|^10.0",
  4824. "nesbot/carbon": "^2.63",
  4825. "php": "^8.1",
  4826. "spatie/laravel-package-tools": "^1.9"
  4827. },
  4828. "require-dev": {
  4829. "orchestra/testbench": "^7.0|^8.0",
  4830. "phpunit/phpunit": "^9.5"
  4831. },
  4832. "type": "library",
  4833. "extra": {
  4834. "laravel": {
  4835. "providers": [
  4836. "Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
  4837. ]
  4838. }
  4839. },
  4840. "autoload": {
  4841. "psr-4": {
  4842. "Spatie\\EloquentSortable\\": "src/"
  4843. }
  4844. },
  4845. "notification-url": "https://packagist.org/downloads/",
  4846. "license": [
  4847. "MIT"
  4848. ],
  4849. "authors": [
  4850. {
  4851. "name": "Freek Van der Herten",
  4852. "email": "freek@spatie.be"
  4853. }
  4854. ],
  4855. "description": "Sortable behaviour for eloquent models",
  4856. "homepage": "https://github.com/spatie/eloquent-sortable",
  4857. "keywords": [
  4858. "behaviour",
  4859. "eloquent",
  4860. "laravel",
  4861. "model",
  4862. "sort",
  4863. "sortable"
  4864. ],
  4865. "support": {
  4866. "issues": "https://github.com/spatie/eloquent-sortable/issues",
  4867. "source": "https://github.com/spatie/eloquent-sortable/tree/4.0.2"
  4868. },
  4869. "funding": [
  4870. {
  4871. "url": "https://spatie.be/open-source/support-us",
  4872. "type": "custom"
  4873. },
  4874. {
  4875. "url": "https://github.com/spatie",
  4876. "type": "github"
  4877. }
  4878. ],
  4879. "time": "2023-01-23T08:34:14+00:00"
  4880. },
  4881. {
  4882. "name": "spatie/invade",
  4883. "version": "1.1.1",
  4884. "source": {
  4885. "type": "git",
  4886. "url": "https://github.com/spatie/invade.git",
  4887. "reference": "d0a9c895a96152549d478a7e3420e19039eef038"
  4888. },
  4889. "dist": {
  4890. "type": "zip",
  4891. "url": "https://api.github.com/repos/spatie/invade/zipball/d0a9c895a96152549d478a7e3420e19039eef038",
  4892. "reference": "d0a9c895a96152549d478a7e3420e19039eef038",
  4893. "shasum": ""
  4894. },
  4895. "require": {
  4896. "php": "^8.0"
  4897. },
  4898. "require-dev": {
  4899. "pestphp/pest": "^1.20",
  4900. "phpstan/phpstan": "^1.4",
  4901. "spatie/ray": "^1.28"
  4902. },
  4903. "type": "library",
  4904. "extra": {
  4905. "phpstan": {
  4906. "includes": [
  4907. "phpstan-extension.neon"
  4908. ]
  4909. }
  4910. },
  4911. "autoload": {
  4912. "files": [
  4913. "src/functions.php"
  4914. ],
  4915. "psr-4": {
  4916. "Spatie\\Invade\\": "src"
  4917. }
  4918. },
  4919. "notification-url": "https://packagist.org/downloads/",
  4920. "license": [
  4921. "MIT"
  4922. ],
  4923. "authors": [
  4924. {
  4925. "name": "Freek Van der Herten",
  4926. "email": "freek@spatie.be",
  4927. "role": "Developer"
  4928. }
  4929. ],
  4930. "description": "A PHP function to work with private properties and methods",
  4931. "homepage": "https://github.com/spatie/invade",
  4932. "keywords": [
  4933. "invade",
  4934. "spatie"
  4935. ],
  4936. "support": {
  4937. "source": "https://github.com/spatie/invade/tree/1.1.1"
  4938. },
  4939. "funding": [
  4940. {
  4941. "url": "https://github.com/spatie",
  4942. "type": "github"
  4943. }
  4944. ],
  4945. "time": "2022-07-05T09:31:00+00:00"
  4946. },
  4947. {
  4948. "name": "spatie/laravel-package-tools",
  4949. "version": "1.16.0",
  4950. "source": {
  4951. "type": "git",
  4952. "url": "https://github.com/spatie/laravel-package-tools.git",
  4953. "reference": "38fe533e93f86a1b2fb1000bf7df09c4748e6458"
  4954. },
  4955. "dist": {
  4956. "type": "zip",
  4957. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/38fe533e93f86a1b2fb1000bf7df09c4748e6458",
  4958. "reference": "38fe533e93f86a1b2fb1000bf7df09c4748e6458",
  4959. "shasum": ""
  4960. },
  4961. "require": {
  4962. "illuminate/contracts": "^9.28|^10.0",
  4963. "php": "^8.0"
  4964. },
  4965. "require-dev": {
  4966. "mockery/mockery": "^1.5",
  4967. "orchestra/testbench": "^7.7|^8.0",
  4968. "pestphp/pest": "^1.22",
  4969. "phpunit/phpunit": "^9.5.24",
  4970. "spatie/pest-plugin-test-time": "^1.1"
  4971. },
  4972. "type": "library",
  4973. "autoload": {
  4974. "psr-4": {
  4975. "Spatie\\LaravelPackageTools\\": "src"
  4976. }
  4977. },
  4978. "notification-url": "https://packagist.org/downloads/",
  4979. "license": [
  4980. "MIT"
  4981. ],
  4982. "authors": [
  4983. {
  4984. "name": "Freek Van der Herten",
  4985. "email": "freek@spatie.be",
  4986. "role": "Developer"
  4987. }
  4988. ],
  4989. "description": "Tools for creating Laravel packages",
  4990. "homepage": "https://github.com/spatie/laravel-package-tools",
  4991. "keywords": [
  4992. "laravel-package-tools",
  4993. "spatie"
  4994. ],
  4995. "support": {
  4996. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  4997. "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.0"
  4998. },
  4999. "funding": [
  5000. {
  5001. "url": "https://github.com/spatie",
  5002. "type": "github"
  5003. }
  5004. ],
  5005. "time": "2023-08-09T14:08:04+00:00"
  5006. },
  5007. {
  5008. "name": "spatie/laravel-tags",
  5009. "version": "4.5.1",
  5010. "source": {
  5011. "type": "git",
  5012. "url": "https://github.com/spatie/laravel-tags.git",
  5013. "reference": "fcc6c532fa0ce0d1eefe886fd44dcedcca3173aa"
  5014. },
  5015. "dist": {
  5016. "type": "zip",
  5017. "url": "https://api.github.com/repos/spatie/laravel-tags/zipball/fcc6c532fa0ce0d1eefe886fd44dcedcca3173aa",
  5018. "reference": "fcc6c532fa0ce0d1eefe886fd44dcedcca3173aa",
  5019. "shasum": ""
  5020. },
  5021. "require": {
  5022. "laravel/framework": "^8.67|^9.0|^10.0",
  5023. "nesbot/carbon": "^2.63",
  5024. "php": "^8.0",
  5025. "spatie/eloquent-sortable": "^3.10|^4.0",
  5026. "spatie/laravel-package-tools": "^1.4",
  5027. "spatie/laravel-translatable": "^4.6|^5.0|^6.0"
  5028. },
  5029. "require-dev": {
  5030. "orchestra/testbench": "^6.13|^7.0|^8.0",
  5031. "pestphp/pest": "^1.22",
  5032. "phpunit/phpunit": "^9.5.2"
  5033. },
  5034. "type": "library",
  5035. "extra": {
  5036. "laravel": {
  5037. "providers": [
  5038. "Spatie\\Tags\\TagsServiceProvider"
  5039. ]
  5040. }
  5041. },
  5042. "autoload": {
  5043. "psr-4": {
  5044. "Spatie\\Tags\\": "src"
  5045. }
  5046. },
  5047. "notification-url": "https://packagist.org/downloads/",
  5048. "license": [
  5049. "MIT"
  5050. ],
  5051. "authors": [
  5052. {
  5053. "name": "Freek Van der Herten",
  5054. "email": "freek@spatie.be",
  5055. "homepage": "https://spatie.be",
  5056. "role": "Developer"
  5057. }
  5058. ],
  5059. "description": "Add tags and taggable behaviour to your Laravel app",
  5060. "homepage": "https://github.com/spatie/laravel-tags",
  5061. "keywords": [
  5062. "laravel-tags",
  5063. "spatie"
  5064. ],
  5065. "support": {
  5066. "issues": "https://github.com/spatie/laravel-tags/issues",
  5067. "source": "https://github.com/spatie/laravel-tags/tree/4.5.1"
  5068. },
  5069. "funding": [
  5070. {
  5071. "url": "https://github.com/spatie",
  5072. "type": "github"
  5073. }
  5074. ],
  5075. "time": "2023-07-31T08:43:55+00:00"
  5076. },
  5077. {
  5078. "name": "spatie/laravel-translatable",
  5079. "version": "6.5.3",
  5080. "source": {
  5081. "type": "git",
  5082. "url": "https://github.com/spatie/laravel-translatable.git",
  5083. "reference": "1906a3f1492c4b4b99d9f150b67cca4b697d85d7"
  5084. },
  5085. "dist": {
  5086. "type": "zip",
  5087. "url": "https://api.github.com/repos/spatie/laravel-translatable/zipball/1906a3f1492c4b4b99d9f150b67cca4b697d85d7",
  5088. "reference": "1906a3f1492c4b4b99d9f150b67cca4b697d85d7",
  5089. "shasum": ""
  5090. },
  5091. "require": {
  5092. "illuminate/database": "^9.0|^10.0",
  5093. "illuminate/support": "^9.0|^10.0",
  5094. "php": "^8.0",
  5095. "spatie/laravel-package-tools": "^1.11"
  5096. },
  5097. "require-dev": {
  5098. "mockery/mockery": "^1.4",
  5099. "orchestra/testbench": "^7.0|^8.0",
  5100. "pestphp/pest": "^1.20"
  5101. },
  5102. "type": "library",
  5103. "extra": {
  5104. "laravel": {
  5105. "providers": [
  5106. "Spatie\\Translatable\\TranslatableServiceProvider"
  5107. ]
  5108. },
  5109. "aliases": {
  5110. "Translatable": "Spatie\\Translatable\\Facades\\Translatable"
  5111. }
  5112. },
  5113. "autoload": {
  5114. "psr-4": {
  5115. "Spatie\\Translatable\\": "src"
  5116. }
  5117. },
  5118. "notification-url": "https://packagist.org/downloads/",
  5119. "license": [
  5120. "MIT"
  5121. ],
  5122. "authors": [
  5123. {
  5124. "name": "Freek Van der Herten",
  5125. "email": "freek@spatie.be",
  5126. "homepage": "https://spatie.be",
  5127. "role": "Developer"
  5128. },
  5129. {
  5130. "name": "Sebastian De Deyne",
  5131. "email": "sebastian@spatie.be",
  5132. "homepage": "https://spatie.be",
  5133. "role": "Developer"
  5134. }
  5135. ],
  5136. "description": "A trait to make an Eloquent model hold translations",
  5137. "homepage": "https://github.com/spatie/laravel-translatable",
  5138. "keywords": [
  5139. "eloquent",
  5140. "i8n",
  5141. "laravel-translatable",
  5142. "model",
  5143. "multilingual",
  5144. "spatie",
  5145. "translate"
  5146. ],
  5147. "support": {
  5148. "issues": "https://github.com/spatie/laravel-translatable/issues",
  5149. "source": "https://github.com/spatie/laravel-translatable/tree/6.5.3"
  5150. },
  5151. "funding": [
  5152. {
  5153. "url": "https://github.com/spatie",
  5154. "type": "github"
  5155. }
  5156. ],
  5157. "time": "2023-07-19T19:21:38+00:00"
  5158. },
  5159. {
  5160. "name": "spatie/laravel-view-models",
  5161. "version": "1.5.4",
  5162. "source": {
  5163. "type": "git",
  5164. "url": "https://github.com/spatie/laravel-view-models.git",
  5165. "reference": "32863c30a17debe8f1e879da173d42c768b8877e"
  5166. },
  5167. "dist": {
  5168. "type": "zip",
  5169. "url": "https://api.github.com/repos/spatie/laravel-view-models/zipball/32863c30a17debe8f1e879da173d42c768b8877e",
  5170. "reference": "32863c30a17debe8f1e879da173d42c768b8877e",
  5171. "shasum": ""
  5172. },
  5173. "require": {
  5174. "illuminate/support": "^8.0|^9.0|^10.0",
  5175. "php": "^7.3|^8.0"
  5176. },
  5177. "require-dev": {
  5178. "orchestra/testbench": "^6.23|^7.0|^8.0",
  5179. "pestphp/pest": "^1.22"
  5180. },
  5181. "type": "library",
  5182. "extra": {
  5183. "laravel": {
  5184. "providers": [
  5185. "Spatie\\ViewModels\\Providers\\ViewModelsServiceProvider"
  5186. ]
  5187. }
  5188. },
  5189. "autoload": {
  5190. "psr-4": {
  5191. "Spatie\\ViewModels\\": "src"
  5192. }
  5193. },
  5194. "notification-url": "https://packagist.org/downloads/",
  5195. "license": [
  5196. "MIT"
  5197. ],
  5198. "authors": [
  5199. {
  5200. "name": "Brent Roose",
  5201. "email": "brent@spatie.be",
  5202. "homepage": "https://spatie.be",
  5203. "role": "Developer"
  5204. }
  5205. ],
  5206. "description": "View models in Laravel",
  5207. "homepage": "https://github.com/spatie/laravel-view-models",
  5208. "keywords": [
  5209. "laravel-view-models",
  5210. "spatie"
  5211. ],
  5212. "support": {
  5213. "issues": "https://github.com/spatie/laravel-view-models/issues",
  5214. "source": "https://github.com/spatie/laravel-view-models/tree/1.5.4"
  5215. },
  5216. "funding": [
  5217. {
  5218. "url": "https://spatie.be/open-source/support-us",
  5219. "type": "custom"
  5220. },
  5221. {
  5222. "url": "https://github.com/spatie",
  5223. "type": "github"
  5224. }
  5225. ],
  5226. "time": "2023-02-01T08:39:40+00:00"
  5227. },
  5228. {
  5229. "name": "squirephp/countries",
  5230. "version": "v3.4.2",
  5231. "source": {
  5232. "type": "git",
  5233. "url": "https://github.com/squirephp/countries.git",
  5234. "reference": "7dd92f46dc67ef0c03da4171f7d987f1886074a6"
  5235. },
  5236. "dist": {
  5237. "type": "zip",
  5238. "url": "https://api.github.com/repos/squirephp/countries/zipball/7dd92f46dc67ef0c03da4171f7d987f1886074a6",
  5239. "reference": "7dd92f46dc67ef0c03da4171f7d987f1886074a6",
  5240. "shasum": ""
  5241. },
  5242. "require": {
  5243. "illuminate/support": "^8.0|^9.0|^10.0",
  5244. "php": "^8.0",
  5245. "squirephp/model": "self.version",
  5246. "squirephp/rule": "self.version"
  5247. },
  5248. "type": "library",
  5249. "extra": {
  5250. "laravel": {
  5251. "providers": [
  5252. "Squire\\CountriesServiceProvider"
  5253. ]
  5254. }
  5255. },
  5256. "autoload": {
  5257. "psr-4": {
  5258. "Squire\\": "src"
  5259. }
  5260. },
  5261. "notification-url": "https://packagist.org/downloads/",
  5262. "license": [
  5263. "MIT"
  5264. ],
  5265. "authors": [
  5266. {
  5267. "name": "Dan Harrin",
  5268. "email": "dan@danharrin.com"
  5269. }
  5270. ],
  5271. "description": "A library containing Squire's Country model.",
  5272. "homepage": "https://github.com/squirephp",
  5273. "keywords": [
  5274. "squire"
  5275. ],
  5276. "support": {
  5277. "issues": "https://github.com/squirephp/squire/issues",
  5278. "source": "https://github.com/squirephp/squire"
  5279. },
  5280. "time": "2023-02-18T12:44:15+00:00"
  5281. },
  5282. {
  5283. "name": "squirephp/countries-en",
  5284. "version": "v3.4.2",
  5285. "source": {
  5286. "type": "git",
  5287. "url": "https://github.com/squirephp/countries-en.git",
  5288. "reference": "831f343a2ee484aaa8b9b659c0915df46c887d3c"
  5289. },
  5290. "dist": {
  5291. "type": "zip",
  5292. "url": "https://api.github.com/repos/squirephp/countries-en/zipball/831f343a2ee484aaa8b9b659c0915df46c887d3c",
  5293. "reference": "831f343a2ee484aaa8b9b659c0915df46c887d3c",
  5294. "shasum": ""
  5295. },
  5296. "require": {
  5297. "illuminate/support": "^8.0|^9.0|^10.0",
  5298. "php": "^8.0",
  5299. "squirephp/countries": "self.version",
  5300. "squirephp/repository": "self.version"
  5301. },
  5302. "type": "library",
  5303. "extra": {
  5304. "laravel": {
  5305. "providers": [
  5306. "Squire\\CountriesEnServiceProvider"
  5307. ]
  5308. }
  5309. },
  5310. "autoload": {
  5311. "psr-4": {
  5312. "Squire\\": "src"
  5313. }
  5314. },
  5315. "notification-url": "https://packagist.org/downloads/",
  5316. "license": [
  5317. "MIT"
  5318. ],
  5319. "authors": [
  5320. {
  5321. "name": "Dan Harrin",
  5322. "email": "dan@danharrin.com"
  5323. }
  5324. ],
  5325. "description": "A library containing the English translation of Squire's Country model.",
  5326. "homepage": "https://github.com/squirephp",
  5327. "keywords": [
  5328. "squire"
  5329. ],
  5330. "support": {
  5331. "issues": "https://github.com/squirephp/squire/issues",
  5332. "source": "https://github.com/squirephp/squire"
  5333. },
  5334. "time": "2023-02-18T12:44:18+00:00"
  5335. },
  5336. {
  5337. "name": "squirephp/model",
  5338. "version": "v3.4.2",
  5339. "source": {
  5340. "type": "git",
  5341. "url": "https://github.com/squirephp/model.git",
  5342. "reference": "dbd3cd2fb74c36f6aabd9294de40a8f64c82518d"
  5343. },
  5344. "dist": {
  5345. "type": "zip",
  5346. "url": "https://api.github.com/repos/squirephp/model/zipball/dbd3cd2fb74c36f6aabd9294de40a8f64c82518d",
  5347. "reference": "dbd3cd2fb74c36f6aabd9294de40a8f64c82518d",
  5348. "shasum": ""
  5349. },
  5350. "require": {
  5351. "ext-pdo_sqlite": "*",
  5352. "illuminate/database": "^8.40|^9.0|^10.0",
  5353. "illuminate/support": "^8.0|^9.0|^10.0",
  5354. "php": "^8.0"
  5355. },
  5356. "type": "library",
  5357. "extra": {
  5358. "laravel": {
  5359. "providers": [
  5360. "Squire\\ModelServiceProvider"
  5361. ]
  5362. }
  5363. },
  5364. "autoload": {
  5365. "psr-4": {
  5366. "Squire\\": "src"
  5367. }
  5368. },
  5369. "notification-url": "https://packagist.org/downloads/",
  5370. "license": [
  5371. "MIT"
  5372. ],
  5373. "authors": [
  5374. {
  5375. "name": "Dan Harrin",
  5376. "email": "dan@danharrin.com"
  5377. }
  5378. ],
  5379. "description": "A library containing the base Squire model class.",
  5380. "homepage": "https://github.com/squirephp",
  5381. "keywords": [
  5382. "squire"
  5383. ],
  5384. "support": {
  5385. "issues": "https://github.com/squirephp/squire/issues",
  5386. "source": "https://github.com/squirephp/squire"
  5387. },
  5388. "time": "2023-02-18T12:44:15+00:00"
  5389. },
  5390. {
  5391. "name": "squirephp/regions",
  5392. "version": "v3.4.2",
  5393. "source": {
  5394. "type": "git",
  5395. "url": "https://github.com/squirephp/regions.git",
  5396. "reference": "c28f9e9d124453020130df27df6933000c8c2b42"
  5397. },
  5398. "dist": {
  5399. "type": "zip",
  5400. "url": "https://api.github.com/repos/squirephp/regions/zipball/c28f9e9d124453020130df27df6933000c8c2b42",
  5401. "reference": "c28f9e9d124453020130df27df6933000c8c2b42",
  5402. "shasum": ""
  5403. },
  5404. "require": {
  5405. "illuminate/support": "^8.0|^9.0|^10.0",
  5406. "php": "^8.0",
  5407. "squirephp/model": "self.version",
  5408. "squirephp/rule": "self.version"
  5409. },
  5410. "type": "library",
  5411. "extra": {
  5412. "laravel": {
  5413. "providers": [
  5414. "Squire\\RegionsServiceProvider"
  5415. ]
  5416. }
  5417. },
  5418. "autoload": {
  5419. "psr-4": {
  5420. "Squire\\": "src"
  5421. }
  5422. },
  5423. "notification-url": "https://packagist.org/downloads/",
  5424. "license": [
  5425. "MIT"
  5426. ],
  5427. "authors": [
  5428. {
  5429. "name": "Dan Harrin",
  5430. "email": "dan@danharrin.com"
  5431. }
  5432. ],
  5433. "description": "A library containing Squire's Region model.",
  5434. "homepage": "https://github.com/squirephp",
  5435. "keywords": [
  5436. "squire"
  5437. ],
  5438. "support": {
  5439. "issues": "https://github.com/squirephp/squire/issues",
  5440. "source": "https://github.com/squirephp/squire"
  5441. },
  5442. "time": "2023-02-18T12:44:18+00:00"
  5443. },
  5444. {
  5445. "name": "squirephp/regions-en",
  5446. "version": "v3.4.2",
  5447. "source": {
  5448. "type": "git",
  5449. "url": "https://github.com/squirephp/regions-en.git",
  5450. "reference": "c3dd19c5791c976d141111d065c5e857d34e31ff"
  5451. },
  5452. "dist": {
  5453. "type": "zip",
  5454. "url": "https://api.github.com/repos/squirephp/regions-en/zipball/c3dd19c5791c976d141111d065c5e857d34e31ff",
  5455. "reference": "c3dd19c5791c976d141111d065c5e857d34e31ff",
  5456. "shasum": ""
  5457. },
  5458. "require": {
  5459. "illuminate/support": "^8.0|^9.0|^10.0",
  5460. "php": "^8.0",
  5461. "squirephp/regions": "self.version",
  5462. "squirephp/repository": "self.version"
  5463. },
  5464. "type": "library",
  5465. "extra": {
  5466. "laravel": {
  5467. "providers": [
  5468. "Squire\\RegionsEnServiceProvider"
  5469. ]
  5470. }
  5471. },
  5472. "autoload": {
  5473. "psr-4": {
  5474. "Squire\\": "src"
  5475. }
  5476. },
  5477. "notification-url": "https://packagist.org/downloads/",
  5478. "license": [
  5479. "MIT"
  5480. ],
  5481. "authors": [
  5482. {
  5483. "name": "Dan Harrin",
  5484. "email": "dan@danharrin.com"
  5485. }
  5486. ],
  5487. "description": "A library containing the English translation of Squire's Region model.",
  5488. "homepage": "https://github.com/squirephp",
  5489. "keywords": [
  5490. "squire"
  5491. ],
  5492. "support": {
  5493. "issues": "https://github.com/squirephp/squire/issues",
  5494. "source": "https://github.com/squirephp/squire"
  5495. },
  5496. "time": "2023-02-18T12:44:35+00:00"
  5497. },
  5498. {
  5499. "name": "squirephp/repository",
  5500. "version": "v3.4.2",
  5501. "source": {
  5502. "type": "git",
  5503. "url": "https://github.com/squirephp/repository.git",
  5504. "reference": "dffe543ee093cdad29c776ae901eb5aa43ac371a"
  5505. },
  5506. "dist": {
  5507. "type": "zip",
  5508. "url": "https://api.github.com/repos/squirephp/repository/zipball/dffe543ee093cdad29c776ae901eb5aa43ac371a",
  5509. "reference": "dffe543ee093cdad29c776ae901eb5aa43ac371a",
  5510. "shasum": ""
  5511. },
  5512. "require": {
  5513. "illuminate/support": "^8.0|^9.0|^10.0",
  5514. "php": "^8.0"
  5515. },
  5516. "type": "library",
  5517. "extra": {
  5518. "laravel": {
  5519. "providers": [
  5520. "Squire\\RepositoryServiceProvider"
  5521. ],
  5522. "aliases": {
  5523. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  5524. }
  5525. }
  5526. },
  5527. "autoload": {
  5528. "psr-4": {
  5529. "Squire\\": "src"
  5530. }
  5531. },
  5532. "notification-url": "https://packagist.org/downloads/",
  5533. "license": [
  5534. "MIT"
  5535. ],
  5536. "authors": [
  5537. {
  5538. "name": "Dan Harrin",
  5539. "email": "dan@danharrin.com"
  5540. }
  5541. ],
  5542. "description": "A library containing the Squire repository.",
  5543. "homepage": "https://github.com/squirephp",
  5544. "keywords": [
  5545. "squire"
  5546. ],
  5547. "support": {
  5548. "issues": "https://github.com/squirephp/squire/issues",
  5549. "source": "https://github.com/squirephp/squire"
  5550. },
  5551. "time": "2023-02-18T12:44:39+00:00"
  5552. },
  5553. {
  5554. "name": "squirephp/rule",
  5555. "version": "v3.4.2",
  5556. "source": {
  5557. "type": "git",
  5558. "url": "https://github.com/squirephp/rule.git",
  5559. "reference": "2a3d11385140e325dcfbcf48c864e1a02fa0c342"
  5560. },
  5561. "dist": {
  5562. "type": "zip",
  5563. "url": "https://api.github.com/repos/squirephp/rule/zipball/2a3d11385140e325dcfbcf48c864e1a02fa0c342",
  5564. "reference": "2a3d11385140e325dcfbcf48c864e1a02fa0c342",
  5565. "shasum": ""
  5566. },
  5567. "require": {
  5568. "illuminate/contracts": "^8.0|^9.0|^10.0",
  5569. "illuminate/database": "^8.40|^9.0|^10.0",
  5570. "illuminate/support": "^8.0|^9.0|^10.0",
  5571. "php": "^8.0"
  5572. },
  5573. "type": "library",
  5574. "autoload": {
  5575. "psr-4": {
  5576. "Squire\\": "src"
  5577. }
  5578. },
  5579. "notification-url": "https://packagist.org/downloads/",
  5580. "license": [
  5581. "MIT"
  5582. ],
  5583. "authors": [
  5584. {
  5585. "name": "Dan Harrin",
  5586. "email": "dan@danharrin.com"
  5587. }
  5588. ],
  5589. "description": "A library containing the base Squire rule class.",
  5590. "homepage": "https://github.com/squirephp",
  5591. "keywords": [
  5592. "squire"
  5593. ],
  5594. "support": {
  5595. "issues": "https://github.com/squirephp/squire/issues",
  5596. "source": "https://github.com/squirephp/squire"
  5597. },
  5598. "time": "2023-02-18T12:44:38+00:00"
  5599. },
  5600. {
  5601. "name": "symfony/console",
  5602. "version": "v6.3.2",
  5603. "source": {
  5604. "type": "git",
  5605. "url": "https://github.com/symfony/console.git",
  5606. "reference": "aa5d64ad3f63f2e48964fc81ee45cb318a723898"
  5607. },
  5608. "dist": {
  5609. "type": "zip",
  5610. "url": "https://api.github.com/repos/symfony/console/zipball/aa5d64ad3f63f2e48964fc81ee45cb318a723898",
  5611. "reference": "aa5d64ad3f63f2e48964fc81ee45cb318a723898",
  5612. "shasum": ""
  5613. },
  5614. "require": {
  5615. "php": ">=8.1",
  5616. "symfony/deprecation-contracts": "^2.5|^3",
  5617. "symfony/polyfill-mbstring": "~1.0",
  5618. "symfony/service-contracts": "^2.5|^3",
  5619. "symfony/string": "^5.4|^6.0"
  5620. },
  5621. "conflict": {
  5622. "symfony/dependency-injection": "<5.4",
  5623. "symfony/dotenv": "<5.4",
  5624. "symfony/event-dispatcher": "<5.4",
  5625. "symfony/lock": "<5.4",
  5626. "symfony/process": "<5.4"
  5627. },
  5628. "provide": {
  5629. "psr/log-implementation": "1.0|2.0|3.0"
  5630. },
  5631. "require-dev": {
  5632. "psr/log": "^1|^2|^3",
  5633. "symfony/config": "^5.4|^6.0",
  5634. "symfony/dependency-injection": "^5.4|^6.0",
  5635. "symfony/event-dispatcher": "^5.4|^6.0",
  5636. "symfony/lock": "^5.4|^6.0",
  5637. "symfony/process": "^5.4|^6.0",
  5638. "symfony/var-dumper": "^5.4|^6.0"
  5639. },
  5640. "type": "library",
  5641. "autoload": {
  5642. "psr-4": {
  5643. "Symfony\\Component\\Console\\": ""
  5644. },
  5645. "exclude-from-classmap": [
  5646. "/Tests/"
  5647. ]
  5648. },
  5649. "notification-url": "https://packagist.org/downloads/",
  5650. "license": [
  5651. "MIT"
  5652. ],
  5653. "authors": [
  5654. {
  5655. "name": "Fabien Potencier",
  5656. "email": "fabien@symfony.com"
  5657. },
  5658. {
  5659. "name": "Symfony Community",
  5660. "homepage": "https://symfony.com/contributors"
  5661. }
  5662. ],
  5663. "description": "Eases the creation of beautiful and testable command line interfaces",
  5664. "homepage": "https://symfony.com",
  5665. "keywords": [
  5666. "cli",
  5667. "command-line",
  5668. "console",
  5669. "terminal"
  5670. ],
  5671. "support": {
  5672. "source": "https://github.com/symfony/console/tree/v6.3.2"
  5673. },
  5674. "funding": [
  5675. {
  5676. "url": "https://symfony.com/sponsor",
  5677. "type": "custom"
  5678. },
  5679. {
  5680. "url": "https://github.com/fabpot",
  5681. "type": "github"
  5682. },
  5683. {
  5684. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5685. "type": "tidelift"
  5686. }
  5687. ],
  5688. "time": "2023-07-19T20:17:28+00:00"
  5689. },
  5690. {
  5691. "name": "symfony/css-selector",
  5692. "version": "v6.3.2",
  5693. "source": {
  5694. "type": "git",
  5695. "url": "https://github.com/symfony/css-selector.git",
  5696. "reference": "883d961421ab1709877c10ac99451632a3d6fa57"
  5697. },
  5698. "dist": {
  5699. "type": "zip",
  5700. "url": "https://api.github.com/repos/symfony/css-selector/zipball/883d961421ab1709877c10ac99451632a3d6fa57",
  5701. "reference": "883d961421ab1709877c10ac99451632a3d6fa57",
  5702. "shasum": ""
  5703. },
  5704. "require": {
  5705. "php": ">=8.1"
  5706. },
  5707. "type": "library",
  5708. "autoload": {
  5709. "psr-4": {
  5710. "Symfony\\Component\\CssSelector\\": ""
  5711. },
  5712. "exclude-from-classmap": [
  5713. "/Tests/"
  5714. ]
  5715. },
  5716. "notification-url": "https://packagist.org/downloads/",
  5717. "license": [
  5718. "MIT"
  5719. ],
  5720. "authors": [
  5721. {
  5722. "name": "Fabien Potencier",
  5723. "email": "fabien@symfony.com"
  5724. },
  5725. {
  5726. "name": "Jean-François Simon",
  5727. "email": "jeanfrancois.simon@sensiolabs.com"
  5728. },
  5729. {
  5730. "name": "Symfony Community",
  5731. "homepage": "https://symfony.com/contributors"
  5732. }
  5733. ],
  5734. "description": "Converts CSS selectors to XPath expressions",
  5735. "homepage": "https://symfony.com",
  5736. "support": {
  5737. "source": "https://github.com/symfony/css-selector/tree/v6.3.2"
  5738. },
  5739. "funding": [
  5740. {
  5741. "url": "https://symfony.com/sponsor",
  5742. "type": "custom"
  5743. },
  5744. {
  5745. "url": "https://github.com/fabpot",
  5746. "type": "github"
  5747. },
  5748. {
  5749. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5750. "type": "tidelift"
  5751. }
  5752. ],
  5753. "time": "2023-07-12T16:00:22+00:00"
  5754. },
  5755. {
  5756. "name": "symfony/deprecation-contracts",
  5757. "version": "v3.3.0",
  5758. "source": {
  5759. "type": "git",
  5760. "url": "https://github.com/symfony/deprecation-contracts.git",
  5761. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  5762. },
  5763. "dist": {
  5764. "type": "zip",
  5765. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  5766. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  5767. "shasum": ""
  5768. },
  5769. "require": {
  5770. "php": ">=8.1"
  5771. },
  5772. "type": "library",
  5773. "extra": {
  5774. "branch-alias": {
  5775. "dev-main": "3.4-dev"
  5776. },
  5777. "thanks": {
  5778. "name": "symfony/contracts",
  5779. "url": "https://github.com/symfony/contracts"
  5780. }
  5781. },
  5782. "autoload": {
  5783. "files": [
  5784. "function.php"
  5785. ]
  5786. },
  5787. "notification-url": "https://packagist.org/downloads/",
  5788. "license": [
  5789. "MIT"
  5790. ],
  5791. "authors": [
  5792. {
  5793. "name": "Nicolas Grekas",
  5794. "email": "p@tchwork.com"
  5795. },
  5796. {
  5797. "name": "Symfony Community",
  5798. "homepage": "https://symfony.com/contributors"
  5799. }
  5800. ],
  5801. "description": "A generic function and convention to trigger deprecation notices",
  5802. "homepage": "https://symfony.com",
  5803. "support": {
  5804. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  5805. },
  5806. "funding": [
  5807. {
  5808. "url": "https://symfony.com/sponsor",
  5809. "type": "custom"
  5810. },
  5811. {
  5812. "url": "https://github.com/fabpot",
  5813. "type": "github"
  5814. },
  5815. {
  5816. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5817. "type": "tidelift"
  5818. }
  5819. ],
  5820. "time": "2023-05-23T14:45:45+00:00"
  5821. },
  5822. {
  5823. "name": "symfony/error-handler",
  5824. "version": "v6.3.2",
  5825. "source": {
  5826. "type": "git",
  5827. "url": "https://github.com/symfony/error-handler.git",
  5828. "reference": "85fd65ed295c4078367c784e8a5a6cee30348b7a"
  5829. },
  5830. "dist": {
  5831. "type": "zip",
  5832. "url": "https://api.github.com/repos/symfony/error-handler/zipball/85fd65ed295c4078367c784e8a5a6cee30348b7a",
  5833. "reference": "85fd65ed295c4078367c784e8a5a6cee30348b7a",
  5834. "shasum": ""
  5835. },
  5836. "require": {
  5837. "php": ">=8.1",
  5838. "psr/log": "^1|^2|^3",
  5839. "symfony/var-dumper": "^5.4|^6.0"
  5840. },
  5841. "conflict": {
  5842. "symfony/deprecation-contracts": "<2.5"
  5843. },
  5844. "require-dev": {
  5845. "symfony/deprecation-contracts": "^2.5|^3",
  5846. "symfony/http-kernel": "^5.4|^6.0",
  5847. "symfony/serializer": "^5.4|^6.0"
  5848. },
  5849. "bin": [
  5850. "Resources/bin/patch-type-declarations"
  5851. ],
  5852. "type": "library",
  5853. "autoload": {
  5854. "psr-4": {
  5855. "Symfony\\Component\\ErrorHandler\\": ""
  5856. },
  5857. "exclude-from-classmap": [
  5858. "/Tests/"
  5859. ]
  5860. },
  5861. "notification-url": "https://packagist.org/downloads/",
  5862. "license": [
  5863. "MIT"
  5864. ],
  5865. "authors": [
  5866. {
  5867. "name": "Fabien Potencier",
  5868. "email": "fabien@symfony.com"
  5869. },
  5870. {
  5871. "name": "Symfony Community",
  5872. "homepage": "https://symfony.com/contributors"
  5873. }
  5874. ],
  5875. "description": "Provides tools to manage errors and ease debugging PHP code",
  5876. "homepage": "https://symfony.com",
  5877. "support": {
  5878. "source": "https://github.com/symfony/error-handler/tree/v6.3.2"
  5879. },
  5880. "funding": [
  5881. {
  5882. "url": "https://symfony.com/sponsor",
  5883. "type": "custom"
  5884. },
  5885. {
  5886. "url": "https://github.com/fabpot",
  5887. "type": "github"
  5888. },
  5889. {
  5890. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5891. "type": "tidelift"
  5892. }
  5893. ],
  5894. "time": "2023-07-16T17:05:46+00:00"
  5895. },
  5896. {
  5897. "name": "symfony/event-dispatcher",
  5898. "version": "v6.3.2",
  5899. "source": {
  5900. "type": "git",
  5901. "url": "https://github.com/symfony/event-dispatcher.git",
  5902. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e"
  5903. },
  5904. "dist": {
  5905. "type": "zip",
  5906. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  5907. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  5908. "shasum": ""
  5909. },
  5910. "require": {
  5911. "php": ">=8.1",
  5912. "symfony/event-dispatcher-contracts": "^2.5|^3"
  5913. },
  5914. "conflict": {
  5915. "symfony/dependency-injection": "<5.4",
  5916. "symfony/service-contracts": "<2.5"
  5917. },
  5918. "provide": {
  5919. "psr/event-dispatcher-implementation": "1.0",
  5920. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5921. },
  5922. "require-dev": {
  5923. "psr/log": "^1|^2|^3",
  5924. "symfony/config": "^5.4|^6.0",
  5925. "symfony/dependency-injection": "^5.4|^6.0",
  5926. "symfony/error-handler": "^5.4|^6.0",
  5927. "symfony/expression-language": "^5.4|^6.0",
  5928. "symfony/http-foundation": "^5.4|^6.0",
  5929. "symfony/service-contracts": "^2.5|^3",
  5930. "symfony/stopwatch": "^5.4|^6.0"
  5931. },
  5932. "type": "library",
  5933. "autoload": {
  5934. "psr-4": {
  5935. "Symfony\\Component\\EventDispatcher\\": ""
  5936. },
  5937. "exclude-from-classmap": [
  5938. "/Tests/"
  5939. ]
  5940. },
  5941. "notification-url": "https://packagist.org/downloads/",
  5942. "license": [
  5943. "MIT"
  5944. ],
  5945. "authors": [
  5946. {
  5947. "name": "Fabien Potencier",
  5948. "email": "fabien@symfony.com"
  5949. },
  5950. {
  5951. "name": "Symfony Community",
  5952. "homepage": "https://symfony.com/contributors"
  5953. }
  5954. ],
  5955. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5956. "homepage": "https://symfony.com",
  5957. "support": {
  5958. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2"
  5959. },
  5960. "funding": [
  5961. {
  5962. "url": "https://symfony.com/sponsor",
  5963. "type": "custom"
  5964. },
  5965. {
  5966. "url": "https://github.com/fabpot",
  5967. "type": "github"
  5968. },
  5969. {
  5970. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5971. "type": "tidelift"
  5972. }
  5973. ],
  5974. "time": "2023-07-06T06:56:43+00:00"
  5975. },
  5976. {
  5977. "name": "symfony/event-dispatcher-contracts",
  5978. "version": "v3.3.0",
  5979. "source": {
  5980. "type": "git",
  5981. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5982. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  5983. },
  5984. "dist": {
  5985. "type": "zip",
  5986. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  5987. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  5988. "shasum": ""
  5989. },
  5990. "require": {
  5991. "php": ">=8.1",
  5992. "psr/event-dispatcher": "^1"
  5993. },
  5994. "type": "library",
  5995. "extra": {
  5996. "branch-alias": {
  5997. "dev-main": "3.4-dev"
  5998. },
  5999. "thanks": {
  6000. "name": "symfony/contracts",
  6001. "url": "https://github.com/symfony/contracts"
  6002. }
  6003. },
  6004. "autoload": {
  6005. "psr-4": {
  6006. "Symfony\\Contracts\\EventDispatcher\\": ""
  6007. }
  6008. },
  6009. "notification-url": "https://packagist.org/downloads/",
  6010. "license": [
  6011. "MIT"
  6012. ],
  6013. "authors": [
  6014. {
  6015. "name": "Nicolas Grekas",
  6016. "email": "p@tchwork.com"
  6017. },
  6018. {
  6019. "name": "Symfony Community",
  6020. "homepage": "https://symfony.com/contributors"
  6021. }
  6022. ],
  6023. "description": "Generic abstractions related to dispatching event",
  6024. "homepage": "https://symfony.com",
  6025. "keywords": [
  6026. "abstractions",
  6027. "contracts",
  6028. "decoupling",
  6029. "interfaces",
  6030. "interoperability",
  6031. "standards"
  6032. ],
  6033. "support": {
  6034. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  6035. },
  6036. "funding": [
  6037. {
  6038. "url": "https://symfony.com/sponsor",
  6039. "type": "custom"
  6040. },
  6041. {
  6042. "url": "https://github.com/fabpot",
  6043. "type": "github"
  6044. },
  6045. {
  6046. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6047. "type": "tidelift"
  6048. }
  6049. ],
  6050. "time": "2023-05-23T14:45:45+00:00"
  6051. },
  6052. {
  6053. "name": "symfony/finder",
  6054. "version": "v6.3.3",
  6055. "source": {
  6056. "type": "git",
  6057. "url": "https://github.com/symfony/finder.git",
  6058. "reference": "9915db259f67d21eefee768c1abcf1cc61b1fc9e"
  6059. },
  6060. "dist": {
  6061. "type": "zip",
  6062. "url": "https://api.github.com/repos/symfony/finder/zipball/9915db259f67d21eefee768c1abcf1cc61b1fc9e",
  6063. "reference": "9915db259f67d21eefee768c1abcf1cc61b1fc9e",
  6064. "shasum": ""
  6065. },
  6066. "require": {
  6067. "php": ">=8.1"
  6068. },
  6069. "require-dev": {
  6070. "symfony/filesystem": "^6.0"
  6071. },
  6072. "type": "library",
  6073. "autoload": {
  6074. "psr-4": {
  6075. "Symfony\\Component\\Finder\\": ""
  6076. },
  6077. "exclude-from-classmap": [
  6078. "/Tests/"
  6079. ]
  6080. },
  6081. "notification-url": "https://packagist.org/downloads/",
  6082. "license": [
  6083. "MIT"
  6084. ],
  6085. "authors": [
  6086. {
  6087. "name": "Fabien Potencier",
  6088. "email": "fabien@symfony.com"
  6089. },
  6090. {
  6091. "name": "Symfony Community",
  6092. "homepage": "https://symfony.com/contributors"
  6093. }
  6094. ],
  6095. "description": "Finds files and directories via an intuitive fluent interface",
  6096. "homepage": "https://symfony.com",
  6097. "support": {
  6098. "source": "https://github.com/symfony/finder/tree/v6.3.3"
  6099. },
  6100. "funding": [
  6101. {
  6102. "url": "https://symfony.com/sponsor",
  6103. "type": "custom"
  6104. },
  6105. {
  6106. "url": "https://github.com/fabpot",
  6107. "type": "github"
  6108. },
  6109. {
  6110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6111. "type": "tidelift"
  6112. }
  6113. ],
  6114. "time": "2023-07-31T08:31:44+00:00"
  6115. },
  6116. {
  6117. "name": "symfony/http-foundation",
  6118. "version": "v6.3.2",
  6119. "source": {
  6120. "type": "git",
  6121. "url": "https://github.com/symfony/http-foundation.git",
  6122. "reference": "43ed99d30f5f466ffa00bdac3f5f7aa9cd7617c3"
  6123. },
  6124. "dist": {
  6125. "type": "zip",
  6126. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/43ed99d30f5f466ffa00bdac3f5f7aa9cd7617c3",
  6127. "reference": "43ed99d30f5f466ffa00bdac3f5f7aa9cd7617c3",
  6128. "shasum": ""
  6129. },
  6130. "require": {
  6131. "php": ">=8.1",
  6132. "symfony/deprecation-contracts": "^2.5|^3",
  6133. "symfony/polyfill-mbstring": "~1.1",
  6134. "symfony/polyfill-php83": "^1.27"
  6135. },
  6136. "conflict": {
  6137. "symfony/cache": "<6.2"
  6138. },
  6139. "require-dev": {
  6140. "doctrine/dbal": "^2.13.1|^3.0",
  6141. "predis/predis": "^1.1|^2.0",
  6142. "symfony/cache": "^5.4|^6.0",
  6143. "symfony/dependency-injection": "^5.4|^6.0",
  6144. "symfony/expression-language": "^5.4|^6.0",
  6145. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6146. "symfony/mime": "^5.4|^6.0",
  6147. "symfony/rate-limiter": "^5.2|^6.0"
  6148. },
  6149. "type": "library",
  6150. "autoload": {
  6151. "psr-4": {
  6152. "Symfony\\Component\\HttpFoundation\\": ""
  6153. },
  6154. "exclude-from-classmap": [
  6155. "/Tests/"
  6156. ]
  6157. },
  6158. "notification-url": "https://packagist.org/downloads/",
  6159. "license": [
  6160. "MIT"
  6161. ],
  6162. "authors": [
  6163. {
  6164. "name": "Fabien Potencier",
  6165. "email": "fabien@symfony.com"
  6166. },
  6167. {
  6168. "name": "Symfony Community",
  6169. "homepage": "https://symfony.com/contributors"
  6170. }
  6171. ],
  6172. "description": "Defines an object-oriented layer for the HTTP specification",
  6173. "homepage": "https://symfony.com",
  6174. "support": {
  6175. "source": "https://github.com/symfony/http-foundation/tree/v6.3.2"
  6176. },
  6177. "funding": [
  6178. {
  6179. "url": "https://symfony.com/sponsor",
  6180. "type": "custom"
  6181. },
  6182. {
  6183. "url": "https://github.com/fabpot",
  6184. "type": "github"
  6185. },
  6186. {
  6187. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6188. "type": "tidelift"
  6189. }
  6190. ],
  6191. "time": "2023-07-23T21:58:39+00:00"
  6192. },
  6193. {
  6194. "name": "symfony/http-kernel",
  6195. "version": "v6.3.3",
  6196. "source": {
  6197. "type": "git",
  6198. "url": "https://github.com/symfony/http-kernel.git",
  6199. "reference": "d3b567f0addf695e10b0c6d57564a9bea2e058ee"
  6200. },
  6201. "dist": {
  6202. "type": "zip",
  6203. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/d3b567f0addf695e10b0c6d57564a9bea2e058ee",
  6204. "reference": "d3b567f0addf695e10b0c6d57564a9bea2e058ee",
  6205. "shasum": ""
  6206. },
  6207. "require": {
  6208. "php": ">=8.1",
  6209. "psr/log": "^1|^2|^3",
  6210. "symfony/deprecation-contracts": "^2.5|^3",
  6211. "symfony/error-handler": "^6.3",
  6212. "symfony/event-dispatcher": "^5.4|^6.0",
  6213. "symfony/http-foundation": "^6.2.7",
  6214. "symfony/polyfill-ctype": "^1.8"
  6215. },
  6216. "conflict": {
  6217. "symfony/browser-kit": "<5.4",
  6218. "symfony/cache": "<5.4",
  6219. "symfony/config": "<6.1",
  6220. "symfony/console": "<5.4",
  6221. "symfony/dependency-injection": "<6.3",
  6222. "symfony/doctrine-bridge": "<5.4",
  6223. "symfony/form": "<5.4",
  6224. "symfony/http-client": "<5.4",
  6225. "symfony/http-client-contracts": "<2.5",
  6226. "symfony/mailer": "<5.4",
  6227. "symfony/messenger": "<5.4",
  6228. "symfony/translation": "<5.4",
  6229. "symfony/translation-contracts": "<2.5",
  6230. "symfony/twig-bridge": "<5.4",
  6231. "symfony/validator": "<5.4",
  6232. "symfony/var-dumper": "<6.3",
  6233. "twig/twig": "<2.13"
  6234. },
  6235. "provide": {
  6236. "psr/log-implementation": "1.0|2.0|3.0"
  6237. },
  6238. "require-dev": {
  6239. "psr/cache": "^1.0|^2.0|^3.0",
  6240. "symfony/browser-kit": "^5.4|^6.0",
  6241. "symfony/clock": "^6.2",
  6242. "symfony/config": "^6.1",
  6243. "symfony/console": "^5.4|^6.0",
  6244. "symfony/css-selector": "^5.4|^6.0",
  6245. "symfony/dependency-injection": "^6.3",
  6246. "symfony/dom-crawler": "^5.4|^6.0",
  6247. "symfony/expression-language": "^5.4|^6.0",
  6248. "symfony/finder": "^5.4|^6.0",
  6249. "symfony/http-client-contracts": "^2.5|^3",
  6250. "symfony/process": "^5.4|^6.0",
  6251. "symfony/property-access": "^5.4.5|^6.0.5",
  6252. "symfony/routing": "^5.4|^6.0",
  6253. "symfony/serializer": "^6.3",
  6254. "symfony/stopwatch": "^5.4|^6.0",
  6255. "symfony/translation": "^5.4|^6.0",
  6256. "symfony/translation-contracts": "^2.5|^3",
  6257. "symfony/uid": "^5.4|^6.0",
  6258. "symfony/validator": "^6.3",
  6259. "symfony/var-exporter": "^6.2",
  6260. "twig/twig": "^2.13|^3.0.4"
  6261. },
  6262. "type": "library",
  6263. "autoload": {
  6264. "psr-4": {
  6265. "Symfony\\Component\\HttpKernel\\": ""
  6266. },
  6267. "exclude-from-classmap": [
  6268. "/Tests/"
  6269. ]
  6270. },
  6271. "notification-url": "https://packagist.org/downloads/",
  6272. "license": [
  6273. "MIT"
  6274. ],
  6275. "authors": [
  6276. {
  6277. "name": "Fabien Potencier",
  6278. "email": "fabien@symfony.com"
  6279. },
  6280. {
  6281. "name": "Symfony Community",
  6282. "homepage": "https://symfony.com/contributors"
  6283. }
  6284. ],
  6285. "description": "Provides a structured process for converting a Request into a Response",
  6286. "homepage": "https://symfony.com",
  6287. "support": {
  6288. "source": "https://github.com/symfony/http-kernel/tree/v6.3.3"
  6289. },
  6290. "funding": [
  6291. {
  6292. "url": "https://symfony.com/sponsor",
  6293. "type": "custom"
  6294. },
  6295. {
  6296. "url": "https://github.com/fabpot",
  6297. "type": "github"
  6298. },
  6299. {
  6300. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6301. "type": "tidelift"
  6302. }
  6303. ],
  6304. "time": "2023-07-31T10:33:00+00:00"
  6305. },
  6306. {
  6307. "name": "symfony/mailer",
  6308. "version": "v6.3.0",
  6309. "source": {
  6310. "type": "git",
  6311. "url": "https://github.com/symfony/mailer.git",
  6312. "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435"
  6313. },
  6314. "dist": {
  6315. "type": "zip",
  6316. "url": "https://api.github.com/repos/symfony/mailer/zipball/7b03d9be1dea29bfec0a6c7b603f5072a4c97435",
  6317. "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435",
  6318. "shasum": ""
  6319. },
  6320. "require": {
  6321. "egulias/email-validator": "^2.1.10|^3|^4",
  6322. "php": ">=8.1",
  6323. "psr/event-dispatcher": "^1",
  6324. "psr/log": "^1|^2|^3",
  6325. "symfony/event-dispatcher": "^5.4|^6.0",
  6326. "symfony/mime": "^6.2",
  6327. "symfony/service-contracts": "^2.5|^3"
  6328. },
  6329. "conflict": {
  6330. "symfony/http-client-contracts": "<2.5",
  6331. "symfony/http-kernel": "<5.4",
  6332. "symfony/messenger": "<6.2",
  6333. "symfony/mime": "<6.2",
  6334. "symfony/twig-bridge": "<6.2.1"
  6335. },
  6336. "require-dev": {
  6337. "symfony/console": "^5.4|^6.0",
  6338. "symfony/http-client": "^5.4|^6.0",
  6339. "symfony/messenger": "^6.2",
  6340. "symfony/twig-bridge": "^6.2"
  6341. },
  6342. "type": "library",
  6343. "autoload": {
  6344. "psr-4": {
  6345. "Symfony\\Component\\Mailer\\": ""
  6346. },
  6347. "exclude-from-classmap": [
  6348. "/Tests/"
  6349. ]
  6350. },
  6351. "notification-url": "https://packagist.org/downloads/",
  6352. "license": [
  6353. "MIT"
  6354. ],
  6355. "authors": [
  6356. {
  6357. "name": "Fabien Potencier",
  6358. "email": "fabien@symfony.com"
  6359. },
  6360. {
  6361. "name": "Symfony Community",
  6362. "homepage": "https://symfony.com/contributors"
  6363. }
  6364. ],
  6365. "description": "Helps sending emails",
  6366. "homepage": "https://symfony.com",
  6367. "support": {
  6368. "source": "https://github.com/symfony/mailer/tree/v6.3.0"
  6369. },
  6370. "funding": [
  6371. {
  6372. "url": "https://symfony.com/sponsor",
  6373. "type": "custom"
  6374. },
  6375. {
  6376. "url": "https://github.com/fabpot",
  6377. "type": "github"
  6378. },
  6379. {
  6380. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6381. "type": "tidelift"
  6382. }
  6383. ],
  6384. "time": "2023-05-29T12:49:39+00:00"
  6385. },
  6386. {
  6387. "name": "symfony/mime",
  6388. "version": "v6.3.3",
  6389. "source": {
  6390. "type": "git",
  6391. "url": "https://github.com/symfony/mime.git",
  6392. "reference": "9a0cbd52baa5ba5a5b1f0cacc59466f194730f98"
  6393. },
  6394. "dist": {
  6395. "type": "zip",
  6396. "url": "https://api.github.com/repos/symfony/mime/zipball/9a0cbd52baa5ba5a5b1f0cacc59466f194730f98",
  6397. "reference": "9a0cbd52baa5ba5a5b1f0cacc59466f194730f98",
  6398. "shasum": ""
  6399. },
  6400. "require": {
  6401. "php": ">=8.1",
  6402. "symfony/deprecation-contracts": "^2.5|^3",
  6403. "symfony/polyfill-intl-idn": "^1.10",
  6404. "symfony/polyfill-mbstring": "^1.0"
  6405. },
  6406. "conflict": {
  6407. "egulias/email-validator": "~3.0.0",
  6408. "phpdocumentor/reflection-docblock": "<3.2.2",
  6409. "phpdocumentor/type-resolver": "<1.4.0",
  6410. "symfony/mailer": "<5.4",
  6411. "symfony/serializer": "<6.2.13|>=6.3,<6.3.2"
  6412. },
  6413. "require-dev": {
  6414. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6415. "league/html-to-markdown": "^5.0",
  6416. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6417. "symfony/dependency-injection": "^5.4|^6.0",
  6418. "symfony/property-access": "^5.4|^6.0",
  6419. "symfony/property-info": "^5.4|^6.0",
  6420. "symfony/serializer": "~6.2.13|^6.3.2"
  6421. },
  6422. "type": "library",
  6423. "autoload": {
  6424. "psr-4": {
  6425. "Symfony\\Component\\Mime\\": ""
  6426. },
  6427. "exclude-from-classmap": [
  6428. "/Tests/"
  6429. ]
  6430. },
  6431. "notification-url": "https://packagist.org/downloads/",
  6432. "license": [
  6433. "MIT"
  6434. ],
  6435. "authors": [
  6436. {
  6437. "name": "Fabien Potencier",
  6438. "email": "fabien@symfony.com"
  6439. },
  6440. {
  6441. "name": "Symfony Community",
  6442. "homepage": "https://symfony.com/contributors"
  6443. }
  6444. ],
  6445. "description": "Allows manipulating MIME messages",
  6446. "homepage": "https://symfony.com",
  6447. "keywords": [
  6448. "mime",
  6449. "mime-type"
  6450. ],
  6451. "support": {
  6452. "source": "https://github.com/symfony/mime/tree/v6.3.3"
  6453. },
  6454. "funding": [
  6455. {
  6456. "url": "https://symfony.com/sponsor",
  6457. "type": "custom"
  6458. },
  6459. {
  6460. "url": "https://github.com/fabpot",
  6461. "type": "github"
  6462. },
  6463. {
  6464. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6465. "type": "tidelift"
  6466. }
  6467. ],
  6468. "time": "2023-07-31T07:08:24+00:00"
  6469. },
  6470. {
  6471. "name": "symfony/polyfill-ctype",
  6472. "version": "v1.27.0",
  6473. "source": {
  6474. "type": "git",
  6475. "url": "https://github.com/symfony/polyfill-ctype.git",
  6476. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  6477. },
  6478. "dist": {
  6479. "type": "zip",
  6480. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  6481. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  6482. "shasum": ""
  6483. },
  6484. "require": {
  6485. "php": ">=7.1"
  6486. },
  6487. "provide": {
  6488. "ext-ctype": "*"
  6489. },
  6490. "suggest": {
  6491. "ext-ctype": "For best performance"
  6492. },
  6493. "type": "library",
  6494. "extra": {
  6495. "branch-alias": {
  6496. "dev-main": "1.27-dev"
  6497. },
  6498. "thanks": {
  6499. "name": "symfony/polyfill",
  6500. "url": "https://github.com/symfony/polyfill"
  6501. }
  6502. },
  6503. "autoload": {
  6504. "files": [
  6505. "bootstrap.php"
  6506. ],
  6507. "psr-4": {
  6508. "Symfony\\Polyfill\\Ctype\\": ""
  6509. }
  6510. },
  6511. "notification-url": "https://packagist.org/downloads/",
  6512. "license": [
  6513. "MIT"
  6514. ],
  6515. "authors": [
  6516. {
  6517. "name": "Gert de Pagter",
  6518. "email": "BackEndTea@gmail.com"
  6519. },
  6520. {
  6521. "name": "Symfony Community",
  6522. "homepage": "https://symfony.com/contributors"
  6523. }
  6524. ],
  6525. "description": "Symfony polyfill for ctype functions",
  6526. "homepage": "https://symfony.com",
  6527. "keywords": [
  6528. "compatibility",
  6529. "ctype",
  6530. "polyfill",
  6531. "portable"
  6532. ],
  6533. "support": {
  6534. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  6535. },
  6536. "funding": [
  6537. {
  6538. "url": "https://symfony.com/sponsor",
  6539. "type": "custom"
  6540. },
  6541. {
  6542. "url": "https://github.com/fabpot",
  6543. "type": "github"
  6544. },
  6545. {
  6546. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6547. "type": "tidelift"
  6548. }
  6549. ],
  6550. "time": "2022-11-03T14:55:06+00:00"
  6551. },
  6552. {
  6553. "name": "symfony/polyfill-intl-grapheme",
  6554. "version": "v1.27.0",
  6555. "source": {
  6556. "type": "git",
  6557. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6558. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  6559. },
  6560. "dist": {
  6561. "type": "zip",
  6562. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  6563. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  6564. "shasum": ""
  6565. },
  6566. "require": {
  6567. "php": ">=7.1"
  6568. },
  6569. "suggest": {
  6570. "ext-intl": "For best performance"
  6571. },
  6572. "type": "library",
  6573. "extra": {
  6574. "branch-alias": {
  6575. "dev-main": "1.27-dev"
  6576. },
  6577. "thanks": {
  6578. "name": "symfony/polyfill",
  6579. "url": "https://github.com/symfony/polyfill"
  6580. }
  6581. },
  6582. "autoload": {
  6583. "files": [
  6584. "bootstrap.php"
  6585. ],
  6586. "psr-4": {
  6587. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6588. }
  6589. },
  6590. "notification-url": "https://packagist.org/downloads/",
  6591. "license": [
  6592. "MIT"
  6593. ],
  6594. "authors": [
  6595. {
  6596. "name": "Nicolas Grekas",
  6597. "email": "p@tchwork.com"
  6598. },
  6599. {
  6600. "name": "Symfony Community",
  6601. "homepage": "https://symfony.com/contributors"
  6602. }
  6603. ],
  6604. "description": "Symfony polyfill for intl's grapheme_* functions",
  6605. "homepage": "https://symfony.com",
  6606. "keywords": [
  6607. "compatibility",
  6608. "grapheme",
  6609. "intl",
  6610. "polyfill",
  6611. "portable",
  6612. "shim"
  6613. ],
  6614. "support": {
  6615. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  6616. },
  6617. "funding": [
  6618. {
  6619. "url": "https://symfony.com/sponsor",
  6620. "type": "custom"
  6621. },
  6622. {
  6623. "url": "https://github.com/fabpot",
  6624. "type": "github"
  6625. },
  6626. {
  6627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6628. "type": "tidelift"
  6629. }
  6630. ],
  6631. "time": "2022-11-03T14:55:06+00:00"
  6632. },
  6633. {
  6634. "name": "symfony/polyfill-intl-idn",
  6635. "version": "v1.27.0",
  6636. "source": {
  6637. "type": "git",
  6638. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6639. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  6640. },
  6641. "dist": {
  6642. "type": "zip",
  6643. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  6644. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  6645. "shasum": ""
  6646. },
  6647. "require": {
  6648. "php": ">=7.1",
  6649. "symfony/polyfill-intl-normalizer": "^1.10",
  6650. "symfony/polyfill-php72": "^1.10"
  6651. },
  6652. "suggest": {
  6653. "ext-intl": "For best performance"
  6654. },
  6655. "type": "library",
  6656. "extra": {
  6657. "branch-alias": {
  6658. "dev-main": "1.27-dev"
  6659. },
  6660. "thanks": {
  6661. "name": "symfony/polyfill",
  6662. "url": "https://github.com/symfony/polyfill"
  6663. }
  6664. },
  6665. "autoload": {
  6666. "files": [
  6667. "bootstrap.php"
  6668. ],
  6669. "psr-4": {
  6670. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6671. }
  6672. },
  6673. "notification-url": "https://packagist.org/downloads/",
  6674. "license": [
  6675. "MIT"
  6676. ],
  6677. "authors": [
  6678. {
  6679. "name": "Laurent Bassin",
  6680. "email": "laurent@bassin.info"
  6681. },
  6682. {
  6683. "name": "Trevor Rowbotham",
  6684. "email": "trevor.rowbotham@pm.me"
  6685. },
  6686. {
  6687. "name": "Symfony Community",
  6688. "homepage": "https://symfony.com/contributors"
  6689. }
  6690. ],
  6691. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6692. "homepage": "https://symfony.com",
  6693. "keywords": [
  6694. "compatibility",
  6695. "idn",
  6696. "intl",
  6697. "polyfill",
  6698. "portable",
  6699. "shim"
  6700. ],
  6701. "support": {
  6702. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  6703. },
  6704. "funding": [
  6705. {
  6706. "url": "https://symfony.com/sponsor",
  6707. "type": "custom"
  6708. },
  6709. {
  6710. "url": "https://github.com/fabpot",
  6711. "type": "github"
  6712. },
  6713. {
  6714. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6715. "type": "tidelift"
  6716. }
  6717. ],
  6718. "time": "2022-11-03T14:55:06+00:00"
  6719. },
  6720. {
  6721. "name": "symfony/polyfill-intl-normalizer",
  6722. "version": "v1.27.0",
  6723. "source": {
  6724. "type": "git",
  6725. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6726. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  6727. },
  6728. "dist": {
  6729. "type": "zip",
  6730. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  6731. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  6732. "shasum": ""
  6733. },
  6734. "require": {
  6735. "php": ">=7.1"
  6736. },
  6737. "suggest": {
  6738. "ext-intl": "For best performance"
  6739. },
  6740. "type": "library",
  6741. "extra": {
  6742. "branch-alias": {
  6743. "dev-main": "1.27-dev"
  6744. },
  6745. "thanks": {
  6746. "name": "symfony/polyfill",
  6747. "url": "https://github.com/symfony/polyfill"
  6748. }
  6749. },
  6750. "autoload": {
  6751. "files": [
  6752. "bootstrap.php"
  6753. ],
  6754. "psr-4": {
  6755. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6756. },
  6757. "classmap": [
  6758. "Resources/stubs"
  6759. ]
  6760. },
  6761. "notification-url": "https://packagist.org/downloads/",
  6762. "license": [
  6763. "MIT"
  6764. ],
  6765. "authors": [
  6766. {
  6767. "name": "Nicolas Grekas",
  6768. "email": "p@tchwork.com"
  6769. },
  6770. {
  6771. "name": "Symfony Community",
  6772. "homepage": "https://symfony.com/contributors"
  6773. }
  6774. ],
  6775. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6776. "homepage": "https://symfony.com",
  6777. "keywords": [
  6778. "compatibility",
  6779. "intl",
  6780. "normalizer",
  6781. "polyfill",
  6782. "portable",
  6783. "shim"
  6784. ],
  6785. "support": {
  6786. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  6787. },
  6788. "funding": [
  6789. {
  6790. "url": "https://symfony.com/sponsor",
  6791. "type": "custom"
  6792. },
  6793. {
  6794. "url": "https://github.com/fabpot",
  6795. "type": "github"
  6796. },
  6797. {
  6798. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6799. "type": "tidelift"
  6800. }
  6801. ],
  6802. "time": "2022-11-03T14:55:06+00:00"
  6803. },
  6804. {
  6805. "name": "symfony/polyfill-mbstring",
  6806. "version": "v1.27.0",
  6807. "source": {
  6808. "type": "git",
  6809. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6810. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  6811. },
  6812. "dist": {
  6813. "type": "zip",
  6814. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6815. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6816. "shasum": ""
  6817. },
  6818. "require": {
  6819. "php": ">=7.1"
  6820. },
  6821. "provide": {
  6822. "ext-mbstring": "*"
  6823. },
  6824. "suggest": {
  6825. "ext-mbstring": "For best performance"
  6826. },
  6827. "type": "library",
  6828. "extra": {
  6829. "branch-alias": {
  6830. "dev-main": "1.27-dev"
  6831. },
  6832. "thanks": {
  6833. "name": "symfony/polyfill",
  6834. "url": "https://github.com/symfony/polyfill"
  6835. }
  6836. },
  6837. "autoload": {
  6838. "files": [
  6839. "bootstrap.php"
  6840. ],
  6841. "psr-4": {
  6842. "Symfony\\Polyfill\\Mbstring\\": ""
  6843. }
  6844. },
  6845. "notification-url": "https://packagist.org/downloads/",
  6846. "license": [
  6847. "MIT"
  6848. ],
  6849. "authors": [
  6850. {
  6851. "name": "Nicolas Grekas",
  6852. "email": "p@tchwork.com"
  6853. },
  6854. {
  6855. "name": "Symfony Community",
  6856. "homepage": "https://symfony.com/contributors"
  6857. }
  6858. ],
  6859. "description": "Symfony polyfill for the Mbstring extension",
  6860. "homepage": "https://symfony.com",
  6861. "keywords": [
  6862. "compatibility",
  6863. "mbstring",
  6864. "polyfill",
  6865. "portable",
  6866. "shim"
  6867. ],
  6868. "support": {
  6869. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  6870. },
  6871. "funding": [
  6872. {
  6873. "url": "https://symfony.com/sponsor",
  6874. "type": "custom"
  6875. },
  6876. {
  6877. "url": "https://github.com/fabpot",
  6878. "type": "github"
  6879. },
  6880. {
  6881. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6882. "type": "tidelift"
  6883. }
  6884. ],
  6885. "time": "2022-11-03T14:55:06+00:00"
  6886. },
  6887. {
  6888. "name": "symfony/polyfill-php72",
  6889. "version": "v1.27.0",
  6890. "source": {
  6891. "type": "git",
  6892. "url": "https://github.com/symfony/polyfill-php72.git",
  6893. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  6894. },
  6895. "dist": {
  6896. "type": "zip",
  6897. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  6898. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  6899. "shasum": ""
  6900. },
  6901. "require": {
  6902. "php": ">=7.1"
  6903. },
  6904. "type": "library",
  6905. "extra": {
  6906. "branch-alias": {
  6907. "dev-main": "1.27-dev"
  6908. },
  6909. "thanks": {
  6910. "name": "symfony/polyfill",
  6911. "url": "https://github.com/symfony/polyfill"
  6912. }
  6913. },
  6914. "autoload": {
  6915. "files": [
  6916. "bootstrap.php"
  6917. ],
  6918. "psr-4": {
  6919. "Symfony\\Polyfill\\Php72\\": ""
  6920. }
  6921. },
  6922. "notification-url": "https://packagist.org/downloads/",
  6923. "license": [
  6924. "MIT"
  6925. ],
  6926. "authors": [
  6927. {
  6928. "name": "Nicolas Grekas",
  6929. "email": "p@tchwork.com"
  6930. },
  6931. {
  6932. "name": "Symfony Community",
  6933. "homepage": "https://symfony.com/contributors"
  6934. }
  6935. ],
  6936. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6937. "homepage": "https://symfony.com",
  6938. "keywords": [
  6939. "compatibility",
  6940. "polyfill",
  6941. "portable",
  6942. "shim"
  6943. ],
  6944. "support": {
  6945. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  6946. },
  6947. "funding": [
  6948. {
  6949. "url": "https://symfony.com/sponsor",
  6950. "type": "custom"
  6951. },
  6952. {
  6953. "url": "https://github.com/fabpot",
  6954. "type": "github"
  6955. },
  6956. {
  6957. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6958. "type": "tidelift"
  6959. }
  6960. ],
  6961. "time": "2022-11-03T14:55:06+00:00"
  6962. },
  6963. {
  6964. "name": "symfony/polyfill-php80",
  6965. "version": "v1.27.0",
  6966. "source": {
  6967. "type": "git",
  6968. "url": "https://github.com/symfony/polyfill-php80.git",
  6969. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  6970. },
  6971. "dist": {
  6972. "type": "zip",
  6973. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  6974. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  6975. "shasum": ""
  6976. },
  6977. "require": {
  6978. "php": ">=7.1"
  6979. },
  6980. "type": "library",
  6981. "extra": {
  6982. "branch-alias": {
  6983. "dev-main": "1.27-dev"
  6984. },
  6985. "thanks": {
  6986. "name": "symfony/polyfill",
  6987. "url": "https://github.com/symfony/polyfill"
  6988. }
  6989. },
  6990. "autoload": {
  6991. "files": [
  6992. "bootstrap.php"
  6993. ],
  6994. "psr-4": {
  6995. "Symfony\\Polyfill\\Php80\\": ""
  6996. },
  6997. "classmap": [
  6998. "Resources/stubs"
  6999. ]
  7000. },
  7001. "notification-url": "https://packagist.org/downloads/",
  7002. "license": [
  7003. "MIT"
  7004. ],
  7005. "authors": [
  7006. {
  7007. "name": "Ion Bazan",
  7008. "email": "ion.bazan@gmail.com"
  7009. },
  7010. {
  7011. "name": "Nicolas Grekas",
  7012. "email": "p@tchwork.com"
  7013. },
  7014. {
  7015. "name": "Symfony Community",
  7016. "homepage": "https://symfony.com/contributors"
  7017. }
  7018. ],
  7019. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7020. "homepage": "https://symfony.com",
  7021. "keywords": [
  7022. "compatibility",
  7023. "polyfill",
  7024. "portable",
  7025. "shim"
  7026. ],
  7027. "support": {
  7028. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  7029. },
  7030. "funding": [
  7031. {
  7032. "url": "https://symfony.com/sponsor",
  7033. "type": "custom"
  7034. },
  7035. {
  7036. "url": "https://github.com/fabpot",
  7037. "type": "github"
  7038. },
  7039. {
  7040. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7041. "type": "tidelift"
  7042. }
  7043. ],
  7044. "time": "2022-11-03T14:55:06+00:00"
  7045. },
  7046. {
  7047. "name": "symfony/polyfill-php83",
  7048. "version": "v1.27.0",
  7049. "source": {
  7050. "type": "git",
  7051. "url": "https://github.com/symfony/polyfill-php83.git",
  7052. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57"
  7053. },
  7054. "dist": {
  7055. "type": "zip",
  7056. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57",
  7057. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57",
  7058. "shasum": ""
  7059. },
  7060. "require": {
  7061. "php": ">=7.1",
  7062. "symfony/polyfill-php80": "^1.14"
  7063. },
  7064. "type": "library",
  7065. "extra": {
  7066. "branch-alias": {
  7067. "dev-main": "1.27-dev"
  7068. },
  7069. "thanks": {
  7070. "name": "symfony/polyfill",
  7071. "url": "https://github.com/symfony/polyfill"
  7072. }
  7073. },
  7074. "autoload": {
  7075. "files": [
  7076. "bootstrap.php"
  7077. ],
  7078. "psr-4": {
  7079. "Symfony\\Polyfill\\Php83\\": ""
  7080. }
  7081. },
  7082. "notification-url": "https://packagist.org/downloads/",
  7083. "license": [
  7084. "MIT"
  7085. ],
  7086. "authors": [
  7087. {
  7088. "name": "Nicolas Grekas",
  7089. "email": "p@tchwork.com"
  7090. },
  7091. {
  7092. "name": "Symfony Community",
  7093. "homepage": "https://symfony.com/contributors"
  7094. }
  7095. ],
  7096. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  7097. "homepage": "https://symfony.com",
  7098. "keywords": [
  7099. "compatibility",
  7100. "polyfill",
  7101. "portable",
  7102. "shim"
  7103. ],
  7104. "support": {
  7105. "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0"
  7106. },
  7107. "funding": [
  7108. {
  7109. "url": "https://symfony.com/sponsor",
  7110. "type": "custom"
  7111. },
  7112. {
  7113. "url": "https://github.com/fabpot",
  7114. "type": "github"
  7115. },
  7116. {
  7117. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7118. "type": "tidelift"
  7119. }
  7120. ],
  7121. "time": "2022-11-03T14:55:06+00:00"
  7122. },
  7123. {
  7124. "name": "symfony/polyfill-uuid",
  7125. "version": "v1.27.0",
  7126. "source": {
  7127. "type": "git",
  7128. "url": "https://github.com/symfony/polyfill-uuid.git",
  7129. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
  7130. },
  7131. "dist": {
  7132. "type": "zip",
  7133. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
  7134. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
  7135. "shasum": ""
  7136. },
  7137. "require": {
  7138. "php": ">=7.1"
  7139. },
  7140. "provide": {
  7141. "ext-uuid": "*"
  7142. },
  7143. "suggest": {
  7144. "ext-uuid": "For best performance"
  7145. },
  7146. "type": "library",
  7147. "extra": {
  7148. "branch-alias": {
  7149. "dev-main": "1.27-dev"
  7150. },
  7151. "thanks": {
  7152. "name": "symfony/polyfill",
  7153. "url": "https://github.com/symfony/polyfill"
  7154. }
  7155. },
  7156. "autoload": {
  7157. "files": [
  7158. "bootstrap.php"
  7159. ],
  7160. "psr-4": {
  7161. "Symfony\\Polyfill\\Uuid\\": ""
  7162. }
  7163. },
  7164. "notification-url": "https://packagist.org/downloads/",
  7165. "license": [
  7166. "MIT"
  7167. ],
  7168. "authors": [
  7169. {
  7170. "name": "Grégoire Pineau",
  7171. "email": "lyrixx@lyrixx.info"
  7172. },
  7173. {
  7174. "name": "Symfony Community",
  7175. "homepage": "https://symfony.com/contributors"
  7176. }
  7177. ],
  7178. "description": "Symfony polyfill for uuid functions",
  7179. "homepage": "https://symfony.com",
  7180. "keywords": [
  7181. "compatibility",
  7182. "polyfill",
  7183. "portable",
  7184. "uuid"
  7185. ],
  7186. "support": {
  7187. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
  7188. },
  7189. "funding": [
  7190. {
  7191. "url": "https://symfony.com/sponsor",
  7192. "type": "custom"
  7193. },
  7194. {
  7195. "url": "https://github.com/fabpot",
  7196. "type": "github"
  7197. },
  7198. {
  7199. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7200. "type": "tidelift"
  7201. }
  7202. ],
  7203. "time": "2022-11-03T14:55:06+00:00"
  7204. },
  7205. {
  7206. "name": "symfony/process",
  7207. "version": "v6.3.2",
  7208. "source": {
  7209. "type": "git",
  7210. "url": "https://github.com/symfony/process.git",
  7211. "reference": "c5ce962db0d9b6e80247ca5eb9af6472bd4d7b5d"
  7212. },
  7213. "dist": {
  7214. "type": "zip",
  7215. "url": "https://api.github.com/repos/symfony/process/zipball/c5ce962db0d9b6e80247ca5eb9af6472bd4d7b5d",
  7216. "reference": "c5ce962db0d9b6e80247ca5eb9af6472bd4d7b5d",
  7217. "shasum": ""
  7218. },
  7219. "require": {
  7220. "php": ">=8.1"
  7221. },
  7222. "type": "library",
  7223. "autoload": {
  7224. "psr-4": {
  7225. "Symfony\\Component\\Process\\": ""
  7226. },
  7227. "exclude-from-classmap": [
  7228. "/Tests/"
  7229. ]
  7230. },
  7231. "notification-url": "https://packagist.org/downloads/",
  7232. "license": [
  7233. "MIT"
  7234. ],
  7235. "authors": [
  7236. {
  7237. "name": "Fabien Potencier",
  7238. "email": "fabien@symfony.com"
  7239. },
  7240. {
  7241. "name": "Symfony Community",
  7242. "homepage": "https://symfony.com/contributors"
  7243. }
  7244. ],
  7245. "description": "Executes commands in sub-processes",
  7246. "homepage": "https://symfony.com",
  7247. "support": {
  7248. "source": "https://github.com/symfony/process/tree/v6.3.2"
  7249. },
  7250. "funding": [
  7251. {
  7252. "url": "https://symfony.com/sponsor",
  7253. "type": "custom"
  7254. },
  7255. {
  7256. "url": "https://github.com/fabpot",
  7257. "type": "github"
  7258. },
  7259. {
  7260. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7261. "type": "tidelift"
  7262. }
  7263. ],
  7264. "time": "2023-07-12T16:00:22+00:00"
  7265. },
  7266. {
  7267. "name": "symfony/routing",
  7268. "version": "v6.3.3",
  7269. "source": {
  7270. "type": "git",
  7271. "url": "https://github.com/symfony/routing.git",
  7272. "reference": "e7243039ab663822ff134fbc46099b5fdfa16f6a"
  7273. },
  7274. "dist": {
  7275. "type": "zip",
  7276. "url": "https://api.github.com/repos/symfony/routing/zipball/e7243039ab663822ff134fbc46099b5fdfa16f6a",
  7277. "reference": "e7243039ab663822ff134fbc46099b5fdfa16f6a",
  7278. "shasum": ""
  7279. },
  7280. "require": {
  7281. "php": ">=8.1",
  7282. "symfony/deprecation-contracts": "^2.5|^3"
  7283. },
  7284. "conflict": {
  7285. "doctrine/annotations": "<1.12",
  7286. "symfony/config": "<6.2",
  7287. "symfony/dependency-injection": "<5.4",
  7288. "symfony/yaml": "<5.4"
  7289. },
  7290. "require-dev": {
  7291. "doctrine/annotations": "^1.12|^2",
  7292. "psr/log": "^1|^2|^3",
  7293. "symfony/config": "^6.2",
  7294. "symfony/dependency-injection": "^5.4|^6.0",
  7295. "symfony/expression-language": "^5.4|^6.0",
  7296. "symfony/http-foundation": "^5.4|^6.0",
  7297. "symfony/yaml": "^5.4|^6.0"
  7298. },
  7299. "type": "library",
  7300. "autoload": {
  7301. "psr-4": {
  7302. "Symfony\\Component\\Routing\\": ""
  7303. },
  7304. "exclude-from-classmap": [
  7305. "/Tests/"
  7306. ]
  7307. },
  7308. "notification-url": "https://packagist.org/downloads/",
  7309. "license": [
  7310. "MIT"
  7311. ],
  7312. "authors": [
  7313. {
  7314. "name": "Fabien Potencier",
  7315. "email": "fabien@symfony.com"
  7316. },
  7317. {
  7318. "name": "Symfony Community",
  7319. "homepage": "https://symfony.com/contributors"
  7320. }
  7321. ],
  7322. "description": "Maps an HTTP request to a set of configuration variables",
  7323. "homepage": "https://symfony.com",
  7324. "keywords": [
  7325. "router",
  7326. "routing",
  7327. "uri",
  7328. "url"
  7329. ],
  7330. "support": {
  7331. "source": "https://github.com/symfony/routing/tree/v6.3.3"
  7332. },
  7333. "funding": [
  7334. {
  7335. "url": "https://symfony.com/sponsor",
  7336. "type": "custom"
  7337. },
  7338. {
  7339. "url": "https://github.com/fabpot",
  7340. "type": "github"
  7341. },
  7342. {
  7343. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7344. "type": "tidelift"
  7345. }
  7346. ],
  7347. "time": "2023-07-31T07:08:24+00:00"
  7348. },
  7349. {
  7350. "name": "symfony/service-contracts",
  7351. "version": "v3.3.0",
  7352. "source": {
  7353. "type": "git",
  7354. "url": "https://github.com/symfony/service-contracts.git",
  7355. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  7356. },
  7357. "dist": {
  7358. "type": "zip",
  7359. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  7360. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  7361. "shasum": ""
  7362. },
  7363. "require": {
  7364. "php": ">=8.1",
  7365. "psr/container": "^2.0"
  7366. },
  7367. "conflict": {
  7368. "ext-psr": "<1.1|>=2"
  7369. },
  7370. "type": "library",
  7371. "extra": {
  7372. "branch-alias": {
  7373. "dev-main": "3.4-dev"
  7374. },
  7375. "thanks": {
  7376. "name": "symfony/contracts",
  7377. "url": "https://github.com/symfony/contracts"
  7378. }
  7379. },
  7380. "autoload": {
  7381. "psr-4": {
  7382. "Symfony\\Contracts\\Service\\": ""
  7383. },
  7384. "exclude-from-classmap": [
  7385. "/Test/"
  7386. ]
  7387. },
  7388. "notification-url": "https://packagist.org/downloads/",
  7389. "license": [
  7390. "MIT"
  7391. ],
  7392. "authors": [
  7393. {
  7394. "name": "Nicolas Grekas",
  7395. "email": "p@tchwork.com"
  7396. },
  7397. {
  7398. "name": "Symfony Community",
  7399. "homepage": "https://symfony.com/contributors"
  7400. }
  7401. ],
  7402. "description": "Generic abstractions related to writing services",
  7403. "homepage": "https://symfony.com",
  7404. "keywords": [
  7405. "abstractions",
  7406. "contracts",
  7407. "decoupling",
  7408. "interfaces",
  7409. "interoperability",
  7410. "standards"
  7411. ],
  7412. "support": {
  7413. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  7414. },
  7415. "funding": [
  7416. {
  7417. "url": "https://symfony.com/sponsor",
  7418. "type": "custom"
  7419. },
  7420. {
  7421. "url": "https://github.com/fabpot",
  7422. "type": "github"
  7423. },
  7424. {
  7425. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7426. "type": "tidelift"
  7427. }
  7428. ],
  7429. "time": "2023-05-23T14:45:45+00:00"
  7430. },
  7431. {
  7432. "name": "symfony/string",
  7433. "version": "v6.3.2",
  7434. "source": {
  7435. "type": "git",
  7436. "url": "https://github.com/symfony/string.git",
  7437. "reference": "53d1a83225002635bca3482fcbf963001313fb68"
  7438. },
  7439. "dist": {
  7440. "type": "zip",
  7441. "url": "https://api.github.com/repos/symfony/string/zipball/53d1a83225002635bca3482fcbf963001313fb68",
  7442. "reference": "53d1a83225002635bca3482fcbf963001313fb68",
  7443. "shasum": ""
  7444. },
  7445. "require": {
  7446. "php": ">=8.1",
  7447. "symfony/polyfill-ctype": "~1.8",
  7448. "symfony/polyfill-intl-grapheme": "~1.0",
  7449. "symfony/polyfill-intl-normalizer": "~1.0",
  7450. "symfony/polyfill-mbstring": "~1.0"
  7451. },
  7452. "conflict": {
  7453. "symfony/translation-contracts": "<2.5"
  7454. },
  7455. "require-dev": {
  7456. "symfony/error-handler": "^5.4|^6.0",
  7457. "symfony/http-client": "^5.4|^6.0",
  7458. "symfony/intl": "^6.2",
  7459. "symfony/translation-contracts": "^2.5|^3.0",
  7460. "symfony/var-exporter": "^5.4|^6.0"
  7461. },
  7462. "type": "library",
  7463. "autoload": {
  7464. "files": [
  7465. "Resources/functions.php"
  7466. ],
  7467. "psr-4": {
  7468. "Symfony\\Component\\String\\": ""
  7469. },
  7470. "exclude-from-classmap": [
  7471. "/Tests/"
  7472. ]
  7473. },
  7474. "notification-url": "https://packagist.org/downloads/",
  7475. "license": [
  7476. "MIT"
  7477. ],
  7478. "authors": [
  7479. {
  7480. "name": "Nicolas Grekas",
  7481. "email": "p@tchwork.com"
  7482. },
  7483. {
  7484. "name": "Symfony Community",
  7485. "homepage": "https://symfony.com/contributors"
  7486. }
  7487. ],
  7488. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7489. "homepage": "https://symfony.com",
  7490. "keywords": [
  7491. "grapheme",
  7492. "i18n",
  7493. "string",
  7494. "unicode",
  7495. "utf-8",
  7496. "utf8"
  7497. ],
  7498. "support": {
  7499. "source": "https://github.com/symfony/string/tree/v6.3.2"
  7500. },
  7501. "funding": [
  7502. {
  7503. "url": "https://symfony.com/sponsor",
  7504. "type": "custom"
  7505. },
  7506. {
  7507. "url": "https://github.com/fabpot",
  7508. "type": "github"
  7509. },
  7510. {
  7511. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7512. "type": "tidelift"
  7513. }
  7514. ],
  7515. "time": "2023-07-05T08:41:27+00:00"
  7516. },
  7517. {
  7518. "name": "symfony/translation",
  7519. "version": "v6.3.3",
  7520. "source": {
  7521. "type": "git",
  7522. "url": "https://github.com/symfony/translation.git",
  7523. "reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd"
  7524. },
  7525. "dist": {
  7526. "type": "zip",
  7527. "url": "https://api.github.com/repos/symfony/translation/zipball/3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd",
  7528. "reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd",
  7529. "shasum": ""
  7530. },
  7531. "require": {
  7532. "php": ">=8.1",
  7533. "symfony/deprecation-contracts": "^2.5|^3",
  7534. "symfony/polyfill-mbstring": "~1.0",
  7535. "symfony/translation-contracts": "^2.5|^3.0"
  7536. },
  7537. "conflict": {
  7538. "symfony/config": "<5.4",
  7539. "symfony/console": "<5.4",
  7540. "symfony/dependency-injection": "<5.4",
  7541. "symfony/http-client-contracts": "<2.5",
  7542. "symfony/http-kernel": "<5.4",
  7543. "symfony/service-contracts": "<2.5",
  7544. "symfony/twig-bundle": "<5.4",
  7545. "symfony/yaml": "<5.4"
  7546. },
  7547. "provide": {
  7548. "symfony/translation-implementation": "2.3|3.0"
  7549. },
  7550. "require-dev": {
  7551. "nikic/php-parser": "^4.13",
  7552. "psr/log": "^1|^2|^3",
  7553. "symfony/config": "^5.4|^6.0",
  7554. "symfony/console": "^5.4|^6.0",
  7555. "symfony/dependency-injection": "^5.4|^6.0",
  7556. "symfony/finder": "^5.4|^6.0",
  7557. "symfony/http-client-contracts": "^2.5|^3.0",
  7558. "symfony/http-kernel": "^5.4|^6.0",
  7559. "symfony/intl": "^5.4|^6.0",
  7560. "symfony/polyfill-intl-icu": "^1.21",
  7561. "symfony/routing": "^5.4|^6.0",
  7562. "symfony/service-contracts": "^2.5|^3",
  7563. "symfony/yaml": "^5.4|^6.0"
  7564. },
  7565. "type": "library",
  7566. "autoload": {
  7567. "files": [
  7568. "Resources/functions.php"
  7569. ],
  7570. "psr-4": {
  7571. "Symfony\\Component\\Translation\\": ""
  7572. },
  7573. "exclude-from-classmap": [
  7574. "/Tests/"
  7575. ]
  7576. },
  7577. "notification-url": "https://packagist.org/downloads/",
  7578. "license": [
  7579. "MIT"
  7580. ],
  7581. "authors": [
  7582. {
  7583. "name": "Fabien Potencier",
  7584. "email": "fabien@symfony.com"
  7585. },
  7586. {
  7587. "name": "Symfony Community",
  7588. "homepage": "https://symfony.com/contributors"
  7589. }
  7590. ],
  7591. "description": "Provides tools to internationalize your application",
  7592. "homepage": "https://symfony.com",
  7593. "support": {
  7594. "source": "https://github.com/symfony/translation/tree/v6.3.3"
  7595. },
  7596. "funding": [
  7597. {
  7598. "url": "https://symfony.com/sponsor",
  7599. "type": "custom"
  7600. },
  7601. {
  7602. "url": "https://github.com/fabpot",
  7603. "type": "github"
  7604. },
  7605. {
  7606. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7607. "type": "tidelift"
  7608. }
  7609. ],
  7610. "time": "2023-07-31T07:08:24+00:00"
  7611. },
  7612. {
  7613. "name": "symfony/translation-contracts",
  7614. "version": "v3.3.0",
  7615. "source": {
  7616. "type": "git",
  7617. "url": "https://github.com/symfony/translation-contracts.git",
  7618. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  7619. },
  7620. "dist": {
  7621. "type": "zip",
  7622. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  7623. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  7624. "shasum": ""
  7625. },
  7626. "require": {
  7627. "php": ">=8.1"
  7628. },
  7629. "type": "library",
  7630. "extra": {
  7631. "branch-alias": {
  7632. "dev-main": "3.4-dev"
  7633. },
  7634. "thanks": {
  7635. "name": "symfony/contracts",
  7636. "url": "https://github.com/symfony/contracts"
  7637. }
  7638. },
  7639. "autoload": {
  7640. "psr-4": {
  7641. "Symfony\\Contracts\\Translation\\": ""
  7642. },
  7643. "exclude-from-classmap": [
  7644. "/Test/"
  7645. ]
  7646. },
  7647. "notification-url": "https://packagist.org/downloads/",
  7648. "license": [
  7649. "MIT"
  7650. ],
  7651. "authors": [
  7652. {
  7653. "name": "Nicolas Grekas",
  7654. "email": "p@tchwork.com"
  7655. },
  7656. {
  7657. "name": "Symfony Community",
  7658. "homepage": "https://symfony.com/contributors"
  7659. }
  7660. ],
  7661. "description": "Generic abstractions related to translation",
  7662. "homepage": "https://symfony.com",
  7663. "keywords": [
  7664. "abstractions",
  7665. "contracts",
  7666. "decoupling",
  7667. "interfaces",
  7668. "interoperability",
  7669. "standards"
  7670. ],
  7671. "support": {
  7672. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  7673. },
  7674. "funding": [
  7675. {
  7676. "url": "https://symfony.com/sponsor",
  7677. "type": "custom"
  7678. },
  7679. {
  7680. "url": "https://github.com/fabpot",
  7681. "type": "github"
  7682. },
  7683. {
  7684. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7685. "type": "tidelift"
  7686. }
  7687. ],
  7688. "time": "2023-05-30T17:17:10+00:00"
  7689. },
  7690. {
  7691. "name": "symfony/uid",
  7692. "version": "v6.3.0",
  7693. "source": {
  7694. "type": "git",
  7695. "url": "https://github.com/symfony/uid.git",
  7696. "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384"
  7697. },
  7698. "dist": {
  7699. "type": "zip",
  7700. "url": "https://api.github.com/repos/symfony/uid/zipball/01b0f20b1351d997711c56f1638f7a8c3061e384",
  7701. "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384",
  7702. "shasum": ""
  7703. },
  7704. "require": {
  7705. "php": ">=8.1",
  7706. "symfony/polyfill-uuid": "^1.15"
  7707. },
  7708. "require-dev": {
  7709. "symfony/console": "^5.4|^6.0"
  7710. },
  7711. "type": "library",
  7712. "autoload": {
  7713. "psr-4": {
  7714. "Symfony\\Component\\Uid\\": ""
  7715. },
  7716. "exclude-from-classmap": [
  7717. "/Tests/"
  7718. ]
  7719. },
  7720. "notification-url": "https://packagist.org/downloads/",
  7721. "license": [
  7722. "MIT"
  7723. ],
  7724. "authors": [
  7725. {
  7726. "name": "Grégoire Pineau",
  7727. "email": "lyrixx@lyrixx.info"
  7728. },
  7729. {
  7730. "name": "Nicolas Grekas",
  7731. "email": "p@tchwork.com"
  7732. },
  7733. {
  7734. "name": "Symfony Community",
  7735. "homepage": "https://symfony.com/contributors"
  7736. }
  7737. ],
  7738. "description": "Provides an object-oriented API to generate and represent UIDs",
  7739. "homepage": "https://symfony.com",
  7740. "keywords": [
  7741. "UID",
  7742. "ulid",
  7743. "uuid"
  7744. ],
  7745. "support": {
  7746. "source": "https://github.com/symfony/uid/tree/v6.3.0"
  7747. },
  7748. "funding": [
  7749. {
  7750. "url": "https://symfony.com/sponsor",
  7751. "type": "custom"
  7752. },
  7753. {
  7754. "url": "https://github.com/fabpot",
  7755. "type": "github"
  7756. },
  7757. {
  7758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7759. "type": "tidelift"
  7760. }
  7761. ],
  7762. "time": "2023-04-08T07:25:02+00:00"
  7763. },
  7764. {
  7765. "name": "symfony/var-dumper",
  7766. "version": "v6.3.3",
  7767. "source": {
  7768. "type": "git",
  7769. "url": "https://github.com/symfony/var-dumper.git",
  7770. "reference": "77fb4f2927f6991a9843633925d111147449ee7a"
  7771. },
  7772. "dist": {
  7773. "type": "zip",
  7774. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/77fb4f2927f6991a9843633925d111147449ee7a",
  7775. "reference": "77fb4f2927f6991a9843633925d111147449ee7a",
  7776. "shasum": ""
  7777. },
  7778. "require": {
  7779. "php": ">=8.1",
  7780. "symfony/deprecation-contracts": "^2.5|^3",
  7781. "symfony/polyfill-mbstring": "~1.0"
  7782. },
  7783. "conflict": {
  7784. "symfony/console": "<5.4"
  7785. },
  7786. "require-dev": {
  7787. "ext-iconv": "*",
  7788. "symfony/console": "^5.4|^6.0",
  7789. "symfony/http-kernel": "^5.4|^6.0",
  7790. "symfony/process": "^5.4|^6.0",
  7791. "symfony/uid": "^5.4|^6.0",
  7792. "twig/twig": "^2.13|^3.0.4"
  7793. },
  7794. "bin": [
  7795. "Resources/bin/var-dump-server"
  7796. ],
  7797. "type": "library",
  7798. "autoload": {
  7799. "files": [
  7800. "Resources/functions/dump.php"
  7801. ],
  7802. "psr-4": {
  7803. "Symfony\\Component\\VarDumper\\": ""
  7804. },
  7805. "exclude-from-classmap": [
  7806. "/Tests/"
  7807. ]
  7808. },
  7809. "notification-url": "https://packagist.org/downloads/",
  7810. "license": [
  7811. "MIT"
  7812. ],
  7813. "authors": [
  7814. {
  7815. "name": "Nicolas Grekas",
  7816. "email": "p@tchwork.com"
  7817. },
  7818. {
  7819. "name": "Symfony Community",
  7820. "homepage": "https://symfony.com/contributors"
  7821. }
  7822. ],
  7823. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7824. "homepage": "https://symfony.com",
  7825. "keywords": [
  7826. "debug",
  7827. "dump"
  7828. ],
  7829. "support": {
  7830. "source": "https://github.com/symfony/var-dumper/tree/v6.3.3"
  7831. },
  7832. "funding": [
  7833. {
  7834. "url": "https://symfony.com/sponsor",
  7835. "type": "custom"
  7836. },
  7837. {
  7838. "url": "https://github.com/fabpot",
  7839. "type": "github"
  7840. },
  7841. {
  7842. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7843. "type": "tidelift"
  7844. }
  7845. ],
  7846. "time": "2023-07-31T07:08:24+00:00"
  7847. },
  7848. {
  7849. "name": "tgalopin/html-sanitizer",
  7850. "version": "1.5.0",
  7851. "source": {
  7852. "type": "git",
  7853. "url": "https://github.com/tgalopin/html-sanitizer.git",
  7854. "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913"
  7855. },
  7856. "dist": {
  7857. "type": "zip",
  7858. "url": "https://api.github.com/repos/tgalopin/html-sanitizer/zipball/5d02dcb6f2ea4f505731eac440798caa1b3b0913",
  7859. "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913",
  7860. "shasum": ""
  7861. },
  7862. "require": {
  7863. "ext-dom": "*",
  7864. "league/uri-parser": "^1.4.1",
  7865. "masterminds/html5": "^2.4",
  7866. "php": ">=7.1",
  7867. "psr/log": "^1.0|^2.0|^3.0"
  7868. },
  7869. "require-dev": {
  7870. "phpunit/phpunit": "^7.4",
  7871. "symfony/var-dumper": "^4.1"
  7872. },
  7873. "type": "library",
  7874. "autoload": {
  7875. "psr-4": {
  7876. "HtmlSanitizer\\": "src"
  7877. }
  7878. },
  7879. "notification-url": "https://packagist.org/downloads/",
  7880. "license": [
  7881. "MIT"
  7882. ],
  7883. "authors": [
  7884. {
  7885. "name": "Titouan Galopin",
  7886. "email": "galopintitouan@gmail.com"
  7887. }
  7888. ],
  7889. "description": "Sanitize untrustworthy HTML user input",
  7890. "support": {
  7891. "issues": "https://github.com/tgalopin/html-sanitizer/issues",
  7892. "source": "https://github.com/tgalopin/html-sanitizer/tree/1.5.0"
  7893. },
  7894. "abandoned": "symfony/html-sanitizer",
  7895. "time": "2021-09-14T08:27:50+00:00"
  7896. },
  7897. {
  7898. "name": "tijsverkoyen/css-to-inline-styles",
  7899. "version": "2.2.6",
  7900. "source": {
  7901. "type": "git",
  7902. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7903. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  7904. },
  7905. "dist": {
  7906. "type": "zip",
  7907. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7908. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7909. "shasum": ""
  7910. },
  7911. "require": {
  7912. "ext-dom": "*",
  7913. "ext-libxml": "*",
  7914. "php": "^5.5 || ^7.0 || ^8.0",
  7915. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7916. },
  7917. "require-dev": {
  7918. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7919. },
  7920. "type": "library",
  7921. "extra": {
  7922. "branch-alias": {
  7923. "dev-master": "2.2.x-dev"
  7924. }
  7925. },
  7926. "autoload": {
  7927. "psr-4": {
  7928. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7929. }
  7930. },
  7931. "notification-url": "https://packagist.org/downloads/",
  7932. "license": [
  7933. "BSD-3-Clause"
  7934. ],
  7935. "authors": [
  7936. {
  7937. "name": "Tijs Verkoyen",
  7938. "email": "css_to_inline_styles@verkoyen.eu",
  7939. "role": "Developer"
  7940. }
  7941. ],
  7942. "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.",
  7943. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7944. "support": {
  7945. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7946. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  7947. },
  7948. "time": "2023-01-03T09:29:04+00:00"
  7949. },
  7950. {
  7951. "name": "vlucas/phpdotenv",
  7952. "version": "v5.5.0",
  7953. "source": {
  7954. "type": "git",
  7955. "url": "https://github.com/vlucas/phpdotenv.git",
  7956. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  7957. },
  7958. "dist": {
  7959. "type": "zip",
  7960. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7961. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7962. "shasum": ""
  7963. },
  7964. "require": {
  7965. "ext-pcre": "*",
  7966. "graham-campbell/result-type": "^1.0.2",
  7967. "php": "^7.1.3 || ^8.0",
  7968. "phpoption/phpoption": "^1.8",
  7969. "symfony/polyfill-ctype": "^1.23",
  7970. "symfony/polyfill-mbstring": "^1.23.1",
  7971. "symfony/polyfill-php80": "^1.23.1"
  7972. },
  7973. "require-dev": {
  7974. "bamarni/composer-bin-plugin": "^1.4.1",
  7975. "ext-filter": "*",
  7976. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  7977. },
  7978. "suggest": {
  7979. "ext-filter": "Required to use the boolean validator."
  7980. },
  7981. "type": "library",
  7982. "extra": {
  7983. "bamarni-bin": {
  7984. "bin-links": true,
  7985. "forward-command": true
  7986. },
  7987. "branch-alias": {
  7988. "dev-master": "5.5-dev"
  7989. }
  7990. },
  7991. "autoload": {
  7992. "psr-4": {
  7993. "Dotenv\\": "src/"
  7994. }
  7995. },
  7996. "notification-url": "https://packagist.org/downloads/",
  7997. "license": [
  7998. "BSD-3-Clause"
  7999. ],
  8000. "authors": [
  8001. {
  8002. "name": "Graham Campbell",
  8003. "email": "hello@gjcampbell.co.uk",
  8004. "homepage": "https://github.com/GrahamCampbell"
  8005. },
  8006. {
  8007. "name": "Vance Lucas",
  8008. "email": "vance@vancelucas.com",
  8009. "homepage": "https://github.com/vlucas"
  8010. }
  8011. ],
  8012. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8013. "keywords": [
  8014. "dotenv",
  8015. "env",
  8016. "environment"
  8017. ],
  8018. "support": {
  8019. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8020. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  8021. },
  8022. "funding": [
  8023. {
  8024. "url": "https://github.com/GrahamCampbell",
  8025. "type": "github"
  8026. },
  8027. {
  8028. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8029. "type": "tidelift"
  8030. }
  8031. ],
  8032. "time": "2022-10-16T01:01:54+00:00"
  8033. },
  8034. {
  8035. "name": "voku/portable-ascii",
  8036. "version": "2.0.1",
  8037. "source": {
  8038. "type": "git",
  8039. "url": "https://github.com/voku/portable-ascii.git",
  8040. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  8041. },
  8042. "dist": {
  8043. "type": "zip",
  8044. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  8045. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  8046. "shasum": ""
  8047. },
  8048. "require": {
  8049. "php": ">=7.0.0"
  8050. },
  8051. "require-dev": {
  8052. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8053. },
  8054. "suggest": {
  8055. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8056. },
  8057. "type": "library",
  8058. "autoload": {
  8059. "psr-4": {
  8060. "voku\\": "src/voku/"
  8061. }
  8062. },
  8063. "notification-url": "https://packagist.org/downloads/",
  8064. "license": [
  8065. "MIT"
  8066. ],
  8067. "authors": [
  8068. {
  8069. "name": "Lars Moelleken",
  8070. "homepage": "http://www.moelleken.org/"
  8071. }
  8072. ],
  8073. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8074. "homepage": "https://github.com/voku/portable-ascii",
  8075. "keywords": [
  8076. "ascii",
  8077. "clean",
  8078. "php"
  8079. ],
  8080. "support": {
  8081. "issues": "https://github.com/voku/portable-ascii/issues",
  8082. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  8083. },
  8084. "funding": [
  8085. {
  8086. "url": "https://www.paypal.me/moelleken",
  8087. "type": "custom"
  8088. },
  8089. {
  8090. "url": "https://github.com/voku",
  8091. "type": "github"
  8092. },
  8093. {
  8094. "url": "https://opencollective.com/portable-ascii",
  8095. "type": "open_collective"
  8096. },
  8097. {
  8098. "url": "https://www.patreon.com/voku",
  8099. "type": "patreon"
  8100. },
  8101. {
  8102. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8103. "type": "tidelift"
  8104. }
  8105. ],
  8106. "time": "2022-03-08T17:03:00+00:00"
  8107. },
  8108. {
  8109. "name": "webmozart/assert",
  8110. "version": "1.11.0",
  8111. "source": {
  8112. "type": "git",
  8113. "url": "https://github.com/webmozarts/assert.git",
  8114. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8115. },
  8116. "dist": {
  8117. "type": "zip",
  8118. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8119. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8120. "shasum": ""
  8121. },
  8122. "require": {
  8123. "ext-ctype": "*",
  8124. "php": "^7.2 || ^8.0"
  8125. },
  8126. "conflict": {
  8127. "phpstan/phpstan": "<0.12.20",
  8128. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8129. },
  8130. "require-dev": {
  8131. "phpunit/phpunit": "^8.5.13"
  8132. },
  8133. "type": "library",
  8134. "extra": {
  8135. "branch-alias": {
  8136. "dev-master": "1.10-dev"
  8137. }
  8138. },
  8139. "autoload": {
  8140. "psr-4": {
  8141. "Webmozart\\Assert\\": "src/"
  8142. }
  8143. },
  8144. "notification-url": "https://packagist.org/downloads/",
  8145. "license": [
  8146. "MIT"
  8147. ],
  8148. "authors": [
  8149. {
  8150. "name": "Bernhard Schussek",
  8151. "email": "bschussek@gmail.com"
  8152. }
  8153. ],
  8154. "description": "Assertions to validate method input/output with nice error messages.",
  8155. "keywords": [
  8156. "assert",
  8157. "check",
  8158. "validate"
  8159. ],
  8160. "support": {
  8161. "issues": "https://github.com/webmozarts/assert/issues",
  8162. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8163. },
  8164. "time": "2022-06-03T18:03:27+00:00"
  8165. }
  8166. ],
  8167. "packages-dev": [
  8168. {
  8169. "name": "doctrine/cache",
  8170. "version": "2.2.0",
  8171. "source": {
  8172. "type": "git",
  8173. "url": "https://github.com/doctrine/cache.git",
  8174. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  8175. },
  8176. "dist": {
  8177. "type": "zip",
  8178. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  8179. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  8180. "shasum": ""
  8181. },
  8182. "require": {
  8183. "php": "~7.1 || ^8.0"
  8184. },
  8185. "conflict": {
  8186. "doctrine/common": ">2.2,<2.4"
  8187. },
  8188. "require-dev": {
  8189. "cache/integration-tests": "dev-master",
  8190. "doctrine/coding-standard": "^9",
  8191. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8192. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  8193. "symfony/cache": "^4.4 || ^5.4 || ^6",
  8194. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  8195. },
  8196. "type": "library",
  8197. "autoload": {
  8198. "psr-4": {
  8199. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  8200. }
  8201. },
  8202. "notification-url": "https://packagist.org/downloads/",
  8203. "license": [
  8204. "MIT"
  8205. ],
  8206. "authors": [
  8207. {
  8208. "name": "Guilherme Blanco",
  8209. "email": "guilhermeblanco@gmail.com"
  8210. },
  8211. {
  8212. "name": "Roman Borschel",
  8213. "email": "roman@code-factory.org"
  8214. },
  8215. {
  8216. "name": "Benjamin Eberlei",
  8217. "email": "kontakt@beberlei.de"
  8218. },
  8219. {
  8220. "name": "Jonathan Wage",
  8221. "email": "jonwage@gmail.com"
  8222. },
  8223. {
  8224. "name": "Johannes Schmitt",
  8225. "email": "schmittjoh@gmail.com"
  8226. }
  8227. ],
  8228. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  8229. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  8230. "keywords": [
  8231. "abstraction",
  8232. "apcu",
  8233. "cache",
  8234. "caching",
  8235. "couchdb",
  8236. "memcached",
  8237. "php",
  8238. "redis",
  8239. "xcache"
  8240. ],
  8241. "support": {
  8242. "issues": "https://github.com/doctrine/cache/issues",
  8243. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  8244. },
  8245. "funding": [
  8246. {
  8247. "url": "https://www.doctrine-project.org/sponsorship.html",
  8248. "type": "custom"
  8249. },
  8250. {
  8251. "url": "https://www.patreon.com/phpdoctrine",
  8252. "type": "patreon"
  8253. },
  8254. {
  8255. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  8256. "type": "tidelift"
  8257. }
  8258. ],
  8259. "time": "2022-05-20T20:07:39+00:00"
  8260. },
  8261. {
  8262. "name": "doctrine/dbal",
  8263. "version": "3.6.5",
  8264. "source": {
  8265. "type": "git",
  8266. "url": "https://github.com/doctrine/dbal.git",
  8267. "reference": "96d5a70fd91efdcec81fc46316efc5bf3da17ddf"
  8268. },
  8269. "dist": {
  8270. "type": "zip",
  8271. "url": "https://api.github.com/repos/doctrine/dbal/zipball/96d5a70fd91efdcec81fc46316efc5bf3da17ddf",
  8272. "reference": "96d5a70fd91efdcec81fc46316efc5bf3da17ddf",
  8273. "shasum": ""
  8274. },
  8275. "require": {
  8276. "composer-runtime-api": "^2",
  8277. "doctrine/cache": "^1.11|^2.0",
  8278. "doctrine/deprecations": "^0.5.3|^1",
  8279. "doctrine/event-manager": "^1|^2",
  8280. "php": "^7.4 || ^8.0",
  8281. "psr/cache": "^1|^2|^3",
  8282. "psr/log": "^1|^2|^3"
  8283. },
  8284. "require-dev": {
  8285. "doctrine/coding-standard": "12.0.0",
  8286. "fig/log-test": "^1",
  8287. "jetbrains/phpstorm-stubs": "2023.1",
  8288. "phpstan/phpstan": "1.10.21",
  8289. "phpstan/phpstan-strict-rules": "^1.5",
  8290. "phpunit/phpunit": "9.6.9",
  8291. "psalm/plugin-phpunit": "0.18.4",
  8292. "squizlabs/php_codesniffer": "3.7.2",
  8293. "symfony/cache": "^5.4|^6.0",
  8294. "symfony/console": "^4.4|^5.4|^6.0",
  8295. "vimeo/psalm": "4.30.0"
  8296. },
  8297. "suggest": {
  8298. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  8299. },
  8300. "bin": [
  8301. "bin/doctrine-dbal"
  8302. ],
  8303. "type": "library",
  8304. "autoload": {
  8305. "psr-4": {
  8306. "Doctrine\\DBAL\\": "src"
  8307. }
  8308. },
  8309. "notification-url": "https://packagist.org/downloads/",
  8310. "license": [
  8311. "MIT"
  8312. ],
  8313. "authors": [
  8314. {
  8315. "name": "Guilherme Blanco",
  8316. "email": "guilhermeblanco@gmail.com"
  8317. },
  8318. {
  8319. "name": "Roman Borschel",
  8320. "email": "roman@code-factory.org"
  8321. },
  8322. {
  8323. "name": "Benjamin Eberlei",
  8324. "email": "kontakt@beberlei.de"
  8325. },
  8326. {
  8327. "name": "Jonathan Wage",
  8328. "email": "jonwage@gmail.com"
  8329. }
  8330. ],
  8331. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  8332. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  8333. "keywords": [
  8334. "abstraction",
  8335. "database",
  8336. "db2",
  8337. "dbal",
  8338. "mariadb",
  8339. "mssql",
  8340. "mysql",
  8341. "oci8",
  8342. "oracle",
  8343. "pdo",
  8344. "pgsql",
  8345. "postgresql",
  8346. "queryobject",
  8347. "sasql",
  8348. "sql",
  8349. "sqlite",
  8350. "sqlserver",
  8351. "sqlsrv"
  8352. ],
  8353. "support": {
  8354. "issues": "https://github.com/doctrine/dbal/issues",
  8355. "source": "https://github.com/doctrine/dbal/tree/3.6.5"
  8356. },
  8357. "funding": [
  8358. {
  8359. "url": "https://www.doctrine-project.org/sponsorship.html",
  8360. "type": "custom"
  8361. },
  8362. {
  8363. "url": "https://www.patreon.com/phpdoctrine",
  8364. "type": "patreon"
  8365. },
  8366. {
  8367. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  8368. "type": "tidelift"
  8369. }
  8370. ],
  8371. "time": "2023-07-17T09:15:50+00:00"
  8372. },
  8373. {
  8374. "name": "doctrine/deprecations",
  8375. "version": "v1.1.1",
  8376. "source": {
  8377. "type": "git",
  8378. "url": "https://github.com/doctrine/deprecations.git",
  8379. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3"
  8380. },
  8381. "dist": {
  8382. "type": "zip",
  8383. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  8384. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  8385. "shasum": ""
  8386. },
  8387. "require": {
  8388. "php": "^7.1 || ^8.0"
  8389. },
  8390. "require-dev": {
  8391. "doctrine/coding-standard": "^9",
  8392. "phpstan/phpstan": "1.4.10 || 1.10.15",
  8393. "phpstan/phpstan-phpunit": "^1.0",
  8394. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8395. "psalm/plugin-phpunit": "0.18.4",
  8396. "psr/log": "^1 || ^2 || ^3",
  8397. "vimeo/psalm": "4.30.0 || 5.12.0"
  8398. },
  8399. "suggest": {
  8400. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  8401. },
  8402. "type": "library",
  8403. "autoload": {
  8404. "psr-4": {
  8405. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  8406. }
  8407. },
  8408. "notification-url": "https://packagist.org/downloads/",
  8409. "license": [
  8410. "MIT"
  8411. ],
  8412. "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.",
  8413. "homepage": "https://www.doctrine-project.org/",
  8414. "support": {
  8415. "issues": "https://github.com/doctrine/deprecations/issues",
  8416. "source": "https://github.com/doctrine/deprecations/tree/v1.1.1"
  8417. },
  8418. "time": "2023-06-03T09:27:29+00:00"
  8419. },
  8420. {
  8421. "name": "doctrine/event-manager",
  8422. "version": "2.0.0",
  8423. "source": {
  8424. "type": "git",
  8425. "url": "https://github.com/doctrine/event-manager.git",
  8426. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  8427. },
  8428. "dist": {
  8429. "type": "zip",
  8430. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  8431. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  8432. "shasum": ""
  8433. },
  8434. "require": {
  8435. "php": "^8.1"
  8436. },
  8437. "conflict": {
  8438. "doctrine/common": "<2.9"
  8439. },
  8440. "require-dev": {
  8441. "doctrine/coding-standard": "^10",
  8442. "phpstan/phpstan": "^1.8.8",
  8443. "phpunit/phpunit": "^9.5",
  8444. "vimeo/psalm": "^4.28"
  8445. },
  8446. "type": "library",
  8447. "autoload": {
  8448. "psr-4": {
  8449. "Doctrine\\Common\\": "src"
  8450. }
  8451. },
  8452. "notification-url": "https://packagist.org/downloads/",
  8453. "license": [
  8454. "MIT"
  8455. ],
  8456. "authors": [
  8457. {
  8458. "name": "Guilherme Blanco",
  8459. "email": "guilhermeblanco@gmail.com"
  8460. },
  8461. {
  8462. "name": "Roman Borschel",
  8463. "email": "roman@code-factory.org"
  8464. },
  8465. {
  8466. "name": "Benjamin Eberlei",
  8467. "email": "kontakt@beberlei.de"
  8468. },
  8469. {
  8470. "name": "Jonathan Wage",
  8471. "email": "jonwage@gmail.com"
  8472. },
  8473. {
  8474. "name": "Johannes Schmitt",
  8475. "email": "schmittjoh@gmail.com"
  8476. },
  8477. {
  8478. "name": "Marco Pivetta",
  8479. "email": "ocramius@gmail.com"
  8480. }
  8481. ],
  8482. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  8483. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  8484. "keywords": [
  8485. "event",
  8486. "event dispatcher",
  8487. "event manager",
  8488. "event system",
  8489. "events"
  8490. ],
  8491. "support": {
  8492. "issues": "https://github.com/doctrine/event-manager/issues",
  8493. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  8494. },
  8495. "funding": [
  8496. {
  8497. "url": "https://www.doctrine-project.org/sponsorship.html",
  8498. "type": "custom"
  8499. },
  8500. {
  8501. "url": "https://www.patreon.com/phpdoctrine",
  8502. "type": "patreon"
  8503. },
  8504. {
  8505. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  8506. "type": "tidelift"
  8507. }
  8508. ],
  8509. "time": "2022-10-12T20:59:15+00:00"
  8510. },
  8511. {
  8512. "name": "fakerphp/faker",
  8513. "version": "v1.23.0",
  8514. "source": {
  8515. "type": "git",
  8516. "url": "https://github.com/FakerPHP/Faker.git",
  8517. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  8518. },
  8519. "dist": {
  8520. "type": "zip",
  8521. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8522. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8523. "shasum": ""
  8524. },
  8525. "require": {
  8526. "php": "^7.4 || ^8.0",
  8527. "psr/container": "^1.0 || ^2.0",
  8528. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8529. },
  8530. "conflict": {
  8531. "fzaninotto/faker": "*"
  8532. },
  8533. "require-dev": {
  8534. "bamarni/composer-bin-plugin": "^1.4.1",
  8535. "doctrine/persistence": "^1.3 || ^2.0",
  8536. "ext-intl": "*",
  8537. "phpunit/phpunit": "^9.5.26",
  8538. "symfony/phpunit-bridge": "^5.4.16"
  8539. },
  8540. "suggest": {
  8541. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8542. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8543. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8544. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8545. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8546. },
  8547. "type": "library",
  8548. "extra": {
  8549. "branch-alias": {
  8550. "dev-main": "v1.21-dev"
  8551. }
  8552. },
  8553. "autoload": {
  8554. "psr-4": {
  8555. "Faker\\": "src/Faker/"
  8556. }
  8557. },
  8558. "notification-url": "https://packagist.org/downloads/",
  8559. "license": [
  8560. "MIT"
  8561. ],
  8562. "authors": [
  8563. {
  8564. "name": "François Zaninotto"
  8565. }
  8566. ],
  8567. "description": "Faker is a PHP library that generates fake data for you.",
  8568. "keywords": [
  8569. "data",
  8570. "faker",
  8571. "fixtures"
  8572. ],
  8573. "support": {
  8574. "issues": "https://github.com/FakerPHP/Faker/issues",
  8575. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  8576. },
  8577. "time": "2023-06-12T08:44:38+00:00"
  8578. },
  8579. {
  8580. "name": "filp/whoops",
  8581. "version": "2.15.3",
  8582. "source": {
  8583. "type": "git",
  8584. "url": "https://github.com/filp/whoops.git",
  8585. "reference": "c83e88a30524f9360b11f585f71e6b17313b7187"
  8586. },
  8587. "dist": {
  8588. "type": "zip",
  8589. "url": "https://api.github.com/repos/filp/whoops/zipball/c83e88a30524f9360b11f585f71e6b17313b7187",
  8590. "reference": "c83e88a30524f9360b11f585f71e6b17313b7187",
  8591. "shasum": ""
  8592. },
  8593. "require": {
  8594. "php": "^5.5.9 || ^7.0 || ^8.0",
  8595. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8596. },
  8597. "require-dev": {
  8598. "mockery/mockery": "^0.9 || ^1.0",
  8599. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8600. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8601. },
  8602. "suggest": {
  8603. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8604. "whoops/soap": "Formats errors as SOAP responses"
  8605. },
  8606. "type": "library",
  8607. "extra": {
  8608. "branch-alias": {
  8609. "dev-master": "2.7-dev"
  8610. }
  8611. },
  8612. "autoload": {
  8613. "psr-4": {
  8614. "Whoops\\": "src/Whoops/"
  8615. }
  8616. },
  8617. "notification-url": "https://packagist.org/downloads/",
  8618. "license": [
  8619. "MIT"
  8620. ],
  8621. "authors": [
  8622. {
  8623. "name": "Filipe Dobreira",
  8624. "homepage": "https://github.com/filp",
  8625. "role": "Developer"
  8626. }
  8627. ],
  8628. "description": "php error handling for cool kids",
  8629. "homepage": "https://filp.github.io/whoops/",
  8630. "keywords": [
  8631. "error",
  8632. "exception",
  8633. "handling",
  8634. "library",
  8635. "throwable",
  8636. "whoops"
  8637. ],
  8638. "support": {
  8639. "issues": "https://github.com/filp/whoops/issues",
  8640. "source": "https://github.com/filp/whoops/tree/2.15.3"
  8641. },
  8642. "funding": [
  8643. {
  8644. "url": "https://github.com/denis-sokolov",
  8645. "type": "github"
  8646. }
  8647. ],
  8648. "time": "2023-07-13T12:00:00+00:00"
  8649. },
  8650. {
  8651. "name": "hamcrest/hamcrest-php",
  8652. "version": "v2.0.1",
  8653. "source": {
  8654. "type": "git",
  8655. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8656. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8657. },
  8658. "dist": {
  8659. "type": "zip",
  8660. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8661. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8662. "shasum": ""
  8663. },
  8664. "require": {
  8665. "php": "^5.3|^7.0|^8.0"
  8666. },
  8667. "replace": {
  8668. "cordoval/hamcrest-php": "*",
  8669. "davedevelopment/hamcrest-php": "*",
  8670. "kodova/hamcrest-php": "*"
  8671. },
  8672. "require-dev": {
  8673. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8674. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8675. },
  8676. "type": "library",
  8677. "extra": {
  8678. "branch-alias": {
  8679. "dev-master": "2.1-dev"
  8680. }
  8681. },
  8682. "autoload": {
  8683. "classmap": [
  8684. "hamcrest"
  8685. ]
  8686. },
  8687. "notification-url": "https://packagist.org/downloads/",
  8688. "license": [
  8689. "BSD-3-Clause"
  8690. ],
  8691. "description": "This is the PHP port of Hamcrest Matchers",
  8692. "keywords": [
  8693. "test"
  8694. ],
  8695. "support": {
  8696. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8697. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8698. },
  8699. "time": "2020-07-09T08:09:16+00:00"
  8700. },
  8701. {
  8702. "name": "laravel/pint",
  8703. "version": "v1.10.6",
  8704. "source": {
  8705. "type": "git",
  8706. "url": "https://github.com/laravel/pint.git",
  8707. "reference": "d1915b6ecc6406c00472c6b9ae75b46aa153bbb2"
  8708. },
  8709. "dist": {
  8710. "type": "zip",
  8711. "url": "https://api.github.com/repos/laravel/pint/zipball/d1915b6ecc6406c00472c6b9ae75b46aa153bbb2",
  8712. "reference": "d1915b6ecc6406c00472c6b9ae75b46aa153bbb2",
  8713. "shasum": ""
  8714. },
  8715. "require": {
  8716. "ext-json": "*",
  8717. "ext-mbstring": "*",
  8718. "ext-tokenizer": "*",
  8719. "ext-xml": "*",
  8720. "php": "^8.1.0"
  8721. },
  8722. "require-dev": {
  8723. "friendsofphp/php-cs-fixer": "^3.21.1",
  8724. "illuminate/view": "^10.5.1",
  8725. "laravel-zero/framework": "^10.1.1",
  8726. "mockery/mockery": "^1.5.1",
  8727. "nunomaduro/larastan": "^2.5.1",
  8728. "nunomaduro/termwind": "^1.15.1",
  8729. "pestphp/pest": "^2.4.0"
  8730. },
  8731. "bin": [
  8732. "builds/pint"
  8733. ],
  8734. "type": "project",
  8735. "autoload": {
  8736. "psr-4": {
  8737. "App\\": "app/",
  8738. "Database\\Seeders\\": "database/seeders/",
  8739. "Database\\Factories\\": "database/factories/"
  8740. }
  8741. },
  8742. "notification-url": "https://packagist.org/downloads/",
  8743. "license": [
  8744. "MIT"
  8745. ],
  8746. "authors": [
  8747. {
  8748. "name": "Nuno Maduro",
  8749. "email": "enunomaduro@gmail.com"
  8750. }
  8751. ],
  8752. "description": "An opinionated code formatter for PHP.",
  8753. "homepage": "https://laravel.com",
  8754. "keywords": [
  8755. "format",
  8756. "formatter",
  8757. "lint",
  8758. "linter",
  8759. "php"
  8760. ],
  8761. "support": {
  8762. "issues": "https://github.com/laravel/pint/issues",
  8763. "source": "https://github.com/laravel/pint"
  8764. },
  8765. "time": "2023-08-08T15:17:16+00:00"
  8766. },
  8767. {
  8768. "name": "laravel/sail",
  8769. "version": "v1.23.2",
  8770. "source": {
  8771. "type": "git",
  8772. "url": "https://github.com/laravel/sail.git",
  8773. "reference": "f8694d6af5729be72ae96b91e344c5676c89114a"
  8774. },
  8775. "dist": {
  8776. "type": "zip",
  8777. "url": "https://api.github.com/repos/laravel/sail/zipball/f8694d6af5729be72ae96b91e344c5676c89114a",
  8778. "reference": "f8694d6af5729be72ae96b91e344c5676c89114a",
  8779. "shasum": ""
  8780. },
  8781. "require": {
  8782. "illuminate/console": "^8.0|^9.0|^10.0",
  8783. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8784. "illuminate/support": "^8.0|^9.0|^10.0",
  8785. "php": "^8.0",
  8786. "symfony/yaml": "^6.0"
  8787. },
  8788. "require-dev": {
  8789. "orchestra/testbench": "^6.0|^7.0|^8.0",
  8790. "phpstan/phpstan": "^1.10"
  8791. },
  8792. "bin": [
  8793. "bin/sail"
  8794. ],
  8795. "type": "library",
  8796. "extra": {
  8797. "branch-alias": {
  8798. "dev-master": "1.x-dev"
  8799. },
  8800. "laravel": {
  8801. "providers": [
  8802. "Laravel\\Sail\\SailServiceProvider"
  8803. ]
  8804. }
  8805. },
  8806. "autoload": {
  8807. "psr-4": {
  8808. "Laravel\\Sail\\": "src/"
  8809. }
  8810. },
  8811. "notification-url": "https://packagist.org/downloads/",
  8812. "license": [
  8813. "MIT"
  8814. ],
  8815. "authors": [
  8816. {
  8817. "name": "Taylor Otwell",
  8818. "email": "taylor@laravel.com"
  8819. }
  8820. ],
  8821. "description": "Docker files for running a basic Laravel application.",
  8822. "keywords": [
  8823. "docker",
  8824. "laravel"
  8825. ],
  8826. "support": {
  8827. "issues": "https://github.com/laravel/sail/issues",
  8828. "source": "https://github.com/laravel/sail"
  8829. },
  8830. "time": "2023-08-07T13:01:51+00:00"
  8831. },
  8832. {
  8833. "name": "mockery/mockery",
  8834. "version": "1.6.6",
  8835. "source": {
  8836. "type": "git",
  8837. "url": "https://github.com/mockery/mockery.git",
  8838. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e"
  8839. },
  8840. "dist": {
  8841. "type": "zip",
  8842. "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e",
  8843. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e",
  8844. "shasum": ""
  8845. },
  8846. "require": {
  8847. "hamcrest/hamcrest-php": "^2.0.1",
  8848. "lib-pcre": ">=7.0",
  8849. "php": ">=7.3"
  8850. },
  8851. "conflict": {
  8852. "phpunit/phpunit": "<8.0"
  8853. },
  8854. "require-dev": {
  8855. "phpunit/phpunit": "^8.5 || ^9.6.10",
  8856. "psalm/plugin-phpunit": "^0.18.4",
  8857. "symplify/easy-coding-standard": "^11.5.0",
  8858. "vimeo/psalm": "^4.30"
  8859. },
  8860. "type": "library",
  8861. "autoload": {
  8862. "files": [
  8863. "library/helpers.php",
  8864. "library/Mockery.php"
  8865. ],
  8866. "psr-4": {
  8867. "Mockery\\": "library/Mockery"
  8868. }
  8869. },
  8870. "notification-url": "https://packagist.org/downloads/",
  8871. "license": [
  8872. "BSD-3-Clause"
  8873. ],
  8874. "authors": [
  8875. {
  8876. "name": "Pádraic Brady",
  8877. "email": "padraic.brady@gmail.com",
  8878. "homepage": "https://github.com/padraic",
  8879. "role": "Author"
  8880. },
  8881. {
  8882. "name": "Dave Marshall",
  8883. "email": "dave.marshall@atstsolutions.co.uk",
  8884. "homepage": "https://davedevelopment.co.uk",
  8885. "role": "Developer"
  8886. },
  8887. {
  8888. "name": "Nathanael Esayeas",
  8889. "email": "nathanael.esayeas@protonmail.com",
  8890. "homepage": "https://github.com/ghostwriter",
  8891. "role": "Lead Developer"
  8892. }
  8893. ],
  8894. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8895. "homepage": "https://github.com/mockery/mockery",
  8896. "keywords": [
  8897. "BDD",
  8898. "TDD",
  8899. "library",
  8900. "mock",
  8901. "mock objects",
  8902. "mockery",
  8903. "stub",
  8904. "test",
  8905. "test double",
  8906. "testing"
  8907. ],
  8908. "support": {
  8909. "docs": "https://docs.mockery.io/",
  8910. "issues": "https://github.com/mockery/mockery/issues",
  8911. "rss": "https://github.com/mockery/mockery/releases.atom",
  8912. "security": "https://github.com/mockery/mockery/security/advisories",
  8913. "source": "https://github.com/mockery/mockery"
  8914. },
  8915. "time": "2023-08-09T00:03:52+00:00"
  8916. },
  8917. {
  8918. "name": "myclabs/deep-copy",
  8919. "version": "1.11.1",
  8920. "source": {
  8921. "type": "git",
  8922. "url": "https://github.com/myclabs/DeepCopy.git",
  8923. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8924. },
  8925. "dist": {
  8926. "type": "zip",
  8927. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8928. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8929. "shasum": ""
  8930. },
  8931. "require": {
  8932. "php": "^7.1 || ^8.0"
  8933. },
  8934. "conflict": {
  8935. "doctrine/collections": "<1.6.8",
  8936. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8937. },
  8938. "require-dev": {
  8939. "doctrine/collections": "^1.6.8",
  8940. "doctrine/common": "^2.13.3 || ^3.2.2",
  8941. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8942. },
  8943. "type": "library",
  8944. "autoload": {
  8945. "files": [
  8946. "src/DeepCopy/deep_copy.php"
  8947. ],
  8948. "psr-4": {
  8949. "DeepCopy\\": "src/DeepCopy/"
  8950. }
  8951. },
  8952. "notification-url": "https://packagist.org/downloads/",
  8953. "license": [
  8954. "MIT"
  8955. ],
  8956. "description": "Create deep copies (clones) of your objects",
  8957. "keywords": [
  8958. "clone",
  8959. "copy",
  8960. "duplicate",
  8961. "object",
  8962. "object graph"
  8963. ],
  8964. "support": {
  8965. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8966. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8967. },
  8968. "funding": [
  8969. {
  8970. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8971. "type": "tidelift"
  8972. }
  8973. ],
  8974. "time": "2023-03-08T13:26:56+00:00"
  8975. },
  8976. {
  8977. "name": "nunomaduro/collision",
  8978. "version": "v7.8.1",
  8979. "source": {
  8980. "type": "git",
  8981. "url": "https://github.com/nunomaduro/collision.git",
  8982. "reference": "61553ad3260845d7e3e49121b7074619233d361b"
  8983. },
  8984. "dist": {
  8985. "type": "zip",
  8986. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/61553ad3260845d7e3e49121b7074619233d361b",
  8987. "reference": "61553ad3260845d7e3e49121b7074619233d361b",
  8988. "shasum": ""
  8989. },
  8990. "require": {
  8991. "filp/whoops": "^2.15.3",
  8992. "nunomaduro/termwind": "^1.15.1",
  8993. "php": "^8.1.0",
  8994. "symfony/console": "^6.3.2"
  8995. },
  8996. "require-dev": {
  8997. "brianium/paratest": "^7.2.4",
  8998. "laravel/framework": "^10.17.1",
  8999. "laravel/pint": "^1.10.5",
  9000. "laravel/sail": "^1.23.1",
  9001. "laravel/sanctum": "^3.2.5",
  9002. "laravel/tinker": "^2.8.1",
  9003. "nunomaduro/larastan": "^2.6.4",
  9004. "orchestra/testbench-core": "^8.5.9",
  9005. "pestphp/pest": "^2.12.1",
  9006. "phpunit/phpunit": "^10.3.1",
  9007. "sebastian/environment": "^6.0.1",
  9008. "spatie/laravel-ignition": "^2.2.0"
  9009. },
  9010. "type": "library",
  9011. "extra": {
  9012. "laravel": {
  9013. "providers": [
  9014. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9015. ]
  9016. }
  9017. },
  9018. "autoload": {
  9019. "files": [
  9020. "./src/Adapters/Phpunit/Autoload.php"
  9021. ],
  9022. "psr-4": {
  9023. "NunoMaduro\\Collision\\": "src/"
  9024. }
  9025. },
  9026. "notification-url": "https://packagist.org/downloads/",
  9027. "license": [
  9028. "MIT"
  9029. ],
  9030. "authors": [
  9031. {
  9032. "name": "Nuno Maduro",
  9033. "email": "enunomaduro@gmail.com"
  9034. }
  9035. ],
  9036. "description": "Cli error handling for console/command-line PHP applications.",
  9037. "keywords": [
  9038. "artisan",
  9039. "cli",
  9040. "command-line",
  9041. "console",
  9042. "error",
  9043. "handling",
  9044. "laravel",
  9045. "laravel-zero",
  9046. "php",
  9047. "symfony"
  9048. ],
  9049. "support": {
  9050. "issues": "https://github.com/nunomaduro/collision/issues",
  9051. "source": "https://github.com/nunomaduro/collision"
  9052. },
  9053. "funding": [
  9054. {
  9055. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9056. "type": "custom"
  9057. },
  9058. {
  9059. "url": "https://github.com/nunomaduro",
  9060. "type": "github"
  9061. },
  9062. {
  9063. "url": "https://www.patreon.com/nunomaduro",
  9064. "type": "patreon"
  9065. }
  9066. ],
  9067. "time": "2023-08-07T08:03:21+00:00"
  9068. },
  9069. {
  9070. "name": "phar-io/manifest",
  9071. "version": "2.0.3",
  9072. "source": {
  9073. "type": "git",
  9074. "url": "https://github.com/phar-io/manifest.git",
  9075. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9076. },
  9077. "dist": {
  9078. "type": "zip",
  9079. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9080. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9081. "shasum": ""
  9082. },
  9083. "require": {
  9084. "ext-dom": "*",
  9085. "ext-phar": "*",
  9086. "ext-xmlwriter": "*",
  9087. "phar-io/version": "^3.0.1",
  9088. "php": "^7.2 || ^8.0"
  9089. },
  9090. "type": "library",
  9091. "extra": {
  9092. "branch-alias": {
  9093. "dev-master": "2.0.x-dev"
  9094. }
  9095. },
  9096. "autoload": {
  9097. "classmap": [
  9098. "src/"
  9099. ]
  9100. },
  9101. "notification-url": "https://packagist.org/downloads/",
  9102. "license": [
  9103. "BSD-3-Clause"
  9104. ],
  9105. "authors": [
  9106. {
  9107. "name": "Arne Blankerts",
  9108. "email": "arne@blankerts.de",
  9109. "role": "Developer"
  9110. },
  9111. {
  9112. "name": "Sebastian Heuer",
  9113. "email": "sebastian@phpeople.de",
  9114. "role": "Developer"
  9115. },
  9116. {
  9117. "name": "Sebastian Bergmann",
  9118. "email": "sebastian@phpunit.de",
  9119. "role": "Developer"
  9120. }
  9121. ],
  9122. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9123. "support": {
  9124. "issues": "https://github.com/phar-io/manifest/issues",
  9125. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9126. },
  9127. "time": "2021-07-20T11:28:43+00:00"
  9128. },
  9129. {
  9130. "name": "phar-io/version",
  9131. "version": "3.2.1",
  9132. "source": {
  9133. "type": "git",
  9134. "url": "https://github.com/phar-io/version.git",
  9135. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9136. },
  9137. "dist": {
  9138. "type": "zip",
  9139. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9140. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9141. "shasum": ""
  9142. },
  9143. "require": {
  9144. "php": "^7.2 || ^8.0"
  9145. },
  9146. "type": "library",
  9147. "autoload": {
  9148. "classmap": [
  9149. "src/"
  9150. ]
  9151. },
  9152. "notification-url": "https://packagist.org/downloads/",
  9153. "license": [
  9154. "BSD-3-Clause"
  9155. ],
  9156. "authors": [
  9157. {
  9158. "name": "Arne Blankerts",
  9159. "email": "arne@blankerts.de",
  9160. "role": "Developer"
  9161. },
  9162. {
  9163. "name": "Sebastian Heuer",
  9164. "email": "sebastian@phpeople.de",
  9165. "role": "Developer"
  9166. },
  9167. {
  9168. "name": "Sebastian Bergmann",
  9169. "email": "sebastian@phpunit.de",
  9170. "role": "Developer"
  9171. }
  9172. ],
  9173. "description": "Library for handling version information and constraints",
  9174. "support": {
  9175. "issues": "https://github.com/phar-io/version/issues",
  9176. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9177. },
  9178. "time": "2022-02-21T01:04:05+00:00"
  9179. },
  9180. {
  9181. "name": "phpunit/php-code-coverage",
  9182. "version": "10.1.3",
  9183. "source": {
  9184. "type": "git",
  9185. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9186. "reference": "be1fe461fdc917de2a29a452ccf2657d325b443d"
  9187. },
  9188. "dist": {
  9189. "type": "zip",
  9190. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/be1fe461fdc917de2a29a452ccf2657d325b443d",
  9191. "reference": "be1fe461fdc917de2a29a452ccf2657d325b443d",
  9192. "shasum": ""
  9193. },
  9194. "require": {
  9195. "ext-dom": "*",
  9196. "ext-libxml": "*",
  9197. "ext-xmlwriter": "*",
  9198. "nikic/php-parser": "^4.15",
  9199. "php": ">=8.1",
  9200. "phpunit/php-file-iterator": "^4.0",
  9201. "phpunit/php-text-template": "^3.0",
  9202. "sebastian/code-unit-reverse-lookup": "^3.0",
  9203. "sebastian/complexity": "^3.0",
  9204. "sebastian/environment": "^6.0",
  9205. "sebastian/lines-of-code": "^2.0",
  9206. "sebastian/version": "^4.0",
  9207. "theseer/tokenizer": "^1.2.0"
  9208. },
  9209. "require-dev": {
  9210. "phpunit/phpunit": "^10.1"
  9211. },
  9212. "suggest": {
  9213. "ext-pcov": "PHP extension that provides line coverage",
  9214. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9215. },
  9216. "type": "library",
  9217. "extra": {
  9218. "branch-alias": {
  9219. "dev-main": "10.1-dev"
  9220. }
  9221. },
  9222. "autoload": {
  9223. "classmap": [
  9224. "src/"
  9225. ]
  9226. },
  9227. "notification-url": "https://packagist.org/downloads/",
  9228. "license": [
  9229. "BSD-3-Clause"
  9230. ],
  9231. "authors": [
  9232. {
  9233. "name": "Sebastian Bergmann",
  9234. "email": "sebastian@phpunit.de",
  9235. "role": "lead"
  9236. }
  9237. ],
  9238. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9239. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9240. "keywords": [
  9241. "coverage",
  9242. "testing",
  9243. "xunit"
  9244. ],
  9245. "support": {
  9246. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9247. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9248. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.3"
  9249. },
  9250. "funding": [
  9251. {
  9252. "url": "https://github.com/sebastianbergmann",
  9253. "type": "github"
  9254. }
  9255. ],
  9256. "time": "2023-07-26T13:45:28+00:00"
  9257. },
  9258. {
  9259. "name": "phpunit/php-file-iterator",
  9260. "version": "4.0.2",
  9261. "source": {
  9262. "type": "git",
  9263. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9264. "reference": "5647d65443818959172645e7ed999217360654b6"
  9265. },
  9266. "dist": {
  9267. "type": "zip",
  9268. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/5647d65443818959172645e7ed999217360654b6",
  9269. "reference": "5647d65443818959172645e7ed999217360654b6",
  9270. "shasum": ""
  9271. },
  9272. "require": {
  9273. "php": ">=8.1"
  9274. },
  9275. "require-dev": {
  9276. "phpunit/phpunit": "^10.0"
  9277. },
  9278. "type": "library",
  9279. "extra": {
  9280. "branch-alias": {
  9281. "dev-main": "4.0-dev"
  9282. }
  9283. },
  9284. "autoload": {
  9285. "classmap": [
  9286. "src/"
  9287. ]
  9288. },
  9289. "notification-url": "https://packagist.org/downloads/",
  9290. "license": [
  9291. "BSD-3-Clause"
  9292. ],
  9293. "authors": [
  9294. {
  9295. "name": "Sebastian Bergmann",
  9296. "email": "sebastian@phpunit.de",
  9297. "role": "lead"
  9298. }
  9299. ],
  9300. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9301. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9302. "keywords": [
  9303. "filesystem",
  9304. "iterator"
  9305. ],
  9306. "support": {
  9307. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9308. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9309. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.0.2"
  9310. },
  9311. "funding": [
  9312. {
  9313. "url": "https://github.com/sebastianbergmann",
  9314. "type": "github"
  9315. }
  9316. ],
  9317. "time": "2023-05-07T09:13:23+00:00"
  9318. },
  9319. {
  9320. "name": "phpunit/php-invoker",
  9321. "version": "4.0.0",
  9322. "source": {
  9323. "type": "git",
  9324. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9325. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9326. },
  9327. "dist": {
  9328. "type": "zip",
  9329. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9330. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9331. "shasum": ""
  9332. },
  9333. "require": {
  9334. "php": ">=8.1"
  9335. },
  9336. "require-dev": {
  9337. "ext-pcntl": "*",
  9338. "phpunit/phpunit": "^10.0"
  9339. },
  9340. "suggest": {
  9341. "ext-pcntl": "*"
  9342. },
  9343. "type": "library",
  9344. "extra": {
  9345. "branch-alias": {
  9346. "dev-main": "4.0-dev"
  9347. }
  9348. },
  9349. "autoload": {
  9350. "classmap": [
  9351. "src/"
  9352. ]
  9353. },
  9354. "notification-url": "https://packagist.org/downloads/",
  9355. "license": [
  9356. "BSD-3-Clause"
  9357. ],
  9358. "authors": [
  9359. {
  9360. "name": "Sebastian Bergmann",
  9361. "email": "sebastian@phpunit.de",
  9362. "role": "lead"
  9363. }
  9364. ],
  9365. "description": "Invoke callables with a timeout",
  9366. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9367. "keywords": [
  9368. "process"
  9369. ],
  9370. "support": {
  9371. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9372. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9373. },
  9374. "funding": [
  9375. {
  9376. "url": "https://github.com/sebastianbergmann",
  9377. "type": "github"
  9378. }
  9379. ],
  9380. "time": "2023-02-03T06:56:09+00:00"
  9381. },
  9382. {
  9383. "name": "phpunit/php-text-template",
  9384. "version": "3.0.0",
  9385. "source": {
  9386. "type": "git",
  9387. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9388. "reference": "9f3d3709577a527025f55bcf0f7ab8052c8bb37d"
  9389. },
  9390. "dist": {
  9391. "type": "zip",
  9392. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/9f3d3709577a527025f55bcf0f7ab8052c8bb37d",
  9393. "reference": "9f3d3709577a527025f55bcf0f7ab8052c8bb37d",
  9394. "shasum": ""
  9395. },
  9396. "require": {
  9397. "php": ">=8.1"
  9398. },
  9399. "require-dev": {
  9400. "phpunit/phpunit": "^10.0"
  9401. },
  9402. "type": "library",
  9403. "extra": {
  9404. "branch-alias": {
  9405. "dev-main": "3.0-dev"
  9406. }
  9407. },
  9408. "autoload": {
  9409. "classmap": [
  9410. "src/"
  9411. ]
  9412. },
  9413. "notification-url": "https://packagist.org/downloads/",
  9414. "license": [
  9415. "BSD-3-Clause"
  9416. ],
  9417. "authors": [
  9418. {
  9419. "name": "Sebastian Bergmann",
  9420. "email": "sebastian@phpunit.de",
  9421. "role": "lead"
  9422. }
  9423. ],
  9424. "description": "Simple template engine.",
  9425. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9426. "keywords": [
  9427. "template"
  9428. ],
  9429. "support": {
  9430. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9431. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.0"
  9432. },
  9433. "funding": [
  9434. {
  9435. "url": "https://github.com/sebastianbergmann",
  9436. "type": "github"
  9437. }
  9438. ],
  9439. "time": "2023-02-03T06:56:46+00:00"
  9440. },
  9441. {
  9442. "name": "phpunit/php-timer",
  9443. "version": "6.0.0",
  9444. "source": {
  9445. "type": "git",
  9446. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9447. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9448. },
  9449. "dist": {
  9450. "type": "zip",
  9451. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9452. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9453. "shasum": ""
  9454. },
  9455. "require": {
  9456. "php": ">=8.1"
  9457. },
  9458. "require-dev": {
  9459. "phpunit/phpunit": "^10.0"
  9460. },
  9461. "type": "library",
  9462. "extra": {
  9463. "branch-alias": {
  9464. "dev-main": "6.0-dev"
  9465. }
  9466. },
  9467. "autoload": {
  9468. "classmap": [
  9469. "src/"
  9470. ]
  9471. },
  9472. "notification-url": "https://packagist.org/downloads/",
  9473. "license": [
  9474. "BSD-3-Clause"
  9475. ],
  9476. "authors": [
  9477. {
  9478. "name": "Sebastian Bergmann",
  9479. "email": "sebastian@phpunit.de",
  9480. "role": "lead"
  9481. }
  9482. ],
  9483. "description": "Utility class for timing",
  9484. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9485. "keywords": [
  9486. "timer"
  9487. ],
  9488. "support": {
  9489. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9490. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9491. },
  9492. "funding": [
  9493. {
  9494. "url": "https://github.com/sebastianbergmann",
  9495. "type": "github"
  9496. }
  9497. ],
  9498. "time": "2023-02-03T06:57:52+00:00"
  9499. },
  9500. {
  9501. "name": "phpunit/phpunit",
  9502. "version": "10.3.1",
  9503. "source": {
  9504. "type": "git",
  9505. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9506. "reference": "d442ce7c4104d5683c12e67e4dcb5058159e9804"
  9507. },
  9508. "dist": {
  9509. "type": "zip",
  9510. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/d442ce7c4104d5683c12e67e4dcb5058159e9804",
  9511. "reference": "d442ce7c4104d5683c12e67e4dcb5058159e9804",
  9512. "shasum": ""
  9513. },
  9514. "require": {
  9515. "ext-dom": "*",
  9516. "ext-json": "*",
  9517. "ext-libxml": "*",
  9518. "ext-mbstring": "*",
  9519. "ext-xml": "*",
  9520. "ext-xmlwriter": "*",
  9521. "myclabs/deep-copy": "^1.10.1",
  9522. "phar-io/manifest": "^2.0.3",
  9523. "phar-io/version": "^3.0.2",
  9524. "php": ">=8.1",
  9525. "phpunit/php-code-coverage": "^10.1.1",
  9526. "phpunit/php-file-iterator": "^4.0",
  9527. "phpunit/php-invoker": "^4.0",
  9528. "phpunit/php-text-template": "^3.0",
  9529. "phpunit/php-timer": "^6.0",
  9530. "sebastian/cli-parser": "^2.0",
  9531. "sebastian/code-unit": "^2.0",
  9532. "sebastian/comparator": "^5.0",
  9533. "sebastian/diff": "^5.0",
  9534. "sebastian/environment": "^6.0",
  9535. "sebastian/exporter": "^5.0",
  9536. "sebastian/global-state": "^6.0.1",
  9537. "sebastian/object-enumerator": "^5.0",
  9538. "sebastian/recursion-context": "^5.0",
  9539. "sebastian/type": "^4.0",
  9540. "sebastian/version": "^4.0"
  9541. },
  9542. "suggest": {
  9543. "ext-soap": "To be able to generate mocks based on WSDL files"
  9544. },
  9545. "bin": [
  9546. "phpunit"
  9547. ],
  9548. "type": "library",
  9549. "extra": {
  9550. "branch-alias": {
  9551. "dev-main": "10.3-dev"
  9552. }
  9553. },
  9554. "autoload": {
  9555. "files": [
  9556. "src/Framework/Assert/Functions.php"
  9557. ],
  9558. "classmap": [
  9559. "src/"
  9560. ]
  9561. },
  9562. "notification-url": "https://packagist.org/downloads/",
  9563. "license": [
  9564. "BSD-3-Clause"
  9565. ],
  9566. "authors": [
  9567. {
  9568. "name": "Sebastian Bergmann",
  9569. "email": "sebastian@phpunit.de",
  9570. "role": "lead"
  9571. }
  9572. ],
  9573. "description": "The PHP Unit Testing framework.",
  9574. "homepage": "https://phpunit.de/",
  9575. "keywords": [
  9576. "phpunit",
  9577. "testing",
  9578. "xunit"
  9579. ],
  9580. "support": {
  9581. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9582. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9583. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.3.1"
  9584. },
  9585. "funding": [
  9586. {
  9587. "url": "https://phpunit.de/sponsors.html",
  9588. "type": "custom"
  9589. },
  9590. {
  9591. "url": "https://github.com/sebastianbergmann",
  9592. "type": "github"
  9593. },
  9594. {
  9595. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9596. "type": "tidelift"
  9597. }
  9598. ],
  9599. "time": "2023-08-04T06:48:08+00:00"
  9600. },
  9601. {
  9602. "name": "psr/cache",
  9603. "version": "3.0.0",
  9604. "source": {
  9605. "type": "git",
  9606. "url": "https://github.com/php-fig/cache.git",
  9607. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  9608. },
  9609. "dist": {
  9610. "type": "zip",
  9611. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9612. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9613. "shasum": ""
  9614. },
  9615. "require": {
  9616. "php": ">=8.0.0"
  9617. },
  9618. "type": "library",
  9619. "extra": {
  9620. "branch-alias": {
  9621. "dev-master": "1.0.x-dev"
  9622. }
  9623. },
  9624. "autoload": {
  9625. "psr-4": {
  9626. "Psr\\Cache\\": "src/"
  9627. }
  9628. },
  9629. "notification-url": "https://packagist.org/downloads/",
  9630. "license": [
  9631. "MIT"
  9632. ],
  9633. "authors": [
  9634. {
  9635. "name": "PHP-FIG",
  9636. "homepage": "https://www.php-fig.org/"
  9637. }
  9638. ],
  9639. "description": "Common interface for caching libraries",
  9640. "keywords": [
  9641. "cache",
  9642. "psr",
  9643. "psr-6"
  9644. ],
  9645. "support": {
  9646. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  9647. },
  9648. "time": "2021-02-03T23:26:27+00:00"
  9649. },
  9650. {
  9651. "name": "sebastian/cli-parser",
  9652. "version": "2.0.0",
  9653. "source": {
  9654. "type": "git",
  9655. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9656. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae"
  9657. },
  9658. "dist": {
  9659. "type": "zip",
  9660. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae",
  9661. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae",
  9662. "shasum": ""
  9663. },
  9664. "require": {
  9665. "php": ">=8.1"
  9666. },
  9667. "require-dev": {
  9668. "phpunit/phpunit": "^10.0"
  9669. },
  9670. "type": "library",
  9671. "extra": {
  9672. "branch-alias": {
  9673. "dev-main": "2.0-dev"
  9674. }
  9675. },
  9676. "autoload": {
  9677. "classmap": [
  9678. "src/"
  9679. ]
  9680. },
  9681. "notification-url": "https://packagist.org/downloads/",
  9682. "license": [
  9683. "BSD-3-Clause"
  9684. ],
  9685. "authors": [
  9686. {
  9687. "name": "Sebastian Bergmann",
  9688. "email": "sebastian@phpunit.de",
  9689. "role": "lead"
  9690. }
  9691. ],
  9692. "description": "Library for parsing CLI options",
  9693. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9694. "support": {
  9695. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9696. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.0"
  9697. },
  9698. "funding": [
  9699. {
  9700. "url": "https://github.com/sebastianbergmann",
  9701. "type": "github"
  9702. }
  9703. ],
  9704. "time": "2023-02-03T06:58:15+00:00"
  9705. },
  9706. {
  9707. "name": "sebastian/code-unit",
  9708. "version": "2.0.0",
  9709. "source": {
  9710. "type": "git",
  9711. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9712. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9713. },
  9714. "dist": {
  9715. "type": "zip",
  9716. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9717. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9718. "shasum": ""
  9719. },
  9720. "require": {
  9721. "php": ">=8.1"
  9722. },
  9723. "require-dev": {
  9724. "phpunit/phpunit": "^10.0"
  9725. },
  9726. "type": "library",
  9727. "extra": {
  9728. "branch-alias": {
  9729. "dev-main": "2.0-dev"
  9730. }
  9731. },
  9732. "autoload": {
  9733. "classmap": [
  9734. "src/"
  9735. ]
  9736. },
  9737. "notification-url": "https://packagist.org/downloads/",
  9738. "license": [
  9739. "BSD-3-Clause"
  9740. ],
  9741. "authors": [
  9742. {
  9743. "name": "Sebastian Bergmann",
  9744. "email": "sebastian@phpunit.de",
  9745. "role": "lead"
  9746. }
  9747. ],
  9748. "description": "Collection of value objects that represent the PHP code units",
  9749. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9750. "support": {
  9751. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9752. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9753. },
  9754. "funding": [
  9755. {
  9756. "url": "https://github.com/sebastianbergmann",
  9757. "type": "github"
  9758. }
  9759. ],
  9760. "time": "2023-02-03T06:58:43+00:00"
  9761. },
  9762. {
  9763. "name": "sebastian/code-unit-reverse-lookup",
  9764. "version": "3.0.0",
  9765. "source": {
  9766. "type": "git",
  9767. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9768. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9769. },
  9770. "dist": {
  9771. "type": "zip",
  9772. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9773. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9774. "shasum": ""
  9775. },
  9776. "require": {
  9777. "php": ">=8.1"
  9778. },
  9779. "require-dev": {
  9780. "phpunit/phpunit": "^10.0"
  9781. },
  9782. "type": "library",
  9783. "extra": {
  9784. "branch-alias": {
  9785. "dev-main": "3.0-dev"
  9786. }
  9787. },
  9788. "autoload": {
  9789. "classmap": [
  9790. "src/"
  9791. ]
  9792. },
  9793. "notification-url": "https://packagist.org/downloads/",
  9794. "license": [
  9795. "BSD-3-Clause"
  9796. ],
  9797. "authors": [
  9798. {
  9799. "name": "Sebastian Bergmann",
  9800. "email": "sebastian@phpunit.de"
  9801. }
  9802. ],
  9803. "description": "Looks up which function or method a line of code belongs to",
  9804. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9805. "support": {
  9806. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9807. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9808. },
  9809. "funding": [
  9810. {
  9811. "url": "https://github.com/sebastianbergmann",
  9812. "type": "github"
  9813. }
  9814. ],
  9815. "time": "2023-02-03T06:59:15+00:00"
  9816. },
  9817. {
  9818. "name": "sebastian/comparator",
  9819. "version": "5.0.0",
  9820. "source": {
  9821. "type": "git",
  9822. "url": "https://github.com/sebastianbergmann/comparator.git",
  9823. "reference": "72f01e6586e0caf6af81297897bd112eb7e9627c"
  9824. },
  9825. "dist": {
  9826. "type": "zip",
  9827. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/72f01e6586e0caf6af81297897bd112eb7e9627c",
  9828. "reference": "72f01e6586e0caf6af81297897bd112eb7e9627c",
  9829. "shasum": ""
  9830. },
  9831. "require": {
  9832. "ext-dom": "*",
  9833. "ext-mbstring": "*",
  9834. "php": ">=8.1",
  9835. "sebastian/diff": "^5.0",
  9836. "sebastian/exporter": "^5.0"
  9837. },
  9838. "require-dev": {
  9839. "phpunit/phpunit": "^10.0"
  9840. },
  9841. "type": "library",
  9842. "extra": {
  9843. "branch-alias": {
  9844. "dev-main": "5.0-dev"
  9845. }
  9846. },
  9847. "autoload": {
  9848. "classmap": [
  9849. "src/"
  9850. ]
  9851. },
  9852. "notification-url": "https://packagist.org/downloads/",
  9853. "license": [
  9854. "BSD-3-Clause"
  9855. ],
  9856. "authors": [
  9857. {
  9858. "name": "Sebastian Bergmann",
  9859. "email": "sebastian@phpunit.de"
  9860. },
  9861. {
  9862. "name": "Jeff Welch",
  9863. "email": "whatthejeff@gmail.com"
  9864. },
  9865. {
  9866. "name": "Volker Dusch",
  9867. "email": "github@wallbash.com"
  9868. },
  9869. {
  9870. "name": "Bernhard Schussek",
  9871. "email": "bschussek@2bepublished.at"
  9872. }
  9873. ],
  9874. "description": "Provides the functionality to compare PHP values for equality",
  9875. "homepage": "https://github.com/sebastianbergmann/comparator",
  9876. "keywords": [
  9877. "comparator",
  9878. "compare",
  9879. "equality"
  9880. ],
  9881. "support": {
  9882. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9883. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.0"
  9884. },
  9885. "funding": [
  9886. {
  9887. "url": "https://github.com/sebastianbergmann",
  9888. "type": "github"
  9889. }
  9890. ],
  9891. "time": "2023-02-03T07:07:16+00:00"
  9892. },
  9893. {
  9894. "name": "sebastian/complexity",
  9895. "version": "3.0.0",
  9896. "source": {
  9897. "type": "git",
  9898. "url": "https://github.com/sebastianbergmann/complexity.git",
  9899. "reference": "e67d240970c9dc7ea7b2123a6d520e334dd61dc6"
  9900. },
  9901. "dist": {
  9902. "type": "zip",
  9903. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/e67d240970c9dc7ea7b2123a6d520e334dd61dc6",
  9904. "reference": "e67d240970c9dc7ea7b2123a6d520e334dd61dc6",
  9905. "shasum": ""
  9906. },
  9907. "require": {
  9908. "nikic/php-parser": "^4.10",
  9909. "php": ">=8.1"
  9910. },
  9911. "require-dev": {
  9912. "phpunit/phpunit": "^10.0"
  9913. },
  9914. "type": "library",
  9915. "extra": {
  9916. "branch-alias": {
  9917. "dev-main": "3.0-dev"
  9918. }
  9919. },
  9920. "autoload": {
  9921. "classmap": [
  9922. "src/"
  9923. ]
  9924. },
  9925. "notification-url": "https://packagist.org/downloads/",
  9926. "license": [
  9927. "BSD-3-Clause"
  9928. ],
  9929. "authors": [
  9930. {
  9931. "name": "Sebastian Bergmann",
  9932. "email": "sebastian@phpunit.de",
  9933. "role": "lead"
  9934. }
  9935. ],
  9936. "description": "Library for calculating the complexity of PHP code units",
  9937. "homepage": "https://github.com/sebastianbergmann/complexity",
  9938. "support": {
  9939. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9940. "source": "https://github.com/sebastianbergmann/complexity/tree/3.0.0"
  9941. },
  9942. "funding": [
  9943. {
  9944. "url": "https://github.com/sebastianbergmann",
  9945. "type": "github"
  9946. }
  9947. ],
  9948. "time": "2023-02-03T06:59:47+00:00"
  9949. },
  9950. {
  9951. "name": "sebastian/diff",
  9952. "version": "5.0.3",
  9953. "source": {
  9954. "type": "git",
  9955. "url": "https://github.com/sebastianbergmann/diff.git",
  9956. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b"
  9957. },
  9958. "dist": {
  9959. "type": "zip",
  9960. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  9961. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  9962. "shasum": ""
  9963. },
  9964. "require": {
  9965. "php": ">=8.1"
  9966. },
  9967. "require-dev": {
  9968. "phpunit/phpunit": "^10.0",
  9969. "symfony/process": "^4.2 || ^5"
  9970. },
  9971. "type": "library",
  9972. "extra": {
  9973. "branch-alias": {
  9974. "dev-main": "5.0-dev"
  9975. }
  9976. },
  9977. "autoload": {
  9978. "classmap": [
  9979. "src/"
  9980. ]
  9981. },
  9982. "notification-url": "https://packagist.org/downloads/",
  9983. "license": [
  9984. "BSD-3-Clause"
  9985. ],
  9986. "authors": [
  9987. {
  9988. "name": "Sebastian Bergmann",
  9989. "email": "sebastian@phpunit.de"
  9990. },
  9991. {
  9992. "name": "Kore Nordmann",
  9993. "email": "mail@kore-nordmann.de"
  9994. }
  9995. ],
  9996. "description": "Diff implementation",
  9997. "homepage": "https://github.com/sebastianbergmann/diff",
  9998. "keywords": [
  9999. "diff",
  10000. "udiff",
  10001. "unidiff",
  10002. "unified diff"
  10003. ],
  10004. "support": {
  10005. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10006. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10007. "source": "https://github.com/sebastianbergmann/diff/tree/5.0.3"
  10008. },
  10009. "funding": [
  10010. {
  10011. "url": "https://github.com/sebastianbergmann",
  10012. "type": "github"
  10013. }
  10014. ],
  10015. "time": "2023-05-01T07:48:21+00:00"
  10016. },
  10017. {
  10018. "name": "sebastian/environment",
  10019. "version": "6.0.1",
  10020. "source": {
  10021. "type": "git",
  10022. "url": "https://github.com/sebastianbergmann/environment.git",
  10023. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951"
  10024. },
  10025. "dist": {
  10026. "type": "zip",
  10027. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951",
  10028. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951",
  10029. "shasum": ""
  10030. },
  10031. "require": {
  10032. "php": ">=8.1"
  10033. },
  10034. "require-dev": {
  10035. "phpunit/phpunit": "^10.0"
  10036. },
  10037. "suggest": {
  10038. "ext-posix": "*"
  10039. },
  10040. "type": "library",
  10041. "extra": {
  10042. "branch-alias": {
  10043. "dev-main": "6.0-dev"
  10044. }
  10045. },
  10046. "autoload": {
  10047. "classmap": [
  10048. "src/"
  10049. ]
  10050. },
  10051. "notification-url": "https://packagist.org/downloads/",
  10052. "license": [
  10053. "BSD-3-Clause"
  10054. ],
  10055. "authors": [
  10056. {
  10057. "name": "Sebastian Bergmann",
  10058. "email": "sebastian@phpunit.de"
  10059. }
  10060. ],
  10061. "description": "Provides functionality to handle HHVM/PHP environments",
  10062. "homepage": "https://github.com/sebastianbergmann/environment",
  10063. "keywords": [
  10064. "Xdebug",
  10065. "environment",
  10066. "hhvm"
  10067. ],
  10068. "support": {
  10069. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10070. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10071. "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1"
  10072. },
  10073. "funding": [
  10074. {
  10075. "url": "https://github.com/sebastianbergmann",
  10076. "type": "github"
  10077. }
  10078. ],
  10079. "time": "2023-04-11T05:39:26+00:00"
  10080. },
  10081. {
  10082. "name": "sebastian/exporter",
  10083. "version": "5.0.0",
  10084. "source": {
  10085. "type": "git",
  10086. "url": "https://github.com/sebastianbergmann/exporter.git",
  10087. "reference": "f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0"
  10088. },
  10089. "dist": {
  10090. "type": "zip",
  10091. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0",
  10092. "reference": "f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0",
  10093. "shasum": ""
  10094. },
  10095. "require": {
  10096. "ext-mbstring": "*",
  10097. "php": ">=8.1",
  10098. "sebastian/recursion-context": "^5.0"
  10099. },
  10100. "require-dev": {
  10101. "phpunit/phpunit": "^10.0"
  10102. },
  10103. "type": "library",
  10104. "extra": {
  10105. "branch-alias": {
  10106. "dev-main": "5.0-dev"
  10107. }
  10108. },
  10109. "autoload": {
  10110. "classmap": [
  10111. "src/"
  10112. ]
  10113. },
  10114. "notification-url": "https://packagist.org/downloads/",
  10115. "license": [
  10116. "BSD-3-Clause"
  10117. ],
  10118. "authors": [
  10119. {
  10120. "name": "Sebastian Bergmann",
  10121. "email": "sebastian@phpunit.de"
  10122. },
  10123. {
  10124. "name": "Jeff Welch",
  10125. "email": "whatthejeff@gmail.com"
  10126. },
  10127. {
  10128. "name": "Volker Dusch",
  10129. "email": "github@wallbash.com"
  10130. },
  10131. {
  10132. "name": "Adam Harvey",
  10133. "email": "aharvey@php.net"
  10134. },
  10135. {
  10136. "name": "Bernhard Schussek",
  10137. "email": "bschussek@gmail.com"
  10138. }
  10139. ],
  10140. "description": "Provides the functionality to export PHP variables for visualization",
  10141. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10142. "keywords": [
  10143. "export",
  10144. "exporter"
  10145. ],
  10146. "support": {
  10147. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10148. "source": "https://github.com/sebastianbergmann/exporter/tree/5.0.0"
  10149. },
  10150. "funding": [
  10151. {
  10152. "url": "https://github.com/sebastianbergmann",
  10153. "type": "github"
  10154. }
  10155. ],
  10156. "time": "2023-02-03T07:06:49+00:00"
  10157. },
  10158. {
  10159. "name": "sebastian/global-state",
  10160. "version": "6.0.1",
  10161. "source": {
  10162. "type": "git",
  10163. "url": "https://github.com/sebastianbergmann/global-state.git",
  10164. "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4"
  10165. },
  10166. "dist": {
  10167. "type": "zip",
  10168. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/7ea9ead78f6d380d2a667864c132c2f7b83055e4",
  10169. "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4",
  10170. "shasum": ""
  10171. },
  10172. "require": {
  10173. "php": ">=8.1",
  10174. "sebastian/object-reflector": "^3.0",
  10175. "sebastian/recursion-context": "^5.0"
  10176. },
  10177. "require-dev": {
  10178. "ext-dom": "*",
  10179. "phpunit/phpunit": "^10.0"
  10180. },
  10181. "type": "library",
  10182. "extra": {
  10183. "branch-alias": {
  10184. "dev-main": "6.0-dev"
  10185. }
  10186. },
  10187. "autoload": {
  10188. "classmap": [
  10189. "src/"
  10190. ]
  10191. },
  10192. "notification-url": "https://packagist.org/downloads/",
  10193. "license": [
  10194. "BSD-3-Clause"
  10195. ],
  10196. "authors": [
  10197. {
  10198. "name": "Sebastian Bergmann",
  10199. "email": "sebastian@phpunit.de"
  10200. }
  10201. ],
  10202. "description": "Snapshotting of global state",
  10203. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10204. "keywords": [
  10205. "global state"
  10206. ],
  10207. "support": {
  10208. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10209. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10210. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.1"
  10211. },
  10212. "funding": [
  10213. {
  10214. "url": "https://github.com/sebastianbergmann",
  10215. "type": "github"
  10216. }
  10217. ],
  10218. "time": "2023-07-19T07:19:23+00:00"
  10219. },
  10220. {
  10221. "name": "sebastian/lines-of-code",
  10222. "version": "2.0.0",
  10223. "source": {
  10224. "type": "git",
  10225. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10226. "reference": "17c4d940ecafb3d15d2cf916f4108f664e28b130"
  10227. },
  10228. "dist": {
  10229. "type": "zip",
  10230. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/17c4d940ecafb3d15d2cf916f4108f664e28b130",
  10231. "reference": "17c4d940ecafb3d15d2cf916f4108f664e28b130",
  10232. "shasum": ""
  10233. },
  10234. "require": {
  10235. "nikic/php-parser": "^4.10",
  10236. "php": ">=8.1"
  10237. },
  10238. "require-dev": {
  10239. "phpunit/phpunit": "^10.0"
  10240. },
  10241. "type": "library",
  10242. "extra": {
  10243. "branch-alias": {
  10244. "dev-main": "2.0-dev"
  10245. }
  10246. },
  10247. "autoload": {
  10248. "classmap": [
  10249. "src/"
  10250. ]
  10251. },
  10252. "notification-url": "https://packagist.org/downloads/",
  10253. "license": [
  10254. "BSD-3-Clause"
  10255. ],
  10256. "authors": [
  10257. {
  10258. "name": "Sebastian Bergmann",
  10259. "email": "sebastian@phpunit.de",
  10260. "role": "lead"
  10261. }
  10262. ],
  10263. "description": "Library for counting the lines of code in PHP source code",
  10264. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10265. "support": {
  10266. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10267. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.0"
  10268. },
  10269. "funding": [
  10270. {
  10271. "url": "https://github.com/sebastianbergmann",
  10272. "type": "github"
  10273. }
  10274. ],
  10275. "time": "2023-02-03T07:08:02+00:00"
  10276. },
  10277. {
  10278. "name": "sebastian/object-enumerator",
  10279. "version": "5.0.0",
  10280. "source": {
  10281. "type": "git",
  10282. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10283. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10284. },
  10285. "dist": {
  10286. "type": "zip",
  10287. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10288. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10289. "shasum": ""
  10290. },
  10291. "require": {
  10292. "php": ">=8.1",
  10293. "sebastian/object-reflector": "^3.0",
  10294. "sebastian/recursion-context": "^5.0"
  10295. },
  10296. "require-dev": {
  10297. "phpunit/phpunit": "^10.0"
  10298. },
  10299. "type": "library",
  10300. "extra": {
  10301. "branch-alias": {
  10302. "dev-main": "5.0-dev"
  10303. }
  10304. },
  10305. "autoload": {
  10306. "classmap": [
  10307. "src/"
  10308. ]
  10309. },
  10310. "notification-url": "https://packagist.org/downloads/",
  10311. "license": [
  10312. "BSD-3-Clause"
  10313. ],
  10314. "authors": [
  10315. {
  10316. "name": "Sebastian Bergmann",
  10317. "email": "sebastian@phpunit.de"
  10318. }
  10319. ],
  10320. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10321. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10322. "support": {
  10323. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10324. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10325. },
  10326. "funding": [
  10327. {
  10328. "url": "https://github.com/sebastianbergmann",
  10329. "type": "github"
  10330. }
  10331. ],
  10332. "time": "2023-02-03T07:08:32+00:00"
  10333. },
  10334. {
  10335. "name": "sebastian/object-reflector",
  10336. "version": "3.0.0",
  10337. "source": {
  10338. "type": "git",
  10339. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10340. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10341. },
  10342. "dist": {
  10343. "type": "zip",
  10344. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10345. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10346. "shasum": ""
  10347. },
  10348. "require": {
  10349. "php": ">=8.1"
  10350. },
  10351. "require-dev": {
  10352. "phpunit/phpunit": "^10.0"
  10353. },
  10354. "type": "library",
  10355. "extra": {
  10356. "branch-alias": {
  10357. "dev-main": "3.0-dev"
  10358. }
  10359. },
  10360. "autoload": {
  10361. "classmap": [
  10362. "src/"
  10363. ]
  10364. },
  10365. "notification-url": "https://packagist.org/downloads/",
  10366. "license": [
  10367. "BSD-3-Clause"
  10368. ],
  10369. "authors": [
  10370. {
  10371. "name": "Sebastian Bergmann",
  10372. "email": "sebastian@phpunit.de"
  10373. }
  10374. ],
  10375. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10376. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10377. "support": {
  10378. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10379. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10380. },
  10381. "funding": [
  10382. {
  10383. "url": "https://github.com/sebastianbergmann",
  10384. "type": "github"
  10385. }
  10386. ],
  10387. "time": "2023-02-03T07:06:18+00:00"
  10388. },
  10389. {
  10390. "name": "sebastian/recursion-context",
  10391. "version": "5.0.0",
  10392. "source": {
  10393. "type": "git",
  10394. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10395. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10396. },
  10397. "dist": {
  10398. "type": "zip",
  10399. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10400. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10401. "shasum": ""
  10402. },
  10403. "require": {
  10404. "php": ">=8.1"
  10405. },
  10406. "require-dev": {
  10407. "phpunit/phpunit": "^10.0"
  10408. },
  10409. "type": "library",
  10410. "extra": {
  10411. "branch-alias": {
  10412. "dev-main": "5.0-dev"
  10413. }
  10414. },
  10415. "autoload": {
  10416. "classmap": [
  10417. "src/"
  10418. ]
  10419. },
  10420. "notification-url": "https://packagist.org/downloads/",
  10421. "license": [
  10422. "BSD-3-Clause"
  10423. ],
  10424. "authors": [
  10425. {
  10426. "name": "Sebastian Bergmann",
  10427. "email": "sebastian@phpunit.de"
  10428. },
  10429. {
  10430. "name": "Jeff Welch",
  10431. "email": "whatthejeff@gmail.com"
  10432. },
  10433. {
  10434. "name": "Adam Harvey",
  10435. "email": "aharvey@php.net"
  10436. }
  10437. ],
  10438. "description": "Provides functionality to recursively process PHP variables",
  10439. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10440. "support": {
  10441. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10442. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10443. },
  10444. "funding": [
  10445. {
  10446. "url": "https://github.com/sebastianbergmann",
  10447. "type": "github"
  10448. }
  10449. ],
  10450. "time": "2023-02-03T07:05:40+00:00"
  10451. },
  10452. {
  10453. "name": "sebastian/type",
  10454. "version": "4.0.0",
  10455. "source": {
  10456. "type": "git",
  10457. "url": "https://github.com/sebastianbergmann/type.git",
  10458. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10459. },
  10460. "dist": {
  10461. "type": "zip",
  10462. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10463. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10464. "shasum": ""
  10465. },
  10466. "require": {
  10467. "php": ">=8.1"
  10468. },
  10469. "require-dev": {
  10470. "phpunit/phpunit": "^10.0"
  10471. },
  10472. "type": "library",
  10473. "extra": {
  10474. "branch-alias": {
  10475. "dev-main": "4.0-dev"
  10476. }
  10477. },
  10478. "autoload": {
  10479. "classmap": [
  10480. "src/"
  10481. ]
  10482. },
  10483. "notification-url": "https://packagist.org/downloads/",
  10484. "license": [
  10485. "BSD-3-Clause"
  10486. ],
  10487. "authors": [
  10488. {
  10489. "name": "Sebastian Bergmann",
  10490. "email": "sebastian@phpunit.de",
  10491. "role": "lead"
  10492. }
  10493. ],
  10494. "description": "Collection of value objects that represent the types of the PHP type system",
  10495. "homepage": "https://github.com/sebastianbergmann/type",
  10496. "support": {
  10497. "issues": "https://github.com/sebastianbergmann/type/issues",
  10498. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10499. },
  10500. "funding": [
  10501. {
  10502. "url": "https://github.com/sebastianbergmann",
  10503. "type": "github"
  10504. }
  10505. ],
  10506. "time": "2023-02-03T07:10:45+00:00"
  10507. },
  10508. {
  10509. "name": "sebastian/version",
  10510. "version": "4.0.1",
  10511. "source": {
  10512. "type": "git",
  10513. "url": "https://github.com/sebastianbergmann/version.git",
  10514. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10515. },
  10516. "dist": {
  10517. "type": "zip",
  10518. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10519. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10520. "shasum": ""
  10521. },
  10522. "require": {
  10523. "php": ">=8.1"
  10524. },
  10525. "type": "library",
  10526. "extra": {
  10527. "branch-alias": {
  10528. "dev-main": "4.0-dev"
  10529. }
  10530. },
  10531. "autoload": {
  10532. "classmap": [
  10533. "src/"
  10534. ]
  10535. },
  10536. "notification-url": "https://packagist.org/downloads/",
  10537. "license": [
  10538. "BSD-3-Clause"
  10539. ],
  10540. "authors": [
  10541. {
  10542. "name": "Sebastian Bergmann",
  10543. "email": "sebastian@phpunit.de",
  10544. "role": "lead"
  10545. }
  10546. ],
  10547. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10548. "homepage": "https://github.com/sebastianbergmann/version",
  10549. "support": {
  10550. "issues": "https://github.com/sebastianbergmann/version/issues",
  10551. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10552. },
  10553. "funding": [
  10554. {
  10555. "url": "https://github.com/sebastianbergmann",
  10556. "type": "github"
  10557. }
  10558. ],
  10559. "time": "2023-02-07T11:34:05+00:00"
  10560. },
  10561. {
  10562. "name": "spatie/backtrace",
  10563. "version": "1.5.3",
  10564. "source": {
  10565. "type": "git",
  10566. "url": "https://github.com/spatie/backtrace.git",
  10567. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab"
  10568. },
  10569. "dist": {
  10570. "type": "zip",
  10571. "url": "https://api.github.com/repos/spatie/backtrace/zipball/483f76a82964a0431aa836b6ed0edde0c248e3ab",
  10572. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab",
  10573. "shasum": ""
  10574. },
  10575. "require": {
  10576. "php": "^7.3|^8.0"
  10577. },
  10578. "require-dev": {
  10579. "ext-json": "*",
  10580. "phpunit/phpunit": "^9.3",
  10581. "spatie/phpunit-snapshot-assertions": "^4.2",
  10582. "symfony/var-dumper": "^5.1"
  10583. },
  10584. "type": "library",
  10585. "autoload": {
  10586. "psr-4": {
  10587. "Spatie\\Backtrace\\": "src"
  10588. }
  10589. },
  10590. "notification-url": "https://packagist.org/downloads/",
  10591. "license": [
  10592. "MIT"
  10593. ],
  10594. "authors": [
  10595. {
  10596. "name": "Freek Van de Herten",
  10597. "email": "freek@spatie.be",
  10598. "homepage": "https://spatie.be",
  10599. "role": "Developer"
  10600. }
  10601. ],
  10602. "description": "A better backtrace",
  10603. "homepage": "https://github.com/spatie/backtrace",
  10604. "keywords": [
  10605. "Backtrace",
  10606. "spatie"
  10607. ],
  10608. "support": {
  10609. "source": "https://github.com/spatie/backtrace/tree/1.5.3"
  10610. },
  10611. "funding": [
  10612. {
  10613. "url": "https://github.com/sponsors/spatie",
  10614. "type": "github"
  10615. },
  10616. {
  10617. "url": "https://spatie.be/open-source/support-us",
  10618. "type": "other"
  10619. }
  10620. ],
  10621. "time": "2023-06-28T12:59:17+00:00"
  10622. },
  10623. {
  10624. "name": "spatie/flare-client-php",
  10625. "version": "1.4.2",
  10626. "source": {
  10627. "type": "git",
  10628. "url": "https://github.com/spatie/flare-client-php.git",
  10629. "reference": "5f2c6a7a0d2c1d90c12559dc7828fd942911a544"
  10630. },
  10631. "dist": {
  10632. "type": "zip",
  10633. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/5f2c6a7a0d2c1d90c12559dc7828fd942911a544",
  10634. "reference": "5f2c6a7a0d2c1d90c12559dc7828fd942911a544",
  10635. "shasum": ""
  10636. },
  10637. "require": {
  10638. "illuminate/pipeline": "^8.0|^9.0|^10.0",
  10639. "nesbot/carbon": "^2.62.1",
  10640. "php": "^8.0",
  10641. "spatie/backtrace": "^1.5.2",
  10642. "symfony/http-foundation": "^5.0|^6.0",
  10643. "symfony/mime": "^5.2|^6.0",
  10644. "symfony/process": "^5.2|^6.0",
  10645. "symfony/var-dumper": "^5.2|^6.0"
  10646. },
  10647. "require-dev": {
  10648. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  10649. "pestphp/pest": "^1.20",
  10650. "phpstan/extension-installer": "^1.1",
  10651. "phpstan/phpstan-deprecation-rules": "^1.0",
  10652. "phpstan/phpstan-phpunit": "^1.0",
  10653. "spatie/phpunit-snapshot-assertions": "^4.0"
  10654. },
  10655. "type": "library",
  10656. "extra": {
  10657. "branch-alias": {
  10658. "dev-main": "1.3.x-dev"
  10659. }
  10660. },
  10661. "autoload": {
  10662. "files": [
  10663. "src/helpers.php"
  10664. ],
  10665. "psr-4": {
  10666. "Spatie\\FlareClient\\": "src"
  10667. }
  10668. },
  10669. "notification-url": "https://packagist.org/downloads/",
  10670. "license": [
  10671. "MIT"
  10672. ],
  10673. "description": "Send PHP errors to Flare",
  10674. "homepage": "https://github.com/spatie/flare-client-php",
  10675. "keywords": [
  10676. "exception",
  10677. "flare",
  10678. "reporting",
  10679. "spatie"
  10680. ],
  10681. "support": {
  10682. "issues": "https://github.com/spatie/flare-client-php/issues",
  10683. "source": "https://github.com/spatie/flare-client-php/tree/1.4.2"
  10684. },
  10685. "funding": [
  10686. {
  10687. "url": "https://github.com/spatie",
  10688. "type": "github"
  10689. }
  10690. ],
  10691. "time": "2023-07-28T08:07:24+00:00"
  10692. },
  10693. {
  10694. "name": "spatie/ignition",
  10695. "version": "1.9.0",
  10696. "source": {
  10697. "type": "git",
  10698. "url": "https://github.com/spatie/ignition.git",
  10699. "reference": "de24ff1e01814d5043bd6eb4ab36a5a852a04973"
  10700. },
  10701. "dist": {
  10702. "type": "zip",
  10703. "url": "https://api.github.com/repos/spatie/ignition/zipball/de24ff1e01814d5043bd6eb4ab36a5a852a04973",
  10704. "reference": "de24ff1e01814d5043bd6eb4ab36a5a852a04973",
  10705. "shasum": ""
  10706. },
  10707. "require": {
  10708. "ext-json": "*",
  10709. "ext-mbstring": "*",
  10710. "php": "^8.0",
  10711. "spatie/backtrace": "^1.5.3",
  10712. "spatie/flare-client-php": "^1.4.0",
  10713. "symfony/console": "^5.4|^6.0",
  10714. "symfony/var-dumper": "^5.4|^6.0"
  10715. },
  10716. "require-dev": {
  10717. "illuminate/cache": "^9.52",
  10718. "mockery/mockery": "^1.4",
  10719. "pestphp/pest": "^1.20",
  10720. "phpstan/extension-installer": "^1.1",
  10721. "phpstan/phpstan-deprecation-rules": "^1.0",
  10722. "phpstan/phpstan-phpunit": "^1.0",
  10723. "psr/simple-cache-implementation": "*",
  10724. "symfony/cache": "^6.0",
  10725. "symfony/process": "^5.4|^6.0",
  10726. "vlucas/phpdotenv": "^5.5"
  10727. },
  10728. "suggest": {
  10729. "openai-php/client": "Require get solutions from OpenAI",
  10730. "simple-cache-implementation": "To cache solutions from OpenAI"
  10731. },
  10732. "type": "library",
  10733. "extra": {
  10734. "branch-alias": {
  10735. "dev-main": "1.5.x-dev"
  10736. }
  10737. },
  10738. "autoload": {
  10739. "psr-4": {
  10740. "Spatie\\Ignition\\": "src"
  10741. }
  10742. },
  10743. "notification-url": "https://packagist.org/downloads/",
  10744. "license": [
  10745. "MIT"
  10746. ],
  10747. "authors": [
  10748. {
  10749. "name": "Spatie",
  10750. "email": "info@spatie.be",
  10751. "role": "Developer"
  10752. }
  10753. ],
  10754. "description": "A beautiful error page for PHP applications.",
  10755. "homepage": "https://flareapp.io/ignition",
  10756. "keywords": [
  10757. "error",
  10758. "flare",
  10759. "laravel",
  10760. "page"
  10761. ],
  10762. "support": {
  10763. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10764. "forum": "https://twitter.com/flareappio",
  10765. "issues": "https://github.com/spatie/ignition/issues",
  10766. "source": "https://github.com/spatie/ignition"
  10767. },
  10768. "funding": [
  10769. {
  10770. "url": "https://github.com/spatie",
  10771. "type": "github"
  10772. }
  10773. ],
  10774. "time": "2023-06-28T13:24:59+00:00"
  10775. },
  10776. {
  10777. "name": "spatie/laravel-ignition",
  10778. "version": "2.2.0",
  10779. "source": {
  10780. "type": "git",
  10781. "url": "https://github.com/spatie/laravel-ignition.git",
  10782. "reference": "dd15fbe82ef5392798941efae93c49395a87d943"
  10783. },
  10784. "dist": {
  10785. "type": "zip",
  10786. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/dd15fbe82ef5392798941efae93c49395a87d943",
  10787. "reference": "dd15fbe82ef5392798941efae93c49395a87d943",
  10788. "shasum": ""
  10789. },
  10790. "require": {
  10791. "ext-curl": "*",
  10792. "ext-json": "*",
  10793. "ext-mbstring": "*",
  10794. "illuminate/support": "^10.0",
  10795. "php": "^8.1",
  10796. "spatie/flare-client-php": "^1.3.5",
  10797. "spatie/ignition": "^1.9",
  10798. "symfony/console": "^6.2.3",
  10799. "symfony/var-dumper": "^6.2.3"
  10800. },
  10801. "require-dev": {
  10802. "livewire/livewire": "^2.11",
  10803. "mockery/mockery": "^1.5.1",
  10804. "openai-php/client": "^0.3.4",
  10805. "orchestra/testbench": "^8.0",
  10806. "pestphp/pest": "^1.22.3",
  10807. "phpstan/extension-installer": "^1.2",
  10808. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  10809. "phpstan/phpstan-phpunit": "^1.3.3",
  10810. "vlucas/phpdotenv": "^5.5"
  10811. },
  10812. "suggest": {
  10813. "openai-php/client": "Require get solutions from OpenAI",
  10814. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  10815. },
  10816. "type": "library",
  10817. "extra": {
  10818. "laravel": {
  10819. "providers": [
  10820. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  10821. ],
  10822. "aliases": {
  10823. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  10824. }
  10825. }
  10826. },
  10827. "autoload": {
  10828. "files": [
  10829. "src/helpers.php"
  10830. ],
  10831. "psr-4": {
  10832. "Spatie\\LaravelIgnition\\": "src"
  10833. }
  10834. },
  10835. "notification-url": "https://packagist.org/downloads/",
  10836. "license": [
  10837. "MIT"
  10838. ],
  10839. "authors": [
  10840. {
  10841. "name": "Spatie",
  10842. "email": "info@spatie.be",
  10843. "role": "Developer"
  10844. }
  10845. ],
  10846. "description": "A beautiful error page for Laravel applications.",
  10847. "homepage": "https://flareapp.io/ignition",
  10848. "keywords": [
  10849. "error",
  10850. "flare",
  10851. "laravel",
  10852. "page"
  10853. ],
  10854. "support": {
  10855. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10856. "forum": "https://twitter.com/flareappio",
  10857. "issues": "https://github.com/spatie/laravel-ignition/issues",
  10858. "source": "https://github.com/spatie/laravel-ignition"
  10859. },
  10860. "funding": [
  10861. {
  10862. "url": "https://github.com/spatie",
  10863. "type": "github"
  10864. }
  10865. ],
  10866. "time": "2023-06-28T13:51:52+00:00"
  10867. },
  10868. {
  10869. "name": "symfony/yaml",
  10870. "version": "v6.3.3",
  10871. "source": {
  10872. "type": "git",
  10873. "url": "https://github.com/symfony/yaml.git",
  10874. "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add"
  10875. },
  10876. "dist": {
  10877. "type": "zip",
  10878. "url": "https://api.github.com/repos/symfony/yaml/zipball/e23292e8c07c85b971b44c1c4b87af52133e2add",
  10879. "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add",
  10880. "shasum": ""
  10881. },
  10882. "require": {
  10883. "php": ">=8.1",
  10884. "symfony/deprecation-contracts": "^2.5|^3",
  10885. "symfony/polyfill-ctype": "^1.8"
  10886. },
  10887. "conflict": {
  10888. "symfony/console": "<5.4"
  10889. },
  10890. "require-dev": {
  10891. "symfony/console": "^5.4|^6.0"
  10892. },
  10893. "bin": [
  10894. "Resources/bin/yaml-lint"
  10895. ],
  10896. "type": "library",
  10897. "autoload": {
  10898. "psr-4": {
  10899. "Symfony\\Component\\Yaml\\": ""
  10900. },
  10901. "exclude-from-classmap": [
  10902. "/Tests/"
  10903. ]
  10904. },
  10905. "notification-url": "https://packagist.org/downloads/",
  10906. "license": [
  10907. "MIT"
  10908. ],
  10909. "authors": [
  10910. {
  10911. "name": "Fabien Potencier",
  10912. "email": "fabien@symfony.com"
  10913. },
  10914. {
  10915. "name": "Symfony Community",
  10916. "homepage": "https://symfony.com/contributors"
  10917. }
  10918. ],
  10919. "description": "Loads and dumps YAML files",
  10920. "homepage": "https://symfony.com",
  10921. "support": {
  10922. "source": "https://github.com/symfony/yaml/tree/v6.3.3"
  10923. },
  10924. "funding": [
  10925. {
  10926. "url": "https://symfony.com/sponsor",
  10927. "type": "custom"
  10928. },
  10929. {
  10930. "url": "https://github.com/fabpot",
  10931. "type": "github"
  10932. },
  10933. {
  10934. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10935. "type": "tidelift"
  10936. }
  10937. ],
  10938. "time": "2023-07-31T07:08:24+00:00"
  10939. },
  10940. {
  10941. "name": "theseer/tokenizer",
  10942. "version": "1.2.1",
  10943. "source": {
  10944. "type": "git",
  10945. "url": "https://github.com/theseer/tokenizer.git",
  10946. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10947. },
  10948. "dist": {
  10949. "type": "zip",
  10950. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10951. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10952. "shasum": ""
  10953. },
  10954. "require": {
  10955. "ext-dom": "*",
  10956. "ext-tokenizer": "*",
  10957. "ext-xmlwriter": "*",
  10958. "php": "^7.2 || ^8.0"
  10959. },
  10960. "type": "library",
  10961. "autoload": {
  10962. "classmap": [
  10963. "src/"
  10964. ]
  10965. },
  10966. "notification-url": "https://packagist.org/downloads/",
  10967. "license": [
  10968. "BSD-3-Clause"
  10969. ],
  10970. "authors": [
  10971. {
  10972. "name": "Arne Blankerts",
  10973. "email": "arne@blankerts.de",
  10974. "role": "Developer"
  10975. }
  10976. ],
  10977. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10978. "support": {
  10979. "issues": "https://github.com/theseer/tokenizer/issues",
  10980. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10981. },
  10982. "funding": [
  10983. {
  10984. "url": "https://github.com/theseer",
  10985. "type": "github"
  10986. }
  10987. ],
  10988. "time": "2021-07-28T10:34:58+00:00"
  10989. }
  10990. ],
  10991. "aliases": [],
  10992. "minimum-stability": "stable",
  10993. "stability-flags": [],
  10994. "prefer-stable": true,
  10995. "prefer-lowest": false,
  10996. "platform": {
  10997. "php": "^8.1"
  10998. },
  10999. "platform-dev": [],
  11000. "plugin-api-version": "2.3.0"
  11001. }