composer.lock 297 KB

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