composer.lock 281 KB

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