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 397KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061
  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": "e3833546a81852c37dd16694111f1694",
  8. "packages": [
  9. {
  10. "name": "akaunting/laravel-money",
  11. "version": "5.1.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/akaunting/laravel-money.git",
  15. "reference": "193fcc98e9ab829952e4a1b075a8845e89d15e8d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/193fcc98e9ab829952e4a1b075a8845e89d15e8d",
  20. "reference": "193fcc98e9ab829952e4a1b075a8845e89d15e8d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "illuminate/contracts": "^9.0|^10.0",
  25. "illuminate/support": "^9.0|^10.0",
  26. "illuminate/validation": "^9.0|^10.0",
  27. "illuminate/view": "^9.0|^10.0",
  28. "php": "^8.0",
  29. "vlucas/phpdotenv": "^5.4.1"
  30. },
  31. "require-dev": {
  32. "orchestra/testbench": "^7.4|^8.0",
  33. "phpunit/phpunit": "^9.5|^10.0",
  34. "vimeo/psalm": "^4.23"
  35. },
  36. "type": "library",
  37. "extra": {
  38. "laravel": {
  39. "providers": [
  40. "Akaunting\\Money\\Provider"
  41. ]
  42. }
  43. },
  44. "autoload": {
  45. "files": [
  46. "src/helpers.php"
  47. ],
  48. "psr-4": {
  49. "Akaunting\\Money\\": "src"
  50. }
  51. },
  52. "notification-url": "https://packagist.org/downloads/",
  53. "license": [
  54. "MIT"
  55. ],
  56. "authors": [
  57. {
  58. "name": "Denis Duliçi",
  59. "email": "info@akaunting.com",
  60. "homepage": "https://akaunting.com",
  61. "role": "Developer"
  62. }
  63. ],
  64. "description": "Currency formatting and conversion package for Laravel",
  65. "keywords": [
  66. "convert",
  67. "currency",
  68. "format",
  69. "laravel",
  70. "money"
  71. ],
  72. "support": {
  73. "issues": "https://github.com/akaunting/laravel-money/issues",
  74. "source": "https://github.com/akaunting/laravel-money/tree/5.1.2"
  75. },
  76. "time": "2023-07-28T06:57:28+00:00"
  77. },
  78. {
  79. "name": "andrewdwallo/filament-companies",
  80. "version": "v3.0.9",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "6708ffb58917e1fb7429a51afc65d681d7c9d26f"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/6708ffb58917e1fb7429a51afc65d681d7c9d26f",
  89. "reference": "6708ffb58917e1fb7429a51afc65d681d7c9d26f",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "ext-json": "*",
  94. "filament/filament": "^3.0",
  95. "illuminate/console": "^10.0",
  96. "illuminate/contracts": "^10.0",
  97. "illuminate/support": "^10.0",
  98. "laravel/socialite": "^5.6",
  99. "matomo/device-detector": "^6.1",
  100. "php": "^8.1"
  101. },
  102. "require-dev": {
  103. "laravel/sanctum": "^3.0",
  104. "livewire/livewire": "^3.0@beta",
  105. "mockery/mockery": "^1.0",
  106. "orchestra/testbench": "^8.0",
  107. "phpunit/phpunit": "^9.3"
  108. },
  109. "type": "library",
  110. "extra": {
  111. "laravel": {
  112. "providers": [
  113. "Wallo\\FilamentCompanies\\FilamentCompaniesServiceProvider"
  114. ]
  115. }
  116. },
  117. "autoload": {
  118. "psr-4": {
  119. "Wallo\\FilamentCompanies\\": "src/"
  120. }
  121. },
  122. "notification-url": "https://packagist.org/downloads/",
  123. "license": [
  124. "MIT"
  125. ],
  126. "authors": [
  127. {
  128. "name": "Andrew Wallo",
  129. "email": "andrewdwallo@gmail.com",
  130. "role": "Developer"
  131. }
  132. ],
  133. "description": "A Laravel Authentication System based on Companies built using Filament",
  134. "homepage": "https://github.com/andrewdwallo/filament-companies",
  135. "keywords": [
  136. "ERP",
  137. "andrewdwallo",
  138. "auth",
  139. "companies",
  140. "filament",
  141. "laravel",
  142. "tailwind",
  143. "wallo"
  144. ],
  145. "support": {
  146. "issues": "https://github.com/andrewdwallo/filament-companies/issues",
  147. "source": "https://github.com/andrewdwallo/filament-companies/tree/v3.0.9"
  148. },
  149. "time": "2023-09-09T07:51:17+00:00"
  150. },
  151. {
  152. "name": "andrewdwallo/filament-selectify",
  153. "version": "v2.0.5",
  154. "source": {
  155. "type": "git",
  156. "url": "https://github.com/andrewdwallo/filament-selectify.git",
  157. "reference": "037d802420f6538be76943fe0b004c1cd3c364d9"
  158. },
  159. "dist": {
  160. "type": "zip",
  161. "url": "https://api.github.com/repos/andrewdwallo/filament-selectify/zipball/037d802420f6538be76943fe0b004c1cd3c364d9",
  162. "reference": "037d802420f6538be76943fe0b004c1cd3c364d9",
  163. "shasum": ""
  164. },
  165. "require": {
  166. "filament/forms": "^3.0",
  167. "php": "^8.1",
  168. "spatie/laravel-package-tools": "^1.15.0"
  169. },
  170. "require-dev": {
  171. "laravel/pint": "^1.0",
  172. "nunomaduro/collision": "^7.9",
  173. "orchestra/testbench": "^8.0",
  174. "pestphp/pest": "^2.0",
  175. "pestphp/pest-plugin-arch": "^2.0",
  176. "pestphp/pest-plugin-laravel": "^2.0"
  177. },
  178. "type": "library",
  179. "extra": {
  180. "laravel": {
  181. "providers": [
  182. "Wallo\\FilamentSelectify\\FilamentSelectifyServiceProvider"
  183. ]
  184. }
  185. },
  186. "autoload": {
  187. "psr-4": {
  188. "Wallo\\FilamentSelectify\\": "src/"
  189. }
  190. },
  191. "notification-url": "https://packagist.org/downloads/",
  192. "license": [
  193. "MIT"
  194. ],
  195. "authors": [
  196. {
  197. "name": "Andrew Wallo",
  198. "email": "andrewdwallo@gmail.com",
  199. "role": "Developer"
  200. }
  201. ],
  202. "description": "This is my package filament-selectify",
  203. "homepage": "https://github.com/andrewdwallo/filament-selectify",
  204. "keywords": [
  205. "andrewdwallo",
  206. "filament-selectify",
  207. "laravel"
  208. ],
  209. "support": {
  210. "issues": "https://github.com/andrewdwallo/filament-selectify/issues",
  211. "source": "https://github.com/andrewdwallo/filament-selectify/tree/v2.0.5"
  212. },
  213. "time": "2023-09-12T00:21:19+00:00"
  214. },
  215. {
  216. "name": "blade-ui-kit/blade-heroicons",
  217. "version": "2.1.0",
  218. "source": {
  219. "type": "git",
  220. "url": "https://github.com/blade-ui-kit/blade-heroicons.git",
  221. "reference": "f756c807b0d04afd2caf7079bac26492da9cc6d4"
  222. },
  223. "dist": {
  224. "type": "zip",
  225. "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/f756c807b0d04afd2caf7079bac26492da9cc6d4",
  226. "reference": "f756c807b0d04afd2caf7079bac26492da9cc6d4",
  227. "shasum": ""
  228. },
  229. "require": {
  230. "blade-ui-kit/blade-icons": "^1.1",
  231. "illuminate/support": "^9.0|^10.0",
  232. "php": "^8.0"
  233. },
  234. "require-dev": {
  235. "orchestra/testbench": "^7.0|^8.0",
  236. "phpunit/phpunit": "^9.0"
  237. },
  238. "type": "library",
  239. "extra": {
  240. "laravel": {
  241. "providers": [
  242. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  243. ]
  244. }
  245. },
  246. "autoload": {
  247. "psr-4": {
  248. "BladeUI\\Heroicons\\": "src"
  249. }
  250. },
  251. "notification-url": "https://packagist.org/downloads/",
  252. "license": [
  253. "MIT"
  254. ],
  255. "authors": [
  256. {
  257. "name": "Dries Vints",
  258. "homepage": "https://driesvints.com"
  259. }
  260. ],
  261. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  262. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  263. "keywords": [
  264. "Heroicons",
  265. "blade",
  266. "laravel"
  267. ],
  268. "support": {
  269. "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues",
  270. "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/2.1.0"
  271. },
  272. "funding": [
  273. {
  274. "url": "https://github.com/caneco",
  275. "type": "github"
  276. },
  277. {
  278. "url": "https://github.com/driesvints",
  279. "type": "github"
  280. }
  281. ],
  282. "time": "2023-01-11T08:38:22+00:00"
  283. },
  284. {
  285. "name": "blade-ui-kit/blade-icons",
  286. "version": "1.5.2",
  287. "source": {
  288. "type": "git",
  289. "url": "https://github.com/blade-ui-kit/blade-icons.git",
  290. "reference": "4d6b6b2548b1994a777211a985e18691701891e4"
  291. },
  292. "dist": {
  293. "type": "zip",
  294. "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/4d6b6b2548b1994a777211a985e18691701891e4",
  295. "reference": "4d6b6b2548b1994a777211a985e18691701891e4",
  296. "shasum": ""
  297. },
  298. "require": {
  299. "illuminate/contracts": "^8.0|^9.0|^10.0",
  300. "illuminate/filesystem": "^8.0|^9.0|^10.0",
  301. "illuminate/support": "^8.0|^9.0|^10.0",
  302. "illuminate/view": "^8.0|^9.0|^10.0",
  303. "php": "^7.4|^8.0",
  304. "symfony/console": "^5.3|^6.0",
  305. "symfony/finder": "^5.3|^6.0"
  306. },
  307. "require-dev": {
  308. "mockery/mockery": "^1.3",
  309. "orchestra/testbench": "^6.0|^7.0|^8.0",
  310. "phpunit/phpunit": "^9.0"
  311. },
  312. "bin": [
  313. "bin/blade-icons-generate"
  314. ],
  315. "type": "library",
  316. "extra": {
  317. "laravel": {
  318. "providers": [
  319. "BladeUI\\Icons\\BladeIconsServiceProvider"
  320. ]
  321. }
  322. },
  323. "autoload": {
  324. "files": [
  325. "src/helpers.php"
  326. ],
  327. "psr-4": {
  328. "BladeUI\\Icons\\": "src"
  329. }
  330. },
  331. "notification-url": "https://packagist.org/downloads/",
  332. "license": [
  333. "MIT"
  334. ],
  335. "authors": [
  336. {
  337. "name": "Dries Vints",
  338. "homepage": "https://driesvints.com"
  339. }
  340. ],
  341. "description": "A package to easily make use of icons in your Laravel Blade views.",
  342. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  343. "keywords": [
  344. "blade",
  345. "icons",
  346. "laravel",
  347. "svg"
  348. ],
  349. "support": {
  350. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  351. "source": "https://github.com/blade-ui-kit/blade-icons"
  352. },
  353. "funding": [
  354. {
  355. "url": "https://github.com/sponsors/driesvints",
  356. "type": "github"
  357. }
  358. ],
  359. "time": "2023-06-09T15:47:26+00:00"
  360. },
  361. {
  362. "name": "brick/math",
  363. "version": "0.11.0",
  364. "source": {
  365. "type": "git",
  366. "url": "https://github.com/brick/math.git",
  367. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  368. },
  369. "dist": {
  370. "type": "zip",
  371. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  372. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  373. "shasum": ""
  374. },
  375. "require": {
  376. "php": "^8.0"
  377. },
  378. "require-dev": {
  379. "php-coveralls/php-coveralls": "^2.2",
  380. "phpunit/phpunit": "^9.0",
  381. "vimeo/psalm": "5.0.0"
  382. },
  383. "type": "library",
  384. "autoload": {
  385. "psr-4": {
  386. "Brick\\Math\\": "src/"
  387. }
  388. },
  389. "notification-url": "https://packagist.org/downloads/",
  390. "license": [
  391. "MIT"
  392. ],
  393. "description": "Arbitrary-precision arithmetic library",
  394. "keywords": [
  395. "Arbitrary-precision",
  396. "BigInteger",
  397. "BigRational",
  398. "arithmetic",
  399. "bigdecimal",
  400. "bignum",
  401. "brick",
  402. "math"
  403. ],
  404. "support": {
  405. "issues": "https://github.com/brick/math/issues",
  406. "source": "https://github.com/brick/math/tree/0.11.0"
  407. },
  408. "funding": [
  409. {
  410. "url": "https://github.com/BenMorel",
  411. "type": "github"
  412. }
  413. ],
  414. "time": "2023-01-15T23:15:59+00:00"
  415. },
  416. {
  417. "name": "danharrin/date-format-converter",
  418. "version": "v0.3.0",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/danharrin/date-format-converter.git",
  422. "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
  427. "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
  428. "shasum": ""
  429. },
  430. "require": {
  431. "php": "^7.2|^8.0"
  432. },
  433. "type": "library",
  434. "autoload": {
  435. "files": [
  436. "src/helpers.php",
  437. "src/standards.php"
  438. ],
  439. "psr-4": {
  440. "DanHarrin\\DateFormatConverter\\": "src/"
  441. }
  442. },
  443. "notification-url": "https://packagist.org/downloads/",
  444. "license": [
  445. "MIT"
  446. ],
  447. "authors": [
  448. {
  449. "name": "Dan Harrin",
  450. "email": "dan@danharrin.com"
  451. }
  452. ],
  453. "description": "Convert token-based date formats between standards.",
  454. "homepage": "https://github.com/danharrin/date-format-converter",
  455. "support": {
  456. "issues": "https://github.com/danharrin/date-format-converter/issues",
  457. "source": "https://github.com/danharrin/date-format-converter"
  458. },
  459. "funding": [
  460. {
  461. "url": "https://github.com/danharrin",
  462. "type": "github"
  463. }
  464. ],
  465. "time": "2022-09-29T07:48:20+00:00"
  466. },
  467. {
  468. "name": "danharrin/livewire-rate-limiting",
  469. "version": "v1.1.0",
  470. "source": {
  471. "type": "git",
  472. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  473. "reference": "a55996683cabf2e93893280d602191243b3b80b8"
  474. },
  475. "dist": {
  476. "type": "zip",
  477. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/a55996683cabf2e93893280d602191243b3b80b8",
  478. "reference": "a55996683cabf2e93893280d602191243b3b80b8",
  479. "shasum": ""
  480. },
  481. "require": {
  482. "illuminate/support": "^9.0|^10.0",
  483. "php": "^8.0"
  484. },
  485. "require-dev": {
  486. "livewire/livewire": "^2.3",
  487. "orchestra/testbench": "^7.0|^8.0",
  488. "phpunit/phpunit": "^9.0|^10.0"
  489. },
  490. "type": "library",
  491. "autoload": {
  492. "psr-4": {
  493. "DanHarrin\\LivewireRateLimiting\\": "src"
  494. }
  495. },
  496. "notification-url": "https://packagist.org/downloads/",
  497. "license": [
  498. "MIT"
  499. ],
  500. "authors": [
  501. {
  502. "name": "Dan Harrin",
  503. "email": "dan@danharrin.com"
  504. }
  505. ],
  506. "description": "Apply rate limiters to Laravel Livewire actions.",
  507. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  508. "support": {
  509. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  510. "source": "https://github.com/danharrin/livewire-rate-limiting"
  511. },
  512. "funding": [
  513. {
  514. "url": "https://github.com/danharrin",
  515. "type": "github"
  516. }
  517. ],
  518. "time": "2023-03-12T12:17:29+00:00"
  519. },
  520. {
  521. "name": "dflydev/dot-access-data",
  522. "version": "v3.0.2",
  523. "source": {
  524. "type": "git",
  525. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  526. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  527. },
  528. "dist": {
  529. "type": "zip",
  530. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  531. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  532. "shasum": ""
  533. },
  534. "require": {
  535. "php": "^7.1 || ^8.0"
  536. },
  537. "require-dev": {
  538. "phpstan/phpstan": "^0.12.42",
  539. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  540. "scrutinizer/ocular": "1.6.0",
  541. "squizlabs/php_codesniffer": "^3.5",
  542. "vimeo/psalm": "^4.0.0"
  543. },
  544. "type": "library",
  545. "extra": {
  546. "branch-alias": {
  547. "dev-main": "3.x-dev"
  548. }
  549. },
  550. "autoload": {
  551. "psr-4": {
  552. "Dflydev\\DotAccessData\\": "src/"
  553. }
  554. },
  555. "notification-url": "https://packagist.org/downloads/",
  556. "license": [
  557. "MIT"
  558. ],
  559. "authors": [
  560. {
  561. "name": "Dragonfly Development Inc.",
  562. "email": "info@dflydev.com",
  563. "homepage": "http://dflydev.com"
  564. },
  565. {
  566. "name": "Beau Simensen",
  567. "email": "beau@dflydev.com",
  568. "homepage": "http://beausimensen.com"
  569. },
  570. {
  571. "name": "Carlos Frutos",
  572. "email": "carlos@kiwing.it",
  573. "homepage": "https://github.com/cfrutos"
  574. },
  575. {
  576. "name": "Colin O'Dell",
  577. "email": "colinodell@gmail.com",
  578. "homepage": "https://www.colinodell.com"
  579. }
  580. ],
  581. "description": "Given a deep data structure, access data by dot notation.",
  582. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  583. "keywords": [
  584. "access",
  585. "data",
  586. "dot",
  587. "notation"
  588. ],
  589. "support": {
  590. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  591. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  592. },
  593. "time": "2022-10-27T11:44:00+00:00"
  594. },
  595. {
  596. "name": "doctrine/cache",
  597. "version": "2.2.0",
  598. "source": {
  599. "type": "git",
  600. "url": "https://github.com/doctrine/cache.git",
  601. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  602. },
  603. "dist": {
  604. "type": "zip",
  605. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  606. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  607. "shasum": ""
  608. },
  609. "require": {
  610. "php": "~7.1 || ^8.0"
  611. },
  612. "conflict": {
  613. "doctrine/common": ">2.2,<2.4"
  614. },
  615. "require-dev": {
  616. "cache/integration-tests": "dev-master",
  617. "doctrine/coding-standard": "^9",
  618. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  619. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  620. "symfony/cache": "^4.4 || ^5.4 || ^6",
  621. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  622. },
  623. "type": "library",
  624. "autoload": {
  625. "psr-4": {
  626. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  627. }
  628. },
  629. "notification-url": "https://packagist.org/downloads/",
  630. "license": [
  631. "MIT"
  632. ],
  633. "authors": [
  634. {
  635. "name": "Guilherme Blanco",
  636. "email": "guilhermeblanco@gmail.com"
  637. },
  638. {
  639. "name": "Roman Borschel",
  640. "email": "roman@code-factory.org"
  641. },
  642. {
  643. "name": "Benjamin Eberlei",
  644. "email": "kontakt@beberlei.de"
  645. },
  646. {
  647. "name": "Jonathan Wage",
  648. "email": "jonwage@gmail.com"
  649. },
  650. {
  651. "name": "Johannes Schmitt",
  652. "email": "schmittjoh@gmail.com"
  653. }
  654. ],
  655. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  656. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  657. "keywords": [
  658. "abstraction",
  659. "apcu",
  660. "cache",
  661. "caching",
  662. "couchdb",
  663. "memcached",
  664. "php",
  665. "redis",
  666. "xcache"
  667. ],
  668. "support": {
  669. "issues": "https://github.com/doctrine/cache/issues",
  670. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  671. },
  672. "funding": [
  673. {
  674. "url": "https://www.doctrine-project.org/sponsorship.html",
  675. "type": "custom"
  676. },
  677. {
  678. "url": "https://www.patreon.com/phpdoctrine",
  679. "type": "patreon"
  680. },
  681. {
  682. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  683. "type": "tidelift"
  684. }
  685. ],
  686. "time": "2022-05-20T20:07:39+00:00"
  687. },
  688. {
  689. "name": "doctrine/dbal",
  690. "version": "3.6.7",
  691. "source": {
  692. "type": "git",
  693. "url": "https://github.com/doctrine/dbal.git",
  694. "reference": "8e0e268052b4a8974cb00215bb2892787021614f"
  695. },
  696. "dist": {
  697. "type": "zip",
  698. "url": "https://api.github.com/repos/doctrine/dbal/zipball/8e0e268052b4a8974cb00215bb2892787021614f",
  699. "reference": "8e0e268052b4a8974cb00215bb2892787021614f",
  700. "shasum": ""
  701. },
  702. "require": {
  703. "composer-runtime-api": "^2",
  704. "doctrine/cache": "^1.11|^2.0",
  705. "doctrine/deprecations": "^0.5.3|^1",
  706. "doctrine/event-manager": "^1|^2",
  707. "php": "^7.4 || ^8.0",
  708. "psr/cache": "^1|^2|^3",
  709. "psr/log": "^1|^2|^3"
  710. },
  711. "require-dev": {
  712. "doctrine/coding-standard": "12.0.0",
  713. "fig/log-test": "^1",
  714. "jetbrains/phpstorm-stubs": "2023.1",
  715. "phpstan/phpstan": "1.10.34",
  716. "phpstan/phpstan-strict-rules": "^1.5",
  717. "phpunit/phpunit": "9.6.12",
  718. "psalm/plugin-phpunit": "0.18.4",
  719. "slevomat/coding-standard": "8.13.1",
  720. "squizlabs/php_codesniffer": "3.7.2",
  721. "symfony/cache": "^5.4|^6.0",
  722. "symfony/console": "^4.4|^5.4|^6.0",
  723. "vimeo/psalm": "4.30.0"
  724. },
  725. "suggest": {
  726. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  727. },
  728. "bin": [
  729. "bin/doctrine-dbal"
  730. ],
  731. "type": "library",
  732. "autoload": {
  733. "psr-4": {
  734. "Doctrine\\DBAL\\": "src"
  735. }
  736. },
  737. "notification-url": "https://packagist.org/downloads/",
  738. "license": [
  739. "MIT"
  740. ],
  741. "authors": [
  742. {
  743. "name": "Guilherme Blanco",
  744. "email": "guilhermeblanco@gmail.com"
  745. },
  746. {
  747. "name": "Roman Borschel",
  748. "email": "roman@code-factory.org"
  749. },
  750. {
  751. "name": "Benjamin Eberlei",
  752. "email": "kontakt@beberlei.de"
  753. },
  754. {
  755. "name": "Jonathan Wage",
  756. "email": "jonwage@gmail.com"
  757. }
  758. ],
  759. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  760. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  761. "keywords": [
  762. "abstraction",
  763. "database",
  764. "db2",
  765. "dbal",
  766. "mariadb",
  767. "mssql",
  768. "mysql",
  769. "oci8",
  770. "oracle",
  771. "pdo",
  772. "pgsql",
  773. "postgresql",
  774. "queryobject",
  775. "sasql",
  776. "sql",
  777. "sqlite",
  778. "sqlserver",
  779. "sqlsrv"
  780. ],
  781. "support": {
  782. "issues": "https://github.com/doctrine/dbal/issues",
  783. "source": "https://github.com/doctrine/dbal/tree/3.6.7"
  784. },
  785. "funding": [
  786. {
  787. "url": "https://www.doctrine-project.org/sponsorship.html",
  788. "type": "custom"
  789. },
  790. {
  791. "url": "https://www.patreon.com/phpdoctrine",
  792. "type": "patreon"
  793. },
  794. {
  795. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  796. "type": "tidelift"
  797. }
  798. ],
  799. "time": "2023-09-19T20:15:41+00:00"
  800. },
  801. {
  802. "name": "doctrine/deprecations",
  803. "version": "v1.1.1",
  804. "source": {
  805. "type": "git",
  806. "url": "https://github.com/doctrine/deprecations.git",
  807. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3"
  808. },
  809. "dist": {
  810. "type": "zip",
  811. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  812. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  813. "shasum": ""
  814. },
  815. "require": {
  816. "php": "^7.1 || ^8.0"
  817. },
  818. "require-dev": {
  819. "doctrine/coding-standard": "^9",
  820. "phpstan/phpstan": "1.4.10 || 1.10.15",
  821. "phpstan/phpstan-phpunit": "^1.0",
  822. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  823. "psalm/plugin-phpunit": "0.18.4",
  824. "psr/log": "^1 || ^2 || ^3",
  825. "vimeo/psalm": "4.30.0 || 5.12.0"
  826. },
  827. "suggest": {
  828. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  829. },
  830. "type": "library",
  831. "autoload": {
  832. "psr-4": {
  833. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  834. }
  835. },
  836. "notification-url": "https://packagist.org/downloads/",
  837. "license": [
  838. "MIT"
  839. ],
  840. "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.",
  841. "homepage": "https://www.doctrine-project.org/",
  842. "support": {
  843. "issues": "https://github.com/doctrine/deprecations/issues",
  844. "source": "https://github.com/doctrine/deprecations/tree/v1.1.1"
  845. },
  846. "time": "2023-06-03T09:27:29+00:00"
  847. },
  848. {
  849. "name": "doctrine/event-manager",
  850. "version": "2.0.0",
  851. "source": {
  852. "type": "git",
  853. "url": "https://github.com/doctrine/event-manager.git",
  854. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  855. },
  856. "dist": {
  857. "type": "zip",
  858. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  859. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  860. "shasum": ""
  861. },
  862. "require": {
  863. "php": "^8.1"
  864. },
  865. "conflict": {
  866. "doctrine/common": "<2.9"
  867. },
  868. "require-dev": {
  869. "doctrine/coding-standard": "^10",
  870. "phpstan/phpstan": "^1.8.8",
  871. "phpunit/phpunit": "^9.5",
  872. "vimeo/psalm": "^4.28"
  873. },
  874. "type": "library",
  875. "autoload": {
  876. "psr-4": {
  877. "Doctrine\\Common\\": "src"
  878. }
  879. },
  880. "notification-url": "https://packagist.org/downloads/",
  881. "license": [
  882. "MIT"
  883. ],
  884. "authors": [
  885. {
  886. "name": "Guilherme Blanco",
  887. "email": "guilhermeblanco@gmail.com"
  888. },
  889. {
  890. "name": "Roman Borschel",
  891. "email": "roman@code-factory.org"
  892. },
  893. {
  894. "name": "Benjamin Eberlei",
  895. "email": "kontakt@beberlei.de"
  896. },
  897. {
  898. "name": "Jonathan Wage",
  899. "email": "jonwage@gmail.com"
  900. },
  901. {
  902. "name": "Johannes Schmitt",
  903. "email": "schmittjoh@gmail.com"
  904. },
  905. {
  906. "name": "Marco Pivetta",
  907. "email": "ocramius@gmail.com"
  908. }
  909. ],
  910. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  911. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  912. "keywords": [
  913. "event",
  914. "event dispatcher",
  915. "event manager",
  916. "event system",
  917. "events"
  918. ],
  919. "support": {
  920. "issues": "https://github.com/doctrine/event-manager/issues",
  921. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  922. },
  923. "funding": [
  924. {
  925. "url": "https://www.doctrine-project.org/sponsorship.html",
  926. "type": "custom"
  927. },
  928. {
  929. "url": "https://www.patreon.com/phpdoctrine",
  930. "type": "patreon"
  931. },
  932. {
  933. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  934. "type": "tidelift"
  935. }
  936. ],
  937. "time": "2022-10-12T20:59:15+00:00"
  938. },
  939. {
  940. "name": "doctrine/inflector",
  941. "version": "2.0.8",
  942. "source": {
  943. "type": "git",
  944. "url": "https://github.com/doctrine/inflector.git",
  945. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  946. },
  947. "dist": {
  948. "type": "zip",
  949. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  950. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  951. "shasum": ""
  952. },
  953. "require": {
  954. "php": "^7.2 || ^8.0"
  955. },
  956. "require-dev": {
  957. "doctrine/coding-standard": "^11.0",
  958. "phpstan/phpstan": "^1.8",
  959. "phpstan/phpstan-phpunit": "^1.1",
  960. "phpstan/phpstan-strict-rules": "^1.3",
  961. "phpunit/phpunit": "^8.5 || ^9.5",
  962. "vimeo/psalm": "^4.25 || ^5.4"
  963. },
  964. "type": "library",
  965. "autoload": {
  966. "psr-4": {
  967. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  968. }
  969. },
  970. "notification-url": "https://packagist.org/downloads/",
  971. "license": [
  972. "MIT"
  973. ],
  974. "authors": [
  975. {
  976. "name": "Guilherme Blanco",
  977. "email": "guilhermeblanco@gmail.com"
  978. },
  979. {
  980. "name": "Roman Borschel",
  981. "email": "roman@code-factory.org"
  982. },
  983. {
  984. "name": "Benjamin Eberlei",
  985. "email": "kontakt@beberlei.de"
  986. },
  987. {
  988. "name": "Jonathan Wage",
  989. "email": "jonwage@gmail.com"
  990. },
  991. {
  992. "name": "Johannes Schmitt",
  993. "email": "schmittjoh@gmail.com"
  994. }
  995. ],
  996. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  997. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  998. "keywords": [
  999. "inflection",
  1000. "inflector",
  1001. "lowercase",
  1002. "manipulation",
  1003. "php",
  1004. "plural",
  1005. "singular",
  1006. "strings",
  1007. "uppercase",
  1008. "words"
  1009. ],
  1010. "support": {
  1011. "issues": "https://github.com/doctrine/inflector/issues",
  1012. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  1013. },
  1014. "funding": [
  1015. {
  1016. "url": "https://www.doctrine-project.org/sponsorship.html",
  1017. "type": "custom"
  1018. },
  1019. {
  1020. "url": "https://www.patreon.com/phpdoctrine",
  1021. "type": "patreon"
  1022. },
  1023. {
  1024. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1025. "type": "tidelift"
  1026. }
  1027. ],
  1028. "time": "2023-06-16T13:40:37+00:00"
  1029. },
  1030. {
  1031. "name": "doctrine/lexer",
  1032. "version": "3.0.0",
  1033. "source": {
  1034. "type": "git",
  1035. "url": "https://github.com/doctrine/lexer.git",
  1036. "reference": "84a527db05647743d50373e0ec53a152f2cde568"
  1037. },
  1038. "dist": {
  1039. "type": "zip",
  1040. "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
  1041. "reference": "84a527db05647743d50373e0ec53a152f2cde568",
  1042. "shasum": ""
  1043. },
  1044. "require": {
  1045. "php": "^8.1"
  1046. },
  1047. "require-dev": {
  1048. "doctrine/coding-standard": "^10",
  1049. "phpstan/phpstan": "^1.9",
  1050. "phpunit/phpunit": "^9.5",
  1051. "psalm/plugin-phpunit": "^0.18.3",
  1052. "vimeo/psalm": "^5.0"
  1053. },
  1054. "type": "library",
  1055. "autoload": {
  1056. "psr-4": {
  1057. "Doctrine\\Common\\Lexer\\": "src"
  1058. }
  1059. },
  1060. "notification-url": "https://packagist.org/downloads/",
  1061. "license": [
  1062. "MIT"
  1063. ],
  1064. "authors": [
  1065. {
  1066. "name": "Guilherme Blanco",
  1067. "email": "guilhermeblanco@gmail.com"
  1068. },
  1069. {
  1070. "name": "Roman Borschel",
  1071. "email": "roman@code-factory.org"
  1072. },
  1073. {
  1074. "name": "Johannes Schmitt",
  1075. "email": "schmittjoh@gmail.com"
  1076. }
  1077. ],
  1078. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1079. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1080. "keywords": [
  1081. "annotations",
  1082. "docblock",
  1083. "lexer",
  1084. "parser",
  1085. "php"
  1086. ],
  1087. "support": {
  1088. "issues": "https://github.com/doctrine/lexer/issues",
  1089. "source": "https://github.com/doctrine/lexer/tree/3.0.0"
  1090. },
  1091. "funding": [
  1092. {
  1093. "url": "https://www.doctrine-project.org/sponsorship.html",
  1094. "type": "custom"
  1095. },
  1096. {
  1097. "url": "https://www.patreon.com/phpdoctrine",
  1098. "type": "patreon"
  1099. },
  1100. {
  1101. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1102. "type": "tidelift"
  1103. }
  1104. ],
  1105. "time": "2022-12-15T16:57:16+00:00"
  1106. },
  1107. {
  1108. "name": "dragonmantank/cron-expression",
  1109. "version": "v3.3.3",
  1110. "source": {
  1111. "type": "git",
  1112. "url": "https://github.com/dragonmantank/cron-expression.git",
  1113. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1114. },
  1115. "dist": {
  1116. "type": "zip",
  1117. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1118. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1119. "shasum": ""
  1120. },
  1121. "require": {
  1122. "php": "^7.2|^8.0",
  1123. "webmozart/assert": "^1.0"
  1124. },
  1125. "replace": {
  1126. "mtdowling/cron-expression": "^1.0"
  1127. },
  1128. "require-dev": {
  1129. "phpstan/extension-installer": "^1.0",
  1130. "phpstan/phpstan": "^1.0",
  1131. "phpstan/phpstan-webmozart-assert": "^1.0",
  1132. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1133. },
  1134. "type": "library",
  1135. "autoload": {
  1136. "psr-4": {
  1137. "Cron\\": "src/Cron/"
  1138. }
  1139. },
  1140. "notification-url": "https://packagist.org/downloads/",
  1141. "license": [
  1142. "MIT"
  1143. ],
  1144. "authors": [
  1145. {
  1146. "name": "Chris Tankersley",
  1147. "email": "chris@ctankersley.com",
  1148. "homepage": "https://github.com/dragonmantank"
  1149. }
  1150. ],
  1151. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1152. "keywords": [
  1153. "cron",
  1154. "schedule"
  1155. ],
  1156. "support": {
  1157. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1158. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1159. },
  1160. "funding": [
  1161. {
  1162. "url": "https://github.com/dragonmantank",
  1163. "type": "github"
  1164. }
  1165. ],
  1166. "time": "2023-08-10T19:36:49+00:00"
  1167. },
  1168. {
  1169. "name": "egulias/email-validator",
  1170. "version": "4.0.1",
  1171. "source": {
  1172. "type": "git",
  1173. "url": "https://github.com/egulias/EmailValidator.git",
  1174. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
  1175. },
  1176. "dist": {
  1177. "type": "zip",
  1178. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1179. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1180. "shasum": ""
  1181. },
  1182. "require": {
  1183. "doctrine/lexer": "^2.0 || ^3.0",
  1184. "php": ">=8.1",
  1185. "symfony/polyfill-intl-idn": "^1.26"
  1186. },
  1187. "require-dev": {
  1188. "phpunit/phpunit": "^9.5.27",
  1189. "vimeo/psalm": "^4.30"
  1190. },
  1191. "suggest": {
  1192. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1193. },
  1194. "type": "library",
  1195. "extra": {
  1196. "branch-alias": {
  1197. "dev-master": "4.0.x-dev"
  1198. }
  1199. },
  1200. "autoload": {
  1201. "psr-4": {
  1202. "Egulias\\EmailValidator\\": "src"
  1203. }
  1204. },
  1205. "notification-url": "https://packagist.org/downloads/",
  1206. "license": [
  1207. "MIT"
  1208. ],
  1209. "authors": [
  1210. {
  1211. "name": "Eduardo Gulias Davis"
  1212. }
  1213. ],
  1214. "description": "A library for validating emails against several RFCs",
  1215. "homepage": "https://github.com/egulias/EmailValidator",
  1216. "keywords": [
  1217. "email",
  1218. "emailvalidation",
  1219. "emailvalidator",
  1220. "validation",
  1221. "validator"
  1222. ],
  1223. "support": {
  1224. "issues": "https://github.com/egulias/EmailValidator/issues",
  1225. "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
  1226. },
  1227. "funding": [
  1228. {
  1229. "url": "https://github.com/egulias",
  1230. "type": "github"
  1231. }
  1232. ],
  1233. "time": "2023-01-14T14:17:03+00:00"
  1234. },
  1235. {
  1236. "name": "filament/actions",
  1237. "version": "v3.0.60",
  1238. "source": {
  1239. "type": "git",
  1240. "url": "https://github.com/filamentphp/actions.git",
  1241. "reference": "faa8c4f5a793982352d0a7a96f1bdffc9610ded7"
  1242. },
  1243. "dist": {
  1244. "type": "zip",
  1245. "url": "https://api.github.com/repos/filamentphp/actions/zipball/faa8c4f5a793982352d0a7a96f1bdffc9610ded7",
  1246. "reference": "faa8c4f5a793982352d0a7a96f1bdffc9610ded7",
  1247. "shasum": ""
  1248. },
  1249. "require": {
  1250. "filament/forms": "self.version",
  1251. "filament/infolists": "self.version",
  1252. "filament/notifications": "self.version",
  1253. "filament/support": "self.version",
  1254. "illuminate/contracts": "^10.0",
  1255. "illuminate/database": "^10.0",
  1256. "illuminate/support": "^10.0",
  1257. "php": "^8.1",
  1258. "spatie/laravel-package-tools": "^1.9"
  1259. },
  1260. "type": "library",
  1261. "extra": {
  1262. "laravel": {
  1263. "providers": [
  1264. "Filament\\Actions\\ActionsServiceProvider"
  1265. ]
  1266. }
  1267. },
  1268. "autoload": {
  1269. "psr-4": {
  1270. "Filament\\Actions\\": "src"
  1271. }
  1272. },
  1273. "notification-url": "https://packagist.org/downloads/",
  1274. "license": [
  1275. "MIT"
  1276. ],
  1277. "description": "Easily add beautiful action modals to any Livewire component.",
  1278. "homepage": "https://github.com/filamentphp/filament",
  1279. "support": {
  1280. "issues": "https://github.com/filamentphp/filament/issues",
  1281. "source": "https://github.com/filamentphp/filament"
  1282. },
  1283. "time": "2023-09-20T12:53:33+00:00"
  1284. },
  1285. {
  1286. "name": "filament/filament",
  1287. "version": "v3.0.60",
  1288. "source": {
  1289. "type": "git",
  1290. "url": "https://github.com/filamentphp/panels.git",
  1291. "reference": "9464b1a3c8622701ef8ee094e3a33ccc889321da"
  1292. },
  1293. "dist": {
  1294. "type": "zip",
  1295. "url": "https://api.github.com/repos/filamentphp/panels/zipball/9464b1a3c8622701ef8ee094e3a33ccc889321da",
  1296. "reference": "9464b1a3c8622701ef8ee094e3a33ccc889321da",
  1297. "shasum": ""
  1298. },
  1299. "require": {
  1300. "danharrin/livewire-rate-limiting": "^0.3|^1.0",
  1301. "filament/actions": "self.version",
  1302. "filament/forms": "self.version",
  1303. "filament/infolists": "self.version",
  1304. "filament/notifications": "self.version",
  1305. "filament/support": "self.version",
  1306. "filament/tables": "self.version",
  1307. "filament/widgets": "self.version",
  1308. "illuminate/auth": "^10.0",
  1309. "illuminate/console": "^10.0",
  1310. "illuminate/contracts": "^10.0",
  1311. "illuminate/cookie": "^10.0",
  1312. "illuminate/database": "^10.0",
  1313. "illuminate/http": "^10.0",
  1314. "illuminate/routing": "^10.0",
  1315. "illuminate/session": "^10.0",
  1316. "illuminate/support": "^10.0",
  1317. "illuminate/view": "^10.0",
  1318. "php": "^8.1",
  1319. "spatie/laravel-package-tools": "^1.9"
  1320. },
  1321. "type": "library",
  1322. "extra": {
  1323. "laravel": {
  1324. "providers": [
  1325. "Filament\\FilamentServiceProvider"
  1326. ]
  1327. }
  1328. },
  1329. "autoload": {
  1330. "files": [
  1331. "src/global_helpers.php",
  1332. "src/helpers.php"
  1333. ],
  1334. "psr-4": {
  1335. "Filament\\": "src"
  1336. }
  1337. },
  1338. "notification-url": "https://packagist.org/downloads/",
  1339. "license": [
  1340. "MIT"
  1341. ],
  1342. "description": "A collection of full-stack components for accelerated Laravel app development.",
  1343. "homepage": "https://github.com/filamentphp/filament",
  1344. "support": {
  1345. "issues": "https://github.com/filamentphp/filament/issues",
  1346. "source": "https://github.com/filamentphp/filament"
  1347. },
  1348. "time": "2023-09-22T07:21:38+00:00"
  1349. },
  1350. {
  1351. "name": "filament/forms",
  1352. "version": "v3.0.60",
  1353. "source": {
  1354. "type": "git",
  1355. "url": "https://github.com/filamentphp/forms.git",
  1356. "reference": "d693c5daa523c34f3215fb757ea554bc26f46120"
  1357. },
  1358. "dist": {
  1359. "type": "zip",
  1360. "url": "https://api.github.com/repos/filamentphp/forms/zipball/d693c5daa523c34f3215fb757ea554bc26f46120",
  1361. "reference": "d693c5daa523c34f3215fb757ea554bc26f46120",
  1362. "shasum": ""
  1363. },
  1364. "require": {
  1365. "danharrin/date-format-converter": "^0.3",
  1366. "filament/actions": "self.version",
  1367. "filament/support": "self.version",
  1368. "illuminate/console": "^10.0",
  1369. "illuminate/contracts": "^10.0",
  1370. "illuminate/database": "^10.0",
  1371. "illuminate/filesystem": "^10.0",
  1372. "illuminate/support": "^10.0",
  1373. "illuminate/validation": "^10.0",
  1374. "illuminate/view": "^10.0",
  1375. "php": "^8.1",
  1376. "spatie/laravel-package-tools": "^1.9"
  1377. },
  1378. "type": "library",
  1379. "extra": {
  1380. "laravel": {
  1381. "providers": [
  1382. "Filament\\Forms\\FormsServiceProvider"
  1383. ]
  1384. }
  1385. },
  1386. "autoload": {
  1387. "files": [
  1388. "src/helpers.php"
  1389. ],
  1390. "psr-4": {
  1391. "Filament\\Forms\\": "src"
  1392. }
  1393. },
  1394. "notification-url": "https://packagist.org/downloads/",
  1395. "license": [
  1396. "MIT"
  1397. ],
  1398. "description": "Easily add beautiful forms to any Livewire component.",
  1399. "homepage": "https://github.com/filamentphp/filament",
  1400. "support": {
  1401. "issues": "https://github.com/filamentphp/filament/issues",
  1402. "source": "https://github.com/filamentphp/filament"
  1403. },
  1404. "time": "2023-09-21T21:29:16+00:00"
  1405. },
  1406. {
  1407. "name": "filament/infolists",
  1408. "version": "v3.0.60",
  1409. "source": {
  1410. "type": "git",
  1411. "url": "https://github.com/filamentphp/infolists.git",
  1412. "reference": "33863406d820b4b943d6aabb47e37d35c5030b7e"
  1413. },
  1414. "dist": {
  1415. "type": "zip",
  1416. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/33863406d820b4b943d6aabb47e37d35c5030b7e",
  1417. "reference": "33863406d820b4b943d6aabb47e37d35c5030b7e",
  1418. "shasum": ""
  1419. },
  1420. "require": {
  1421. "filament/actions": "self.version",
  1422. "filament/support": "self.version",
  1423. "illuminate/console": "^10.0",
  1424. "illuminate/contracts": "^10.0",
  1425. "illuminate/database": "^10.0",
  1426. "illuminate/filesystem": "^10.0",
  1427. "illuminate/support": "^10.0",
  1428. "illuminate/view": "^10.0",
  1429. "php": "^8.1",
  1430. "spatie/laravel-package-tools": "^1.9"
  1431. },
  1432. "type": "library",
  1433. "extra": {
  1434. "laravel": {
  1435. "providers": [
  1436. "Filament\\Infolists\\InfolistsServiceProvider"
  1437. ]
  1438. }
  1439. },
  1440. "autoload": {
  1441. "psr-4": {
  1442. "Filament\\Infolists\\": "src"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "description": "Easily add beautiful read-only infolists to any Livewire component.",
  1450. "homepage": "https://github.com/filamentphp/filament",
  1451. "support": {
  1452. "issues": "https://github.com/filamentphp/filament/issues",
  1453. "source": "https://github.com/filamentphp/filament"
  1454. },
  1455. "time": "2023-09-20T12:53:28+00:00"
  1456. },
  1457. {
  1458. "name": "filament/notifications",
  1459. "version": "v3.0.60",
  1460. "source": {
  1461. "type": "git",
  1462. "url": "https://github.com/filamentphp/notifications.git",
  1463. "reference": "cd7ec21f025b06070ffd20f967f77eca49a8a9ce"
  1464. },
  1465. "dist": {
  1466. "type": "zip",
  1467. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/cd7ec21f025b06070ffd20f967f77eca49a8a9ce",
  1468. "reference": "cd7ec21f025b06070ffd20f967f77eca49a8a9ce",
  1469. "shasum": ""
  1470. },
  1471. "require": {
  1472. "filament/actions": "self.version",
  1473. "filament/support": "self.version",
  1474. "illuminate/contracts": "^10.0",
  1475. "illuminate/filesystem": "^10.0",
  1476. "illuminate/notifications": "^10.0",
  1477. "illuminate/support": "^10.0",
  1478. "php": "^8.1",
  1479. "spatie/laravel-package-tools": "^1.9"
  1480. },
  1481. "type": "library",
  1482. "extra": {
  1483. "laravel": {
  1484. "providers": [
  1485. "Filament\\Notifications\\NotificationsServiceProvider"
  1486. ]
  1487. }
  1488. },
  1489. "autoload": {
  1490. "files": [
  1491. "src/Testing/Autoload.php"
  1492. ],
  1493. "psr-4": {
  1494. "Filament\\Notifications\\": "src"
  1495. }
  1496. },
  1497. "notification-url": "https://packagist.org/downloads/",
  1498. "license": [
  1499. "MIT"
  1500. ],
  1501. "description": "Easily add beautiful notifications to any Livewire app.",
  1502. "homepage": "https://github.com/filamentphp/filament",
  1503. "support": {
  1504. "issues": "https://github.com/filamentphp/filament/issues",
  1505. "source": "https://github.com/filamentphp/filament"
  1506. },
  1507. "time": "2023-09-21T21:29:13+00:00"
  1508. },
  1509. {
  1510. "name": "filament/spatie-laravel-tags-plugin",
  1511. "version": "v3.0.60",
  1512. "source": {
  1513. "type": "git",
  1514. "url": "https://github.com/filamentphp/spatie-laravel-tags-plugin.git",
  1515. "reference": "31e837c013071868d7b677f6e49b8f28f8aac55b"
  1516. },
  1517. "dist": {
  1518. "type": "zip",
  1519. "url": "https://api.github.com/repos/filamentphp/spatie-laravel-tags-plugin/zipball/31e837c013071868d7b677f6e49b8f28f8aac55b",
  1520. "reference": "31e837c013071868d7b677f6e49b8f28f8aac55b",
  1521. "shasum": ""
  1522. },
  1523. "require": {
  1524. "illuminate/database": "^10.0",
  1525. "php": "^8.1",
  1526. "spatie/laravel-tags": "^4.0"
  1527. },
  1528. "type": "library",
  1529. "autoload": {
  1530. "psr-4": {
  1531. "Filament\\": "src"
  1532. }
  1533. },
  1534. "notification-url": "https://packagist.org/downloads/",
  1535. "license": [
  1536. "MIT"
  1537. ],
  1538. "description": "Filament support for `spatie/laravel-tags`.",
  1539. "homepage": "https://github.com/filamentphp/filament",
  1540. "support": {
  1541. "issues": "https://github.com/filamentphp/filament/issues",
  1542. "source": "https://github.com/filamentphp/filament"
  1543. },
  1544. "time": "2023-09-12T22:49:52+00:00"
  1545. },
  1546. {
  1547. "name": "filament/support",
  1548. "version": "v3.0.60",
  1549. "source": {
  1550. "type": "git",
  1551. "url": "https://github.com/filamentphp/support.git",
  1552. "reference": "20a59233246b020a4944cf9bbccdb1c06e814c83"
  1553. },
  1554. "dist": {
  1555. "type": "zip",
  1556. "url": "https://api.github.com/repos/filamentphp/support/zipball/20a59233246b020a4944cf9bbccdb1c06e814c83",
  1557. "reference": "20a59233246b020a4944cf9bbccdb1c06e814c83",
  1558. "shasum": ""
  1559. },
  1560. "require": {
  1561. "blade-ui-kit/blade-heroicons": "^2.0",
  1562. "doctrine/dbal": "^3.2",
  1563. "ext-intl": "*",
  1564. "illuminate/contracts": "^10.0",
  1565. "illuminate/support": "^10.0",
  1566. "illuminate/view": "^10.0",
  1567. "livewire/livewire": "^3.0",
  1568. "php": "^8.1",
  1569. "ryangjchandler/blade-capture-directive": "^0.2|^0.3",
  1570. "spatie/color": "^1.5",
  1571. "spatie/invade": "^1.0",
  1572. "spatie/laravel-package-tools": "^1.9",
  1573. "symfony/html-sanitizer": "^6.1"
  1574. },
  1575. "type": "library",
  1576. "extra": {
  1577. "laravel": {
  1578. "providers": [
  1579. "Filament\\Support\\SupportServiceProvider"
  1580. ]
  1581. }
  1582. },
  1583. "autoload": {
  1584. "files": [
  1585. "src/helpers.php"
  1586. ],
  1587. "psr-4": {
  1588. "Filament\\Support\\": "src"
  1589. }
  1590. },
  1591. "notification-url": "https://packagist.org/downloads/",
  1592. "license": [
  1593. "MIT"
  1594. ],
  1595. "description": "Core helper methods and foundation code for all Filament packages.",
  1596. "homepage": "https://github.com/filamentphp/filament",
  1597. "support": {
  1598. "issues": "https://github.com/filamentphp/filament/issues",
  1599. "source": "https://github.com/filamentphp/filament"
  1600. },
  1601. "time": "2023-09-22T07:21:49+00:00"
  1602. },
  1603. {
  1604. "name": "filament/tables",
  1605. "version": "v3.0.60",
  1606. "source": {
  1607. "type": "git",
  1608. "url": "https://github.com/filamentphp/tables.git",
  1609. "reference": "a3a9600d57a02525ec3239e091c6dc19b8a28ad2"
  1610. },
  1611. "dist": {
  1612. "type": "zip",
  1613. "url": "https://api.github.com/repos/filamentphp/tables/zipball/a3a9600d57a02525ec3239e091c6dc19b8a28ad2",
  1614. "reference": "a3a9600d57a02525ec3239e091c6dc19b8a28ad2",
  1615. "shasum": ""
  1616. },
  1617. "require": {
  1618. "filament/actions": "self.version",
  1619. "filament/forms": "self.version",
  1620. "filament/support": "self.version",
  1621. "illuminate/console": "^10.0",
  1622. "illuminate/contracts": "^10.0",
  1623. "illuminate/database": "^10.0",
  1624. "illuminate/filesystem": "^10.0",
  1625. "illuminate/support": "^10.0",
  1626. "illuminate/view": "^10.0",
  1627. "kirschbaum-development/eloquent-power-joins": "^3.0",
  1628. "php": "^8.1",
  1629. "spatie/laravel-package-tools": "^1.9"
  1630. },
  1631. "type": "library",
  1632. "extra": {
  1633. "laravel": {
  1634. "providers": [
  1635. "Filament\\Tables\\TablesServiceProvider"
  1636. ]
  1637. }
  1638. },
  1639. "autoload": {
  1640. "psr-4": {
  1641. "Filament\\Tables\\": "src"
  1642. }
  1643. },
  1644. "notification-url": "https://packagist.org/downloads/",
  1645. "license": [
  1646. "MIT"
  1647. ],
  1648. "description": "Easily add beautiful tables to any Livewire component.",
  1649. "homepage": "https://github.com/filamentphp/filament",
  1650. "support": {
  1651. "issues": "https://github.com/filamentphp/filament/issues",
  1652. "source": "https://github.com/filamentphp/filament"
  1653. },
  1654. "time": "2023-09-21T18:39:58+00:00"
  1655. },
  1656. {
  1657. "name": "filament/widgets",
  1658. "version": "v3.0.60",
  1659. "source": {
  1660. "type": "git",
  1661. "url": "https://github.com/filamentphp/widgets.git",
  1662. "reference": "bbe1952f1b04e673ae86a6cac758979e5e3ed18c"
  1663. },
  1664. "dist": {
  1665. "type": "zip",
  1666. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/bbe1952f1b04e673ae86a6cac758979e5e3ed18c",
  1667. "reference": "bbe1952f1b04e673ae86a6cac758979e5e3ed18c",
  1668. "shasum": ""
  1669. },
  1670. "require": {
  1671. "filament/support": "self.version",
  1672. "php": "^8.1",
  1673. "spatie/laravel-package-tools": "^1.9"
  1674. },
  1675. "type": "library",
  1676. "extra": {
  1677. "laravel": {
  1678. "providers": [
  1679. "Filament\\Widgets\\WidgetsServiceProvider"
  1680. ]
  1681. }
  1682. },
  1683. "autoload": {
  1684. "psr-4": {
  1685. "Filament\\Widgets\\": "src"
  1686. }
  1687. },
  1688. "notification-url": "https://packagist.org/downloads/",
  1689. "license": [
  1690. "MIT"
  1691. ],
  1692. "description": "Easily add beautiful dashboard widgets to any Livewire component.",
  1693. "homepage": "https://github.com/filamentphp/filament",
  1694. "support": {
  1695. "issues": "https://github.com/filamentphp/filament/issues",
  1696. "source": "https://github.com/filamentphp/filament"
  1697. },
  1698. "time": "2023-09-18T10:30:45+00:00"
  1699. },
  1700. {
  1701. "name": "fruitcake/php-cors",
  1702. "version": "v1.2.0",
  1703. "source": {
  1704. "type": "git",
  1705. "url": "https://github.com/fruitcake/php-cors.git",
  1706. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  1707. },
  1708. "dist": {
  1709. "type": "zip",
  1710. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1711. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1712. "shasum": ""
  1713. },
  1714. "require": {
  1715. "php": "^7.4|^8.0",
  1716. "symfony/http-foundation": "^4.4|^5.4|^6"
  1717. },
  1718. "require-dev": {
  1719. "phpstan/phpstan": "^1.4",
  1720. "phpunit/phpunit": "^9",
  1721. "squizlabs/php_codesniffer": "^3.5"
  1722. },
  1723. "type": "library",
  1724. "extra": {
  1725. "branch-alias": {
  1726. "dev-main": "1.1-dev"
  1727. }
  1728. },
  1729. "autoload": {
  1730. "psr-4": {
  1731. "Fruitcake\\Cors\\": "src/"
  1732. }
  1733. },
  1734. "notification-url": "https://packagist.org/downloads/",
  1735. "license": [
  1736. "MIT"
  1737. ],
  1738. "authors": [
  1739. {
  1740. "name": "Fruitcake",
  1741. "homepage": "https://fruitcake.nl"
  1742. },
  1743. {
  1744. "name": "Barryvdh",
  1745. "email": "barryvdh@gmail.com"
  1746. }
  1747. ],
  1748. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1749. "homepage": "https://github.com/fruitcake/php-cors",
  1750. "keywords": [
  1751. "cors",
  1752. "laravel",
  1753. "symfony"
  1754. ],
  1755. "support": {
  1756. "issues": "https://github.com/fruitcake/php-cors/issues",
  1757. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  1758. },
  1759. "funding": [
  1760. {
  1761. "url": "https://fruitcake.nl",
  1762. "type": "custom"
  1763. },
  1764. {
  1765. "url": "https://github.com/barryvdh",
  1766. "type": "github"
  1767. }
  1768. ],
  1769. "time": "2022-02-20T15:07:15+00:00"
  1770. },
  1771. {
  1772. "name": "graham-campbell/result-type",
  1773. "version": "v1.1.1",
  1774. "source": {
  1775. "type": "git",
  1776. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1777. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
  1778. },
  1779. "dist": {
  1780. "type": "zip",
  1781. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1782. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1783. "shasum": ""
  1784. },
  1785. "require": {
  1786. "php": "^7.2.5 || ^8.0",
  1787. "phpoption/phpoption": "^1.9.1"
  1788. },
  1789. "require-dev": {
  1790. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  1791. },
  1792. "type": "library",
  1793. "autoload": {
  1794. "psr-4": {
  1795. "GrahamCampbell\\ResultType\\": "src/"
  1796. }
  1797. },
  1798. "notification-url": "https://packagist.org/downloads/",
  1799. "license": [
  1800. "MIT"
  1801. ],
  1802. "authors": [
  1803. {
  1804. "name": "Graham Campbell",
  1805. "email": "hello@gjcampbell.co.uk",
  1806. "homepage": "https://github.com/GrahamCampbell"
  1807. }
  1808. ],
  1809. "description": "An Implementation Of The Result Type",
  1810. "keywords": [
  1811. "Graham Campbell",
  1812. "GrahamCampbell",
  1813. "Result Type",
  1814. "Result-Type",
  1815. "result"
  1816. ],
  1817. "support": {
  1818. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1819. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1"
  1820. },
  1821. "funding": [
  1822. {
  1823. "url": "https://github.com/GrahamCampbell",
  1824. "type": "github"
  1825. },
  1826. {
  1827. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1828. "type": "tidelift"
  1829. }
  1830. ],
  1831. "time": "2023-02-25T20:23:15+00:00"
  1832. },
  1833. {
  1834. "name": "guzzlehttp/guzzle",
  1835. "version": "7.8.0",
  1836. "source": {
  1837. "type": "git",
  1838. "url": "https://github.com/guzzle/guzzle.git",
  1839. "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9"
  1840. },
  1841. "dist": {
  1842. "type": "zip",
  1843. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1110f66a6530a40fe7aea0378fe608ee2b2248f9",
  1844. "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9",
  1845. "shasum": ""
  1846. },
  1847. "require": {
  1848. "ext-json": "*",
  1849. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1850. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1851. "php": "^7.2.5 || ^8.0",
  1852. "psr/http-client": "^1.0",
  1853. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1854. },
  1855. "provide": {
  1856. "psr/http-client-implementation": "1.0"
  1857. },
  1858. "require-dev": {
  1859. "bamarni/composer-bin-plugin": "^1.8.1",
  1860. "ext-curl": "*",
  1861. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1862. "php-http/message-factory": "^1.1",
  1863. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  1864. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1865. },
  1866. "suggest": {
  1867. "ext-curl": "Required for CURL handler support",
  1868. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1869. "psr/log": "Required for using the Log middleware"
  1870. },
  1871. "type": "library",
  1872. "extra": {
  1873. "bamarni-bin": {
  1874. "bin-links": true,
  1875. "forward-command": false
  1876. }
  1877. },
  1878. "autoload": {
  1879. "files": [
  1880. "src/functions_include.php"
  1881. ],
  1882. "psr-4": {
  1883. "GuzzleHttp\\": "src/"
  1884. }
  1885. },
  1886. "notification-url": "https://packagist.org/downloads/",
  1887. "license": [
  1888. "MIT"
  1889. ],
  1890. "authors": [
  1891. {
  1892. "name": "Graham Campbell",
  1893. "email": "hello@gjcampbell.co.uk",
  1894. "homepage": "https://github.com/GrahamCampbell"
  1895. },
  1896. {
  1897. "name": "Michael Dowling",
  1898. "email": "mtdowling@gmail.com",
  1899. "homepage": "https://github.com/mtdowling"
  1900. },
  1901. {
  1902. "name": "Jeremy Lindblom",
  1903. "email": "jeremeamia@gmail.com",
  1904. "homepage": "https://github.com/jeremeamia"
  1905. },
  1906. {
  1907. "name": "George Mponos",
  1908. "email": "gmponos@gmail.com",
  1909. "homepage": "https://github.com/gmponos"
  1910. },
  1911. {
  1912. "name": "Tobias Nyholm",
  1913. "email": "tobias.nyholm@gmail.com",
  1914. "homepage": "https://github.com/Nyholm"
  1915. },
  1916. {
  1917. "name": "Márk Sági-Kazár",
  1918. "email": "mark.sagikazar@gmail.com",
  1919. "homepage": "https://github.com/sagikazarmark"
  1920. },
  1921. {
  1922. "name": "Tobias Schultze",
  1923. "email": "webmaster@tubo-world.de",
  1924. "homepage": "https://github.com/Tobion"
  1925. }
  1926. ],
  1927. "description": "Guzzle is a PHP HTTP client library",
  1928. "keywords": [
  1929. "client",
  1930. "curl",
  1931. "framework",
  1932. "http",
  1933. "http client",
  1934. "psr-18",
  1935. "psr-7",
  1936. "rest",
  1937. "web service"
  1938. ],
  1939. "support": {
  1940. "issues": "https://github.com/guzzle/guzzle/issues",
  1941. "source": "https://github.com/guzzle/guzzle/tree/7.8.0"
  1942. },
  1943. "funding": [
  1944. {
  1945. "url": "https://github.com/GrahamCampbell",
  1946. "type": "github"
  1947. },
  1948. {
  1949. "url": "https://github.com/Nyholm",
  1950. "type": "github"
  1951. },
  1952. {
  1953. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1954. "type": "tidelift"
  1955. }
  1956. ],
  1957. "time": "2023-08-27T10:20:53+00:00"
  1958. },
  1959. {
  1960. "name": "guzzlehttp/promises",
  1961. "version": "2.0.1",
  1962. "source": {
  1963. "type": "git",
  1964. "url": "https://github.com/guzzle/promises.git",
  1965. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  1966. },
  1967. "dist": {
  1968. "type": "zip",
  1969. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  1970. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  1971. "shasum": ""
  1972. },
  1973. "require": {
  1974. "php": "^7.2.5 || ^8.0"
  1975. },
  1976. "require-dev": {
  1977. "bamarni/composer-bin-plugin": "^1.8.1",
  1978. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1979. },
  1980. "type": "library",
  1981. "extra": {
  1982. "bamarni-bin": {
  1983. "bin-links": true,
  1984. "forward-command": false
  1985. }
  1986. },
  1987. "autoload": {
  1988. "psr-4": {
  1989. "GuzzleHttp\\Promise\\": "src/"
  1990. }
  1991. },
  1992. "notification-url": "https://packagist.org/downloads/",
  1993. "license": [
  1994. "MIT"
  1995. ],
  1996. "authors": [
  1997. {
  1998. "name": "Graham Campbell",
  1999. "email": "hello@gjcampbell.co.uk",
  2000. "homepage": "https://github.com/GrahamCampbell"
  2001. },
  2002. {
  2003. "name": "Michael Dowling",
  2004. "email": "mtdowling@gmail.com",
  2005. "homepage": "https://github.com/mtdowling"
  2006. },
  2007. {
  2008. "name": "Tobias Nyholm",
  2009. "email": "tobias.nyholm@gmail.com",
  2010. "homepage": "https://github.com/Nyholm"
  2011. },
  2012. {
  2013. "name": "Tobias Schultze",
  2014. "email": "webmaster@tubo-world.de",
  2015. "homepage": "https://github.com/Tobion"
  2016. }
  2017. ],
  2018. "description": "Guzzle promises library",
  2019. "keywords": [
  2020. "promise"
  2021. ],
  2022. "support": {
  2023. "issues": "https://github.com/guzzle/promises/issues",
  2024. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  2025. },
  2026. "funding": [
  2027. {
  2028. "url": "https://github.com/GrahamCampbell",
  2029. "type": "github"
  2030. },
  2031. {
  2032. "url": "https://github.com/Nyholm",
  2033. "type": "github"
  2034. },
  2035. {
  2036. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2037. "type": "tidelift"
  2038. }
  2039. ],
  2040. "time": "2023-08-03T15:11:55+00:00"
  2041. },
  2042. {
  2043. "name": "guzzlehttp/psr7",
  2044. "version": "2.6.1",
  2045. "source": {
  2046. "type": "git",
  2047. "url": "https://github.com/guzzle/psr7.git",
  2048. "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727"
  2049. },
  2050. "dist": {
  2051. "type": "zip",
  2052. "url": "https://api.github.com/repos/guzzle/psr7/zipball/be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
  2053. "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
  2054. "shasum": ""
  2055. },
  2056. "require": {
  2057. "php": "^7.2.5 || ^8.0",
  2058. "psr/http-factory": "^1.0",
  2059. "psr/http-message": "^1.1 || ^2.0",
  2060. "ralouphie/getallheaders": "^3.0"
  2061. },
  2062. "provide": {
  2063. "psr/http-factory-implementation": "1.0",
  2064. "psr/http-message-implementation": "1.0"
  2065. },
  2066. "require-dev": {
  2067. "bamarni/composer-bin-plugin": "^1.8.1",
  2068. "http-interop/http-factory-tests": "^0.9",
  2069. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  2070. },
  2071. "suggest": {
  2072. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2073. },
  2074. "type": "library",
  2075. "extra": {
  2076. "bamarni-bin": {
  2077. "bin-links": true,
  2078. "forward-command": false
  2079. }
  2080. },
  2081. "autoload": {
  2082. "psr-4": {
  2083. "GuzzleHttp\\Psr7\\": "src/"
  2084. }
  2085. },
  2086. "notification-url": "https://packagist.org/downloads/",
  2087. "license": [
  2088. "MIT"
  2089. ],
  2090. "authors": [
  2091. {
  2092. "name": "Graham Campbell",
  2093. "email": "hello@gjcampbell.co.uk",
  2094. "homepage": "https://github.com/GrahamCampbell"
  2095. },
  2096. {
  2097. "name": "Michael Dowling",
  2098. "email": "mtdowling@gmail.com",
  2099. "homepage": "https://github.com/mtdowling"
  2100. },
  2101. {
  2102. "name": "George Mponos",
  2103. "email": "gmponos@gmail.com",
  2104. "homepage": "https://github.com/gmponos"
  2105. },
  2106. {
  2107. "name": "Tobias Nyholm",
  2108. "email": "tobias.nyholm@gmail.com",
  2109. "homepage": "https://github.com/Nyholm"
  2110. },
  2111. {
  2112. "name": "Márk Sági-Kazár",
  2113. "email": "mark.sagikazar@gmail.com",
  2114. "homepage": "https://github.com/sagikazarmark"
  2115. },
  2116. {
  2117. "name": "Tobias Schultze",
  2118. "email": "webmaster@tubo-world.de",
  2119. "homepage": "https://github.com/Tobion"
  2120. },
  2121. {
  2122. "name": "Márk Sági-Kazár",
  2123. "email": "mark.sagikazar@gmail.com",
  2124. "homepage": "https://sagikazarmark.hu"
  2125. }
  2126. ],
  2127. "description": "PSR-7 message implementation that also provides common utility methods",
  2128. "keywords": [
  2129. "http",
  2130. "message",
  2131. "psr-7",
  2132. "request",
  2133. "response",
  2134. "stream",
  2135. "uri",
  2136. "url"
  2137. ],
  2138. "support": {
  2139. "issues": "https://github.com/guzzle/psr7/issues",
  2140. "source": "https://github.com/guzzle/psr7/tree/2.6.1"
  2141. },
  2142. "funding": [
  2143. {
  2144. "url": "https://github.com/GrahamCampbell",
  2145. "type": "github"
  2146. },
  2147. {
  2148. "url": "https://github.com/Nyholm",
  2149. "type": "github"
  2150. },
  2151. {
  2152. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2153. "type": "tidelift"
  2154. }
  2155. ],
  2156. "time": "2023-08-27T10:13:57+00:00"
  2157. },
  2158. {
  2159. "name": "guzzlehttp/uri-template",
  2160. "version": "v1.0.2",
  2161. "source": {
  2162. "type": "git",
  2163. "url": "https://github.com/guzzle/uri-template.git",
  2164. "reference": "61bf437fc2197f587f6857d3ff903a24f1731b5d"
  2165. },
  2166. "dist": {
  2167. "type": "zip",
  2168. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/61bf437fc2197f587f6857d3ff903a24f1731b5d",
  2169. "reference": "61bf437fc2197f587f6857d3ff903a24f1731b5d",
  2170. "shasum": ""
  2171. },
  2172. "require": {
  2173. "php": "^7.2.5 || ^8.0",
  2174. "symfony/polyfill-php80": "^1.17"
  2175. },
  2176. "require-dev": {
  2177. "bamarni/composer-bin-plugin": "^1.8.1",
  2178. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  2179. "uri-template/tests": "1.0.0"
  2180. },
  2181. "type": "library",
  2182. "autoload": {
  2183. "psr-4": {
  2184. "GuzzleHttp\\UriTemplate\\": "src"
  2185. }
  2186. },
  2187. "notification-url": "https://packagist.org/downloads/",
  2188. "license": [
  2189. "MIT"
  2190. ],
  2191. "authors": [
  2192. {
  2193. "name": "Graham Campbell",
  2194. "email": "hello@gjcampbell.co.uk",
  2195. "homepage": "https://github.com/GrahamCampbell"
  2196. },
  2197. {
  2198. "name": "Michael Dowling",
  2199. "email": "mtdowling@gmail.com",
  2200. "homepage": "https://github.com/mtdowling"
  2201. },
  2202. {
  2203. "name": "George Mponos",
  2204. "email": "gmponos@gmail.com",
  2205. "homepage": "https://github.com/gmponos"
  2206. },
  2207. {
  2208. "name": "Tobias Nyholm",
  2209. "email": "tobias.nyholm@gmail.com",
  2210. "homepage": "https://github.com/Nyholm"
  2211. }
  2212. ],
  2213. "description": "A polyfill class for uri_template of PHP",
  2214. "keywords": [
  2215. "guzzlehttp",
  2216. "uri-template"
  2217. ],
  2218. "support": {
  2219. "issues": "https://github.com/guzzle/uri-template/issues",
  2220. "source": "https://github.com/guzzle/uri-template/tree/v1.0.2"
  2221. },
  2222. "funding": [
  2223. {
  2224. "url": "https://github.com/GrahamCampbell",
  2225. "type": "github"
  2226. },
  2227. {
  2228. "url": "https://github.com/Nyholm",
  2229. "type": "github"
  2230. },
  2231. {
  2232. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2233. "type": "tidelift"
  2234. }
  2235. ],
  2236. "time": "2023-08-27T10:19:19+00:00"
  2237. },
  2238. {
  2239. "name": "kirschbaum-development/eloquent-power-joins",
  2240. "version": "3.2.4",
  2241. "source": {
  2242. "type": "git",
  2243. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  2244. "reference": "fadc20d436b0693a34c4b611d07954818e46eb4d"
  2245. },
  2246. "dist": {
  2247. "type": "zip",
  2248. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/fadc20d436b0693a34c4b611d07954818e46eb4d",
  2249. "reference": "fadc20d436b0693a34c4b611d07954818e46eb4d",
  2250. "shasum": ""
  2251. },
  2252. "require": {
  2253. "illuminate/database": "^8.0|^9.0|^10.0",
  2254. "illuminate/support": "^8.0|^9.0|^10.0",
  2255. "php": "^8.0"
  2256. },
  2257. "require-dev": {
  2258. "laravel/legacy-factories": "^1.0@dev",
  2259. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
  2260. "phpunit/phpunit": "^8.0|^9.0"
  2261. },
  2262. "type": "library",
  2263. "extra": {
  2264. "laravel": {
  2265. "providers": [
  2266. "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider"
  2267. ]
  2268. }
  2269. },
  2270. "autoload": {
  2271. "psr-4": {
  2272. "Kirschbaum\\PowerJoins\\": "src"
  2273. }
  2274. },
  2275. "notification-url": "https://packagist.org/downloads/",
  2276. "license": [
  2277. "MIT"
  2278. ],
  2279. "authors": [
  2280. {
  2281. "name": "Luis Dalmolin",
  2282. "email": "luis.nh@gmail.com",
  2283. "role": "Developer"
  2284. }
  2285. ],
  2286. "description": "The Laravel magic applied to joins.",
  2287. "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins",
  2288. "keywords": [
  2289. "eloquent",
  2290. "join",
  2291. "laravel",
  2292. "mysql"
  2293. ],
  2294. "support": {
  2295. "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
  2296. "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/3.2.4"
  2297. },
  2298. "time": "2023-09-12T17:02:05+00:00"
  2299. },
  2300. {
  2301. "name": "laravel/framework",
  2302. "version": "v10.24.0",
  2303. "source": {
  2304. "type": "git",
  2305. "url": "https://github.com/laravel/framework.git",
  2306. "reference": "bcebd0a4c015d5c38aeec299d355a42451dd3726"
  2307. },
  2308. "dist": {
  2309. "type": "zip",
  2310. "url": "https://api.github.com/repos/laravel/framework/zipball/bcebd0a4c015d5c38aeec299d355a42451dd3726",
  2311. "reference": "bcebd0a4c015d5c38aeec299d355a42451dd3726",
  2312. "shasum": ""
  2313. },
  2314. "require": {
  2315. "brick/math": "^0.9.3|^0.10.2|^0.11",
  2316. "composer-runtime-api": "^2.2",
  2317. "doctrine/inflector": "^2.0.5",
  2318. "dragonmantank/cron-expression": "^3.3.2",
  2319. "egulias/email-validator": "^3.2.1|^4.0",
  2320. "ext-ctype": "*",
  2321. "ext-filter": "*",
  2322. "ext-hash": "*",
  2323. "ext-mbstring": "*",
  2324. "ext-openssl": "*",
  2325. "ext-session": "*",
  2326. "ext-tokenizer": "*",
  2327. "fruitcake/php-cors": "^1.2",
  2328. "guzzlehttp/uri-template": "^1.0",
  2329. "laravel/prompts": "^0.1",
  2330. "laravel/serializable-closure": "^1.3",
  2331. "league/commonmark": "^2.2.1",
  2332. "league/flysystem": "^3.8.0",
  2333. "monolog/monolog": "^3.0",
  2334. "nesbot/carbon": "^2.67",
  2335. "nunomaduro/termwind": "^1.13",
  2336. "php": "^8.1",
  2337. "psr/container": "^1.1.1|^2.0.1",
  2338. "psr/log": "^1.0|^2.0|^3.0",
  2339. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2340. "ramsey/uuid": "^4.7",
  2341. "symfony/console": "^6.2",
  2342. "symfony/error-handler": "^6.2",
  2343. "symfony/finder": "^6.2",
  2344. "symfony/http-foundation": "^6.2",
  2345. "symfony/http-kernel": "^6.2",
  2346. "symfony/mailer": "^6.2",
  2347. "symfony/mime": "^6.2",
  2348. "symfony/process": "^6.2",
  2349. "symfony/routing": "^6.2",
  2350. "symfony/uid": "^6.2",
  2351. "symfony/var-dumper": "^6.2",
  2352. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2353. "vlucas/phpdotenv": "^5.4.1",
  2354. "voku/portable-ascii": "^2.0"
  2355. },
  2356. "conflict": {
  2357. "tightenco/collect": "<5.5.33"
  2358. },
  2359. "provide": {
  2360. "psr/container-implementation": "1.1|2.0",
  2361. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2362. },
  2363. "replace": {
  2364. "illuminate/auth": "self.version",
  2365. "illuminate/broadcasting": "self.version",
  2366. "illuminate/bus": "self.version",
  2367. "illuminate/cache": "self.version",
  2368. "illuminate/collections": "self.version",
  2369. "illuminate/conditionable": "self.version",
  2370. "illuminate/config": "self.version",
  2371. "illuminate/console": "self.version",
  2372. "illuminate/container": "self.version",
  2373. "illuminate/contracts": "self.version",
  2374. "illuminate/cookie": "self.version",
  2375. "illuminate/database": "self.version",
  2376. "illuminate/encryption": "self.version",
  2377. "illuminate/events": "self.version",
  2378. "illuminate/filesystem": "self.version",
  2379. "illuminate/hashing": "self.version",
  2380. "illuminate/http": "self.version",
  2381. "illuminate/log": "self.version",
  2382. "illuminate/macroable": "self.version",
  2383. "illuminate/mail": "self.version",
  2384. "illuminate/notifications": "self.version",
  2385. "illuminate/pagination": "self.version",
  2386. "illuminate/pipeline": "self.version",
  2387. "illuminate/process": "self.version",
  2388. "illuminate/queue": "self.version",
  2389. "illuminate/redis": "self.version",
  2390. "illuminate/routing": "self.version",
  2391. "illuminate/session": "self.version",
  2392. "illuminate/support": "self.version",
  2393. "illuminate/testing": "self.version",
  2394. "illuminate/translation": "self.version",
  2395. "illuminate/validation": "self.version",
  2396. "illuminate/view": "self.version"
  2397. },
  2398. "require-dev": {
  2399. "ably/ably-php": "^1.0",
  2400. "aws/aws-sdk-php": "^3.235.5",
  2401. "doctrine/dbal": "^3.5.1",
  2402. "ext-gmp": "*",
  2403. "fakerphp/faker": "^1.21",
  2404. "guzzlehttp/guzzle": "^7.5",
  2405. "league/flysystem-aws-s3-v3": "^3.0",
  2406. "league/flysystem-ftp": "^3.0",
  2407. "league/flysystem-path-prefixing": "^3.3",
  2408. "league/flysystem-read-only": "^3.3",
  2409. "league/flysystem-sftp-v3": "^3.0",
  2410. "mockery/mockery": "^1.5.1",
  2411. "orchestra/testbench-core": "^8.10",
  2412. "pda/pheanstalk": "^4.0",
  2413. "phpstan/phpstan": "^1.4.7",
  2414. "phpunit/phpunit": "^10.0.7",
  2415. "predis/predis": "^2.0.2",
  2416. "symfony/cache": "^6.2",
  2417. "symfony/http-client": "^6.2.4"
  2418. },
  2419. "suggest": {
  2420. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2421. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  2422. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2423. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).",
  2424. "ext-apcu": "Required to use the APC cache driver.",
  2425. "ext-fileinfo": "Required to use the Filesystem class.",
  2426. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2427. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2428. "ext-memcached": "Required to use the memcache cache driver.",
  2429. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2430. "ext-pdo": "Required to use all database features.",
  2431. "ext-posix": "Required to use all features of the queue worker.",
  2432. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2433. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2434. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2435. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  2436. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2437. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  2438. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  2439. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  2440. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  2441. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  2442. "mockery/mockery": "Required to use mocking (^1.5.1).",
  2443. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2444. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2445. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).",
  2446. "predis/predis": "Required to use the predis connector (^2.0.2).",
  2447. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2448. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2449. "symfony/cache": "Required to PSR-6 cache bridge (^6.2).",
  2450. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).",
  2451. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).",
  2452. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).",
  2453. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).",
  2454. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  2455. },
  2456. "type": "library",
  2457. "extra": {
  2458. "branch-alias": {
  2459. "dev-master": "10.x-dev"
  2460. }
  2461. },
  2462. "autoload": {
  2463. "files": [
  2464. "src/Illuminate/Collections/helpers.php",
  2465. "src/Illuminate/Events/functions.php",
  2466. "src/Illuminate/Foundation/helpers.php",
  2467. "src/Illuminate/Support/helpers.php"
  2468. ],
  2469. "psr-4": {
  2470. "Illuminate\\": "src/Illuminate/",
  2471. "Illuminate\\Support\\": [
  2472. "src/Illuminate/Macroable/",
  2473. "src/Illuminate/Collections/",
  2474. "src/Illuminate/Conditionable/"
  2475. ]
  2476. }
  2477. },
  2478. "notification-url": "https://packagist.org/downloads/",
  2479. "license": [
  2480. "MIT"
  2481. ],
  2482. "authors": [
  2483. {
  2484. "name": "Taylor Otwell",
  2485. "email": "taylor@laravel.com"
  2486. }
  2487. ],
  2488. "description": "The Laravel Framework.",
  2489. "homepage": "https://laravel.com",
  2490. "keywords": [
  2491. "framework",
  2492. "laravel"
  2493. ],
  2494. "support": {
  2495. "issues": "https://github.com/laravel/framework/issues",
  2496. "source": "https://github.com/laravel/framework"
  2497. },
  2498. "time": "2023-09-19T15:25:04+00:00"
  2499. },
  2500. {
  2501. "name": "laravel/prompts",
  2502. "version": "v0.1.8",
  2503. "source": {
  2504. "type": "git",
  2505. "url": "https://github.com/laravel/prompts.git",
  2506. "reference": "68dcc65babf92e1fb43cba0b3f78fc3d8002709c"
  2507. },
  2508. "dist": {
  2509. "type": "zip",
  2510. "url": "https://api.github.com/repos/laravel/prompts/zipball/68dcc65babf92e1fb43cba0b3f78fc3d8002709c",
  2511. "reference": "68dcc65babf92e1fb43cba0b3f78fc3d8002709c",
  2512. "shasum": ""
  2513. },
  2514. "require": {
  2515. "ext-mbstring": "*",
  2516. "illuminate/collections": "^10.0|^11.0",
  2517. "php": "^8.1",
  2518. "symfony/console": "^6.2"
  2519. },
  2520. "require-dev": {
  2521. "mockery/mockery": "^1.5",
  2522. "pestphp/pest": "^2.3",
  2523. "phpstan/phpstan": "^1.10",
  2524. "phpstan/phpstan-mockery": "^1.1"
  2525. },
  2526. "suggest": {
  2527. "ext-pcntl": "Required for the spinner to be animated."
  2528. },
  2529. "type": "library",
  2530. "autoload": {
  2531. "files": [
  2532. "src/helpers.php"
  2533. ],
  2534. "psr-4": {
  2535. "Laravel\\Prompts\\": "src/"
  2536. }
  2537. },
  2538. "notification-url": "https://packagist.org/downloads/",
  2539. "license": [
  2540. "MIT"
  2541. ],
  2542. "support": {
  2543. "issues": "https://github.com/laravel/prompts/issues",
  2544. "source": "https://github.com/laravel/prompts/tree/v0.1.8"
  2545. },
  2546. "time": "2023-09-19T15:33:56+00:00"
  2547. },
  2548. {
  2549. "name": "laravel/sanctum",
  2550. "version": "v3.3.1",
  2551. "source": {
  2552. "type": "git",
  2553. "url": "https://github.com/laravel/sanctum.git",
  2554. "reference": "338f633e6487e76b255470d3373fbc29228aa971"
  2555. },
  2556. "dist": {
  2557. "type": "zip",
  2558. "url": "https://api.github.com/repos/laravel/sanctum/zipball/338f633e6487e76b255470d3373fbc29228aa971",
  2559. "reference": "338f633e6487e76b255470d3373fbc29228aa971",
  2560. "shasum": ""
  2561. },
  2562. "require": {
  2563. "ext-json": "*",
  2564. "illuminate/console": "^9.21|^10.0",
  2565. "illuminate/contracts": "^9.21|^10.0",
  2566. "illuminate/database": "^9.21|^10.0",
  2567. "illuminate/support": "^9.21|^10.0",
  2568. "php": "^8.0.2"
  2569. },
  2570. "require-dev": {
  2571. "mockery/mockery": "^1.0",
  2572. "orchestra/testbench": "^7.28.2|^8.8.3",
  2573. "phpstan/phpstan": "^1.10",
  2574. "phpunit/phpunit": "^9.6"
  2575. },
  2576. "type": "library",
  2577. "extra": {
  2578. "branch-alias": {
  2579. "dev-master": "3.x-dev"
  2580. },
  2581. "laravel": {
  2582. "providers": [
  2583. "Laravel\\Sanctum\\SanctumServiceProvider"
  2584. ]
  2585. }
  2586. },
  2587. "autoload": {
  2588. "psr-4": {
  2589. "Laravel\\Sanctum\\": "src/"
  2590. }
  2591. },
  2592. "notification-url": "https://packagist.org/downloads/",
  2593. "license": [
  2594. "MIT"
  2595. ],
  2596. "authors": [
  2597. {
  2598. "name": "Taylor Otwell",
  2599. "email": "taylor@laravel.com"
  2600. }
  2601. ],
  2602. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2603. "keywords": [
  2604. "auth",
  2605. "laravel",
  2606. "sanctum"
  2607. ],
  2608. "support": {
  2609. "issues": "https://github.com/laravel/sanctum/issues",
  2610. "source": "https://github.com/laravel/sanctum"
  2611. },
  2612. "time": "2023-09-07T15:46:33+00:00"
  2613. },
  2614. {
  2615. "name": "laravel/serializable-closure",
  2616. "version": "v1.3.1",
  2617. "source": {
  2618. "type": "git",
  2619. "url": "https://github.com/laravel/serializable-closure.git",
  2620. "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902"
  2621. },
  2622. "dist": {
  2623. "type": "zip",
  2624. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/e5a3057a5591e1cfe8183034b0203921abe2c902",
  2625. "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902",
  2626. "shasum": ""
  2627. },
  2628. "require": {
  2629. "php": "^7.3|^8.0"
  2630. },
  2631. "require-dev": {
  2632. "nesbot/carbon": "^2.61",
  2633. "pestphp/pest": "^1.21.3",
  2634. "phpstan/phpstan": "^1.8.2",
  2635. "symfony/var-dumper": "^5.4.11"
  2636. },
  2637. "type": "library",
  2638. "extra": {
  2639. "branch-alias": {
  2640. "dev-master": "1.x-dev"
  2641. }
  2642. },
  2643. "autoload": {
  2644. "psr-4": {
  2645. "Laravel\\SerializableClosure\\": "src/"
  2646. }
  2647. },
  2648. "notification-url": "https://packagist.org/downloads/",
  2649. "license": [
  2650. "MIT"
  2651. ],
  2652. "authors": [
  2653. {
  2654. "name": "Taylor Otwell",
  2655. "email": "taylor@laravel.com"
  2656. },
  2657. {
  2658. "name": "Nuno Maduro",
  2659. "email": "nuno@laravel.com"
  2660. }
  2661. ],
  2662. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2663. "keywords": [
  2664. "closure",
  2665. "laravel",
  2666. "serializable"
  2667. ],
  2668. "support": {
  2669. "issues": "https://github.com/laravel/serializable-closure/issues",
  2670. "source": "https://github.com/laravel/serializable-closure"
  2671. },
  2672. "time": "2023-07-14T13:56:28+00:00"
  2673. },
  2674. {
  2675. "name": "laravel/socialite",
  2676. "version": "v5.9.1",
  2677. "source": {
  2678. "type": "git",
  2679. "url": "https://github.com/laravel/socialite.git",
  2680. "reference": "49ecc4c907ed88c1254bae991c6b2948945645c2"
  2681. },
  2682. "dist": {
  2683. "type": "zip",
  2684. "url": "https://api.github.com/repos/laravel/socialite/zipball/49ecc4c907ed88c1254bae991c6b2948945645c2",
  2685. "reference": "49ecc4c907ed88c1254bae991c6b2948945645c2",
  2686. "shasum": ""
  2687. },
  2688. "require": {
  2689. "ext-json": "*",
  2690. "guzzlehttp/guzzle": "^6.0|^7.0",
  2691. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2692. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2693. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2694. "league/oauth1-client": "^1.10.1",
  2695. "php": "^7.2|^8.0"
  2696. },
  2697. "require-dev": {
  2698. "mockery/mockery": "^1.0",
  2699. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
  2700. "phpstan/phpstan": "^1.10",
  2701. "phpunit/phpunit": "^8.0|^9.3"
  2702. },
  2703. "type": "library",
  2704. "extra": {
  2705. "branch-alias": {
  2706. "dev-master": "5.x-dev"
  2707. },
  2708. "laravel": {
  2709. "providers": [
  2710. "Laravel\\Socialite\\SocialiteServiceProvider"
  2711. ],
  2712. "aliases": {
  2713. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2714. }
  2715. }
  2716. },
  2717. "autoload": {
  2718. "psr-4": {
  2719. "Laravel\\Socialite\\": "src/"
  2720. }
  2721. },
  2722. "notification-url": "https://packagist.org/downloads/",
  2723. "license": [
  2724. "MIT"
  2725. ],
  2726. "authors": [
  2727. {
  2728. "name": "Taylor Otwell",
  2729. "email": "taylor@laravel.com"
  2730. }
  2731. ],
  2732. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2733. "homepage": "https://laravel.com",
  2734. "keywords": [
  2735. "laravel",
  2736. "oauth"
  2737. ],
  2738. "support": {
  2739. "issues": "https://github.com/laravel/socialite/issues",
  2740. "source": "https://github.com/laravel/socialite"
  2741. },
  2742. "time": "2023-09-07T16:13:53+00:00"
  2743. },
  2744. {
  2745. "name": "laravel/tinker",
  2746. "version": "v2.8.2",
  2747. "source": {
  2748. "type": "git",
  2749. "url": "https://github.com/laravel/tinker.git",
  2750. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3"
  2751. },
  2752. "dist": {
  2753. "type": "zip",
  2754. "url": "https://api.github.com/repos/laravel/tinker/zipball/b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  2755. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  2756. "shasum": ""
  2757. },
  2758. "require": {
  2759. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2760. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2761. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2762. "php": "^7.2.5|^8.0",
  2763. "psy/psysh": "^0.10.4|^0.11.1",
  2764. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2765. },
  2766. "require-dev": {
  2767. "mockery/mockery": "~1.3.3|^1.4.2",
  2768. "phpstan/phpstan": "^1.10",
  2769. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2770. },
  2771. "suggest": {
  2772. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  2773. },
  2774. "type": "library",
  2775. "extra": {
  2776. "branch-alias": {
  2777. "dev-master": "2.x-dev"
  2778. },
  2779. "laravel": {
  2780. "providers": [
  2781. "Laravel\\Tinker\\TinkerServiceProvider"
  2782. ]
  2783. }
  2784. },
  2785. "autoload": {
  2786. "psr-4": {
  2787. "Laravel\\Tinker\\": "src/"
  2788. }
  2789. },
  2790. "notification-url": "https://packagist.org/downloads/",
  2791. "license": [
  2792. "MIT"
  2793. ],
  2794. "authors": [
  2795. {
  2796. "name": "Taylor Otwell",
  2797. "email": "taylor@laravel.com"
  2798. }
  2799. ],
  2800. "description": "Powerful REPL for the Laravel framework.",
  2801. "keywords": [
  2802. "REPL",
  2803. "Tinker",
  2804. "laravel",
  2805. "psysh"
  2806. ],
  2807. "support": {
  2808. "issues": "https://github.com/laravel/tinker/issues",
  2809. "source": "https://github.com/laravel/tinker/tree/v2.8.2"
  2810. },
  2811. "time": "2023-08-15T14:27:00+00:00"
  2812. },
  2813. {
  2814. "name": "league/commonmark",
  2815. "version": "2.4.1",
  2816. "source": {
  2817. "type": "git",
  2818. "url": "https://github.com/thephpleague/commonmark.git",
  2819. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  2820. },
  2821. "dist": {
  2822. "type": "zip",
  2823. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2824. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2825. "shasum": ""
  2826. },
  2827. "require": {
  2828. "ext-mbstring": "*",
  2829. "league/config": "^1.1.1",
  2830. "php": "^7.4 || ^8.0",
  2831. "psr/event-dispatcher": "^1.0",
  2832. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2833. "symfony/polyfill-php80": "^1.16"
  2834. },
  2835. "require-dev": {
  2836. "cebe/markdown": "^1.0",
  2837. "commonmark/cmark": "0.30.0",
  2838. "commonmark/commonmark.js": "0.30.0",
  2839. "composer/package-versions-deprecated": "^1.8",
  2840. "embed/embed": "^4.4",
  2841. "erusev/parsedown": "^1.0",
  2842. "ext-json": "*",
  2843. "github/gfm": "0.29.0",
  2844. "michelf/php-markdown": "^1.4 || ^2.0",
  2845. "nyholm/psr7": "^1.5",
  2846. "phpstan/phpstan": "^1.8.2",
  2847. "phpunit/phpunit": "^9.5.21",
  2848. "scrutinizer/ocular": "^1.8.1",
  2849. "symfony/finder": "^5.3 | ^6.0",
  2850. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2851. "unleashedtech/php-coding-standard": "^3.1.1",
  2852. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2853. },
  2854. "suggest": {
  2855. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2856. },
  2857. "type": "library",
  2858. "extra": {
  2859. "branch-alias": {
  2860. "dev-main": "2.5-dev"
  2861. }
  2862. },
  2863. "autoload": {
  2864. "psr-4": {
  2865. "League\\CommonMark\\": "src"
  2866. }
  2867. },
  2868. "notification-url": "https://packagist.org/downloads/",
  2869. "license": [
  2870. "BSD-3-Clause"
  2871. ],
  2872. "authors": [
  2873. {
  2874. "name": "Colin O'Dell",
  2875. "email": "colinodell@gmail.com",
  2876. "homepage": "https://www.colinodell.com",
  2877. "role": "Lead Developer"
  2878. }
  2879. ],
  2880. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2881. "homepage": "https://commonmark.thephpleague.com",
  2882. "keywords": [
  2883. "commonmark",
  2884. "flavored",
  2885. "gfm",
  2886. "github",
  2887. "github-flavored",
  2888. "markdown",
  2889. "md",
  2890. "parser"
  2891. ],
  2892. "support": {
  2893. "docs": "https://commonmark.thephpleague.com/",
  2894. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2895. "issues": "https://github.com/thephpleague/commonmark/issues",
  2896. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2897. "source": "https://github.com/thephpleague/commonmark"
  2898. },
  2899. "funding": [
  2900. {
  2901. "url": "https://www.colinodell.com/sponsor",
  2902. "type": "custom"
  2903. },
  2904. {
  2905. "url": "https://www.paypal.me/colinpodell/10.00",
  2906. "type": "custom"
  2907. },
  2908. {
  2909. "url": "https://github.com/colinodell",
  2910. "type": "github"
  2911. },
  2912. {
  2913. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2914. "type": "tidelift"
  2915. }
  2916. ],
  2917. "time": "2023-08-30T16:55:00+00:00"
  2918. },
  2919. {
  2920. "name": "league/config",
  2921. "version": "v1.2.0",
  2922. "source": {
  2923. "type": "git",
  2924. "url": "https://github.com/thephpleague/config.git",
  2925. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2926. },
  2927. "dist": {
  2928. "type": "zip",
  2929. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2930. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2931. "shasum": ""
  2932. },
  2933. "require": {
  2934. "dflydev/dot-access-data": "^3.0.1",
  2935. "nette/schema": "^1.2",
  2936. "php": "^7.4 || ^8.0"
  2937. },
  2938. "require-dev": {
  2939. "phpstan/phpstan": "^1.8.2",
  2940. "phpunit/phpunit": "^9.5.5",
  2941. "scrutinizer/ocular": "^1.8.1",
  2942. "unleashedtech/php-coding-standard": "^3.1",
  2943. "vimeo/psalm": "^4.7.3"
  2944. },
  2945. "type": "library",
  2946. "extra": {
  2947. "branch-alias": {
  2948. "dev-main": "1.2-dev"
  2949. }
  2950. },
  2951. "autoload": {
  2952. "psr-4": {
  2953. "League\\Config\\": "src"
  2954. }
  2955. },
  2956. "notification-url": "https://packagist.org/downloads/",
  2957. "license": [
  2958. "BSD-3-Clause"
  2959. ],
  2960. "authors": [
  2961. {
  2962. "name": "Colin O'Dell",
  2963. "email": "colinodell@gmail.com",
  2964. "homepage": "https://www.colinodell.com",
  2965. "role": "Lead Developer"
  2966. }
  2967. ],
  2968. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2969. "homepage": "https://config.thephpleague.com",
  2970. "keywords": [
  2971. "array",
  2972. "config",
  2973. "configuration",
  2974. "dot",
  2975. "dot-access",
  2976. "nested",
  2977. "schema"
  2978. ],
  2979. "support": {
  2980. "docs": "https://config.thephpleague.com/",
  2981. "issues": "https://github.com/thephpleague/config/issues",
  2982. "rss": "https://github.com/thephpleague/config/releases.atom",
  2983. "source": "https://github.com/thephpleague/config"
  2984. },
  2985. "funding": [
  2986. {
  2987. "url": "https://www.colinodell.com/sponsor",
  2988. "type": "custom"
  2989. },
  2990. {
  2991. "url": "https://www.paypal.me/colinpodell/10.00",
  2992. "type": "custom"
  2993. },
  2994. {
  2995. "url": "https://github.com/colinodell",
  2996. "type": "github"
  2997. }
  2998. ],
  2999. "time": "2022-12-11T20:36:23+00:00"
  3000. },
  3001. {
  3002. "name": "league/flysystem",
  3003. "version": "3.16.0",
  3004. "source": {
  3005. "type": "git",
  3006. "url": "https://github.com/thephpleague/flysystem.git",
  3007. "reference": "4fdf372ca6b63c6e281b1c01a624349ccb757729"
  3008. },
  3009. "dist": {
  3010. "type": "zip",
  3011. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/4fdf372ca6b63c6e281b1c01a624349ccb757729",
  3012. "reference": "4fdf372ca6b63c6e281b1c01a624349ccb757729",
  3013. "shasum": ""
  3014. },
  3015. "require": {
  3016. "league/flysystem-local": "^3.0.0",
  3017. "league/mime-type-detection": "^1.0.0",
  3018. "php": "^8.0.2"
  3019. },
  3020. "conflict": {
  3021. "async-aws/core": "<1.19.0",
  3022. "async-aws/s3": "<1.14.0",
  3023. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3024. "guzzlehttp/guzzle": "<7.0",
  3025. "guzzlehttp/ringphp": "<1.1.1",
  3026. "phpseclib/phpseclib": "3.0.15",
  3027. "symfony/http-client": "<5.2"
  3028. },
  3029. "require-dev": {
  3030. "async-aws/s3": "^1.5",
  3031. "async-aws/simple-s3": "^1.1",
  3032. "aws/aws-sdk-php": "^3.220.0",
  3033. "composer/semver": "^3.0",
  3034. "ext-fileinfo": "*",
  3035. "ext-ftp": "*",
  3036. "ext-zip": "*",
  3037. "friendsofphp/php-cs-fixer": "^3.5",
  3038. "google/cloud-storage": "^1.23",
  3039. "microsoft/azure-storage-blob": "^1.1",
  3040. "phpseclib/phpseclib": "^3.0.14",
  3041. "phpstan/phpstan": "^0.12.26",
  3042. "phpunit/phpunit": "^9.5.11|^10.0",
  3043. "sabre/dav": "^4.3.1"
  3044. },
  3045. "type": "library",
  3046. "autoload": {
  3047. "psr-4": {
  3048. "League\\Flysystem\\": "src"
  3049. }
  3050. },
  3051. "notification-url": "https://packagist.org/downloads/",
  3052. "license": [
  3053. "MIT"
  3054. ],
  3055. "authors": [
  3056. {
  3057. "name": "Frank de Jonge",
  3058. "email": "info@frankdejonge.nl"
  3059. }
  3060. ],
  3061. "description": "File storage abstraction for PHP",
  3062. "keywords": [
  3063. "WebDAV",
  3064. "aws",
  3065. "cloud",
  3066. "file",
  3067. "files",
  3068. "filesystem",
  3069. "filesystems",
  3070. "ftp",
  3071. "s3",
  3072. "sftp",
  3073. "storage"
  3074. ],
  3075. "support": {
  3076. "issues": "https://github.com/thephpleague/flysystem/issues",
  3077. "source": "https://github.com/thephpleague/flysystem/tree/3.16.0"
  3078. },
  3079. "funding": [
  3080. {
  3081. "url": "https://ecologi.com/frankdejonge",
  3082. "type": "custom"
  3083. },
  3084. {
  3085. "url": "https://github.com/frankdejonge",
  3086. "type": "github"
  3087. }
  3088. ],
  3089. "time": "2023-09-07T19:22:17+00:00"
  3090. },
  3091. {
  3092. "name": "league/flysystem-local",
  3093. "version": "3.16.0",
  3094. "source": {
  3095. "type": "git",
  3096. "url": "https://github.com/thephpleague/flysystem-local.git",
  3097. "reference": "ec7383f25642e6fd4bb0c9554fc2311245391781"
  3098. },
  3099. "dist": {
  3100. "type": "zip",
  3101. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/ec7383f25642e6fd4bb0c9554fc2311245391781",
  3102. "reference": "ec7383f25642e6fd4bb0c9554fc2311245391781",
  3103. "shasum": ""
  3104. },
  3105. "require": {
  3106. "ext-fileinfo": "*",
  3107. "league/flysystem": "^3.0.0",
  3108. "league/mime-type-detection": "^1.0.0",
  3109. "php": "^8.0.2"
  3110. },
  3111. "type": "library",
  3112. "autoload": {
  3113. "psr-4": {
  3114. "League\\Flysystem\\Local\\": ""
  3115. }
  3116. },
  3117. "notification-url": "https://packagist.org/downloads/",
  3118. "license": [
  3119. "MIT"
  3120. ],
  3121. "authors": [
  3122. {
  3123. "name": "Frank de Jonge",
  3124. "email": "info@frankdejonge.nl"
  3125. }
  3126. ],
  3127. "description": "Local filesystem adapter for Flysystem.",
  3128. "keywords": [
  3129. "Flysystem",
  3130. "file",
  3131. "files",
  3132. "filesystem",
  3133. "local"
  3134. ],
  3135. "support": {
  3136. "issues": "https://github.com/thephpleague/flysystem-local/issues",
  3137. "source": "https://github.com/thephpleague/flysystem-local/tree/3.16.0"
  3138. },
  3139. "funding": [
  3140. {
  3141. "url": "https://ecologi.com/frankdejonge",
  3142. "type": "custom"
  3143. },
  3144. {
  3145. "url": "https://github.com/frankdejonge",
  3146. "type": "github"
  3147. }
  3148. ],
  3149. "time": "2023-08-30T10:23:59+00:00"
  3150. },
  3151. {
  3152. "name": "league/mime-type-detection",
  3153. "version": "1.13.0",
  3154. "source": {
  3155. "type": "git",
  3156. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3157. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96"
  3158. },
  3159. "dist": {
  3160. "type": "zip",
  3161. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96",
  3162. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96",
  3163. "shasum": ""
  3164. },
  3165. "require": {
  3166. "ext-fileinfo": "*",
  3167. "php": "^7.4 || ^8.0"
  3168. },
  3169. "require-dev": {
  3170. "friendsofphp/php-cs-fixer": "^3.2",
  3171. "phpstan/phpstan": "^0.12.68",
  3172. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3173. },
  3174. "type": "library",
  3175. "autoload": {
  3176. "psr-4": {
  3177. "League\\MimeTypeDetection\\": "src"
  3178. }
  3179. },
  3180. "notification-url": "https://packagist.org/downloads/",
  3181. "license": [
  3182. "MIT"
  3183. ],
  3184. "authors": [
  3185. {
  3186. "name": "Frank de Jonge",
  3187. "email": "info@frankdejonge.nl"
  3188. }
  3189. ],
  3190. "description": "Mime-type detection for Flysystem",
  3191. "support": {
  3192. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3193. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0"
  3194. },
  3195. "funding": [
  3196. {
  3197. "url": "https://github.com/frankdejonge",
  3198. "type": "github"
  3199. },
  3200. {
  3201. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3202. "type": "tidelift"
  3203. }
  3204. ],
  3205. "time": "2023-08-05T12:09:49+00:00"
  3206. },
  3207. {
  3208. "name": "league/oauth1-client",
  3209. "version": "v1.10.1",
  3210. "source": {
  3211. "type": "git",
  3212. "url": "https://github.com/thephpleague/oauth1-client.git",
  3213. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  3214. },
  3215. "dist": {
  3216. "type": "zip",
  3217. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  3218. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  3219. "shasum": ""
  3220. },
  3221. "require": {
  3222. "ext-json": "*",
  3223. "ext-openssl": "*",
  3224. "guzzlehttp/guzzle": "^6.0|^7.0",
  3225. "guzzlehttp/psr7": "^1.7|^2.0",
  3226. "php": ">=7.1||>=8.0"
  3227. },
  3228. "require-dev": {
  3229. "ext-simplexml": "*",
  3230. "friendsofphp/php-cs-fixer": "^2.17",
  3231. "mockery/mockery": "^1.3.3",
  3232. "phpstan/phpstan": "^0.12.42",
  3233. "phpunit/phpunit": "^7.5||9.5"
  3234. },
  3235. "suggest": {
  3236. "ext-simplexml": "For decoding XML-based responses."
  3237. },
  3238. "type": "library",
  3239. "extra": {
  3240. "branch-alias": {
  3241. "dev-master": "1.0-dev",
  3242. "dev-develop": "2.0-dev"
  3243. }
  3244. },
  3245. "autoload": {
  3246. "psr-4": {
  3247. "League\\OAuth1\\Client\\": "src/"
  3248. }
  3249. },
  3250. "notification-url": "https://packagist.org/downloads/",
  3251. "license": [
  3252. "MIT"
  3253. ],
  3254. "authors": [
  3255. {
  3256. "name": "Ben Corlett",
  3257. "email": "bencorlett@me.com",
  3258. "homepage": "http://www.webcomm.com.au",
  3259. "role": "Developer"
  3260. }
  3261. ],
  3262. "description": "OAuth 1.0 Client Library",
  3263. "keywords": [
  3264. "Authentication",
  3265. "SSO",
  3266. "authorization",
  3267. "bitbucket",
  3268. "identity",
  3269. "idp",
  3270. "oauth",
  3271. "oauth1",
  3272. "single sign on",
  3273. "trello",
  3274. "tumblr",
  3275. "twitter"
  3276. ],
  3277. "support": {
  3278. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  3279. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  3280. },
  3281. "time": "2022-04-15T14:02:14+00:00"
  3282. },
  3283. {
  3284. "name": "league/uri",
  3285. "version": "7.3.0",
  3286. "source": {
  3287. "type": "git",
  3288. "url": "https://github.com/thephpleague/uri.git",
  3289. "reference": "36743c3961bb82bf93da91917b6bced0358a8d45"
  3290. },
  3291. "dist": {
  3292. "type": "zip",
  3293. "url": "https://api.github.com/repos/thephpleague/uri/zipball/36743c3961bb82bf93da91917b6bced0358a8d45",
  3294. "reference": "36743c3961bb82bf93da91917b6bced0358a8d45",
  3295. "shasum": ""
  3296. },
  3297. "require": {
  3298. "league/uri-interfaces": "^7.3",
  3299. "php": "^8.1"
  3300. },
  3301. "conflict": {
  3302. "league/uri-schemes": "^1.0"
  3303. },
  3304. "suggest": {
  3305. "ext-bcmath": "to improve IPV4 host parsing",
  3306. "ext-fileinfo": "to create Data URI from file contennts",
  3307. "ext-gmp": "to improve IPV4 host parsing",
  3308. "ext-intl": "to handle IDN host with the best performance",
  3309. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  3310. "league/uri-components": "Needed to easily manipulate URI objects components",
  3311. "php-64bit": "to improve IPV4 host parsing",
  3312. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  3313. },
  3314. "type": "library",
  3315. "extra": {
  3316. "branch-alias": {
  3317. "dev-master": "7.x-dev"
  3318. }
  3319. },
  3320. "autoload": {
  3321. "psr-4": {
  3322. "League\\Uri\\": ""
  3323. }
  3324. },
  3325. "notification-url": "https://packagist.org/downloads/",
  3326. "license": [
  3327. "MIT"
  3328. ],
  3329. "authors": [
  3330. {
  3331. "name": "Ignace Nyamagana Butera",
  3332. "email": "nyamsprod@gmail.com",
  3333. "homepage": "https://nyamsprod.com"
  3334. }
  3335. ],
  3336. "description": "URI manipulation library",
  3337. "homepage": "https://uri.thephpleague.com",
  3338. "keywords": [
  3339. "data-uri",
  3340. "file-uri",
  3341. "ftp",
  3342. "hostname",
  3343. "http",
  3344. "https",
  3345. "middleware",
  3346. "parse_str",
  3347. "parse_url",
  3348. "psr-7",
  3349. "query-string",
  3350. "querystring",
  3351. "rfc3986",
  3352. "rfc3987",
  3353. "rfc6570",
  3354. "uri",
  3355. "uri-template",
  3356. "url",
  3357. "ws"
  3358. ],
  3359. "support": {
  3360. "docs": "https://uri.thephpleague.com",
  3361. "forum": "https://thephpleague.slack.com",
  3362. "issues": "https://github.com/thephpleague/uri-src/issues",
  3363. "source": "https://github.com/thephpleague/uri/tree/7.3.0"
  3364. },
  3365. "funding": [
  3366. {
  3367. "url": "https://github.com/sponsors/nyamsprod",
  3368. "type": "github"
  3369. }
  3370. ],
  3371. "time": "2023-09-09T17:21:43+00:00"
  3372. },
  3373. {
  3374. "name": "league/uri-interfaces",
  3375. "version": "7.3.0",
  3376. "source": {
  3377. "type": "git",
  3378. "url": "https://github.com/thephpleague/uri-interfaces.git",
  3379. "reference": "c409b60ed2245ff94c965a8c798a60166db53361"
  3380. },
  3381. "dist": {
  3382. "type": "zip",
  3383. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/c409b60ed2245ff94c965a8c798a60166db53361",
  3384. "reference": "c409b60ed2245ff94c965a8c798a60166db53361",
  3385. "shasum": ""
  3386. },
  3387. "require": {
  3388. "ext-filter": "*",
  3389. "php": "^8.1",
  3390. "psr/http-factory": "^1",
  3391. "psr/http-message": "^1.1 || ^2.0"
  3392. },
  3393. "suggest": {
  3394. "ext-bcmath": "to improve IPV4 host parsing",
  3395. "ext-gmp": "to improve IPV4 host parsing",
  3396. "ext-intl": "to handle IDN host with the best performance",
  3397. "php-64bit": "to improve IPV4 host parsing",
  3398. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  3399. },
  3400. "type": "library",
  3401. "extra": {
  3402. "branch-alias": {
  3403. "dev-master": "7.x-dev"
  3404. }
  3405. },
  3406. "autoload": {
  3407. "psr-4": {
  3408. "League\\Uri\\": ""
  3409. }
  3410. },
  3411. "notification-url": "https://packagist.org/downloads/",
  3412. "license": [
  3413. "MIT"
  3414. ],
  3415. "authors": [
  3416. {
  3417. "name": "Ignace Nyamagana Butera",
  3418. "email": "nyamsprod@gmail.com",
  3419. "homepage": "https://nyamsprod.com"
  3420. }
  3421. ],
  3422. "description": "Common interfaces and classes for URI representation and interaction",
  3423. "homepage": "https://uri.thephpleague.com",
  3424. "keywords": [
  3425. "data-uri",
  3426. "file-uri",
  3427. "ftp",
  3428. "hostname",
  3429. "http",
  3430. "https",
  3431. "parse_str",
  3432. "parse_url",
  3433. "psr-7",
  3434. "query-string",
  3435. "querystring",
  3436. "rfc3986",
  3437. "rfc3987",
  3438. "rfc6570",
  3439. "uri",
  3440. "url",
  3441. "ws"
  3442. ],
  3443. "support": {
  3444. "docs": "https://uri.thephpleague.com",
  3445. "forum": "https://thephpleague.slack.com",
  3446. "issues": "https://github.com/thephpleague/uri-src/issues",
  3447. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.3.0"
  3448. },
  3449. "funding": [
  3450. {
  3451. "url": "https://github.com/sponsors/nyamsprod",
  3452. "type": "github"
  3453. }
  3454. ],
  3455. "time": "2023-09-09T17:21:43+00:00"
  3456. },
  3457. {
  3458. "name": "livewire/livewire",
  3459. "version": "v3.0.5",
  3460. "source": {
  3461. "type": "git",
  3462. "url": "https://github.com/livewire/livewire.git",
  3463. "reference": "37f11583c61a75d51b2146c2fe38f506ad36014b"
  3464. },
  3465. "dist": {
  3466. "type": "zip",
  3467. "url": "https://api.github.com/repos/livewire/livewire/zipball/37f11583c61a75d51b2146c2fe38f506ad36014b",
  3468. "reference": "37f11583c61a75d51b2146c2fe38f506ad36014b",
  3469. "shasum": ""
  3470. },
  3471. "require": {
  3472. "illuminate/database": "^10.0",
  3473. "illuminate/support": "^10.0",
  3474. "illuminate/validation": "^10.0",
  3475. "league/mime-type-detection": "^1.9",
  3476. "php": "^8.1",
  3477. "symfony/http-kernel": "^5.0|^6.0"
  3478. },
  3479. "require-dev": {
  3480. "calebporzio/sushi": "^2.1",
  3481. "laravel/framework": "^10.0",
  3482. "laravel/prompts": "^0.1.6",
  3483. "mockery/mockery": "^1.3.1",
  3484. "orchestra/testbench": "^7.0|^8.0",
  3485. "orchestra/testbench-dusk": "^7.0|^8.0",
  3486. "phpunit/phpunit": "^9.0",
  3487. "psy/psysh": "@stable"
  3488. },
  3489. "type": "library",
  3490. "extra": {
  3491. "laravel": {
  3492. "providers": [
  3493. "Livewire\\LivewireServiceProvider"
  3494. ],
  3495. "aliases": {
  3496. "Livewire": "Livewire\\Livewire"
  3497. }
  3498. }
  3499. },
  3500. "autoload": {
  3501. "files": [
  3502. "src/helpers.php"
  3503. ],
  3504. "psr-4": {
  3505. "Livewire\\": "src/"
  3506. }
  3507. },
  3508. "notification-url": "https://packagist.org/downloads/",
  3509. "license": [
  3510. "MIT"
  3511. ],
  3512. "authors": [
  3513. {
  3514. "name": "Caleb Porzio",
  3515. "email": "calebporzio@gmail.com"
  3516. }
  3517. ],
  3518. "description": "A front-end framework for Laravel.",
  3519. "support": {
  3520. "issues": "https://github.com/livewire/livewire/issues",
  3521. "source": "https://github.com/livewire/livewire/tree/v3.0.5"
  3522. },
  3523. "funding": [
  3524. {
  3525. "url": "https://github.com/livewire",
  3526. "type": "github"
  3527. }
  3528. ],
  3529. "time": "2023-09-16T11:51:32+00:00"
  3530. },
  3531. {
  3532. "name": "masterminds/html5",
  3533. "version": "2.8.1",
  3534. "source": {
  3535. "type": "git",
  3536. "url": "https://github.com/Masterminds/html5-php.git",
  3537. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  3538. },
  3539. "dist": {
  3540. "type": "zip",
  3541. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  3542. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  3543. "shasum": ""
  3544. },
  3545. "require": {
  3546. "ext-dom": "*",
  3547. "php": ">=5.3.0"
  3548. },
  3549. "require-dev": {
  3550. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  3551. },
  3552. "type": "library",
  3553. "extra": {
  3554. "branch-alias": {
  3555. "dev-master": "2.7-dev"
  3556. }
  3557. },
  3558. "autoload": {
  3559. "psr-4": {
  3560. "Masterminds\\": "src"
  3561. }
  3562. },
  3563. "notification-url": "https://packagist.org/downloads/",
  3564. "license": [
  3565. "MIT"
  3566. ],
  3567. "authors": [
  3568. {
  3569. "name": "Matt Butcher",
  3570. "email": "technosophos@gmail.com"
  3571. },
  3572. {
  3573. "name": "Matt Farina",
  3574. "email": "matt@mattfarina.com"
  3575. },
  3576. {
  3577. "name": "Asmir Mustafic",
  3578. "email": "goetas@gmail.com"
  3579. }
  3580. ],
  3581. "description": "An HTML5 parser and serializer.",
  3582. "homepage": "http://masterminds.github.io/html5-php",
  3583. "keywords": [
  3584. "HTML5",
  3585. "dom",
  3586. "html",
  3587. "parser",
  3588. "querypath",
  3589. "serializer",
  3590. "xml"
  3591. ],
  3592. "support": {
  3593. "issues": "https://github.com/Masterminds/html5-php/issues",
  3594. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  3595. },
  3596. "time": "2023-05-10T11:58:31+00:00"
  3597. },
  3598. {
  3599. "name": "matomo/device-detector",
  3600. "version": "6.1.5",
  3601. "source": {
  3602. "type": "git",
  3603. "url": "https://github.com/matomo-org/device-detector.git",
  3604. "reference": "40ca2990dba2c1719e5c62168e822e0b86c167d4"
  3605. },
  3606. "dist": {
  3607. "type": "zip",
  3608. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/40ca2990dba2c1719e5c62168e822e0b86c167d4",
  3609. "reference": "40ca2990dba2c1719e5c62168e822e0b86c167d4",
  3610. "shasum": ""
  3611. },
  3612. "require": {
  3613. "mustangostang/spyc": "*",
  3614. "php": "^7.2|^8.0"
  3615. },
  3616. "replace": {
  3617. "piwik/device-detector": "self.version"
  3618. },
  3619. "require-dev": {
  3620. "matthiasmullie/scrapbook": "^1.4.7",
  3621. "mayflower/mo4-coding-standard": "^v8.0.0",
  3622. "phpstan/phpstan": "^0.12.52",
  3623. "phpunit/phpunit": "^8.5.8",
  3624. "psr/cache": "^1.0.1",
  3625. "psr/simple-cache": "^1.0.1",
  3626. "symfony/yaml": "^5.1.7"
  3627. },
  3628. "suggest": {
  3629. "doctrine/cache": "Can directly be used for caching purpose",
  3630. "ext-yaml": "Necessary for using the Pecl YAML parser"
  3631. },
  3632. "type": "library",
  3633. "autoload": {
  3634. "psr-4": {
  3635. "DeviceDetector\\": ""
  3636. },
  3637. "exclude-from-classmap": [
  3638. "Tests/"
  3639. ]
  3640. },
  3641. "notification-url": "https://packagist.org/downloads/",
  3642. "license": [
  3643. "LGPL-3.0-or-later"
  3644. ],
  3645. "authors": [
  3646. {
  3647. "name": "The Matomo Team",
  3648. "email": "hello@matomo.org",
  3649. "homepage": "https://matomo.org/team/"
  3650. }
  3651. ],
  3652. "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.",
  3653. "homepage": "https://matomo.org",
  3654. "keywords": [
  3655. "devicedetection",
  3656. "parser",
  3657. "useragent"
  3658. ],
  3659. "support": {
  3660. "forum": "https://forum.matomo.org/",
  3661. "issues": "https://github.com/matomo-org/device-detector/issues",
  3662. "source": "https://github.com/matomo-org/matomo",
  3663. "wiki": "https://dev.matomo.org/"
  3664. },
  3665. "time": "2023-08-17T16:17:41+00:00"
  3666. },
  3667. {
  3668. "name": "monolog/monolog",
  3669. "version": "3.4.0",
  3670. "source": {
  3671. "type": "git",
  3672. "url": "https://github.com/Seldaek/monolog.git",
  3673. "reference": "e2392369686d420ca32df3803de28b5d6f76867d"
  3674. },
  3675. "dist": {
  3676. "type": "zip",
  3677. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e2392369686d420ca32df3803de28b5d6f76867d",
  3678. "reference": "e2392369686d420ca32df3803de28b5d6f76867d",
  3679. "shasum": ""
  3680. },
  3681. "require": {
  3682. "php": ">=8.1",
  3683. "psr/log": "^2.0 || ^3.0"
  3684. },
  3685. "provide": {
  3686. "psr/log-implementation": "3.0.0"
  3687. },
  3688. "require-dev": {
  3689. "aws/aws-sdk-php": "^3.0",
  3690. "doctrine/couchdb": "~1.0@dev",
  3691. "elasticsearch/elasticsearch": "^7 || ^8",
  3692. "ext-json": "*",
  3693. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  3694. "guzzlehttp/guzzle": "^7.4.5",
  3695. "guzzlehttp/psr7": "^2.2",
  3696. "mongodb/mongodb": "^1.8",
  3697. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3698. "phpstan/phpstan": "^1.9",
  3699. "phpstan/phpstan-deprecation-rules": "^1.0",
  3700. "phpstan/phpstan-strict-rules": "^1.4",
  3701. "phpunit/phpunit": "^10.1",
  3702. "predis/predis": "^1.1 || ^2",
  3703. "ruflin/elastica": "^7",
  3704. "symfony/mailer": "^5.4 || ^6",
  3705. "symfony/mime": "^5.4 || ^6"
  3706. },
  3707. "suggest": {
  3708. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3709. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3710. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3711. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3712. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3713. "ext-mbstring": "Allow to work properly with unicode symbols",
  3714. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3715. "ext-openssl": "Required to send log messages using SSL",
  3716. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3717. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3718. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3719. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3720. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3721. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3722. },
  3723. "type": "library",
  3724. "extra": {
  3725. "branch-alias": {
  3726. "dev-main": "3.x-dev"
  3727. }
  3728. },
  3729. "autoload": {
  3730. "psr-4": {
  3731. "Monolog\\": "src/Monolog"
  3732. }
  3733. },
  3734. "notification-url": "https://packagist.org/downloads/",
  3735. "license": [
  3736. "MIT"
  3737. ],
  3738. "authors": [
  3739. {
  3740. "name": "Jordi Boggiano",
  3741. "email": "j.boggiano@seld.be",
  3742. "homepage": "https://seld.be"
  3743. }
  3744. ],
  3745. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3746. "homepage": "https://github.com/Seldaek/monolog",
  3747. "keywords": [
  3748. "log",
  3749. "logging",
  3750. "psr-3"
  3751. ],
  3752. "support": {
  3753. "issues": "https://github.com/Seldaek/monolog/issues",
  3754. "source": "https://github.com/Seldaek/monolog/tree/3.4.0"
  3755. },
  3756. "funding": [
  3757. {
  3758. "url": "https://github.com/Seldaek",
  3759. "type": "github"
  3760. },
  3761. {
  3762. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3763. "type": "tidelift"
  3764. }
  3765. ],
  3766. "time": "2023-06-21T08:46:11+00:00"
  3767. },
  3768. {
  3769. "name": "mustangostang/spyc",
  3770. "version": "0.6.3",
  3771. "source": {
  3772. "type": "git",
  3773. "url": "git@github.com:mustangostang/spyc.git",
  3774. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  3775. },
  3776. "dist": {
  3777. "type": "zip",
  3778. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  3779. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  3780. "shasum": ""
  3781. },
  3782. "require": {
  3783. "php": ">=5.3.1"
  3784. },
  3785. "require-dev": {
  3786. "phpunit/phpunit": "4.3.*@dev"
  3787. },
  3788. "type": "library",
  3789. "extra": {
  3790. "branch-alias": {
  3791. "dev-master": "0.5.x-dev"
  3792. }
  3793. },
  3794. "autoload": {
  3795. "files": [
  3796. "Spyc.php"
  3797. ]
  3798. },
  3799. "notification-url": "https://packagist.org/downloads/",
  3800. "license": [
  3801. "MIT"
  3802. ],
  3803. "authors": [
  3804. {
  3805. "name": "mustangostang",
  3806. "email": "vlad.andersen@gmail.com"
  3807. }
  3808. ],
  3809. "description": "A simple YAML loader/dumper class for PHP",
  3810. "homepage": "https://github.com/mustangostang/spyc/",
  3811. "keywords": [
  3812. "spyc",
  3813. "yaml",
  3814. "yml"
  3815. ],
  3816. "time": "2019-09-10T13:16:29+00:00"
  3817. },
  3818. {
  3819. "name": "nesbot/carbon",
  3820. "version": "2.70.0",
  3821. "source": {
  3822. "type": "git",
  3823. "url": "https://github.com/briannesbitt/Carbon.git",
  3824. "reference": "d3298b38ea8612e5f77d38d1a99438e42f70341d"
  3825. },
  3826. "dist": {
  3827. "type": "zip",
  3828. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d3298b38ea8612e5f77d38d1a99438e42f70341d",
  3829. "reference": "d3298b38ea8612e5f77d38d1a99438e42f70341d",
  3830. "shasum": ""
  3831. },
  3832. "require": {
  3833. "ext-json": "*",
  3834. "php": "^7.1.8 || ^8.0",
  3835. "psr/clock": "^1.0",
  3836. "symfony/polyfill-mbstring": "^1.0",
  3837. "symfony/polyfill-php80": "^1.16",
  3838. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3839. },
  3840. "provide": {
  3841. "psr/clock-implementation": "1.0"
  3842. },
  3843. "require-dev": {
  3844. "doctrine/dbal": "^2.0 || ^3.1.4",
  3845. "doctrine/orm": "^2.7",
  3846. "friendsofphp/php-cs-fixer": "^3.0",
  3847. "kylekatarnls/multi-tester": "^2.0",
  3848. "ondrejmirtes/better-reflection": "*",
  3849. "phpmd/phpmd": "^2.9",
  3850. "phpstan/extension-installer": "^1.0",
  3851. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3852. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3853. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3854. "squizlabs/php_codesniffer": "^3.4"
  3855. },
  3856. "bin": [
  3857. "bin/carbon"
  3858. ],
  3859. "type": "library",
  3860. "extra": {
  3861. "branch-alias": {
  3862. "dev-3.x": "3.x-dev",
  3863. "dev-master": "2.x-dev"
  3864. },
  3865. "laravel": {
  3866. "providers": [
  3867. "Carbon\\Laravel\\ServiceProvider"
  3868. ]
  3869. },
  3870. "phpstan": {
  3871. "includes": [
  3872. "extension.neon"
  3873. ]
  3874. }
  3875. },
  3876. "autoload": {
  3877. "psr-4": {
  3878. "Carbon\\": "src/Carbon/"
  3879. }
  3880. },
  3881. "notification-url": "https://packagist.org/downloads/",
  3882. "license": [
  3883. "MIT"
  3884. ],
  3885. "authors": [
  3886. {
  3887. "name": "Brian Nesbitt",
  3888. "email": "brian@nesbot.com",
  3889. "homepage": "https://markido.com"
  3890. },
  3891. {
  3892. "name": "kylekatarnls",
  3893. "homepage": "https://github.com/kylekatarnls"
  3894. }
  3895. ],
  3896. "description": "An API extension for DateTime that supports 281 different languages.",
  3897. "homepage": "https://carbon.nesbot.com",
  3898. "keywords": [
  3899. "date",
  3900. "datetime",
  3901. "time"
  3902. ],
  3903. "support": {
  3904. "docs": "https://carbon.nesbot.com/docs",
  3905. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3906. "source": "https://github.com/briannesbitt/Carbon"
  3907. },
  3908. "funding": [
  3909. {
  3910. "url": "https://github.com/sponsors/kylekatarnls",
  3911. "type": "github"
  3912. },
  3913. {
  3914. "url": "https://opencollective.com/Carbon#sponsor",
  3915. "type": "opencollective"
  3916. },
  3917. {
  3918. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3919. "type": "tidelift"
  3920. }
  3921. ],
  3922. "time": "2023-09-07T16:43:50+00:00"
  3923. },
  3924. {
  3925. "name": "nette/schema",
  3926. "version": "v1.2.4",
  3927. "source": {
  3928. "type": "git",
  3929. "url": "https://github.com/nette/schema.git",
  3930. "reference": "c9ff517a53903b3d4e29ec547fb20feecb05b8ab"
  3931. },
  3932. "dist": {
  3933. "type": "zip",
  3934. "url": "https://api.github.com/repos/nette/schema/zipball/c9ff517a53903b3d4e29ec547fb20feecb05b8ab",
  3935. "reference": "c9ff517a53903b3d4e29ec547fb20feecb05b8ab",
  3936. "shasum": ""
  3937. },
  3938. "require": {
  3939. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3940. "php": "7.1 - 8.3"
  3941. },
  3942. "require-dev": {
  3943. "nette/tester": "^2.3 || ^2.4",
  3944. "phpstan/phpstan-nette": "^1.0",
  3945. "tracy/tracy": "^2.7"
  3946. },
  3947. "type": "library",
  3948. "extra": {
  3949. "branch-alias": {
  3950. "dev-master": "1.2-dev"
  3951. }
  3952. },
  3953. "autoload": {
  3954. "classmap": [
  3955. "src/"
  3956. ]
  3957. },
  3958. "notification-url": "https://packagist.org/downloads/",
  3959. "license": [
  3960. "BSD-3-Clause",
  3961. "GPL-2.0-only",
  3962. "GPL-3.0-only"
  3963. ],
  3964. "authors": [
  3965. {
  3966. "name": "David Grudl",
  3967. "homepage": "https://davidgrudl.com"
  3968. },
  3969. {
  3970. "name": "Nette Community",
  3971. "homepage": "https://nette.org/contributors"
  3972. }
  3973. ],
  3974. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3975. "homepage": "https://nette.org",
  3976. "keywords": [
  3977. "config",
  3978. "nette"
  3979. ],
  3980. "support": {
  3981. "issues": "https://github.com/nette/schema/issues",
  3982. "source": "https://github.com/nette/schema/tree/v1.2.4"
  3983. },
  3984. "time": "2023-08-05T18:56:25+00:00"
  3985. },
  3986. {
  3987. "name": "nette/utils",
  3988. "version": "v4.0.2",
  3989. "source": {
  3990. "type": "git",
  3991. "url": "https://github.com/nette/utils.git",
  3992. "reference": "cead6637226456b35e1175cc53797dd585d85545"
  3993. },
  3994. "dist": {
  3995. "type": "zip",
  3996. "url": "https://api.github.com/repos/nette/utils/zipball/cead6637226456b35e1175cc53797dd585d85545",
  3997. "reference": "cead6637226456b35e1175cc53797dd585d85545",
  3998. "shasum": ""
  3999. },
  4000. "require": {
  4001. "php": ">=8.0 <8.4"
  4002. },
  4003. "conflict": {
  4004. "nette/finder": "<3",
  4005. "nette/schema": "<1.2.2"
  4006. },
  4007. "require-dev": {
  4008. "jetbrains/phpstorm-attributes": "dev-master",
  4009. "nette/tester": "^2.5",
  4010. "phpstan/phpstan": "^1.0",
  4011. "tracy/tracy": "^2.9"
  4012. },
  4013. "suggest": {
  4014. "ext-gd": "to use Image",
  4015. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4016. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4017. "ext-json": "to use Nette\\Utils\\Json",
  4018. "ext-mbstring": "to use Strings::lower() etc...",
  4019. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  4020. },
  4021. "type": "library",
  4022. "extra": {
  4023. "branch-alias": {
  4024. "dev-master": "4.0-dev"
  4025. }
  4026. },
  4027. "autoload": {
  4028. "classmap": [
  4029. "src/"
  4030. ]
  4031. },
  4032. "notification-url": "https://packagist.org/downloads/",
  4033. "license": [
  4034. "BSD-3-Clause",
  4035. "GPL-2.0-only",
  4036. "GPL-3.0-only"
  4037. ],
  4038. "authors": [
  4039. {
  4040. "name": "David Grudl",
  4041. "homepage": "https://davidgrudl.com"
  4042. },
  4043. {
  4044. "name": "Nette Community",
  4045. "homepage": "https://nette.org/contributors"
  4046. }
  4047. ],
  4048. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4049. "homepage": "https://nette.org",
  4050. "keywords": [
  4051. "array",
  4052. "core",
  4053. "datetime",
  4054. "images",
  4055. "json",
  4056. "nette",
  4057. "paginator",
  4058. "password",
  4059. "slugify",
  4060. "string",
  4061. "unicode",
  4062. "utf-8",
  4063. "utility",
  4064. "validation"
  4065. ],
  4066. "support": {
  4067. "issues": "https://github.com/nette/utils/issues",
  4068. "source": "https://github.com/nette/utils/tree/v4.0.2"
  4069. },
  4070. "time": "2023-09-19T11:58:07+00:00"
  4071. },
  4072. {
  4073. "name": "nikic/php-parser",
  4074. "version": "v4.17.1",
  4075. "source": {
  4076. "type": "git",
  4077. "url": "https://github.com/nikic/PHP-Parser.git",
  4078. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
  4079. },
  4080. "dist": {
  4081. "type": "zip",
  4082. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  4083. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  4084. "shasum": ""
  4085. },
  4086. "require": {
  4087. "ext-tokenizer": "*",
  4088. "php": ">=7.0"
  4089. },
  4090. "require-dev": {
  4091. "ircmaxell/php-yacc": "^0.0.7",
  4092. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4093. },
  4094. "bin": [
  4095. "bin/php-parse"
  4096. ],
  4097. "type": "library",
  4098. "extra": {
  4099. "branch-alias": {
  4100. "dev-master": "4.9-dev"
  4101. }
  4102. },
  4103. "autoload": {
  4104. "psr-4": {
  4105. "PhpParser\\": "lib/PhpParser"
  4106. }
  4107. },
  4108. "notification-url": "https://packagist.org/downloads/",
  4109. "license": [
  4110. "BSD-3-Clause"
  4111. ],
  4112. "authors": [
  4113. {
  4114. "name": "Nikita Popov"
  4115. }
  4116. ],
  4117. "description": "A PHP parser written in PHP",
  4118. "keywords": [
  4119. "parser",
  4120. "php"
  4121. ],
  4122. "support": {
  4123. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4124. "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
  4125. },
  4126. "time": "2023-08-13T19:53:39+00:00"
  4127. },
  4128. {
  4129. "name": "nunomaduro/termwind",
  4130. "version": "v1.15.1",
  4131. "source": {
  4132. "type": "git",
  4133. "url": "https://github.com/nunomaduro/termwind.git",
  4134. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  4135. },
  4136. "dist": {
  4137. "type": "zip",
  4138. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  4139. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  4140. "shasum": ""
  4141. },
  4142. "require": {
  4143. "ext-mbstring": "*",
  4144. "php": "^8.0",
  4145. "symfony/console": "^5.3.0|^6.0.0"
  4146. },
  4147. "require-dev": {
  4148. "ergebnis/phpstan-rules": "^1.0.",
  4149. "illuminate/console": "^8.0|^9.0",
  4150. "illuminate/support": "^8.0|^9.0",
  4151. "laravel/pint": "^1.0.0",
  4152. "pestphp/pest": "^1.21.0",
  4153. "pestphp/pest-plugin-mock": "^1.0",
  4154. "phpstan/phpstan": "^1.4.6",
  4155. "phpstan/phpstan-strict-rules": "^1.1.0",
  4156. "symfony/var-dumper": "^5.2.7|^6.0.0",
  4157. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  4158. },
  4159. "type": "library",
  4160. "extra": {
  4161. "laravel": {
  4162. "providers": [
  4163. "Termwind\\Laravel\\TermwindServiceProvider"
  4164. ]
  4165. }
  4166. },
  4167. "autoload": {
  4168. "files": [
  4169. "src/Functions.php"
  4170. ],
  4171. "psr-4": {
  4172. "Termwind\\": "src/"
  4173. }
  4174. },
  4175. "notification-url": "https://packagist.org/downloads/",
  4176. "license": [
  4177. "MIT"
  4178. ],
  4179. "authors": [
  4180. {
  4181. "name": "Nuno Maduro",
  4182. "email": "enunomaduro@gmail.com"
  4183. }
  4184. ],
  4185. "description": "Its like Tailwind CSS, but for the console.",
  4186. "keywords": [
  4187. "cli",
  4188. "console",
  4189. "css",
  4190. "package",
  4191. "php",
  4192. "style"
  4193. ],
  4194. "support": {
  4195. "issues": "https://github.com/nunomaduro/termwind/issues",
  4196. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  4197. },
  4198. "funding": [
  4199. {
  4200. "url": "https://www.paypal.com/paypalme/enunomaduro",
  4201. "type": "custom"
  4202. },
  4203. {
  4204. "url": "https://github.com/nunomaduro",
  4205. "type": "github"
  4206. },
  4207. {
  4208. "url": "https://github.com/xiCO2k",
  4209. "type": "github"
  4210. }
  4211. ],
  4212. "time": "2023-02-08T01:06:31+00:00"
  4213. },
  4214. {
  4215. "name": "phpoption/phpoption",
  4216. "version": "1.9.1",
  4217. "source": {
  4218. "type": "git",
  4219. "url": "https://github.com/schmittjoh/php-option.git",
  4220. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  4221. },
  4222. "dist": {
  4223. "type": "zip",
  4224. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  4225. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  4226. "shasum": ""
  4227. },
  4228. "require": {
  4229. "php": "^7.2.5 || ^8.0"
  4230. },
  4231. "require-dev": {
  4232. "bamarni/composer-bin-plugin": "^1.8.2",
  4233. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  4234. },
  4235. "type": "library",
  4236. "extra": {
  4237. "bamarni-bin": {
  4238. "bin-links": true,
  4239. "forward-command": true
  4240. },
  4241. "branch-alias": {
  4242. "dev-master": "1.9-dev"
  4243. }
  4244. },
  4245. "autoload": {
  4246. "psr-4": {
  4247. "PhpOption\\": "src/PhpOption/"
  4248. }
  4249. },
  4250. "notification-url": "https://packagist.org/downloads/",
  4251. "license": [
  4252. "Apache-2.0"
  4253. ],
  4254. "authors": [
  4255. {
  4256. "name": "Johannes M. Schmitt",
  4257. "email": "schmittjoh@gmail.com",
  4258. "homepage": "https://github.com/schmittjoh"
  4259. },
  4260. {
  4261. "name": "Graham Campbell",
  4262. "email": "hello@gjcampbell.co.uk",
  4263. "homepage": "https://github.com/GrahamCampbell"
  4264. }
  4265. ],
  4266. "description": "Option Type for PHP",
  4267. "keywords": [
  4268. "language",
  4269. "option",
  4270. "php",
  4271. "type"
  4272. ],
  4273. "support": {
  4274. "issues": "https://github.com/schmittjoh/php-option/issues",
  4275. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  4276. },
  4277. "funding": [
  4278. {
  4279. "url": "https://github.com/GrahamCampbell",
  4280. "type": "github"
  4281. },
  4282. {
  4283. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4284. "type": "tidelift"
  4285. }
  4286. ],
  4287. "time": "2023-02-25T19:38:58+00:00"
  4288. },
  4289. {
  4290. "name": "psr/cache",
  4291. "version": "3.0.0",
  4292. "source": {
  4293. "type": "git",
  4294. "url": "https://github.com/php-fig/cache.git",
  4295. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4296. },
  4297. "dist": {
  4298. "type": "zip",
  4299. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4300. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4301. "shasum": ""
  4302. },
  4303. "require": {
  4304. "php": ">=8.0.0"
  4305. },
  4306. "type": "library",
  4307. "extra": {
  4308. "branch-alias": {
  4309. "dev-master": "1.0.x-dev"
  4310. }
  4311. },
  4312. "autoload": {
  4313. "psr-4": {
  4314. "Psr\\Cache\\": "src/"
  4315. }
  4316. },
  4317. "notification-url": "https://packagist.org/downloads/",
  4318. "license": [
  4319. "MIT"
  4320. ],
  4321. "authors": [
  4322. {
  4323. "name": "PHP-FIG",
  4324. "homepage": "https://www.php-fig.org/"
  4325. }
  4326. ],
  4327. "description": "Common interface for caching libraries",
  4328. "keywords": [
  4329. "cache",
  4330. "psr",
  4331. "psr-6"
  4332. ],
  4333. "support": {
  4334. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4335. },
  4336. "time": "2021-02-03T23:26:27+00:00"
  4337. },
  4338. {
  4339. "name": "psr/clock",
  4340. "version": "1.0.0",
  4341. "source": {
  4342. "type": "git",
  4343. "url": "https://github.com/php-fig/clock.git",
  4344. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4345. },
  4346. "dist": {
  4347. "type": "zip",
  4348. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4349. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4350. "shasum": ""
  4351. },
  4352. "require": {
  4353. "php": "^7.0 || ^8.0"
  4354. },
  4355. "type": "library",
  4356. "autoload": {
  4357. "psr-4": {
  4358. "Psr\\Clock\\": "src/"
  4359. }
  4360. },
  4361. "notification-url": "https://packagist.org/downloads/",
  4362. "license": [
  4363. "MIT"
  4364. ],
  4365. "authors": [
  4366. {
  4367. "name": "PHP-FIG",
  4368. "homepage": "https://www.php-fig.org/"
  4369. }
  4370. ],
  4371. "description": "Common interface for reading the clock.",
  4372. "homepage": "https://github.com/php-fig/clock",
  4373. "keywords": [
  4374. "clock",
  4375. "now",
  4376. "psr",
  4377. "psr-20",
  4378. "time"
  4379. ],
  4380. "support": {
  4381. "issues": "https://github.com/php-fig/clock/issues",
  4382. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4383. },
  4384. "time": "2022-11-25T14:36:26+00:00"
  4385. },
  4386. {
  4387. "name": "psr/container",
  4388. "version": "2.0.2",
  4389. "source": {
  4390. "type": "git",
  4391. "url": "https://github.com/php-fig/container.git",
  4392. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4393. },
  4394. "dist": {
  4395. "type": "zip",
  4396. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4397. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4398. "shasum": ""
  4399. },
  4400. "require": {
  4401. "php": ">=7.4.0"
  4402. },
  4403. "type": "library",
  4404. "extra": {
  4405. "branch-alias": {
  4406. "dev-master": "2.0.x-dev"
  4407. }
  4408. },
  4409. "autoload": {
  4410. "psr-4": {
  4411. "Psr\\Container\\": "src/"
  4412. }
  4413. },
  4414. "notification-url": "https://packagist.org/downloads/",
  4415. "license": [
  4416. "MIT"
  4417. ],
  4418. "authors": [
  4419. {
  4420. "name": "PHP-FIG",
  4421. "homepage": "https://www.php-fig.org/"
  4422. }
  4423. ],
  4424. "description": "Common Container Interface (PHP FIG PSR-11)",
  4425. "homepage": "https://github.com/php-fig/container",
  4426. "keywords": [
  4427. "PSR-11",
  4428. "container",
  4429. "container-interface",
  4430. "container-interop",
  4431. "psr"
  4432. ],
  4433. "support": {
  4434. "issues": "https://github.com/php-fig/container/issues",
  4435. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4436. },
  4437. "time": "2021-11-05T16:47:00+00:00"
  4438. },
  4439. {
  4440. "name": "psr/event-dispatcher",
  4441. "version": "1.0.0",
  4442. "source": {
  4443. "type": "git",
  4444. "url": "https://github.com/php-fig/event-dispatcher.git",
  4445. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4446. },
  4447. "dist": {
  4448. "type": "zip",
  4449. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4450. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4451. "shasum": ""
  4452. },
  4453. "require": {
  4454. "php": ">=7.2.0"
  4455. },
  4456. "type": "library",
  4457. "extra": {
  4458. "branch-alias": {
  4459. "dev-master": "1.0.x-dev"
  4460. }
  4461. },
  4462. "autoload": {
  4463. "psr-4": {
  4464. "Psr\\EventDispatcher\\": "src/"
  4465. }
  4466. },
  4467. "notification-url": "https://packagist.org/downloads/",
  4468. "license": [
  4469. "MIT"
  4470. ],
  4471. "authors": [
  4472. {
  4473. "name": "PHP-FIG",
  4474. "homepage": "http://www.php-fig.org/"
  4475. }
  4476. ],
  4477. "description": "Standard interfaces for event handling.",
  4478. "keywords": [
  4479. "events",
  4480. "psr",
  4481. "psr-14"
  4482. ],
  4483. "support": {
  4484. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4485. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4486. },
  4487. "time": "2019-01-08T18:20:26+00:00"
  4488. },
  4489. {
  4490. "name": "psr/http-client",
  4491. "version": "1.0.2",
  4492. "source": {
  4493. "type": "git",
  4494. "url": "https://github.com/php-fig/http-client.git",
  4495. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
  4496. },
  4497. "dist": {
  4498. "type": "zip",
  4499. "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  4500. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  4501. "shasum": ""
  4502. },
  4503. "require": {
  4504. "php": "^7.0 || ^8.0",
  4505. "psr/http-message": "^1.0 || ^2.0"
  4506. },
  4507. "type": "library",
  4508. "extra": {
  4509. "branch-alias": {
  4510. "dev-master": "1.0.x-dev"
  4511. }
  4512. },
  4513. "autoload": {
  4514. "psr-4": {
  4515. "Psr\\Http\\Client\\": "src/"
  4516. }
  4517. },
  4518. "notification-url": "https://packagist.org/downloads/",
  4519. "license": [
  4520. "MIT"
  4521. ],
  4522. "authors": [
  4523. {
  4524. "name": "PHP-FIG",
  4525. "homepage": "https://www.php-fig.org/"
  4526. }
  4527. ],
  4528. "description": "Common interface for HTTP clients",
  4529. "homepage": "https://github.com/php-fig/http-client",
  4530. "keywords": [
  4531. "http",
  4532. "http-client",
  4533. "psr",
  4534. "psr-18"
  4535. ],
  4536. "support": {
  4537. "source": "https://github.com/php-fig/http-client/tree/1.0.2"
  4538. },
  4539. "time": "2023-04-10T20:12:12+00:00"
  4540. },
  4541. {
  4542. "name": "psr/http-factory",
  4543. "version": "1.0.2",
  4544. "source": {
  4545. "type": "git",
  4546. "url": "https://github.com/php-fig/http-factory.git",
  4547. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4548. },
  4549. "dist": {
  4550. "type": "zip",
  4551. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4552. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4553. "shasum": ""
  4554. },
  4555. "require": {
  4556. "php": ">=7.0.0",
  4557. "psr/http-message": "^1.0 || ^2.0"
  4558. },
  4559. "type": "library",
  4560. "extra": {
  4561. "branch-alias": {
  4562. "dev-master": "1.0.x-dev"
  4563. }
  4564. },
  4565. "autoload": {
  4566. "psr-4": {
  4567. "Psr\\Http\\Message\\": "src/"
  4568. }
  4569. },
  4570. "notification-url": "https://packagist.org/downloads/",
  4571. "license": [
  4572. "MIT"
  4573. ],
  4574. "authors": [
  4575. {
  4576. "name": "PHP-FIG",
  4577. "homepage": "https://www.php-fig.org/"
  4578. }
  4579. ],
  4580. "description": "Common interfaces for PSR-7 HTTP message factories",
  4581. "keywords": [
  4582. "factory",
  4583. "http",
  4584. "message",
  4585. "psr",
  4586. "psr-17",
  4587. "psr-7",
  4588. "request",
  4589. "response"
  4590. ],
  4591. "support": {
  4592. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4593. },
  4594. "time": "2023-04-10T20:10:41+00:00"
  4595. },
  4596. {
  4597. "name": "psr/http-message",
  4598. "version": "2.0",
  4599. "source": {
  4600. "type": "git",
  4601. "url": "https://github.com/php-fig/http-message.git",
  4602. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4603. },
  4604. "dist": {
  4605. "type": "zip",
  4606. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4607. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4608. "shasum": ""
  4609. },
  4610. "require": {
  4611. "php": "^7.2 || ^8.0"
  4612. },
  4613. "type": "library",
  4614. "extra": {
  4615. "branch-alias": {
  4616. "dev-master": "2.0.x-dev"
  4617. }
  4618. },
  4619. "autoload": {
  4620. "psr-4": {
  4621. "Psr\\Http\\Message\\": "src/"
  4622. }
  4623. },
  4624. "notification-url": "https://packagist.org/downloads/",
  4625. "license": [
  4626. "MIT"
  4627. ],
  4628. "authors": [
  4629. {
  4630. "name": "PHP-FIG",
  4631. "homepage": "https://www.php-fig.org/"
  4632. }
  4633. ],
  4634. "description": "Common interface for HTTP messages",
  4635. "homepage": "https://github.com/php-fig/http-message",
  4636. "keywords": [
  4637. "http",
  4638. "http-message",
  4639. "psr",
  4640. "psr-7",
  4641. "request",
  4642. "response"
  4643. ],
  4644. "support": {
  4645. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4646. },
  4647. "time": "2023-04-04T09:54:51+00:00"
  4648. },
  4649. {
  4650. "name": "psr/log",
  4651. "version": "3.0.0",
  4652. "source": {
  4653. "type": "git",
  4654. "url": "https://github.com/php-fig/log.git",
  4655. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  4656. },
  4657. "dist": {
  4658. "type": "zip",
  4659. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4660. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4661. "shasum": ""
  4662. },
  4663. "require": {
  4664. "php": ">=8.0.0"
  4665. },
  4666. "type": "library",
  4667. "extra": {
  4668. "branch-alias": {
  4669. "dev-master": "3.x-dev"
  4670. }
  4671. },
  4672. "autoload": {
  4673. "psr-4": {
  4674. "Psr\\Log\\": "src"
  4675. }
  4676. },
  4677. "notification-url": "https://packagist.org/downloads/",
  4678. "license": [
  4679. "MIT"
  4680. ],
  4681. "authors": [
  4682. {
  4683. "name": "PHP-FIG",
  4684. "homepage": "https://www.php-fig.org/"
  4685. }
  4686. ],
  4687. "description": "Common interface for logging libraries",
  4688. "homepage": "https://github.com/php-fig/log",
  4689. "keywords": [
  4690. "log",
  4691. "psr",
  4692. "psr-3"
  4693. ],
  4694. "support": {
  4695. "source": "https://github.com/php-fig/log/tree/3.0.0"
  4696. },
  4697. "time": "2021-07-14T16:46:02+00:00"
  4698. },
  4699. {
  4700. "name": "psr/simple-cache",
  4701. "version": "3.0.0",
  4702. "source": {
  4703. "type": "git",
  4704. "url": "https://github.com/php-fig/simple-cache.git",
  4705. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4706. },
  4707. "dist": {
  4708. "type": "zip",
  4709. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4710. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4711. "shasum": ""
  4712. },
  4713. "require": {
  4714. "php": ">=8.0.0"
  4715. },
  4716. "type": "library",
  4717. "extra": {
  4718. "branch-alias": {
  4719. "dev-master": "3.0.x-dev"
  4720. }
  4721. },
  4722. "autoload": {
  4723. "psr-4": {
  4724. "Psr\\SimpleCache\\": "src/"
  4725. }
  4726. },
  4727. "notification-url": "https://packagist.org/downloads/",
  4728. "license": [
  4729. "MIT"
  4730. ],
  4731. "authors": [
  4732. {
  4733. "name": "PHP-FIG",
  4734. "homepage": "https://www.php-fig.org/"
  4735. }
  4736. ],
  4737. "description": "Common interfaces for simple caching",
  4738. "keywords": [
  4739. "cache",
  4740. "caching",
  4741. "psr",
  4742. "psr-16",
  4743. "simple-cache"
  4744. ],
  4745. "support": {
  4746. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4747. },
  4748. "time": "2021-10-29T13:26:27+00:00"
  4749. },
  4750. {
  4751. "name": "psy/psysh",
  4752. "version": "v0.11.21",
  4753. "source": {
  4754. "type": "git",
  4755. "url": "https://github.com/bobthecow/psysh.git",
  4756. "reference": "bcb22101107f3bf770523b65630c9d547f60c540"
  4757. },
  4758. "dist": {
  4759. "type": "zip",
  4760. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/bcb22101107f3bf770523b65630c9d547f60c540",
  4761. "reference": "bcb22101107f3bf770523b65630c9d547f60c540",
  4762. "shasum": ""
  4763. },
  4764. "require": {
  4765. "ext-json": "*",
  4766. "ext-tokenizer": "*",
  4767. "nikic/php-parser": "^4.0 || ^3.1",
  4768. "php": "^8.0 || ^7.0.8",
  4769. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4770. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4771. },
  4772. "conflict": {
  4773. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4774. },
  4775. "require-dev": {
  4776. "bamarni/composer-bin-plugin": "^1.2"
  4777. },
  4778. "suggest": {
  4779. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4780. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4781. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4782. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4783. },
  4784. "bin": [
  4785. "bin/psysh"
  4786. ],
  4787. "type": "library",
  4788. "extra": {
  4789. "branch-alias": {
  4790. "dev-main": "0.11.x-dev"
  4791. },
  4792. "bamarni-bin": {
  4793. "bin-links": false,
  4794. "forward-command": false
  4795. }
  4796. },
  4797. "autoload": {
  4798. "files": [
  4799. "src/functions.php"
  4800. ],
  4801. "psr-4": {
  4802. "Psy\\": "src/"
  4803. }
  4804. },
  4805. "notification-url": "https://packagist.org/downloads/",
  4806. "license": [
  4807. "MIT"
  4808. ],
  4809. "authors": [
  4810. {
  4811. "name": "Justin Hileman",
  4812. "email": "justin@justinhileman.info",
  4813. "homepage": "http://justinhileman.com"
  4814. }
  4815. ],
  4816. "description": "An interactive shell for modern PHP.",
  4817. "homepage": "http://psysh.org",
  4818. "keywords": [
  4819. "REPL",
  4820. "console",
  4821. "interactive",
  4822. "shell"
  4823. ],
  4824. "support": {
  4825. "issues": "https://github.com/bobthecow/psysh/issues",
  4826. "source": "https://github.com/bobthecow/psysh/tree/v0.11.21"
  4827. },
  4828. "time": "2023-09-17T21:15:54+00:00"
  4829. },
  4830. {
  4831. "name": "ralouphie/getallheaders",
  4832. "version": "3.0.3",
  4833. "source": {
  4834. "type": "git",
  4835. "url": "https://github.com/ralouphie/getallheaders.git",
  4836. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4837. },
  4838. "dist": {
  4839. "type": "zip",
  4840. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4841. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4842. "shasum": ""
  4843. },
  4844. "require": {
  4845. "php": ">=5.6"
  4846. },
  4847. "require-dev": {
  4848. "php-coveralls/php-coveralls": "^2.1",
  4849. "phpunit/phpunit": "^5 || ^6.5"
  4850. },
  4851. "type": "library",
  4852. "autoload": {
  4853. "files": [
  4854. "src/getallheaders.php"
  4855. ]
  4856. },
  4857. "notification-url": "https://packagist.org/downloads/",
  4858. "license": [
  4859. "MIT"
  4860. ],
  4861. "authors": [
  4862. {
  4863. "name": "Ralph Khattar",
  4864. "email": "ralph.khattar@gmail.com"
  4865. }
  4866. ],
  4867. "description": "A polyfill for getallheaders.",
  4868. "support": {
  4869. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4870. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4871. },
  4872. "time": "2019-03-08T08:55:37+00:00"
  4873. },
  4874. {
  4875. "name": "ramsey/collection",
  4876. "version": "2.0.0",
  4877. "source": {
  4878. "type": "git",
  4879. "url": "https://github.com/ramsey/collection.git",
  4880. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4881. },
  4882. "dist": {
  4883. "type": "zip",
  4884. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4885. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4886. "shasum": ""
  4887. },
  4888. "require": {
  4889. "php": "^8.1"
  4890. },
  4891. "require-dev": {
  4892. "captainhook/plugin-composer": "^5.3",
  4893. "ergebnis/composer-normalize": "^2.28.3",
  4894. "fakerphp/faker": "^1.21",
  4895. "hamcrest/hamcrest-php": "^2.0",
  4896. "jangregor/phpstan-prophecy": "^1.0",
  4897. "mockery/mockery": "^1.5",
  4898. "php-parallel-lint/php-console-highlighter": "^1.0",
  4899. "php-parallel-lint/php-parallel-lint": "^1.3",
  4900. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4901. "phpspec/prophecy-phpunit": "^2.0",
  4902. "phpstan/extension-installer": "^1.2",
  4903. "phpstan/phpstan": "^1.9",
  4904. "phpstan/phpstan-mockery": "^1.1",
  4905. "phpstan/phpstan-phpunit": "^1.3",
  4906. "phpunit/phpunit": "^9.5",
  4907. "psalm/plugin-mockery": "^1.1",
  4908. "psalm/plugin-phpunit": "^0.18.4",
  4909. "ramsey/coding-standard": "^2.0.3",
  4910. "ramsey/conventional-commits": "^1.3",
  4911. "vimeo/psalm": "^5.4"
  4912. },
  4913. "type": "library",
  4914. "extra": {
  4915. "captainhook": {
  4916. "force-install": true
  4917. },
  4918. "ramsey/conventional-commits": {
  4919. "configFile": "conventional-commits.json"
  4920. }
  4921. },
  4922. "autoload": {
  4923. "psr-4": {
  4924. "Ramsey\\Collection\\": "src/"
  4925. }
  4926. },
  4927. "notification-url": "https://packagist.org/downloads/",
  4928. "license": [
  4929. "MIT"
  4930. ],
  4931. "authors": [
  4932. {
  4933. "name": "Ben Ramsey",
  4934. "email": "ben@benramsey.com",
  4935. "homepage": "https://benramsey.com"
  4936. }
  4937. ],
  4938. "description": "A PHP library for representing and manipulating collections.",
  4939. "keywords": [
  4940. "array",
  4941. "collection",
  4942. "hash",
  4943. "map",
  4944. "queue",
  4945. "set"
  4946. ],
  4947. "support": {
  4948. "issues": "https://github.com/ramsey/collection/issues",
  4949. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4950. },
  4951. "funding": [
  4952. {
  4953. "url": "https://github.com/ramsey",
  4954. "type": "github"
  4955. },
  4956. {
  4957. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4958. "type": "tidelift"
  4959. }
  4960. ],
  4961. "time": "2022-12-31T21:50:55+00:00"
  4962. },
  4963. {
  4964. "name": "ramsey/uuid",
  4965. "version": "4.7.4",
  4966. "source": {
  4967. "type": "git",
  4968. "url": "https://github.com/ramsey/uuid.git",
  4969. "reference": "60a4c63ab724854332900504274f6150ff26d286"
  4970. },
  4971. "dist": {
  4972. "type": "zip",
  4973. "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
  4974. "reference": "60a4c63ab724854332900504274f6150ff26d286",
  4975. "shasum": ""
  4976. },
  4977. "require": {
  4978. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4979. "ext-json": "*",
  4980. "php": "^8.0",
  4981. "ramsey/collection": "^1.2 || ^2.0"
  4982. },
  4983. "replace": {
  4984. "rhumsaa/uuid": "self.version"
  4985. },
  4986. "require-dev": {
  4987. "captainhook/captainhook": "^5.10",
  4988. "captainhook/plugin-composer": "^5.3",
  4989. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4990. "doctrine/annotations": "^1.8",
  4991. "ergebnis/composer-normalize": "^2.15",
  4992. "mockery/mockery": "^1.3",
  4993. "paragonie/random-lib": "^2",
  4994. "php-mock/php-mock": "^2.2",
  4995. "php-mock/php-mock-mockery": "^1.3",
  4996. "php-parallel-lint/php-parallel-lint": "^1.1",
  4997. "phpbench/phpbench": "^1.0",
  4998. "phpstan/extension-installer": "^1.1",
  4999. "phpstan/phpstan": "^1.8",
  5000. "phpstan/phpstan-mockery": "^1.1",
  5001. "phpstan/phpstan-phpunit": "^1.1",
  5002. "phpunit/phpunit": "^8.5 || ^9",
  5003. "ramsey/composer-repl": "^1.4",
  5004. "slevomat/coding-standard": "^8.4",
  5005. "squizlabs/php_codesniffer": "^3.5",
  5006. "vimeo/psalm": "^4.9"
  5007. },
  5008. "suggest": {
  5009. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5010. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5011. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5012. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5013. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5014. },
  5015. "type": "library",
  5016. "extra": {
  5017. "captainhook": {
  5018. "force-install": true
  5019. }
  5020. },
  5021. "autoload": {
  5022. "files": [
  5023. "src/functions.php"
  5024. ],
  5025. "psr-4": {
  5026. "Ramsey\\Uuid\\": "src/"
  5027. }
  5028. },
  5029. "notification-url": "https://packagist.org/downloads/",
  5030. "license": [
  5031. "MIT"
  5032. ],
  5033. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5034. "keywords": [
  5035. "guid",
  5036. "identifier",
  5037. "uuid"
  5038. ],
  5039. "support": {
  5040. "issues": "https://github.com/ramsey/uuid/issues",
  5041. "source": "https://github.com/ramsey/uuid/tree/4.7.4"
  5042. },
  5043. "funding": [
  5044. {
  5045. "url": "https://github.com/ramsey",
  5046. "type": "github"
  5047. },
  5048. {
  5049. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  5050. "type": "tidelift"
  5051. }
  5052. ],
  5053. "time": "2023-04-15T23:01:58+00:00"
  5054. },
  5055. {
  5056. "name": "ryangjchandler/blade-capture-directive",
  5057. "version": "v0.3.0",
  5058. "source": {
  5059. "type": "git",
  5060. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  5061. "reference": "62fd2ecb50b938a46025093bcb64fcaddd531f89"
  5062. },
  5063. "dist": {
  5064. "type": "zip",
  5065. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/62fd2ecb50b938a46025093bcb64fcaddd531f89",
  5066. "reference": "62fd2ecb50b938a46025093bcb64fcaddd531f89",
  5067. "shasum": ""
  5068. },
  5069. "require": {
  5070. "illuminate/contracts": "^9.0|^10.0",
  5071. "php": "^8.0",
  5072. "spatie/laravel-package-tools": "^1.9.2"
  5073. },
  5074. "require-dev": {
  5075. "nunomaduro/collision": "^6.0|^7.0",
  5076. "nunomaduro/larastan": "^2.0",
  5077. "orchestra/testbench": "^7.22|^8.0",
  5078. "pestphp/pest": "^1.21",
  5079. "pestphp/pest-plugin-laravel": "^1.1",
  5080. "phpstan/extension-installer": "^1.1",
  5081. "phpstan/phpstan-deprecation-rules": "^1.0",
  5082. "phpstan/phpstan-phpunit": "^1.0",
  5083. "phpunit/phpunit": "^9.5",
  5084. "spatie/laravel-ray": "^1.26"
  5085. },
  5086. "type": "library",
  5087. "extra": {
  5088. "laravel": {
  5089. "providers": [
  5090. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  5091. ],
  5092. "aliases": {
  5093. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  5094. }
  5095. }
  5096. },
  5097. "autoload": {
  5098. "psr-4": {
  5099. "RyanChandler\\BladeCaptureDirective\\": "src",
  5100. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  5101. }
  5102. },
  5103. "notification-url": "https://packagist.org/downloads/",
  5104. "license": [
  5105. "MIT"
  5106. ],
  5107. "authors": [
  5108. {
  5109. "name": "Ryan Chandler",
  5110. "email": "support@ryangjchandler.co.uk",
  5111. "role": "Developer"
  5112. }
  5113. ],
  5114. "description": "Create inline partials in your Blade templates with ease.",
  5115. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  5116. "keywords": [
  5117. "blade-capture-directive",
  5118. "laravel",
  5119. "ryangjchandler"
  5120. ],
  5121. "support": {
  5122. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  5123. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v0.3.0"
  5124. },
  5125. "funding": [
  5126. {
  5127. "url": "https://github.com/ryangjchandler",
  5128. "type": "github"
  5129. }
  5130. ],
  5131. "time": "2023-02-14T16:54:54+00:00"
  5132. },
  5133. {
  5134. "name": "spatie/color",
  5135. "version": "1.5.3",
  5136. "source": {
  5137. "type": "git",
  5138. "url": "https://github.com/spatie/color.git",
  5139. "reference": "49739265900cabce4640cd26c3266fd8d2cca390"
  5140. },
  5141. "dist": {
  5142. "type": "zip",
  5143. "url": "https://api.github.com/repos/spatie/color/zipball/49739265900cabce4640cd26c3266fd8d2cca390",
  5144. "reference": "49739265900cabce4640cd26c3266fd8d2cca390",
  5145. "shasum": ""
  5146. },
  5147. "require": {
  5148. "php": "^7.3|^8.0"
  5149. },
  5150. "require-dev": {
  5151. "pestphp/pest": "^1.22",
  5152. "phpunit/phpunit": "^6.5||^9.0"
  5153. },
  5154. "type": "library",
  5155. "autoload": {
  5156. "psr-4": {
  5157. "Spatie\\Color\\": "src"
  5158. }
  5159. },
  5160. "notification-url": "https://packagist.org/downloads/",
  5161. "license": [
  5162. "MIT"
  5163. ],
  5164. "authors": [
  5165. {
  5166. "name": "Sebastian De Deyne",
  5167. "email": "sebastian@spatie.be",
  5168. "homepage": "https://spatie.be",
  5169. "role": "Developer"
  5170. }
  5171. ],
  5172. "description": "A little library to handle color conversions",
  5173. "homepage": "https://github.com/spatie/color",
  5174. "keywords": [
  5175. "color",
  5176. "conversion",
  5177. "rgb",
  5178. "spatie"
  5179. ],
  5180. "support": {
  5181. "issues": "https://github.com/spatie/color/issues",
  5182. "source": "https://github.com/spatie/color/tree/1.5.3"
  5183. },
  5184. "funding": [
  5185. {
  5186. "url": "https://github.com/spatie",
  5187. "type": "github"
  5188. }
  5189. ],
  5190. "time": "2022-12-18T12:58:32+00:00"
  5191. },
  5192. {
  5193. "name": "spatie/eloquent-sortable",
  5194. "version": "4.0.2",
  5195. "source": {
  5196. "type": "git",
  5197. "url": "https://github.com/spatie/eloquent-sortable.git",
  5198. "reference": "74994d10a17d15d2cdb319d6b2ad7cb6fa067c0a"
  5199. },
  5200. "dist": {
  5201. "type": "zip",
  5202. "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/74994d10a17d15d2cdb319d6b2ad7cb6fa067c0a",
  5203. "reference": "74994d10a17d15d2cdb319d6b2ad7cb6fa067c0a",
  5204. "shasum": ""
  5205. },
  5206. "require": {
  5207. "illuminate/database": "^9.0|^10.0",
  5208. "illuminate/support": "^9.0|^10.0",
  5209. "nesbot/carbon": "^2.63",
  5210. "php": "^8.1",
  5211. "spatie/laravel-package-tools": "^1.9"
  5212. },
  5213. "require-dev": {
  5214. "orchestra/testbench": "^7.0|^8.0",
  5215. "phpunit/phpunit": "^9.5"
  5216. },
  5217. "type": "library",
  5218. "extra": {
  5219. "laravel": {
  5220. "providers": [
  5221. "Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
  5222. ]
  5223. }
  5224. },
  5225. "autoload": {
  5226. "psr-4": {
  5227. "Spatie\\EloquentSortable\\": "src/"
  5228. }
  5229. },
  5230. "notification-url": "https://packagist.org/downloads/",
  5231. "license": [
  5232. "MIT"
  5233. ],
  5234. "authors": [
  5235. {
  5236. "name": "Freek Van der Herten",
  5237. "email": "freek@spatie.be"
  5238. }
  5239. ],
  5240. "description": "Sortable behaviour for eloquent models",
  5241. "homepage": "https://github.com/spatie/eloquent-sortable",
  5242. "keywords": [
  5243. "behaviour",
  5244. "eloquent",
  5245. "laravel",
  5246. "model",
  5247. "sort",
  5248. "sortable"
  5249. ],
  5250. "support": {
  5251. "issues": "https://github.com/spatie/eloquent-sortable/issues",
  5252. "source": "https://github.com/spatie/eloquent-sortable/tree/4.0.2"
  5253. },
  5254. "funding": [
  5255. {
  5256. "url": "https://spatie.be/open-source/support-us",
  5257. "type": "custom"
  5258. },
  5259. {
  5260. "url": "https://github.com/spatie",
  5261. "type": "github"
  5262. }
  5263. ],
  5264. "time": "2023-01-23T08:34:14+00:00"
  5265. },
  5266. {
  5267. "name": "spatie/invade",
  5268. "version": "1.1.1",
  5269. "source": {
  5270. "type": "git",
  5271. "url": "https://github.com/spatie/invade.git",
  5272. "reference": "d0a9c895a96152549d478a7e3420e19039eef038"
  5273. },
  5274. "dist": {
  5275. "type": "zip",
  5276. "url": "https://api.github.com/repos/spatie/invade/zipball/d0a9c895a96152549d478a7e3420e19039eef038",
  5277. "reference": "d0a9c895a96152549d478a7e3420e19039eef038",
  5278. "shasum": ""
  5279. },
  5280. "require": {
  5281. "php": "^8.0"
  5282. },
  5283. "require-dev": {
  5284. "pestphp/pest": "^1.20",
  5285. "phpstan/phpstan": "^1.4",
  5286. "spatie/ray": "^1.28"
  5287. },
  5288. "type": "library",
  5289. "extra": {
  5290. "phpstan": {
  5291. "includes": [
  5292. "phpstan-extension.neon"
  5293. ]
  5294. }
  5295. },
  5296. "autoload": {
  5297. "files": [
  5298. "src/functions.php"
  5299. ],
  5300. "psr-4": {
  5301. "Spatie\\Invade\\": "src"
  5302. }
  5303. },
  5304. "notification-url": "https://packagist.org/downloads/",
  5305. "license": [
  5306. "MIT"
  5307. ],
  5308. "authors": [
  5309. {
  5310. "name": "Freek Van der Herten",
  5311. "email": "freek@spatie.be",
  5312. "role": "Developer"
  5313. }
  5314. ],
  5315. "description": "A PHP function to work with private properties and methods",
  5316. "homepage": "https://github.com/spatie/invade",
  5317. "keywords": [
  5318. "invade",
  5319. "spatie"
  5320. ],
  5321. "support": {
  5322. "source": "https://github.com/spatie/invade/tree/1.1.1"
  5323. },
  5324. "funding": [
  5325. {
  5326. "url": "https://github.com/spatie",
  5327. "type": "github"
  5328. }
  5329. ],
  5330. "time": "2022-07-05T09:31:00+00:00"
  5331. },
  5332. {
  5333. "name": "spatie/laravel-package-tools",
  5334. "version": "1.16.1",
  5335. "source": {
  5336. "type": "git",
  5337. "url": "https://github.com/spatie/laravel-package-tools.git",
  5338. "reference": "cc7c991555a37f9fa6b814aa03af73f88026a83d"
  5339. },
  5340. "dist": {
  5341. "type": "zip",
  5342. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/cc7c991555a37f9fa6b814aa03af73f88026a83d",
  5343. "reference": "cc7c991555a37f9fa6b814aa03af73f88026a83d",
  5344. "shasum": ""
  5345. },
  5346. "require": {
  5347. "illuminate/contracts": "^9.28|^10.0",
  5348. "php": "^8.0"
  5349. },
  5350. "require-dev": {
  5351. "mockery/mockery": "^1.5",
  5352. "orchestra/testbench": "^7.7|^8.0",
  5353. "pestphp/pest": "^1.22",
  5354. "phpunit/phpunit": "^9.5.24",
  5355. "spatie/pest-plugin-test-time": "^1.1"
  5356. },
  5357. "type": "library",
  5358. "autoload": {
  5359. "psr-4": {
  5360. "Spatie\\LaravelPackageTools\\": "src"
  5361. }
  5362. },
  5363. "notification-url": "https://packagist.org/downloads/",
  5364. "license": [
  5365. "MIT"
  5366. ],
  5367. "authors": [
  5368. {
  5369. "name": "Freek Van der Herten",
  5370. "email": "freek@spatie.be",
  5371. "role": "Developer"
  5372. }
  5373. ],
  5374. "description": "Tools for creating Laravel packages",
  5375. "homepage": "https://github.com/spatie/laravel-package-tools",
  5376. "keywords": [
  5377. "laravel-package-tools",
  5378. "spatie"
  5379. ],
  5380. "support": {
  5381. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  5382. "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.1"
  5383. },
  5384. "funding": [
  5385. {
  5386. "url": "https://github.com/spatie",
  5387. "type": "github"
  5388. }
  5389. ],
  5390. "time": "2023-08-23T09:04:39+00:00"
  5391. },
  5392. {
  5393. "name": "spatie/laravel-tags",
  5394. "version": "4.5.1",
  5395. "source": {
  5396. "type": "git",
  5397. "url": "https://github.com/spatie/laravel-tags.git",
  5398. "reference": "fcc6c532fa0ce0d1eefe886fd44dcedcca3173aa"
  5399. },
  5400. "dist": {
  5401. "type": "zip",
  5402. "url": "https://api.github.com/repos/spatie/laravel-tags/zipball/fcc6c532fa0ce0d1eefe886fd44dcedcca3173aa",
  5403. "reference": "fcc6c532fa0ce0d1eefe886fd44dcedcca3173aa",
  5404. "shasum": ""
  5405. },
  5406. "require": {
  5407. "laravel/framework": "^8.67|^9.0|^10.0",
  5408. "nesbot/carbon": "^2.63",
  5409. "php": "^8.0",
  5410. "spatie/eloquent-sortable": "^3.10|^4.0",
  5411. "spatie/laravel-package-tools": "^1.4",
  5412. "spatie/laravel-translatable": "^4.6|^5.0|^6.0"
  5413. },
  5414. "require-dev": {
  5415. "orchestra/testbench": "^6.13|^7.0|^8.0",
  5416. "pestphp/pest": "^1.22",
  5417. "phpunit/phpunit": "^9.5.2"
  5418. },
  5419. "type": "library",
  5420. "extra": {
  5421. "laravel": {
  5422. "providers": [
  5423. "Spatie\\Tags\\TagsServiceProvider"
  5424. ]
  5425. }
  5426. },
  5427. "autoload": {
  5428. "psr-4": {
  5429. "Spatie\\Tags\\": "src"
  5430. }
  5431. },
  5432. "notification-url": "https://packagist.org/downloads/",
  5433. "license": [
  5434. "MIT"
  5435. ],
  5436. "authors": [
  5437. {
  5438. "name": "Freek Van der Herten",
  5439. "email": "freek@spatie.be",
  5440. "homepage": "https://spatie.be",
  5441. "role": "Developer"
  5442. }
  5443. ],
  5444. "description": "Add tags and taggable behaviour to your Laravel app",
  5445. "homepage": "https://github.com/spatie/laravel-tags",
  5446. "keywords": [
  5447. "laravel-tags",
  5448. "spatie"
  5449. ],
  5450. "support": {
  5451. "issues": "https://github.com/spatie/laravel-tags/issues",
  5452. "source": "https://github.com/spatie/laravel-tags/tree/4.5.1"
  5453. },
  5454. "funding": [
  5455. {
  5456. "url": "https://github.com/spatie",
  5457. "type": "github"
  5458. }
  5459. ],
  5460. "time": "2023-07-31T08:43:55+00:00"
  5461. },
  5462. {
  5463. "name": "spatie/laravel-translatable",
  5464. "version": "6.5.3",
  5465. "source": {
  5466. "type": "git",
  5467. "url": "https://github.com/spatie/laravel-translatable.git",
  5468. "reference": "1906a3f1492c4b4b99d9f150b67cca4b697d85d7"
  5469. },
  5470. "dist": {
  5471. "type": "zip",
  5472. "url": "https://api.github.com/repos/spatie/laravel-translatable/zipball/1906a3f1492c4b4b99d9f150b67cca4b697d85d7",
  5473. "reference": "1906a3f1492c4b4b99d9f150b67cca4b697d85d7",
  5474. "shasum": ""
  5475. },
  5476. "require": {
  5477. "illuminate/database": "^9.0|^10.0",
  5478. "illuminate/support": "^9.0|^10.0",
  5479. "php": "^8.0",
  5480. "spatie/laravel-package-tools": "^1.11"
  5481. },
  5482. "require-dev": {
  5483. "mockery/mockery": "^1.4",
  5484. "orchestra/testbench": "^7.0|^8.0",
  5485. "pestphp/pest": "^1.20"
  5486. },
  5487. "type": "library",
  5488. "extra": {
  5489. "laravel": {
  5490. "providers": [
  5491. "Spatie\\Translatable\\TranslatableServiceProvider"
  5492. ]
  5493. },
  5494. "aliases": {
  5495. "Translatable": "Spatie\\Translatable\\Facades\\Translatable"
  5496. }
  5497. },
  5498. "autoload": {
  5499. "psr-4": {
  5500. "Spatie\\Translatable\\": "src"
  5501. }
  5502. },
  5503. "notification-url": "https://packagist.org/downloads/",
  5504. "license": [
  5505. "MIT"
  5506. ],
  5507. "authors": [
  5508. {
  5509. "name": "Freek Van der Herten",
  5510. "email": "freek@spatie.be",
  5511. "homepage": "https://spatie.be",
  5512. "role": "Developer"
  5513. },
  5514. {
  5515. "name": "Sebastian De Deyne",
  5516. "email": "sebastian@spatie.be",
  5517. "homepage": "https://spatie.be",
  5518. "role": "Developer"
  5519. }
  5520. ],
  5521. "description": "A trait to make an Eloquent model hold translations",
  5522. "homepage": "https://github.com/spatie/laravel-translatable",
  5523. "keywords": [
  5524. "eloquent",
  5525. "i8n",
  5526. "laravel-translatable",
  5527. "model",
  5528. "multilingual",
  5529. "spatie",
  5530. "translate"
  5531. ],
  5532. "support": {
  5533. "issues": "https://github.com/spatie/laravel-translatable/issues",
  5534. "source": "https://github.com/spatie/laravel-translatable/tree/6.5.3"
  5535. },
  5536. "funding": [
  5537. {
  5538. "url": "https://github.com/spatie",
  5539. "type": "github"
  5540. }
  5541. ],
  5542. "time": "2023-07-19T19:21:38+00:00"
  5543. },
  5544. {
  5545. "name": "squirephp/countries",
  5546. "version": "v3.4.2",
  5547. "source": {
  5548. "type": "git",
  5549. "url": "https://github.com/squirephp/countries.git",
  5550. "reference": "7dd92f46dc67ef0c03da4171f7d987f1886074a6"
  5551. },
  5552. "dist": {
  5553. "type": "zip",
  5554. "url": "https://api.github.com/repos/squirephp/countries/zipball/7dd92f46dc67ef0c03da4171f7d987f1886074a6",
  5555. "reference": "7dd92f46dc67ef0c03da4171f7d987f1886074a6",
  5556. "shasum": ""
  5557. },
  5558. "require": {
  5559. "illuminate/support": "^8.0|^9.0|^10.0",
  5560. "php": "^8.0",
  5561. "squirephp/model": "self.version",
  5562. "squirephp/rule": "self.version"
  5563. },
  5564. "type": "library",
  5565. "extra": {
  5566. "laravel": {
  5567. "providers": [
  5568. "Squire\\CountriesServiceProvider"
  5569. ]
  5570. }
  5571. },
  5572. "autoload": {
  5573. "psr-4": {
  5574. "Squire\\": "src"
  5575. }
  5576. },
  5577. "notification-url": "https://packagist.org/downloads/",
  5578. "license": [
  5579. "MIT"
  5580. ],
  5581. "authors": [
  5582. {
  5583. "name": "Dan Harrin",
  5584. "email": "dan@danharrin.com"
  5585. }
  5586. ],
  5587. "description": "A library containing Squire's Country model.",
  5588. "homepage": "https://github.com/squirephp",
  5589. "keywords": [
  5590. "squire"
  5591. ],
  5592. "support": {
  5593. "issues": "https://github.com/squirephp/squire/issues",
  5594. "source": "https://github.com/squirephp/squire"
  5595. },
  5596. "time": "2023-02-18T12:44:15+00:00"
  5597. },
  5598. {
  5599. "name": "squirephp/countries-en",
  5600. "version": "v3.4.2",
  5601. "source": {
  5602. "type": "git",
  5603. "url": "https://github.com/squirephp/countries-en.git",
  5604. "reference": "831f343a2ee484aaa8b9b659c0915df46c887d3c"
  5605. },
  5606. "dist": {
  5607. "type": "zip",
  5608. "url": "https://api.github.com/repos/squirephp/countries-en/zipball/831f343a2ee484aaa8b9b659c0915df46c887d3c",
  5609. "reference": "831f343a2ee484aaa8b9b659c0915df46c887d3c",
  5610. "shasum": ""
  5611. },
  5612. "require": {
  5613. "illuminate/support": "^8.0|^9.0|^10.0",
  5614. "php": "^8.0",
  5615. "squirephp/countries": "self.version",
  5616. "squirephp/repository": "self.version"
  5617. },
  5618. "type": "library",
  5619. "extra": {
  5620. "laravel": {
  5621. "providers": [
  5622. "Squire\\CountriesEnServiceProvider"
  5623. ]
  5624. }
  5625. },
  5626. "autoload": {
  5627. "psr-4": {
  5628. "Squire\\": "src"
  5629. }
  5630. },
  5631. "notification-url": "https://packagist.org/downloads/",
  5632. "license": [
  5633. "MIT"
  5634. ],
  5635. "authors": [
  5636. {
  5637. "name": "Dan Harrin",
  5638. "email": "dan@danharrin.com"
  5639. }
  5640. ],
  5641. "description": "A library containing the English translation of Squire's Country model.",
  5642. "homepage": "https://github.com/squirephp",
  5643. "keywords": [
  5644. "squire"
  5645. ],
  5646. "support": {
  5647. "issues": "https://github.com/squirephp/squire/issues",
  5648. "source": "https://github.com/squirephp/squire"
  5649. },
  5650. "time": "2023-02-18T12:44:18+00:00"
  5651. },
  5652. {
  5653. "name": "squirephp/model",
  5654. "version": "v3.4.2",
  5655. "source": {
  5656. "type": "git",
  5657. "url": "https://github.com/squirephp/model.git",
  5658. "reference": "dbd3cd2fb74c36f6aabd9294de40a8f64c82518d"
  5659. },
  5660. "dist": {
  5661. "type": "zip",
  5662. "url": "https://api.github.com/repos/squirephp/model/zipball/dbd3cd2fb74c36f6aabd9294de40a8f64c82518d",
  5663. "reference": "dbd3cd2fb74c36f6aabd9294de40a8f64c82518d",
  5664. "shasum": ""
  5665. },
  5666. "require": {
  5667. "ext-pdo_sqlite": "*",
  5668. "illuminate/database": "^8.40|^9.0|^10.0",
  5669. "illuminate/support": "^8.0|^9.0|^10.0",
  5670. "php": "^8.0"
  5671. },
  5672. "type": "library",
  5673. "extra": {
  5674. "laravel": {
  5675. "providers": [
  5676. "Squire\\ModelServiceProvider"
  5677. ]
  5678. }
  5679. },
  5680. "autoload": {
  5681. "psr-4": {
  5682. "Squire\\": "src"
  5683. }
  5684. },
  5685. "notification-url": "https://packagist.org/downloads/",
  5686. "license": [
  5687. "MIT"
  5688. ],
  5689. "authors": [
  5690. {
  5691. "name": "Dan Harrin",
  5692. "email": "dan@danharrin.com"
  5693. }
  5694. ],
  5695. "description": "A library containing the base Squire model class.",
  5696. "homepage": "https://github.com/squirephp",
  5697. "keywords": [
  5698. "squire"
  5699. ],
  5700. "support": {
  5701. "issues": "https://github.com/squirephp/squire/issues",
  5702. "source": "https://github.com/squirephp/squire"
  5703. },
  5704. "time": "2023-02-18T12:44:15+00:00"
  5705. },
  5706. {
  5707. "name": "squirephp/regions",
  5708. "version": "v3.4.2",
  5709. "source": {
  5710. "type": "git",
  5711. "url": "https://github.com/squirephp/regions.git",
  5712. "reference": "c28f9e9d124453020130df27df6933000c8c2b42"
  5713. },
  5714. "dist": {
  5715. "type": "zip",
  5716. "url": "https://api.github.com/repos/squirephp/regions/zipball/c28f9e9d124453020130df27df6933000c8c2b42",
  5717. "reference": "c28f9e9d124453020130df27df6933000c8c2b42",
  5718. "shasum": ""
  5719. },
  5720. "require": {
  5721. "illuminate/support": "^8.0|^9.0|^10.0",
  5722. "php": "^8.0",
  5723. "squirephp/model": "self.version",
  5724. "squirephp/rule": "self.version"
  5725. },
  5726. "type": "library",
  5727. "extra": {
  5728. "laravel": {
  5729. "providers": [
  5730. "Squire\\RegionsServiceProvider"
  5731. ]
  5732. }
  5733. },
  5734. "autoload": {
  5735. "psr-4": {
  5736. "Squire\\": "src"
  5737. }
  5738. },
  5739. "notification-url": "https://packagist.org/downloads/",
  5740. "license": [
  5741. "MIT"
  5742. ],
  5743. "authors": [
  5744. {
  5745. "name": "Dan Harrin",
  5746. "email": "dan@danharrin.com"
  5747. }
  5748. ],
  5749. "description": "A library containing Squire's Region model.",
  5750. "homepage": "https://github.com/squirephp",
  5751. "keywords": [
  5752. "squire"
  5753. ],
  5754. "support": {
  5755. "issues": "https://github.com/squirephp/squire/issues",
  5756. "source": "https://github.com/squirephp/squire"
  5757. },
  5758. "time": "2023-02-18T12:44:18+00:00"
  5759. },
  5760. {
  5761. "name": "squirephp/regions-en",
  5762. "version": "v3.4.2",
  5763. "source": {
  5764. "type": "git",
  5765. "url": "https://github.com/squirephp/regions-en.git",
  5766. "reference": "c3dd19c5791c976d141111d065c5e857d34e31ff"
  5767. },
  5768. "dist": {
  5769. "type": "zip",
  5770. "url": "https://api.github.com/repos/squirephp/regions-en/zipball/c3dd19c5791c976d141111d065c5e857d34e31ff",
  5771. "reference": "c3dd19c5791c976d141111d065c5e857d34e31ff",
  5772. "shasum": ""
  5773. },
  5774. "require": {
  5775. "illuminate/support": "^8.0|^9.0|^10.0",
  5776. "php": "^8.0",
  5777. "squirephp/regions": "self.version",
  5778. "squirephp/repository": "self.version"
  5779. },
  5780. "type": "library",
  5781. "extra": {
  5782. "laravel": {
  5783. "providers": [
  5784. "Squire\\RegionsEnServiceProvider"
  5785. ]
  5786. }
  5787. },
  5788. "autoload": {
  5789. "psr-4": {
  5790. "Squire\\": "src"
  5791. }
  5792. },
  5793. "notification-url": "https://packagist.org/downloads/",
  5794. "license": [
  5795. "MIT"
  5796. ],
  5797. "authors": [
  5798. {
  5799. "name": "Dan Harrin",
  5800. "email": "dan@danharrin.com"
  5801. }
  5802. ],
  5803. "description": "A library containing the English translation of Squire's Region model.",
  5804. "homepage": "https://github.com/squirephp",
  5805. "keywords": [
  5806. "squire"
  5807. ],
  5808. "support": {
  5809. "issues": "https://github.com/squirephp/squire/issues",
  5810. "source": "https://github.com/squirephp/squire"
  5811. },
  5812. "time": "2023-02-18T12:44:35+00:00"
  5813. },
  5814. {
  5815. "name": "squirephp/repository",
  5816. "version": "v3.4.2",
  5817. "source": {
  5818. "type": "git",
  5819. "url": "https://github.com/squirephp/repository.git",
  5820. "reference": "dffe543ee093cdad29c776ae901eb5aa43ac371a"
  5821. },
  5822. "dist": {
  5823. "type": "zip",
  5824. "url": "https://api.github.com/repos/squirephp/repository/zipball/dffe543ee093cdad29c776ae901eb5aa43ac371a",
  5825. "reference": "dffe543ee093cdad29c776ae901eb5aa43ac371a",
  5826. "shasum": ""
  5827. },
  5828. "require": {
  5829. "illuminate/support": "^8.0|^9.0|^10.0",
  5830. "php": "^8.0"
  5831. },
  5832. "type": "library",
  5833. "extra": {
  5834. "laravel": {
  5835. "providers": [
  5836. "Squire\\RepositoryServiceProvider"
  5837. ],
  5838. "aliases": {
  5839. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  5840. }
  5841. }
  5842. },
  5843. "autoload": {
  5844. "psr-4": {
  5845. "Squire\\": "src"
  5846. }
  5847. },
  5848. "notification-url": "https://packagist.org/downloads/",
  5849. "license": [
  5850. "MIT"
  5851. ],
  5852. "authors": [
  5853. {
  5854. "name": "Dan Harrin",
  5855. "email": "dan@danharrin.com"
  5856. }
  5857. ],
  5858. "description": "A library containing the Squire repository.",
  5859. "homepage": "https://github.com/squirephp",
  5860. "keywords": [
  5861. "squire"
  5862. ],
  5863. "support": {
  5864. "issues": "https://github.com/squirephp/squire/issues",
  5865. "source": "https://github.com/squirephp/squire"
  5866. },
  5867. "time": "2023-02-18T12:44:39+00:00"
  5868. },
  5869. {
  5870. "name": "squirephp/rule",
  5871. "version": "v3.4.2",
  5872. "source": {
  5873. "type": "git",
  5874. "url": "https://github.com/squirephp/rule.git",
  5875. "reference": "2a3d11385140e325dcfbcf48c864e1a02fa0c342"
  5876. },
  5877. "dist": {
  5878. "type": "zip",
  5879. "url": "https://api.github.com/repos/squirephp/rule/zipball/2a3d11385140e325dcfbcf48c864e1a02fa0c342",
  5880. "reference": "2a3d11385140e325dcfbcf48c864e1a02fa0c342",
  5881. "shasum": ""
  5882. },
  5883. "require": {
  5884. "illuminate/contracts": "^8.0|^9.0|^10.0",
  5885. "illuminate/database": "^8.40|^9.0|^10.0",
  5886. "illuminate/support": "^8.0|^9.0|^10.0",
  5887. "php": "^8.0"
  5888. },
  5889. "type": "library",
  5890. "autoload": {
  5891. "psr-4": {
  5892. "Squire\\": "src"
  5893. }
  5894. },
  5895. "notification-url": "https://packagist.org/downloads/",
  5896. "license": [
  5897. "MIT"
  5898. ],
  5899. "authors": [
  5900. {
  5901. "name": "Dan Harrin",
  5902. "email": "dan@danharrin.com"
  5903. }
  5904. ],
  5905. "description": "A library containing the base Squire rule class.",
  5906. "homepage": "https://github.com/squirephp",
  5907. "keywords": [
  5908. "squire"
  5909. ],
  5910. "support": {
  5911. "issues": "https://github.com/squirephp/squire/issues",
  5912. "source": "https://github.com/squirephp/squire"
  5913. },
  5914. "time": "2023-02-18T12:44:38+00:00"
  5915. },
  5916. {
  5917. "name": "squirephp/timezones",
  5918. "version": "v3.4.2",
  5919. "source": {
  5920. "type": "git",
  5921. "url": "https://github.com/squirephp/timezones.git",
  5922. "reference": "5dc7f8c7f632c64a8013ba964ffe2621c3bca27e"
  5923. },
  5924. "dist": {
  5925. "type": "zip",
  5926. "url": "https://api.github.com/repos/squirephp/timezones/zipball/5dc7f8c7f632c64a8013ba964ffe2621c3bca27e",
  5927. "reference": "5dc7f8c7f632c64a8013ba964ffe2621c3bca27e",
  5928. "shasum": ""
  5929. },
  5930. "require": {
  5931. "illuminate/support": "^8.0|^9.0|^10.0",
  5932. "php": "^8.0",
  5933. "squirephp/model": "self.version",
  5934. "squirephp/rule": "self.version"
  5935. },
  5936. "type": "library",
  5937. "extra": {
  5938. "laravel": {
  5939. "providers": [
  5940. "Squire\\TimezonesServiceProvider"
  5941. ]
  5942. }
  5943. },
  5944. "autoload": {
  5945. "psr-4": {
  5946. "Squire\\": "src"
  5947. }
  5948. },
  5949. "notification-url": "https://packagist.org/downloads/",
  5950. "license": [
  5951. "MIT"
  5952. ],
  5953. "authors": [
  5954. {
  5955. "name": "Dan Harrin",
  5956. "email": "dan@danharrin.com"
  5957. }
  5958. ],
  5959. "description": "A library containing Squire's Timezone model.",
  5960. "homepage": "https://github.com/squirephp",
  5961. "keywords": [
  5962. "squire"
  5963. ],
  5964. "support": {
  5965. "issues": "https://github.com/squirephp/squire/issues",
  5966. "source": "https://github.com/squirephp/squire"
  5967. },
  5968. "time": "2023-02-18T12:44:40+00:00"
  5969. },
  5970. {
  5971. "name": "squirephp/timezones-en",
  5972. "version": "v3.4.2",
  5973. "source": {
  5974. "type": "git",
  5975. "url": "https://github.com/squirephp/timezones-en.git",
  5976. "reference": "b321f830f358f98675be639e84b213a5345950d1"
  5977. },
  5978. "dist": {
  5979. "type": "zip",
  5980. "url": "https://api.github.com/repos/squirephp/timezones-en/zipball/b321f830f358f98675be639e84b213a5345950d1",
  5981. "reference": "b321f830f358f98675be639e84b213a5345950d1",
  5982. "shasum": ""
  5983. },
  5984. "require": {
  5985. "illuminate/support": "^8.0|^9.0|^10.0",
  5986. "php": "^8.0",
  5987. "squirephp/repository": "self.version",
  5988. "squirephp/timezones": "self.version"
  5989. },
  5990. "type": "library",
  5991. "extra": {
  5992. "laravel": {
  5993. "providers": [
  5994. "Squire\\TimezonesEnServiceProvider"
  5995. ]
  5996. }
  5997. },
  5998. "autoload": {
  5999. "psr-4": {
  6000. "Squire\\": "src"
  6001. }
  6002. },
  6003. "notification-url": "https://packagist.org/downloads/",
  6004. "license": [
  6005. "MIT"
  6006. ],
  6007. "authors": [
  6008. {
  6009. "name": "Dan Harrin",
  6010. "email": "dan@danharrin.com"
  6011. }
  6012. ],
  6013. "description": "A library containing the English translation of Squire's Timezone model.",
  6014. "homepage": "https://github.com/squirephp",
  6015. "keywords": [
  6016. "squire"
  6017. ],
  6018. "support": {
  6019. "issues": "https://github.com/squirephp/squire/issues",
  6020. "source": "https://github.com/squirephp/squire"
  6021. },
  6022. "time": "2023-02-18T12:44:38+00:00"
  6023. },
  6024. {
  6025. "name": "symfony/console",
  6026. "version": "v6.3.4",
  6027. "source": {
  6028. "type": "git",
  6029. "url": "https://github.com/symfony/console.git",
  6030. "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6"
  6031. },
  6032. "dist": {
  6033. "type": "zip",
  6034. "url": "https://api.github.com/repos/symfony/console/zipball/eca495f2ee845130855ddf1cf18460c38966c8b6",
  6035. "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6",
  6036. "shasum": ""
  6037. },
  6038. "require": {
  6039. "php": ">=8.1",
  6040. "symfony/deprecation-contracts": "^2.5|^3",
  6041. "symfony/polyfill-mbstring": "~1.0",
  6042. "symfony/service-contracts": "^2.5|^3",
  6043. "symfony/string": "^5.4|^6.0"
  6044. },
  6045. "conflict": {
  6046. "symfony/dependency-injection": "<5.4",
  6047. "symfony/dotenv": "<5.4",
  6048. "symfony/event-dispatcher": "<5.4",
  6049. "symfony/lock": "<5.4",
  6050. "symfony/process": "<5.4"
  6051. },
  6052. "provide": {
  6053. "psr/log-implementation": "1.0|2.0|3.0"
  6054. },
  6055. "require-dev": {
  6056. "psr/log": "^1|^2|^3",
  6057. "symfony/config": "^5.4|^6.0",
  6058. "symfony/dependency-injection": "^5.4|^6.0",
  6059. "symfony/event-dispatcher": "^5.4|^6.0",
  6060. "symfony/lock": "^5.4|^6.0",
  6061. "symfony/process": "^5.4|^6.0",
  6062. "symfony/var-dumper": "^5.4|^6.0"
  6063. },
  6064. "type": "library",
  6065. "autoload": {
  6066. "psr-4": {
  6067. "Symfony\\Component\\Console\\": ""
  6068. },
  6069. "exclude-from-classmap": [
  6070. "/Tests/"
  6071. ]
  6072. },
  6073. "notification-url": "https://packagist.org/downloads/",
  6074. "license": [
  6075. "MIT"
  6076. ],
  6077. "authors": [
  6078. {
  6079. "name": "Fabien Potencier",
  6080. "email": "fabien@symfony.com"
  6081. },
  6082. {
  6083. "name": "Symfony Community",
  6084. "homepage": "https://symfony.com/contributors"
  6085. }
  6086. ],
  6087. "description": "Eases the creation of beautiful and testable command line interfaces",
  6088. "homepage": "https://symfony.com",
  6089. "keywords": [
  6090. "cli",
  6091. "command-line",
  6092. "console",
  6093. "terminal"
  6094. ],
  6095. "support": {
  6096. "source": "https://github.com/symfony/console/tree/v6.3.4"
  6097. },
  6098. "funding": [
  6099. {
  6100. "url": "https://symfony.com/sponsor",
  6101. "type": "custom"
  6102. },
  6103. {
  6104. "url": "https://github.com/fabpot",
  6105. "type": "github"
  6106. },
  6107. {
  6108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6109. "type": "tidelift"
  6110. }
  6111. ],
  6112. "time": "2023-08-16T10:10:12+00:00"
  6113. },
  6114. {
  6115. "name": "symfony/css-selector",
  6116. "version": "v6.3.2",
  6117. "source": {
  6118. "type": "git",
  6119. "url": "https://github.com/symfony/css-selector.git",
  6120. "reference": "883d961421ab1709877c10ac99451632a3d6fa57"
  6121. },
  6122. "dist": {
  6123. "type": "zip",
  6124. "url": "https://api.github.com/repos/symfony/css-selector/zipball/883d961421ab1709877c10ac99451632a3d6fa57",
  6125. "reference": "883d961421ab1709877c10ac99451632a3d6fa57",
  6126. "shasum": ""
  6127. },
  6128. "require": {
  6129. "php": ">=8.1"
  6130. },
  6131. "type": "library",
  6132. "autoload": {
  6133. "psr-4": {
  6134. "Symfony\\Component\\CssSelector\\": ""
  6135. },
  6136. "exclude-from-classmap": [
  6137. "/Tests/"
  6138. ]
  6139. },
  6140. "notification-url": "https://packagist.org/downloads/",
  6141. "license": [
  6142. "MIT"
  6143. ],
  6144. "authors": [
  6145. {
  6146. "name": "Fabien Potencier",
  6147. "email": "fabien@symfony.com"
  6148. },
  6149. {
  6150. "name": "Jean-François Simon",
  6151. "email": "jeanfrancois.simon@sensiolabs.com"
  6152. },
  6153. {
  6154. "name": "Symfony Community",
  6155. "homepage": "https://symfony.com/contributors"
  6156. }
  6157. ],
  6158. "description": "Converts CSS selectors to XPath expressions",
  6159. "homepage": "https://symfony.com",
  6160. "support": {
  6161. "source": "https://github.com/symfony/css-selector/tree/v6.3.2"
  6162. },
  6163. "funding": [
  6164. {
  6165. "url": "https://symfony.com/sponsor",
  6166. "type": "custom"
  6167. },
  6168. {
  6169. "url": "https://github.com/fabpot",
  6170. "type": "github"
  6171. },
  6172. {
  6173. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6174. "type": "tidelift"
  6175. }
  6176. ],
  6177. "time": "2023-07-12T16:00:22+00:00"
  6178. },
  6179. {
  6180. "name": "symfony/deprecation-contracts",
  6181. "version": "v3.3.0",
  6182. "source": {
  6183. "type": "git",
  6184. "url": "https://github.com/symfony/deprecation-contracts.git",
  6185. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  6186. },
  6187. "dist": {
  6188. "type": "zip",
  6189. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  6190. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  6191. "shasum": ""
  6192. },
  6193. "require": {
  6194. "php": ">=8.1"
  6195. },
  6196. "type": "library",
  6197. "extra": {
  6198. "branch-alias": {
  6199. "dev-main": "3.4-dev"
  6200. },
  6201. "thanks": {
  6202. "name": "symfony/contracts",
  6203. "url": "https://github.com/symfony/contracts"
  6204. }
  6205. },
  6206. "autoload": {
  6207. "files": [
  6208. "function.php"
  6209. ]
  6210. },
  6211. "notification-url": "https://packagist.org/downloads/",
  6212. "license": [
  6213. "MIT"
  6214. ],
  6215. "authors": [
  6216. {
  6217. "name": "Nicolas Grekas",
  6218. "email": "p@tchwork.com"
  6219. },
  6220. {
  6221. "name": "Symfony Community",
  6222. "homepage": "https://symfony.com/contributors"
  6223. }
  6224. ],
  6225. "description": "A generic function and convention to trigger deprecation notices",
  6226. "homepage": "https://symfony.com",
  6227. "support": {
  6228. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  6229. },
  6230. "funding": [
  6231. {
  6232. "url": "https://symfony.com/sponsor",
  6233. "type": "custom"
  6234. },
  6235. {
  6236. "url": "https://github.com/fabpot",
  6237. "type": "github"
  6238. },
  6239. {
  6240. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6241. "type": "tidelift"
  6242. }
  6243. ],
  6244. "time": "2023-05-23T14:45:45+00:00"
  6245. },
  6246. {
  6247. "name": "symfony/error-handler",
  6248. "version": "v6.3.2",
  6249. "source": {
  6250. "type": "git",
  6251. "url": "https://github.com/symfony/error-handler.git",
  6252. "reference": "85fd65ed295c4078367c784e8a5a6cee30348b7a"
  6253. },
  6254. "dist": {
  6255. "type": "zip",
  6256. "url": "https://api.github.com/repos/symfony/error-handler/zipball/85fd65ed295c4078367c784e8a5a6cee30348b7a",
  6257. "reference": "85fd65ed295c4078367c784e8a5a6cee30348b7a",
  6258. "shasum": ""
  6259. },
  6260. "require": {
  6261. "php": ">=8.1",
  6262. "psr/log": "^1|^2|^3",
  6263. "symfony/var-dumper": "^5.4|^6.0"
  6264. },
  6265. "conflict": {
  6266. "symfony/deprecation-contracts": "<2.5"
  6267. },
  6268. "require-dev": {
  6269. "symfony/deprecation-contracts": "^2.5|^3",
  6270. "symfony/http-kernel": "^5.4|^6.0",
  6271. "symfony/serializer": "^5.4|^6.0"
  6272. },
  6273. "bin": [
  6274. "Resources/bin/patch-type-declarations"
  6275. ],
  6276. "type": "library",
  6277. "autoload": {
  6278. "psr-4": {
  6279. "Symfony\\Component\\ErrorHandler\\": ""
  6280. },
  6281. "exclude-from-classmap": [
  6282. "/Tests/"
  6283. ]
  6284. },
  6285. "notification-url": "https://packagist.org/downloads/",
  6286. "license": [
  6287. "MIT"
  6288. ],
  6289. "authors": [
  6290. {
  6291. "name": "Fabien Potencier",
  6292. "email": "fabien@symfony.com"
  6293. },
  6294. {
  6295. "name": "Symfony Community",
  6296. "homepage": "https://symfony.com/contributors"
  6297. }
  6298. ],
  6299. "description": "Provides tools to manage errors and ease debugging PHP code",
  6300. "homepage": "https://symfony.com",
  6301. "support": {
  6302. "source": "https://github.com/symfony/error-handler/tree/v6.3.2"
  6303. },
  6304. "funding": [
  6305. {
  6306. "url": "https://symfony.com/sponsor",
  6307. "type": "custom"
  6308. },
  6309. {
  6310. "url": "https://github.com/fabpot",
  6311. "type": "github"
  6312. },
  6313. {
  6314. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6315. "type": "tidelift"
  6316. }
  6317. ],
  6318. "time": "2023-07-16T17:05:46+00:00"
  6319. },
  6320. {
  6321. "name": "symfony/event-dispatcher",
  6322. "version": "v6.3.2",
  6323. "source": {
  6324. "type": "git",
  6325. "url": "https://github.com/symfony/event-dispatcher.git",
  6326. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e"
  6327. },
  6328. "dist": {
  6329. "type": "zip",
  6330. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  6331. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  6332. "shasum": ""
  6333. },
  6334. "require": {
  6335. "php": ">=8.1",
  6336. "symfony/event-dispatcher-contracts": "^2.5|^3"
  6337. },
  6338. "conflict": {
  6339. "symfony/dependency-injection": "<5.4",
  6340. "symfony/service-contracts": "<2.5"
  6341. },
  6342. "provide": {
  6343. "psr/event-dispatcher-implementation": "1.0",
  6344. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6345. },
  6346. "require-dev": {
  6347. "psr/log": "^1|^2|^3",
  6348. "symfony/config": "^5.4|^6.0",
  6349. "symfony/dependency-injection": "^5.4|^6.0",
  6350. "symfony/error-handler": "^5.4|^6.0",
  6351. "symfony/expression-language": "^5.4|^6.0",
  6352. "symfony/http-foundation": "^5.4|^6.0",
  6353. "symfony/service-contracts": "^2.5|^3",
  6354. "symfony/stopwatch": "^5.4|^6.0"
  6355. },
  6356. "type": "library",
  6357. "autoload": {
  6358. "psr-4": {
  6359. "Symfony\\Component\\EventDispatcher\\": ""
  6360. },
  6361. "exclude-from-classmap": [
  6362. "/Tests/"
  6363. ]
  6364. },
  6365. "notification-url": "https://packagist.org/downloads/",
  6366. "license": [
  6367. "MIT"
  6368. ],
  6369. "authors": [
  6370. {
  6371. "name": "Fabien Potencier",
  6372. "email": "fabien@symfony.com"
  6373. },
  6374. {
  6375. "name": "Symfony Community",
  6376. "homepage": "https://symfony.com/contributors"
  6377. }
  6378. ],
  6379. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6380. "homepage": "https://symfony.com",
  6381. "support": {
  6382. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2"
  6383. },
  6384. "funding": [
  6385. {
  6386. "url": "https://symfony.com/sponsor",
  6387. "type": "custom"
  6388. },
  6389. {
  6390. "url": "https://github.com/fabpot",
  6391. "type": "github"
  6392. },
  6393. {
  6394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6395. "type": "tidelift"
  6396. }
  6397. ],
  6398. "time": "2023-07-06T06:56:43+00:00"
  6399. },
  6400. {
  6401. "name": "symfony/event-dispatcher-contracts",
  6402. "version": "v3.3.0",
  6403. "source": {
  6404. "type": "git",
  6405. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6406. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  6407. },
  6408. "dist": {
  6409. "type": "zip",
  6410. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  6411. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  6412. "shasum": ""
  6413. },
  6414. "require": {
  6415. "php": ">=8.1",
  6416. "psr/event-dispatcher": "^1"
  6417. },
  6418. "type": "library",
  6419. "extra": {
  6420. "branch-alias": {
  6421. "dev-main": "3.4-dev"
  6422. },
  6423. "thanks": {
  6424. "name": "symfony/contracts",
  6425. "url": "https://github.com/symfony/contracts"
  6426. }
  6427. },
  6428. "autoload": {
  6429. "psr-4": {
  6430. "Symfony\\Contracts\\EventDispatcher\\": ""
  6431. }
  6432. },
  6433. "notification-url": "https://packagist.org/downloads/",
  6434. "license": [
  6435. "MIT"
  6436. ],
  6437. "authors": [
  6438. {
  6439. "name": "Nicolas Grekas",
  6440. "email": "p@tchwork.com"
  6441. },
  6442. {
  6443. "name": "Symfony Community",
  6444. "homepage": "https://symfony.com/contributors"
  6445. }
  6446. ],
  6447. "description": "Generic abstractions related to dispatching event",
  6448. "homepage": "https://symfony.com",
  6449. "keywords": [
  6450. "abstractions",
  6451. "contracts",
  6452. "decoupling",
  6453. "interfaces",
  6454. "interoperability",
  6455. "standards"
  6456. ],
  6457. "support": {
  6458. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  6459. },
  6460. "funding": [
  6461. {
  6462. "url": "https://symfony.com/sponsor",
  6463. "type": "custom"
  6464. },
  6465. {
  6466. "url": "https://github.com/fabpot",
  6467. "type": "github"
  6468. },
  6469. {
  6470. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6471. "type": "tidelift"
  6472. }
  6473. ],
  6474. "time": "2023-05-23T14:45:45+00:00"
  6475. },
  6476. {
  6477. "name": "symfony/finder",
  6478. "version": "v6.3.3",
  6479. "source": {
  6480. "type": "git",
  6481. "url": "https://github.com/symfony/finder.git",
  6482. "reference": "9915db259f67d21eefee768c1abcf1cc61b1fc9e"
  6483. },
  6484. "dist": {
  6485. "type": "zip",
  6486. "url": "https://api.github.com/repos/symfony/finder/zipball/9915db259f67d21eefee768c1abcf1cc61b1fc9e",
  6487. "reference": "9915db259f67d21eefee768c1abcf1cc61b1fc9e",
  6488. "shasum": ""
  6489. },
  6490. "require": {
  6491. "php": ">=8.1"
  6492. },
  6493. "require-dev": {
  6494. "symfony/filesystem": "^6.0"
  6495. },
  6496. "type": "library",
  6497. "autoload": {
  6498. "psr-4": {
  6499. "Symfony\\Component\\Finder\\": ""
  6500. },
  6501. "exclude-from-classmap": [
  6502. "/Tests/"
  6503. ]
  6504. },
  6505. "notification-url": "https://packagist.org/downloads/",
  6506. "license": [
  6507. "MIT"
  6508. ],
  6509. "authors": [
  6510. {
  6511. "name": "Fabien Potencier",
  6512. "email": "fabien@symfony.com"
  6513. },
  6514. {
  6515. "name": "Symfony Community",
  6516. "homepage": "https://symfony.com/contributors"
  6517. }
  6518. ],
  6519. "description": "Finds files and directories via an intuitive fluent interface",
  6520. "homepage": "https://symfony.com",
  6521. "support": {
  6522. "source": "https://github.com/symfony/finder/tree/v6.3.3"
  6523. },
  6524. "funding": [
  6525. {
  6526. "url": "https://symfony.com/sponsor",
  6527. "type": "custom"
  6528. },
  6529. {
  6530. "url": "https://github.com/fabpot",
  6531. "type": "github"
  6532. },
  6533. {
  6534. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6535. "type": "tidelift"
  6536. }
  6537. ],
  6538. "time": "2023-07-31T08:31:44+00:00"
  6539. },
  6540. {
  6541. "name": "symfony/html-sanitizer",
  6542. "version": "v6.3.4",
  6543. "source": {
  6544. "type": "git",
  6545. "url": "https://github.com/symfony/html-sanitizer.git",
  6546. "reference": "947492c7351d6b01a7b38e515c98fb1107dc357d"
  6547. },
  6548. "dist": {
  6549. "type": "zip",
  6550. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/947492c7351d6b01a7b38e515c98fb1107dc357d",
  6551. "reference": "947492c7351d6b01a7b38e515c98fb1107dc357d",
  6552. "shasum": ""
  6553. },
  6554. "require": {
  6555. "ext-dom": "*",
  6556. "league/uri": "^6.5|^7.0",
  6557. "masterminds/html5": "^2.7.2",
  6558. "php": ">=8.1"
  6559. },
  6560. "type": "library",
  6561. "autoload": {
  6562. "psr-4": {
  6563. "Symfony\\Component\\HtmlSanitizer\\": ""
  6564. },
  6565. "exclude-from-classmap": [
  6566. "/Tests/"
  6567. ]
  6568. },
  6569. "notification-url": "https://packagist.org/downloads/",
  6570. "license": [
  6571. "MIT"
  6572. ],
  6573. "authors": [
  6574. {
  6575. "name": "Titouan Galopin",
  6576. "email": "galopintitouan@gmail.com"
  6577. },
  6578. {
  6579. "name": "Symfony Community",
  6580. "homepage": "https://symfony.com/contributors"
  6581. }
  6582. ],
  6583. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  6584. "homepage": "https://symfony.com",
  6585. "keywords": [
  6586. "Purifier",
  6587. "html",
  6588. "sanitizer"
  6589. ],
  6590. "support": {
  6591. "source": "https://github.com/symfony/html-sanitizer/tree/v6.3.4"
  6592. },
  6593. "funding": [
  6594. {
  6595. "url": "https://symfony.com/sponsor",
  6596. "type": "custom"
  6597. },
  6598. {
  6599. "url": "https://github.com/fabpot",
  6600. "type": "github"
  6601. },
  6602. {
  6603. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6604. "type": "tidelift"
  6605. }
  6606. ],
  6607. "time": "2023-08-23T13:34:34+00:00"
  6608. },
  6609. {
  6610. "name": "symfony/http-foundation",
  6611. "version": "v6.3.4",
  6612. "source": {
  6613. "type": "git",
  6614. "url": "https://github.com/symfony/http-foundation.git",
  6615. "reference": "cac1556fdfdf6719668181974104e6fcfa60e844"
  6616. },
  6617. "dist": {
  6618. "type": "zip",
  6619. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cac1556fdfdf6719668181974104e6fcfa60e844",
  6620. "reference": "cac1556fdfdf6719668181974104e6fcfa60e844",
  6621. "shasum": ""
  6622. },
  6623. "require": {
  6624. "php": ">=8.1",
  6625. "symfony/deprecation-contracts": "^2.5|^3",
  6626. "symfony/polyfill-mbstring": "~1.1",
  6627. "symfony/polyfill-php83": "^1.27"
  6628. },
  6629. "conflict": {
  6630. "symfony/cache": "<6.2"
  6631. },
  6632. "require-dev": {
  6633. "doctrine/dbal": "^2.13.1|^3.0",
  6634. "predis/predis": "^1.1|^2.0",
  6635. "symfony/cache": "^5.4|^6.0",
  6636. "symfony/dependency-injection": "^5.4|^6.0",
  6637. "symfony/expression-language": "^5.4|^6.0",
  6638. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6639. "symfony/mime": "^5.4|^6.0",
  6640. "symfony/rate-limiter": "^5.2|^6.0"
  6641. },
  6642. "type": "library",
  6643. "autoload": {
  6644. "psr-4": {
  6645. "Symfony\\Component\\HttpFoundation\\": ""
  6646. },
  6647. "exclude-from-classmap": [
  6648. "/Tests/"
  6649. ]
  6650. },
  6651. "notification-url": "https://packagist.org/downloads/",
  6652. "license": [
  6653. "MIT"
  6654. ],
  6655. "authors": [
  6656. {
  6657. "name": "Fabien Potencier",
  6658. "email": "fabien@symfony.com"
  6659. },
  6660. {
  6661. "name": "Symfony Community",
  6662. "homepage": "https://symfony.com/contributors"
  6663. }
  6664. ],
  6665. "description": "Defines an object-oriented layer for the HTTP specification",
  6666. "homepage": "https://symfony.com",
  6667. "support": {
  6668. "source": "https://github.com/symfony/http-foundation/tree/v6.3.4"
  6669. },
  6670. "funding": [
  6671. {
  6672. "url": "https://symfony.com/sponsor",
  6673. "type": "custom"
  6674. },
  6675. {
  6676. "url": "https://github.com/fabpot",
  6677. "type": "github"
  6678. },
  6679. {
  6680. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6681. "type": "tidelift"
  6682. }
  6683. ],
  6684. "time": "2023-08-22T08:20:46+00:00"
  6685. },
  6686. {
  6687. "name": "symfony/http-kernel",
  6688. "version": "v6.3.4",
  6689. "source": {
  6690. "type": "git",
  6691. "url": "https://github.com/symfony/http-kernel.git",
  6692. "reference": "36abb425b4af863ae1fe54d8a8b8b4c76a2bccdb"
  6693. },
  6694. "dist": {
  6695. "type": "zip",
  6696. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/36abb425b4af863ae1fe54d8a8b8b4c76a2bccdb",
  6697. "reference": "36abb425b4af863ae1fe54d8a8b8b4c76a2bccdb",
  6698. "shasum": ""
  6699. },
  6700. "require": {
  6701. "php": ">=8.1",
  6702. "psr/log": "^1|^2|^3",
  6703. "symfony/deprecation-contracts": "^2.5|^3",
  6704. "symfony/error-handler": "^6.3",
  6705. "symfony/event-dispatcher": "^5.4|^6.0",
  6706. "symfony/http-foundation": "^6.3.4",
  6707. "symfony/polyfill-ctype": "^1.8"
  6708. },
  6709. "conflict": {
  6710. "symfony/browser-kit": "<5.4",
  6711. "symfony/cache": "<5.4",
  6712. "symfony/config": "<6.1",
  6713. "symfony/console": "<5.4",
  6714. "symfony/dependency-injection": "<6.3.4",
  6715. "symfony/doctrine-bridge": "<5.4",
  6716. "symfony/form": "<5.4",
  6717. "symfony/http-client": "<5.4",
  6718. "symfony/http-client-contracts": "<2.5",
  6719. "symfony/mailer": "<5.4",
  6720. "symfony/messenger": "<5.4",
  6721. "symfony/translation": "<5.4",
  6722. "symfony/translation-contracts": "<2.5",
  6723. "symfony/twig-bridge": "<5.4",
  6724. "symfony/validator": "<5.4",
  6725. "symfony/var-dumper": "<6.3",
  6726. "twig/twig": "<2.13"
  6727. },
  6728. "provide": {
  6729. "psr/log-implementation": "1.0|2.0|3.0"
  6730. },
  6731. "require-dev": {
  6732. "psr/cache": "^1.0|^2.0|^3.0",
  6733. "symfony/browser-kit": "^5.4|^6.0",
  6734. "symfony/clock": "^6.2",
  6735. "symfony/config": "^6.1",
  6736. "symfony/console": "^5.4|^6.0",
  6737. "symfony/css-selector": "^5.4|^6.0",
  6738. "symfony/dependency-injection": "^6.3.4",
  6739. "symfony/dom-crawler": "^5.4|^6.0",
  6740. "symfony/expression-language": "^5.4|^6.0",
  6741. "symfony/finder": "^5.4|^6.0",
  6742. "symfony/http-client-contracts": "^2.5|^3",
  6743. "symfony/process": "^5.4|^6.0",
  6744. "symfony/property-access": "^5.4.5|^6.0.5",
  6745. "symfony/routing": "^5.4|^6.0",
  6746. "symfony/serializer": "^6.3",
  6747. "symfony/stopwatch": "^5.4|^6.0",
  6748. "symfony/translation": "^5.4|^6.0",
  6749. "symfony/translation-contracts": "^2.5|^3",
  6750. "symfony/uid": "^5.4|^6.0",
  6751. "symfony/validator": "^6.3",
  6752. "symfony/var-exporter": "^6.2",
  6753. "twig/twig": "^2.13|^3.0.4"
  6754. },
  6755. "type": "library",
  6756. "autoload": {
  6757. "psr-4": {
  6758. "Symfony\\Component\\HttpKernel\\": ""
  6759. },
  6760. "exclude-from-classmap": [
  6761. "/Tests/"
  6762. ]
  6763. },
  6764. "notification-url": "https://packagist.org/downloads/",
  6765. "license": [
  6766. "MIT"
  6767. ],
  6768. "authors": [
  6769. {
  6770. "name": "Fabien Potencier",
  6771. "email": "fabien@symfony.com"
  6772. },
  6773. {
  6774. "name": "Symfony Community",
  6775. "homepage": "https://symfony.com/contributors"
  6776. }
  6777. ],
  6778. "description": "Provides a structured process for converting a Request into a Response",
  6779. "homepage": "https://symfony.com",
  6780. "support": {
  6781. "source": "https://github.com/symfony/http-kernel/tree/v6.3.4"
  6782. },
  6783. "funding": [
  6784. {
  6785. "url": "https://symfony.com/sponsor",
  6786. "type": "custom"
  6787. },
  6788. {
  6789. "url": "https://github.com/fabpot",
  6790. "type": "github"
  6791. },
  6792. {
  6793. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6794. "type": "tidelift"
  6795. }
  6796. ],
  6797. "time": "2023-08-26T13:54:49+00:00"
  6798. },
  6799. {
  6800. "name": "symfony/mailer",
  6801. "version": "v6.3.0",
  6802. "source": {
  6803. "type": "git",
  6804. "url": "https://github.com/symfony/mailer.git",
  6805. "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435"
  6806. },
  6807. "dist": {
  6808. "type": "zip",
  6809. "url": "https://api.github.com/repos/symfony/mailer/zipball/7b03d9be1dea29bfec0a6c7b603f5072a4c97435",
  6810. "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435",
  6811. "shasum": ""
  6812. },
  6813. "require": {
  6814. "egulias/email-validator": "^2.1.10|^3|^4",
  6815. "php": ">=8.1",
  6816. "psr/event-dispatcher": "^1",
  6817. "psr/log": "^1|^2|^3",
  6818. "symfony/event-dispatcher": "^5.4|^6.0",
  6819. "symfony/mime": "^6.2",
  6820. "symfony/service-contracts": "^2.5|^3"
  6821. },
  6822. "conflict": {
  6823. "symfony/http-client-contracts": "<2.5",
  6824. "symfony/http-kernel": "<5.4",
  6825. "symfony/messenger": "<6.2",
  6826. "symfony/mime": "<6.2",
  6827. "symfony/twig-bridge": "<6.2.1"
  6828. },
  6829. "require-dev": {
  6830. "symfony/console": "^5.4|^6.0",
  6831. "symfony/http-client": "^5.4|^6.0",
  6832. "symfony/messenger": "^6.2",
  6833. "symfony/twig-bridge": "^6.2"
  6834. },
  6835. "type": "library",
  6836. "autoload": {
  6837. "psr-4": {
  6838. "Symfony\\Component\\Mailer\\": ""
  6839. },
  6840. "exclude-from-classmap": [
  6841. "/Tests/"
  6842. ]
  6843. },
  6844. "notification-url": "https://packagist.org/downloads/",
  6845. "license": [
  6846. "MIT"
  6847. ],
  6848. "authors": [
  6849. {
  6850. "name": "Fabien Potencier",
  6851. "email": "fabien@symfony.com"
  6852. },
  6853. {
  6854. "name": "Symfony Community",
  6855. "homepage": "https://symfony.com/contributors"
  6856. }
  6857. ],
  6858. "description": "Helps sending emails",
  6859. "homepage": "https://symfony.com",
  6860. "support": {
  6861. "source": "https://github.com/symfony/mailer/tree/v6.3.0"
  6862. },
  6863. "funding": [
  6864. {
  6865. "url": "https://symfony.com/sponsor",
  6866. "type": "custom"
  6867. },
  6868. {
  6869. "url": "https://github.com/fabpot",
  6870. "type": "github"
  6871. },
  6872. {
  6873. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6874. "type": "tidelift"
  6875. }
  6876. ],
  6877. "time": "2023-05-29T12:49:39+00:00"
  6878. },
  6879. {
  6880. "name": "symfony/mime",
  6881. "version": "v6.3.3",
  6882. "source": {
  6883. "type": "git",
  6884. "url": "https://github.com/symfony/mime.git",
  6885. "reference": "9a0cbd52baa5ba5a5b1f0cacc59466f194730f98"
  6886. },
  6887. "dist": {
  6888. "type": "zip",
  6889. "url": "https://api.github.com/repos/symfony/mime/zipball/9a0cbd52baa5ba5a5b1f0cacc59466f194730f98",
  6890. "reference": "9a0cbd52baa5ba5a5b1f0cacc59466f194730f98",
  6891. "shasum": ""
  6892. },
  6893. "require": {
  6894. "php": ">=8.1",
  6895. "symfony/deprecation-contracts": "^2.5|^3",
  6896. "symfony/polyfill-intl-idn": "^1.10",
  6897. "symfony/polyfill-mbstring": "^1.0"
  6898. },
  6899. "conflict": {
  6900. "egulias/email-validator": "~3.0.0",
  6901. "phpdocumentor/reflection-docblock": "<3.2.2",
  6902. "phpdocumentor/type-resolver": "<1.4.0",
  6903. "symfony/mailer": "<5.4",
  6904. "symfony/serializer": "<6.2.13|>=6.3,<6.3.2"
  6905. },
  6906. "require-dev": {
  6907. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6908. "league/html-to-markdown": "^5.0",
  6909. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6910. "symfony/dependency-injection": "^5.4|^6.0",
  6911. "symfony/property-access": "^5.4|^6.0",
  6912. "symfony/property-info": "^5.4|^6.0",
  6913. "symfony/serializer": "~6.2.13|^6.3.2"
  6914. },
  6915. "type": "library",
  6916. "autoload": {
  6917. "psr-4": {
  6918. "Symfony\\Component\\Mime\\": ""
  6919. },
  6920. "exclude-from-classmap": [
  6921. "/Tests/"
  6922. ]
  6923. },
  6924. "notification-url": "https://packagist.org/downloads/",
  6925. "license": [
  6926. "MIT"
  6927. ],
  6928. "authors": [
  6929. {
  6930. "name": "Fabien Potencier",
  6931. "email": "fabien@symfony.com"
  6932. },
  6933. {
  6934. "name": "Symfony Community",
  6935. "homepage": "https://symfony.com/contributors"
  6936. }
  6937. ],
  6938. "description": "Allows manipulating MIME messages",
  6939. "homepage": "https://symfony.com",
  6940. "keywords": [
  6941. "mime",
  6942. "mime-type"
  6943. ],
  6944. "support": {
  6945. "source": "https://github.com/symfony/mime/tree/v6.3.3"
  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": "2023-07-31T07:08:24+00:00"
  6962. },
  6963. {
  6964. "name": "symfony/polyfill-ctype",
  6965. "version": "v1.28.0",
  6966. "source": {
  6967. "type": "git",
  6968. "url": "https://github.com/symfony/polyfill-ctype.git",
  6969. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  6970. },
  6971. "dist": {
  6972. "type": "zip",
  6973. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6974. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6975. "shasum": ""
  6976. },
  6977. "require": {
  6978. "php": ">=7.1"
  6979. },
  6980. "provide": {
  6981. "ext-ctype": "*"
  6982. },
  6983. "suggest": {
  6984. "ext-ctype": "For best performance"
  6985. },
  6986. "type": "library",
  6987. "extra": {
  6988. "branch-alias": {
  6989. "dev-main": "1.28-dev"
  6990. },
  6991. "thanks": {
  6992. "name": "symfony/polyfill",
  6993. "url": "https://github.com/symfony/polyfill"
  6994. }
  6995. },
  6996. "autoload": {
  6997. "files": [
  6998. "bootstrap.php"
  6999. ],
  7000. "psr-4": {
  7001. "Symfony\\Polyfill\\Ctype\\": ""
  7002. }
  7003. },
  7004. "notification-url": "https://packagist.org/downloads/",
  7005. "license": [
  7006. "MIT"
  7007. ],
  7008. "authors": [
  7009. {
  7010. "name": "Gert de Pagter",
  7011. "email": "BackEndTea@gmail.com"
  7012. },
  7013. {
  7014. "name": "Symfony Community",
  7015. "homepage": "https://symfony.com/contributors"
  7016. }
  7017. ],
  7018. "description": "Symfony polyfill for ctype functions",
  7019. "homepage": "https://symfony.com",
  7020. "keywords": [
  7021. "compatibility",
  7022. "ctype",
  7023. "polyfill",
  7024. "portable"
  7025. ],
  7026. "support": {
  7027. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  7028. },
  7029. "funding": [
  7030. {
  7031. "url": "https://symfony.com/sponsor",
  7032. "type": "custom"
  7033. },
  7034. {
  7035. "url": "https://github.com/fabpot",
  7036. "type": "github"
  7037. },
  7038. {
  7039. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7040. "type": "tidelift"
  7041. }
  7042. ],
  7043. "time": "2023-01-26T09:26:14+00:00"
  7044. },
  7045. {
  7046. "name": "symfony/polyfill-intl-grapheme",
  7047. "version": "v1.28.0",
  7048. "source": {
  7049. "type": "git",
  7050. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7051. "reference": "875e90aeea2777b6f135677f618529449334a612"
  7052. },
  7053. "dist": {
  7054. "type": "zip",
  7055. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  7056. "reference": "875e90aeea2777b6f135677f618529449334a612",
  7057. "shasum": ""
  7058. },
  7059. "require": {
  7060. "php": ">=7.1"
  7061. },
  7062. "suggest": {
  7063. "ext-intl": "For best performance"
  7064. },
  7065. "type": "library",
  7066. "extra": {
  7067. "branch-alias": {
  7068. "dev-main": "1.28-dev"
  7069. },
  7070. "thanks": {
  7071. "name": "symfony/polyfill",
  7072. "url": "https://github.com/symfony/polyfill"
  7073. }
  7074. },
  7075. "autoload": {
  7076. "files": [
  7077. "bootstrap.php"
  7078. ],
  7079. "psr-4": {
  7080. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7081. }
  7082. },
  7083. "notification-url": "https://packagist.org/downloads/",
  7084. "license": [
  7085. "MIT"
  7086. ],
  7087. "authors": [
  7088. {
  7089. "name": "Nicolas Grekas",
  7090. "email": "p@tchwork.com"
  7091. },
  7092. {
  7093. "name": "Symfony Community",
  7094. "homepage": "https://symfony.com/contributors"
  7095. }
  7096. ],
  7097. "description": "Symfony polyfill for intl's grapheme_* functions",
  7098. "homepage": "https://symfony.com",
  7099. "keywords": [
  7100. "compatibility",
  7101. "grapheme",
  7102. "intl",
  7103. "polyfill",
  7104. "portable",
  7105. "shim"
  7106. ],
  7107. "support": {
  7108. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  7109. },
  7110. "funding": [
  7111. {
  7112. "url": "https://symfony.com/sponsor",
  7113. "type": "custom"
  7114. },
  7115. {
  7116. "url": "https://github.com/fabpot",
  7117. "type": "github"
  7118. },
  7119. {
  7120. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7121. "type": "tidelift"
  7122. }
  7123. ],
  7124. "time": "2023-01-26T09:26:14+00:00"
  7125. },
  7126. {
  7127. "name": "symfony/polyfill-intl-idn",
  7128. "version": "v1.28.0",
  7129. "source": {
  7130. "type": "git",
  7131. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7132. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  7133. },
  7134. "dist": {
  7135. "type": "zip",
  7136. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  7137. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  7138. "shasum": ""
  7139. },
  7140. "require": {
  7141. "php": ">=7.1",
  7142. "symfony/polyfill-intl-normalizer": "^1.10",
  7143. "symfony/polyfill-php72": "^1.10"
  7144. },
  7145. "suggest": {
  7146. "ext-intl": "For best performance"
  7147. },
  7148. "type": "library",
  7149. "extra": {
  7150. "branch-alias": {
  7151. "dev-main": "1.28-dev"
  7152. },
  7153. "thanks": {
  7154. "name": "symfony/polyfill",
  7155. "url": "https://github.com/symfony/polyfill"
  7156. }
  7157. },
  7158. "autoload": {
  7159. "files": [
  7160. "bootstrap.php"
  7161. ],
  7162. "psr-4": {
  7163. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7164. }
  7165. },
  7166. "notification-url": "https://packagist.org/downloads/",
  7167. "license": [
  7168. "MIT"
  7169. ],
  7170. "authors": [
  7171. {
  7172. "name": "Laurent Bassin",
  7173. "email": "laurent@bassin.info"
  7174. },
  7175. {
  7176. "name": "Trevor Rowbotham",
  7177. "email": "trevor.rowbotham@pm.me"
  7178. },
  7179. {
  7180. "name": "Symfony Community",
  7181. "homepage": "https://symfony.com/contributors"
  7182. }
  7183. ],
  7184. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7185. "homepage": "https://symfony.com",
  7186. "keywords": [
  7187. "compatibility",
  7188. "idn",
  7189. "intl",
  7190. "polyfill",
  7191. "portable",
  7192. "shim"
  7193. ],
  7194. "support": {
  7195. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  7196. },
  7197. "funding": [
  7198. {
  7199. "url": "https://symfony.com/sponsor",
  7200. "type": "custom"
  7201. },
  7202. {
  7203. "url": "https://github.com/fabpot",
  7204. "type": "github"
  7205. },
  7206. {
  7207. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7208. "type": "tidelift"
  7209. }
  7210. ],
  7211. "time": "2023-01-26T09:30:37+00:00"
  7212. },
  7213. {
  7214. "name": "symfony/polyfill-intl-normalizer",
  7215. "version": "v1.28.0",
  7216. "source": {
  7217. "type": "git",
  7218. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7219. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  7220. },
  7221. "dist": {
  7222. "type": "zip",
  7223. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7224. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7225. "shasum": ""
  7226. },
  7227. "require": {
  7228. "php": ">=7.1"
  7229. },
  7230. "suggest": {
  7231. "ext-intl": "For best performance"
  7232. },
  7233. "type": "library",
  7234. "extra": {
  7235. "branch-alias": {
  7236. "dev-main": "1.28-dev"
  7237. },
  7238. "thanks": {
  7239. "name": "symfony/polyfill",
  7240. "url": "https://github.com/symfony/polyfill"
  7241. }
  7242. },
  7243. "autoload": {
  7244. "files": [
  7245. "bootstrap.php"
  7246. ],
  7247. "psr-4": {
  7248. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7249. },
  7250. "classmap": [
  7251. "Resources/stubs"
  7252. ]
  7253. },
  7254. "notification-url": "https://packagist.org/downloads/",
  7255. "license": [
  7256. "MIT"
  7257. ],
  7258. "authors": [
  7259. {
  7260. "name": "Nicolas Grekas",
  7261. "email": "p@tchwork.com"
  7262. },
  7263. {
  7264. "name": "Symfony Community",
  7265. "homepage": "https://symfony.com/contributors"
  7266. }
  7267. ],
  7268. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7269. "homepage": "https://symfony.com",
  7270. "keywords": [
  7271. "compatibility",
  7272. "intl",
  7273. "normalizer",
  7274. "polyfill",
  7275. "portable",
  7276. "shim"
  7277. ],
  7278. "support": {
  7279. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  7280. },
  7281. "funding": [
  7282. {
  7283. "url": "https://symfony.com/sponsor",
  7284. "type": "custom"
  7285. },
  7286. {
  7287. "url": "https://github.com/fabpot",
  7288. "type": "github"
  7289. },
  7290. {
  7291. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7292. "type": "tidelift"
  7293. }
  7294. ],
  7295. "time": "2023-01-26T09:26:14+00:00"
  7296. },
  7297. {
  7298. "name": "symfony/polyfill-mbstring",
  7299. "version": "v1.28.0",
  7300. "source": {
  7301. "type": "git",
  7302. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7303. "reference": "42292d99c55abe617799667f454222c54c60e229"
  7304. },
  7305. "dist": {
  7306. "type": "zip",
  7307. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  7308. "reference": "42292d99c55abe617799667f454222c54c60e229",
  7309. "shasum": ""
  7310. },
  7311. "require": {
  7312. "php": ">=7.1"
  7313. },
  7314. "provide": {
  7315. "ext-mbstring": "*"
  7316. },
  7317. "suggest": {
  7318. "ext-mbstring": "For best performance"
  7319. },
  7320. "type": "library",
  7321. "extra": {
  7322. "branch-alias": {
  7323. "dev-main": "1.28-dev"
  7324. },
  7325. "thanks": {
  7326. "name": "symfony/polyfill",
  7327. "url": "https://github.com/symfony/polyfill"
  7328. }
  7329. },
  7330. "autoload": {
  7331. "files": [
  7332. "bootstrap.php"
  7333. ],
  7334. "psr-4": {
  7335. "Symfony\\Polyfill\\Mbstring\\": ""
  7336. }
  7337. },
  7338. "notification-url": "https://packagist.org/downloads/",
  7339. "license": [
  7340. "MIT"
  7341. ],
  7342. "authors": [
  7343. {
  7344. "name": "Nicolas Grekas",
  7345. "email": "p@tchwork.com"
  7346. },
  7347. {
  7348. "name": "Symfony Community",
  7349. "homepage": "https://symfony.com/contributors"
  7350. }
  7351. ],
  7352. "description": "Symfony polyfill for the Mbstring extension",
  7353. "homepage": "https://symfony.com",
  7354. "keywords": [
  7355. "compatibility",
  7356. "mbstring",
  7357. "polyfill",
  7358. "portable",
  7359. "shim"
  7360. ],
  7361. "support": {
  7362. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  7363. },
  7364. "funding": [
  7365. {
  7366. "url": "https://symfony.com/sponsor",
  7367. "type": "custom"
  7368. },
  7369. {
  7370. "url": "https://github.com/fabpot",
  7371. "type": "github"
  7372. },
  7373. {
  7374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7375. "type": "tidelift"
  7376. }
  7377. ],
  7378. "time": "2023-07-28T09:04:16+00:00"
  7379. },
  7380. {
  7381. "name": "symfony/polyfill-php72",
  7382. "version": "v1.28.0",
  7383. "source": {
  7384. "type": "git",
  7385. "url": "https://github.com/symfony/polyfill-php72.git",
  7386. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  7387. },
  7388. "dist": {
  7389. "type": "zip",
  7390. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  7391. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  7392. "shasum": ""
  7393. },
  7394. "require": {
  7395. "php": ">=7.1"
  7396. },
  7397. "type": "library",
  7398. "extra": {
  7399. "branch-alias": {
  7400. "dev-main": "1.28-dev"
  7401. },
  7402. "thanks": {
  7403. "name": "symfony/polyfill",
  7404. "url": "https://github.com/symfony/polyfill"
  7405. }
  7406. },
  7407. "autoload": {
  7408. "files": [
  7409. "bootstrap.php"
  7410. ],
  7411. "psr-4": {
  7412. "Symfony\\Polyfill\\Php72\\": ""
  7413. }
  7414. },
  7415. "notification-url": "https://packagist.org/downloads/",
  7416. "license": [
  7417. "MIT"
  7418. ],
  7419. "authors": [
  7420. {
  7421. "name": "Nicolas Grekas",
  7422. "email": "p@tchwork.com"
  7423. },
  7424. {
  7425. "name": "Symfony Community",
  7426. "homepage": "https://symfony.com/contributors"
  7427. }
  7428. ],
  7429. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7430. "homepage": "https://symfony.com",
  7431. "keywords": [
  7432. "compatibility",
  7433. "polyfill",
  7434. "portable",
  7435. "shim"
  7436. ],
  7437. "support": {
  7438. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  7439. },
  7440. "funding": [
  7441. {
  7442. "url": "https://symfony.com/sponsor",
  7443. "type": "custom"
  7444. },
  7445. {
  7446. "url": "https://github.com/fabpot",
  7447. "type": "github"
  7448. },
  7449. {
  7450. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7451. "type": "tidelift"
  7452. }
  7453. ],
  7454. "time": "2023-01-26T09:26:14+00:00"
  7455. },
  7456. {
  7457. "name": "symfony/polyfill-php80",
  7458. "version": "v1.28.0",
  7459. "source": {
  7460. "type": "git",
  7461. "url": "https://github.com/symfony/polyfill-php80.git",
  7462. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  7463. },
  7464. "dist": {
  7465. "type": "zip",
  7466. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7467. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7468. "shasum": ""
  7469. },
  7470. "require": {
  7471. "php": ">=7.1"
  7472. },
  7473. "type": "library",
  7474. "extra": {
  7475. "branch-alias": {
  7476. "dev-main": "1.28-dev"
  7477. },
  7478. "thanks": {
  7479. "name": "symfony/polyfill",
  7480. "url": "https://github.com/symfony/polyfill"
  7481. }
  7482. },
  7483. "autoload": {
  7484. "files": [
  7485. "bootstrap.php"
  7486. ],
  7487. "psr-4": {
  7488. "Symfony\\Polyfill\\Php80\\": ""
  7489. },
  7490. "classmap": [
  7491. "Resources/stubs"
  7492. ]
  7493. },
  7494. "notification-url": "https://packagist.org/downloads/",
  7495. "license": [
  7496. "MIT"
  7497. ],
  7498. "authors": [
  7499. {
  7500. "name": "Ion Bazan",
  7501. "email": "ion.bazan@gmail.com"
  7502. },
  7503. {
  7504. "name": "Nicolas Grekas",
  7505. "email": "p@tchwork.com"
  7506. },
  7507. {
  7508. "name": "Symfony Community",
  7509. "homepage": "https://symfony.com/contributors"
  7510. }
  7511. ],
  7512. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7513. "homepage": "https://symfony.com",
  7514. "keywords": [
  7515. "compatibility",
  7516. "polyfill",
  7517. "portable",
  7518. "shim"
  7519. ],
  7520. "support": {
  7521. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  7522. },
  7523. "funding": [
  7524. {
  7525. "url": "https://symfony.com/sponsor",
  7526. "type": "custom"
  7527. },
  7528. {
  7529. "url": "https://github.com/fabpot",
  7530. "type": "github"
  7531. },
  7532. {
  7533. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7534. "type": "tidelift"
  7535. }
  7536. ],
  7537. "time": "2023-01-26T09:26:14+00:00"
  7538. },
  7539. {
  7540. "name": "symfony/polyfill-php83",
  7541. "version": "v1.28.0",
  7542. "source": {
  7543. "type": "git",
  7544. "url": "https://github.com/symfony/polyfill-php83.git",
  7545. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11"
  7546. },
  7547. "dist": {
  7548. "type": "zip",
  7549. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  7550. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  7551. "shasum": ""
  7552. },
  7553. "require": {
  7554. "php": ">=7.1",
  7555. "symfony/polyfill-php80": "^1.14"
  7556. },
  7557. "type": "library",
  7558. "extra": {
  7559. "branch-alias": {
  7560. "dev-main": "1.28-dev"
  7561. },
  7562. "thanks": {
  7563. "name": "symfony/polyfill",
  7564. "url": "https://github.com/symfony/polyfill"
  7565. }
  7566. },
  7567. "autoload": {
  7568. "files": [
  7569. "bootstrap.php"
  7570. ],
  7571. "psr-4": {
  7572. "Symfony\\Polyfill\\Php83\\": ""
  7573. },
  7574. "classmap": [
  7575. "Resources/stubs"
  7576. ]
  7577. },
  7578. "notification-url": "https://packagist.org/downloads/",
  7579. "license": [
  7580. "MIT"
  7581. ],
  7582. "authors": [
  7583. {
  7584. "name": "Nicolas Grekas",
  7585. "email": "p@tchwork.com"
  7586. },
  7587. {
  7588. "name": "Symfony Community",
  7589. "homepage": "https://symfony.com/contributors"
  7590. }
  7591. ],
  7592. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  7593. "homepage": "https://symfony.com",
  7594. "keywords": [
  7595. "compatibility",
  7596. "polyfill",
  7597. "portable",
  7598. "shim"
  7599. ],
  7600. "support": {
  7601. "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0"
  7602. },
  7603. "funding": [
  7604. {
  7605. "url": "https://symfony.com/sponsor",
  7606. "type": "custom"
  7607. },
  7608. {
  7609. "url": "https://github.com/fabpot",
  7610. "type": "github"
  7611. },
  7612. {
  7613. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7614. "type": "tidelift"
  7615. }
  7616. ],
  7617. "time": "2023-08-16T06:22:46+00:00"
  7618. },
  7619. {
  7620. "name": "symfony/polyfill-uuid",
  7621. "version": "v1.28.0",
  7622. "source": {
  7623. "type": "git",
  7624. "url": "https://github.com/symfony/polyfill-uuid.git",
  7625. "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e"
  7626. },
  7627. "dist": {
  7628. "type": "zip",
  7629. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/9c44518a5aff8da565c8a55dbe85d2769e6f630e",
  7630. "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e",
  7631. "shasum": ""
  7632. },
  7633. "require": {
  7634. "php": ">=7.1"
  7635. },
  7636. "provide": {
  7637. "ext-uuid": "*"
  7638. },
  7639. "suggest": {
  7640. "ext-uuid": "For best performance"
  7641. },
  7642. "type": "library",
  7643. "extra": {
  7644. "branch-alias": {
  7645. "dev-main": "1.28-dev"
  7646. },
  7647. "thanks": {
  7648. "name": "symfony/polyfill",
  7649. "url": "https://github.com/symfony/polyfill"
  7650. }
  7651. },
  7652. "autoload": {
  7653. "files": [
  7654. "bootstrap.php"
  7655. ],
  7656. "psr-4": {
  7657. "Symfony\\Polyfill\\Uuid\\": ""
  7658. }
  7659. },
  7660. "notification-url": "https://packagist.org/downloads/",
  7661. "license": [
  7662. "MIT"
  7663. ],
  7664. "authors": [
  7665. {
  7666. "name": "Grégoire Pineau",
  7667. "email": "lyrixx@lyrixx.info"
  7668. },
  7669. {
  7670. "name": "Symfony Community",
  7671. "homepage": "https://symfony.com/contributors"
  7672. }
  7673. ],
  7674. "description": "Symfony polyfill for uuid functions",
  7675. "homepage": "https://symfony.com",
  7676. "keywords": [
  7677. "compatibility",
  7678. "polyfill",
  7679. "portable",
  7680. "uuid"
  7681. ],
  7682. "support": {
  7683. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.28.0"
  7684. },
  7685. "funding": [
  7686. {
  7687. "url": "https://symfony.com/sponsor",
  7688. "type": "custom"
  7689. },
  7690. {
  7691. "url": "https://github.com/fabpot",
  7692. "type": "github"
  7693. },
  7694. {
  7695. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7696. "type": "tidelift"
  7697. }
  7698. ],
  7699. "time": "2023-01-26T09:26:14+00:00"
  7700. },
  7701. {
  7702. "name": "symfony/process",
  7703. "version": "v6.3.4",
  7704. "source": {
  7705. "type": "git",
  7706. "url": "https://github.com/symfony/process.git",
  7707. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54"
  7708. },
  7709. "dist": {
  7710. "type": "zip",
  7711. "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54",
  7712. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54",
  7713. "shasum": ""
  7714. },
  7715. "require": {
  7716. "php": ">=8.1"
  7717. },
  7718. "type": "library",
  7719. "autoload": {
  7720. "psr-4": {
  7721. "Symfony\\Component\\Process\\": ""
  7722. },
  7723. "exclude-from-classmap": [
  7724. "/Tests/"
  7725. ]
  7726. },
  7727. "notification-url": "https://packagist.org/downloads/",
  7728. "license": [
  7729. "MIT"
  7730. ],
  7731. "authors": [
  7732. {
  7733. "name": "Fabien Potencier",
  7734. "email": "fabien@symfony.com"
  7735. },
  7736. {
  7737. "name": "Symfony Community",
  7738. "homepage": "https://symfony.com/contributors"
  7739. }
  7740. ],
  7741. "description": "Executes commands in sub-processes",
  7742. "homepage": "https://symfony.com",
  7743. "support": {
  7744. "source": "https://github.com/symfony/process/tree/v6.3.4"
  7745. },
  7746. "funding": [
  7747. {
  7748. "url": "https://symfony.com/sponsor",
  7749. "type": "custom"
  7750. },
  7751. {
  7752. "url": "https://github.com/fabpot",
  7753. "type": "github"
  7754. },
  7755. {
  7756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7757. "type": "tidelift"
  7758. }
  7759. ],
  7760. "time": "2023-08-07T10:39:22+00:00"
  7761. },
  7762. {
  7763. "name": "symfony/routing",
  7764. "version": "v6.3.3",
  7765. "source": {
  7766. "type": "git",
  7767. "url": "https://github.com/symfony/routing.git",
  7768. "reference": "e7243039ab663822ff134fbc46099b5fdfa16f6a"
  7769. },
  7770. "dist": {
  7771. "type": "zip",
  7772. "url": "https://api.github.com/repos/symfony/routing/zipball/e7243039ab663822ff134fbc46099b5fdfa16f6a",
  7773. "reference": "e7243039ab663822ff134fbc46099b5fdfa16f6a",
  7774. "shasum": ""
  7775. },
  7776. "require": {
  7777. "php": ">=8.1",
  7778. "symfony/deprecation-contracts": "^2.5|^3"
  7779. },
  7780. "conflict": {
  7781. "doctrine/annotations": "<1.12",
  7782. "symfony/config": "<6.2",
  7783. "symfony/dependency-injection": "<5.4",
  7784. "symfony/yaml": "<5.4"
  7785. },
  7786. "require-dev": {
  7787. "doctrine/annotations": "^1.12|^2",
  7788. "psr/log": "^1|^2|^3",
  7789. "symfony/config": "^6.2",
  7790. "symfony/dependency-injection": "^5.4|^6.0",
  7791. "symfony/expression-language": "^5.4|^6.0",
  7792. "symfony/http-foundation": "^5.4|^6.0",
  7793. "symfony/yaml": "^5.4|^6.0"
  7794. },
  7795. "type": "library",
  7796. "autoload": {
  7797. "psr-4": {
  7798. "Symfony\\Component\\Routing\\": ""
  7799. },
  7800. "exclude-from-classmap": [
  7801. "/Tests/"
  7802. ]
  7803. },
  7804. "notification-url": "https://packagist.org/downloads/",
  7805. "license": [
  7806. "MIT"
  7807. ],
  7808. "authors": [
  7809. {
  7810. "name": "Fabien Potencier",
  7811. "email": "fabien@symfony.com"
  7812. },
  7813. {
  7814. "name": "Symfony Community",
  7815. "homepage": "https://symfony.com/contributors"
  7816. }
  7817. ],
  7818. "description": "Maps an HTTP request to a set of configuration variables",
  7819. "homepage": "https://symfony.com",
  7820. "keywords": [
  7821. "router",
  7822. "routing",
  7823. "uri",
  7824. "url"
  7825. ],
  7826. "support": {
  7827. "source": "https://github.com/symfony/routing/tree/v6.3.3"
  7828. },
  7829. "funding": [
  7830. {
  7831. "url": "https://symfony.com/sponsor",
  7832. "type": "custom"
  7833. },
  7834. {
  7835. "url": "https://github.com/fabpot",
  7836. "type": "github"
  7837. },
  7838. {
  7839. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7840. "type": "tidelift"
  7841. }
  7842. ],
  7843. "time": "2023-07-31T07:08:24+00:00"
  7844. },
  7845. {
  7846. "name": "symfony/service-contracts",
  7847. "version": "v3.3.0",
  7848. "source": {
  7849. "type": "git",
  7850. "url": "https://github.com/symfony/service-contracts.git",
  7851. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  7852. },
  7853. "dist": {
  7854. "type": "zip",
  7855. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  7856. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  7857. "shasum": ""
  7858. },
  7859. "require": {
  7860. "php": ">=8.1",
  7861. "psr/container": "^2.0"
  7862. },
  7863. "conflict": {
  7864. "ext-psr": "<1.1|>=2"
  7865. },
  7866. "type": "library",
  7867. "extra": {
  7868. "branch-alias": {
  7869. "dev-main": "3.4-dev"
  7870. },
  7871. "thanks": {
  7872. "name": "symfony/contracts",
  7873. "url": "https://github.com/symfony/contracts"
  7874. }
  7875. },
  7876. "autoload": {
  7877. "psr-4": {
  7878. "Symfony\\Contracts\\Service\\": ""
  7879. },
  7880. "exclude-from-classmap": [
  7881. "/Test/"
  7882. ]
  7883. },
  7884. "notification-url": "https://packagist.org/downloads/",
  7885. "license": [
  7886. "MIT"
  7887. ],
  7888. "authors": [
  7889. {
  7890. "name": "Nicolas Grekas",
  7891. "email": "p@tchwork.com"
  7892. },
  7893. {
  7894. "name": "Symfony Community",
  7895. "homepage": "https://symfony.com/contributors"
  7896. }
  7897. ],
  7898. "description": "Generic abstractions related to writing services",
  7899. "homepage": "https://symfony.com",
  7900. "keywords": [
  7901. "abstractions",
  7902. "contracts",
  7903. "decoupling",
  7904. "interfaces",
  7905. "interoperability",
  7906. "standards"
  7907. ],
  7908. "support": {
  7909. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  7910. },
  7911. "funding": [
  7912. {
  7913. "url": "https://symfony.com/sponsor",
  7914. "type": "custom"
  7915. },
  7916. {
  7917. "url": "https://github.com/fabpot",
  7918. "type": "github"
  7919. },
  7920. {
  7921. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7922. "type": "tidelift"
  7923. }
  7924. ],
  7925. "time": "2023-05-23T14:45:45+00:00"
  7926. },
  7927. {
  7928. "name": "symfony/string",
  7929. "version": "v6.3.2",
  7930. "source": {
  7931. "type": "git",
  7932. "url": "https://github.com/symfony/string.git",
  7933. "reference": "53d1a83225002635bca3482fcbf963001313fb68"
  7934. },
  7935. "dist": {
  7936. "type": "zip",
  7937. "url": "https://api.github.com/repos/symfony/string/zipball/53d1a83225002635bca3482fcbf963001313fb68",
  7938. "reference": "53d1a83225002635bca3482fcbf963001313fb68",
  7939. "shasum": ""
  7940. },
  7941. "require": {
  7942. "php": ">=8.1",
  7943. "symfony/polyfill-ctype": "~1.8",
  7944. "symfony/polyfill-intl-grapheme": "~1.0",
  7945. "symfony/polyfill-intl-normalizer": "~1.0",
  7946. "symfony/polyfill-mbstring": "~1.0"
  7947. },
  7948. "conflict": {
  7949. "symfony/translation-contracts": "<2.5"
  7950. },
  7951. "require-dev": {
  7952. "symfony/error-handler": "^5.4|^6.0",
  7953. "symfony/http-client": "^5.4|^6.0",
  7954. "symfony/intl": "^6.2",
  7955. "symfony/translation-contracts": "^2.5|^3.0",
  7956. "symfony/var-exporter": "^5.4|^6.0"
  7957. },
  7958. "type": "library",
  7959. "autoload": {
  7960. "files": [
  7961. "Resources/functions.php"
  7962. ],
  7963. "psr-4": {
  7964. "Symfony\\Component\\String\\": ""
  7965. },
  7966. "exclude-from-classmap": [
  7967. "/Tests/"
  7968. ]
  7969. },
  7970. "notification-url": "https://packagist.org/downloads/",
  7971. "license": [
  7972. "MIT"
  7973. ],
  7974. "authors": [
  7975. {
  7976. "name": "Nicolas Grekas",
  7977. "email": "p@tchwork.com"
  7978. },
  7979. {
  7980. "name": "Symfony Community",
  7981. "homepage": "https://symfony.com/contributors"
  7982. }
  7983. ],
  7984. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7985. "homepage": "https://symfony.com",
  7986. "keywords": [
  7987. "grapheme",
  7988. "i18n",
  7989. "string",
  7990. "unicode",
  7991. "utf-8",
  7992. "utf8"
  7993. ],
  7994. "support": {
  7995. "source": "https://github.com/symfony/string/tree/v6.3.2"
  7996. },
  7997. "funding": [
  7998. {
  7999. "url": "https://symfony.com/sponsor",
  8000. "type": "custom"
  8001. },
  8002. {
  8003. "url": "https://github.com/fabpot",
  8004. "type": "github"
  8005. },
  8006. {
  8007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8008. "type": "tidelift"
  8009. }
  8010. ],
  8011. "time": "2023-07-05T08:41:27+00:00"
  8012. },
  8013. {
  8014. "name": "symfony/translation",
  8015. "version": "v6.3.3",
  8016. "source": {
  8017. "type": "git",
  8018. "url": "https://github.com/symfony/translation.git",
  8019. "reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd"
  8020. },
  8021. "dist": {
  8022. "type": "zip",
  8023. "url": "https://api.github.com/repos/symfony/translation/zipball/3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd",
  8024. "reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd",
  8025. "shasum": ""
  8026. },
  8027. "require": {
  8028. "php": ">=8.1",
  8029. "symfony/deprecation-contracts": "^2.5|^3",
  8030. "symfony/polyfill-mbstring": "~1.0",
  8031. "symfony/translation-contracts": "^2.5|^3.0"
  8032. },
  8033. "conflict": {
  8034. "symfony/config": "<5.4",
  8035. "symfony/console": "<5.4",
  8036. "symfony/dependency-injection": "<5.4",
  8037. "symfony/http-client-contracts": "<2.5",
  8038. "symfony/http-kernel": "<5.4",
  8039. "symfony/service-contracts": "<2.5",
  8040. "symfony/twig-bundle": "<5.4",
  8041. "symfony/yaml": "<5.4"
  8042. },
  8043. "provide": {
  8044. "symfony/translation-implementation": "2.3|3.0"
  8045. },
  8046. "require-dev": {
  8047. "nikic/php-parser": "^4.13",
  8048. "psr/log": "^1|^2|^3",
  8049. "symfony/config": "^5.4|^6.0",
  8050. "symfony/console": "^5.4|^6.0",
  8051. "symfony/dependency-injection": "^5.4|^6.0",
  8052. "symfony/finder": "^5.4|^6.0",
  8053. "symfony/http-client-contracts": "^2.5|^3.0",
  8054. "symfony/http-kernel": "^5.4|^6.0",
  8055. "symfony/intl": "^5.4|^6.0",
  8056. "symfony/polyfill-intl-icu": "^1.21",
  8057. "symfony/routing": "^5.4|^6.0",
  8058. "symfony/service-contracts": "^2.5|^3",
  8059. "symfony/yaml": "^5.4|^6.0"
  8060. },
  8061. "type": "library",
  8062. "autoload": {
  8063. "files": [
  8064. "Resources/functions.php"
  8065. ],
  8066. "psr-4": {
  8067. "Symfony\\Component\\Translation\\": ""
  8068. },
  8069. "exclude-from-classmap": [
  8070. "/Tests/"
  8071. ]
  8072. },
  8073. "notification-url": "https://packagist.org/downloads/",
  8074. "license": [
  8075. "MIT"
  8076. ],
  8077. "authors": [
  8078. {
  8079. "name": "Fabien Potencier",
  8080. "email": "fabien@symfony.com"
  8081. },
  8082. {
  8083. "name": "Symfony Community",
  8084. "homepage": "https://symfony.com/contributors"
  8085. }
  8086. ],
  8087. "description": "Provides tools to internationalize your application",
  8088. "homepage": "https://symfony.com",
  8089. "support": {
  8090. "source": "https://github.com/symfony/translation/tree/v6.3.3"
  8091. },
  8092. "funding": [
  8093. {
  8094. "url": "https://symfony.com/sponsor",
  8095. "type": "custom"
  8096. },
  8097. {
  8098. "url": "https://github.com/fabpot",
  8099. "type": "github"
  8100. },
  8101. {
  8102. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8103. "type": "tidelift"
  8104. }
  8105. ],
  8106. "time": "2023-07-31T07:08:24+00:00"
  8107. },
  8108. {
  8109. "name": "symfony/translation-contracts",
  8110. "version": "v3.3.0",
  8111. "source": {
  8112. "type": "git",
  8113. "url": "https://github.com/symfony/translation-contracts.git",
  8114. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  8115. },
  8116. "dist": {
  8117. "type": "zip",
  8118. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  8119. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  8120. "shasum": ""
  8121. },
  8122. "require": {
  8123. "php": ">=8.1"
  8124. },
  8125. "type": "library",
  8126. "extra": {
  8127. "branch-alias": {
  8128. "dev-main": "3.4-dev"
  8129. },
  8130. "thanks": {
  8131. "name": "symfony/contracts",
  8132. "url": "https://github.com/symfony/contracts"
  8133. }
  8134. },
  8135. "autoload": {
  8136. "psr-4": {
  8137. "Symfony\\Contracts\\Translation\\": ""
  8138. },
  8139. "exclude-from-classmap": [
  8140. "/Test/"
  8141. ]
  8142. },
  8143. "notification-url": "https://packagist.org/downloads/",
  8144. "license": [
  8145. "MIT"
  8146. ],
  8147. "authors": [
  8148. {
  8149. "name": "Nicolas Grekas",
  8150. "email": "p@tchwork.com"
  8151. },
  8152. {
  8153. "name": "Symfony Community",
  8154. "homepage": "https://symfony.com/contributors"
  8155. }
  8156. ],
  8157. "description": "Generic abstractions related to translation",
  8158. "homepage": "https://symfony.com",
  8159. "keywords": [
  8160. "abstractions",
  8161. "contracts",
  8162. "decoupling",
  8163. "interfaces",
  8164. "interoperability",
  8165. "standards"
  8166. ],
  8167. "support": {
  8168. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  8169. },
  8170. "funding": [
  8171. {
  8172. "url": "https://symfony.com/sponsor",
  8173. "type": "custom"
  8174. },
  8175. {
  8176. "url": "https://github.com/fabpot",
  8177. "type": "github"
  8178. },
  8179. {
  8180. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8181. "type": "tidelift"
  8182. }
  8183. ],
  8184. "time": "2023-05-30T17:17:10+00:00"
  8185. },
  8186. {
  8187. "name": "symfony/uid",
  8188. "version": "v6.3.0",
  8189. "source": {
  8190. "type": "git",
  8191. "url": "https://github.com/symfony/uid.git",
  8192. "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384"
  8193. },
  8194. "dist": {
  8195. "type": "zip",
  8196. "url": "https://api.github.com/repos/symfony/uid/zipball/01b0f20b1351d997711c56f1638f7a8c3061e384",
  8197. "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384",
  8198. "shasum": ""
  8199. },
  8200. "require": {
  8201. "php": ">=8.1",
  8202. "symfony/polyfill-uuid": "^1.15"
  8203. },
  8204. "require-dev": {
  8205. "symfony/console": "^5.4|^6.0"
  8206. },
  8207. "type": "library",
  8208. "autoload": {
  8209. "psr-4": {
  8210. "Symfony\\Component\\Uid\\": ""
  8211. },
  8212. "exclude-from-classmap": [
  8213. "/Tests/"
  8214. ]
  8215. },
  8216. "notification-url": "https://packagist.org/downloads/",
  8217. "license": [
  8218. "MIT"
  8219. ],
  8220. "authors": [
  8221. {
  8222. "name": "Grégoire Pineau",
  8223. "email": "lyrixx@lyrixx.info"
  8224. },
  8225. {
  8226. "name": "Nicolas Grekas",
  8227. "email": "p@tchwork.com"
  8228. },
  8229. {
  8230. "name": "Symfony Community",
  8231. "homepage": "https://symfony.com/contributors"
  8232. }
  8233. ],
  8234. "description": "Provides an object-oriented API to generate and represent UIDs",
  8235. "homepage": "https://symfony.com",
  8236. "keywords": [
  8237. "UID",
  8238. "ulid",
  8239. "uuid"
  8240. ],
  8241. "support": {
  8242. "source": "https://github.com/symfony/uid/tree/v6.3.0"
  8243. },
  8244. "funding": [
  8245. {
  8246. "url": "https://symfony.com/sponsor",
  8247. "type": "custom"
  8248. },
  8249. {
  8250. "url": "https://github.com/fabpot",
  8251. "type": "github"
  8252. },
  8253. {
  8254. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8255. "type": "tidelift"
  8256. }
  8257. ],
  8258. "time": "2023-04-08T07:25:02+00:00"
  8259. },
  8260. {
  8261. "name": "symfony/var-dumper",
  8262. "version": "v6.3.4",
  8263. "source": {
  8264. "type": "git",
  8265. "url": "https://github.com/symfony/var-dumper.git",
  8266. "reference": "2027be14f8ae8eae999ceadebcda5b4909b81d45"
  8267. },
  8268. "dist": {
  8269. "type": "zip",
  8270. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2027be14f8ae8eae999ceadebcda5b4909b81d45",
  8271. "reference": "2027be14f8ae8eae999ceadebcda5b4909b81d45",
  8272. "shasum": ""
  8273. },
  8274. "require": {
  8275. "php": ">=8.1",
  8276. "symfony/deprecation-contracts": "^2.5|^3",
  8277. "symfony/polyfill-mbstring": "~1.0"
  8278. },
  8279. "conflict": {
  8280. "symfony/console": "<5.4"
  8281. },
  8282. "require-dev": {
  8283. "ext-iconv": "*",
  8284. "symfony/console": "^5.4|^6.0",
  8285. "symfony/http-kernel": "^5.4|^6.0",
  8286. "symfony/process": "^5.4|^6.0",
  8287. "symfony/uid": "^5.4|^6.0",
  8288. "twig/twig": "^2.13|^3.0.4"
  8289. },
  8290. "bin": [
  8291. "Resources/bin/var-dump-server"
  8292. ],
  8293. "type": "library",
  8294. "autoload": {
  8295. "files": [
  8296. "Resources/functions/dump.php"
  8297. ],
  8298. "psr-4": {
  8299. "Symfony\\Component\\VarDumper\\": ""
  8300. },
  8301. "exclude-from-classmap": [
  8302. "/Tests/"
  8303. ]
  8304. },
  8305. "notification-url": "https://packagist.org/downloads/",
  8306. "license": [
  8307. "MIT"
  8308. ],
  8309. "authors": [
  8310. {
  8311. "name": "Nicolas Grekas",
  8312. "email": "p@tchwork.com"
  8313. },
  8314. {
  8315. "name": "Symfony Community",
  8316. "homepage": "https://symfony.com/contributors"
  8317. }
  8318. ],
  8319. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8320. "homepage": "https://symfony.com",
  8321. "keywords": [
  8322. "debug",
  8323. "dump"
  8324. ],
  8325. "support": {
  8326. "source": "https://github.com/symfony/var-dumper/tree/v6.3.4"
  8327. },
  8328. "funding": [
  8329. {
  8330. "url": "https://symfony.com/sponsor",
  8331. "type": "custom"
  8332. },
  8333. {
  8334. "url": "https://github.com/fabpot",
  8335. "type": "github"
  8336. },
  8337. {
  8338. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8339. "type": "tidelift"
  8340. }
  8341. ],
  8342. "time": "2023-08-24T14:51:05+00:00"
  8343. },
  8344. {
  8345. "name": "tijsverkoyen/css-to-inline-styles",
  8346. "version": "2.2.6",
  8347. "source": {
  8348. "type": "git",
  8349. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8350. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  8351. },
  8352. "dist": {
  8353. "type": "zip",
  8354. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  8355. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  8356. "shasum": ""
  8357. },
  8358. "require": {
  8359. "ext-dom": "*",
  8360. "ext-libxml": "*",
  8361. "php": "^5.5 || ^7.0 || ^8.0",
  8362. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  8363. },
  8364. "require-dev": {
  8365. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8366. },
  8367. "type": "library",
  8368. "extra": {
  8369. "branch-alias": {
  8370. "dev-master": "2.2.x-dev"
  8371. }
  8372. },
  8373. "autoload": {
  8374. "psr-4": {
  8375. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8376. }
  8377. },
  8378. "notification-url": "https://packagist.org/downloads/",
  8379. "license": [
  8380. "BSD-3-Clause"
  8381. ],
  8382. "authors": [
  8383. {
  8384. "name": "Tijs Verkoyen",
  8385. "email": "css_to_inline_styles@verkoyen.eu",
  8386. "role": "Developer"
  8387. }
  8388. ],
  8389. "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.",
  8390. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8391. "support": {
  8392. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8393. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  8394. },
  8395. "time": "2023-01-03T09:29:04+00:00"
  8396. },
  8397. {
  8398. "name": "vlucas/phpdotenv",
  8399. "version": "v5.5.0",
  8400. "source": {
  8401. "type": "git",
  8402. "url": "https://github.com/vlucas/phpdotenv.git",
  8403. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  8404. },
  8405. "dist": {
  8406. "type": "zip",
  8407. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8408. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8409. "shasum": ""
  8410. },
  8411. "require": {
  8412. "ext-pcre": "*",
  8413. "graham-campbell/result-type": "^1.0.2",
  8414. "php": "^7.1.3 || ^8.0",
  8415. "phpoption/phpoption": "^1.8",
  8416. "symfony/polyfill-ctype": "^1.23",
  8417. "symfony/polyfill-mbstring": "^1.23.1",
  8418. "symfony/polyfill-php80": "^1.23.1"
  8419. },
  8420. "require-dev": {
  8421. "bamarni/composer-bin-plugin": "^1.4.1",
  8422. "ext-filter": "*",
  8423. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  8424. },
  8425. "suggest": {
  8426. "ext-filter": "Required to use the boolean validator."
  8427. },
  8428. "type": "library",
  8429. "extra": {
  8430. "bamarni-bin": {
  8431. "bin-links": true,
  8432. "forward-command": true
  8433. },
  8434. "branch-alias": {
  8435. "dev-master": "5.5-dev"
  8436. }
  8437. },
  8438. "autoload": {
  8439. "psr-4": {
  8440. "Dotenv\\": "src/"
  8441. }
  8442. },
  8443. "notification-url": "https://packagist.org/downloads/",
  8444. "license": [
  8445. "BSD-3-Clause"
  8446. ],
  8447. "authors": [
  8448. {
  8449. "name": "Graham Campbell",
  8450. "email": "hello@gjcampbell.co.uk",
  8451. "homepage": "https://github.com/GrahamCampbell"
  8452. },
  8453. {
  8454. "name": "Vance Lucas",
  8455. "email": "vance@vancelucas.com",
  8456. "homepage": "https://github.com/vlucas"
  8457. }
  8458. ],
  8459. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8460. "keywords": [
  8461. "dotenv",
  8462. "env",
  8463. "environment"
  8464. ],
  8465. "support": {
  8466. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8467. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  8468. },
  8469. "funding": [
  8470. {
  8471. "url": "https://github.com/GrahamCampbell",
  8472. "type": "github"
  8473. },
  8474. {
  8475. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8476. "type": "tidelift"
  8477. }
  8478. ],
  8479. "time": "2022-10-16T01:01:54+00:00"
  8480. },
  8481. {
  8482. "name": "voku/portable-ascii",
  8483. "version": "2.0.1",
  8484. "source": {
  8485. "type": "git",
  8486. "url": "https://github.com/voku/portable-ascii.git",
  8487. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  8488. },
  8489. "dist": {
  8490. "type": "zip",
  8491. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  8492. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  8493. "shasum": ""
  8494. },
  8495. "require": {
  8496. "php": ">=7.0.0"
  8497. },
  8498. "require-dev": {
  8499. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8500. },
  8501. "suggest": {
  8502. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8503. },
  8504. "type": "library",
  8505. "autoload": {
  8506. "psr-4": {
  8507. "voku\\": "src/voku/"
  8508. }
  8509. },
  8510. "notification-url": "https://packagist.org/downloads/",
  8511. "license": [
  8512. "MIT"
  8513. ],
  8514. "authors": [
  8515. {
  8516. "name": "Lars Moelleken",
  8517. "homepage": "http://www.moelleken.org/"
  8518. }
  8519. ],
  8520. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8521. "homepage": "https://github.com/voku/portable-ascii",
  8522. "keywords": [
  8523. "ascii",
  8524. "clean",
  8525. "php"
  8526. ],
  8527. "support": {
  8528. "issues": "https://github.com/voku/portable-ascii/issues",
  8529. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  8530. },
  8531. "funding": [
  8532. {
  8533. "url": "https://www.paypal.me/moelleken",
  8534. "type": "custom"
  8535. },
  8536. {
  8537. "url": "https://github.com/voku",
  8538. "type": "github"
  8539. },
  8540. {
  8541. "url": "https://opencollective.com/portable-ascii",
  8542. "type": "open_collective"
  8543. },
  8544. {
  8545. "url": "https://www.patreon.com/voku",
  8546. "type": "patreon"
  8547. },
  8548. {
  8549. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8550. "type": "tidelift"
  8551. }
  8552. ],
  8553. "time": "2022-03-08T17:03:00+00:00"
  8554. },
  8555. {
  8556. "name": "webmozart/assert",
  8557. "version": "1.11.0",
  8558. "source": {
  8559. "type": "git",
  8560. "url": "https://github.com/webmozarts/assert.git",
  8561. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8562. },
  8563. "dist": {
  8564. "type": "zip",
  8565. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8566. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8567. "shasum": ""
  8568. },
  8569. "require": {
  8570. "ext-ctype": "*",
  8571. "php": "^7.2 || ^8.0"
  8572. },
  8573. "conflict": {
  8574. "phpstan/phpstan": "<0.12.20",
  8575. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8576. },
  8577. "require-dev": {
  8578. "phpunit/phpunit": "^8.5.13"
  8579. },
  8580. "type": "library",
  8581. "extra": {
  8582. "branch-alias": {
  8583. "dev-master": "1.10-dev"
  8584. }
  8585. },
  8586. "autoload": {
  8587. "psr-4": {
  8588. "Webmozart\\Assert\\": "src/"
  8589. }
  8590. },
  8591. "notification-url": "https://packagist.org/downloads/",
  8592. "license": [
  8593. "MIT"
  8594. ],
  8595. "authors": [
  8596. {
  8597. "name": "Bernhard Schussek",
  8598. "email": "bschussek@gmail.com"
  8599. }
  8600. ],
  8601. "description": "Assertions to validate method input/output with nice error messages.",
  8602. "keywords": [
  8603. "assert",
  8604. "check",
  8605. "validate"
  8606. ],
  8607. "support": {
  8608. "issues": "https://github.com/webmozarts/assert/issues",
  8609. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8610. },
  8611. "time": "2022-06-03T18:03:27+00:00"
  8612. }
  8613. ],
  8614. "packages-dev": [
  8615. {
  8616. "name": "fakerphp/faker",
  8617. "version": "v1.23.0",
  8618. "source": {
  8619. "type": "git",
  8620. "url": "https://github.com/FakerPHP/Faker.git",
  8621. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  8622. },
  8623. "dist": {
  8624. "type": "zip",
  8625. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8626. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8627. "shasum": ""
  8628. },
  8629. "require": {
  8630. "php": "^7.4 || ^8.0",
  8631. "psr/container": "^1.0 || ^2.0",
  8632. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8633. },
  8634. "conflict": {
  8635. "fzaninotto/faker": "*"
  8636. },
  8637. "require-dev": {
  8638. "bamarni/composer-bin-plugin": "^1.4.1",
  8639. "doctrine/persistence": "^1.3 || ^2.0",
  8640. "ext-intl": "*",
  8641. "phpunit/phpunit": "^9.5.26",
  8642. "symfony/phpunit-bridge": "^5.4.16"
  8643. },
  8644. "suggest": {
  8645. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8646. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8647. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8648. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8649. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8650. },
  8651. "type": "library",
  8652. "extra": {
  8653. "branch-alias": {
  8654. "dev-main": "v1.21-dev"
  8655. }
  8656. },
  8657. "autoload": {
  8658. "psr-4": {
  8659. "Faker\\": "src/Faker/"
  8660. }
  8661. },
  8662. "notification-url": "https://packagist.org/downloads/",
  8663. "license": [
  8664. "MIT"
  8665. ],
  8666. "authors": [
  8667. {
  8668. "name": "François Zaninotto"
  8669. }
  8670. ],
  8671. "description": "Faker is a PHP library that generates fake data for you.",
  8672. "keywords": [
  8673. "data",
  8674. "faker",
  8675. "fixtures"
  8676. ],
  8677. "support": {
  8678. "issues": "https://github.com/FakerPHP/Faker/issues",
  8679. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  8680. },
  8681. "time": "2023-06-12T08:44:38+00:00"
  8682. },
  8683. {
  8684. "name": "filp/whoops",
  8685. "version": "2.15.3",
  8686. "source": {
  8687. "type": "git",
  8688. "url": "https://github.com/filp/whoops.git",
  8689. "reference": "c83e88a30524f9360b11f585f71e6b17313b7187"
  8690. },
  8691. "dist": {
  8692. "type": "zip",
  8693. "url": "https://api.github.com/repos/filp/whoops/zipball/c83e88a30524f9360b11f585f71e6b17313b7187",
  8694. "reference": "c83e88a30524f9360b11f585f71e6b17313b7187",
  8695. "shasum": ""
  8696. },
  8697. "require": {
  8698. "php": "^5.5.9 || ^7.0 || ^8.0",
  8699. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8700. },
  8701. "require-dev": {
  8702. "mockery/mockery": "^0.9 || ^1.0",
  8703. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8704. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8705. },
  8706. "suggest": {
  8707. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8708. "whoops/soap": "Formats errors as SOAP responses"
  8709. },
  8710. "type": "library",
  8711. "extra": {
  8712. "branch-alias": {
  8713. "dev-master": "2.7-dev"
  8714. }
  8715. },
  8716. "autoload": {
  8717. "psr-4": {
  8718. "Whoops\\": "src/Whoops/"
  8719. }
  8720. },
  8721. "notification-url": "https://packagist.org/downloads/",
  8722. "license": [
  8723. "MIT"
  8724. ],
  8725. "authors": [
  8726. {
  8727. "name": "Filipe Dobreira",
  8728. "homepage": "https://github.com/filp",
  8729. "role": "Developer"
  8730. }
  8731. ],
  8732. "description": "php error handling for cool kids",
  8733. "homepage": "https://filp.github.io/whoops/",
  8734. "keywords": [
  8735. "error",
  8736. "exception",
  8737. "handling",
  8738. "library",
  8739. "throwable",
  8740. "whoops"
  8741. ],
  8742. "support": {
  8743. "issues": "https://github.com/filp/whoops/issues",
  8744. "source": "https://github.com/filp/whoops/tree/2.15.3"
  8745. },
  8746. "funding": [
  8747. {
  8748. "url": "https://github.com/denis-sokolov",
  8749. "type": "github"
  8750. }
  8751. ],
  8752. "time": "2023-07-13T12:00:00+00:00"
  8753. },
  8754. {
  8755. "name": "hamcrest/hamcrest-php",
  8756. "version": "v2.0.1",
  8757. "source": {
  8758. "type": "git",
  8759. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8760. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8761. },
  8762. "dist": {
  8763. "type": "zip",
  8764. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8765. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8766. "shasum": ""
  8767. },
  8768. "require": {
  8769. "php": "^5.3|^7.0|^8.0"
  8770. },
  8771. "replace": {
  8772. "cordoval/hamcrest-php": "*",
  8773. "davedevelopment/hamcrest-php": "*",
  8774. "kodova/hamcrest-php": "*"
  8775. },
  8776. "require-dev": {
  8777. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8778. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8779. },
  8780. "type": "library",
  8781. "extra": {
  8782. "branch-alias": {
  8783. "dev-master": "2.1-dev"
  8784. }
  8785. },
  8786. "autoload": {
  8787. "classmap": [
  8788. "hamcrest"
  8789. ]
  8790. },
  8791. "notification-url": "https://packagist.org/downloads/",
  8792. "license": [
  8793. "BSD-3-Clause"
  8794. ],
  8795. "description": "This is the PHP port of Hamcrest Matchers",
  8796. "keywords": [
  8797. "test"
  8798. ],
  8799. "support": {
  8800. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8801. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8802. },
  8803. "time": "2020-07-09T08:09:16+00:00"
  8804. },
  8805. {
  8806. "name": "laravel/pint",
  8807. "version": "v1.13.2",
  8808. "source": {
  8809. "type": "git",
  8810. "url": "https://github.com/laravel/pint.git",
  8811. "reference": "bbb13460d7f8c5c0cd9a58109beedd79cd7331ff"
  8812. },
  8813. "dist": {
  8814. "type": "zip",
  8815. "url": "https://api.github.com/repos/laravel/pint/zipball/bbb13460d7f8c5c0cd9a58109beedd79cd7331ff",
  8816. "reference": "bbb13460d7f8c5c0cd9a58109beedd79cd7331ff",
  8817. "shasum": ""
  8818. },
  8819. "require": {
  8820. "ext-json": "*",
  8821. "ext-mbstring": "*",
  8822. "ext-tokenizer": "*",
  8823. "ext-xml": "*",
  8824. "php": "^8.1.0"
  8825. },
  8826. "require-dev": {
  8827. "friendsofphp/php-cs-fixer": "^3.26.1",
  8828. "illuminate/view": "^10.23.1",
  8829. "laravel-zero/framework": "^10.1.2",
  8830. "mockery/mockery": "^1.6.6",
  8831. "nunomaduro/larastan": "^2.6.4",
  8832. "nunomaduro/termwind": "^1.15.1",
  8833. "pestphp/pest": "^2.18.2"
  8834. },
  8835. "bin": [
  8836. "builds/pint"
  8837. ],
  8838. "type": "project",
  8839. "autoload": {
  8840. "psr-4": {
  8841. "App\\": "app/",
  8842. "Database\\Seeders\\": "database/seeders/",
  8843. "Database\\Factories\\": "database/factories/"
  8844. }
  8845. },
  8846. "notification-url": "https://packagist.org/downloads/",
  8847. "license": [
  8848. "MIT"
  8849. ],
  8850. "authors": [
  8851. {
  8852. "name": "Nuno Maduro",
  8853. "email": "enunomaduro@gmail.com"
  8854. }
  8855. ],
  8856. "description": "An opinionated code formatter for PHP.",
  8857. "homepage": "https://laravel.com",
  8858. "keywords": [
  8859. "format",
  8860. "formatter",
  8861. "lint",
  8862. "linter",
  8863. "php"
  8864. ],
  8865. "support": {
  8866. "issues": "https://github.com/laravel/pint/issues",
  8867. "source": "https://github.com/laravel/pint"
  8868. },
  8869. "time": "2023-09-19T15:55:02+00:00"
  8870. },
  8871. {
  8872. "name": "laravel/sail",
  8873. "version": "v1.25.0",
  8874. "source": {
  8875. "type": "git",
  8876. "url": "https://github.com/laravel/sail.git",
  8877. "reference": "e81a7bd7ac1a745ccb25572830fecf74a89bb48a"
  8878. },
  8879. "dist": {
  8880. "type": "zip",
  8881. "url": "https://api.github.com/repos/laravel/sail/zipball/e81a7bd7ac1a745ccb25572830fecf74a89bb48a",
  8882. "reference": "e81a7bd7ac1a745ccb25572830fecf74a89bb48a",
  8883. "shasum": ""
  8884. },
  8885. "require": {
  8886. "illuminate/console": "^8.0|^9.0|^10.0",
  8887. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8888. "illuminate/support": "^8.0|^9.0|^10.0",
  8889. "php": "^8.0",
  8890. "symfony/yaml": "^6.0"
  8891. },
  8892. "require-dev": {
  8893. "orchestra/testbench": "^6.0|^7.0|^8.0",
  8894. "phpstan/phpstan": "^1.10"
  8895. },
  8896. "bin": [
  8897. "bin/sail"
  8898. ],
  8899. "type": "library",
  8900. "extra": {
  8901. "branch-alias": {
  8902. "dev-master": "1.x-dev"
  8903. },
  8904. "laravel": {
  8905. "providers": [
  8906. "Laravel\\Sail\\SailServiceProvider"
  8907. ]
  8908. }
  8909. },
  8910. "autoload": {
  8911. "psr-4": {
  8912. "Laravel\\Sail\\": "src/"
  8913. }
  8914. },
  8915. "notification-url": "https://packagist.org/downloads/",
  8916. "license": [
  8917. "MIT"
  8918. ],
  8919. "authors": [
  8920. {
  8921. "name": "Taylor Otwell",
  8922. "email": "taylor@laravel.com"
  8923. }
  8924. ],
  8925. "description": "Docker files for running a basic Laravel application.",
  8926. "keywords": [
  8927. "docker",
  8928. "laravel"
  8929. ],
  8930. "support": {
  8931. "issues": "https://github.com/laravel/sail/issues",
  8932. "source": "https://github.com/laravel/sail"
  8933. },
  8934. "time": "2023-09-11T17:37:09+00:00"
  8935. },
  8936. {
  8937. "name": "mockery/mockery",
  8938. "version": "1.6.6",
  8939. "source": {
  8940. "type": "git",
  8941. "url": "https://github.com/mockery/mockery.git",
  8942. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e"
  8943. },
  8944. "dist": {
  8945. "type": "zip",
  8946. "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e",
  8947. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e",
  8948. "shasum": ""
  8949. },
  8950. "require": {
  8951. "hamcrest/hamcrest-php": "^2.0.1",
  8952. "lib-pcre": ">=7.0",
  8953. "php": ">=7.3"
  8954. },
  8955. "conflict": {
  8956. "phpunit/phpunit": "<8.0"
  8957. },
  8958. "require-dev": {
  8959. "phpunit/phpunit": "^8.5 || ^9.6.10",
  8960. "psalm/plugin-phpunit": "^0.18.4",
  8961. "symplify/easy-coding-standard": "^11.5.0",
  8962. "vimeo/psalm": "^4.30"
  8963. },
  8964. "type": "library",
  8965. "autoload": {
  8966. "files": [
  8967. "library/helpers.php",
  8968. "library/Mockery.php"
  8969. ],
  8970. "psr-4": {
  8971. "Mockery\\": "library/Mockery"
  8972. }
  8973. },
  8974. "notification-url": "https://packagist.org/downloads/",
  8975. "license": [
  8976. "BSD-3-Clause"
  8977. ],
  8978. "authors": [
  8979. {
  8980. "name": "Pádraic Brady",
  8981. "email": "padraic.brady@gmail.com",
  8982. "homepage": "https://github.com/padraic",
  8983. "role": "Author"
  8984. },
  8985. {
  8986. "name": "Dave Marshall",
  8987. "email": "dave.marshall@atstsolutions.co.uk",
  8988. "homepage": "https://davedevelopment.co.uk",
  8989. "role": "Developer"
  8990. },
  8991. {
  8992. "name": "Nathanael Esayeas",
  8993. "email": "nathanael.esayeas@protonmail.com",
  8994. "homepage": "https://github.com/ghostwriter",
  8995. "role": "Lead Developer"
  8996. }
  8997. ],
  8998. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8999. "homepage": "https://github.com/mockery/mockery",
  9000. "keywords": [
  9001. "BDD",
  9002. "TDD",
  9003. "library",
  9004. "mock",
  9005. "mock objects",
  9006. "mockery",
  9007. "stub",
  9008. "test",
  9009. "test double",
  9010. "testing"
  9011. ],
  9012. "support": {
  9013. "docs": "https://docs.mockery.io/",
  9014. "issues": "https://github.com/mockery/mockery/issues",
  9015. "rss": "https://github.com/mockery/mockery/releases.atom",
  9016. "security": "https://github.com/mockery/mockery/security/advisories",
  9017. "source": "https://github.com/mockery/mockery"
  9018. },
  9019. "time": "2023-08-09T00:03:52+00:00"
  9020. },
  9021. {
  9022. "name": "myclabs/deep-copy",
  9023. "version": "1.11.1",
  9024. "source": {
  9025. "type": "git",
  9026. "url": "https://github.com/myclabs/DeepCopy.git",
  9027. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  9028. },
  9029. "dist": {
  9030. "type": "zip",
  9031. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9032. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9033. "shasum": ""
  9034. },
  9035. "require": {
  9036. "php": "^7.1 || ^8.0"
  9037. },
  9038. "conflict": {
  9039. "doctrine/collections": "<1.6.8",
  9040. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  9041. },
  9042. "require-dev": {
  9043. "doctrine/collections": "^1.6.8",
  9044. "doctrine/common": "^2.13.3 || ^3.2.2",
  9045. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9046. },
  9047. "type": "library",
  9048. "autoload": {
  9049. "files": [
  9050. "src/DeepCopy/deep_copy.php"
  9051. ],
  9052. "psr-4": {
  9053. "DeepCopy\\": "src/DeepCopy/"
  9054. }
  9055. },
  9056. "notification-url": "https://packagist.org/downloads/",
  9057. "license": [
  9058. "MIT"
  9059. ],
  9060. "description": "Create deep copies (clones) of your objects",
  9061. "keywords": [
  9062. "clone",
  9063. "copy",
  9064. "duplicate",
  9065. "object",
  9066. "object graph"
  9067. ],
  9068. "support": {
  9069. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9070. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9071. },
  9072. "funding": [
  9073. {
  9074. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9075. "type": "tidelift"
  9076. }
  9077. ],
  9078. "time": "2023-03-08T13:26:56+00:00"
  9079. },
  9080. {
  9081. "name": "nunomaduro/collision",
  9082. "version": "v7.9.0",
  9083. "source": {
  9084. "type": "git",
  9085. "url": "https://github.com/nunomaduro/collision.git",
  9086. "reference": "296d0cf9fe462837ac0da8a568b56fc026b132da"
  9087. },
  9088. "dist": {
  9089. "type": "zip",
  9090. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/296d0cf9fe462837ac0da8a568b56fc026b132da",
  9091. "reference": "296d0cf9fe462837ac0da8a568b56fc026b132da",
  9092. "shasum": ""
  9093. },
  9094. "require": {
  9095. "filp/whoops": "^2.15.3",
  9096. "nunomaduro/termwind": "^1.15.1",
  9097. "php": "^8.1.0",
  9098. "symfony/console": "^6.3.4"
  9099. },
  9100. "require-dev": {
  9101. "brianium/paratest": "^7.2.7",
  9102. "laravel/framework": "^10.23.1",
  9103. "laravel/pint": "^1.13.1",
  9104. "laravel/sail": "^1.25.0",
  9105. "laravel/sanctum": "^3.3.1",
  9106. "laravel/tinker": "^2.8.2",
  9107. "nunomaduro/larastan": "^2.6.4",
  9108. "orchestra/testbench-core": "^8.11.0",
  9109. "pestphp/pest": "^2.19.1",
  9110. "phpunit/phpunit": "^10.3.5",
  9111. "sebastian/environment": "^6.0.1",
  9112. "spatie/laravel-ignition": "^2.3.0"
  9113. },
  9114. "type": "library",
  9115. "extra": {
  9116. "laravel": {
  9117. "providers": [
  9118. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9119. ]
  9120. }
  9121. },
  9122. "autoload": {
  9123. "files": [
  9124. "./src/Adapters/Phpunit/Autoload.php"
  9125. ],
  9126. "psr-4": {
  9127. "NunoMaduro\\Collision\\": "src/"
  9128. }
  9129. },
  9130. "notification-url": "https://packagist.org/downloads/",
  9131. "license": [
  9132. "MIT"
  9133. ],
  9134. "authors": [
  9135. {
  9136. "name": "Nuno Maduro",
  9137. "email": "enunomaduro@gmail.com"
  9138. }
  9139. ],
  9140. "description": "Cli error handling for console/command-line PHP applications.",
  9141. "keywords": [
  9142. "artisan",
  9143. "cli",
  9144. "command-line",
  9145. "console",
  9146. "error",
  9147. "handling",
  9148. "laravel",
  9149. "laravel-zero",
  9150. "php",
  9151. "symfony"
  9152. ],
  9153. "support": {
  9154. "issues": "https://github.com/nunomaduro/collision/issues",
  9155. "source": "https://github.com/nunomaduro/collision"
  9156. },
  9157. "funding": [
  9158. {
  9159. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9160. "type": "custom"
  9161. },
  9162. {
  9163. "url": "https://github.com/nunomaduro",
  9164. "type": "github"
  9165. },
  9166. {
  9167. "url": "https://www.patreon.com/nunomaduro",
  9168. "type": "patreon"
  9169. }
  9170. ],
  9171. "time": "2023-09-19T10:45:09+00:00"
  9172. },
  9173. {
  9174. "name": "phar-io/manifest",
  9175. "version": "2.0.3",
  9176. "source": {
  9177. "type": "git",
  9178. "url": "https://github.com/phar-io/manifest.git",
  9179. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9180. },
  9181. "dist": {
  9182. "type": "zip",
  9183. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9184. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9185. "shasum": ""
  9186. },
  9187. "require": {
  9188. "ext-dom": "*",
  9189. "ext-phar": "*",
  9190. "ext-xmlwriter": "*",
  9191. "phar-io/version": "^3.0.1",
  9192. "php": "^7.2 || ^8.0"
  9193. },
  9194. "type": "library",
  9195. "extra": {
  9196. "branch-alias": {
  9197. "dev-master": "2.0.x-dev"
  9198. }
  9199. },
  9200. "autoload": {
  9201. "classmap": [
  9202. "src/"
  9203. ]
  9204. },
  9205. "notification-url": "https://packagist.org/downloads/",
  9206. "license": [
  9207. "BSD-3-Clause"
  9208. ],
  9209. "authors": [
  9210. {
  9211. "name": "Arne Blankerts",
  9212. "email": "arne@blankerts.de",
  9213. "role": "Developer"
  9214. },
  9215. {
  9216. "name": "Sebastian Heuer",
  9217. "email": "sebastian@phpeople.de",
  9218. "role": "Developer"
  9219. },
  9220. {
  9221. "name": "Sebastian Bergmann",
  9222. "email": "sebastian@phpunit.de",
  9223. "role": "Developer"
  9224. }
  9225. ],
  9226. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9227. "support": {
  9228. "issues": "https://github.com/phar-io/manifest/issues",
  9229. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9230. },
  9231. "time": "2021-07-20T11:28:43+00:00"
  9232. },
  9233. {
  9234. "name": "phar-io/version",
  9235. "version": "3.2.1",
  9236. "source": {
  9237. "type": "git",
  9238. "url": "https://github.com/phar-io/version.git",
  9239. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9240. },
  9241. "dist": {
  9242. "type": "zip",
  9243. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9244. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9245. "shasum": ""
  9246. },
  9247. "require": {
  9248. "php": "^7.2 || ^8.0"
  9249. },
  9250. "type": "library",
  9251. "autoload": {
  9252. "classmap": [
  9253. "src/"
  9254. ]
  9255. },
  9256. "notification-url": "https://packagist.org/downloads/",
  9257. "license": [
  9258. "BSD-3-Clause"
  9259. ],
  9260. "authors": [
  9261. {
  9262. "name": "Arne Blankerts",
  9263. "email": "arne@blankerts.de",
  9264. "role": "Developer"
  9265. },
  9266. {
  9267. "name": "Sebastian Heuer",
  9268. "email": "sebastian@phpeople.de",
  9269. "role": "Developer"
  9270. },
  9271. {
  9272. "name": "Sebastian Bergmann",
  9273. "email": "sebastian@phpunit.de",
  9274. "role": "Developer"
  9275. }
  9276. ],
  9277. "description": "Library for handling version information and constraints",
  9278. "support": {
  9279. "issues": "https://github.com/phar-io/version/issues",
  9280. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9281. },
  9282. "time": "2022-02-21T01:04:05+00:00"
  9283. },
  9284. {
  9285. "name": "phpunit/php-code-coverage",
  9286. "version": "10.1.6",
  9287. "source": {
  9288. "type": "git",
  9289. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9290. "reference": "56f33548fe522c8d82da7ff3824b42829d324364"
  9291. },
  9292. "dist": {
  9293. "type": "zip",
  9294. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/56f33548fe522c8d82da7ff3824b42829d324364",
  9295. "reference": "56f33548fe522c8d82da7ff3824b42829d324364",
  9296. "shasum": ""
  9297. },
  9298. "require": {
  9299. "ext-dom": "*",
  9300. "ext-libxml": "*",
  9301. "ext-xmlwriter": "*",
  9302. "nikic/php-parser": "^4.15",
  9303. "php": ">=8.1",
  9304. "phpunit/php-file-iterator": "^4.0",
  9305. "phpunit/php-text-template": "^3.0",
  9306. "sebastian/code-unit-reverse-lookup": "^3.0",
  9307. "sebastian/complexity": "^3.0",
  9308. "sebastian/environment": "^6.0",
  9309. "sebastian/lines-of-code": "^2.0",
  9310. "sebastian/version": "^4.0",
  9311. "theseer/tokenizer": "^1.2.0"
  9312. },
  9313. "require-dev": {
  9314. "phpunit/phpunit": "^10.1"
  9315. },
  9316. "suggest": {
  9317. "ext-pcov": "PHP extension that provides line coverage",
  9318. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9319. },
  9320. "type": "library",
  9321. "extra": {
  9322. "branch-alias": {
  9323. "dev-main": "10.1-dev"
  9324. }
  9325. },
  9326. "autoload": {
  9327. "classmap": [
  9328. "src/"
  9329. ]
  9330. },
  9331. "notification-url": "https://packagist.org/downloads/",
  9332. "license": [
  9333. "BSD-3-Clause"
  9334. ],
  9335. "authors": [
  9336. {
  9337. "name": "Sebastian Bergmann",
  9338. "email": "sebastian@phpunit.de",
  9339. "role": "lead"
  9340. }
  9341. ],
  9342. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9343. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9344. "keywords": [
  9345. "coverage",
  9346. "testing",
  9347. "xunit"
  9348. ],
  9349. "support": {
  9350. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9351. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9352. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.6"
  9353. },
  9354. "funding": [
  9355. {
  9356. "url": "https://github.com/sebastianbergmann",
  9357. "type": "github"
  9358. }
  9359. ],
  9360. "time": "2023-09-19T04:59:03+00:00"
  9361. },
  9362. {
  9363. "name": "phpunit/php-file-iterator",
  9364. "version": "4.1.0",
  9365. "source": {
  9366. "type": "git",
  9367. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9368. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9369. },
  9370. "dist": {
  9371. "type": "zip",
  9372. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9373. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9374. "shasum": ""
  9375. },
  9376. "require": {
  9377. "php": ">=8.1"
  9378. },
  9379. "require-dev": {
  9380. "phpunit/phpunit": "^10.0"
  9381. },
  9382. "type": "library",
  9383. "extra": {
  9384. "branch-alias": {
  9385. "dev-main": "4.0-dev"
  9386. }
  9387. },
  9388. "autoload": {
  9389. "classmap": [
  9390. "src/"
  9391. ]
  9392. },
  9393. "notification-url": "https://packagist.org/downloads/",
  9394. "license": [
  9395. "BSD-3-Clause"
  9396. ],
  9397. "authors": [
  9398. {
  9399. "name": "Sebastian Bergmann",
  9400. "email": "sebastian@phpunit.de",
  9401. "role": "lead"
  9402. }
  9403. ],
  9404. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9405. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9406. "keywords": [
  9407. "filesystem",
  9408. "iterator"
  9409. ],
  9410. "support": {
  9411. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9412. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9413. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9414. },
  9415. "funding": [
  9416. {
  9417. "url": "https://github.com/sebastianbergmann",
  9418. "type": "github"
  9419. }
  9420. ],
  9421. "time": "2023-08-31T06:24:48+00:00"
  9422. },
  9423. {
  9424. "name": "phpunit/php-invoker",
  9425. "version": "4.0.0",
  9426. "source": {
  9427. "type": "git",
  9428. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9429. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9430. },
  9431. "dist": {
  9432. "type": "zip",
  9433. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9434. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9435. "shasum": ""
  9436. },
  9437. "require": {
  9438. "php": ">=8.1"
  9439. },
  9440. "require-dev": {
  9441. "ext-pcntl": "*",
  9442. "phpunit/phpunit": "^10.0"
  9443. },
  9444. "suggest": {
  9445. "ext-pcntl": "*"
  9446. },
  9447. "type": "library",
  9448. "extra": {
  9449. "branch-alias": {
  9450. "dev-main": "4.0-dev"
  9451. }
  9452. },
  9453. "autoload": {
  9454. "classmap": [
  9455. "src/"
  9456. ]
  9457. },
  9458. "notification-url": "https://packagist.org/downloads/",
  9459. "license": [
  9460. "BSD-3-Clause"
  9461. ],
  9462. "authors": [
  9463. {
  9464. "name": "Sebastian Bergmann",
  9465. "email": "sebastian@phpunit.de",
  9466. "role": "lead"
  9467. }
  9468. ],
  9469. "description": "Invoke callables with a timeout",
  9470. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9471. "keywords": [
  9472. "process"
  9473. ],
  9474. "support": {
  9475. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9476. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9477. },
  9478. "funding": [
  9479. {
  9480. "url": "https://github.com/sebastianbergmann",
  9481. "type": "github"
  9482. }
  9483. ],
  9484. "time": "2023-02-03T06:56:09+00:00"
  9485. },
  9486. {
  9487. "name": "phpunit/php-text-template",
  9488. "version": "3.0.1",
  9489. "source": {
  9490. "type": "git",
  9491. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9492. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9493. },
  9494. "dist": {
  9495. "type": "zip",
  9496. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9497. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9498. "shasum": ""
  9499. },
  9500. "require": {
  9501. "php": ">=8.1"
  9502. },
  9503. "require-dev": {
  9504. "phpunit/phpunit": "^10.0"
  9505. },
  9506. "type": "library",
  9507. "extra": {
  9508. "branch-alias": {
  9509. "dev-main": "3.0-dev"
  9510. }
  9511. },
  9512. "autoload": {
  9513. "classmap": [
  9514. "src/"
  9515. ]
  9516. },
  9517. "notification-url": "https://packagist.org/downloads/",
  9518. "license": [
  9519. "BSD-3-Clause"
  9520. ],
  9521. "authors": [
  9522. {
  9523. "name": "Sebastian Bergmann",
  9524. "email": "sebastian@phpunit.de",
  9525. "role": "lead"
  9526. }
  9527. ],
  9528. "description": "Simple template engine.",
  9529. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9530. "keywords": [
  9531. "template"
  9532. ],
  9533. "support": {
  9534. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9535. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9536. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9537. },
  9538. "funding": [
  9539. {
  9540. "url": "https://github.com/sebastianbergmann",
  9541. "type": "github"
  9542. }
  9543. ],
  9544. "time": "2023-08-31T14:07:24+00:00"
  9545. },
  9546. {
  9547. "name": "phpunit/php-timer",
  9548. "version": "6.0.0",
  9549. "source": {
  9550. "type": "git",
  9551. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9552. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9553. },
  9554. "dist": {
  9555. "type": "zip",
  9556. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9557. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9558. "shasum": ""
  9559. },
  9560. "require": {
  9561. "php": ">=8.1"
  9562. },
  9563. "require-dev": {
  9564. "phpunit/phpunit": "^10.0"
  9565. },
  9566. "type": "library",
  9567. "extra": {
  9568. "branch-alias": {
  9569. "dev-main": "6.0-dev"
  9570. }
  9571. },
  9572. "autoload": {
  9573. "classmap": [
  9574. "src/"
  9575. ]
  9576. },
  9577. "notification-url": "https://packagist.org/downloads/",
  9578. "license": [
  9579. "BSD-3-Clause"
  9580. ],
  9581. "authors": [
  9582. {
  9583. "name": "Sebastian Bergmann",
  9584. "email": "sebastian@phpunit.de",
  9585. "role": "lead"
  9586. }
  9587. ],
  9588. "description": "Utility class for timing",
  9589. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9590. "keywords": [
  9591. "timer"
  9592. ],
  9593. "support": {
  9594. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9595. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9596. },
  9597. "funding": [
  9598. {
  9599. "url": "https://github.com/sebastianbergmann",
  9600. "type": "github"
  9601. }
  9602. ],
  9603. "time": "2023-02-03T06:57:52+00:00"
  9604. },
  9605. {
  9606. "name": "phpunit/phpunit",
  9607. "version": "10.3.5",
  9608. "source": {
  9609. "type": "git",
  9610. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9611. "reference": "747c3b2038f1139e3dcd9886a3f5a948648b7503"
  9612. },
  9613. "dist": {
  9614. "type": "zip",
  9615. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/747c3b2038f1139e3dcd9886a3f5a948648b7503",
  9616. "reference": "747c3b2038f1139e3dcd9886a3f5a948648b7503",
  9617. "shasum": ""
  9618. },
  9619. "require": {
  9620. "ext-dom": "*",
  9621. "ext-json": "*",
  9622. "ext-libxml": "*",
  9623. "ext-mbstring": "*",
  9624. "ext-xml": "*",
  9625. "ext-xmlwriter": "*",
  9626. "myclabs/deep-copy": "^1.10.1",
  9627. "phar-io/manifest": "^2.0.3",
  9628. "phar-io/version": "^3.0.2",
  9629. "php": ">=8.1",
  9630. "phpunit/php-code-coverage": "^10.1.5",
  9631. "phpunit/php-file-iterator": "^4.0",
  9632. "phpunit/php-invoker": "^4.0",
  9633. "phpunit/php-text-template": "^3.0",
  9634. "phpunit/php-timer": "^6.0",
  9635. "sebastian/cli-parser": "^2.0",
  9636. "sebastian/code-unit": "^2.0",
  9637. "sebastian/comparator": "^5.0",
  9638. "sebastian/diff": "^5.0",
  9639. "sebastian/environment": "^6.0",
  9640. "sebastian/exporter": "^5.1",
  9641. "sebastian/global-state": "^6.0.1",
  9642. "sebastian/object-enumerator": "^5.0",
  9643. "sebastian/recursion-context": "^5.0",
  9644. "sebastian/type": "^4.0",
  9645. "sebastian/version": "^4.0"
  9646. },
  9647. "suggest": {
  9648. "ext-soap": "To be able to generate mocks based on WSDL files"
  9649. },
  9650. "bin": [
  9651. "phpunit"
  9652. ],
  9653. "type": "library",
  9654. "extra": {
  9655. "branch-alias": {
  9656. "dev-main": "10.3-dev"
  9657. }
  9658. },
  9659. "autoload": {
  9660. "files": [
  9661. "src/Framework/Assert/Functions.php"
  9662. ],
  9663. "classmap": [
  9664. "src/"
  9665. ]
  9666. },
  9667. "notification-url": "https://packagist.org/downloads/",
  9668. "license": [
  9669. "BSD-3-Clause"
  9670. ],
  9671. "authors": [
  9672. {
  9673. "name": "Sebastian Bergmann",
  9674. "email": "sebastian@phpunit.de",
  9675. "role": "lead"
  9676. }
  9677. ],
  9678. "description": "The PHP Unit Testing framework.",
  9679. "homepage": "https://phpunit.de/",
  9680. "keywords": [
  9681. "phpunit",
  9682. "testing",
  9683. "xunit"
  9684. ],
  9685. "support": {
  9686. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9687. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9688. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.3.5"
  9689. },
  9690. "funding": [
  9691. {
  9692. "url": "https://phpunit.de/sponsors.html",
  9693. "type": "custom"
  9694. },
  9695. {
  9696. "url": "https://github.com/sebastianbergmann",
  9697. "type": "github"
  9698. },
  9699. {
  9700. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9701. "type": "tidelift"
  9702. }
  9703. ],
  9704. "time": "2023-09-19T05:42:37+00:00"
  9705. },
  9706. {
  9707. "name": "sebastian/cli-parser",
  9708. "version": "2.0.0",
  9709. "source": {
  9710. "type": "git",
  9711. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9712. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae"
  9713. },
  9714. "dist": {
  9715. "type": "zip",
  9716. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae",
  9717. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae",
  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": "Library for parsing CLI options",
  9749. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9750. "support": {
  9751. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9752. "source": "https://github.com/sebastianbergmann/cli-parser/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:15+00:00"
  9761. },
  9762. {
  9763. "name": "sebastian/code-unit",
  9764. "version": "2.0.0",
  9765. "source": {
  9766. "type": "git",
  9767. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9768. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9769. },
  9770. "dist": {
  9771. "type": "zip",
  9772. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9773. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  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": "2.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. "role": "lead"
  9802. }
  9803. ],
  9804. "description": "Collection of value objects that represent the PHP code units",
  9805. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9806. "support": {
  9807. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9808. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9809. },
  9810. "funding": [
  9811. {
  9812. "url": "https://github.com/sebastianbergmann",
  9813. "type": "github"
  9814. }
  9815. ],
  9816. "time": "2023-02-03T06:58:43+00:00"
  9817. },
  9818. {
  9819. "name": "sebastian/code-unit-reverse-lookup",
  9820. "version": "3.0.0",
  9821. "source": {
  9822. "type": "git",
  9823. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9824. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9825. },
  9826. "dist": {
  9827. "type": "zip",
  9828. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9829. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9830. "shasum": ""
  9831. },
  9832. "require": {
  9833. "php": ">=8.1"
  9834. },
  9835. "require-dev": {
  9836. "phpunit/phpunit": "^10.0"
  9837. },
  9838. "type": "library",
  9839. "extra": {
  9840. "branch-alias": {
  9841. "dev-main": "3.0-dev"
  9842. }
  9843. },
  9844. "autoload": {
  9845. "classmap": [
  9846. "src/"
  9847. ]
  9848. },
  9849. "notification-url": "https://packagist.org/downloads/",
  9850. "license": [
  9851. "BSD-3-Clause"
  9852. ],
  9853. "authors": [
  9854. {
  9855. "name": "Sebastian Bergmann",
  9856. "email": "sebastian@phpunit.de"
  9857. }
  9858. ],
  9859. "description": "Looks up which function or method a line of code belongs to",
  9860. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9861. "support": {
  9862. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9863. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9864. },
  9865. "funding": [
  9866. {
  9867. "url": "https://github.com/sebastianbergmann",
  9868. "type": "github"
  9869. }
  9870. ],
  9871. "time": "2023-02-03T06:59:15+00:00"
  9872. },
  9873. {
  9874. "name": "sebastian/comparator",
  9875. "version": "5.0.1",
  9876. "source": {
  9877. "type": "git",
  9878. "url": "https://github.com/sebastianbergmann/comparator.git",
  9879. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  9880. },
  9881. "dist": {
  9882. "type": "zip",
  9883. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  9884. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  9885. "shasum": ""
  9886. },
  9887. "require": {
  9888. "ext-dom": "*",
  9889. "ext-mbstring": "*",
  9890. "php": ">=8.1",
  9891. "sebastian/diff": "^5.0",
  9892. "sebastian/exporter": "^5.0"
  9893. },
  9894. "require-dev": {
  9895. "phpunit/phpunit": "^10.3"
  9896. },
  9897. "type": "library",
  9898. "extra": {
  9899. "branch-alias": {
  9900. "dev-main": "5.0-dev"
  9901. }
  9902. },
  9903. "autoload": {
  9904. "classmap": [
  9905. "src/"
  9906. ]
  9907. },
  9908. "notification-url": "https://packagist.org/downloads/",
  9909. "license": [
  9910. "BSD-3-Clause"
  9911. ],
  9912. "authors": [
  9913. {
  9914. "name": "Sebastian Bergmann",
  9915. "email": "sebastian@phpunit.de"
  9916. },
  9917. {
  9918. "name": "Jeff Welch",
  9919. "email": "whatthejeff@gmail.com"
  9920. },
  9921. {
  9922. "name": "Volker Dusch",
  9923. "email": "github@wallbash.com"
  9924. },
  9925. {
  9926. "name": "Bernhard Schussek",
  9927. "email": "bschussek@2bepublished.at"
  9928. }
  9929. ],
  9930. "description": "Provides the functionality to compare PHP values for equality",
  9931. "homepage": "https://github.com/sebastianbergmann/comparator",
  9932. "keywords": [
  9933. "comparator",
  9934. "compare",
  9935. "equality"
  9936. ],
  9937. "support": {
  9938. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9939. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9940. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  9941. },
  9942. "funding": [
  9943. {
  9944. "url": "https://github.com/sebastianbergmann",
  9945. "type": "github"
  9946. }
  9947. ],
  9948. "time": "2023-08-14T13:18:12+00:00"
  9949. },
  9950. {
  9951. "name": "sebastian/complexity",
  9952. "version": "3.0.1",
  9953. "source": {
  9954. "type": "git",
  9955. "url": "https://github.com/sebastianbergmann/complexity.git",
  9956. "reference": "c70b73893e10757af9c6a48929fa6a333b56a97a"
  9957. },
  9958. "dist": {
  9959. "type": "zip",
  9960. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/c70b73893e10757af9c6a48929fa6a333b56a97a",
  9961. "reference": "c70b73893e10757af9c6a48929fa6a333b56a97a",
  9962. "shasum": ""
  9963. },
  9964. "require": {
  9965. "nikic/php-parser": "^4.10",
  9966. "php": ">=8.1"
  9967. },
  9968. "require-dev": {
  9969. "phpunit/phpunit": "^10.0"
  9970. },
  9971. "type": "library",
  9972. "extra": {
  9973. "branch-alias": {
  9974. "dev-main": "3.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. "role": "lead"
  9991. }
  9992. ],
  9993. "description": "Library for calculating the complexity of PHP code units",
  9994. "homepage": "https://github.com/sebastianbergmann/complexity",
  9995. "support": {
  9996. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9997. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9998. "source": "https://github.com/sebastianbergmann/complexity/tree/3.0.1"
  9999. },
  10000. "funding": [
  10001. {
  10002. "url": "https://github.com/sebastianbergmann",
  10003. "type": "github"
  10004. }
  10005. ],
  10006. "time": "2023-08-31T09:55:53+00:00"
  10007. },
  10008. {
  10009. "name": "sebastian/diff",
  10010. "version": "5.0.3",
  10011. "source": {
  10012. "type": "git",
  10013. "url": "https://github.com/sebastianbergmann/diff.git",
  10014. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b"
  10015. },
  10016. "dist": {
  10017. "type": "zip",
  10018. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  10019. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  10020. "shasum": ""
  10021. },
  10022. "require": {
  10023. "php": ">=8.1"
  10024. },
  10025. "require-dev": {
  10026. "phpunit/phpunit": "^10.0",
  10027. "symfony/process": "^4.2 || ^5"
  10028. },
  10029. "type": "library",
  10030. "extra": {
  10031. "branch-alias": {
  10032. "dev-main": "5.0-dev"
  10033. }
  10034. },
  10035. "autoload": {
  10036. "classmap": [
  10037. "src/"
  10038. ]
  10039. },
  10040. "notification-url": "https://packagist.org/downloads/",
  10041. "license": [
  10042. "BSD-3-Clause"
  10043. ],
  10044. "authors": [
  10045. {
  10046. "name": "Sebastian Bergmann",
  10047. "email": "sebastian@phpunit.de"
  10048. },
  10049. {
  10050. "name": "Kore Nordmann",
  10051. "email": "mail@kore-nordmann.de"
  10052. }
  10053. ],
  10054. "description": "Diff implementation",
  10055. "homepage": "https://github.com/sebastianbergmann/diff",
  10056. "keywords": [
  10057. "diff",
  10058. "udiff",
  10059. "unidiff",
  10060. "unified diff"
  10061. ],
  10062. "support": {
  10063. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10064. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10065. "source": "https://github.com/sebastianbergmann/diff/tree/5.0.3"
  10066. },
  10067. "funding": [
  10068. {
  10069. "url": "https://github.com/sebastianbergmann",
  10070. "type": "github"
  10071. }
  10072. ],
  10073. "time": "2023-05-01T07:48:21+00:00"
  10074. },
  10075. {
  10076. "name": "sebastian/environment",
  10077. "version": "6.0.1",
  10078. "source": {
  10079. "type": "git",
  10080. "url": "https://github.com/sebastianbergmann/environment.git",
  10081. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951"
  10082. },
  10083. "dist": {
  10084. "type": "zip",
  10085. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951",
  10086. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951",
  10087. "shasum": ""
  10088. },
  10089. "require": {
  10090. "php": ">=8.1"
  10091. },
  10092. "require-dev": {
  10093. "phpunit/phpunit": "^10.0"
  10094. },
  10095. "suggest": {
  10096. "ext-posix": "*"
  10097. },
  10098. "type": "library",
  10099. "extra": {
  10100. "branch-alias": {
  10101. "dev-main": "6.0-dev"
  10102. }
  10103. },
  10104. "autoload": {
  10105. "classmap": [
  10106. "src/"
  10107. ]
  10108. },
  10109. "notification-url": "https://packagist.org/downloads/",
  10110. "license": [
  10111. "BSD-3-Clause"
  10112. ],
  10113. "authors": [
  10114. {
  10115. "name": "Sebastian Bergmann",
  10116. "email": "sebastian@phpunit.de"
  10117. }
  10118. ],
  10119. "description": "Provides functionality to handle HHVM/PHP environments",
  10120. "homepage": "https://github.com/sebastianbergmann/environment",
  10121. "keywords": [
  10122. "Xdebug",
  10123. "environment",
  10124. "hhvm"
  10125. ],
  10126. "support": {
  10127. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10128. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10129. "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1"
  10130. },
  10131. "funding": [
  10132. {
  10133. "url": "https://github.com/sebastianbergmann",
  10134. "type": "github"
  10135. }
  10136. ],
  10137. "time": "2023-04-11T05:39:26+00:00"
  10138. },
  10139. {
  10140. "name": "sebastian/exporter",
  10141. "version": "5.1.0",
  10142. "source": {
  10143. "type": "git",
  10144. "url": "https://github.com/sebastianbergmann/exporter.git",
  10145. "reference": "c3fa8483f9539b190f7cd4bfc4a07631dd1df344"
  10146. },
  10147. "dist": {
  10148. "type": "zip",
  10149. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/c3fa8483f9539b190f7cd4bfc4a07631dd1df344",
  10150. "reference": "c3fa8483f9539b190f7cd4bfc4a07631dd1df344",
  10151. "shasum": ""
  10152. },
  10153. "require": {
  10154. "ext-mbstring": "*",
  10155. "php": ">=8.1",
  10156. "sebastian/recursion-context": "^5.0"
  10157. },
  10158. "require-dev": {
  10159. "phpunit/phpunit": "^10.0"
  10160. },
  10161. "type": "library",
  10162. "extra": {
  10163. "branch-alias": {
  10164. "dev-main": "5.0-dev"
  10165. }
  10166. },
  10167. "autoload": {
  10168. "classmap": [
  10169. "src/"
  10170. ]
  10171. },
  10172. "notification-url": "https://packagist.org/downloads/",
  10173. "license": [
  10174. "BSD-3-Clause"
  10175. ],
  10176. "authors": [
  10177. {
  10178. "name": "Sebastian Bergmann",
  10179. "email": "sebastian@phpunit.de"
  10180. },
  10181. {
  10182. "name": "Jeff Welch",
  10183. "email": "whatthejeff@gmail.com"
  10184. },
  10185. {
  10186. "name": "Volker Dusch",
  10187. "email": "github@wallbash.com"
  10188. },
  10189. {
  10190. "name": "Adam Harvey",
  10191. "email": "aharvey@php.net"
  10192. },
  10193. {
  10194. "name": "Bernhard Schussek",
  10195. "email": "bschussek@gmail.com"
  10196. }
  10197. ],
  10198. "description": "Provides the functionality to export PHP variables for visualization",
  10199. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10200. "keywords": [
  10201. "export",
  10202. "exporter"
  10203. ],
  10204. "support": {
  10205. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10206. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10207. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.0"
  10208. },
  10209. "funding": [
  10210. {
  10211. "url": "https://github.com/sebastianbergmann",
  10212. "type": "github"
  10213. }
  10214. ],
  10215. "time": "2023-09-18T07:15:37+00:00"
  10216. },
  10217. {
  10218. "name": "sebastian/global-state",
  10219. "version": "6.0.1",
  10220. "source": {
  10221. "type": "git",
  10222. "url": "https://github.com/sebastianbergmann/global-state.git",
  10223. "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4"
  10224. },
  10225. "dist": {
  10226. "type": "zip",
  10227. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/7ea9ead78f6d380d2a667864c132c2f7b83055e4",
  10228. "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4",
  10229. "shasum": ""
  10230. },
  10231. "require": {
  10232. "php": ">=8.1",
  10233. "sebastian/object-reflector": "^3.0",
  10234. "sebastian/recursion-context": "^5.0"
  10235. },
  10236. "require-dev": {
  10237. "ext-dom": "*",
  10238. "phpunit/phpunit": "^10.0"
  10239. },
  10240. "type": "library",
  10241. "extra": {
  10242. "branch-alias": {
  10243. "dev-main": "6.0-dev"
  10244. }
  10245. },
  10246. "autoload": {
  10247. "classmap": [
  10248. "src/"
  10249. ]
  10250. },
  10251. "notification-url": "https://packagist.org/downloads/",
  10252. "license": [
  10253. "BSD-3-Clause"
  10254. ],
  10255. "authors": [
  10256. {
  10257. "name": "Sebastian Bergmann",
  10258. "email": "sebastian@phpunit.de"
  10259. }
  10260. ],
  10261. "description": "Snapshotting of global state",
  10262. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10263. "keywords": [
  10264. "global state"
  10265. ],
  10266. "support": {
  10267. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10268. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10269. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.1"
  10270. },
  10271. "funding": [
  10272. {
  10273. "url": "https://github.com/sebastianbergmann",
  10274. "type": "github"
  10275. }
  10276. ],
  10277. "time": "2023-07-19T07:19:23+00:00"
  10278. },
  10279. {
  10280. "name": "sebastian/lines-of-code",
  10281. "version": "2.0.1",
  10282. "source": {
  10283. "type": "git",
  10284. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10285. "reference": "649e40d279e243d985aa8fb6e74dd5bb28dc185d"
  10286. },
  10287. "dist": {
  10288. "type": "zip",
  10289. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/649e40d279e243d985aa8fb6e74dd5bb28dc185d",
  10290. "reference": "649e40d279e243d985aa8fb6e74dd5bb28dc185d",
  10291. "shasum": ""
  10292. },
  10293. "require": {
  10294. "nikic/php-parser": "^4.10",
  10295. "php": ">=8.1"
  10296. },
  10297. "require-dev": {
  10298. "phpunit/phpunit": "^10.0"
  10299. },
  10300. "type": "library",
  10301. "extra": {
  10302. "branch-alias": {
  10303. "dev-main": "2.0-dev"
  10304. }
  10305. },
  10306. "autoload": {
  10307. "classmap": [
  10308. "src/"
  10309. ]
  10310. },
  10311. "notification-url": "https://packagist.org/downloads/",
  10312. "license": [
  10313. "BSD-3-Clause"
  10314. ],
  10315. "authors": [
  10316. {
  10317. "name": "Sebastian Bergmann",
  10318. "email": "sebastian@phpunit.de",
  10319. "role": "lead"
  10320. }
  10321. ],
  10322. "description": "Library for counting the lines of code in PHP source code",
  10323. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10324. "support": {
  10325. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10326. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10327. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.1"
  10328. },
  10329. "funding": [
  10330. {
  10331. "url": "https://github.com/sebastianbergmann",
  10332. "type": "github"
  10333. }
  10334. ],
  10335. "time": "2023-08-31T09:25:50+00:00"
  10336. },
  10337. {
  10338. "name": "sebastian/object-enumerator",
  10339. "version": "5.0.0",
  10340. "source": {
  10341. "type": "git",
  10342. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10343. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10344. },
  10345. "dist": {
  10346. "type": "zip",
  10347. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10348. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10349. "shasum": ""
  10350. },
  10351. "require": {
  10352. "php": ">=8.1",
  10353. "sebastian/object-reflector": "^3.0",
  10354. "sebastian/recursion-context": "^5.0"
  10355. },
  10356. "require-dev": {
  10357. "phpunit/phpunit": "^10.0"
  10358. },
  10359. "type": "library",
  10360. "extra": {
  10361. "branch-alias": {
  10362. "dev-main": "5.0-dev"
  10363. }
  10364. },
  10365. "autoload": {
  10366. "classmap": [
  10367. "src/"
  10368. ]
  10369. },
  10370. "notification-url": "https://packagist.org/downloads/",
  10371. "license": [
  10372. "BSD-3-Clause"
  10373. ],
  10374. "authors": [
  10375. {
  10376. "name": "Sebastian Bergmann",
  10377. "email": "sebastian@phpunit.de"
  10378. }
  10379. ],
  10380. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10381. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10382. "support": {
  10383. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10384. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10385. },
  10386. "funding": [
  10387. {
  10388. "url": "https://github.com/sebastianbergmann",
  10389. "type": "github"
  10390. }
  10391. ],
  10392. "time": "2023-02-03T07:08:32+00:00"
  10393. },
  10394. {
  10395. "name": "sebastian/object-reflector",
  10396. "version": "3.0.0",
  10397. "source": {
  10398. "type": "git",
  10399. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10400. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10401. },
  10402. "dist": {
  10403. "type": "zip",
  10404. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10405. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10406. "shasum": ""
  10407. },
  10408. "require": {
  10409. "php": ">=8.1"
  10410. },
  10411. "require-dev": {
  10412. "phpunit/phpunit": "^10.0"
  10413. },
  10414. "type": "library",
  10415. "extra": {
  10416. "branch-alias": {
  10417. "dev-main": "3.0-dev"
  10418. }
  10419. },
  10420. "autoload": {
  10421. "classmap": [
  10422. "src/"
  10423. ]
  10424. },
  10425. "notification-url": "https://packagist.org/downloads/",
  10426. "license": [
  10427. "BSD-3-Clause"
  10428. ],
  10429. "authors": [
  10430. {
  10431. "name": "Sebastian Bergmann",
  10432. "email": "sebastian@phpunit.de"
  10433. }
  10434. ],
  10435. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10436. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10437. "support": {
  10438. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10439. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10440. },
  10441. "funding": [
  10442. {
  10443. "url": "https://github.com/sebastianbergmann",
  10444. "type": "github"
  10445. }
  10446. ],
  10447. "time": "2023-02-03T07:06:18+00:00"
  10448. },
  10449. {
  10450. "name": "sebastian/recursion-context",
  10451. "version": "5.0.0",
  10452. "source": {
  10453. "type": "git",
  10454. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10455. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10456. },
  10457. "dist": {
  10458. "type": "zip",
  10459. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10460. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10461. "shasum": ""
  10462. },
  10463. "require": {
  10464. "php": ">=8.1"
  10465. },
  10466. "require-dev": {
  10467. "phpunit/phpunit": "^10.0"
  10468. },
  10469. "type": "library",
  10470. "extra": {
  10471. "branch-alias": {
  10472. "dev-main": "5.0-dev"
  10473. }
  10474. },
  10475. "autoload": {
  10476. "classmap": [
  10477. "src/"
  10478. ]
  10479. },
  10480. "notification-url": "https://packagist.org/downloads/",
  10481. "license": [
  10482. "BSD-3-Clause"
  10483. ],
  10484. "authors": [
  10485. {
  10486. "name": "Sebastian Bergmann",
  10487. "email": "sebastian@phpunit.de"
  10488. },
  10489. {
  10490. "name": "Jeff Welch",
  10491. "email": "whatthejeff@gmail.com"
  10492. },
  10493. {
  10494. "name": "Adam Harvey",
  10495. "email": "aharvey@php.net"
  10496. }
  10497. ],
  10498. "description": "Provides functionality to recursively process PHP variables",
  10499. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10500. "support": {
  10501. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10502. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10503. },
  10504. "funding": [
  10505. {
  10506. "url": "https://github.com/sebastianbergmann",
  10507. "type": "github"
  10508. }
  10509. ],
  10510. "time": "2023-02-03T07:05:40+00:00"
  10511. },
  10512. {
  10513. "name": "sebastian/type",
  10514. "version": "4.0.0",
  10515. "source": {
  10516. "type": "git",
  10517. "url": "https://github.com/sebastianbergmann/type.git",
  10518. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10519. },
  10520. "dist": {
  10521. "type": "zip",
  10522. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10523. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10524. "shasum": ""
  10525. },
  10526. "require": {
  10527. "php": ">=8.1"
  10528. },
  10529. "require-dev": {
  10530. "phpunit/phpunit": "^10.0"
  10531. },
  10532. "type": "library",
  10533. "extra": {
  10534. "branch-alias": {
  10535. "dev-main": "4.0-dev"
  10536. }
  10537. },
  10538. "autoload": {
  10539. "classmap": [
  10540. "src/"
  10541. ]
  10542. },
  10543. "notification-url": "https://packagist.org/downloads/",
  10544. "license": [
  10545. "BSD-3-Clause"
  10546. ],
  10547. "authors": [
  10548. {
  10549. "name": "Sebastian Bergmann",
  10550. "email": "sebastian@phpunit.de",
  10551. "role": "lead"
  10552. }
  10553. ],
  10554. "description": "Collection of value objects that represent the types of the PHP type system",
  10555. "homepage": "https://github.com/sebastianbergmann/type",
  10556. "support": {
  10557. "issues": "https://github.com/sebastianbergmann/type/issues",
  10558. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10559. },
  10560. "funding": [
  10561. {
  10562. "url": "https://github.com/sebastianbergmann",
  10563. "type": "github"
  10564. }
  10565. ],
  10566. "time": "2023-02-03T07:10:45+00:00"
  10567. },
  10568. {
  10569. "name": "sebastian/version",
  10570. "version": "4.0.1",
  10571. "source": {
  10572. "type": "git",
  10573. "url": "https://github.com/sebastianbergmann/version.git",
  10574. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10575. },
  10576. "dist": {
  10577. "type": "zip",
  10578. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10579. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10580. "shasum": ""
  10581. },
  10582. "require": {
  10583. "php": ">=8.1"
  10584. },
  10585. "type": "library",
  10586. "extra": {
  10587. "branch-alias": {
  10588. "dev-main": "4.0-dev"
  10589. }
  10590. },
  10591. "autoload": {
  10592. "classmap": [
  10593. "src/"
  10594. ]
  10595. },
  10596. "notification-url": "https://packagist.org/downloads/",
  10597. "license": [
  10598. "BSD-3-Clause"
  10599. ],
  10600. "authors": [
  10601. {
  10602. "name": "Sebastian Bergmann",
  10603. "email": "sebastian@phpunit.de",
  10604. "role": "lead"
  10605. }
  10606. ],
  10607. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10608. "homepage": "https://github.com/sebastianbergmann/version",
  10609. "support": {
  10610. "issues": "https://github.com/sebastianbergmann/version/issues",
  10611. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10612. },
  10613. "funding": [
  10614. {
  10615. "url": "https://github.com/sebastianbergmann",
  10616. "type": "github"
  10617. }
  10618. ],
  10619. "time": "2023-02-07T11:34:05+00:00"
  10620. },
  10621. {
  10622. "name": "spatie/backtrace",
  10623. "version": "1.5.3",
  10624. "source": {
  10625. "type": "git",
  10626. "url": "https://github.com/spatie/backtrace.git",
  10627. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab"
  10628. },
  10629. "dist": {
  10630. "type": "zip",
  10631. "url": "https://api.github.com/repos/spatie/backtrace/zipball/483f76a82964a0431aa836b6ed0edde0c248e3ab",
  10632. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab",
  10633. "shasum": ""
  10634. },
  10635. "require": {
  10636. "php": "^7.3|^8.0"
  10637. },
  10638. "require-dev": {
  10639. "ext-json": "*",
  10640. "phpunit/phpunit": "^9.3",
  10641. "spatie/phpunit-snapshot-assertions": "^4.2",
  10642. "symfony/var-dumper": "^5.1"
  10643. },
  10644. "type": "library",
  10645. "autoload": {
  10646. "psr-4": {
  10647. "Spatie\\Backtrace\\": "src"
  10648. }
  10649. },
  10650. "notification-url": "https://packagist.org/downloads/",
  10651. "license": [
  10652. "MIT"
  10653. ],
  10654. "authors": [
  10655. {
  10656. "name": "Freek Van de Herten",
  10657. "email": "freek@spatie.be",
  10658. "homepage": "https://spatie.be",
  10659. "role": "Developer"
  10660. }
  10661. ],
  10662. "description": "A better backtrace",
  10663. "homepage": "https://github.com/spatie/backtrace",
  10664. "keywords": [
  10665. "Backtrace",
  10666. "spatie"
  10667. ],
  10668. "support": {
  10669. "source": "https://github.com/spatie/backtrace/tree/1.5.3"
  10670. },
  10671. "funding": [
  10672. {
  10673. "url": "https://github.com/sponsors/spatie",
  10674. "type": "github"
  10675. },
  10676. {
  10677. "url": "https://spatie.be/open-source/support-us",
  10678. "type": "other"
  10679. }
  10680. ],
  10681. "time": "2023-06-28T12:59:17+00:00"
  10682. },
  10683. {
  10684. "name": "spatie/flare-client-php",
  10685. "version": "1.4.2",
  10686. "source": {
  10687. "type": "git",
  10688. "url": "https://github.com/spatie/flare-client-php.git",
  10689. "reference": "5f2c6a7a0d2c1d90c12559dc7828fd942911a544"
  10690. },
  10691. "dist": {
  10692. "type": "zip",
  10693. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/5f2c6a7a0d2c1d90c12559dc7828fd942911a544",
  10694. "reference": "5f2c6a7a0d2c1d90c12559dc7828fd942911a544",
  10695. "shasum": ""
  10696. },
  10697. "require": {
  10698. "illuminate/pipeline": "^8.0|^9.0|^10.0",
  10699. "nesbot/carbon": "^2.62.1",
  10700. "php": "^8.0",
  10701. "spatie/backtrace": "^1.5.2",
  10702. "symfony/http-foundation": "^5.0|^6.0",
  10703. "symfony/mime": "^5.2|^6.0",
  10704. "symfony/process": "^5.2|^6.0",
  10705. "symfony/var-dumper": "^5.2|^6.0"
  10706. },
  10707. "require-dev": {
  10708. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  10709. "pestphp/pest": "^1.20",
  10710. "phpstan/extension-installer": "^1.1",
  10711. "phpstan/phpstan-deprecation-rules": "^1.0",
  10712. "phpstan/phpstan-phpunit": "^1.0",
  10713. "spatie/phpunit-snapshot-assertions": "^4.0"
  10714. },
  10715. "type": "library",
  10716. "extra": {
  10717. "branch-alias": {
  10718. "dev-main": "1.3.x-dev"
  10719. }
  10720. },
  10721. "autoload": {
  10722. "files": [
  10723. "src/helpers.php"
  10724. ],
  10725. "psr-4": {
  10726. "Spatie\\FlareClient\\": "src"
  10727. }
  10728. },
  10729. "notification-url": "https://packagist.org/downloads/",
  10730. "license": [
  10731. "MIT"
  10732. ],
  10733. "description": "Send PHP errors to Flare",
  10734. "homepage": "https://github.com/spatie/flare-client-php",
  10735. "keywords": [
  10736. "exception",
  10737. "flare",
  10738. "reporting",
  10739. "spatie"
  10740. ],
  10741. "support": {
  10742. "issues": "https://github.com/spatie/flare-client-php/issues",
  10743. "source": "https://github.com/spatie/flare-client-php/tree/1.4.2"
  10744. },
  10745. "funding": [
  10746. {
  10747. "url": "https://github.com/spatie",
  10748. "type": "github"
  10749. }
  10750. ],
  10751. "time": "2023-07-28T08:07:24+00:00"
  10752. },
  10753. {
  10754. "name": "spatie/ignition",
  10755. "version": "1.11.2",
  10756. "source": {
  10757. "type": "git",
  10758. "url": "https://github.com/spatie/ignition.git",
  10759. "reference": "48b23411ca4bfbc75c75dfc638b6b36159c375aa"
  10760. },
  10761. "dist": {
  10762. "type": "zip",
  10763. "url": "https://api.github.com/repos/spatie/ignition/zipball/48b23411ca4bfbc75c75dfc638b6b36159c375aa",
  10764. "reference": "48b23411ca4bfbc75c75dfc638b6b36159c375aa",
  10765. "shasum": ""
  10766. },
  10767. "require": {
  10768. "ext-json": "*",
  10769. "ext-mbstring": "*",
  10770. "php": "^8.0",
  10771. "spatie/backtrace": "^1.5.3",
  10772. "spatie/flare-client-php": "^1.4.0",
  10773. "symfony/console": "^5.4|^6.0",
  10774. "symfony/var-dumper": "^5.4|^6.0"
  10775. },
  10776. "require-dev": {
  10777. "illuminate/cache": "^9.52",
  10778. "mockery/mockery": "^1.4",
  10779. "pestphp/pest": "^1.20",
  10780. "phpstan/extension-installer": "^1.1",
  10781. "phpstan/phpstan-deprecation-rules": "^1.0",
  10782. "phpstan/phpstan-phpunit": "^1.0",
  10783. "psr/simple-cache-implementation": "*",
  10784. "symfony/cache": "^6.0",
  10785. "symfony/process": "^5.4|^6.0",
  10786. "vlucas/phpdotenv": "^5.5"
  10787. },
  10788. "suggest": {
  10789. "openai-php/client": "Require get solutions from OpenAI",
  10790. "simple-cache-implementation": "To cache solutions from OpenAI"
  10791. },
  10792. "type": "library",
  10793. "extra": {
  10794. "branch-alias": {
  10795. "dev-main": "1.5.x-dev"
  10796. }
  10797. },
  10798. "autoload": {
  10799. "psr-4": {
  10800. "Spatie\\Ignition\\": "src"
  10801. }
  10802. },
  10803. "notification-url": "https://packagist.org/downloads/",
  10804. "license": [
  10805. "MIT"
  10806. ],
  10807. "authors": [
  10808. {
  10809. "name": "Spatie",
  10810. "email": "info@spatie.be",
  10811. "role": "Developer"
  10812. }
  10813. ],
  10814. "description": "A beautiful error page for PHP applications.",
  10815. "homepage": "https://flareapp.io/ignition",
  10816. "keywords": [
  10817. "error",
  10818. "flare",
  10819. "laravel",
  10820. "page"
  10821. ],
  10822. "support": {
  10823. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10824. "forum": "https://twitter.com/flareappio",
  10825. "issues": "https://github.com/spatie/ignition/issues",
  10826. "source": "https://github.com/spatie/ignition"
  10827. },
  10828. "funding": [
  10829. {
  10830. "url": "https://github.com/spatie",
  10831. "type": "github"
  10832. }
  10833. ],
  10834. "time": "2023-09-19T15:29:52+00:00"
  10835. },
  10836. {
  10837. "name": "spatie/laravel-ignition",
  10838. "version": "2.3.0",
  10839. "source": {
  10840. "type": "git",
  10841. "url": "https://github.com/spatie/laravel-ignition.git",
  10842. "reference": "4ed813d16edb5a1ab0d7f4b1d116c37ee8cdf3c0"
  10843. },
  10844. "dist": {
  10845. "type": "zip",
  10846. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/4ed813d16edb5a1ab0d7f4b1d116c37ee8cdf3c0",
  10847. "reference": "4ed813d16edb5a1ab0d7f4b1d116c37ee8cdf3c0",
  10848. "shasum": ""
  10849. },
  10850. "require": {
  10851. "ext-curl": "*",
  10852. "ext-json": "*",
  10853. "ext-mbstring": "*",
  10854. "illuminate/support": "^10.0",
  10855. "php": "^8.1",
  10856. "spatie/flare-client-php": "^1.3.5",
  10857. "spatie/ignition": "^1.9",
  10858. "symfony/console": "^6.2.3",
  10859. "symfony/var-dumper": "^6.2.3"
  10860. },
  10861. "require-dev": {
  10862. "livewire/livewire": "^2.11",
  10863. "mockery/mockery": "^1.5.1",
  10864. "openai-php/client": "^0.3.4",
  10865. "orchestra/testbench": "^8.0",
  10866. "pestphp/pest": "^1.22.3",
  10867. "phpstan/extension-installer": "^1.2",
  10868. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  10869. "phpstan/phpstan-phpunit": "^1.3.3",
  10870. "vlucas/phpdotenv": "^5.5"
  10871. },
  10872. "suggest": {
  10873. "openai-php/client": "Require get solutions from OpenAI",
  10874. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  10875. },
  10876. "type": "library",
  10877. "extra": {
  10878. "laravel": {
  10879. "providers": [
  10880. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  10881. ],
  10882. "aliases": {
  10883. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  10884. }
  10885. }
  10886. },
  10887. "autoload": {
  10888. "files": [
  10889. "src/helpers.php"
  10890. ],
  10891. "psr-4": {
  10892. "Spatie\\LaravelIgnition\\": "src"
  10893. }
  10894. },
  10895. "notification-url": "https://packagist.org/downloads/",
  10896. "license": [
  10897. "MIT"
  10898. ],
  10899. "authors": [
  10900. {
  10901. "name": "Spatie",
  10902. "email": "info@spatie.be",
  10903. "role": "Developer"
  10904. }
  10905. ],
  10906. "description": "A beautiful error page for Laravel applications.",
  10907. "homepage": "https://flareapp.io/ignition",
  10908. "keywords": [
  10909. "error",
  10910. "flare",
  10911. "laravel",
  10912. "page"
  10913. ],
  10914. "support": {
  10915. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10916. "forum": "https://twitter.com/flareappio",
  10917. "issues": "https://github.com/spatie/laravel-ignition/issues",
  10918. "source": "https://github.com/spatie/laravel-ignition"
  10919. },
  10920. "funding": [
  10921. {
  10922. "url": "https://github.com/spatie",
  10923. "type": "github"
  10924. }
  10925. ],
  10926. "time": "2023-08-23T06:24:34+00:00"
  10927. },
  10928. {
  10929. "name": "symfony/yaml",
  10930. "version": "v6.3.3",
  10931. "source": {
  10932. "type": "git",
  10933. "url": "https://github.com/symfony/yaml.git",
  10934. "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add"
  10935. },
  10936. "dist": {
  10937. "type": "zip",
  10938. "url": "https://api.github.com/repos/symfony/yaml/zipball/e23292e8c07c85b971b44c1c4b87af52133e2add",
  10939. "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add",
  10940. "shasum": ""
  10941. },
  10942. "require": {
  10943. "php": ">=8.1",
  10944. "symfony/deprecation-contracts": "^2.5|^3",
  10945. "symfony/polyfill-ctype": "^1.8"
  10946. },
  10947. "conflict": {
  10948. "symfony/console": "<5.4"
  10949. },
  10950. "require-dev": {
  10951. "symfony/console": "^5.4|^6.0"
  10952. },
  10953. "bin": [
  10954. "Resources/bin/yaml-lint"
  10955. ],
  10956. "type": "library",
  10957. "autoload": {
  10958. "psr-4": {
  10959. "Symfony\\Component\\Yaml\\": ""
  10960. },
  10961. "exclude-from-classmap": [
  10962. "/Tests/"
  10963. ]
  10964. },
  10965. "notification-url": "https://packagist.org/downloads/",
  10966. "license": [
  10967. "MIT"
  10968. ],
  10969. "authors": [
  10970. {
  10971. "name": "Fabien Potencier",
  10972. "email": "fabien@symfony.com"
  10973. },
  10974. {
  10975. "name": "Symfony Community",
  10976. "homepage": "https://symfony.com/contributors"
  10977. }
  10978. ],
  10979. "description": "Loads and dumps YAML files",
  10980. "homepage": "https://symfony.com",
  10981. "support": {
  10982. "source": "https://github.com/symfony/yaml/tree/v6.3.3"
  10983. },
  10984. "funding": [
  10985. {
  10986. "url": "https://symfony.com/sponsor",
  10987. "type": "custom"
  10988. },
  10989. {
  10990. "url": "https://github.com/fabpot",
  10991. "type": "github"
  10992. },
  10993. {
  10994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10995. "type": "tidelift"
  10996. }
  10997. ],
  10998. "time": "2023-07-31T07:08:24+00:00"
  10999. },
  11000. {
  11001. "name": "theseer/tokenizer",
  11002. "version": "1.2.1",
  11003. "source": {
  11004. "type": "git",
  11005. "url": "https://github.com/theseer/tokenizer.git",
  11006. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  11007. },
  11008. "dist": {
  11009. "type": "zip",
  11010. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  11011. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  11012. "shasum": ""
  11013. },
  11014. "require": {
  11015. "ext-dom": "*",
  11016. "ext-tokenizer": "*",
  11017. "ext-xmlwriter": "*",
  11018. "php": "^7.2 || ^8.0"
  11019. },
  11020. "type": "library",
  11021. "autoload": {
  11022. "classmap": [
  11023. "src/"
  11024. ]
  11025. },
  11026. "notification-url": "https://packagist.org/downloads/",
  11027. "license": [
  11028. "BSD-3-Clause"
  11029. ],
  11030. "authors": [
  11031. {
  11032. "name": "Arne Blankerts",
  11033. "email": "arne@blankerts.de",
  11034. "role": "Developer"
  11035. }
  11036. ],
  11037. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11038. "support": {
  11039. "issues": "https://github.com/theseer/tokenizer/issues",
  11040. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  11041. },
  11042. "funding": [
  11043. {
  11044. "url": "https://github.com/theseer",
  11045. "type": "github"
  11046. }
  11047. ],
  11048. "time": "2021-07-28T10:34:58+00:00"
  11049. }
  11050. ],
  11051. "aliases": [],
  11052. "minimum-stability": "stable",
  11053. "stability-flags": [],
  11054. "prefer-stable": true,
  11055. "prefer-lowest": false,
  11056. "platform": {
  11057. "php": "^8.2"
  11058. },
  11059. "platform-dev": [],
  11060. "plugin-api-version": "2.3.0"
  11061. }