composer.lock 314 KB

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