composer.lock 279 KB

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