composer.lock 392 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917
  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": "2747f7671be30f7e24d784373ee05292",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-json": "*",
  25. "php": "^5.5 || ^7.0 || ^8.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  29. "squizlabs/php_codesniffer": "^3.6"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "files": [
  34. "src/helpers.php"
  35. ],
  36. "psr-4": {
  37. "Adbar\\": "src"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Riku Särkinen",
  47. "email": "riku@adbar.io"
  48. }
  49. ],
  50. "description": "PHP dot notation access to arrays",
  51. "homepage": "https://github.com/adbario/php-dot-notation",
  52. "keywords": [
  53. "ArrayAccess",
  54. "dotnotation"
  55. ],
  56. "support": {
  57. "issues": "https://github.com/adbario/php-dot-notation/issues",
  58. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  59. },
  60. "time": "2022-10-14T20:31:46+00:00"
  61. },
  62. {
  63. "name": "alibabacloud/client",
  64. "version": "1.5.32",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  68. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  73. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  74. "shasum": ""
  75. },
  76. "require": {
  77. "adbario/php-dot-notation": "^2.4.1",
  78. "clagiordano/weblibs-configmanager": "^1.0",
  79. "ext-curl": "*",
  80. "ext-json": "*",
  81. "ext-libxml": "*",
  82. "ext-mbstring": "*",
  83. "ext-openssl": "*",
  84. "ext-simplexml": "*",
  85. "ext-xmlwriter": "*",
  86. "guzzlehttp/guzzle": "^6.3|^7.0",
  87. "mtdowling/jmespath.php": "^2.5",
  88. "php": ">=5.5"
  89. },
  90. "require-dev": {
  91. "composer/composer": "^1.8",
  92. "drupal/coder": "^8.3",
  93. "ext-dom": "*",
  94. "ext-pcre": "*",
  95. "ext-sockets": "*",
  96. "ext-spl": "*",
  97. "league/climate": "^3.2.4",
  98. "mikey179/vfsstream": "^1.6",
  99. "monolog/monolog": "^1.24",
  100. "phpunit/phpunit": "^5.7|^6.6|^7.5|^8.5|^9.5",
  101. "psr/cache": "^1.0",
  102. "symfony/dotenv": "^3.4",
  103. "symfony/var-dumper": "^3.4"
  104. },
  105. "suggest": {
  106. "ext-sockets": "To use client-side monitoring"
  107. },
  108. "type": "library",
  109. "autoload": {
  110. "files": [
  111. "src/Functions.php"
  112. ],
  113. "psr-4": {
  114. "AlibabaCloud\\Client\\": "src"
  115. }
  116. },
  117. "notification-url": "https://packagist.org/downloads/",
  118. "license": [
  119. "Apache-2.0"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Alibaba Cloud SDK",
  124. "email": "sdk-team@alibabacloud.com",
  125. "homepage": "http://www.alibabacloud.com"
  126. }
  127. ],
  128. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  129. "homepage": "https://www.alibabacloud.com/",
  130. "keywords": [
  131. "alibaba",
  132. "alibabacloud",
  133. "aliyun",
  134. "client",
  135. "cloud",
  136. "library",
  137. "sdk",
  138. "tool"
  139. ],
  140. "support": {
  141. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  142. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  143. },
  144. "time": "2022-12-09T04:05:55+00:00"
  145. },
  146. {
  147. "name": "alibabacloud/credentials",
  148. "version": "1.1.5",
  149. "source": {
  150. "type": "git",
  151. "url": "https://github.com/aliyun/credentials-php.git",
  152. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a"
  153. },
  154. "dist": {
  155. "type": "zip",
  156. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/1d8383ceef695974a88a3859c42e235fd2e3981a",
  157. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a",
  158. "shasum": ""
  159. },
  160. "require": {
  161. "adbario/php-dot-notation": "^2.2",
  162. "alibabacloud/tea": "^3.0",
  163. "ext-curl": "*",
  164. "ext-json": "*",
  165. "ext-libxml": "*",
  166. "ext-mbstring": "*",
  167. "ext-openssl": "*",
  168. "ext-simplexml": "*",
  169. "ext-xmlwriter": "*",
  170. "guzzlehttp/guzzle": "^6.3|^7.0",
  171. "php": ">=5.6"
  172. },
  173. "require-dev": {
  174. "composer/composer": "^1.8",
  175. "drupal/coder": "^8.3",
  176. "ext-dom": "*",
  177. "ext-pcre": "*",
  178. "ext-sockets": "*",
  179. "ext-spl": "*",
  180. "mikey179/vfsstream": "^1.6",
  181. "monolog/monolog": "^1.24",
  182. "phpunit/phpunit": "^5.7|^6.6|^7.5",
  183. "psr/cache": "^1.0",
  184. "symfony/dotenv": "^3.4",
  185. "symfony/var-dumper": "^3.4"
  186. },
  187. "suggest": {
  188. "ext-sockets": "To use client-side monitoring"
  189. },
  190. "type": "library",
  191. "autoload": {
  192. "psr-4": {
  193. "AlibabaCloud\\Credentials\\": "src"
  194. }
  195. },
  196. "notification-url": "https://packagist.org/downloads/",
  197. "license": [
  198. "Apache-2.0"
  199. ],
  200. "authors": [
  201. {
  202. "name": "Alibaba Cloud SDK",
  203. "email": "sdk-team@alibabacloud.com",
  204. "homepage": "http://www.alibabacloud.com"
  205. }
  206. ],
  207. "description": "Alibaba Cloud Credentials for PHP",
  208. "homepage": "https://www.alibabacloud.com/",
  209. "keywords": [
  210. "alibaba",
  211. "alibabacloud",
  212. "aliyun",
  213. "client",
  214. "cloud",
  215. "credentials",
  216. "library",
  217. "sdk",
  218. "tool"
  219. ],
  220. "support": {
  221. "issues": "https://github.com/aliyun/credentials-php/issues",
  222. "source": "https://github.com/aliyun/credentials-php"
  223. },
  224. "time": "2023-04-11T02:12:12+00:00"
  225. },
  226. {
  227. "name": "alibabacloud/darabonba-openapi",
  228. "version": "0.2.10",
  229. "source": {
  230. "type": "git",
  231. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  232. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb"
  233. },
  234. "dist": {
  235. "type": "zip",
  236. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  237. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  238. "shasum": ""
  239. },
  240. "require": {
  241. "alibabacloud/credentials": "^1.1",
  242. "alibabacloud/gateway-spi": "^1",
  243. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  244. "alibabacloud/tea-utils": "^0.2.19",
  245. "alibabacloud/tea-xml": "^0.2",
  246. "php": ">5.5"
  247. },
  248. "type": "library",
  249. "autoload": {
  250. "psr-4": {
  251. "Darabonba\\OpenApi\\": "src"
  252. }
  253. },
  254. "notification-url": "https://packagist.org/downloads/",
  255. "license": [
  256. "Apache-2.0"
  257. ],
  258. "authors": [
  259. {
  260. "name": "Alibaba Cloud SDK",
  261. "email": "sdk-team@alibabacloud.com"
  262. }
  263. ],
  264. "description": "Alibaba Cloud OpenApi Client",
  265. "support": {
  266. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  267. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.10"
  268. },
  269. "time": "2023-11-23T07:01:20+00:00"
  270. },
  271. {
  272. "name": "alibabacloud/dm-20151123",
  273. "version": "1.0.9",
  274. "source": {
  275. "type": "git",
  276. "url": "https://github.com/alibabacloud-sdk-php/dm-20151123.git",
  277. "reference": "b167d114543dcde5cf70afc893844b47087415e2"
  278. },
  279. "dist": {
  280. "type": "zip",
  281. "url": "https://api.github.com/repos/alibabacloud-sdk-php/dm-20151123/zipball/b167d114543dcde5cf70afc893844b47087415e2",
  282. "reference": "b167d114543dcde5cf70afc893844b47087415e2",
  283. "shasum": ""
  284. },
  285. "require": {
  286. "alibabacloud/darabonba-openapi": "^0.2.10",
  287. "alibabacloud/endpoint-util": "^0.1.0",
  288. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  289. "alibabacloud/tea-utils": "^0.2.19",
  290. "php": ">5.5"
  291. },
  292. "type": "library",
  293. "autoload": {
  294. "psr-4": {
  295. "AlibabaCloud\\SDK\\Dm\\V20151123\\": "src"
  296. }
  297. },
  298. "notification-url": "https://packagist.org/downloads/",
  299. "license": [
  300. "Apache-2.0"
  301. ],
  302. "authors": [
  303. {
  304. "name": "Alibaba Cloud SDK",
  305. "email": "sdk-team@alibabacloud.com"
  306. }
  307. ],
  308. "description": "Alibaba Cloud Dm (20151123) SDK Library for PHP",
  309. "support": {
  310. "source": "https://github.com/alibabacloud-sdk-php/dm-20151123/tree/1.0.9"
  311. },
  312. "time": "2024-01-15T17:08:44+00:00"
  313. },
  314. {
  315. "name": "alibabacloud/dm-20170622",
  316. "version": "1.2.0",
  317. "source": {
  318. "type": "git",
  319. "url": "https://github.com/alibabacloud-sdk-php/dm-20170622.git",
  320. "reference": "cf41389081797e75e8f5c430ec24df64ffc2c67d"
  321. },
  322. "dist": {
  323. "type": "zip",
  324. "url": "https://api.github.com/repos/alibabacloud-sdk-php/dm-20170622/zipball/cf41389081797e75e8f5c430ec24df64ffc2c67d",
  325. "reference": "cf41389081797e75e8f5c430ec24df64ffc2c67d",
  326. "shasum": "",
  327. "mirrors": [
  328. {
  329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  330. "preferred": true
  331. }
  332. ]
  333. },
  334. "require": {
  335. "alibabacloud/darabonba-openapi": "^0.2.10",
  336. "alibabacloud/endpoint-util": "^0.1.0",
  337. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  338. "alibabacloud/tea-utils": "^0.2.19",
  339. "php": ">5.5"
  340. },
  341. "type": "library",
  342. "autoload": {
  343. "psr-4": {
  344. "AlibabaCloud\\SDK\\Dm\\V20170622\\": "src"
  345. }
  346. },
  347. "notification-url": "https://packagist.org/downloads/",
  348. "license": [
  349. "Apache-2.0"
  350. ],
  351. "authors": [
  352. {
  353. "name": "Alibaba Cloud SDK",
  354. "email": "sdk-team@alibabacloud.com"
  355. }
  356. ],
  357. "description": "Alibaba Cloud Dm (20170622) SDK Library for PHP",
  358. "support": {
  359. "source": "https://github.com/alibabacloud-sdk-php/dm-20170622/tree/1.2.0"
  360. },
  361. "time": "2024-01-15T17:09:47+00:00"
  362. },
  363. {
  364. "name": "alibabacloud/dysmsapi-20170525",
  365. "version": "2.0.24",
  366. "source": {
  367. "type": "git",
  368. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  369. "reference": "75d8a8c7259f53e58ba3330e004150841be6010d"
  370. },
  371. "dist": {
  372. "type": "zip",
  373. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/75d8a8c7259f53e58ba3330e004150841be6010d",
  374. "reference": "75d8a8c7259f53e58ba3330e004150841be6010d",
  375. "shasum": ""
  376. },
  377. "require": {
  378. "alibabacloud/darabonba-openapi": "^0.2.8",
  379. "alibabacloud/endpoint-util": "^0.1.0",
  380. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  381. "alibabacloud/tea-utils": "^0.2.19",
  382. "php": ">5.5"
  383. },
  384. "type": "library",
  385. "autoload": {
  386. "psr-4": {
  387. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  388. }
  389. },
  390. "notification-url": "https://packagist.org/downloads/",
  391. "license": [
  392. "Apache-2.0"
  393. ],
  394. "authors": [
  395. {
  396. "name": "Alibaba Cloud SDK",
  397. "email": "sdk-team@alibabacloud.com"
  398. }
  399. ],
  400. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  401. "support": {
  402. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/2.0.24"
  403. },
  404. "time": "2023-07-04T11:32:11+00:00"
  405. },
  406. {
  407. "name": "alibabacloud/endpoint-util",
  408. "version": "0.1.1",
  409. "source": {
  410. "type": "git",
  411. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  412. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  413. },
  414. "dist": {
  415. "type": "zip",
  416. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  417. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  418. "shasum": ""
  419. },
  420. "require": {
  421. "php": ">5.5"
  422. },
  423. "require-dev": {
  424. "phpunit/phpunit": "^4.8.35|^5.4.3"
  425. },
  426. "type": "library",
  427. "autoload": {
  428. "psr-4": {
  429. "AlibabaCloud\\Endpoint\\": "src"
  430. }
  431. },
  432. "notification-url": "https://packagist.org/downloads/",
  433. "license": [
  434. "Apache-2.0"
  435. ],
  436. "authors": [
  437. {
  438. "name": "Alibaba Cloud SDK",
  439. "email": "sdk-team@alibabacloud.com"
  440. }
  441. ],
  442. "description": "Alibaba Cloud Endpoint Library for PHP",
  443. "support": {
  444. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  445. },
  446. "time": "2020-06-04T10:57:15+00:00"
  447. },
  448. {
  449. "name": "alibabacloud/gateway-spi",
  450. "version": "1.0.0",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  454. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  459. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "alibabacloud/credentials": "^1.1",
  464. "php": ">5.5"
  465. },
  466. "type": "library",
  467. "autoload": {
  468. "psr-4": {
  469. "Darabonba\\GatewaySpi\\": "src"
  470. }
  471. },
  472. "notification-url": "https://packagist.org/downloads/",
  473. "license": [
  474. "Apache-2.0"
  475. ],
  476. "authors": [
  477. {
  478. "name": "Alibaba Cloud SDK",
  479. "email": "sdk-team@alibabacloud.com"
  480. }
  481. ],
  482. "description": "Alibaba Cloud Gateway SPI Client",
  483. "support": {
  484. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  485. },
  486. "time": "2022-07-14T05:31:35+00:00"
  487. },
  488. {
  489. "name": "alibabacloud/live",
  490. "version": "1.8.958",
  491. "source": {
  492. "type": "git",
  493. "url": "https://github.com/alibabacloud-sdk-php/live.git",
  494. "reference": "2dc756e9e156cb33bc1287d28fc3fade87e4ae60"
  495. },
  496. "dist": {
  497. "type": "zip",
  498. "url": "https://api.github.com/repos/alibabacloud-sdk-php/live/zipball/2dc756e9e156cb33bc1287d28fc3fade87e4ae60",
  499. "reference": "2dc756e9e156cb33bc1287d28fc3fade87e4ae60",
  500. "shasum": ""
  501. },
  502. "require": {
  503. "alibabacloud/client": "^1.5",
  504. "php": ">=5.5"
  505. },
  506. "type": "library",
  507. "autoload": {
  508. "psr-4": {
  509. "AlibabaCloud\\Live\\": ""
  510. }
  511. },
  512. "notification-url": "https://packagist.org/downloads/",
  513. "license": [
  514. "Apache-2.0"
  515. ],
  516. "authors": [
  517. {
  518. "name": "Alibaba Cloud SDK",
  519. "email": "sdk-team@alibabacloud.com",
  520. "homepage": "http://www.alibabacloud.com"
  521. }
  522. ],
  523. "description": "Alibaba Cloud Live SDK for PHP",
  524. "homepage": "https://www.alibabacloud.com/",
  525. "keywords": [
  526. "alibaba",
  527. "alibabacloud",
  528. "aliyun",
  529. "cloud",
  530. "library",
  531. "live",
  532. "sdk"
  533. ],
  534. "support": {
  535. "issues": "https://github.com/alibabacloud-sdk-php/live/issues",
  536. "source": "https://github.com/alibabacloud-sdk-php/live"
  537. },
  538. "time": "2021-04-29T09:14:45+00:00"
  539. },
  540. {
  541. "name": "alibabacloud/openapi-util",
  542. "version": "0.2.1",
  543. "source": {
  544. "type": "git",
  545. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  546. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  547. },
  548. "dist": {
  549. "type": "zip",
  550. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  551. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  552. "shasum": ""
  553. },
  554. "require": {
  555. "alibabacloud/tea": "^3.1",
  556. "alibabacloud/tea-utils": "^0.2",
  557. "lizhichao/one-sm": "^1.5",
  558. "php": ">5.5"
  559. },
  560. "require-dev": {
  561. "phpunit/phpunit": "*"
  562. },
  563. "type": "library",
  564. "autoload": {
  565. "psr-4": {
  566. "AlibabaCloud\\OpenApiUtil\\": "src"
  567. }
  568. },
  569. "notification-url": "https://packagist.org/downloads/",
  570. "license": [
  571. "Apache-2.0"
  572. ],
  573. "authors": [
  574. {
  575. "name": "Alibaba Cloud SDK",
  576. "email": "sdk-team@alibabacloud.com"
  577. }
  578. ],
  579. "description": "Alibaba Cloud OpenApi Util",
  580. "support": {
  581. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  582. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
  583. },
  584. "time": "2023-01-10T09:10:10+00:00"
  585. },
  586. {
  587. "name": "alibabacloud/tea",
  588. "version": "3.2.1",
  589. "source": {
  590. "type": "git",
  591. "url": "https://github.com/aliyun/tea-php.git",
  592. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  593. },
  594. "dist": {
  595. "type": "zip",
  596. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  597. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  598. "shasum": ""
  599. },
  600. "require": {
  601. "adbario/php-dot-notation": "^2.4",
  602. "ext-curl": "*",
  603. "ext-json": "*",
  604. "ext-libxml": "*",
  605. "ext-mbstring": "*",
  606. "ext-openssl": "*",
  607. "ext-simplexml": "*",
  608. "ext-xmlwriter": "*",
  609. "guzzlehttp/guzzle": "^6.3|^7.0",
  610. "php": ">=5.5"
  611. },
  612. "require-dev": {
  613. "phpunit/phpunit": "*",
  614. "symfony/dotenv": "^3.4",
  615. "symfony/var-dumper": "^3.4"
  616. },
  617. "suggest": {
  618. "ext-sockets": "To use client-side monitoring"
  619. },
  620. "type": "library",
  621. "autoload": {
  622. "psr-4": {
  623. "AlibabaCloud\\Tea\\": "src"
  624. }
  625. },
  626. "notification-url": "https://packagist.org/downloads/",
  627. "license": [
  628. "Apache-2.0"
  629. ],
  630. "authors": [
  631. {
  632. "name": "Alibaba Cloud SDK",
  633. "email": "sdk-team@alibabacloud.com",
  634. "homepage": "http://www.alibabacloud.com"
  635. }
  636. ],
  637. "description": "Client of Tea for PHP",
  638. "homepage": "https://www.alibabacloud.com/",
  639. "keywords": [
  640. "alibabacloud",
  641. "client",
  642. "cloud",
  643. "tea"
  644. ],
  645. "support": {
  646. "issues": "https://github.com/aliyun/tea-php/issues",
  647. "source": "https://github.com/aliyun/tea-php"
  648. },
  649. "time": "2023-05-16T06:43:41+00:00"
  650. },
  651. {
  652. "name": "alibabacloud/tea-utils",
  653. "version": "0.2.19",
  654. "source": {
  655. "type": "git",
  656. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  657. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4"
  658. },
  659. "dist": {
  660. "type": "zip",
  661. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/8dfc1a93e9415818e93a621b644abbb84981aea4",
  662. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4",
  663. "shasum": ""
  664. },
  665. "require": {
  666. "alibabacloud/tea": "^3.1",
  667. "php": ">5.5"
  668. },
  669. "type": "library",
  670. "autoload": {
  671. "psr-4": {
  672. "AlibabaCloud\\Tea\\Utils\\": "src"
  673. }
  674. },
  675. "notification-url": "https://packagist.org/downloads/",
  676. "license": [
  677. "Apache-2.0"
  678. ],
  679. "authors": [
  680. {
  681. "name": "Alibaba Cloud SDK",
  682. "email": "sdk-team@alibabacloud.com"
  683. }
  684. ],
  685. "description": "Alibaba Cloud Tea Utils for PHP",
  686. "support": {
  687. "issues": "https://github.com/aliyun/tea-util/issues",
  688. "source": "https://github.com/aliyun/tea-util"
  689. },
  690. "time": "2023-06-26T09:49:19+00:00"
  691. },
  692. {
  693. "name": "alibabacloud/tea-xml",
  694. "version": "0.2.4",
  695. "source": {
  696. "type": "git",
  697. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  698. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  699. },
  700. "dist": {
  701. "type": "zip",
  702. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  703. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  704. "shasum": ""
  705. },
  706. "require": {
  707. "php": ">5.5"
  708. },
  709. "require-dev": {
  710. "phpunit/phpunit": "*",
  711. "symfony/var-dumper": "*"
  712. },
  713. "type": "library",
  714. "autoload": {
  715. "psr-4": {
  716. "AlibabaCloud\\Tea\\XML\\": "src"
  717. }
  718. },
  719. "notification-url": "https://packagist.org/downloads/",
  720. "license": [
  721. "Apache-2.0"
  722. ],
  723. "authors": [
  724. {
  725. "name": "Alibaba Cloud SDK",
  726. "email": "sdk-team@alibabacloud.com"
  727. }
  728. ],
  729. "description": "Alibaba Cloud Tea XML Library for PHP",
  730. "support": {
  731. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  732. },
  733. "time": "2022-08-02T04:12:58+00:00"
  734. },
  735. {
  736. "name": "asm89/stack-cors",
  737. "version": "v2.2.0",
  738. "source": {
  739. "type": "git",
  740. "url": "https://github.com/asm89/stack-cors.git",
  741. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea"
  742. },
  743. "dist": {
  744. "type": "zip",
  745. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea",
  746. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea",
  747. "shasum": ""
  748. },
  749. "require": {
  750. "php": "^7.3|^8.0",
  751. "symfony/http-foundation": "^5.3|^6|^7",
  752. "symfony/http-kernel": "^5.3|^6|^7"
  753. },
  754. "require-dev": {
  755. "phpunit/phpunit": "^9",
  756. "squizlabs/php_codesniffer": "^3.5"
  757. },
  758. "type": "library",
  759. "extra": {
  760. "branch-alias": {
  761. "dev-master": "2.2-dev"
  762. }
  763. },
  764. "autoload": {
  765. "psr-4": {
  766. "Asm89\\Stack\\": "src/"
  767. }
  768. },
  769. "notification-url": "https://packagist.org/downloads/",
  770. "license": [
  771. "MIT"
  772. ],
  773. "authors": [
  774. {
  775. "name": "Alexander",
  776. "email": "iam.asm89@gmail.com"
  777. }
  778. ],
  779. "description": "Cross-origin resource sharing library and stack middleware",
  780. "homepage": "https://github.com/asm89/stack-cors",
  781. "keywords": [
  782. "cors",
  783. "stack"
  784. ],
  785. "support": {
  786. "issues": "https://github.com/asm89/stack-cors/issues",
  787. "source": "https://github.com/asm89/stack-cors/tree/v2.2.0"
  788. },
  789. "time": "2023-11-14T13:51:46+00:00"
  790. },
  791. {
  792. "name": "brick/math",
  793. "version": "0.11.0",
  794. "source": {
  795. "type": "git",
  796. "url": "https://github.com/brick/math.git",
  797. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  798. },
  799. "dist": {
  800. "type": "zip",
  801. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  802. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  803. "shasum": ""
  804. },
  805. "require": {
  806. "php": "^8.0"
  807. },
  808. "require-dev": {
  809. "php-coveralls/php-coveralls": "^2.2",
  810. "phpunit/phpunit": "^9.0",
  811. "vimeo/psalm": "5.0.0"
  812. },
  813. "type": "library",
  814. "autoload": {
  815. "psr-4": {
  816. "Brick\\Math\\": "src/"
  817. }
  818. },
  819. "notification-url": "https://packagist.org/downloads/",
  820. "license": [
  821. "MIT"
  822. ],
  823. "description": "Arbitrary-precision arithmetic library",
  824. "keywords": [
  825. "Arbitrary-precision",
  826. "BigInteger",
  827. "BigRational",
  828. "arithmetic",
  829. "bigdecimal",
  830. "bignum",
  831. "brick",
  832. "math"
  833. ],
  834. "support": {
  835. "issues": "https://github.com/brick/math/issues",
  836. "source": "https://github.com/brick/math/tree/0.11.0"
  837. },
  838. "funding": [
  839. {
  840. "url": "https://github.com/BenMorel",
  841. "type": "github"
  842. }
  843. ],
  844. "time": "2023-01-15T23:15:59+00:00"
  845. },
  846. {
  847. "name": "cache/adapter-common",
  848. "version": "1.3.0",
  849. "source": {
  850. "type": "git",
  851. "url": "https://github.com/php-cache/adapter-common.git",
  852. "reference": "8788309be72aa7be69b88cdc0687549c74a7d479"
  853. },
  854. "dist": {
  855. "type": "zip",
  856. "url": "https://api.github.com/repos/php-cache/adapter-common/zipball/8788309be72aa7be69b88cdc0687549c74a7d479",
  857. "reference": "8788309be72aa7be69b88cdc0687549c74a7d479",
  858. "shasum": ""
  859. },
  860. "require": {
  861. "cache/tag-interop": "^1.0",
  862. "php": ">=7.4",
  863. "psr/cache": "^1.0 || ^2.0",
  864. "psr/log": "^1.0 || ^2.0 || ^3.0",
  865. "psr/simple-cache": "^1.0"
  866. },
  867. "require-dev": {
  868. "cache/integration-tests": "^0.17",
  869. "phpunit/phpunit": "^7.5.20 || ^9.5.10"
  870. },
  871. "type": "library",
  872. "extra": {
  873. "branch-alias": {
  874. "dev-master": "1.1-dev"
  875. }
  876. },
  877. "autoload": {
  878. "psr-4": {
  879. "Cache\\Adapter\\Common\\": ""
  880. }
  881. },
  882. "notification-url": "https://packagist.org/downloads/",
  883. "license": [
  884. "MIT"
  885. ],
  886. "authors": [
  887. {
  888. "name": "Aaron Scherer",
  889. "email": "aequasi@gmail.com",
  890. "homepage": "https://github.com/aequasi"
  891. },
  892. {
  893. "name": "Tobias Nyholm",
  894. "email": "tobias.nyholm@gmail.com",
  895. "homepage": "https://github.com/nyholm"
  896. }
  897. ],
  898. "description": "Common classes for PSR-6 adapters",
  899. "homepage": "http://www.php-cache.com/en/latest/",
  900. "keywords": [
  901. "cache",
  902. "psr-6",
  903. "tag"
  904. ],
  905. "support": {
  906. "source": "https://github.com/php-cache/adapter-common/tree/1.3.0"
  907. },
  908. "time": "2022-01-15T15:47:19+00:00"
  909. },
  910. {
  911. "name": "cache/filesystem-adapter",
  912. "version": "1.2.0",
  913. "source": {
  914. "type": "git",
  915. "url": "https://github.com/php-cache/filesystem-adapter.git",
  916. "reference": "f1faaae40aaa696ef899cef6f6888aedb90b419b"
  917. },
  918. "dist": {
  919. "type": "zip",
  920. "url": "https://api.github.com/repos/php-cache/filesystem-adapter/zipball/f1faaae40aaa696ef899cef6f6888aedb90b419b",
  921. "reference": "f1faaae40aaa696ef899cef6f6888aedb90b419b",
  922. "shasum": ""
  923. },
  924. "require": {
  925. "cache/adapter-common": "^1.0",
  926. "league/flysystem": "^1.0",
  927. "php": ">=7.4",
  928. "psr/cache": "^1.0 || ^2.0",
  929. "psr/simple-cache": "^1.0"
  930. },
  931. "provide": {
  932. "psr/cache-implementation": "^1.0",
  933. "psr/simple-cache-implementation": "^1.0"
  934. },
  935. "require-dev": {
  936. "cache/integration-tests": "^0.17",
  937. "phpunit/phpunit": "^7.5.20 || ^9.5.10"
  938. },
  939. "type": "library",
  940. "extra": {
  941. "branch-alias": {
  942. "dev-master": "1.1-dev"
  943. }
  944. },
  945. "autoload": {
  946. "psr-4": {
  947. "Cache\\Adapter\\Filesystem\\": ""
  948. },
  949. "exclude-from-classmap": [
  950. "/Tests/"
  951. ]
  952. },
  953. "notification-url": "https://packagist.org/downloads/",
  954. "license": [
  955. "MIT"
  956. ],
  957. "authors": [
  958. {
  959. "name": "Aaron Scherer",
  960. "email": "aequasi@gmail.com",
  961. "homepage": "https://github.com/aequasi"
  962. },
  963. {
  964. "name": "Tobias Nyholm",
  965. "email": "tobias.nyholm@gmail.com",
  966. "homepage": "https://github.com/nyholm"
  967. }
  968. ],
  969. "description": "A PSR-6 cache implementation using filesystem. This implementation supports tags",
  970. "homepage": "http://www.php-cache.com/en/latest/",
  971. "keywords": [
  972. "cache",
  973. "filesystem",
  974. "psr-6",
  975. "tag"
  976. ],
  977. "support": {
  978. "source": "https://github.com/php-cache/filesystem-adapter/tree/1.2.0"
  979. },
  980. "time": "2022-01-15T15:47:19+00:00"
  981. },
  982. {
  983. "name": "cache/tag-interop",
  984. "version": "1.1.0",
  985. "source": {
  986. "type": "git",
  987. "url": "https://github.com/php-cache/tag-interop.git",
  988. "reference": "b062b1d735357da50edf8387f7a8696f3027d328"
  989. },
  990. "dist": {
  991. "type": "zip",
  992. "url": "https://api.github.com/repos/php-cache/tag-interop/zipball/b062b1d735357da50edf8387f7a8696f3027d328",
  993. "reference": "b062b1d735357da50edf8387f7a8696f3027d328",
  994. "shasum": ""
  995. },
  996. "require": {
  997. "php": "^5.5 || ^7.0 || ^8.0",
  998. "psr/cache": "^1.0 || ^2.0"
  999. },
  1000. "type": "library",
  1001. "extra": {
  1002. "branch-alias": {
  1003. "dev-master": "1.1-dev"
  1004. }
  1005. },
  1006. "autoload": {
  1007. "psr-4": {
  1008. "Cache\\TagInterop\\": ""
  1009. }
  1010. },
  1011. "notification-url": "https://packagist.org/downloads/",
  1012. "license": [
  1013. "MIT"
  1014. ],
  1015. "authors": [
  1016. {
  1017. "name": "Tobias Nyholm",
  1018. "email": "tobias.nyholm@gmail.com",
  1019. "homepage": "https://github.com/nyholm"
  1020. },
  1021. {
  1022. "name": "Nicolas Grekas",
  1023. "email": "p@tchwork.com",
  1024. "homepage": "https://github.com/nicolas-grekas"
  1025. }
  1026. ],
  1027. "description": "Framework interoperable interfaces for tags",
  1028. "homepage": "https://www.php-cache.com/en/latest/",
  1029. "keywords": [
  1030. "cache",
  1031. "psr",
  1032. "psr6",
  1033. "tag"
  1034. ],
  1035. "support": {
  1036. "issues": "https://github.com/php-cache/tag-interop/issues",
  1037. "source": "https://github.com/php-cache/tag-interop/tree/1.1.0"
  1038. },
  1039. "time": "2021-12-31T10:03:23+00:00"
  1040. },
  1041. {
  1042. "name": "carbonphp/carbon-doctrine-types",
  1043. "version": "2.1.0",
  1044. "source": {
  1045. "type": "git",
  1046. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  1047. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  1048. },
  1049. "dist": {
  1050. "type": "zip",
  1051. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  1052. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  1053. "shasum": ""
  1054. },
  1055. "require": {
  1056. "php": "^7.4 || ^8.0"
  1057. },
  1058. "conflict": {
  1059. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  1060. },
  1061. "require-dev": {
  1062. "doctrine/dbal": "^3.7.0",
  1063. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  1064. "phpunit/phpunit": "^10.3"
  1065. },
  1066. "type": "library",
  1067. "autoload": {
  1068. "psr-4": {
  1069. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  1070. }
  1071. },
  1072. "notification-url": "https://packagist.org/downloads/",
  1073. "license": [
  1074. "MIT"
  1075. ],
  1076. "authors": [
  1077. {
  1078. "name": "KyleKatarn",
  1079. "email": "kylekatarnls@gmail.com"
  1080. }
  1081. ],
  1082. "description": "Types to use Carbon in Doctrine",
  1083. "keywords": [
  1084. "carbon",
  1085. "date",
  1086. "datetime",
  1087. "doctrine",
  1088. "time"
  1089. ],
  1090. "support": {
  1091. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1092. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  1093. },
  1094. "funding": [
  1095. {
  1096. "url": "https://github.com/kylekatarnls",
  1097. "type": "github"
  1098. },
  1099. {
  1100. "url": "https://opencollective.com/Carbon",
  1101. "type": "open_collective"
  1102. },
  1103. {
  1104. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1105. "type": "tidelift"
  1106. }
  1107. ],
  1108. "time": "2023-12-11T17:09:12+00:00"
  1109. },
  1110. {
  1111. "name": "cboden/ratchet",
  1112. "version": "v0.4.4",
  1113. "source": {
  1114. "type": "git",
  1115. "url": "https://github.com/ratchetphp/Ratchet.git",
  1116. "reference": "5012dc954541b40c5599d286fd40653f5716a38f"
  1117. },
  1118. "dist": {
  1119. "type": "zip",
  1120. "url": "https://api.github.com/repos/ratchetphp/Ratchet/zipball/5012dc954541b40c5599d286fd40653f5716a38f",
  1121. "reference": "5012dc954541b40c5599d286fd40653f5716a38f",
  1122. "shasum": ""
  1123. },
  1124. "require": {
  1125. "guzzlehttp/psr7": "^1.7|^2.0",
  1126. "php": ">=5.4.2",
  1127. "ratchet/rfc6455": "^0.3.1",
  1128. "react/event-loop": ">=0.4",
  1129. "react/socket": "^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5",
  1130. "symfony/http-foundation": "^2.6|^3.0|^4.0|^5.0|^6.0",
  1131. "symfony/routing": "^2.6|^3.0|^4.0|^5.0|^6.0"
  1132. },
  1133. "require-dev": {
  1134. "phpunit/phpunit": "~4.8"
  1135. },
  1136. "type": "library",
  1137. "autoload": {
  1138. "psr-4": {
  1139. "Ratchet\\": "src/Ratchet"
  1140. }
  1141. },
  1142. "notification-url": "https://packagist.org/downloads/",
  1143. "license": [
  1144. "MIT"
  1145. ],
  1146. "authors": [
  1147. {
  1148. "name": "Chris Boden",
  1149. "email": "cboden@gmail.com",
  1150. "role": "Developer"
  1151. },
  1152. {
  1153. "name": "Matt Bonneau",
  1154. "role": "Developer"
  1155. }
  1156. ],
  1157. "description": "PHP WebSocket library",
  1158. "homepage": "http://socketo.me",
  1159. "keywords": [
  1160. "Ratchet",
  1161. "WebSockets",
  1162. "server",
  1163. "sockets",
  1164. "websocket"
  1165. ],
  1166. "support": {
  1167. "chat": "https://gitter.im/reactphp/reactphp",
  1168. "issues": "https://github.com/ratchetphp/Ratchet/issues",
  1169. "source": "https://github.com/ratchetphp/Ratchet/tree/v0.4.4"
  1170. },
  1171. "time": "2021-12-14T00:20:41+00:00"
  1172. },
  1173. {
  1174. "name": "clagiordano/weblibs-configmanager",
  1175. "version": "v1.2.0",
  1176. "source": {
  1177. "type": "git",
  1178. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  1179. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059"
  1180. },
  1181. "dist": {
  1182. "type": "zip",
  1183. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/5c8ebcc62782313b1278afe802b120d18c07a059",
  1184. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059",
  1185. "shasum": ""
  1186. },
  1187. "require": {
  1188. "php": ">=5.4"
  1189. },
  1190. "require-dev": {
  1191. "clagiordano/phpunit-result-printer": "^1",
  1192. "phpunit/phpunit": "^4.8"
  1193. },
  1194. "type": "library",
  1195. "autoload": {
  1196. "psr-4": {
  1197. "clagiordano\\weblibs\\configmanager\\": "src/"
  1198. }
  1199. },
  1200. "notification-url": "https://packagist.org/downloads/",
  1201. "license": [
  1202. "LGPL-3.0-or-later"
  1203. ],
  1204. "authors": [
  1205. {
  1206. "name": "Claudio Giordano",
  1207. "email": "claudio.giordano@autistici.org",
  1208. "role": "Developer"
  1209. }
  1210. ],
  1211. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  1212. "keywords": [
  1213. "clagiordano",
  1214. "configuration",
  1215. "manager",
  1216. "tool",
  1217. "weblibs"
  1218. ],
  1219. "support": {
  1220. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  1221. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.2.0"
  1222. },
  1223. "time": "2021-05-18T17:55:57+00:00"
  1224. },
  1225. {
  1226. "name": "composer/semver",
  1227. "version": "3.4.0",
  1228. "source": {
  1229. "type": "git",
  1230. "url": "https://github.com/composer/semver.git",
  1231. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  1232. },
  1233. "dist": {
  1234. "type": "zip",
  1235. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  1236. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  1237. "shasum": ""
  1238. },
  1239. "require": {
  1240. "php": "^5.3.2 || ^7.0 || ^8.0"
  1241. },
  1242. "require-dev": {
  1243. "phpstan/phpstan": "^1.4",
  1244. "symfony/phpunit-bridge": "^4.2 || ^5"
  1245. },
  1246. "type": "library",
  1247. "extra": {
  1248. "branch-alias": {
  1249. "dev-main": "3.x-dev"
  1250. }
  1251. },
  1252. "autoload": {
  1253. "psr-4": {
  1254. "Composer\\Semver\\": "src"
  1255. }
  1256. },
  1257. "notification-url": "https://packagist.org/downloads/",
  1258. "license": [
  1259. "MIT"
  1260. ],
  1261. "authors": [
  1262. {
  1263. "name": "Nils Adermann",
  1264. "email": "naderman@naderman.de",
  1265. "homepage": "http://www.naderman.de"
  1266. },
  1267. {
  1268. "name": "Jordi Boggiano",
  1269. "email": "j.boggiano@seld.be",
  1270. "homepage": "http://seld.be"
  1271. },
  1272. {
  1273. "name": "Rob Bast",
  1274. "email": "rob.bast@gmail.com",
  1275. "homepage": "http://robbast.nl"
  1276. }
  1277. ],
  1278. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  1279. "keywords": [
  1280. "semantic",
  1281. "semver",
  1282. "validation",
  1283. "versioning"
  1284. ],
  1285. "support": {
  1286. "irc": "ircs://irc.libera.chat:6697/composer",
  1287. "issues": "https://github.com/composer/semver/issues",
  1288. "source": "https://github.com/composer/semver/tree/3.4.0"
  1289. },
  1290. "funding": [
  1291. {
  1292. "url": "https://packagist.com",
  1293. "type": "custom"
  1294. },
  1295. {
  1296. "url": "https://github.com/composer",
  1297. "type": "github"
  1298. },
  1299. {
  1300. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1301. "type": "tidelift"
  1302. }
  1303. ],
  1304. "time": "2023-08-31T09:50:34+00:00"
  1305. },
  1306. {
  1307. "name": "dflydev/dot-access-data",
  1308. "version": "v3.0.2",
  1309. "source": {
  1310. "type": "git",
  1311. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1312. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  1313. },
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  1317. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  1318. "shasum": ""
  1319. },
  1320. "require": {
  1321. "php": "^7.1 || ^8.0"
  1322. },
  1323. "require-dev": {
  1324. "phpstan/phpstan": "^0.12.42",
  1325. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1326. "scrutinizer/ocular": "1.6.0",
  1327. "squizlabs/php_codesniffer": "^3.5",
  1328. "vimeo/psalm": "^4.0.0"
  1329. },
  1330. "type": "library",
  1331. "extra": {
  1332. "branch-alias": {
  1333. "dev-main": "3.x-dev"
  1334. }
  1335. },
  1336. "autoload": {
  1337. "psr-4": {
  1338. "Dflydev\\DotAccessData\\": "src/"
  1339. }
  1340. },
  1341. "notification-url": "https://packagist.org/downloads/",
  1342. "license": [
  1343. "MIT"
  1344. ],
  1345. "authors": [
  1346. {
  1347. "name": "Dragonfly Development Inc.",
  1348. "email": "info@dflydev.com",
  1349. "homepage": "http://dflydev.com"
  1350. },
  1351. {
  1352. "name": "Beau Simensen",
  1353. "email": "beau@dflydev.com",
  1354. "homepage": "http://beausimensen.com"
  1355. },
  1356. {
  1357. "name": "Carlos Frutos",
  1358. "email": "carlos@kiwing.it",
  1359. "homepage": "https://github.com/cfrutos"
  1360. },
  1361. {
  1362. "name": "Colin O'Dell",
  1363. "email": "colinodell@gmail.com",
  1364. "homepage": "https://www.colinodell.com"
  1365. }
  1366. ],
  1367. "description": "Given a deep data structure, access data by dot notation.",
  1368. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1369. "keywords": [
  1370. "access",
  1371. "data",
  1372. "dot",
  1373. "notation"
  1374. ],
  1375. "support": {
  1376. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1377. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1378. },
  1379. "time": "2022-10-27T11:44:00+00:00"
  1380. },
  1381. {
  1382. "name": "doctrine/inflector",
  1383. "version": "2.0.8",
  1384. "source": {
  1385. "type": "git",
  1386. "url": "https://github.com/doctrine/inflector.git",
  1387. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  1388. },
  1389. "dist": {
  1390. "type": "zip",
  1391. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  1392. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  1393. "shasum": ""
  1394. },
  1395. "require": {
  1396. "php": "^7.2 || ^8.0"
  1397. },
  1398. "require-dev": {
  1399. "doctrine/coding-standard": "^11.0",
  1400. "phpstan/phpstan": "^1.8",
  1401. "phpstan/phpstan-phpunit": "^1.1",
  1402. "phpstan/phpstan-strict-rules": "^1.3",
  1403. "phpunit/phpunit": "^8.5 || ^9.5",
  1404. "vimeo/psalm": "^4.25 || ^5.4"
  1405. },
  1406. "type": "library",
  1407. "autoload": {
  1408. "psr-4": {
  1409. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1410. }
  1411. },
  1412. "notification-url": "https://packagist.org/downloads/",
  1413. "license": [
  1414. "MIT"
  1415. ],
  1416. "authors": [
  1417. {
  1418. "name": "Guilherme Blanco",
  1419. "email": "guilhermeblanco@gmail.com"
  1420. },
  1421. {
  1422. "name": "Roman Borschel",
  1423. "email": "roman@code-factory.org"
  1424. },
  1425. {
  1426. "name": "Benjamin Eberlei",
  1427. "email": "kontakt@beberlei.de"
  1428. },
  1429. {
  1430. "name": "Jonathan Wage",
  1431. "email": "jonwage@gmail.com"
  1432. },
  1433. {
  1434. "name": "Johannes Schmitt",
  1435. "email": "schmittjoh@gmail.com"
  1436. }
  1437. ],
  1438. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1439. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1440. "keywords": [
  1441. "inflection",
  1442. "inflector",
  1443. "lowercase",
  1444. "manipulation",
  1445. "php",
  1446. "plural",
  1447. "singular",
  1448. "strings",
  1449. "uppercase",
  1450. "words"
  1451. ],
  1452. "support": {
  1453. "issues": "https://github.com/doctrine/inflector/issues",
  1454. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  1455. },
  1456. "funding": [
  1457. {
  1458. "url": "https://www.doctrine-project.org/sponsorship.html",
  1459. "type": "custom"
  1460. },
  1461. {
  1462. "url": "https://www.patreon.com/phpdoctrine",
  1463. "type": "patreon"
  1464. },
  1465. {
  1466. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1467. "type": "tidelift"
  1468. }
  1469. ],
  1470. "time": "2023-06-16T13:40:37+00:00"
  1471. },
  1472. {
  1473. "name": "doctrine/lexer",
  1474. "version": "1.2.3",
  1475. "source": {
  1476. "type": "git",
  1477. "url": "https://github.com/doctrine/lexer.git",
  1478. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1479. },
  1480. "dist": {
  1481. "type": "zip",
  1482. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1483. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1484. "shasum": ""
  1485. },
  1486. "require": {
  1487. "php": "^7.1 || ^8.0"
  1488. },
  1489. "require-dev": {
  1490. "doctrine/coding-standard": "^9.0",
  1491. "phpstan/phpstan": "^1.3",
  1492. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1493. "vimeo/psalm": "^4.11"
  1494. },
  1495. "type": "library",
  1496. "autoload": {
  1497. "psr-4": {
  1498. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1499. }
  1500. },
  1501. "notification-url": "https://packagist.org/downloads/",
  1502. "license": [
  1503. "MIT"
  1504. ],
  1505. "authors": [
  1506. {
  1507. "name": "Guilherme Blanco",
  1508. "email": "guilhermeblanco@gmail.com"
  1509. },
  1510. {
  1511. "name": "Roman Borschel",
  1512. "email": "roman@code-factory.org"
  1513. },
  1514. {
  1515. "name": "Johannes Schmitt",
  1516. "email": "schmittjoh@gmail.com"
  1517. }
  1518. ],
  1519. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1520. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1521. "keywords": [
  1522. "annotations",
  1523. "docblock",
  1524. "lexer",
  1525. "parser",
  1526. "php"
  1527. ],
  1528. "support": {
  1529. "issues": "https://github.com/doctrine/lexer/issues",
  1530. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1531. },
  1532. "funding": [
  1533. {
  1534. "url": "https://www.doctrine-project.org/sponsorship.html",
  1535. "type": "custom"
  1536. },
  1537. {
  1538. "url": "https://www.patreon.com/phpdoctrine",
  1539. "type": "patreon"
  1540. },
  1541. {
  1542. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1543. "type": "tidelift"
  1544. }
  1545. ],
  1546. "time": "2022-02-28T11:07:21+00:00"
  1547. },
  1548. {
  1549. "name": "dragonmantank/cron-expression",
  1550. "version": "v3.3.3",
  1551. "source": {
  1552. "type": "git",
  1553. "url": "https://github.com/dragonmantank/cron-expression.git",
  1554. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1555. },
  1556. "dist": {
  1557. "type": "zip",
  1558. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1559. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1560. "shasum": ""
  1561. },
  1562. "require": {
  1563. "php": "^7.2|^8.0",
  1564. "webmozart/assert": "^1.0"
  1565. },
  1566. "replace": {
  1567. "mtdowling/cron-expression": "^1.0"
  1568. },
  1569. "require-dev": {
  1570. "phpstan/extension-installer": "^1.0",
  1571. "phpstan/phpstan": "^1.0",
  1572. "phpstan/phpstan-webmozart-assert": "^1.0",
  1573. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1574. },
  1575. "type": "library",
  1576. "autoload": {
  1577. "psr-4": {
  1578. "Cron\\": "src/Cron/"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "Chris Tankersley",
  1588. "email": "chris@ctankersley.com",
  1589. "homepage": "https://github.com/dragonmantank"
  1590. }
  1591. ],
  1592. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1593. "keywords": [
  1594. "cron",
  1595. "schedule"
  1596. ],
  1597. "support": {
  1598. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1599. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1600. },
  1601. "funding": [
  1602. {
  1603. "url": "https://github.com/dragonmantank",
  1604. "type": "github"
  1605. }
  1606. ],
  1607. "time": "2023-08-10T19:36:49+00:00"
  1608. },
  1609. {
  1610. "name": "egulias/email-validator",
  1611. "version": "2.1.25",
  1612. "source": {
  1613. "type": "git",
  1614. "url": "https://github.com/egulias/EmailValidator.git",
  1615. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1616. },
  1617. "dist": {
  1618. "type": "zip",
  1619. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1620. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1621. "shasum": ""
  1622. },
  1623. "require": {
  1624. "doctrine/lexer": "^1.0.1",
  1625. "php": ">=5.5",
  1626. "symfony/polyfill-intl-idn": "^1.10"
  1627. },
  1628. "require-dev": {
  1629. "dominicsayers/isemail": "^3.0.7",
  1630. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1631. "satooshi/php-coveralls": "^1.0.1"
  1632. },
  1633. "suggest": {
  1634. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1635. },
  1636. "type": "library",
  1637. "extra": {
  1638. "branch-alias": {
  1639. "dev-master": "2.1.x-dev"
  1640. }
  1641. },
  1642. "autoload": {
  1643. "psr-4": {
  1644. "Egulias\\EmailValidator\\": "src"
  1645. }
  1646. },
  1647. "notification-url": "https://packagist.org/downloads/",
  1648. "license": [
  1649. "MIT"
  1650. ],
  1651. "authors": [
  1652. {
  1653. "name": "Eduardo Gulias Davis"
  1654. }
  1655. ],
  1656. "description": "A library for validating emails against several RFCs",
  1657. "homepage": "https://github.com/egulias/EmailValidator",
  1658. "keywords": [
  1659. "email",
  1660. "emailvalidation",
  1661. "emailvalidator",
  1662. "validation",
  1663. "validator"
  1664. ],
  1665. "support": {
  1666. "issues": "https://github.com/egulias/EmailValidator/issues",
  1667. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1668. },
  1669. "funding": [
  1670. {
  1671. "url": "https://github.com/egulias",
  1672. "type": "github"
  1673. }
  1674. ],
  1675. "time": "2020-12-29T14:50:06+00:00"
  1676. },
  1677. {
  1678. "name": "evenement/evenement",
  1679. "version": "v3.0.2",
  1680. "source": {
  1681. "type": "git",
  1682. "url": "https://github.com/igorw/evenement.git",
  1683. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  1684. },
  1685. "dist": {
  1686. "type": "zip",
  1687. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  1688. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  1689. "shasum": ""
  1690. },
  1691. "require": {
  1692. "php": ">=7.0"
  1693. },
  1694. "require-dev": {
  1695. "phpunit/phpunit": "^9 || ^6"
  1696. },
  1697. "type": "library",
  1698. "autoload": {
  1699. "psr-4": {
  1700. "Evenement\\": "src/"
  1701. }
  1702. },
  1703. "notification-url": "https://packagist.org/downloads/",
  1704. "license": [
  1705. "MIT"
  1706. ],
  1707. "authors": [
  1708. {
  1709. "name": "Igor Wiedler",
  1710. "email": "igor@wiedler.ch"
  1711. }
  1712. ],
  1713. "description": "Événement is a very simple event dispatching library for PHP",
  1714. "keywords": [
  1715. "event-dispatcher",
  1716. "event-emitter"
  1717. ],
  1718. "support": {
  1719. "issues": "https://github.com/igorw/evenement/issues",
  1720. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  1721. },
  1722. "time": "2023-08-08T05:53:35+00:00"
  1723. },
  1724. {
  1725. "name": "ezyang/htmlpurifier",
  1726. "version": "v4.17.0",
  1727. "source": {
  1728. "type": "git",
  1729. "url": "https://github.com/ezyang/htmlpurifier.git",
  1730. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c"
  1731. },
  1732. "dist": {
  1733. "type": "zip",
  1734. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  1735. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  1736. "shasum": ""
  1737. },
  1738. "require": {
  1739. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  1740. },
  1741. "require-dev": {
  1742. "cerdic/css-tidy": "^1.7 || ^2.0",
  1743. "simpletest/simpletest": "dev-master"
  1744. },
  1745. "suggest": {
  1746. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1747. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1748. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1749. "ext-tidy": "Used for pretty-printing HTML"
  1750. },
  1751. "type": "library",
  1752. "autoload": {
  1753. "files": [
  1754. "library/HTMLPurifier.composer.php"
  1755. ],
  1756. "psr-0": {
  1757. "HTMLPurifier": "library/"
  1758. },
  1759. "exclude-from-classmap": [
  1760. "/library/HTMLPurifier/Language/"
  1761. ]
  1762. },
  1763. "notification-url": "https://packagist.org/downloads/",
  1764. "license": [
  1765. "LGPL-2.1-or-later"
  1766. ],
  1767. "authors": [
  1768. {
  1769. "name": "Edward Z. Yang",
  1770. "email": "admin@htmlpurifier.org",
  1771. "homepage": "http://ezyang.com"
  1772. }
  1773. ],
  1774. "description": "Standards compliant HTML filter written in PHP",
  1775. "homepage": "http://htmlpurifier.org/",
  1776. "keywords": [
  1777. "html"
  1778. ],
  1779. "support": {
  1780. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1781. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.17.0"
  1782. },
  1783. "time": "2023-11-17T15:01:25+00:00"
  1784. },
  1785. {
  1786. "name": "fideloper/proxy",
  1787. "version": "4.4.2",
  1788. "source": {
  1789. "type": "git",
  1790. "url": "https://github.com/fideloper/TrustedProxy.git",
  1791. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  1792. },
  1793. "dist": {
  1794. "type": "zip",
  1795. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1796. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1797. "shasum": ""
  1798. },
  1799. "require": {
  1800. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1801. "php": ">=5.4.0"
  1802. },
  1803. "require-dev": {
  1804. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1805. "mockery/mockery": "^1.0",
  1806. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1807. },
  1808. "type": "library",
  1809. "extra": {
  1810. "laravel": {
  1811. "providers": [
  1812. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1813. ]
  1814. }
  1815. },
  1816. "autoload": {
  1817. "psr-4": {
  1818. "Fideloper\\Proxy\\": "src/"
  1819. }
  1820. },
  1821. "notification-url": "https://packagist.org/downloads/",
  1822. "license": [
  1823. "MIT"
  1824. ],
  1825. "authors": [
  1826. {
  1827. "name": "Chris Fidao",
  1828. "email": "fideloper@gmail.com"
  1829. }
  1830. ],
  1831. "description": "Set trusted proxies for Laravel",
  1832. "keywords": [
  1833. "load balancing",
  1834. "proxy",
  1835. "trusted proxy"
  1836. ],
  1837. "support": {
  1838. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1839. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1840. },
  1841. "time": "2022-02-09T13:33:34+00:00"
  1842. },
  1843. {
  1844. "name": "fruitcake/laravel-cors",
  1845. "version": "v2.2.0",
  1846. "source": {
  1847. "type": "git",
  1848. "url": "https://github.com/fruitcake/laravel-cors.git",
  1849. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1850. },
  1851. "dist": {
  1852. "type": "zip",
  1853. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1854. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1855. "shasum": ""
  1856. },
  1857. "require": {
  1858. "asm89/stack-cors": "^2.0.1",
  1859. "illuminate/contracts": "^6|^7|^8|^9",
  1860. "illuminate/support": "^6|^7|^8|^9",
  1861. "php": ">=7.2"
  1862. },
  1863. "require-dev": {
  1864. "laravel/framework": "^6|^7.24|^8",
  1865. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1866. "phpunit/phpunit": "^6|^7|^8|^9",
  1867. "squizlabs/php_codesniffer": "^3.5"
  1868. },
  1869. "type": "library",
  1870. "extra": {
  1871. "branch-alias": {
  1872. "dev-master": "2.1-dev"
  1873. },
  1874. "laravel": {
  1875. "providers": [
  1876. "Fruitcake\\Cors\\CorsServiceProvider"
  1877. ]
  1878. }
  1879. },
  1880. "autoload": {
  1881. "psr-4": {
  1882. "Fruitcake\\Cors\\": "src/"
  1883. }
  1884. },
  1885. "notification-url": "https://packagist.org/downloads/",
  1886. "license": [
  1887. "MIT"
  1888. ],
  1889. "authors": [
  1890. {
  1891. "name": "Fruitcake",
  1892. "homepage": "https://fruitcake.nl"
  1893. },
  1894. {
  1895. "name": "Barry vd. Heuvel",
  1896. "email": "barryvdh@gmail.com"
  1897. }
  1898. ],
  1899. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1900. "keywords": [
  1901. "api",
  1902. "cors",
  1903. "crossdomain",
  1904. "laravel"
  1905. ],
  1906. "support": {
  1907. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1908. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1909. },
  1910. "funding": [
  1911. {
  1912. "url": "https://fruitcake.nl",
  1913. "type": "custom"
  1914. },
  1915. {
  1916. "url": "https://github.com/barryvdh",
  1917. "type": "github"
  1918. }
  1919. ],
  1920. "abandoned": true,
  1921. "time": "2022-02-23T14:25:13+00:00"
  1922. },
  1923. {
  1924. "name": "getuilaboratory/getui-pushapi-php-client-v2",
  1925. "version": "dev-master",
  1926. "source": {
  1927. "type": "git",
  1928. "url": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2.git",
  1929. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6"
  1930. },
  1931. "dist": {
  1932. "type": "zip",
  1933. "url": "https://api.github.com/repos/GetuiLaboratory/getui-pushapi-php-client-v2/zipball/255cc076624d049c0481d7172cd3c519ae7b07f6",
  1934. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6",
  1935. "shasum": ""
  1936. },
  1937. "default-branch": true,
  1938. "type": "library",
  1939. "autoload": {
  1940. "classmap": [
  1941. ""
  1942. ]
  1943. },
  1944. "notification-url": "https://packagist.org/downloads/",
  1945. "license": [
  1946. "MIT"
  1947. ],
  1948. "authors": [
  1949. {
  1950. "name": "getui",
  1951. "homepage": "https://www.getui.com/cn"
  1952. }
  1953. ],
  1954. "description": "getui php client V2",
  1955. "homepage": "https://www.getui.com/cn/",
  1956. "keywords": [
  1957. "GeTui",
  1958. "GetuiLaboratory",
  1959. "getui-pushapi-php-client",
  1960. "getui-pushapi-php-client-v2",
  1961. "pushapi"
  1962. ],
  1963. "support": {
  1964. "issues": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2/issues",
  1965. "source": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2/tree/master"
  1966. },
  1967. "time": "2021-06-21T03:22:42+00:00"
  1968. },
  1969. {
  1970. "name": "graham-campbell/result-type",
  1971. "version": "v1.1.2",
  1972. "source": {
  1973. "type": "git",
  1974. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1975. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  1976. },
  1977. "dist": {
  1978. "type": "zip",
  1979. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1980. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1981. "shasum": ""
  1982. },
  1983. "require": {
  1984. "php": "^7.2.5 || ^8.0",
  1985. "phpoption/phpoption": "^1.9.2"
  1986. },
  1987. "require-dev": {
  1988. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1989. },
  1990. "type": "library",
  1991. "autoload": {
  1992. "psr-4": {
  1993. "GrahamCampbell\\ResultType\\": "src/"
  1994. }
  1995. },
  1996. "notification-url": "https://packagist.org/downloads/",
  1997. "license": [
  1998. "MIT"
  1999. ],
  2000. "authors": [
  2001. {
  2002. "name": "Graham Campbell",
  2003. "email": "hello@gjcampbell.co.uk",
  2004. "homepage": "https://github.com/GrahamCampbell"
  2005. }
  2006. ],
  2007. "description": "An Implementation Of The Result Type",
  2008. "keywords": [
  2009. "Graham Campbell",
  2010. "GrahamCampbell",
  2011. "Result Type",
  2012. "Result-Type",
  2013. "result"
  2014. ],
  2015. "support": {
  2016. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2017. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  2018. },
  2019. "funding": [
  2020. {
  2021. "url": "https://github.com/GrahamCampbell",
  2022. "type": "github"
  2023. },
  2024. {
  2025. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2026. "type": "tidelift"
  2027. }
  2028. ],
  2029. "time": "2023-11-12T22:16:48+00:00"
  2030. },
  2031. {
  2032. "name": "gregwar/captcha",
  2033. "version": "v1.2.1",
  2034. "source": {
  2035. "type": "git",
  2036. "url": "https://github.com/Gregwar/Captcha.git",
  2037. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e"
  2038. },
  2039. "dist": {
  2040. "type": "zip",
  2041. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  2042. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  2043. "shasum": ""
  2044. },
  2045. "require": {
  2046. "ext-gd": "*",
  2047. "ext-mbstring": "*",
  2048. "php": ">=5.3.0",
  2049. "symfony/finder": "*"
  2050. },
  2051. "require-dev": {
  2052. "phpunit/phpunit": "^6.4"
  2053. },
  2054. "type": "library",
  2055. "autoload": {
  2056. "psr-4": {
  2057. "Gregwar\\": "src/Gregwar"
  2058. }
  2059. },
  2060. "notification-url": "https://packagist.org/downloads/",
  2061. "license": [
  2062. "MIT"
  2063. ],
  2064. "authors": [
  2065. {
  2066. "name": "Grégoire Passault",
  2067. "email": "g.passault@gmail.com",
  2068. "homepage": "http://www.gregwar.com/"
  2069. },
  2070. {
  2071. "name": "Jeremy Livingston",
  2072. "email": "jeremy.j.livingston@gmail.com"
  2073. }
  2074. ],
  2075. "description": "Captcha generator",
  2076. "homepage": "https://github.com/Gregwar/Captcha",
  2077. "keywords": [
  2078. "bot",
  2079. "captcha",
  2080. "spam"
  2081. ],
  2082. "support": {
  2083. "issues": "https://github.com/Gregwar/Captcha/issues",
  2084. "source": "https://github.com/Gregwar/Captcha/tree/v1.2.1"
  2085. },
  2086. "time": "2023-09-26T13:45:37+00:00"
  2087. },
  2088. {
  2089. "name": "guzzlehttp/guzzle",
  2090. "version": "7.8.1",
  2091. "source": {
  2092. "type": "git",
  2093. "url": "https://github.com/guzzle/guzzle.git",
  2094. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  2095. },
  2096. "dist": {
  2097. "type": "zip",
  2098. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  2099. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  2100. "shasum": ""
  2101. },
  2102. "require": {
  2103. "ext-json": "*",
  2104. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  2105. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  2106. "php": "^7.2.5 || ^8.0",
  2107. "psr/http-client": "^1.0",
  2108. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2109. },
  2110. "provide": {
  2111. "psr/http-client-implementation": "1.0"
  2112. },
  2113. "require-dev": {
  2114. "bamarni/composer-bin-plugin": "^1.8.2",
  2115. "ext-curl": "*",
  2116. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  2117. "php-http/message-factory": "^1.1",
  2118. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2119. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2120. },
  2121. "suggest": {
  2122. "ext-curl": "Required for CURL handler support",
  2123. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2124. "psr/log": "Required for using the Log middleware"
  2125. },
  2126. "type": "library",
  2127. "extra": {
  2128. "bamarni-bin": {
  2129. "bin-links": true,
  2130. "forward-command": false
  2131. }
  2132. },
  2133. "autoload": {
  2134. "files": [
  2135. "src/functions_include.php"
  2136. ],
  2137. "psr-4": {
  2138. "GuzzleHttp\\": "src/"
  2139. }
  2140. },
  2141. "notification-url": "https://packagist.org/downloads/",
  2142. "license": [
  2143. "MIT"
  2144. ],
  2145. "authors": [
  2146. {
  2147. "name": "Graham Campbell",
  2148. "email": "hello@gjcampbell.co.uk",
  2149. "homepage": "https://github.com/GrahamCampbell"
  2150. },
  2151. {
  2152. "name": "Michael Dowling",
  2153. "email": "mtdowling@gmail.com",
  2154. "homepage": "https://github.com/mtdowling"
  2155. },
  2156. {
  2157. "name": "Jeremy Lindblom",
  2158. "email": "jeremeamia@gmail.com",
  2159. "homepage": "https://github.com/jeremeamia"
  2160. },
  2161. {
  2162. "name": "George Mponos",
  2163. "email": "gmponos@gmail.com",
  2164. "homepage": "https://github.com/gmponos"
  2165. },
  2166. {
  2167. "name": "Tobias Nyholm",
  2168. "email": "tobias.nyholm@gmail.com",
  2169. "homepage": "https://github.com/Nyholm"
  2170. },
  2171. {
  2172. "name": "Márk Sági-Kazár",
  2173. "email": "mark.sagikazar@gmail.com",
  2174. "homepage": "https://github.com/sagikazarmark"
  2175. },
  2176. {
  2177. "name": "Tobias Schultze",
  2178. "email": "webmaster@tubo-world.de",
  2179. "homepage": "https://github.com/Tobion"
  2180. }
  2181. ],
  2182. "description": "Guzzle is a PHP HTTP client library",
  2183. "keywords": [
  2184. "client",
  2185. "curl",
  2186. "framework",
  2187. "http",
  2188. "http client",
  2189. "psr-18",
  2190. "psr-7",
  2191. "rest",
  2192. "web service"
  2193. ],
  2194. "support": {
  2195. "issues": "https://github.com/guzzle/guzzle/issues",
  2196. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  2197. },
  2198. "funding": [
  2199. {
  2200. "url": "https://github.com/GrahamCampbell",
  2201. "type": "github"
  2202. },
  2203. {
  2204. "url": "https://github.com/Nyholm",
  2205. "type": "github"
  2206. },
  2207. {
  2208. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2209. "type": "tidelift"
  2210. }
  2211. ],
  2212. "time": "2023-12-03T20:35:24+00:00"
  2213. },
  2214. {
  2215. "name": "guzzlehttp/promises",
  2216. "version": "2.0.2",
  2217. "source": {
  2218. "type": "git",
  2219. "url": "https://github.com/guzzle/promises.git",
  2220. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  2221. },
  2222. "dist": {
  2223. "type": "zip",
  2224. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  2225. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  2226. "shasum": ""
  2227. },
  2228. "require": {
  2229. "php": "^7.2.5 || ^8.0"
  2230. },
  2231. "require-dev": {
  2232. "bamarni/composer-bin-plugin": "^1.8.2",
  2233. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2234. },
  2235. "type": "library",
  2236. "extra": {
  2237. "bamarni-bin": {
  2238. "bin-links": true,
  2239. "forward-command": false
  2240. }
  2241. },
  2242. "autoload": {
  2243. "psr-4": {
  2244. "GuzzleHttp\\Promise\\": "src/"
  2245. }
  2246. },
  2247. "notification-url": "https://packagist.org/downloads/",
  2248. "license": [
  2249. "MIT"
  2250. ],
  2251. "authors": [
  2252. {
  2253. "name": "Graham Campbell",
  2254. "email": "hello@gjcampbell.co.uk",
  2255. "homepage": "https://github.com/GrahamCampbell"
  2256. },
  2257. {
  2258. "name": "Michael Dowling",
  2259. "email": "mtdowling@gmail.com",
  2260. "homepage": "https://github.com/mtdowling"
  2261. },
  2262. {
  2263. "name": "Tobias Nyholm",
  2264. "email": "tobias.nyholm@gmail.com",
  2265. "homepage": "https://github.com/Nyholm"
  2266. },
  2267. {
  2268. "name": "Tobias Schultze",
  2269. "email": "webmaster@tubo-world.de",
  2270. "homepage": "https://github.com/Tobion"
  2271. }
  2272. ],
  2273. "description": "Guzzle promises library",
  2274. "keywords": [
  2275. "promise"
  2276. ],
  2277. "support": {
  2278. "issues": "https://github.com/guzzle/promises/issues",
  2279. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  2280. },
  2281. "funding": [
  2282. {
  2283. "url": "https://github.com/GrahamCampbell",
  2284. "type": "github"
  2285. },
  2286. {
  2287. "url": "https://github.com/Nyholm",
  2288. "type": "github"
  2289. },
  2290. {
  2291. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2292. "type": "tidelift"
  2293. }
  2294. ],
  2295. "time": "2023-12-03T20:19:20+00:00"
  2296. },
  2297. {
  2298. "name": "guzzlehttp/psr7",
  2299. "version": "2.6.2",
  2300. "source": {
  2301. "type": "git",
  2302. "url": "https://github.com/guzzle/psr7.git",
  2303. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  2304. },
  2305. "dist": {
  2306. "type": "zip",
  2307. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2308. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2309. "shasum": ""
  2310. },
  2311. "require": {
  2312. "php": "^7.2.5 || ^8.0",
  2313. "psr/http-factory": "^1.0",
  2314. "psr/http-message": "^1.1 || ^2.0",
  2315. "ralouphie/getallheaders": "^3.0"
  2316. },
  2317. "provide": {
  2318. "psr/http-factory-implementation": "1.0",
  2319. "psr/http-message-implementation": "1.0"
  2320. },
  2321. "require-dev": {
  2322. "bamarni/composer-bin-plugin": "^1.8.2",
  2323. "http-interop/http-factory-tests": "^0.9",
  2324. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2325. },
  2326. "suggest": {
  2327. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2328. },
  2329. "type": "library",
  2330. "extra": {
  2331. "bamarni-bin": {
  2332. "bin-links": true,
  2333. "forward-command": false
  2334. }
  2335. },
  2336. "autoload": {
  2337. "psr-4": {
  2338. "GuzzleHttp\\Psr7\\": "src/"
  2339. }
  2340. },
  2341. "notification-url": "https://packagist.org/downloads/",
  2342. "license": [
  2343. "MIT"
  2344. ],
  2345. "authors": [
  2346. {
  2347. "name": "Graham Campbell",
  2348. "email": "hello@gjcampbell.co.uk",
  2349. "homepage": "https://github.com/GrahamCampbell"
  2350. },
  2351. {
  2352. "name": "Michael Dowling",
  2353. "email": "mtdowling@gmail.com",
  2354. "homepage": "https://github.com/mtdowling"
  2355. },
  2356. {
  2357. "name": "George Mponos",
  2358. "email": "gmponos@gmail.com",
  2359. "homepage": "https://github.com/gmponos"
  2360. },
  2361. {
  2362. "name": "Tobias Nyholm",
  2363. "email": "tobias.nyholm@gmail.com",
  2364. "homepage": "https://github.com/Nyholm"
  2365. },
  2366. {
  2367. "name": "Márk Sági-Kazár",
  2368. "email": "mark.sagikazar@gmail.com",
  2369. "homepage": "https://github.com/sagikazarmark"
  2370. },
  2371. {
  2372. "name": "Tobias Schultze",
  2373. "email": "webmaster@tubo-world.de",
  2374. "homepage": "https://github.com/Tobion"
  2375. },
  2376. {
  2377. "name": "Márk Sági-Kazár",
  2378. "email": "mark.sagikazar@gmail.com",
  2379. "homepage": "https://sagikazarmark.hu"
  2380. }
  2381. ],
  2382. "description": "PSR-7 message implementation that also provides common utility methods",
  2383. "keywords": [
  2384. "http",
  2385. "message",
  2386. "psr-7",
  2387. "request",
  2388. "response",
  2389. "stream",
  2390. "uri",
  2391. "url"
  2392. ],
  2393. "support": {
  2394. "issues": "https://github.com/guzzle/psr7/issues",
  2395. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  2396. },
  2397. "funding": [
  2398. {
  2399. "url": "https://github.com/GrahamCampbell",
  2400. "type": "github"
  2401. },
  2402. {
  2403. "url": "https://github.com/Nyholm",
  2404. "type": "github"
  2405. },
  2406. {
  2407. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2408. "type": "tidelift"
  2409. }
  2410. ],
  2411. "time": "2023-12-03T20:05:35+00:00"
  2412. },
  2413. {
  2414. "name": "jaeger/g-http",
  2415. "version": "V1.7.2",
  2416. "source": {
  2417. "type": "git",
  2418. "url": "https://github.com/jae-jae/GHttp.git",
  2419. "reference": "82585ddd5e2c6651e37ab1d8166efcdbb6b293d4"
  2420. },
  2421. "dist": {
  2422. "type": "zip",
  2423. "url": "https://api.github.com/repos/jae-jae/GHttp/zipball/82585ddd5e2c6651e37ab1d8166efcdbb6b293d4",
  2424. "reference": "82585ddd5e2c6651e37ab1d8166efcdbb6b293d4",
  2425. "shasum": ""
  2426. },
  2427. "require": {
  2428. "cache/filesystem-adapter": "^1",
  2429. "guzzlehttp/guzzle": "^6.0 | ^7.0"
  2430. },
  2431. "type": "library",
  2432. "autoload": {
  2433. "psr-4": {
  2434. "Jaeger\\": "src"
  2435. }
  2436. },
  2437. "notification-url": "https://packagist.org/downloads/",
  2438. "license": [
  2439. "MIT"
  2440. ],
  2441. "authors": [
  2442. {
  2443. "name": "Jaeger",
  2444. "email": "JaegerCode@gmail.com"
  2445. }
  2446. ],
  2447. "description": "Simple Http client base on GuzzleHttp",
  2448. "support": {
  2449. "issues": "https://github.com/jae-jae/GHttp/issues",
  2450. "source": "https://github.com/jae-jae/GHttp/tree/V1.7.2"
  2451. },
  2452. "time": "2021-08-08T04:59:44+00:00"
  2453. },
  2454. {
  2455. "name": "jaeger/phpquery-single",
  2456. "version": "1.1.1",
  2457. "source": {
  2458. "type": "git",
  2459. "url": "https://github.com/jae-jae/phpQuery-single.git",
  2460. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb"
  2461. },
  2462. "dist": {
  2463. "type": "zip",
  2464. "url": "https://api.github.com/repos/jae-jae/phpQuery-single/zipball/39a650ade692a6b480c22220dce0c198d6a946fb",
  2465. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb",
  2466. "shasum": ""
  2467. },
  2468. "require": {
  2469. "php": ">=5.3.0"
  2470. },
  2471. "type": "library",
  2472. "autoload": {
  2473. "classmap": [
  2474. "phpQuery.php"
  2475. ]
  2476. },
  2477. "notification-url": "https://packagist.org/downloads/",
  2478. "license": [
  2479. "MIT"
  2480. ],
  2481. "authors": [
  2482. {
  2483. "name": "Tobiasz Cudnik",
  2484. "email": "tobiasz.cudnik@gmail.com",
  2485. "homepage": "https://github.com/TobiaszCudnik",
  2486. "role": "Developer"
  2487. },
  2488. {
  2489. "name": "Jaeger",
  2490. "role": "Packager"
  2491. }
  2492. ],
  2493. "description": "phpQuery单文件版本,是Querylist的依赖(http://querylist.cc/),phpQuery项目主页:http://code.google.com/p/phpquery/",
  2494. "homepage": "http://code.google.com/p/phpquery/",
  2495. "support": {
  2496. "issues": "https://github.com/jae-jae/phpQuery-single/issues",
  2497. "source": "https://github.com/jae-jae/phpQuery-single/tree/1.1.1"
  2498. },
  2499. "time": "2022-03-26T15:01:16+00:00"
  2500. },
  2501. {
  2502. "name": "jaeger/querylist",
  2503. "version": "V4.2.8",
  2504. "source": {
  2505. "type": "git",
  2506. "url": "https://github.com/jae-jae/QueryList.git",
  2507. "reference": "39dc0ca9c668bec7a793e20472ccd7d26ef89ea4"
  2508. },
  2509. "dist": {
  2510. "type": "zip",
  2511. "url": "https://api.github.com/repos/jae-jae/QueryList/zipball/39dc0ca9c668bec7a793e20472ccd7d26ef89ea4",
  2512. "reference": "39dc0ca9c668bec7a793e20472ccd7d26ef89ea4",
  2513. "shasum": ""
  2514. },
  2515. "require": {
  2516. "ext-dom": "*",
  2517. "jaeger/g-http": "^1.1",
  2518. "jaeger/phpquery-single": "^1",
  2519. "php": ">=7.1",
  2520. "tightenco/collect": ">5.0"
  2521. },
  2522. "require-dev": {
  2523. "phpunit/phpunit": "^8.5",
  2524. "symfony/var-dumper": "^3.3"
  2525. },
  2526. "type": "library",
  2527. "autoload": {
  2528. "psr-4": {
  2529. "QL\\": "src"
  2530. }
  2531. },
  2532. "notification-url": "https://packagist.org/downloads/",
  2533. "license": [
  2534. "MIT"
  2535. ],
  2536. "authors": [
  2537. {
  2538. "name": "Jaeger",
  2539. "email": "JaegerCode@gmail.com"
  2540. }
  2541. ],
  2542. "description": "Simple, elegant, extensible PHP Web Scraper (crawler/spider),Use the css3 dom selector,Based on phpQuery! 简洁、优雅、可扩展的PHP采集工具(爬虫),基于phpQuery。",
  2543. "homepage": "http://querylist.cc",
  2544. "keywords": [
  2545. "QueryList",
  2546. "phpQuery",
  2547. "spider"
  2548. ],
  2549. "support": {
  2550. "issues": "https://github.com/jae-jae/QueryList/issues",
  2551. "source": "https://github.com/jae-jae/QueryList/tree/V4.2.8"
  2552. },
  2553. "funding": [
  2554. {
  2555. "url": "https://opencollective.com/querylist",
  2556. "type": "open_collective"
  2557. }
  2558. ],
  2559. "time": "2021-07-05T06:07:58+00:00"
  2560. },
  2561. {
  2562. "name": "laravel/framework",
  2563. "version": "v8.83.27",
  2564. "source": {
  2565. "type": "git",
  2566. "url": "https://github.com/laravel/framework.git",
  2567. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  2568. },
  2569. "dist": {
  2570. "type": "zip",
  2571. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2572. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2573. "shasum": ""
  2574. },
  2575. "require": {
  2576. "doctrine/inflector": "^1.4|^2.0",
  2577. "dragonmantank/cron-expression": "^3.0.2",
  2578. "egulias/email-validator": "^2.1.10",
  2579. "ext-json": "*",
  2580. "ext-mbstring": "*",
  2581. "ext-openssl": "*",
  2582. "laravel/serializable-closure": "^1.0",
  2583. "league/commonmark": "^1.3|^2.0.2",
  2584. "league/flysystem": "^1.1",
  2585. "monolog/monolog": "^2.0",
  2586. "nesbot/carbon": "^2.53.1",
  2587. "opis/closure": "^3.6",
  2588. "php": "^7.3|^8.0",
  2589. "psr/container": "^1.0",
  2590. "psr/log": "^1.0|^2.0",
  2591. "psr/simple-cache": "^1.0",
  2592. "ramsey/uuid": "^4.2.2",
  2593. "swiftmailer/swiftmailer": "^6.3",
  2594. "symfony/console": "^5.4",
  2595. "symfony/error-handler": "^5.4",
  2596. "symfony/finder": "^5.4",
  2597. "symfony/http-foundation": "^5.4",
  2598. "symfony/http-kernel": "^5.4",
  2599. "symfony/mime": "^5.4",
  2600. "symfony/process": "^5.4",
  2601. "symfony/routing": "^5.4",
  2602. "symfony/var-dumper": "^5.4",
  2603. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2604. "vlucas/phpdotenv": "^5.4.1",
  2605. "voku/portable-ascii": "^1.6.1"
  2606. },
  2607. "conflict": {
  2608. "tightenco/collect": "<5.5.33"
  2609. },
  2610. "provide": {
  2611. "psr/container-implementation": "1.0",
  2612. "psr/simple-cache-implementation": "1.0"
  2613. },
  2614. "replace": {
  2615. "illuminate/auth": "self.version",
  2616. "illuminate/broadcasting": "self.version",
  2617. "illuminate/bus": "self.version",
  2618. "illuminate/cache": "self.version",
  2619. "illuminate/collections": "self.version",
  2620. "illuminate/config": "self.version",
  2621. "illuminate/console": "self.version",
  2622. "illuminate/container": "self.version",
  2623. "illuminate/contracts": "self.version",
  2624. "illuminate/cookie": "self.version",
  2625. "illuminate/database": "self.version",
  2626. "illuminate/encryption": "self.version",
  2627. "illuminate/events": "self.version",
  2628. "illuminate/filesystem": "self.version",
  2629. "illuminate/hashing": "self.version",
  2630. "illuminate/http": "self.version",
  2631. "illuminate/log": "self.version",
  2632. "illuminate/macroable": "self.version",
  2633. "illuminate/mail": "self.version",
  2634. "illuminate/notifications": "self.version",
  2635. "illuminate/pagination": "self.version",
  2636. "illuminate/pipeline": "self.version",
  2637. "illuminate/queue": "self.version",
  2638. "illuminate/redis": "self.version",
  2639. "illuminate/routing": "self.version",
  2640. "illuminate/session": "self.version",
  2641. "illuminate/support": "self.version",
  2642. "illuminate/testing": "self.version",
  2643. "illuminate/translation": "self.version",
  2644. "illuminate/validation": "self.version",
  2645. "illuminate/view": "self.version"
  2646. },
  2647. "require-dev": {
  2648. "aws/aws-sdk-php": "^3.198.1",
  2649. "doctrine/dbal": "^2.13.3|^3.1.4",
  2650. "filp/whoops": "^2.14.3",
  2651. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  2652. "league/flysystem-cached-adapter": "^1.0",
  2653. "mockery/mockery": "^1.4.4",
  2654. "orchestra/testbench-core": "^6.27",
  2655. "pda/pheanstalk": "^4.0",
  2656. "phpunit/phpunit": "^8.5.19|^9.5.8",
  2657. "predis/predis": "^1.1.9",
  2658. "symfony/cache": "^5.4"
  2659. },
  2660. "suggest": {
  2661. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2662. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  2663. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2664. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2665. "ext-bcmath": "Required to use the multiple_of validation rule.",
  2666. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2667. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2668. "ext-memcached": "Required to use the memcache cache driver.",
  2669. "ext-pcntl": "Required to use all features of the queue worker.",
  2670. "ext-posix": "Required to use all features of the queue worker.",
  2671. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2672. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2673. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2674. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  2675. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2676. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2677. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2678. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2679. "mockery/mockery": "Required to use mocking (^1.4.4).",
  2680. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2681. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2682. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  2683. "predis/predis": "Required to use the predis connector (^1.1.9).",
  2684. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2685. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  2686. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  2687. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  2688. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2689. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2690. },
  2691. "type": "library",
  2692. "extra": {
  2693. "branch-alias": {
  2694. "dev-master": "8.x-dev"
  2695. }
  2696. },
  2697. "autoload": {
  2698. "files": [
  2699. "src/Illuminate/Collections/helpers.php",
  2700. "src/Illuminate/Events/functions.php",
  2701. "src/Illuminate/Foundation/helpers.php",
  2702. "src/Illuminate/Support/helpers.php"
  2703. ],
  2704. "psr-4": {
  2705. "Illuminate\\": "src/Illuminate/",
  2706. "Illuminate\\Support\\": [
  2707. "src/Illuminate/Macroable/",
  2708. "src/Illuminate/Collections/"
  2709. ]
  2710. }
  2711. },
  2712. "notification-url": "https://packagist.org/downloads/",
  2713. "license": [
  2714. "MIT"
  2715. ],
  2716. "authors": [
  2717. {
  2718. "name": "Taylor Otwell",
  2719. "email": "taylor@laravel.com"
  2720. }
  2721. ],
  2722. "description": "The Laravel Framework.",
  2723. "homepage": "https://laravel.com",
  2724. "keywords": [
  2725. "framework",
  2726. "laravel"
  2727. ],
  2728. "support": {
  2729. "issues": "https://github.com/laravel/framework/issues",
  2730. "source": "https://github.com/laravel/framework"
  2731. },
  2732. "time": "2022-12-08T15:28:55+00:00"
  2733. },
  2734. {
  2735. "name": "laravel/serializable-closure",
  2736. "version": "v1.3.3",
  2737. "source": {
  2738. "type": "git",
  2739. "url": "https://github.com/laravel/serializable-closure.git",
  2740. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  2741. },
  2742. "dist": {
  2743. "type": "zip",
  2744. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  2745. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  2746. "shasum": ""
  2747. },
  2748. "require": {
  2749. "php": "^7.3|^8.0"
  2750. },
  2751. "require-dev": {
  2752. "nesbot/carbon": "^2.61",
  2753. "pestphp/pest": "^1.21.3",
  2754. "phpstan/phpstan": "^1.8.2",
  2755. "symfony/var-dumper": "^5.4.11"
  2756. },
  2757. "type": "library",
  2758. "extra": {
  2759. "branch-alias": {
  2760. "dev-master": "1.x-dev"
  2761. }
  2762. },
  2763. "autoload": {
  2764. "psr-4": {
  2765. "Laravel\\SerializableClosure\\": "src/"
  2766. }
  2767. },
  2768. "notification-url": "https://packagist.org/downloads/",
  2769. "license": [
  2770. "MIT"
  2771. ],
  2772. "authors": [
  2773. {
  2774. "name": "Taylor Otwell",
  2775. "email": "taylor@laravel.com"
  2776. },
  2777. {
  2778. "name": "Nuno Maduro",
  2779. "email": "nuno@laravel.com"
  2780. }
  2781. ],
  2782. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2783. "keywords": [
  2784. "closure",
  2785. "laravel",
  2786. "serializable"
  2787. ],
  2788. "support": {
  2789. "issues": "https://github.com/laravel/serializable-closure/issues",
  2790. "source": "https://github.com/laravel/serializable-closure"
  2791. },
  2792. "time": "2023-11-08T14:08:06+00:00"
  2793. },
  2794. {
  2795. "name": "laravel/socialite",
  2796. "version": "v5.11.0",
  2797. "source": {
  2798. "type": "git",
  2799. "url": "https://github.com/laravel/socialite.git",
  2800. "reference": "4f6a8af6f3f7c18da03d19842dd0514315501c10"
  2801. },
  2802. "dist": {
  2803. "type": "zip",
  2804. "url": "https://api.github.com/repos/laravel/socialite/zipball/4f6a8af6f3f7c18da03d19842dd0514315501c10",
  2805. "reference": "4f6a8af6f3f7c18da03d19842dd0514315501c10",
  2806. "shasum": ""
  2807. },
  2808. "require": {
  2809. "ext-json": "*",
  2810. "guzzlehttp/guzzle": "^6.0|^7.0",
  2811. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2812. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2813. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2814. "league/oauth1-client": "^1.10.1",
  2815. "php": "^7.2|^8.0"
  2816. },
  2817. "require-dev": {
  2818. "mockery/mockery": "^1.0",
  2819. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  2820. "phpstan/phpstan": "^1.10",
  2821. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  2822. },
  2823. "type": "library",
  2824. "extra": {
  2825. "branch-alias": {
  2826. "dev-master": "5.x-dev"
  2827. },
  2828. "laravel": {
  2829. "providers": [
  2830. "Laravel\\Socialite\\SocialiteServiceProvider"
  2831. ],
  2832. "aliases": {
  2833. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2834. }
  2835. }
  2836. },
  2837. "autoload": {
  2838. "psr-4": {
  2839. "Laravel\\Socialite\\": "src/"
  2840. }
  2841. },
  2842. "notification-url": "https://packagist.org/downloads/",
  2843. "license": [
  2844. "MIT"
  2845. ],
  2846. "authors": [
  2847. {
  2848. "name": "Taylor Otwell",
  2849. "email": "taylor@laravel.com"
  2850. }
  2851. ],
  2852. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2853. "homepage": "https://laravel.com",
  2854. "keywords": [
  2855. "laravel",
  2856. "oauth"
  2857. ],
  2858. "support": {
  2859. "issues": "https://github.com/laravel/socialite/issues",
  2860. "source": "https://github.com/laravel/socialite"
  2861. },
  2862. "time": "2023-12-02T18:22:36+00:00"
  2863. },
  2864. {
  2865. "name": "laravel/tinker",
  2866. "version": "v2.8.2",
  2867. "source": {
  2868. "type": "git",
  2869. "url": "https://github.com/laravel/tinker.git",
  2870. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3"
  2871. },
  2872. "dist": {
  2873. "type": "zip",
  2874. "url": "https://api.github.com/repos/laravel/tinker/zipball/b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  2875. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  2876. "shasum": ""
  2877. },
  2878. "require": {
  2879. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2880. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2881. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2882. "php": "^7.2.5|^8.0",
  2883. "psy/psysh": "^0.10.4|^0.11.1",
  2884. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2885. },
  2886. "require-dev": {
  2887. "mockery/mockery": "~1.3.3|^1.4.2",
  2888. "phpstan/phpstan": "^1.10",
  2889. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2890. },
  2891. "suggest": {
  2892. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  2893. },
  2894. "type": "library",
  2895. "extra": {
  2896. "branch-alias": {
  2897. "dev-master": "2.x-dev"
  2898. },
  2899. "laravel": {
  2900. "providers": [
  2901. "Laravel\\Tinker\\TinkerServiceProvider"
  2902. ]
  2903. }
  2904. },
  2905. "autoload": {
  2906. "psr-4": {
  2907. "Laravel\\Tinker\\": "src/"
  2908. }
  2909. },
  2910. "notification-url": "https://packagist.org/downloads/",
  2911. "license": [
  2912. "MIT"
  2913. ],
  2914. "authors": [
  2915. {
  2916. "name": "Taylor Otwell",
  2917. "email": "taylor@laravel.com"
  2918. }
  2919. ],
  2920. "description": "Powerful REPL for the Laravel framework.",
  2921. "keywords": [
  2922. "REPL",
  2923. "Tinker",
  2924. "laravel",
  2925. "psysh"
  2926. ],
  2927. "support": {
  2928. "issues": "https://github.com/laravel/tinker/issues",
  2929. "source": "https://github.com/laravel/tinker/tree/v2.8.2"
  2930. },
  2931. "time": "2023-08-15T14:27:00+00:00"
  2932. },
  2933. {
  2934. "name": "league/commonmark",
  2935. "version": "2.4.1",
  2936. "source": {
  2937. "type": "git",
  2938. "url": "https://github.com/thephpleague/commonmark.git",
  2939. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  2940. },
  2941. "dist": {
  2942. "type": "zip",
  2943. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2944. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2945. "shasum": ""
  2946. },
  2947. "require": {
  2948. "ext-mbstring": "*",
  2949. "league/config": "^1.1.1",
  2950. "php": "^7.4 || ^8.0",
  2951. "psr/event-dispatcher": "^1.0",
  2952. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2953. "symfony/polyfill-php80": "^1.16"
  2954. },
  2955. "require-dev": {
  2956. "cebe/markdown": "^1.0",
  2957. "commonmark/cmark": "0.30.0",
  2958. "commonmark/commonmark.js": "0.30.0",
  2959. "composer/package-versions-deprecated": "^1.8",
  2960. "embed/embed": "^4.4",
  2961. "erusev/parsedown": "^1.0",
  2962. "ext-json": "*",
  2963. "github/gfm": "0.29.0",
  2964. "michelf/php-markdown": "^1.4 || ^2.0",
  2965. "nyholm/psr7": "^1.5",
  2966. "phpstan/phpstan": "^1.8.2",
  2967. "phpunit/phpunit": "^9.5.21",
  2968. "scrutinizer/ocular": "^1.8.1",
  2969. "symfony/finder": "^5.3 | ^6.0",
  2970. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2971. "unleashedtech/php-coding-standard": "^3.1.1",
  2972. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2973. },
  2974. "suggest": {
  2975. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2976. },
  2977. "type": "library",
  2978. "extra": {
  2979. "branch-alias": {
  2980. "dev-main": "2.5-dev"
  2981. }
  2982. },
  2983. "autoload": {
  2984. "psr-4": {
  2985. "League\\CommonMark\\": "src"
  2986. }
  2987. },
  2988. "notification-url": "https://packagist.org/downloads/",
  2989. "license": [
  2990. "BSD-3-Clause"
  2991. ],
  2992. "authors": [
  2993. {
  2994. "name": "Colin O'Dell",
  2995. "email": "colinodell@gmail.com",
  2996. "homepage": "https://www.colinodell.com",
  2997. "role": "Lead Developer"
  2998. }
  2999. ],
  3000. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3001. "homepage": "https://commonmark.thephpleague.com",
  3002. "keywords": [
  3003. "commonmark",
  3004. "flavored",
  3005. "gfm",
  3006. "github",
  3007. "github-flavored",
  3008. "markdown",
  3009. "md",
  3010. "parser"
  3011. ],
  3012. "support": {
  3013. "docs": "https://commonmark.thephpleague.com/",
  3014. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3015. "issues": "https://github.com/thephpleague/commonmark/issues",
  3016. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3017. "source": "https://github.com/thephpleague/commonmark"
  3018. },
  3019. "funding": [
  3020. {
  3021. "url": "https://www.colinodell.com/sponsor",
  3022. "type": "custom"
  3023. },
  3024. {
  3025. "url": "https://www.paypal.me/colinpodell/10.00",
  3026. "type": "custom"
  3027. },
  3028. {
  3029. "url": "https://github.com/colinodell",
  3030. "type": "github"
  3031. },
  3032. {
  3033. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3034. "type": "tidelift"
  3035. }
  3036. ],
  3037. "time": "2023-08-30T16:55:00+00:00"
  3038. },
  3039. {
  3040. "name": "league/config",
  3041. "version": "v1.2.0",
  3042. "source": {
  3043. "type": "git",
  3044. "url": "https://github.com/thephpleague/config.git",
  3045. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3046. },
  3047. "dist": {
  3048. "type": "zip",
  3049. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3050. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3051. "shasum": ""
  3052. },
  3053. "require": {
  3054. "dflydev/dot-access-data": "^3.0.1",
  3055. "nette/schema": "^1.2",
  3056. "php": "^7.4 || ^8.0"
  3057. },
  3058. "require-dev": {
  3059. "phpstan/phpstan": "^1.8.2",
  3060. "phpunit/phpunit": "^9.5.5",
  3061. "scrutinizer/ocular": "^1.8.1",
  3062. "unleashedtech/php-coding-standard": "^3.1",
  3063. "vimeo/psalm": "^4.7.3"
  3064. },
  3065. "type": "library",
  3066. "extra": {
  3067. "branch-alias": {
  3068. "dev-main": "1.2-dev"
  3069. }
  3070. },
  3071. "autoload": {
  3072. "psr-4": {
  3073. "League\\Config\\": "src"
  3074. }
  3075. },
  3076. "notification-url": "https://packagist.org/downloads/",
  3077. "license": [
  3078. "BSD-3-Clause"
  3079. ],
  3080. "authors": [
  3081. {
  3082. "name": "Colin O'Dell",
  3083. "email": "colinodell@gmail.com",
  3084. "homepage": "https://www.colinodell.com",
  3085. "role": "Lead Developer"
  3086. }
  3087. ],
  3088. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3089. "homepage": "https://config.thephpleague.com",
  3090. "keywords": [
  3091. "array",
  3092. "config",
  3093. "configuration",
  3094. "dot",
  3095. "dot-access",
  3096. "nested",
  3097. "schema"
  3098. ],
  3099. "support": {
  3100. "docs": "https://config.thephpleague.com/",
  3101. "issues": "https://github.com/thephpleague/config/issues",
  3102. "rss": "https://github.com/thephpleague/config/releases.atom",
  3103. "source": "https://github.com/thephpleague/config"
  3104. },
  3105. "funding": [
  3106. {
  3107. "url": "https://www.colinodell.com/sponsor",
  3108. "type": "custom"
  3109. },
  3110. {
  3111. "url": "https://www.paypal.me/colinpodell/10.00",
  3112. "type": "custom"
  3113. },
  3114. {
  3115. "url": "https://github.com/colinodell",
  3116. "type": "github"
  3117. }
  3118. ],
  3119. "time": "2022-12-11T20:36:23+00:00"
  3120. },
  3121. {
  3122. "name": "league/flysystem",
  3123. "version": "1.1.10",
  3124. "source": {
  3125. "type": "git",
  3126. "url": "https://github.com/thephpleague/flysystem.git",
  3127. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  3128. },
  3129. "dist": {
  3130. "type": "zip",
  3131. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  3132. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  3133. "shasum": ""
  3134. },
  3135. "require": {
  3136. "ext-fileinfo": "*",
  3137. "league/mime-type-detection": "^1.3",
  3138. "php": "^7.2.5 || ^8.0"
  3139. },
  3140. "conflict": {
  3141. "league/flysystem-sftp": "<1.0.6"
  3142. },
  3143. "require-dev": {
  3144. "phpspec/prophecy": "^1.11.1",
  3145. "phpunit/phpunit": "^8.5.8"
  3146. },
  3147. "suggest": {
  3148. "ext-ftp": "Allows you to use FTP server storage",
  3149. "ext-openssl": "Allows you to use FTPS server storage",
  3150. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3151. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3152. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3153. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3154. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3155. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3156. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3157. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3158. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3159. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3160. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3161. },
  3162. "type": "library",
  3163. "extra": {
  3164. "branch-alias": {
  3165. "dev-master": "1.1-dev"
  3166. }
  3167. },
  3168. "autoload": {
  3169. "psr-4": {
  3170. "League\\Flysystem\\": "src/"
  3171. }
  3172. },
  3173. "notification-url": "https://packagist.org/downloads/",
  3174. "license": [
  3175. "MIT"
  3176. ],
  3177. "authors": [
  3178. {
  3179. "name": "Frank de Jonge",
  3180. "email": "info@frenky.net"
  3181. }
  3182. ],
  3183. "description": "Filesystem abstraction: Many filesystems, one API.",
  3184. "keywords": [
  3185. "Cloud Files",
  3186. "WebDAV",
  3187. "abstraction",
  3188. "aws",
  3189. "cloud",
  3190. "copy.com",
  3191. "dropbox",
  3192. "file systems",
  3193. "files",
  3194. "filesystem",
  3195. "filesystems",
  3196. "ftp",
  3197. "rackspace",
  3198. "remote",
  3199. "s3",
  3200. "sftp",
  3201. "storage"
  3202. ],
  3203. "support": {
  3204. "issues": "https://github.com/thephpleague/flysystem/issues",
  3205. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  3206. },
  3207. "funding": [
  3208. {
  3209. "url": "https://offset.earth/frankdejonge",
  3210. "type": "other"
  3211. }
  3212. ],
  3213. "time": "2022-10-04T09:16:37+00:00"
  3214. },
  3215. {
  3216. "name": "league/mime-type-detection",
  3217. "version": "1.14.0",
  3218. "source": {
  3219. "type": "git",
  3220. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3221. "reference": "b6a5854368533df0295c5761a0253656a2e52d9e"
  3222. },
  3223. "dist": {
  3224. "type": "zip",
  3225. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b6a5854368533df0295c5761a0253656a2e52d9e",
  3226. "reference": "b6a5854368533df0295c5761a0253656a2e52d9e",
  3227. "shasum": ""
  3228. },
  3229. "require": {
  3230. "ext-fileinfo": "*",
  3231. "php": "^7.4 || ^8.0"
  3232. },
  3233. "require-dev": {
  3234. "friendsofphp/php-cs-fixer": "^3.2",
  3235. "phpstan/phpstan": "^0.12.68",
  3236. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3237. },
  3238. "type": "library",
  3239. "autoload": {
  3240. "psr-4": {
  3241. "League\\MimeTypeDetection\\": "src"
  3242. }
  3243. },
  3244. "notification-url": "https://packagist.org/downloads/",
  3245. "license": [
  3246. "MIT"
  3247. ],
  3248. "authors": [
  3249. {
  3250. "name": "Frank de Jonge",
  3251. "email": "info@frankdejonge.nl"
  3252. }
  3253. ],
  3254. "description": "Mime-type detection for Flysystem",
  3255. "support": {
  3256. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3257. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.14.0"
  3258. },
  3259. "funding": [
  3260. {
  3261. "url": "https://github.com/frankdejonge",
  3262. "type": "github"
  3263. },
  3264. {
  3265. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3266. "type": "tidelift"
  3267. }
  3268. ],
  3269. "time": "2023-10-17T14:13:20+00:00"
  3270. },
  3271. {
  3272. "name": "league/oauth1-client",
  3273. "version": "v1.10.1",
  3274. "source": {
  3275. "type": "git",
  3276. "url": "https://github.com/thephpleague/oauth1-client.git",
  3277. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  3278. },
  3279. "dist": {
  3280. "type": "zip",
  3281. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  3282. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  3283. "shasum": ""
  3284. },
  3285. "require": {
  3286. "ext-json": "*",
  3287. "ext-openssl": "*",
  3288. "guzzlehttp/guzzle": "^6.0|^7.0",
  3289. "guzzlehttp/psr7": "^1.7|^2.0",
  3290. "php": ">=7.1||>=8.0"
  3291. },
  3292. "require-dev": {
  3293. "ext-simplexml": "*",
  3294. "friendsofphp/php-cs-fixer": "^2.17",
  3295. "mockery/mockery": "^1.3.3",
  3296. "phpstan/phpstan": "^0.12.42",
  3297. "phpunit/phpunit": "^7.5||9.5"
  3298. },
  3299. "suggest": {
  3300. "ext-simplexml": "For decoding XML-based responses."
  3301. },
  3302. "type": "library",
  3303. "extra": {
  3304. "branch-alias": {
  3305. "dev-master": "1.0-dev",
  3306. "dev-develop": "2.0-dev"
  3307. }
  3308. },
  3309. "autoload": {
  3310. "psr-4": {
  3311. "League\\OAuth1\\Client\\": "src/"
  3312. }
  3313. },
  3314. "notification-url": "https://packagist.org/downloads/",
  3315. "license": [
  3316. "MIT"
  3317. ],
  3318. "authors": [
  3319. {
  3320. "name": "Ben Corlett",
  3321. "email": "bencorlett@me.com",
  3322. "homepage": "http://www.webcomm.com.au",
  3323. "role": "Developer"
  3324. }
  3325. ],
  3326. "description": "OAuth 1.0 Client Library",
  3327. "keywords": [
  3328. "Authentication",
  3329. "SSO",
  3330. "authorization",
  3331. "bitbucket",
  3332. "identity",
  3333. "idp",
  3334. "oauth",
  3335. "oauth1",
  3336. "single sign on",
  3337. "trello",
  3338. "tumblr",
  3339. "twitter"
  3340. ],
  3341. "support": {
  3342. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  3343. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  3344. },
  3345. "time": "2022-04-15T14:02:14+00:00"
  3346. },
  3347. {
  3348. "name": "lizhichao/one-sm",
  3349. "version": "1.10",
  3350. "source": {
  3351. "type": "git",
  3352. "url": "https://github.com/lizhichao/sm.git",
  3353. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  3354. },
  3355. "dist": {
  3356. "type": "zip",
  3357. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  3358. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  3359. "shasum": ""
  3360. },
  3361. "require": {
  3362. "php": ">=5.6"
  3363. },
  3364. "type": "library",
  3365. "autoload": {
  3366. "psr-4": {
  3367. "OneSm\\": "src/"
  3368. }
  3369. },
  3370. "notification-url": "https://packagist.org/downloads/",
  3371. "license": [
  3372. "Apache-2.0"
  3373. ],
  3374. "authors": [
  3375. {
  3376. "name": "tanszhe",
  3377. "email": "1018595261@qq.com"
  3378. }
  3379. ],
  3380. "description": "国密sm3",
  3381. "keywords": [
  3382. "php",
  3383. "sm3"
  3384. ],
  3385. "support": {
  3386. "issues": "https://github.com/lizhichao/sm/issues",
  3387. "source": "https://github.com/lizhichao/sm/tree/1.10"
  3388. },
  3389. "funding": [
  3390. {
  3391. "url": "https://www.vicsdf.com/img/w.jpg",
  3392. "type": "custom"
  3393. },
  3394. {
  3395. "url": "https://www.vicsdf.com/img/z.jpg",
  3396. "type": "custom"
  3397. }
  3398. ],
  3399. "time": "2021-05-26T06:19:22+00:00"
  3400. },
  3401. {
  3402. "name": "maatwebsite/excel",
  3403. "version": "3.1.51",
  3404. "source": {
  3405. "type": "git",
  3406. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  3407. "reference": "6d3c78ce6645abada32e03b40dc7f3c561878bc3"
  3408. },
  3409. "dist": {
  3410. "type": "zip",
  3411. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/6d3c78ce6645abada32e03b40dc7f3c561878bc3",
  3412. "reference": "6d3c78ce6645abada32e03b40dc7f3c561878bc3",
  3413. "shasum": ""
  3414. },
  3415. "require": {
  3416. "composer/semver": "^3.3",
  3417. "ext-json": "*",
  3418. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0",
  3419. "php": "^7.0||^8.0",
  3420. "phpoffice/phpspreadsheet": "^1.18",
  3421. "psr/simple-cache": "^1.0||^2.0||^3.0"
  3422. },
  3423. "require-dev": {
  3424. "orchestra/testbench": "^6.0||^7.0||^8.0",
  3425. "predis/predis": "^1.1"
  3426. },
  3427. "type": "library",
  3428. "extra": {
  3429. "laravel": {
  3430. "providers": [
  3431. "Maatwebsite\\Excel\\ExcelServiceProvider"
  3432. ],
  3433. "aliases": {
  3434. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  3435. }
  3436. }
  3437. },
  3438. "autoload": {
  3439. "psr-4": {
  3440. "Maatwebsite\\Excel\\": "src/"
  3441. }
  3442. },
  3443. "notification-url": "https://packagist.org/downloads/",
  3444. "license": [
  3445. "MIT"
  3446. ],
  3447. "authors": [
  3448. {
  3449. "name": "Patrick Brouwers",
  3450. "email": "patrick@spartner.nl"
  3451. }
  3452. ],
  3453. "description": "Supercharged Excel exports and imports in Laravel",
  3454. "keywords": [
  3455. "PHPExcel",
  3456. "batch",
  3457. "csv",
  3458. "excel",
  3459. "export",
  3460. "import",
  3461. "laravel",
  3462. "php",
  3463. "phpspreadsheet"
  3464. ],
  3465. "support": {
  3466. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  3467. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.51"
  3468. },
  3469. "funding": [
  3470. {
  3471. "url": "https://laravel-excel.com/commercial-support",
  3472. "type": "custom"
  3473. },
  3474. {
  3475. "url": "https://github.com/patrickbrouwers",
  3476. "type": "github"
  3477. }
  3478. ],
  3479. "time": "2023-12-08T12:44:49+00:00"
  3480. },
  3481. {
  3482. "name": "maennchen/zipstream-php",
  3483. "version": "2.4.0",
  3484. "source": {
  3485. "type": "git",
  3486. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  3487. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  3488. },
  3489. "dist": {
  3490. "type": "zip",
  3491. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  3492. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  3493. "shasum": ""
  3494. },
  3495. "require": {
  3496. "ext-mbstring": "*",
  3497. "myclabs/php-enum": "^1.5",
  3498. "php": "^8.0",
  3499. "psr/http-message": "^1.0"
  3500. },
  3501. "require-dev": {
  3502. "ext-zip": "*",
  3503. "friendsofphp/php-cs-fixer": "^3.9",
  3504. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  3505. "mikey179/vfsstream": "^1.6",
  3506. "php-coveralls/php-coveralls": "^2.4",
  3507. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  3508. "vimeo/psalm": "^5.0"
  3509. },
  3510. "type": "library",
  3511. "autoload": {
  3512. "psr-4": {
  3513. "ZipStream\\": "src/"
  3514. }
  3515. },
  3516. "notification-url": "https://packagist.org/downloads/",
  3517. "license": [
  3518. "MIT"
  3519. ],
  3520. "authors": [
  3521. {
  3522. "name": "Paul Duncan",
  3523. "email": "pabs@pablotron.org"
  3524. },
  3525. {
  3526. "name": "Jonatan Männchen",
  3527. "email": "jonatan@maennchen.ch"
  3528. },
  3529. {
  3530. "name": "Jesse Donat",
  3531. "email": "donatj@gmail.com"
  3532. },
  3533. {
  3534. "name": "András Kolesár",
  3535. "email": "kolesar@kolesar.hu"
  3536. }
  3537. ],
  3538. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  3539. "keywords": [
  3540. "stream",
  3541. "zip"
  3542. ],
  3543. "support": {
  3544. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  3545. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0"
  3546. },
  3547. "funding": [
  3548. {
  3549. "url": "https://github.com/maennchen",
  3550. "type": "github"
  3551. },
  3552. {
  3553. "url": "https://opencollective.com/zipstream",
  3554. "type": "open_collective"
  3555. }
  3556. ],
  3557. "time": "2022-12-08T12:29:14+00:00"
  3558. },
  3559. {
  3560. "name": "markbaker/complex",
  3561. "version": "3.0.2",
  3562. "source": {
  3563. "type": "git",
  3564. "url": "https://github.com/MarkBaker/PHPComplex.git",
  3565. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  3566. },
  3567. "dist": {
  3568. "type": "zip",
  3569. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3570. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3571. "shasum": ""
  3572. },
  3573. "require": {
  3574. "php": "^7.2 || ^8.0"
  3575. },
  3576. "require-dev": {
  3577. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3578. "phpcompatibility/php-compatibility": "^9.3",
  3579. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3580. "squizlabs/php_codesniffer": "^3.7"
  3581. },
  3582. "type": "library",
  3583. "autoload": {
  3584. "psr-4": {
  3585. "Complex\\": "classes/src/"
  3586. }
  3587. },
  3588. "notification-url": "https://packagist.org/downloads/",
  3589. "license": [
  3590. "MIT"
  3591. ],
  3592. "authors": [
  3593. {
  3594. "name": "Mark Baker",
  3595. "email": "mark@lange.demon.co.uk"
  3596. }
  3597. ],
  3598. "description": "PHP Class for working with complex numbers",
  3599. "homepage": "https://github.com/MarkBaker/PHPComplex",
  3600. "keywords": [
  3601. "complex",
  3602. "mathematics"
  3603. ],
  3604. "support": {
  3605. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3606. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  3607. },
  3608. "time": "2022-12-06T16:21:08+00:00"
  3609. },
  3610. {
  3611. "name": "markbaker/matrix",
  3612. "version": "3.0.1",
  3613. "source": {
  3614. "type": "git",
  3615. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3616. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  3617. },
  3618. "dist": {
  3619. "type": "zip",
  3620. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  3621. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3622. "shasum": ""
  3623. },
  3624. "require": {
  3625. "php": "^7.1 || ^8.0"
  3626. },
  3627. "require-dev": {
  3628. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3629. "phpcompatibility/php-compatibility": "^9.3",
  3630. "phpdocumentor/phpdocumentor": "2.*",
  3631. "phploc/phploc": "^4.0",
  3632. "phpmd/phpmd": "2.*",
  3633. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3634. "sebastian/phpcpd": "^4.0",
  3635. "squizlabs/php_codesniffer": "^3.7"
  3636. },
  3637. "type": "library",
  3638. "autoload": {
  3639. "psr-4": {
  3640. "Matrix\\": "classes/src/"
  3641. }
  3642. },
  3643. "notification-url": "https://packagist.org/downloads/",
  3644. "license": [
  3645. "MIT"
  3646. ],
  3647. "authors": [
  3648. {
  3649. "name": "Mark Baker",
  3650. "email": "mark@demon-angel.eu"
  3651. }
  3652. ],
  3653. "description": "PHP Class for working with matrices",
  3654. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3655. "keywords": [
  3656. "mathematics",
  3657. "matrix",
  3658. "vector"
  3659. ],
  3660. "support": {
  3661. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3662. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  3663. },
  3664. "time": "2022-12-02T22:17:43+00:00"
  3665. },
  3666. {
  3667. "name": "monolog/monolog",
  3668. "version": "2.9.2",
  3669. "source": {
  3670. "type": "git",
  3671. "url": "https://github.com/Seldaek/monolog.git",
  3672. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  3673. },
  3674. "dist": {
  3675. "type": "zip",
  3676. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3677. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3678. "shasum": ""
  3679. },
  3680. "require": {
  3681. "php": ">=7.2",
  3682. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3683. },
  3684. "provide": {
  3685. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3686. },
  3687. "require-dev": {
  3688. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3689. "doctrine/couchdb": "~1.0@dev",
  3690. "elasticsearch/elasticsearch": "^7 || ^8",
  3691. "ext-json": "*",
  3692. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3693. "guzzlehttp/guzzle": "^7.4",
  3694. "guzzlehttp/psr7": "^2.2",
  3695. "mongodb/mongodb": "^1.8",
  3696. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3697. "phpspec/prophecy": "^1.15",
  3698. "phpstan/phpstan": "^0.12.91",
  3699. "phpunit/phpunit": "^8.5.14",
  3700. "predis/predis": "^1.1 || ^2.0",
  3701. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3702. "ruflin/elastica": "^7",
  3703. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3704. "symfony/mailer": "^5.4 || ^6",
  3705. "symfony/mime": "^5.4 || ^6"
  3706. },
  3707. "suggest": {
  3708. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3709. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3710. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3711. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3712. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3713. "ext-mbstring": "Allow to work properly with unicode symbols",
  3714. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3715. "ext-openssl": "Required to send log messages using SSL",
  3716. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3717. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3718. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3719. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3720. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3721. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3722. },
  3723. "type": "library",
  3724. "extra": {
  3725. "branch-alias": {
  3726. "dev-main": "2.x-dev"
  3727. }
  3728. },
  3729. "autoload": {
  3730. "psr-4": {
  3731. "Monolog\\": "src/Monolog"
  3732. }
  3733. },
  3734. "notification-url": "https://packagist.org/downloads/",
  3735. "license": [
  3736. "MIT"
  3737. ],
  3738. "authors": [
  3739. {
  3740. "name": "Jordi Boggiano",
  3741. "email": "j.boggiano@seld.be",
  3742. "homepage": "https://seld.be"
  3743. }
  3744. ],
  3745. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3746. "homepage": "https://github.com/Seldaek/monolog",
  3747. "keywords": [
  3748. "log",
  3749. "logging",
  3750. "psr-3"
  3751. ],
  3752. "support": {
  3753. "issues": "https://github.com/Seldaek/monolog/issues",
  3754. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  3755. },
  3756. "funding": [
  3757. {
  3758. "url": "https://github.com/Seldaek",
  3759. "type": "github"
  3760. },
  3761. {
  3762. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3763. "type": "tidelift"
  3764. }
  3765. ],
  3766. "time": "2023-10-27T15:25:26+00:00"
  3767. },
  3768. {
  3769. "name": "mtdowling/jmespath.php",
  3770. "version": "2.7.0",
  3771. "source": {
  3772. "type": "git",
  3773. "url": "https://github.com/jmespath/jmespath.php.git",
  3774. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  3775. },
  3776. "dist": {
  3777. "type": "zip",
  3778. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  3779. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  3780. "shasum": ""
  3781. },
  3782. "require": {
  3783. "php": "^7.2.5 || ^8.0",
  3784. "symfony/polyfill-mbstring": "^1.17"
  3785. },
  3786. "require-dev": {
  3787. "composer/xdebug-handler": "^3.0.3",
  3788. "phpunit/phpunit": "^8.5.33"
  3789. },
  3790. "bin": [
  3791. "bin/jp.php"
  3792. ],
  3793. "type": "library",
  3794. "extra": {
  3795. "branch-alias": {
  3796. "dev-master": "2.7-dev"
  3797. }
  3798. },
  3799. "autoload": {
  3800. "files": [
  3801. "src/JmesPath.php"
  3802. ],
  3803. "psr-4": {
  3804. "JmesPath\\": "src/"
  3805. }
  3806. },
  3807. "notification-url": "https://packagist.org/downloads/",
  3808. "license": [
  3809. "MIT"
  3810. ],
  3811. "authors": [
  3812. {
  3813. "name": "Graham Campbell",
  3814. "email": "hello@gjcampbell.co.uk",
  3815. "homepage": "https://github.com/GrahamCampbell"
  3816. },
  3817. {
  3818. "name": "Michael Dowling",
  3819. "email": "mtdowling@gmail.com",
  3820. "homepage": "https://github.com/mtdowling"
  3821. }
  3822. ],
  3823. "description": "Declaratively specify how to extract elements from a JSON document",
  3824. "keywords": [
  3825. "json",
  3826. "jsonpath"
  3827. ],
  3828. "support": {
  3829. "issues": "https://github.com/jmespath/jmespath.php/issues",
  3830. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  3831. },
  3832. "time": "2023-08-25T10:54:48+00:00"
  3833. },
  3834. {
  3835. "name": "myclabs/php-enum",
  3836. "version": "1.8.4",
  3837. "source": {
  3838. "type": "git",
  3839. "url": "https://github.com/myclabs/php-enum.git",
  3840. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  3841. },
  3842. "dist": {
  3843. "type": "zip",
  3844. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  3845. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  3846. "shasum": ""
  3847. },
  3848. "require": {
  3849. "ext-json": "*",
  3850. "php": "^7.3 || ^8.0"
  3851. },
  3852. "require-dev": {
  3853. "phpunit/phpunit": "^9.5",
  3854. "squizlabs/php_codesniffer": "1.*",
  3855. "vimeo/psalm": "^4.6.2"
  3856. },
  3857. "type": "library",
  3858. "autoload": {
  3859. "psr-4": {
  3860. "MyCLabs\\Enum\\": "src/"
  3861. },
  3862. "classmap": [
  3863. "stubs/Stringable.php"
  3864. ]
  3865. },
  3866. "notification-url": "https://packagist.org/downloads/",
  3867. "license": [
  3868. "MIT"
  3869. ],
  3870. "authors": [
  3871. {
  3872. "name": "PHP Enum contributors",
  3873. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3874. }
  3875. ],
  3876. "description": "PHP Enum implementation",
  3877. "homepage": "http://github.com/myclabs/php-enum",
  3878. "keywords": [
  3879. "enum"
  3880. ],
  3881. "support": {
  3882. "issues": "https://github.com/myclabs/php-enum/issues",
  3883. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3884. },
  3885. "funding": [
  3886. {
  3887. "url": "https://github.com/mnapoli",
  3888. "type": "github"
  3889. },
  3890. {
  3891. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3892. "type": "tidelift"
  3893. }
  3894. ],
  3895. "time": "2022-08-04T09:53:51+00:00"
  3896. },
  3897. {
  3898. "name": "nesbot/carbon",
  3899. "version": "2.72.1",
  3900. "source": {
  3901. "type": "git",
  3902. "url": "https://github.com/briannesbitt/Carbon.git",
  3903. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78"
  3904. },
  3905. "dist": {
  3906. "type": "zip",
  3907. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  3908. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  3909. "shasum": ""
  3910. },
  3911. "require": {
  3912. "carbonphp/carbon-doctrine-types": "*",
  3913. "ext-json": "*",
  3914. "php": "^7.1.8 || ^8.0",
  3915. "psr/clock": "^1.0",
  3916. "symfony/polyfill-mbstring": "^1.0",
  3917. "symfony/polyfill-php80": "^1.16",
  3918. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3919. },
  3920. "provide": {
  3921. "psr/clock-implementation": "1.0"
  3922. },
  3923. "require-dev": {
  3924. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3925. "doctrine/orm": "^2.7 || ^3.0",
  3926. "friendsofphp/php-cs-fixer": "^3.0",
  3927. "kylekatarnls/multi-tester": "^2.0",
  3928. "ondrejmirtes/better-reflection": "*",
  3929. "phpmd/phpmd": "^2.9",
  3930. "phpstan/extension-installer": "^1.0",
  3931. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3932. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3933. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3934. "squizlabs/php_codesniffer": "^3.4"
  3935. },
  3936. "bin": [
  3937. "bin/carbon"
  3938. ],
  3939. "type": "library",
  3940. "extra": {
  3941. "branch-alias": {
  3942. "dev-3.x": "3.x-dev",
  3943. "dev-master": "2.x-dev"
  3944. },
  3945. "laravel": {
  3946. "providers": [
  3947. "Carbon\\Laravel\\ServiceProvider"
  3948. ]
  3949. },
  3950. "phpstan": {
  3951. "includes": [
  3952. "extension.neon"
  3953. ]
  3954. }
  3955. },
  3956. "autoload": {
  3957. "psr-4": {
  3958. "Carbon\\": "src/Carbon/"
  3959. }
  3960. },
  3961. "notification-url": "https://packagist.org/downloads/",
  3962. "license": [
  3963. "MIT"
  3964. ],
  3965. "authors": [
  3966. {
  3967. "name": "Brian Nesbitt",
  3968. "email": "brian@nesbot.com",
  3969. "homepage": "https://markido.com"
  3970. },
  3971. {
  3972. "name": "kylekatarnls",
  3973. "homepage": "https://github.com/kylekatarnls"
  3974. }
  3975. ],
  3976. "description": "An API extension for DateTime that supports 281 different languages.",
  3977. "homepage": "https://carbon.nesbot.com",
  3978. "keywords": [
  3979. "date",
  3980. "datetime",
  3981. "time"
  3982. ],
  3983. "support": {
  3984. "docs": "https://carbon.nesbot.com/docs",
  3985. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3986. "source": "https://github.com/briannesbitt/Carbon"
  3987. },
  3988. "funding": [
  3989. {
  3990. "url": "https://github.com/sponsors/kylekatarnls",
  3991. "type": "github"
  3992. },
  3993. {
  3994. "url": "https://opencollective.com/Carbon#sponsor",
  3995. "type": "opencollective"
  3996. },
  3997. {
  3998. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3999. "type": "tidelift"
  4000. }
  4001. ],
  4002. "time": "2023-12-08T23:47:49+00:00"
  4003. },
  4004. {
  4005. "name": "nette/schema",
  4006. "version": "v1.2.5",
  4007. "source": {
  4008. "type": "git",
  4009. "url": "https://github.com/nette/schema.git",
  4010. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  4011. },
  4012. "dist": {
  4013. "type": "zip",
  4014. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  4015. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  4016. "shasum": ""
  4017. },
  4018. "require": {
  4019. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  4020. "php": "7.1 - 8.3"
  4021. },
  4022. "require-dev": {
  4023. "nette/tester": "^2.3 || ^2.4",
  4024. "phpstan/phpstan-nette": "^1.0",
  4025. "tracy/tracy": "^2.7"
  4026. },
  4027. "type": "library",
  4028. "extra": {
  4029. "branch-alias": {
  4030. "dev-master": "1.2-dev"
  4031. }
  4032. },
  4033. "autoload": {
  4034. "classmap": [
  4035. "src/"
  4036. ]
  4037. },
  4038. "notification-url": "https://packagist.org/downloads/",
  4039. "license": [
  4040. "BSD-3-Clause",
  4041. "GPL-2.0-only",
  4042. "GPL-3.0-only"
  4043. ],
  4044. "authors": [
  4045. {
  4046. "name": "David Grudl",
  4047. "homepage": "https://davidgrudl.com"
  4048. },
  4049. {
  4050. "name": "Nette Community",
  4051. "homepage": "https://nette.org/contributors"
  4052. }
  4053. ],
  4054. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4055. "homepage": "https://nette.org",
  4056. "keywords": [
  4057. "config",
  4058. "nette"
  4059. ],
  4060. "support": {
  4061. "issues": "https://github.com/nette/schema/issues",
  4062. "source": "https://github.com/nette/schema/tree/v1.2.5"
  4063. },
  4064. "time": "2023-10-05T20:37:59+00:00"
  4065. },
  4066. {
  4067. "name": "nette/utils",
  4068. "version": "v4.0.3",
  4069. "source": {
  4070. "type": "git",
  4071. "url": "https://github.com/nette/utils.git",
  4072. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015"
  4073. },
  4074. "dist": {
  4075. "type": "zip",
  4076. "url": "https://api.github.com/repos/nette/utils/zipball/a9d127dd6a203ce6d255b2e2db49759f7506e015",
  4077. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015",
  4078. "shasum": ""
  4079. },
  4080. "require": {
  4081. "php": ">=8.0 <8.4"
  4082. },
  4083. "conflict": {
  4084. "nette/finder": "<3",
  4085. "nette/schema": "<1.2.2"
  4086. },
  4087. "require-dev": {
  4088. "jetbrains/phpstorm-attributes": "dev-master",
  4089. "nette/tester": "^2.5",
  4090. "phpstan/phpstan": "^1.0",
  4091. "tracy/tracy": "^2.9"
  4092. },
  4093. "suggest": {
  4094. "ext-gd": "to use Image",
  4095. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4096. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4097. "ext-json": "to use Nette\\Utils\\Json",
  4098. "ext-mbstring": "to use Strings::lower() etc...",
  4099. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  4100. },
  4101. "type": "library",
  4102. "extra": {
  4103. "branch-alias": {
  4104. "dev-master": "4.0-dev"
  4105. }
  4106. },
  4107. "autoload": {
  4108. "classmap": [
  4109. "src/"
  4110. ]
  4111. },
  4112. "notification-url": "https://packagist.org/downloads/",
  4113. "license": [
  4114. "BSD-3-Clause",
  4115. "GPL-2.0-only",
  4116. "GPL-3.0-only"
  4117. ],
  4118. "authors": [
  4119. {
  4120. "name": "David Grudl",
  4121. "homepage": "https://davidgrudl.com"
  4122. },
  4123. {
  4124. "name": "Nette Community",
  4125. "homepage": "https://nette.org/contributors"
  4126. }
  4127. ],
  4128. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4129. "homepage": "https://nette.org",
  4130. "keywords": [
  4131. "array",
  4132. "core",
  4133. "datetime",
  4134. "images",
  4135. "json",
  4136. "nette",
  4137. "paginator",
  4138. "password",
  4139. "slugify",
  4140. "string",
  4141. "unicode",
  4142. "utf-8",
  4143. "utility",
  4144. "validation"
  4145. ],
  4146. "support": {
  4147. "issues": "https://github.com/nette/utils/issues",
  4148. "source": "https://github.com/nette/utils/tree/v4.0.3"
  4149. },
  4150. "time": "2023-10-29T21:02:13+00:00"
  4151. },
  4152. {
  4153. "name": "nikic/php-parser",
  4154. "version": "v4.18.0",
  4155. "source": {
  4156. "type": "git",
  4157. "url": "https://github.com/nikic/PHP-Parser.git",
  4158. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999"
  4159. },
  4160. "dist": {
  4161. "type": "zip",
  4162. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  4163. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  4164. "shasum": ""
  4165. },
  4166. "require": {
  4167. "ext-tokenizer": "*",
  4168. "php": ">=7.0"
  4169. },
  4170. "require-dev": {
  4171. "ircmaxell/php-yacc": "^0.0.7",
  4172. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4173. },
  4174. "bin": [
  4175. "bin/php-parse"
  4176. ],
  4177. "type": "library",
  4178. "extra": {
  4179. "branch-alias": {
  4180. "dev-master": "4.9-dev"
  4181. }
  4182. },
  4183. "autoload": {
  4184. "psr-4": {
  4185. "PhpParser\\": "lib/PhpParser"
  4186. }
  4187. },
  4188. "notification-url": "https://packagist.org/downloads/",
  4189. "license": [
  4190. "BSD-3-Clause"
  4191. ],
  4192. "authors": [
  4193. {
  4194. "name": "Nikita Popov"
  4195. }
  4196. ],
  4197. "description": "A PHP parser written in PHP",
  4198. "keywords": [
  4199. "parser",
  4200. "php"
  4201. ],
  4202. "support": {
  4203. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4204. "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0"
  4205. },
  4206. "time": "2023-12-10T21:03:43+00:00"
  4207. },
  4208. {
  4209. "name": "opis/closure",
  4210. "version": "3.6.3",
  4211. "source": {
  4212. "type": "git",
  4213. "url": "https://github.com/opis/closure.git",
  4214. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  4215. },
  4216. "dist": {
  4217. "type": "zip",
  4218. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  4219. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  4220. "shasum": ""
  4221. },
  4222. "require": {
  4223. "php": "^5.4 || ^7.0 || ^8.0"
  4224. },
  4225. "require-dev": {
  4226. "jeremeamia/superclosure": "^2.0",
  4227. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4228. },
  4229. "type": "library",
  4230. "extra": {
  4231. "branch-alias": {
  4232. "dev-master": "3.6.x-dev"
  4233. }
  4234. },
  4235. "autoload": {
  4236. "files": [
  4237. "functions.php"
  4238. ],
  4239. "psr-4": {
  4240. "Opis\\Closure\\": "src/"
  4241. }
  4242. },
  4243. "notification-url": "https://packagist.org/downloads/",
  4244. "license": [
  4245. "MIT"
  4246. ],
  4247. "authors": [
  4248. {
  4249. "name": "Marius Sarca",
  4250. "email": "marius.sarca@gmail.com"
  4251. },
  4252. {
  4253. "name": "Sorin Sarca",
  4254. "email": "sarca_sorin@hotmail.com"
  4255. }
  4256. ],
  4257. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4258. "homepage": "https://opis.io/closure",
  4259. "keywords": [
  4260. "anonymous functions",
  4261. "closure",
  4262. "function",
  4263. "serializable",
  4264. "serialization",
  4265. "serialize"
  4266. ],
  4267. "support": {
  4268. "issues": "https://github.com/opis/closure/issues",
  4269. "source": "https://github.com/opis/closure/tree/3.6.3"
  4270. },
  4271. "time": "2022-01-27T09:35:39+00:00"
  4272. },
  4273. {
  4274. "name": "phpoffice/phpspreadsheet",
  4275. "version": "1.29.0",
  4276. "source": {
  4277. "type": "git",
  4278. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  4279. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0"
  4280. },
  4281. "dist": {
  4282. "type": "zip",
  4283. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  4284. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  4285. "shasum": ""
  4286. },
  4287. "require": {
  4288. "ext-ctype": "*",
  4289. "ext-dom": "*",
  4290. "ext-fileinfo": "*",
  4291. "ext-gd": "*",
  4292. "ext-iconv": "*",
  4293. "ext-libxml": "*",
  4294. "ext-mbstring": "*",
  4295. "ext-simplexml": "*",
  4296. "ext-xml": "*",
  4297. "ext-xmlreader": "*",
  4298. "ext-xmlwriter": "*",
  4299. "ext-zip": "*",
  4300. "ext-zlib": "*",
  4301. "ezyang/htmlpurifier": "^4.15",
  4302. "maennchen/zipstream-php": "^2.1 || ^3.0",
  4303. "markbaker/complex": "^3.0",
  4304. "markbaker/matrix": "^3.0",
  4305. "php": "^7.4 || ^8.0",
  4306. "psr/http-client": "^1.0",
  4307. "psr/http-factory": "^1.0",
  4308. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  4309. },
  4310. "require-dev": {
  4311. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  4312. "dompdf/dompdf": "^1.0 || ^2.0",
  4313. "friendsofphp/php-cs-fixer": "^3.2",
  4314. "mitoteam/jpgraph": "^10.3",
  4315. "mpdf/mpdf": "^8.1.1",
  4316. "phpcompatibility/php-compatibility": "^9.3",
  4317. "phpstan/phpstan": "^1.1",
  4318. "phpstan/phpstan-phpunit": "^1.0",
  4319. "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0",
  4320. "squizlabs/php_codesniffer": "^3.7",
  4321. "tecnickcom/tcpdf": "^6.5"
  4322. },
  4323. "suggest": {
  4324. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  4325. "ext-intl": "PHP Internationalization Functions",
  4326. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  4327. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  4328. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  4329. },
  4330. "type": "library",
  4331. "autoload": {
  4332. "psr-4": {
  4333. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  4334. }
  4335. },
  4336. "notification-url": "https://packagist.org/downloads/",
  4337. "license": [
  4338. "MIT"
  4339. ],
  4340. "authors": [
  4341. {
  4342. "name": "Maarten Balliauw",
  4343. "homepage": "https://blog.maartenballiauw.be"
  4344. },
  4345. {
  4346. "name": "Mark Baker",
  4347. "homepage": "https://markbakeruk.net"
  4348. },
  4349. {
  4350. "name": "Franck Lefevre",
  4351. "homepage": "https://rootslabs.net"
  4352. },
  4353. {
  4354. "name": "Erik Tilt"
  4355. },
  4356. {
  4357. "name": "Adrien Crivelli"
  4358. }
  4359. ],
  4360. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  4361. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  4362. "keywords": [
  4363. "OpenXML",
  4364. "excel",
  4365. "gnumeric",
  4366. "ods",
  4367. "php",
  4368. "spreadsheet",
  4369. "xls",
  4370. "xlsx"
  4371. ],
  4372. "support": {
  4373. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  4374. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0"
  4375. },
  4376. "time": "2023-06-14T22:48:31+00:00"
  4377. },
  4378. {
  4379. "name": "phpoption/phpoption",
  4380. "version": "1.9.2",
  4381. "source": {
  4382. "type": "git",
  4383. "url": "https://github.com/schmittjoh/php-option.git",
  4384. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  4385. },
  4386. "dist": {
  4387. "type": "zip",
  4388. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  4389. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  4390. "shasum": ""
  4391. },
  4392. "require": {
  4393. "php": "^7.2.5 || ^8.0"
  4394. },
  4395. "require-dev": {
  4396. "bamarni/composer-bin-plugin": "^1.8.2",
  4397. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  4398. },
  4399. "type": "library",
  4400. "extra": {
  4401. "bamarni-bin": {
  4402. "bin-links": true,
  4403. "forward-command": true
  4404. },
  4405. "branch-alias": {
  4406. "dev-master": "1.9-dev"
  4407. }
  4408. },
  4409. "autoload": {
  4410. "psr-4": {
  4411. "PhpOption\\": "src/PhpOption/"
  4412. }
  4413. },
  4414. "notification-url": "https://packagist.org/downloads/",
  4415. "license": [
  4416. "Apache-2.0"
  4417. ],
  4418. "authors": [
  4419. {
  4420. "name": "Johannes M. Schmitt",
  4421. "email": "schmittjoh@gmail.com",
  4422. "homepage": "https://github.com/schmittjoh"
  4423. },
  4424. {
  4425. "name": "Graham Campbell",
  4426. "email": "hello@gjcampbell.co.uk",
  4427. "homepage": "https://github.com/GrahamCampbell"
  4428. }
  4429. ],
  4430. "description": "Option Type for PHP",
  4431. "keywords": [
  4432. "language",
  4433. "option",
  4434. "php",
  4435. "type"
  4436. ],
  4437. "support": {
  4438. "issues": "https://github.com/schmittjoh/php-option/issues",
  4439. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  4440. },
  4441. "funding": [
  4442. {
  4443. "url": "https://github.com/GrahamCampbell",
  4444. "type": "github"
  4445. },
  4446. {
  4447. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4448. "type": "tidelift"
  4449. }
  4450. ],
  4451. "time": "2023-11-12T21:59:55+00:00"
  4452. },
  4453. {
  4454. "name": "psr/cache",
  4455. "version": "2.0.0",
  4456. "source": {
  4457. "type": "git",
  4458. "url": "https://github.com/php-fig/cache.git",
  4459. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b"
  4460. },
  4461. "dist": {
  4462. "type": "zip",
  4463. "url": "https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  4464. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  4465. "shasum": ""
  4466. },
  4467. "require": {
  4468. "php": ">=8.0.0"
  4469. },
  4470. "type": "library",
  4471. "extra": {
  4472. "branch-alias": {
  4473. "dev-master": "1.0.x-dev"
  4474. }
  4475. },
  4476. "autoload": {
  4477. "psr-4": {
  4478. "Psr\\Cache\\": "src/"
  4479. }
  4480. },
  4481. "notification-url": "https://packagist.org/downloads/",
  4482. "license": [
  4483. "MIT"
  4484. ],
  4485. "authors": [
  4486. {
  4487. "name": "PHP-FIG",
  4488. "homepage": "https://www.php-fig.org/"
  4489. }
  4490. ],
  4491. "description": "Common interface for caching libraries",
  4492. "keywords": [
  4493. "cache",
  4494. "psr",
  4495. "psr-6"
  4496. ],
  4497. "support": {
  4498. "source": "https://github.com/php-fig/cache/tree/2.0.0"
  4499. },
  4500. "time": "2021-02-03T23:23:37+00:00"
  4501. },
  4502. {
  4503. "name": "psr/clock",
  4504. "version": "1.0.0",
  4505. "source": {
  4506. "type": "git",
  4507. "url": "https://github.com/php-fig/clock.git",
  4508. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4509. },
  4510. "dist": {
  4511. "type": "zip",
  4512. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4513. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4514. "shasum": ""
  4515. },
  4516. "require": {
  4517. "php": "^7.0 || ^8.0"
  4518. },
  4519. "type": "library",
  4520. "autoload": {
  4521. "psr-4": {
  4522. "Psr\\Clock\\": "src/"
  4523. }
  4524. },
  4525. "notification-url": "https://packagist.org/downloads/",
  4526. "license": [
  4527. "MIT"
  4528. ],
  4529. "authors": [
  4530. {
  4531. "name": "PHP-FIG",
  4532. "homepage": "https://www.php-fig.org/"
  4533. }
  4534. ],
  4535. "description": "Common interface for reading the clock.",
  4536. "homepage": "https://github.com/php-fig/clock",
  4537. "keywords": [
  4538. "clock",
  4539. "now",
  4540. "psr",
  4541. "psr-20",
  4542. "time"
  4543. ],
  4544. "support": {
  4545. "issues": "https://github.com/php-fig/clock/issues",
  4546. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4547. },
  4548. "time": "2022-11-25T14:36:26+00:00"
  4549. },
  4550. {
  4551. "name": "psr/container",
  4552. "version": "1.1.2",
  4553. "source": {
  4554. "type": "git",
  4555. "url": "https://github.com/php-fig/container.git",
  4556. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4557. },
  4558. "dist": {
  4559. "type": "zip",
  4560. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4561. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4562. "shasum": ""
  4563. },
  4564. "require": {
  4565. "php": ">=7.4.0"
  4566. },
  4567. "type": "library",
  4568. "autoload": {
  4569. "psr-4": {
  4570. "Psr\\Container\\": "src/"
  4571. }
  4572. },
  4573. "notification-url": "https://packagist.org/downloads/",
  4574. "license": [
  4575. "MIT"
  4576. ],
  4577. "authors": [
  4578. {
  4579. "name": "PHP-FIG",
  4580. "homepage": "https://www.php-fig.org/"
  4581. }
  4582. ],
  4583. "description": "Common Container Interface (PHP FIG PSR-11)",
  4584. "homepage": "https://github.com/php-fig/container",
  4585. "keywords": [
  4586. "PSR-11",
  4587. "container",
  4588. "container-interface",
  4589. "container-interop",
  4590. "psr"
  4591. ],
  4592. "support": {
  4593. "issues": "https://github.com/php-fig/container/issues",
  4594. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4595. },
  4596. "time": "2021-11-05T16:50:12+00:00"
  4597. },
  4598. {
  4599. "name": "psr/event-dispatcher",
  4600. "version": "1.0.0",
  4601. "source": {
  4602. "type": "git",
  4603. "url": "https://github.com/php-fig/event-dispatcher.git",
  4604. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4605. },
  4606. "dist": {
  4607. "type": "zip",
  4608. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4609. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4610. "shasum": ""
  4611. },
  4612. "require": {
  4613. "php": ">=7.2.0"
  4614. },
  4615. "type": "library",
  4616. "extra": {
  4617. "branch-alias": {
  4618. "dev-master": "1.0.x-dev"
  4619. }
  4620. },
  4621. "autoload": {
  4622. "psr-4": {
  4623. "Psr\\EventDispatcher\\": "src/"
  4624. }
  4625. },
  4626. "notification-url": "https://packagist.org/downloads/",
  4627. "license": [
  4628. "MIT"
  4629. ],
  4630. "authors": [
  4631. {
  4632. "name": "PHP-FIG",
  4633. "homepage": "http://www.php-fig.org/"
  4634. }
  4635. ],
  4636. "description": "Standard interfaces for event handling.",
  4637. "keywords": [
  4638. "events",
  4639. "psr",
  4640. "psr-14"
  4641. ],
  4642. "support": {
  4643. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4644. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4645. },
  4646. "time": "2019-01-08T18:20:26+00:00"
  4647. },
  4648. {
  4649. "name": "psr/http-client",
  4650. "version": "1.0.3",
  4651. "source": {
  4652. "type": "git",
  4653. "url": "https://github.com/php-fig/http-client.git",
  4654. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4655. },
  4656. "dist": {
  4657. "type": "zip",
  4658. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4659. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4660. "shasum": ""
  4661. },
  4662. "require": {
  4663. "php": "^7.0 || ^8.0",
  4664. "psr/http-message": "^1.0 || ^2.0"
  4665. },
  4666. "type": "library",
  4667. "extra": {
  4668. "branch-alias": {
  4669. "dev-master": "1.0.x-dev"
  4670. }
  4671. },
  4672. "autoload": {
  4673. "psr-4": {
  4674. "Psr\\Http\\Client\\": "src/"
  4675. }
  4676. },
  4677. "notification-url": "https://packagist.org/downloads/",
  4678. "license": [
  4679. "MIT"
  4680. ],
  4681. "authors": [
  4682. {
  4683. "name": "PHP-FIG",
  4684. "homepage": "https://www.php-fig.org/"
  4685. }
  4686. ],
  4687. "description": "Common interface for HTTP clients",
  4688. "homepage": "https://github.com/php-fig/http-client",
  4689. "keywords": [
  4690. "http",
  4691. "http-client",
  4692. "psr",
  4693. "psr-18"
  4694. ],
  4695. "support": {
  4696. "source": "https://github.com/php-fig/http-client"
  4697. },
  4698. "time": "2023-09-23T14:17:50+00:00"
  4699. },
  4700. {
  4701. "name": "psr/http-factory",
  4702. "version": "1.0.2",
  4703. "source": {
  4704. "type": "git",
  4705. "url": "https://github.com/php-fig/http-factory.git",
  4706. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4707. },
  4708. "dist": {
  4709. "type": "zip",
  4710. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4711. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4712. "shasum": ""
  4713. },
  4714. "require": {
  4715. "php": ">=7.0.0",
  4716. "psr/http-message": "^1.0 || ^2.0"
  4717. },
  4718. "type": "library",
  4719. "extra": {
  4720. "branch-alias": {
  4721. "dev-master": "1.0.x-dev"
  4722. }
  4723. },
  4724. "autoload": {
  4725. "psr-4": {
  4726. "Psr\\Http\\Message\\": "src/"
  4727. }
  4728. },
  4729. "notification-url": "https://packagist.org/downloads/",
  4730. "license": [
  4731. "MIT"
  4732. ],
  4733. "authors": [
  4734. {
  4735. "name": "PHP-FIG",
  4736. "homepage": "https://www.php-fig.org/"
  4737. }
  4738. ],
  4739. "description": "Common interfaces for PSR-7 HTTP message factories",
  4740. "keywords": [
  4741. "factory",
  4742. "http",
  4743. "message",
  4744. "psr",
  4745. "psr-17",
  4746. "psr-7",
  4747. "request",
  4748. "response"
  4749. ],
  4750. "support": {
  4751. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4752. },
  4753. "time": "2023-04-10T20:10:41+00:00"
  4754. },
  4755. {
  4756. "name": "psr/http-message",
  4757. "version": "1.1",
  4758. "source": {
  4759. "type": "git",
  4760. "url": "https://github.com/php-fig/http-message.git",
  4761. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4762. },
  4763. "dist": {
  4764. "type": "zip",
  4765. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4766. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4767. "shasum": ""
  4768. },
  4769. "require": {
  4770. "php": "^7.2 || ^8.0"
  4771. },
  4772. "type": "library",
  4773. "extra": {
  4774. "branch-alias": {
  4775. "dev-master": "1.1.x-dev"
  4776. }
  4777. },
  4778. "autoload": {
  4779. "psr-4": {
  4780. "Psr\\Http\\Message\\": "src/"
  4781. }
  4782. },
  4783. "notification-url": "https://packagist.org/downloads/",
  4784. "license": [
  4785. "MIT"
  4786. ],
  4787. "authors": [
  4788. {
  4789. "name": "PHP-FIG",
  4790. "homepage": "http://www.php-fig.org/"
  4791. }
  4792. ],
  4793. "description": "Common interface for HTTP messages",
  4794. "homepage": "https://github.com/php-fig/http-message",
  4795. "keywords": [
  4796. "http",
  4797. "http-message",
  4798. "psr",
  4799. "psr-7",
  4800. "request",
  4801. "response"
  4802. ],
  4803. "support": {
  4804. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4805. },
  4806. "time": "2023-04-04T09:50:52+00:00"
  4807. },
  4808. {
  4809. "name": "psr/log",
  4810. "version": "2.0.0",
  4811. "source": {
  4812. "type": "git",
  4813. "url": "https://github.com/php-fig/log.git",
  4814. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  4815. },
  4816. "dist": {
  4817. "type": "zip",
  4818. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  4819. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  4820. "shasum": ""
  4821. },
  4822. "require": {
  4823. "php": ">=8.0.0"
  4824. },
  4825. "type": "library",
  4826. "extra": {
  4827. "branch-alias": {
  4828. "dev-master": "2.0.x-dev"
  4829. }
  4830. },
  4831. "autoload": {
  4832. "psr-4": {
  4833. "Psr\\Log\\": "src"
  4834. }
  4835. },
  4836. "notification-url": "https://packagist.org/downloads/",
  4837. "license": [
  4838. "MIT"
  4839. ],
  4840. "authors": [
  4841. {
  4842. "name": "PHP-FIG",
  4843. "homepage": "https://www.php-fig.org/"
  4844. }
  4845. ],
  4846. "description": "Common interface for logging libraries",
  4847. "homepage": "https://github.com/php-fig/log",
  4848. "keywords": [
  4849. "log",
  4850. "psr",
  4851. "psr-3"
  4852. ],
  4853. "support": {
  4854. "source": "https://github.com/php-fig/log/tree/2.0.0"
  4855. },
  4856. "time": "2021-07-14T16:41:46+00:00"
  4857. },
  4858. {
  4859. "name": "psr/simple-cache",
  4860. "version": "1.0.1",
  4861. "source": {
  4862. "type": "git",
  4863. "url": "https://github.com/php-fig/simple-cache.git",
  4864. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4865. },
  4866. "dist": {
  4867. "type": "zip",
  4868. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4869. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4870. "shasum": ""
  4871. },
  4872. "require": {
  4873. "php": ">=5.3.0"
  4874. },
  4875. "type": "library",
  4876. "extra": {
  4877. "branch-alias": {
  4878. "dev-master": "1.0.x-dev"
  4879. }
  4880. },
  4881. "autoload": {
  4882. "psr-4": {
  4883. "Psr\\SimpleCache\\": "src/"
  4884. }
  4885. },
  4886. "notification-url": "https://packagist.org/downloads/",
  4887. "license": [
  4888. "MIT"
  4889. ],
  4890. "authors": [
  4891. {
  4892. "name": "PHP-FIG",
  4893. "homepage": "http://www.php-fig.org/"
  4894. }
  4895. ],
  4896. "description": "Common interfaces for simple caching",
  4897. "keywords": [
  4898. "cache",
  4899. "caching",
  4900. "psr",
  4901. "psr-16",
  4902. "simple-cache"
  4903. ],
  4904. "support": {
  4905. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4906. },
  4907. "time": "2017-10-23T01:57:42+00:00"
  4908. },
  4909. {
  4910. "name": "psy/psysh",
  4911. "version": "v0.11.22",
  4912. "source": {
  4913. "type": "git",
  4914. "url": "https://github.com/bobthecow/psysh.git",
  4915. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  4916. },
  4917. "dist": {
  4918. "type": "zip",
  4919. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  4920. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  4921. "shasum": ""
  4922. },
  4923. "require": {
  4924. "ext-json": "*",
  4925. "ext-tokenizer": "*",
  4926. "nikic/php-parser": "^4.0 || ^3.1",
  4927. "php": "^8.0 || ^7.0.8",
  4928. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4929. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4930. },
  4931. "conflict": {
  4932. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4933. },
  4934. "require-dev": {
  4935. "bamarni/composer-bin-plugin": "^1.2"
  4936. },
  4937. "suggest": {
  4938. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4939. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4940. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4941. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4942. },
  4943. "bin": [
  4944. "bin/psysh"
  4945. ],
  4946. "type": "library",
  4947. "extra": {
  4948. "branch-alias": {
  4949. "dev-0.11": "0.11.x-dev"
  4950. },
  4951. "bamarni-bin": {
  4952. "bin-links": false,
  4953. "forward-command": false
  4954. }
  4955. },
  4956. "autoload": {
  4957. "files": [
  4958. "src/functions.php"
  4959. ],
  4960. "psr-4": {
  4961. "Psy\\": "src/"
  4962. }
  4963. },
  4964. "notification-url": "https://packagist.org/downloads/",
  4965. "license": [
  4966. "MIT"
  4967. ],
  4968. "authors": [
  4969. {
  4970. "name": "Justin Hileman",
  4971. "email": "justin@justinhileman.info",
  4972. "homepage": "http://justinhileman.com"
  4973. }
  4974. ],
  4975. "description": "An interactive shell for modern PHP.",
  4976. "homepage": "http://psysh.org",
  4977. "keywords": [
  4978. "REPL",
  4979. "console",
  4980. "interactive",
  4981. "shell"
  4982. ],
  4983. "support": {
  4984. "issues": "https://github.com/bobthecow/psysh/issues",
  4985. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  4986. },
  4987. "time": "2023-10-14T21:56:36+00:00"
  4988. },
  4989. {
  4990. "name": "ralouphie/getallheaders",
  4991. "version": "3.0.3",
  4992. "source": {
  4993. "type": "git",
  4994. "url": "https://github.com/ralouphie/getallheaders.git",
  4995. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4996. },
  4997. "dist": {
  4998. "type": "zip",
  4999. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5000. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5001. "shasum": ""
  5002. },
  5003. "require": {
  5004. "php": ">=5.6"
  5005. },
  5006. "require-dev": {
  5007. "php-coveralls/php-coveralls": "^2.1",
  5008. "phpunit/phpunit": "^5 || ^6.5"
  5009. },
  5010. "type": "library",
  5011. "autoload": {
  5012. "files": [
  5013. "src/getallheaders.php"
  5014. ]
  5015. },
  5016. "notification-url": "https://packagist.org/downloads/",
  5017. "license": [
  5018. "MIT"
  5019. ],
  5020. "authors": [
  5021. {
  5022. "name": "Ralph Khattar",
  5023. "email": "ralph.khattar@gmail.com"
  5024. }
  5025. ],
  5026. "description": "A polyfill for getallheaders.",
  5027. "support": {
  5028. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5029. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5030. },
  5031. "time": "2019-03-08T08:55:37+00:00"
  5032. },
  5033. {
  5034. "name": "ramsey/collection",
  5035. "version": "1.3.0",
  5036. "source": {
  5037. "type": "git",
  5038. "url": "https://github.com/ramsey/collection.git",
  5039. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  5040. },
  5041. "dist": {
  5042. "type": "zip",
  5043. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  5044. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  5045. "shasum": ""
  5046. },
  5047. "require": {
  5048. "php": "^7.4 || ^8.0",
  5049. "symfony/polyfill-php81": "^1.23"
  5050. },
  5051. "require-dev": {
  5052. "captainhook/plugin-composer": "^5.3",
  5053. "ergebnis/composer-normalize": "^2.28.3",
  5054. "fakerphp/faker": "^1.21",
  5055. "hamcrest/hamcrest-php": "^2.0",
  5056. "jangregor/phpstan-prophecy": "^1.0",
  5057. "mockery/mockery": "^1.5",
  5058. "php-parallel-lint/php-console-highlighter": "^1.0",
  5059. "php-parallel-lint/php-parallel-lint": "^1.3",
  5060. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  5061. "phpspec/prophecy-phpunit": "^2.0",
  5062. "phpstan/extension-installer": "^1.2",
  5063. "phpstan/phpstan": "^1.9",
  5064. "phpstan/phpstan-mockery": "^1.1",
  5065. "phpstan/phpstan-phpunit": "^1.3",
  5066. "phpunit/phpunit": "^9.5",
  5067. "psalm/plugin-mockery": "^1.1",
  5068. "psalm/plugin-phpunit": "^0.18.4",
  5069. "ramsey/coding-standard": "^2.0.3",
  5070. "ramsey/conventional-commits": "^1.3",
  5071. "vimeo/psalm": "^5.4"
  5072. },
  5073. "type": "library",
  5074. "extra": {
  5075. "captainhook": {
  5076. "force-install": true
  5077. },
  5078. "ramsey/conventional-commits": {
  5079. "configFile": "conventional-commits.json"
  5080. }
  5081. },
  5082. "autoload": {
  5083. "psr-4": {
  5084. "Ramsey\\Collection\\": "src/"
  5085. }
  5086. },
  5087. "notification-url": "https://packagist.org/downloads/",
  5088. "license": [
  5089. "MIT"
  5090. ],
  5091. "authors": [
  5092. {
  5093. "name": "Ben Ramsey",
  5094. "email": "ben@benramsey.com",
  5095. "homepage": "https://benramsey.com"
  5096. }
  5097. ],
  5098. "description": "A PHP library for representing and manipulating collections.",
  5099. "keywords": [
  5100. "array",
  5101. "collection",
  5102. "hash",
  5103. "map",
  5104. "queue",
  5105. "set"
  5106. ],
  5107. "support": {
  5108. "issues": "https://github.com/ramsey/collection/issues",
  5109. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  5110. },
  5111. "funding": [
  5112. {
  5113. "url": "https://github.com/ramsey",
  5114. "type": "github"
  5115. },
  5116. {
  5117. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  5118. "type": "tidelift"
  5119. }
  5120. ],
  5121. "time": "2022-12-27T19:12:24+00:00"
  5122. },
  5123. {
  5124. "name": "ramsey/uuid",
  5125. "version": "4.7.5",
  5126. "source": {
  5127. "type": "git",
  5128. "url": "https://github.com/ramsey/uuid.git",
  5129. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e"
  5130. },
  5131. "dist": {
  5132. "type": "zip",
  5133. "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  5134. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  5135. "shasum": ""
  5136. },
  5137. "require": {
  5138. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  5139. "ext-json": "*",
  5140. "php": "^8.0",
  5141. "ramsey/collection": "^1.2 || ^2.0"
  5142. },
  5143. "replace": {
  5144. "rhumsaa/uuid": "self.version"
  5145. },
  5146. "require-dev": {
  5147. "captainhook/captainhook": "^5.10",
  5148. "captainhook/plugin-composer": "^5.3",
  5149. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5150. "doctrine/annotations": "^1.8",
  5151. "ergebnis/composer-normalize": "^2.15",
  5152. "mockery/mockery": "^1.3",
  5153. "paragonie/random-lib": "^2",
  5154. "php-mock/php-mock": "^2.2",
  5155. "php-mock/php-mock-mockery": "^1.3",
  5156. "php-parallel-lint/php-parallel-lint": "^1.1",
  5157. "phpbench/phpbench": "^1.0",
  5158. "phpstan/extension-installer": "^1.1",
  5159. "phpstan/phpstan": "^1.8",
  5160. "phpstan/phpstan-mockery": "^1.1",
  5161. "phpstan/phpstan-phpunit": "^1.1",
  5162. "phpunit/phpunit": "^8.5 || ^9",
  5163. "ramsey/composer-repl": "^1.4",
  5164. "slevomat/coding-standard": "^8.4",
  5165. "squizlabs/php_codesniffer": "^3.5",
  5166. "vimeo/psalm": "^4.9"
  5167. },
  5168. "suggest": {
  5169. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5170. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5171. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5172. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5173. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5174. },
  5175. "type": "library",
  5176. "extra": {
  5177. "captainhook": {
  5178. "force-install": true
  5179. }
  5180. },
  5181. "autoload": {
  5182. "files": [
  5183. "src/functions.php"
  5184. ],
  5185. "psr-4": {
  5186. "Ramsey\\Uuid\\": "src/"
  5187. }
  5188. },
  5189. "notification-url": "https://packagist.org/downloads/",
  5190. "license": [
  5191. "MIT"
  5192. ],
  5193. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5194. "keywords": [
  5195. "guid",
  5196. "identifier",
  5197. "uuid"
  5198. ],
  5199. "support": {
  5200. "issues": "https://github.com/ramsey/uuid/issues",
  5201. "source": "https://github.com/ramsey/uuid/tree/4.7.5"
  5202. },
  5203. "funding": [
  5204. {
  5205. "url": "https://github.com/ramsey",
  5206. "type": "github"
  5207. },
  5208. {
  5209. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  5210. "type": "tidelift"
  5211. }
  5212. ],
  5213. "time": "2023-11-08T05:53:05+00:00"
  5214. },
  5215. {
  5216. "name": "ratchet/rfc6455",
  5217. "version": "v0.3.1",
  5218. "source": {
  5219. "type": "git",
  5220. "url": "https://github.com/ratchetphp/RFC6455.git",
  5221. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb"
  5222. },
  5223. "dist": {
  5224. "type": "zip",
  5225. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb",
  5226. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb",
  5227. "shasum": ""
  5228. },
  5229. "require": {
  5230. "guzzlehttp/psr7": "^2 || ^1.7",
  5231. "php": ">=5.4.2"
  5232. },
  5233. "require-dev": {
  5234. "phpunit/phpunit": "^5.7",
  5235. "react/socket": "^1.3"
  5236. },
  5237. "type": "library",
  5238. "autoload": {
  5239. "psr-4": {
  5240. "Ratchet\\RFC6455\\": "src"
  5241. }
  5242. },
  5243. "notification-url": "https://packagist.org/downloads/",
  5244. "license": [
  5245. "MIT"
  5246. ],
  5247. "authors": [
  5248. {
  5249. "name": "Chris Boden",
  5250. "email": "cboden@gmail.com",
  5251. "role": "Developer"
  5252. },
  5253. {
  5254. "name": "Matt Bonneau",
  5255. "role": "Developer"
  5256. }
  5257. ],
  5258. "description": "RFC6455 WebSocket protocol handler",
  5259. "homepage": "http://socketo.me",
  5260. "keywords": [
  5261. "WebSockets",
  5262. "rfc6455",
  5263. "websocket"
  5264. ],
  5265. "support": {
  5266. "chat": "https://gitter.im/reactphp/reactphp",
  5267. "issues": "https://github.com/ratchetphp/RFC6455/issues",
  5268. "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1"
  5269. },
  5270. "time": "2021-12-09T23:20:49+00:00"
  5271. },
  5272. {
  5273. "name": "react/cache",
  5274. "version": "v1.2.0",
  5275. "source": {
  5276. "type": "git",
  5277. "url": "https://github.com/reactphp/cache.git",
  5278. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  5279. },
  5280. "dist": {
  5281. "type": "zip",
  5282. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  5283. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  5284. "shasum": ""
  5285. },
  5286. "require": {
  5287. "php": ">=5.3.0",
  5288. "react/promise": "^3.0 || ^2.0 || ^1.1"
  5289. },
  5290. "require-dev": {
  5291. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  5292. },
  5293. "type": "library",
  5294. "autoload": {
  5295. "psr-4": {
  5296. "React\\Cache\\": "src/"
  5297. }
  5298. },
  5299. "notification-url": "https://packagist.org/downloads/",
  5300. "license": [
  5301. "MIT"
  5302. ],
  5303. "authors": [
  5304. {
  5305. "name": "Christian Lück",
  5306. "email": "christian@clue.engineering",
  5307. "homepage": "https://clue.engineering/"
  5308. },
  5309. {
  5310. "name": "Cees-Jan Kiewiet",
  5311. "email": "reactphp@ceesjankiewiet.nl",
  5312. "homepage": "https://wyrihaximus.net/"
  5313. },
  5314. {
  5315. "name": "Jan Sorgalla",
  5316. "email": "jsorgalla@gmail.com",
  5317. "homepage": "https://sorgalla.com/"
  5318. },
  5319. {
  5320. "name": "Chris Boden",
  5321. "email": "cboden@gmail.com",
  5322. "homepage": "https://cboden.dev/"
  5323. }
  5324. ],
  5325. "description": "Async, Promise-based cache interface for ReactPHP",
  5326. "keywords": [
  5327. "cache",
  5328. "caching",
  5329. "promise",
  5330. "reactphp"
  5331. ],
  5332. "support": {
  5333. "issues": "https://github.com/reactphp/cache/issues",
  5334. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  5335. },
  5336. "funding": [
  5337. {
  5338. "url": "https://opencollective.com/reactphp",
  5339. "type": "open_collective"
  5340. }
  5341. ],
  5342. "time": "2022-11-30T15:59:55+00:00"
  5343. },
  5344. {
  5345. "name": "react/dns",
  5346. "version": "v1.12.0",
  5347. "source": {
  5348. "type": "git",
  5349. "url": "https://github.com/reactphp/dns.git",
  5350. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  5351. },
  5352. "dist": {
  5353. "type": "zip",
  5354. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  5355. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  5356. "shasum": ""
  5357. },
  5358. "require": {
  5359. "php": ">=5.3.0",
  5360. "react/cache": "^1.0 || ^0.6 || ^0.5",
  5361. "react/event-loop": "^1.2",
  5362. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  5363. },
  5364. "require-dev": {
  5365. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  5366. "react/async": "^4 || ^3 || ^2",
  5367. "react/promise-timer": "^1.9"
  5368. },
  5369. "type": "library",
  5370. "autoload": {
  5371. "psr-4": {
  5372. "React\\Dns\\": "src/"
  5373. }
  5374. },
  5375. "notification-url": "https://packagist.org/downloads/",
  5376. "license": [
  5377. "MIT"
  5378. ],
  5379. "authors": [
  5380. {
  5381. "name": "Christian Lück",
  5382. "email": "christian@clue.engineering",
  5383. "homepage": "https://clue.engineering/"
  5384. },
  5385. {
  5386. "name": "Cees-Jan Kiewiet",
  5387. "email": "reactphp@ceesjankiewiet.nl",
  5388. "homepage": "https://wyrihaximus.net/"
  5389. },
  5390. {
  5391. "name": "Jan Sorgalla",
  5392. "email": "jsorgalla@gmail.com",
  5393. "homepage": "https://sorgalla.com/"
  5394. },
  5395. {
  5396. "name": "Chris Boden",
  5397. "email": "cboden@gmail.com",
  5398. "homepage": "https://cboden.dev/"
  5399. }
  5400. ],
  5401. "description": "Async DNS resolver for ReactPHP",
  5402. "keywords": [
  5403. "async",
  5404. "dns",
  5405. "dns-resolver",
  5406. "reactphp"
  5407. ],
  5408. "support": {
  5409. "issues": "https://github.com/reactphp/dns/issues",
  5410. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  5411. },
  5412. "funding": [
  5413. {
  5414. "url": "https://opencollective.com/reactphp",
  5415. "type": "open_collective"
  5416. }
  5417. ],
  5418. "time": "2023-11-29T12:41:06+00:00"
  5419. },
  5420. {
  5421. "name": "react/event-loop",
  5422. "version": "v1.5.0",
  5423. "source": {
  5424. "type": "git",
  5425. "url": "https://github.com/reactphp/event-loop.git",
  5426. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  5427. },
  5428. "dist": {
  5429. "type": "zip",
  5430. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  5431. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  5432. "shasum": ""
  5433. },
  5434. "require": {
  5435. "php": ">=5.3.0"
  5436. },
  5437. "require-dev": {
  5438. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  5439. },
  5440. "suggest": {
  5441. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  5442. },
  5443. "type": "library",
  5444. "autoload": {
  5445. "psr-4": {
  5446. "React\\EventLoop\\": "src/"
  5447. }
  5448. },
  5449. "notification-url": "https://packagist.org/downloads/",
  5450. "license": [
  5451. "MIT"
  5452. ],
  5453. "authors": [
  5454. {
  5455. "name": "Christian Lück",
  5456. "email": "christian@clue.engineering",
  5457. "homepage": "https://clue.engineering/"
  5458. },
  5459. {
  5460. "name": "Cees-Jan Kiewiet",
  5461. "email": "reactphp@ceesjankiewiet.nl",
  5462. "homepage": "https://wyrihaximus.net/"
  5463. },
  5464. {
  5465. "name": "Jan Sorgalla",
  5466. "email": "jsorgalla@gmail.com",
  5467. "homepage": "https://sorgalla.com/"
  5468. },
  5469. {
  5470. "name": "Chris Boden",
  5471. "email": "cboden@gmail.com",
  5472. "homepage": "https://cboden.dev/"
  5473. }
  5474. ],
  5475. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  5476. "keywords": [
  5477. "asynchronous",
  5478. "event-loop"
  5479. ],
  5480. "support": {
  5481. "issues": "https://github.com/reactphp/event-loop/issues",
  5482. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  5483. },
  5484. "funding": [
  5485. {
  5486. "url": "https://opencollective.com/reactphp",
  5487. "type": "open_collective"
  5488. }
  5489. ],
  5490. "time": "2023-11-13T13:48:05+00:00"
  5491. },
  5492. {
  5493. "name": "react/promise",
  5494. "version": "v3.1.0",
  5495. "source": {
  5496. "type": "git",
  5497. "url": "https://github.com/reactphp/promise.git",
  5498. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c"
  5499. },
  5500. "dist": {
  5501. "type": "zip",
  5502. "url": "https://api.github.com/repos/reactphp/promise/zipball/e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  5503. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  5504. "shasum": ""
  5505. },
  5506. "require": {
  5507. "php": ">=7.1.0"
  5508. },
  5509. "require-dev": {
  5510. "phpstan/phpstan": "1.10.39 || 1.4.10",
  5511. "phpunit/phpunit": "^9.6 || ^7.5"
  5512. },
  5513. "type": "library",
  5514. "autoload": {
  5515. "files": [
  5516. "src/functions_include.php"
  5517. ],
  5518. "psr-4": {
  5519. "React\\Promise\\": "src/"
  5520. }
  5521. },
  5522. "notification-url": "https://packagist.org/downloads/",
  5523. "license": [
  5524. "MIT"
  5525. ],
  5526. "authors": [
  5527. {
  5528. "name": "Jan Sorgalla",
  5529. "email": "jsorgalla@gmail.com",
  5530. "homepage": "https://sorgalla.com/"
  5531. },
  5532. {
  5533. "name": "Christian Lück",
  5534. "email": "christian@clue.engineering",
  5535. "homepage": "https://clue.engineering/"
  5536. },
  5537. {
  5538. "name": "Cees-Jan Kiewiet",
  5539. "email": "reactphp@ceesjankiewiet.nl",
  5540. "homepage": "https://wyrihaximus.net/"
  5541. },
  5542. {
  5543. "name": "Chris Boden",
  5544. "email": "cboden@gmail.com",
  5545. "homepage": "https://cboden.dev/"
  5546. }
  5547. ],
  5548. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5549. "keywords": [
  5550. "promise",
  5551. "promises"
  5552. ],
  5553. "support": {
  5554. "issues": "https://github.com/reactphp/promise/issues",
  5555. "source": "https://github.com/reactphp/promise/tree/v3.1.0"
  5556. },
  5557. "funding": [
  5558. {
  5559. "url": "https://opencollective.com/reactphp",
  5560. "type": "open_collective"
  5561. }
  5562. ],
  5563. "time": "2023-11-16T16:21:57+00:00"
  5564. },
  5565. {
  5566. "name": "react/socket",
  5567. "version": "v1.15.0",
  5568. "source": {
  5569. "type": "git",
  5570. "url": "https://github.com/reactphp/socket.git",
  5571. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  5572. },
  5573. "dist": {
  5574. "type": "zip",
  5575. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  5576. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  5577. "shasum": ""
  5578. },
  5579. "require": {
  5580. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5581. "php": ">=5.3.0",
  5582. "react/dns": "^1.11",
  5583. "react/event-loop": "^1.2",
  5584. "react/promise": "^3 || ^2.6 || ^1.2.1",
  5585. "react/stream": "^1.2"
  5586. },
  5587. "require-dev": {
  5588. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  5589. "react/async": "^4 || ^3 || ^2",
  5590. "react/promise-stream": "^1.4",
  5591. "react/promise-timer": "^1.10"
  5592. },
  5593. "type": "library",
  5594. "autoload": {
  5595. "psr-4": {
  5596. "React\\Socket\\": "src/"
  5597. }
  5598. },
  5599. "notification-url": "https://packagist.org/downloads/",
  5600. "license": [
  5601. "MIT"
  5602. ],
  5603. "authors": [
  5604. {
  5605. "name": "Christian Lück",
  5606. "email": "christian@clue.engineering",
  5607. "homepage": "https://clue.engineering/"
  5608. },
  5609. {
  5610. "name": "Cees-Jan Kiewiet",
  5611. "email": "reactphp@ceesjankiewiet.nl",
  5612. "homepage": "https://wyrihaximus.net/"
  5613. },
  5614. {
  5615. "name": "Jan Sorgalla",
  5616. "email": "jsorgalla@gmail.com",
  5617. "homepage": "https://sorgalla.com/"
  5618. },
  5619. {
  5620. "name": "Chris Boden",
  5621. "email": "cboden@gmail.com",
  5622. "homepage": "https://cboden.dev/"
  5623. }
  5624. ],
  5625. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  5626. "keywords": [
  5627. "Connection",
  5628. "Socket",
  5629. "async",
  5630. "reactphp",
  5631. "stream"
  5632. ],
  5633. "support": {
  5634. "issues": "https://github.com/reactphp/socket/issues",
  5635. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  5636. },
  5637. "funding": [
  5638. {
  5639. "url": "https://opencollective.com/reactphp",
  5640. "type": "open_collective"
  5641. }
  5642. ],
  5643. "time": "2023-12-15T11:02:10+00:00"
  5644. },
  5645. {
  5646. "name": "react/stream",
  5647. "version": "v1.3.0",
  5648. "source": {
  5649. "type": "git",
  5650. "url": "https://github.com/reactphp/stream.git",
  5651. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  5652. },
  5653. "dist": {
  5654. "type": "zip",
  5655. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  5656. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  5657. "shasum": ""
  5658. },
  5659. "require": {
  5660. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5661. "php": ">=5.3.8",
  5662. "react/event-loop": "^1.2"
  5663. },
  5664. "require-dev": {
  5665. "clue/stream-filter": "~1.2",
  5666. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  5667. },
  5668. "type": "library",
  5669. "autoload": {
  5670. "psr-4": {
  5671. "React\\Stream\\": "src/"
  5672. }
  5673. },
  5674. "notification-url": "https://packagist.org/downloads/",
  5675. "license": [
  5676. "MIT"
  5677. ],
  5678. "authors": [
  5679. {
  5680. "name": "Christian Lück",
  5681. "email": "christian@clue.engineering",
  5682. "homepage": "https://clue.engineering/"
  5683. },
  5684. {
  5685. "name": "Cees-Jan Kiewiet",
  5686. "email": "reactphp@ceesjankiewiet.nl",
  5687. "homepage": "https://wyrihaximus.net/"
  5688. },
  5689. {
  5690. "name": "Jan Sorgalla",
  5691. "email": "jsorgalla@gmail.com",
  5692. "homepage": "https://sorgalla.com/"
  5693. },
  5694. {
  5695. "name": "Chris Boden",
  5696. "email": "cboden@gmail.com",
  5697. "homepage": "https://cboden.dev/"
  5698. }
  5699. ],
  5700. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  5701. "keywords": [
  5702. "event-driven",
  5703. "io",
  5704. "non-blocking",
  5705. "pipe",
  5706. "reactphp",
  5707. "readable",
  5708. "stream",
  5709. "writable"
  5710. ],
  5711. "support": {
  5712. "issues": "https://github.com/reactphp/stream/issues",
  5713. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  5714. },
  5715. "funding": [
  5716. {
  5717. "url": "https://opencollective.com/reactphp",
  5718. "type": "open_collective"
  5719. }
  5720. ],
  5721. "time": "2023-06-16T10:52:11+00:00"
  5722. },
  5723. {
  5724. "name": "socialiteproviders/manager",
  5725. "version": "v4.4.0",
  5726. "source": {
  5727. "type": "git",
  5728. "url": "https://github.com/SocialiteProviders/Manager.git",
  5729. "reference": "df5e45b53d918ec3d689f014d98a6c838b98ed96"
  5730. },
  5731. "dist": {
  5732. "type": "zip",
  5733. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/df5e45b53d918ec3d689f014d98a6c838b98ed96",
  5734. "reference": "df5e45b53d918ec3d689f014d98a6c838b98ed96",
  5735. "shasum": ""
  5736. },
  5737. "require": {
  5738. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
  5739. "laravel/socialite": "~5.0",
  5740. "php": "^8.0"
  5741. },
  5742. "require-dev": {
  5743. "mockery/mockery": "^1.2",
  5744. "phpunit/phpunit": "^6.0 || ^9.0"
  5745. },
  5746. "type": "library",
  5747. "extra": {
  5748. "laravel": {
  5749. "providers": [
  5750. "SocialiteProviders\\Manager\\ServiceProvider"
  5751. ]
  5752. }
  5753. },
  5754. "autoload": {
  5755. "psr-4": {
  5756. "SocialiteProviders\\Manager\\": "src/"
  5757. }
  5758. },
  5759. "notification-url": "https://packagist.org/downloads/",
  5760. "license": [
  5761. "MIT"
  5762. ],
  5763. "authors": [
  5764. {
  5765. "name": "Andy Wendt",
  5766. "email": "andy@awendt.com"
  5767. },
  5768. {
  5769. "name": "Anton Komarev",
  5770. "email": "a.komarev@cybercog.su"
  5771. },
  5772. {
  5773. "name": "Miguel Piedrafita",
  5774. "email": "soy@miguelpiedrafita.com"
  5775. },
  5776. {
  5777. "name": "atymic",
  5778. "email": "atymicq@gmail.com",
  5779. "homepage": "https://atymic.dev"
  5780. }
  5781. ],
  5782. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  5783. "homepage": "https://socialiteproviders.com",
  5784. "keywords": [
  5785. "laravel",
  5786. "manager",
  5787. "oauth",
  5788. "providers",
  5789. "socialite"
  5790. ],
  5791. "support": {
  5792. "issues": "https://github.com/socialiteproviders/manager/issues",
  5793. "source": "https://github.com/socialiteproviders/manager"
  5794. },
  5795. "time": "2023-08-27T23:46:34+00:00"
  5796. },
  5797. {
  5798. "name": "socialiteproviders/weixin",
  5799. "version": "4.1.0",
  5800. "source": {
  5801. "type": "git",
  5802. "url": "https://github.com/SocialiteProviders/Weixin.git",
  5803. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f"
  5804. },
  5805. "dist": {
  5806. "type": "zip",
  5807. "url": "https://api.github.com/repos/SocialiteProviders/Weixin/zipball/4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  5808. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  5809. "shasum": ""
  5810. },
  5811. "require": {
  5812. "ext-json": "*",
  5813. "php": "^7.2 || ^8.0",
  5814. "socialiteproviders/manager": "~4.0"
  5815. },
  5816. "type": "library",
  5817. "autoload": {
  5818. "psr-4": {
  5819. "SocialiteProviders\\Weixin\\": ""
  5820. }
  5821. },
  5822. "notification-url": "https://packagist.org/downloads/",
  5823. "license": [
  5824. "MIT"
  5825. ],
  5826. "authors": [
  5827. {
  5828. "name": "xyxu",
  5829. "email": "techxu@gmail.com"
  5830. },
  5831. {
  5832. "name": "xiami",
  5833. "email": "jhdxr@php.net"
  5834. }
  5835. ],
  5836. "description": "Weixin OAuth2 Provider for Laravel Socialite",
  5837. "support": {
  5838. "source": "https://github.com/SocialiteProviders/Weixin/tree/4.1.0"
  5839. },
  5840. "time": "2020-12-01T23:10:59+00:00"
  5841. },
  5842. {
  5843. "name": "socialiteproviders/weixin-web",
  5844. "version": "4.1.0",
  5845. "source": {
  5846. "type": "git",
  5847. "url": "https://github.com/SocialiteProviders/Weixin-Web.git",
  5848. "reference": "3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3"
  5849. },
  5850. "dist": {
  5851. "type": "zip",
  5852. "url": "https://api.github.com/repos/SocialiteProviders/Weixin-Web/zipball/3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3",
  5853. "reference": "3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3",
  5854. "shasum": ""
  5855. },
  5856. "require": {
  5857. "ext-json": "*",
  5858. "php": "^7.2 || ^8.0",
  5859. "socialiteproviders/manager": "~4.0"
  5860. },
  5861. "type": "library",
  5862. "autoload": {
  5863. "psr-4": {
  5864. "SocialiteProviders\\WeixinWeb\\": ""
  5865. }
  5866. },
  5867. "notification-url": "https://packagist.org/downloads/",
  5868. "license": [
  5869. "MIT"
  5870. ],
  5871. "authors": [
  5872. {
  5873. "name": "xyxu",
  5874. "email": "techxu@gmail.com"
  5875. }
  5876. ],
  5877. "description": "Weixin-Web OAuth2 Provider for Laravel Socialite",
  5878. "support": {
  5879. "source": "https://github.com/SocialiteProviders/Weixin-Web/tree/4.1.0"
  5880. },
  5881. "time": "2020-12-01T23:10:59+00:00"
  5882. },
  5883. {
  5884. "name": "swiftmailer/swiftmailer",
  5885. "version": "v6.3.0",
  5886. "source": {
  5887. "type": "git",
  5888. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5889. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5890. },
  5891. "dist": {
  5892. "type": "zip",
  5893. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5894. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5895. "shasum": ""
  5896. },
  5897. "require": {
  5898. "egulias/email-validator": "^2.0|^3.1",
  5899. "php": ">=7.0.0",
  5900. "symfony/polyfill-iconv": "^1.0",
  5901. "symfony/polyfill-intl-idn": "^1.10",
  5902. "symfony/polyfill-mbstring": "^1.0"
  5903. },
  5904. "require-dev": {
  5905. "mockery/mockery": "^1.0",
  5906. "symfony/phpunit-bridge": "^4.4|^5.4"
  5907. },
  5908. "suggest": {
  5909. "ext-intl": "Needed to support internationalized email addresses"
  5910. },
  5911. "type": "library",
  5912. "extra": {
  5913. "branch-alias": {
  5914. "dev-master": "6.2-dev"
  5915. }
  5916. },
  5917. "autoload": {
  5918. "files": [
  5919. "lib/swift_required.php"
  5920. ]
  5921. },
  5922. "notification-url": "https://packagist.org/downloads/",
  5923. "license": [
  5924. "MIT"
  5925. ],
  5926. "authors": [
  5927. {
  5928. "name": "Chris Corbyn"
  5929. },
  5930. {
  5931. "name": "Fabien Potencier",
  5932. "email": "fabien@symfony.com"
  5933. }
  5934. ],
  5935. "description": "Swiftmailer, free feature-rich PHP mailer",
  5936. "homepage": "https://swiftmailer.symfony.com",
  5937. "keywords": [
  5938. "email",
  5939. "mail",
  5940. "mailer"
  5941. ],
  5942. "support": {
  5943. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5944. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5945. },
  5946. "funding": [
  5947. {
  5948. "url": "https://github.com/fabpot",
  5949. "type": "github"
  5950. },
  5951. {
  5952. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5953. "type": "tidelift"
  5954. }
  5955. ],
  5956. "abandoned": "symfony/mailer",
  5957. "time": "2021-10-18T15:26:12+00:00"
  5958. },
  5959. {
  5960. "name": "symfony/console",
  5961. "version": "v5.4.32",
  5962. "source": {
  5963. "type": "git",
  5964. "url": "https://github.com/symfony/console.git",
  5965. "reference": "c70df1ffaf23a8d340bded3cfab1b86752ad6ed7"
  5966. },
  5967. "dist": {
  5968. "type": "zip",
  5969. "url": "https://api.github.com/repos/symfony/console/zipball/c70df1ffaf23a8d340bded3cfab1b86752ad6ed7",
  5970. "reference": "c70df1ffaf23a8d340bded3cfab1b86752ad6ed7",
  5971. "shasum": ""
  5972. },
  5973. "require": {
  5974. "php": ">=7.2.5",
  5975. "symfony/deprecation-contracts": "^2.1|^3",
  5976. "symfony/polyfill-mbstring": "~1.0",
  5977. "symfony/polyfill-php73": "^1.9",
  5978. "symfony/polyfill-php80": "^1.16",
  5979. "symfony/service-contracts": "^1.1|^2|^3",
  5980. "symfony/string": "^5.1|^6.0"
  5981. },
  5982. "conflict": {
  5983. "psr/log": ">=3",
  5984. "symfony/dependency-injection": "<4.4",
  5985. "symfony/dotenv": "<5.1",
  5986. "symfony/event-dispatcher": "<4.4",
  5987. "symfony/lock": "<4.4",
  5988. "symfony/process": "<4.4"
  5989. },
  5990. "provide": {
  5991. "psr/log-implementation": "1.0|2.0"
  5992. },
  5993. "require-dev": {
  5994. "psr/log": "^1|^2",
  5995. "symfony/config": "^4.4|^5.0|^6.0",
  5996. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5997. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5998. "symfony/lock": "^4.4|^5.0|^6.0",
  5999. "symfony/process": "^4.4|^5.0|^6.0",
  6000. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6001. },
  6002. "suggest": {
  6003. "psr/log": "For using the console logger",
  6004. "symfony/event-dispatcher": "",
  6005. "symfony/lock": "",
  6006. "symfony/process": ""
  6007. },
  6008. "type": "library",
  6009. "autoload": {
  6010. "psr-4": {
  6011. "Symfony\\Component\\Console\\": ""
  6012. },
  6013. "exclude-from-classmap": [
  6014. "/Tests/"
  6015. ]
  6016. },
  6017. "notification-url": "https://packagist.org/downloads/",
  6018. "license": [
  6019. "MIT"
  6020. ],
  6021. "authors": [
  6022. {
  6023. "name": "Fabien Potencier",
  6024. "email": "fabien@symfony.com"
  6025. },
  6026. {
  6027. "name": "Symfony Community",
  6028. "homepage": "https://symfony.com/contributors"
  6029. }
  6030. ],
  6031. "description": "Eases the creation of beautiful and testable command line interfaces",
  6032. "homepage": "https://symfony.com",
  6033. "keywords": [
  6034. "cli",
  6035. "command-line",
  6036. "console",
  6037. "terminal"
  6038. ],
  6039. "support": {
  6040. "source": "https://github.com/symfony/console/tree/v5.4.32"
  6041. },
  6042. "funding": [
  6043. {
  6044. "url": "https://symfony.com/sponsor",
  6045. "type": "custom"
  6046. },
  6047. {
  6048. "url": "https://github.com/fabpot",
  6049. "type": "github"
  6050. },
  6051. {
  6052. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6053. "type": "tidelift"
  6054. }
  6055. ],
  6056. "time": "2023-11-18T18:23:04+00:00"
  6057. },
  6058. {
  6059. "name": "symfony/css-selector",
  6060. "version": "v6.0.19",
  6061. "source": {
  6062. "type": "git",
  6063. "url": "https://github.com/symfony/css-selector.git",
  6064. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  6065. },
  6066. "dist": {
  6067. "type": "zip",
  6068. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  6069. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  6070. "shasum": ""
  6071. },
  6072. "require": {
  6073. "php": ">=8.0.2"
  6074. },
  6075. "type": "library",
  6076. "autoload": {
  6077. "psr-4": {
  6078. "Symfony\\Component\\CssSelector\\": ""
  6079. },
  6080. "exclude-from-classmap": [
  6081. "/Tests/"
  6082. ]
  6083. },
  6084. "notification-url": "https://packagist.org/downloads/",
  6085. "license": [
  6086. "MIT"
  6087. ],
  6088. "authors": [
  6089. {
  6090. "name": "Fabien Potencier",
  6091. "email": "fabien@symfony.com"
  6092. },
  6093. {
  6094. "name": "Jean-François Simon",
  6095. "email": "jeanfrancois.simon@sensiolabs.com"
  6096. },
  6097. {
  6098. "name": "Symfony Community",
  6099. "homepage": "https://symfony.com/contributors"
  6100. }
  6101. ],
  6102. "description": "Converts CSS selectors to XPath expressions",
  6103. "homepage": "https://symfony.com",
  6104. "support": {
  6105. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  6106. },
  6107. "funding": [
  6108. {
  6109. "url": "https://symfony.com/sponsor",
  6110. "type": "custom"
  6111. },
  6112. {
  6113. "url": "https://github.com/fabpot",
  6114. "type": "github"
  6115. },
  6116. {
  6117. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6118. "type": "tidelift"
  6119. }
  6120. ],
  6121. "time": "2023-01-01T08:36:10+00:00"
  6122. },
  6123. {
  6124. "name": "symfony/deprecation-contracts",
  6125. "version": "v3.0.2",
  6126. "source": {
  6127. "type": "git",
  6128. "url": "https://github.com/symfony/deprecation-contracts.git",
  6129. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  6130. },
  6131. "dist": {
  6132. "type": "zip",
  6133. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  6134. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  6135. "shasum": ""
  6136. },
  6137. "require": {
  6138. "php": ">=8.0.2"
  6139. },
  6140. "type": "library",
  6141. "extra": {
  6142. "branch-alias": {
  6143. "dev-main": "3.0-dev"
  6144. },
  6145. "thanks": {
  6146. "name": "symfony/contracts",
  6147. "url": "https://github.com/symfony/contracts"
  6148. }
  6149. },
  6150. "autoload": {
  6151. "files": [
  6152. "function.php"
  6153. ]
  6154. },
  6155. "notification-url": "https://packagist.org/downloads/",
  6156. "license": [
  6157. "MIT"
  6158. ],
  6159. "authors": [
  6160. {
  6161. "name": "Nicolas Grekas",
  6162. "email": "p@tchwork.com"
  6163. },
  6164. {
  6165. "name": "Symfony Community",
  6166. "homepage": "https://symfony.com/contributors"
  6167. }
  6168. ],
  6169. "description": "A generic function and convention to trigger deprecation notices",
  6170. "homepage": "https://symfony.com",
  6171. "support": {
  6172. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  6173. },
  6174. "funding": [
  6175. {
  6176. "url": "https://symfony.com/sponsor",
  6177. "type": "custom"
  6178. },
  6179. {
  6180. "url": "https://github.com/fabpot",
  6181. "type": "github"
  6182. },
  6183. {
  6184. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6185. "type": "tidelift"
  6186. }
  6187. ],
  6188. "time": "2022-01-02T09:55:41+00:00"
  6189. },
  6190. {
  6191. "name": "symfony/error-handler",
  6192. "version": "v5.4.29",
  6193. "source": {
  6194. "type": "git",
  6195. "url": "https://github.com/symfony/error-handler.git",
  6196. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078"
  6197. },
  6198. "dist": {
  6199. "type": "zip",
  6200. "url": "https://api.github.com/repos/symfony/error-handler/zipball/328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  6201. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  6202. "shasum": ""
  6203. },
  6204. "require": {
  6205. "php": ">=7.2.5",
  6206. "psr/log": "^1|^2|^3",
  6207. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6208. },
  6209. "require-dev": {
  6210. "symfony/deprecation-contracts": "^2.1|^3",
  6211. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6212. "symfony/serializer": "^4.4|^5.0|^6.0"
  6213. },
  6214. "bin": [
  6215. "Resources/bin/patch-type-declarations"
  6216. ],
  6217. "type": "library",
  6218. "autoload": {
  6219. "psr-4": {
  6220. "Symfony\\Component\\ErrorHandler\\": ""
  6221. },
  6222. "exclude-from-classmap": [
  6223. "/Tests/"
  6224. ]
  6225. },
  6226. "notification-url": "https://packagist.org/downloads/",
  6227. "license": [
  6228. "MIT"
  6229. ],
  6230. "authors": [
  6231. {
  6232. "name": "Fabien Potencier",
  6233. "email": "fabien@symfony.com"
  6234. },
  6235. {
  6236. "name": "Symfony Community",
  6237. "homepage": "https://symfony.com/contributors"
  6238. }
  6239. ],
  6240. "description": "Provides tools to manage errors and ease debugging PHP code",
  6241. "homepage": "https://symfony.com",
  6242. "support": {
  6243. "source": "https://github.com/symfony/error-handler/tree/v5.4.29"
  6244. },
  6245. "funding": [
  6246. {
  6247. "url": "https://symfony.com/sponsor",
  6248. "type": "custom"
  6249. },
  6250. {
  6251. "url": "https://github.com/fabpot",
  6252. "type": "github"
  6253. },
  6254. {
  6255. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6256. "type": "tidelift"
  6257. }
  6258. ],
  6259. "time": "2023-09-06T21:54:06+00:00"
  6260. },
  6261. {
  6262. "name": "symfony/event-dispatcher",
  6263. "version": "v6.0.19",
  6264. "source": {
  6265. "type": "git",
  6266. "url": "https://github.com/symfony/event-dispatcher.git",
  6267. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  6268. },
  6269. "dist": {
  6270. "type": "zip",
  6271. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  6272. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  6273. "shasum": ""
  6274. },
  6275. "require": {
  6276. "php": ">=8.0.2",
  6277. "symfony/event-dispatcher-contracts": "^2|^3"
  6278. },
  6279. "conflict": {
  6280. "symfony/dependency-injection": "<5.4"
  6281. },
  6282. "provide": {
  6283. "psr/event-dispatcher-implementation": "1.0",
  6284. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6285. },
  6286. "require-dev": {
  6287. "psr/log": "^1|^2|^3",
  6288. "symfony/config": "^5.4|^6.0",
  6289. "symfony/dependency-injection": "^5.4|^6.0",
  6290. "symfony/error-handler": "^5.4|^6.0",
  6291. "symfony/expression-language": "^5.4|^6.0",
  6292. "symfony/http-foundation": "^5.4|^6.0",
  6293. "symfony/service-contracts": "^1.1|^2|^3",
  6294. "symfony/stopwatch": "^5.4|^6.0"
  6295. },
  6296. "suggest": {
  6297. "symfony/dependency-injection": "",
  6298. "symfony/http-kernel": ""
  6299. },
  6300. "type": "library",
  6301. "autoload": {
  6302. "psr-4": {
  6303. "Symfony\\Component\\EventDispatcher\\": ""
  6304. },
  6305. "exclude-from-classmap": [
  6306. "/Tests/"
  6307. ]
  6308. },
  6309. "notification-url": "https://packagist.org/downloads/",
  6310. "license": [
  6311. "MIT"
  6312. ],
  6313. "authors": [
  6314. {
  6315. "name": "Fabien Potencier",
  6316. "email": "fabien@symfony.com"
  6317. },
  6318. {
  6319. "name": "Symfony Community",
  6320. "homepage": "https://symfony.com/contributors"
  6321. }
  6322. ],
  6323. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6324. "homepage": "https://symfony.com",
  6325. "support": {
  6326. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  6327. },
  6328. "funding": [
  6329. {
  6330. "url": "https://symfony.com/sponsor",
  6331. "type": "custom"
  6332. },
  6333. {
  6334. "url": "https://github.com/fabpot",
  6335. "type": "github"
  6336. },
  6337. {
  6338. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6339. "type": "tidelift"
  6340. }
  6341. ],
  6342. "time": "2023-01-01T08:36:10+00:00"
  6343. },
  6344. {
  6345. "name": "symfony/event-dispatcher-contracts",
  6346. "version": "v3.0.2",
  6347. "source": {
  6348. "type": "git",
  6349. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6350. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  6351. },
  6352. "dist": {
  6353. "type": "zip",
  6354. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  6355. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  6356. "shasum": ""
  6357. },
  6358. "require": {
  6359. "php": ">=8.0.2",
  6360. "psr/event-dispatcher": "^1"
  6361. },
  6362. "suggest": {
  6363. "symfony/event-dispatcher-implementation": ""
  6364. },
  6365. "type": "library",
  6366. "extra": {
  6367. "branch-alias": {
  6368. "dev-main": "3.0-dev"
  6369. },
  6370. "thanks": {
  6371. "name": "symfony/contracts",
  6372. "url": "https://github.com/symfony/contracts"
  6373. }
  6374. },
  6375. "autoload": {
  6376. "psr-4": {
  6377. "Symfony\\Contracts\\EventDispatcher\\": ""
  6378. }
  6379. },
  6380. "notification-url": "https://packagist.org/downloads/",
  6381. "license": [
  6382. "MIT"
  6383. ],
  6384. "authors": [
  6385. {
  6386. "name": "Nicolas Grekas",
  6387. "email": "p@tchwork.com"
  6388. },
  6389. {
  6390. "name": "Symfony Community",
  6391. "homepage": "https://symfony.com/contributors"
  6392. }
  6393. ],
  6394. "description": "Generic abstractions related to dispatching event",
  6395. "homepage": "https://symfony.com",
  6396. "keywords": [
  6397. "abstractions",
  6398. "contracts",
  6399. "decoupling",
  6400. "interfaces",
  6401. "interoperability",
  6402. "standards"
  6403. ],
  6404. "support": {
  6405. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  6406. },
  6407. "funding": [
  6408. {
  6409. "url": "https://symfony.com/sponsor",
  6410. "type": "custom"
  6411. },
  6412. {
  6413. "url": "https://github.com/fabpot",
  6414. "type": "github"
  6415. },
  6416. {
  6417. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6418. "type": "tidelift"
  6419. }
  6420. ],
  6421. "time": "2022-01-02T09:55:41+00:00"
  6422. },
  6423. {
  6424. "name": "symfony/finder",
  6425. "version": "v5.4.27",
  6426. "source": {
  6427. "type": "git",
  6428. "url": "https://github.com/symfony/finder.git",
  6429. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d"
  6430. },
  6431. "dist": {
  6432. "type": "zip",
  6433. "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  6434. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  6435. "shasum": ""
  6436. },
  6437. "require": {
  6438. "php": ">=7.2.5",
  6439. "symfony/deprecation-contracts": "^2.1|^3",
  6440. "symfony/polyfill-php80": "^1.16"
  6441. },
  6442. "type": "library",
  6443. "autoload": {
  6444. "psr-4": {
  6445. "Symfony\\Component\\Finder\\": ""
  6446. },
  6447. "exclude-from-classmap": [
  6448. "/Tests/"
  6449. ]
  6450. },
  6451. "notification-url": "https://packagist.org/downloads/",
  6452. "license": [
  6453. "MIT"
  6454. ],
  6455. "authors": [
  6456. {
  6457. "name": "Fabien Potencier",
  6458. "email": "fabien@symfony.com"
  6459. },
  6460. {
  6461. "name": "Symfony Community",
  6462. "homepage": "https://symfony.com/contributors"
  6463. }
  6464. ],
  6465. "description": "Finds files and directories via an intuitive fluent interface",
  6466. "homepage": "https://symfony.com",
  6467. "support": {
  6468. "source": "https://github.com/symfony/finder/tree/v5.4.27"
  6469. },
  6470. "funding": [
  6471. {
  6472. "url": "https://symfony.com/sponsor",
  6473. "type": "custom"
  6474. },
  6475. {
  6476. "url": "https://github.com/fabpot",
  6477. "type": "github"
  6478. },
  6479. {
  6480. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6481. "type": "tidelift"
  6482. }
  6483. ],
  6484. "time": "2023-07-31T08:02:31+00:00"
  6485. },
  6486. {
  6487. "name": "symfony/http-foundation",
  6488. "version": "v5.4.32",
  6489. "source": {
  6490. "type": "git",
  6491. "url": "https://github.com/symfony/http-foundation.git",
  6492. "reference": "cbcd80a4c36f59772d62860fdb0cb6a38da63fd2"
  6493. },
  6494. "dist": {
  6495. "type": "zip",
  6496. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cbcd80a4c36f59772d62860fdb0cb6a38da63fd2",
  6497. "reference": "cbcd80a4c36f59772d62860fdb0cb6a38da63fd2",
  6498. "shasum": ""
  6499. },
  6500. "require": {
  6501. "php": ">=7.2.5",
  6502. "symfony/deprecation-contracts": "^2.1|^3",
  6503. "symfony/polyfill-mbstring": "~1.1",
  6504. "symfony/polyfill-php80": "^1.16"
  6505. },
  6506. "require-dev": {
  6507. "predis/predis": "~1.0",
  6508. "symfony/cache": "^4.4|^5.0|^6.0",
  6509. "symfony/dependency-injection": "^5.4|^6.0",
  6510. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6511. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6512. "symfony/mime": "^4.4|^5.0|^6.0",
  6513. "symfony/rate-limiter": "^5.2|^6.0"
  6514. },
  6515. "suggest": {
  6516. "symfony/mime": "To use the file extension guesser"
  6517. },
  6518. "type": "library",
  6519. "autoload": {
  6520. "psr-4": {
  6521. "Symfony\\Component\\HttpFoundation\\": ""
  6522. },
  6523. "exclude-from-classmap": [
  6524. "/Tests/"
  6525. ]
  6526. },
  6527. "notification-url": "https://packagist.org/downloads/",
  6528. "license": [
  6529. "MIT"
  6530. ],
  6531. "authors": [
  6532. {
  6533. "name": "Fabien Potencier",
  6534. "email": "fabien@symfony.com"
  6535. },
  6536. {
  6537. "name": "Symfony Community",
  6538. "homepage": "https://symfony.com/contributors"
  6539. }
  6540. ],
  6541. "description": "Defines an object-oriented layer for the HTTP specification",
  6542. "homepage": "https://symfony.com",
  6543. "support": {
  6544. "source": "https://github.com/symfony/http-foundation/tree/v5.4.32"
  6545. },
  6546. "funding": [
  6547. {
  6548. "url": "https://symfony.com/sponsor",
  6549. "type": "custom"
  6550. },
  6551. {
  6552. "url": "https://github.com/fabpot",
  6553. "type": "github"
  6554. },
  6555. {
  6556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6557. "type": "tidelift"
  6558. }
  6559. ],
  6560. "time": "2023-11-20T15:40:25+00:00"
  6561. },
  6562. {
  6563. "name": "symfony/http-kernel",
  6564. "version": "v5.4.33",
  6565. "source": {
  6566. "type": "git",
  6567. "url": "https://github.com/symfony/http-kernel.git",
  6568. "reference": "892636f9279f953dc266dc088f900b03eecb4ffa"
  6569. },
  6570. "dist": {
  6571. "type": "zip",
  6572. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/892636f9279f953dc266dc088f900b03eecb4ffa",
  6573. "reference": "892636f9279f953dc266dc088f900b03eecb4ffa",
  6574. "shasum": ""
  6575. },
  6576. "require": {
  6577. "php": ">=7.2.5",
  6578. "psr/log": "^1|^2",
  6579. "symfony/deprecation-contracts": "^2.1|^3",
  6580. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6581. "symfony/event-dispatcher": "^5.0|^6.0",
  6582. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6583. "symfony/polyfill-ctype": "^1.8",
  6584. "symfony/polyfill-php73": "^1.9",
  6585. "symfony/polyfill-php80": "^1.16"
  6586. },
  6587. "conflict": {
  6588. "symfony/browser-kit": "<5.4",
  6589. "symfony/cache": "<5.0",
  6590. "symfony/config": "<5.0",
  6591. "symfony/console": "<4.4",
  6592. "symfony/dependency-injection": "<5.3",
  6593. "symfony/doctrine-bridge": "<5.0",
  6594. "symfony/form": "<5.0",
  6595. "symfony/http-client": "<5.0",
  6596. "symfony/mailer": "<5.0",
  6597. "symfony/messenger": "<5.0",
  6598. "symfony/translation": "<5.0",
  6599. "symfony/twig-bridge": "<5.0",
  6600. "symfony/validator": "<5.0",
  6601. "twig/twig": "<2.13"
  6602. },
  6603. "provide": {
  6604. "psr/log-implementation": "1.0|2.0"
  6605. },
  6606. "require-dev": {
  6607. "psr/cache": "^1.0|^2.0|^3.0",
  6608. "symfony/browser-kit": "^5.4|^6.0",
  6609. "symfony/config": "^5.0|^6.0",
  6610. "symfony/console": "^4.4|^5.0|^6.0",
  6611. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6612. "symfony/dependency-injection": "^5.3|^6.0",
  6613. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6614. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6615. "symfony/finder": "^4.4|^5.0|^6.0",
  6616. "symfony/http-client-contracts": "^1.1|^2|^3",
  6617. "symfony/process": "^4.4|^5.0|^6.0",
  6618. "symfony/routing": "^4.4|^5.0|^6.0",
  6619. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6620. "symfony/translation": "^4.4|^5.0|^6.0",
  6621. "symfony/translation-contracts": "^1.1|^2|^3",
  6622. "twig/twig": "^2.13|^3.0.4"
  6623. },
  6624. "suggest": {
  6625. "symfony/browser-kit": "",
  6626. "symfony/config": "",
  6627. "symfony/console": "",
  6628. "symfony/dependency-injection": ""
  6629. },
  6630. "type": "library",
  6631. "autoload": {
  6632. "psr-4": {
  6633. "Symfony\\Component\\HttpKernel\\": ""
  6634. },
  6635. "exclude-from-classmap": [
  6636. "/Tests/"
  6637. ]
  6638. },
  6639. "notification-url": "https://packagist.org/downloads/",
  6640. "license": [
  6641. "MIT"
  6642. ],
  6643. "authors": [
  6644. {
  6645. "name": "Fabien Potencier",
  6646. "email": "fabien@symfony.com"
  6647. },
  6648. {
  6649. "name": "Symfony Community",
  6650. "homepage": "https://symfony.com/contributors"
  6651. }
  6652. ],
  6653. "description": "Provides a structured process for converting a Request into a Response",
  6654. "homepage": "https://symfony.com",
  6655. "support": {
  6656. "source": "https://github.com/symfony/http-kernel/tree/v5.4.33"
  6657. },
  6658. "funding": [
  6659. {
  6660. "url": "https://symfony.com/sponsor",
  6661. "type": "custom"
  6662. },
  6663. {
  6664. "url": "https://github.com/fabpot",
  6665. "type": "github"
  6666. },
  6667. {
  6668. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6669. "type": "tidelift"
  6670. }
  6671. ],
  6672. "time": "2023-12-01T16:51:11+00:00"
  6673. },
  6674. {
  6675. "name": "symfony/mime",
  6676. "version": "v5.4.26",
  6677. "source": {
  6678. "type": "git",
  6679. "url": "https://github.com/symfony/mime.git",
  6680. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2"
  6681. },
  6682. "dist": {
  6683. "type": "zip",
  6684. "url": "https://api.github.com/repos/symfony/mime/zipball/2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  6685. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  6686. "shasum": ""
  6687. },
  6688. "require": {
  6689. "php": ">=7.2.5",
  6690. "symfony/deprecation-contracts": "^2.1|^3",
  6691. "symfony/polyfill-intl-idn": "^1.10",
  6692. "symfony/polyfill-mbstring": "^1.0",
  6693. "symfony/polyfill-php80": "^1.16"
  6694. },
  6695. "conflict": {
  6696. "egulias/email-validator": "~3.0.0",
  6697. "phpdocumentor/reflection-docblock": "<3.2.2",
  6698. "phpdocumentor/type-resolver": "<1.4.0",
  6699. "symfony/mailer": "<4.4",
  6700. "symfony/serializer": "<5.4.26|>=6,<6.2.13|>=6.3,<6.3.2"
  6701. },
  6702. "require-dev": {
  6703. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6704. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6705. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6706. "symfony/property-access": "^4.4|^5.1|^6.0",
  6707. "symfony/property-info": "^4.4|^5.1|^6.0",
  6708. "symfony/serializer": "^5.4.26|~6.2.13|^6.3.2"
  6709. },
  6710. "type": "library",
  6711. "autoload": {
  6712. "psr-4": {
  6713. "Symfony\\Component\\Mime\\": ""
  6714. },
  6715. "exclude-from-classmap": [
  6716. "/Tests/"
  6717. ]
  6718. },
  6719. "notification-url": "https://packagist.org/downloads/",
  6720. "license": [
  6721. "MIT"
  6722. ],
  6723. "authors": [
  6724. {
  6725. "name": "Fabien Potencier",
  6726. "email": "fabien@symfony.com"
  6727. },
  6728. {
  6729. "name": "Symfony Community",
  6730. "homepage": "https://symfony.com/contributors"
  6731. }
  6732. ],
  6733. "description": "Allows manipulating MIME messages",
  6734. "homepage": "https://symfony.com",
  6735. "keywords": [
  6736. "mime",
  6737. "mime-type"
  6738. ],
  6739. "support": {
  6740. "source": "https://github.com/symfony/mime/tree/v5.4.26"
  6741. },
  6742. "funding": [
  6743. {
  6744. "url": "https://symfony.com/sponsor",
  6745. "type": "custom"
  6746. },
  6747. {
  6748. "url": "https://github.com/fabpot",
  6749. "type": "github"
  6750. },
  6751. {
  6752. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6753. "type": "tidelift"
  6754. }
  6755. ],
  6756. "time": "2023-07-27T06:29:31+00:00"
  6757. },
  6758. {
  6759. "name": "symfony/polyfill-ctype",
  6760. "version": "v1.28.0",
  6761. "source": {
  6762. "type": "git",
  6763. "url": "https://github.com/symfony/polyfill-ctype.git",
  6764. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  6765. },
  6766. "dist": {
  6767. "type": "zip",
  6768. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6769. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6770. "shasum": ""
  6771. },
  6772. "require": {
  6773. "php": ">=7.1"
  6774. },
  6775. "provide": {
  6776. "ext-ctype": "*"
  6777. },
  6778. "suggest": {
  6779. "ext-ctype": "For best performance"
  6780. },
  6781. "type": "library",
  6782. "extra": {
  6783. "branch-alias": {
  6784. "dev-main": "1.28-dev"
  6785. },
  6786. "thanks": {
  6787. "name": "symfony/polyfill",
  6788. "url": "https://github.com/symfony/polyfill"
  6789. }
  6790. },
  6791. "autoload": {
  6792. "files": [
  6793. "bootstrap.php"
  6794. ],
  6795. "psr-4": {
  6796. "Symfony\\Polyfill\\Ctype\\": ""
  6797. }
  6798. },
  6799. "notification-url": "https://packagist.org/downloads/",
  6800. "license": [
  6801. "MIT"
  6802. ],
  6803. "authors": [
  6804. {
  6805. "name": "Gert de Pagter",
  6806. "email": "BackEndTea@gmail.com"
  6807. },
  6808. {
  6809. "name": "Symfony Community",
  6810. "homepage": "https://symfony.com/contributors"
  6811. }
  6812. ],
  6813. "description": "Symfony polyfill for ctype functions",
  6814. "homepage": "https://symfony.com",
  6815. "keywords": [
  6816. "compatibility",
  6817. "ctype",
  6818. "polyfill",
  6819. "portable"
  6820. ],
  6821. "support": {
  6822. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  6823. },
  6824. "funding": [
  6825. {
  6826. "url": "https://symfony.com/sponsor",
  6827. "type": "custom"
  6828. },
  6829. {
  6830. "url": "https://github.com/fabpot",
  6831. "type": "github"
  6832. },
  6833. {
  6834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6835. "type": "tidelift"
  6836. }
  6837. ],
  6838. "time": "2023-01-26T09:26:14+00:00"
  6839. },
  6840. {
  6841. "name": "symfony/polyfill-iconv",
  6842. "version": "v1.28.0",
  6843. "source": {
  6844. "type": "git",
  6845. "url": "https://github.com/symfony/polyfill-iconv.git",
  6846. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  6847. },
  6848. "dist": {
  6849. "type": "zip",
  6850. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  6851. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  6852. "shasum": ""
  6853. },
  6854. "require": {
  6855. "php": ">=7.1"
  6856. },
  6857. "provide": {
  6858. "ext-iconv": "*"
  6859. },
  6860. "suggest": {
  6861. "ext-iconv": "For best performance"
  6862. },
  6863. "type": "library",
  6864. "extra": {
  6865. "branch-alias": {
  6866. "dev-main": "1.28-dev"
  6867. },
  6868. "thanks": {
  6869. "name": "symfony/polyfill",
  6870. "url": "https://github.com/symfony/polyfill"
  6871. }
  6872. },
  6873. "autoload": {
  6874. "files": [
  6875. "bootstrap.php"
  6876. ],
  6877. "psr-4": {
  6878. "Symfony\\Polyfill\\Iconv\\": ""
  6879. }
  6880. },
  6881. "notification-url": "https://packagist.org/downloads/",
  6882. "license": [
  6883. "MIT"
  6884. ],
  6885. "authors": [
  6886. {
  6887. "name": "Nicolas Grekas",
  6888. "email": "p@tchwork.com"
  6889. },
  6890. {
  6891. "name": "Symfony Community",
  6892. "homepage": "https://symfony.com/contributors"
  6893. }
  6894. ],
  6895. "description": "Symfony polyfill for the Iconv extension",
  6896. "homepage": "https://symfony.com",
  6897. "keywords": [
  6898. "compatibility",
  6899. "iconv",
  6900. "polyfill",
  6901. "portable",
  6902. "shim"
  6903. ],
  6904. "support": {
  6905. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
  6906. },
  6907. "funding": [
  6908. {
  6909. "url": "https://symfony.com/sponsor",
  6910. "type": "custom"
  6911. },
  6912. {
  6913. "url": "https://github.com/fabpot",
  6914. "type": "github"
  6915. },
  6916. {
  6917. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6918. "type": "tidelift"
  6919. }
  6920. ],
  6921. "time": "2023-01-26T09:26:14+00:00"
  6922. },
  6923. {
  6924. "name": "symfony/polyfill-intl-grapheme",
  6925. "version": "v1.28.0",
  6926. "source": {
  6927. "type": "git",
  6928. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6929. "reference": "875e90aeea2777b6f135677f618529449334a612"
  6930. },
  6931. "dist": {
  6932. "type": "zip",
  6933. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  6934. "reference": "875e90aeea2777b6f135677f618529449334a612",
  6935. "shasum": ""
  6936. },
  6937. "require": {
  6938. "php": ">=7.1"
  6939. },
  6940. "suggest": {
  6941. "ext-intl": "For best performance"
  6942. },
  6943. "type": "library",
  6944. "extra": {
  6945. "branch-alias": {
  6946. "dev-main": "1.28-dev"
  6947. },
  6948. "thanks": {
  6949. "name": "symfony/polyfill",
  6950. "url": "https://github.com/symfony/polyfill"
  6951. }
  6952. },
  6953. "autoload": {
  6954. "files": [
  6955. "bootstrap.php"
  6956. ],
  6957. "psr-4": {
  6958. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6959. }
  6960. },
  6961. "notification-url": "https://packagist.org/downloads/",
  6962. "license": [
  6963. "MIT"
  6964. ],
  6965. "authors": [
  6966. {
  6967. "name": "Nicolas Grekas",
  6968. "email": "p@tchwork.com"
  6969. },
  6970. {
  6971. "name": "Symfony Community",
  6972. "homepage": "https://symfony.com/contributors"
  6973. }
  6974. ],
  6975. "description": "Symfony polyfill for intl's grapheme_* functions",
  6976. "homepage": "https://symfony.com",
  6977. "keywords": [
  6978. "compatibility",
  6979. "grapheme",
  6980. "intl",
  6981. "polyfill",
  6982. "portable",
  6983. "shim"
  6984. ],
  6985. "support": {
  6986. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  6987. },
  6988. "funding": [
  6989. {
  6990. "url": "https://symfony.com/sponsor",
  6991. "type": "custom"
  6992. },
  6993. {
  6994. "url": "https://github.com/fabpot",
  6995. "type": "github"
  6996. },
  6997. {
  6998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6999. "type": "tidelift"
  7000. }
  7001. ],
  7002. "time": "2023-01-26T09:26:14+00:00"
  7003. },
  7004. {
  7005. "name": "symfony/polyfill-intl-idn",
  7006. "version": "v1.28.0",
  7007. "source": {
  7008. "type": "git",
  7009. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7010. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  7011. },
  7012. "dist": {
  7013. "type": "zip",
  7014. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  7015. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  7016. "shasum": ""
  7017. },
  7018. "require": {
  7019. "php": ">=7.1",
  7020. "symfony/polyfill-intl-normalizer": "^1.10",
  7021. "symfony/polyfill-php72": "^1.10"
  7022. },
  7023. "suggest": {
  7024. "ext-intl": "For best performance"
  7025. },
  7026. "type": "library",
  7027. "extra": {
  7028. "branch-alias": {
  7029. "dev-main": "1.28-dev"
  7030. },
  7031. "thanks": {
  7032. "name": "symfony/polyfill",
  7033. "url": "https://github.com/symfony/polyfill"
  7034. }
  7035. },
  7036. "autoload": {
  7037. "files": [
  7038. "bootstrap.php"
  7039. ],
  7040. "psr-4": {
  7041. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7042. }
  7043. },
  7044. "notification-url": "https://packagist.org/downloads/",
  7045. "license": [
  7046. "MIT"
  7047. ],
  7048. "authors": [
  7049. {
  7050. "name": "Laurent Bassin",
  7051. "email": "laurent@bassin.info"
  7052. },
  7053. {
  7054. "name": "Trevor Rowbotham",
  7055. "email": "trevor.rowbotham@pm.me"
  7056. },
  7057. {
  7058. "name": "Symfony Community",
  7059. "homepage": "https://symfony.com/contributors"
  7060. }
  7061. ],
  7062. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7063. "homepage": "https://symfony.com",
  7064. "keywords": [
  7065. "compatibility",
  7066. "idn",
  7067. "intl",
  7068. "polyfill",
  7069. "portable",
  7070. "shim"
  7071. ],
  7072. "support": {
  7073. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  7074. },
  7075. "funding": [
  7076. {
  7077. "url": "https://symfony.com/sponsor",
  7078. "type": "custom"
  7079. },
  7080. {
  7081. "url": "https://github.com/fabpot",
  7082. "type": "github"
  7083. },
  7084. {
  7085. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7086. "type": "tidelift"
  7087. }
  7088. ],
  7089. "time": "2023-01-26T09:30:37+00:00"
  7090. },
  7091. {
  7092. "name": "symfony/polyfill-intl-normalizer",
  7093. "version": "v1.28.0",
  7094. "source": {
  7095. "type": "git",
  7096. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7097. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  7098. },
  7099. "dist": {
  7100. "type": "zip",
  7101. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7102. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7103. "shasum": ""
  7104. },
  7105. "require": {
  7106. "php": ">=7.1"
  7107. },
  7108. "suggest": {
  7109. "ext-intl": "For best performance"
  7110. },
  7111. "type": "library",
  7112. "extra": {
  7113. "branch-alias": {
  7114. "dev-main": "1.28-dev"
  7115. },
  7116. "thanks": {
  7117. "name": "symfony/polyfill",
  7118. "url": "https://github.com/symfony/polyfill"
  7119. }
  7120. },
  7121. "autoload": {
  7122. "files": [
  7123. "bootstrap.php"
  7124. ],
  7125. "psr-4": {
  7126. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7127. },
  7128. "classmap": [
  7129. "Resources/stubs"
  7130. ]
  7131. },
  7132. "notification-url": "https://packagist.org/downloads/",
  7133. "license": [
  7134. "MIT"
  7135. ],
  7136. "authors": [
  7137. {
  7138. "name": "Nicolas Grekas",
  7139. "email": "p@tchwork.com"
  7140. },
  7141. {
  7142. "name": "Symfony Community",
  7143. "homepage": "https://symfony.com/contributors"
  7144. }
  7145. ],
  7146. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7147. "homepage": "https://symfony.com",
  7148. "keywords": [
  7149. "compatibility",
  7150. "intl",
  7151. "normalizer",
  7152. "polyfill",
  7153. "portable",
  7154. "shim"
  7155. ],
  7156. "support": {
  7157. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  7158. },
  7159. "funding": [
  7160. {
  7161. "url": "https://symfony.com/sponsor",
  7162. "type": "custom"
  7163. },
  7164. {
  7165. "url": "https://github.com/fabpot",
  7166. "type": "github"
  7167. },
  7168. {
  7169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7170. "type": "tidelift"
  7171. }
  7172. ],
  7173. "time": "2023-01-26T09:26:14+00:00"
  7174. },
  7175. {
  7176. "name": "symfony/polyfill-mbstring",
  7177. "version": "v1.28.0",
  7178. "source": {
  7179. "type": "git",
  7180. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7181. "reference": "42292d99c55abe617799667f454222c54c60e229"
  7182. },
  7183. "dist": {
  7184. "type": "zip",
  7185. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  7186. "reference": "42292d99c55abe617799667f454222c54c60e229",
  7187. "shasum": ""
  7188. },
  7189. "require": {
  7190. "php": ">=7.1"
  7191. },
  7192. "provide": {
  7193. "ext-mbstring": "*"
  7194. },
  7195. "suggest": {
  7196. "ext-mbstring": "For best performance"
  7197. },
  7198. "type": "library",
  7199. "extra": {
  7200. "branch-alias": {
  7201. "dev-main": "1.28-dev"
  7202. },
  7203. "thanks": {
  7204. "name": "symfony/polyfill",
  7205. "url": "https://github.com/symfony/polyfill"
  7206. }
  7207. },
  7208. "autoload": {
  7209. "files": [
  7210. "bootstrap.php"
  7211. ],
  7212. "psr-4": {
  7213. "Symfony\\Polyfill\\Mbstring\\": ""
  7214. }
  7215. },
  7216. "notification-url": "https://packagist.org/downloads/",
  7217. "license": [
  7218. "MIT"
  7219. ],
  7220. "authors": [
  7221. {
  7222. "name": "Nicolas Grekas",
  7223. "email": "p@tchwork.com"
  7224. },
  7225. {
  7226. "name": "Symfony Community",
  7227. "homepage": "https://symfony.com/contributors"
  7228. }
  7229. ],
  7230. "description": "Symfony polyfill for the Mbstring extension",
  7231. "homepage": "https://symfony.com",
  7232. "keywords": [
  7233. "compatibility",
  7234. "mbstring",
  7235. "polyfill",
  7236. "portable",
  7237. "shim"
  7238. ],
  7239. "support": {
  7240. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  7241. },
  7242. "funding": [
  7243. {
  7244. "url": "https://symfony.com/sponsor",
  7245. "type": "custom"
  7246. },
  7247. {
  7248. "url": "https://github.com/fabpot",
  7249. "type": "github"
  7250. },
  7251. {
  7252. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7253. "type": "tidelift"
  7254. }
  7255. ],
  7256. "time": "2023-07-28T09:04:16+00:00"
  7257. },
  7258. {
  7259. "name": "symfony/polyfill-php72",
  7260. "version": "v1.28.0",
  7261. "source": {
  7262. "type": "git",
  7263. "url": "https://github.com/symfony/polyfill-php72.git",
  7264. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  7265. },
  7266. "dist": {
  7267. "type": "zip",
  7268. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  7269. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  7270. "shasum": ""
  7271. },
  7272. "require": {
  7273. "php": ">=7.1"
  7274. },
  7275. "type": "library",
  7276. "extra": {
  7277. "branch-alias": {
  7278. "dev-main": "1.28-dev"
  7279. },
  7280. "thanks": {
  7281. "name": "symfony/polyfill",
  7282. "url": "https://github.com/symfony/polyfill"
  7283. }
  7284. },
  7285. "autoload": {
  7286. "files": [
  7287. "bootstrap.php"
  7288. ],
  7289. "psr-4": {
  7290. "Symfony\\Polyfill\\Php72\\": ""
  7291. }
  7292. },
  7293. "notification-url": "https://packagist.org/downloads/",
  7294. "license": [
  7295. "MIT"
  7296. ],
  7297. "authors": [
  7298. {
  7299. "name": "Nicolas Grekas",
  7300. "email": "p@tchwork.com"
  7301. },
  7302. {
  7303. "name": "Symfony Community",
  7304. "homepage": "https://symfony.com/contributors"
  7305. }
  7306. ],
  7307. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7308. "homepage": "https://symfony.com",
  7309. "keywords": [
  7310. "compatibility",
  7311. "polyfill",
  7312. "portable",
  7313. "shim"
  7314. ],
  7315. "support": {
  7316. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  7317. },
  7318. "funding": [
  7319. {
  7320. "url": "https://symfony.com/sponsor",
  7321. "type": "custom"
  7322. },
  7323. {
  7324. "url": "https://github.com/fabpot",
  7325. "type": "github"
  7326. },
  7327. {
  7328. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7329. "type": "tidelift"
  7330. }
  7331. ],
  7332. "time": "2023-01-26T09:26:14+00:00"
  7333. },
  7334. {
  7335. "name": "symfony/polyfill-php73",
  7336. "version": "v1.28.0",
  7337. "source": {
  7338. "type": "git",
  7339. "url": "https://github.com/symfony/polyfill-php73.git",
  7340. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  7341. },
  7342. "dist": {
  7343. "type": "zip",
  7344. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  7345. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  7346. "shasum": ""
  7347. },
  7348. "require": {
  7349. "php": ">=7.1"
  7350. },
  7351. "type": "library",
  7352. "extra": {
  7353. "branch-alias": {
  7354. "dev-main": "1.28-dev"
  7355. },
  7356. "thanks": {
  7357. "name": "symfony/polyfill",
  7358. "url": "https://github.com/symfony/polyfill"
  7359. }
  7360. },
  7361. "autoload": {
  7362. "files": [
  7363. "bootstrap.php"
  7364. ],
  7365. "psr-4": {
  7366. "Symfony\\Polyfill\\Php73\\": ""
  7367. },
  7368. "classmap": [
  7369. "Resources/stubs"
  7370. ]
  7371. },
  7372. "notification-url": "https://packagist.org/downloads/",
  7373. "license": [
  7374. "MIT"
  7375. ],
  7376. "authors": [
  7377. {
  7378. "name": "Nicolas Grekas",
  7379. "email": "p@tchwork.com"
  7380. },
  7381. {
  7382. "name": "Symfony Community",
  7383. "homepage": "https://symfony.com/contributors"
  7384. }
  7385. ],
  7386. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  7387. "homepage": "https://symfony.com",
  7388. "keywords": [
  7389. "compatibility",
  7390. "polyfill",
  7391. "portable",
  7392. "shim"
  7393. ],
  7394. "support": {
  7395. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  7396. },
  7397. "funding": [
  7398. {
  7399. "url": "https://symfony.com/sponsor",
  7400. "type": "custom"
  7401. },
  7402. {
  7403. "url": "https://github.com/fabpot",
  7404. "type": "github"
  7405. },
  7406. {
  7407. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7408. "type": "tidelift"
  7409. }
  7410. ],
  7411. "time": "2023-01-26T09:26:14+00:00"
  7412. },
  7413. {
  7414. "name": "symfony/polyfill-php80",
  7415. "version": "v1.28.0",
  7416. "source": {
  7417. "type": "git",
  7418. "url": "https://github.com/symfony/polyfill-php80.git",
  7419. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  7420. },
  7421. "dist": {
  7422. "type": "zip",
  7423. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7424. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7425. "shasum": ""
  7426. },
  7427. "require": {
  7428. "php": ">=7.1"
  7429. },
  7430. "type": "library",
  7431. "extra": {
  7432. "branch-alias": {
  7433. "dev-main": "1.28-dev"
  7434. },
  7435. "thanks": {
  7436. "name": "symfony/polyfill",
  7437. "url": "https://github.com/symfony/polyfill"
  7438. }
  7439. },
  7440. "autoload": {
  7441. "files": [
  7442. "bootstrap.php"
  7443. ],
  7444. "psr-4": {
  7445. "Symfony\\Polyfill\\Php80\\": ""
  7446. },
  7447. "classmap": [
  7448. "Resources/stubs"
  7449. ]
  7450. },
  7451. "notification-url": "https://packagist.org/downloads/",
  7452. "license": [
  7453. "MIT"
  7454. ],
  7455. "authors": [
  7456. {
  7457. "name": "Ion Bazan",
  7458. "email": "ion.bazan@gmail.com"
  7459. },
  7460. {
  7461. "name": "Nicolas Grekas",
  7462. "email": "p@tchwork.com"
  7463. },
  7464. {
  7465. "name": "Symfony Community",
  7466. "homepage": "https://symfony.com/contributors"
  7467. }
  7468. ],
  7469. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7470. "homepage": "https://symfony.com",
  7471. "keywords": [
  7472. "compatibility",
  7473. "polyfill",
  7474. "portable",
  7475. "shim"
  7476. ],
  7477. "support": {
  7478. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  7479. },
  7480. "funding": [
  7481. {
  7482. "url": "https://symfony.com/sponsor",
  7483. "type": "custom"
  7484. },
  7485. {
  7486. "url": "https://github.com/fabpot",
  7487. "type": "github"
  7488. },
  7489. {
  7490. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7491. "type": "tidelift"
  7492. }
  7493. ],
  7494. "time": "2023-01-26T09:26:14+00:00"
  7495. },
  7496. {
  7497. "name": "symfony/polyfill-php81",
  7498. "version": "v1.28.0",
  7499. "source": {
  7500. "type": "git",
  7501. "url": "https://github.com/symfony/polyfill-php81.git",
  7502. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  7503. },
  7504. "dist": {
  7505. "type": "zip",
  7506. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  7507. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  7508. "shasum": ""
  7509. },
  7510. "require": {
  7511. "php": ">=7.1"
  7512. },
  7513. "type": "library",
  7514. "extra": {
  7515. "branch-alias": {
  7516. "dev-main": "1.28-dev"
  7517. },
  7518. "thanks": {
  7519. "name": "symfony/polyfill",
  7520. "url": "https://github.com/symfony/polyfill"
  7521. }
  7522. },
  7523. "autoload": {
  7524. "files": [
  7525. "bootstrap.php"
  7526. ],
  7527. "psr-4": {
  7528. "Symfony\\Polyfill\\Php81\\": ""
  7529. },
  7530. "classmap": [
  7531. "Resources/stubs"
  7532. ]
  7533. },
  7534. "notification-url": "https://packagist.org/downloads/",
  7535. "license": [
  7536. "MIT"
  7537. ],
  7538. "authors": [
  7539. {
  7540. "name": "Nicolas Grekas",
  7541. "email": "p@tchwork.com"
  7542. },
  7543. {
  7544. "name": "Symfony Community",
  7545. "homepage": "https://symfony.com/contributors"
  7546. }
  7547. ],
  7548. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7549. "homepage": "https://symfony.com",
  7550. "keywords": [
  7551. "compatibility",
  7552. "polyfill",
  7553. "portable",
  7554. "shim"
  7555. ],
  7556. "support": {
  7557. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  7558. },
  7559. "funding": [
  7560. {
  7561. "url": "https://symfony.com/sponsor",
  7562. "type": "custom"
  7563. },
  7564. {
  7565. "url": "https://github.com/fabpot",
  7566. "type": "github"
  7567. },
  7568. {
  7569. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7570. "type": "tidelift"
  7571. }
  7572. ],
  7573. "time": "2023-01-26T09:26:14+00:00"
  7574. },
  7575. {
  7576. "name": "symfony/process",
  7577. "version": "v5.4.28",
  7578. "source": {
  7579. "type": "git",
  7580. "url": "https://github.com/symfony/process.git",
  7581. "reference": "45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b"
  7582. },
  7583. "dist": {
  7584. "type": "zip",
  7585. "url": "https://api.github.com/repos/symfony/process/zipball/45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b",
  7586. "reference": "45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b",
  7587. "shasum": ""
  7588. },
  7589. "require": {
  7590. "php": ">=7.2.5",
  7591. "symfony/polyfill-php80": "^1.16"
  7592. },
  7593. "type": "library",
  7594. "autoload": {
  7595. "psr-4": {
  7596. "Symfony\\Component\\Process\\": ""
  7597. },
  7598. "exclude-from-classmap": [
  7599. "/Tests/"
  7600. ]
  7601. },
  7602. "notification-url": "https://packagist.org/downloads/",
  7603. "license": [
  7604. "MIT"
  7605. ],
  7606. "authors": [
  7607. {
  7608. "name": "Fabien Potencier",
  7609. "email": "fabien@symfony.com"
  7610. },
  7611. {
  7612. "name": "Symfony Community",
  7613. "homepage": "https://symfony.com/contributors"
  7614. }
  7615. ],
  7616. "description": "Executes commands in sub-processes",
  7617. "homepage": "https://symfony.com",
  7618. "support": {
  7619. "source": "https://github.com/symfony/process/tree/v5.4.28"
  7620. },
  7621. "funding": [
  7622. {
  7623. "url": "https://symfony.com/sponsor",
  7624. "type": "custom"
  7625. },
  7626. {
  7627. "url": "https://github.com/fabpot",
  7628. "type": "github"
  7629. },
  7630. {
  7631. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7632. "type": "tidelift"
  7633. }
  7634. ],
  7635. "time": "2023-08-07T10:36:04+00:00"
  7636. },
  7637. {
  7638. "name": "symfony/routing",
  7639. "version": "v5.4.33",
  7640. "source": {
  7641. "type": "git",
  7642. "url": "https://github.com/symfony/routing.git",
  7643. "reference": "5b5b86670f947db92ab54cdcff585e76064d0b04"
  7644. },
  7645. "dist": {
  7646. "type": "zip",
  7647. "url": "https://api.github.com/repos/symfony/routing/zipball/5b5b86670f947db92ab54cdcff585e76064d0b04",
  7648. "reference": "5b5b86670f947db92ab54cdcff585e76064d0b04",
  7649. "shasum": ""
  7650. },
  7651. "require": {
  7652. "php": ">=7.2.5",
  7653. "symfony/deprecation-contracts": "^2.1|^3",
  7654. "symfony/polyfill-php80": "^1.16"
  7655. },
  7656. "conflict": {
  7657. "doctrine/annotations": "<1.12",
  7658. "symfony/config": "<5.3",
  7659. "symfony/dependency-injection": "<4.4",
  7660. "symfony/yaml": "<4.4"
  7661. },
  7662. "require-dev": {
  7663. "doctrine/annotations": "^1.12|^2",
  7664. "psr/log": "^1|^2|^3",
  7665. "symfony/config": "^5.3|^6.0",
  7666. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7667. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7668. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7669. "symfony/yaml": "^4.4|^5.0|^6.0"
  7670. },
  7671. "suggest": {
  7672. "symfony/config": "For using the all-in-one router or any loader",
  7673. "symfony/expression-language": "For using expression matching",
  7674. "symfony/http-foundation": "For using a Symfony Request object",
  7675. "symfony/yaml": "For using the YAML loader"
  7676. },
  7677. "type": "library",
  7678. "autoload": {
  7679. "psr-4": {
  7680. "Symfony\\Component\\Routing\\": ""
  7681. },
  7682. "exclude-from-classmap": [
  7683. "/Tests/"
  7684. ]
  7685. },
  7686. "notification-url": "https://packagist.org/downloads/",
  7687. "license": [
  7688. "MIT"
  7689. ],
  7690. "authors": [
  7691. {
  7692. "name": "Fabien Potencier",
  7693. "email": "fabien@symfony.com"
  7694. },
  7695. {
  7696. "name": "Symfony Community",
  7697. "homepage": "https://symfony.com/contributors"
  7698. }
  7699. ],
  7700. "description": "Maps an HTTP request to a set of configuration variables",
  7701. "homepage": "https://symfony.com",
  7702. "keywords": [
  7703. "router",
  7704. "routing",
  7705. "uri",
  7706. "url"
  7707. ],
  7708. "support": {
  7709. "source": "https://github.com/symfony/routing/tree/v5.4.33"
  7710. },
  7711. "funding": [
  7712. {
  7713. "url": "https://symfony.com/sponsor",
  7714. "type": "custom"
  7715. },
  7716. {
  7717. "url": "https://github.com/fabpot",
  7718. "type": "github"
  7719. },
  7720. {
  7721. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7722. "type": "tidelift"
  7723. }
  7724. ],
  7725. "time": "2023-12-01T09:28:00+00:00"
  7726. },
  7727. {
  7728. "name": "symfony/service-contracts",
  7729. "version": "v2.5.2",
  7730. "source": {
  7731. "type": "git",
  7732. "url": "https://github.com/symfony/service-contracts.git",
  7733. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  7734. },
  7735. "dist": {
  7736. "type": "zip",
  7737. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7738. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7739. "shasum": ""
  7740. },
  7741. "require": {
  7742. "php": ">=7.2.5",
  7743. "psr/container": "^1.1",
  7744. "symfony/deprecation-contracts": "^2.1|^3"
  7745. },
  7746. "conflict": {
  7747. "ext-psr": "<1.1|>=2"
  7748. },
  7749. "suggest": {
  7750. "symfony/service-implementation": ""
  7751. },
  7752. "type": "library",
  7753. "extra": {
  7754. "branch-alias": {
  7755. "dev-main": "2.5-dev"
  7756. },
  7757. "thanks": {
  7758. "name": "symfony/contracts",
  7759. "url": "https://github.com/symfony/contracts"
  7760. }
  7761. },
  7762. "autoload": {
  7763. "psr-4": {
  7764. "Symfony\\Contracts\\Service\\": ""
  7765. }
  7766. },
  7767. "notification-url": "https://packagist.org/downloads/",
  7768. "license": [
  7769. "MIT"
  7770. ],
  7771. "authors": [
  7772. {
  7773. "name": "Nicolas Grekas",
  7774. "email": "p@tchwork.com"
  7775. },
  7776. {
  7777. "name": "Symfony Community",
  7778. "homepage": "https://symfony.com/contributors"
  7779. }
  7780. ],
  7781. "description": "Generic abstractions related to writing services",
  7782. "homepage": "https://symfony.com",
  7783. "keywords": [
  7784. "abstractions",
  7785. "contracts",
  7786. "decoupling",
  7787. "interfaces",
  7788. "interoperability",
  7789. "standards"
  7790. ],
  7791. "support": {
  7792. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  7793. },
  7794. "funding": [
  7795. {
  7796. "url": "https://symfony.com/sponsor",
  7797. "type": "custom"
  7798. },
  7799. {
  7800. "url": "https://github.com/fabpot",
  7801. "type": "github"
  7802. },
  7803. {
  7804. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7805. "type": "tidelift"
  7806. }
  7807. ],
  7808. "time": "2022-05-30T19:17:29+00:00"
  7809. },
  7810. {
  7811. "name": "symfony/string",
  7812. "version": "v6.0.19",
  7813. "source": {
  7814. "type": "git",
  7815. "url": "https://github.com/symfony/string.git",
  7816. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  7817. },
  7818. "dist": {
  7819. "type": "zip",
  7820. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  7821. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  7822. "shasum": ""
  7823. },
  7824. "require": {
  7825. "php": ">=8.0.2",
  7826. "symfony/polyfill-ctype": "~1.8",
  7827. "symfony/polyfill-intl-grapheme": "~1.0",
  7828. "symfony/polyfill-intl-normalizer": "~1.0",
  7829. "symfony/polyfill-mbstring": "~1.0"
  7830. },
  7831. "conflict": {
  7832. "symfony/translation-contracts": "<2.0"
  7833. },
  7834. "require-dev": {
  7835. "symfony/error-handler": "^5.4|^6.0",
  7836. "symfony/http-client": "^5.4|^6.0",
  7837. "symfony/translation-contracts": "^2.0|^3.0",
  7838. "symfony/var-exporter": "^5.4|^6.0"
  7839. },
  7840. "type": "library",
  7841. "autoload": {
  7842. "files": [
  7843. "Resources/functions.php"
  7844. ],
  7845. "psr-4": {
  7846. "Symfony\\Component\\String\\": ""
  7847. },
  7848. "exclude-from-classmap": [
  7849. "/Tests/"
  7850. ]
  7851. },
  7852. "notification-url": "https://packagist.org/downloads/",
  7853. "license": [
  7854. "MIT"
  7855. ],
  7856. "authors": [
  7857. {
  7858. "name": "Nicolas Grekas",
  7859. "email": "p@tchwork.com"
  7860. },
  7861. {
  7862. "name": "Symfony Community",
  7863. "homepage": "https://symfony.com/contributors"
  7864. }
  7865. ],
  7866. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7867. "homepage": "https://symfony.com",
  7868. "keywords": [
  7869. "grapheme",
  7870. "i18n",
  7871. "string",
  7872. "unicode",
  7873. "utf-8",
  7874. "utf8"
  7875. ],
  7876. "support": {
  7877. "source": "https://github.com/symfony/string/tree/v6.0.19"
  7878. },
  7879. "funding": [
  7880. {
  7881. "url": "https://symfony.com/sponsor",
  7882. "type": "custom"
  7883. },
  7884. {
  7885. "url": "https://github.com/fabpot",
  7886. "type": "github"
  7887. },
  7888. {
  7889. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7890. "type": "tidelift"
  7891. }
  7892. ],
  7893. "time": "2023-01-01T08:36:10+00:00"
  7894. },
  7895. {
  7896. "name": "symfony/translation",
  7897. "version": "v6.0.19",
  7898. "source": {
  7899. "type": "git",
  7900. "url": "https://github.com/symfony/translation.git",
  7901. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  7902. },
  7903. "dist": {
  7904. "type": "zip",
  7905. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7906. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7907. "shasum": ""
  7908. },
  7909. "require": {
  7910. "php": ">=8.0.2",
  7911. "symfony/polyfill-mbstring": "~1.0",
  7912. "symfony/translation-contracts": "^2.3|^3.0"
  7913. },
  7914. "conflict": {
  7915. "symfony/config": "<5.4",
  7916. "symfony/console": "<5.4",
  7917. "symfony/dependency-injection": "<5.4",
  7918. "symfony/http-kernel": "<5.4",
  7919. "symfony/twig-bundle": "<5.4",
  7920. "symfony/yaml": "<5.4"
  7921. },
  7922. "provide": {
  7923. "symfony/translation-implementation": "2.3|3.0"
  7924. },
  7925. "require-dev": {
  7926. "psr/log": "^1|^2|^3",
  7927. "symfony/config": "^5.4|^6.0",
  7928. "symfony/console": "^5.4|^6.0",
  7929. "symfony/dependency-injection": "^5.4|^6.0",
  7930. "symfony/finder": "^5.4|^6.0",
  7931. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7932. "symfony/http-kernel": "^5.4|^6.0",
  7933. "symfony/intl": "^5.4|^6.0",
  7934. "symfony/polyfill-intl-icu": "^1.21",
  7935. "symfony/service-contracts": "^1.1.2|^2|^3",
  7936. "symfony/yaml": "^5.4|^6.0"
  7937. },
  7938. "suggest": {
  7939. "psr/log-implementation": "To use logging capability in translator",
  7940. "symfony/config": "",
  7941. "symfony/yaml": ""
  7942. },
  7943. "type": "library",
  7944. "autoload": {
  7945. "files": [
  7946. "Resources/functions.php"
  7947. ],
  7948. "psr-4": {
  7949. "Symfony\\Component\\Translation\\": ""
  7950. },
  7951. "exclude-from-classmap": [
  7952. "/Tests/"
  7953. ]
  7954. },
  7955. "notification-url": "https://packagist.org/downloads/",
  7956. "license": [
  7957. "MIT"
  7958. ],
  7959. "authors": [
  7960. {
  7961. "name": "Fabien Potencier",
  7962. "email": "fabien@symfony.com"
  7963. },
  7964. {
  7965. "name": "Symfony Community",
  7966. "homepage": "https://symfony.com/contributors"
  7967. }
  7968. ],
  7969. "description": "Provides tools to internationalize your application",
  7970. "homepage": "https://symfony.com",
  7971. "support": {
  7972. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  7973. },
  7974. "funding": [
  7975. {
  7976. "url": "https://symfony.com/sponsor",
  7977. "type": "custom"
  7978. },
  7979. {
  7980. "url": "https://github.com/fabpot",
  7981. "type": "github"
  7982. },
  7983. {
  7984. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7985. "type": "tidelift"
  7986. }
  7987. ],
  7988. "time": "2023-01-01T08:36:10+00:00"
  7989. },
  7990. {
  7991. "name": "symfony/translation-contracts",
  7992. "version": "v3.0.2",
  7993. "source": {
  7994. "type": "git",
  7995. "url": "https://github.com/symfony/translation-contracts.git",
  7996. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  7997. },
  7998. "dist": {
  7999. "type": "zip",
  8000. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  8001. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  8002. "shasum": ""
  8003. },
  8004. "require": {
  8005. "php": ">=8.0.2"
  8006. },
  8007. "suggest": {
  8008. "symfony/translation-implementation": ""
  8009. },
  8010. "type": "library",
  8011. "extra": {
  8012. "branch-alias": {
  8013. "dev-main": "3.0-dev"
  8014. },
  8015. "thanks": {
  8016. "name": "symfony/contracts",
  8017. "url": "https://github.com/symfony/contracts"
  8018. }
  8019. },
  8020. "autoload": {
  8021. "psr-4": {
  8022. "Symfony\\Contracts\\Translation\\": ""
  8023. }
  8024. },
  8025. "notification-url": "https://packagist.org/downloads/",
  8026. "license": [
  8027. "MIT"
  8028. ],
  8029. "authors": [
  8030. {
  8031. "name": "Nicolas Grekas",
  8032. "email": "p@tchwork.com"
  8033. },
  8034. {
  8035. "name": "Symfony Community",
  8036. "homepage": "https://symfony.com/contributors"
  8037. }
  8038. ],
  8039. "description": "Generic abstractions related to translation",
  8040. "homepage": "https://symfony.com",
  8041. "keywords": [
  8042. "abstractions",
  8043. "contracts",
  8044. "decoupling",
  8045. "interfaces",
  8046. "interoperability",
  8047. "standards"
  8048. ],
  8049. "support": {
  8050. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  8051. },
  8052. "funding": [
  8053. {
  8054. "url": "https://symfony.com/sponsor",
  8055. "type": "custom"
  8056. },
  8057. {
  8058. "url": "https://github.com/fabpot",
  8059. "type": "github"
  8060. },
  8061. {
  8062. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8063. "type": "tidelift"
  8064. }
  8065. ],
  8066. "time": "2022-06-27T17:10:44+00:00"
  8067. },
  8068. {
  8069. "name": "symfony/var-dumper",
  8070. "version": "v5.4.29",
  8071. "source": {
  8072. "type": "git",
  8073. "url": "https://github.com/symfony/var-dumper.git",
  8074. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65"
  8075. },
  8076. "dist": {
  8077. "type": "zip",
  8078. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  8079. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  8080. "shasum": ""
  8081. },
  8082. "require": {
  8083. "php": ">=7.2.5",
  8084. "symfony/polyfill-mbstring": "~1.0",
  8085. "symfony/polyfill-php80": "^1.16"
  8086. },
  8087. "conflict": {
  8088. "symfony/console": "<4.4"
  8089. },
  8090. "require-dev": {
  8091. "ext-iconv": "*",
  8092. "symfony/console": "^4.4|^5.0|^6.0",
  8093. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  8094. "symfony/process": "^4.4|^5.0|^6.0",
  8095. "symfony/uid": "^5.1|^6.0",
  8096. "twig/twig": "^2.13|^3.0.4"
  8097. },
  8098. "suggest": {
  8099. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8100. "ext-intl": "To show region name in time zone dump",
  8101. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8102. },
  8103. "bin": [
  8104. "Resources/bin/var-dump-server"
  8105. ],
  8106. "type": "library",
  8107. "autoload": {
  8108. "files": [
  8109. "Resources/functions/dump.php"
  8110. ],
  8111. "psr-4": {
  8112. "Symfony\\Component\\VarDumper\\": ""
  8113. },
  8114. "exclude-from-classmap": [
  8115. "/Tests/"
  8116. ]
  8117. },
  8118. "notification-url": "https://packagist.org/downloads/",
  8119. "license": [
  8120. "MIT"
  8121. ],
  8122. "authors": [
  8123. {
  8124. "name": "Nicolas Grekas",
  8125. "email": "p@tchwork.com"
  8126. },
  8127. {
  8128. "name": "Symfony Community",
  8129. "homepage": "https://symfony.com/contributors"
  8130. }
  8131. ],
  8132. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8133. "homepage": "https://symfony.com",
  8134. "keywords": [
  8135. "debug",
  8136. "dump"
  8137. ],
  8138. "support": {
  8139. "source": "https://github.com/symfony/var-dumper/tree/v5.4.29"
  8140. },
  8141. "funding": [
  8142. {
  8143. "url": "https://symfony.com/sponsor",
  8144. "type": "custom"
  8145. },
  8146. {
  8147. "url": "https://github.com/fabpot",
  8148. "type": "github"
  8149. },
  8150. {
  8151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8152. "type": "tidelift"
  8153. }
  8154. ],
  8155. "time": "2023-09-12T10:09:58+00:00"
  8156. },
  8157. {
  8158. "name": "tightenco/collect",
  8159. "version": "v9.52.7",
  8160. "source": {
  8161. "type": "git",
  8162. "url": "https://github.com/tighten/collect.git",
  8163. "reference": "b15143cd11fe01a700fcc449df61adc64452fa6d"
  8164. },
  8165. "dist": {
  8166. "type": "zip",
  8167. "url": "https://api.github.com/repos/tighten/collect/zipball/b15143cd11fe01a700fcc449df61adc64452fa6d",
  8168. "reference": "b15143cd11fe01a700fcc449df61adc64452fa6d",
  8169. "shasum": ""
  8170. },
  8171. "require": {
  8172. "php": "^8.0",
  8173. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  8174. },
  8175. "require-dev": {
  8176. "mockery/mockery": "^1.0",
  8177. "nesbot/carbon": "^2.23.0",
  8178. "phpunit/phpunit": "^8.3"
  8179. },
  8180. "type": "library",
  8181. "autoload": {
  8182. "files": [
  8183. "src/Collect/Support/helpers.php",
  8184. "src/Collect/Support/alias.php"
  8185. ],
  8186. "psr-4": {
  8187. "Tightenco\\Collect\\": "src/Collect"
  8188. }
  8189. },
  8190. "notification-url": "https://packagist.org/downloads/",
  8191. "license": [
  8192. "MIT"
  8193. ],
  8194. "authors": [
  8195. {
  8196. "name": "Taylor Otwell",
  8197. "email": "taylorotwell@gmail.com"
  8198. }
  8199. ],
  8200. "description": "Collect - Illuminate Collections as a separate package.",
  8201. "keywords": [
  8202. "collection",
  8203. "laravel"
  8204. ],
  8205. "support": {
  8206. "issues": "https://github.com/tighten/collect/issues",
  8207. "source": "https://github.com/tighten/collect/tree/v9.52.7"
  8208. },
  8209. "time": "2023-04-14T21:51:36+00:00"
  8210. },
  8211. {
  8212. "name": "tijsverkoyen/css-to-inline-styles",
  8213. "version": "v2.2.7",
  8214. "source": {
  8215. "type": "git",
  8216. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8217. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  8218. },
  8219. "dist": {
  8220. "type": "zip",
  8221. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8222. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8223. "shasum": ""
  8224. },
  8225. "require": {
  8226. "ext-dom": "*",
  8227. "ext-libxml": "*",
  8228. "php": "^5.5 || ^7.0 || ^8.0",
  8229. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  8230. },
  8231. "require-dev": {
  8232. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8233. },
  8234. "type": "library",
  8235. "extra": {
  8236. "branch-alias": {
  8237. "dev-master": "2.2.x-dev"
  8238. }
  8239. },
  8240. "autoload": {
  8241. "psr-4": {
  8242. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8243. }
  8244. },
  8245. "notification-url": "https://packagist.org/downloads/",
  8246. "license": [
  8247. "BSD-3-Clause"
  8248. ],
  8249. "authors": [
  8250. {
  8251. "name": "Tijs Verkoyen",
  8252. "email": "css_to_inline_styles@verkoyen.eu",
  8253. "role": "Developer"
  8254. }
  8255. ],
  8256. "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.",
  8257. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8258. "support": {
  8259. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8260. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  8261. },
  8262. "time": "2023-12-08T13:03:43+00:00"
  8263. },
  8264. {
  8265. "name": "vlucas/phpdotenv",
  8266. "version": "v5.6.0",
  8267. "source": {
  8268. "type": "git",
  8269. "url": "https://github.com/vlucas/phpdotenv.git",
  8270. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  8271. },
  8272. "dist": {
  8273. "type": "zip",
  8274. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  8275. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  8276. "shasum": ""
  8277. },
  8278. "require": {
  8279. "ext-pcre": "*",
  8280. "graham-campbell/result-type": "^1.1.2",
  8281. "php": "^7.2.5 || ^8.0",
  8282. "phpoption/phpoption": "^1.9.2",
  8283. "symfony/polyfill-ctype": "^1.24",
  8284. "symfony/polyfill-mbstring": "^1.24",
  8285. "symfony/polyfill-php80": "^1.24"
  8286. },
  8287. "require-dev": {
  8288. "bamarni/composer-bin-plugin": "^1.8.2",
  8289. "ext-filter": "*",
  8290. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8291. },
  8292. "suggest": {
  8293. "ext-filter": "Required to use the boolean validator."
  8294. },
  8295. "type": "library",
  8296. "extra": {
  8297. "bamarni-bin": {
  8298. "bin-links": true,
  8299. "forward-command": true
  8300. },
  8301. "branch-alias": {
  8302. "dev-master": "5.6-dev"
  8303. }
  8304. },
  8305. "autoload": {
  8306. "psr-4": {
  8307. "Dotenv\\": "src/"
  8308. }
  8309. },
  8310. "notification-url": "https://packagist.org/downloads/",
  8311. "license": [
  8312. "BSD-3-Clause"
  8313. ],
  8314. "authors": [
  8315. {
  8316. "name": "Graham Campbell",
  8317. "email": "hello@gjcampbell.co.uk",
  8318. "homepage": "https://github.com/GrahamCampbell"
  8319. },
  8320. {
  8321. "name": "Vance Lucas",
  8322. "email": "vance@vancelucas.com",
  8323. "homepage": "https://github.com/vlucas"
  8324. }
  8325. ],
  8326. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8327. "keywords": [
  8328. "dotenv",
  8329. "env",
  8330. "environment"
  8331. ],
  8332. "support": {
  8333. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8334. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  8335. },
  8336. "funding": [
  8337. {
  8338. "url": "https://github.com/GrahamCampbell",
  8339. "type": "github"
  8340. },
  8341. {
  8342. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8343. "type": "tidelift"
  8344. }
  8345. ],
  8346. "time": "2023-11-12T22:43:29+00:00"
  8347. },
  8348. {
  8349. "name": "voku/portable-ascii",
  8350. "version": "1.6.1",
  8351. "source": {
  8352. "type": "git",
  8353. "url": "https://github.com/voku/portable-ascii.git",
  8354. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  8355. },
  8356. "dist": {
  8357. "type": "zip",
  8358. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  8359. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  8360. "shasum": ""
  8361. },
  8362. "require": {
  8363. "php": ">=7.0.0"
  8364. },
  8365. "require-dev": {
  8366. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8367. },
  8368. "suggest": {
  8369. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8370. },
  8371. "type": "library",
  8372. "autoload": {
  8373. "psr-4": {
  8374. "voku\\": "src/voku/"
  8375. }
  8376. },
  8377. "notification-url": "https://packagist.org/downloads/",
  8378. "license": [
  8379. "MIT"
  8380. ],
  8381. "authors": [
  8382. {
  8383. "name": "Lars Moelleken",
  8384. "homepage": "http://www.moelleken.org/"
  8385. }
  8386. ],
  8387. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8388. "homepage": "https://github.com/voku/portable-ascii",
  8389. "keywords": [
  8390. "ascii",
  8391. "clean",
  8392. "php"
  8393. ],
  8394. "support": {
  8395. "issues": "https://github.com/voku/portable-ascii/issues",
  8396. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  8397. },
  8398. "funding": [
  8399. {
  8400. "url": "https://www.paypal.me/moelleken",
  8401. "type": "custom"
  8402. },
  8403. {
  8404. "url": "https://github.com/voku",
  8405. "type": "github"
  8406. },
  8407. {
  8408. "url": "https://opencollective.com/portable-ascii",
  8409. "type": "open_collective"
  8410. },
  8411. {
  8412. "url": "https://www.patreon.com/voku",
  8413. "type": "patreon"
  8414. },
  8415. {
  8416. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8417. "type": "tidelift"
  8418. }
  8419. ],
  8420. "time": "2022-01-24T18:55:24+00:00"
  8421. },
  8422. {
  8423. "name": "webmozart/assert",
  8424. "version": "1.11.0",
  8425. "source": {
  8426. "type": "git",
  8427. "url": "https://github.com/webmozarts/assert.git",
  8428. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8429. },
  8430. "dist": {
  8431. "type": "zip",
  8432. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8433. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8434. "shasum": ""
  8435. },
  8436. "require": {
  8437. "ext-ctype": "*",
  8438. "php": "^7.2 || ^8.0"
  8439. },
  8440. "conflict": {
  8441. "phpstan/phpstan": "<0.12.20",
  8442. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8443. },
  8444. "require-dev": {
  8445. "phpunit/phpunit": "^8.5.13"
  8446. },
  8447. "type": "library",
  8448. "extra": {
  8449. "branch-alias": {
  8450. "dev-master": "1.10-dev"
  8451. }
  8452. },
  8453. "autoload": {
  8454. "psr-4": {
  8455. "Webmozart\\Assert\\": "src/"
  8456. }
  8457. },
  8458. "notification-url": "https://packagist.org/downloads/",
  8459. "license": [
  8460. "MIT"
  8461. ],
  8462. "authors": [
  8463. {
  8464. "name": "Bernhard Schussek",
  8465. "email": "bschussek@gmail.com"
  8466. }
  8467. ],
  8468. "description": "Assertions to validate method input/output with nice error messages.",
  8469. "keywords": [
  8470. "assert",
  8471. "check",
  8472. "validate"
  8473. ],
  8474. "support": {
  8475. "issues": "https://github.com/webmozarts/assert/issues",
  8476. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8477. },
  8478. "time": "2022-06-03T18:03:27+00:00"
  8479. },
  8480. {
  8481. "name": "wechatpay/wechatpay-guzzle-middleware",
  8482. "version": "0.2.2",
  8483. "source": {
  8484. "type": "git",
  8485. "url": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware.git",
  8486. "reference": "6782ac33ed8cf97628609a71cdc5e84a6a40677a"
  8487. },
  8488. "dist": {
  8489. "type": "zip",
  8490. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-guzzle-middleware/zipball/6782ac33ed8cf97628609a71cdc5e84a6a40677a",
  8491. "reference": "6782ac33ed8cf97628609a71cdc5e84a6a40677a",
  8492. "shasum": ""
  8493. },
  8494. "require": {
  8495. "ext-openssl": "*",
  8496. "php": ">=5.5"
  8497. },
  8498. "require-dev": {
  8499. "guzzlehttp/guzzle": "^6.3"
  8500. },
  8501. "suggest": {
  8502. "ext-bcmath": "Require bcmath in php 5.* version.",
  8503. "guzzlehttp/guzzle": "For using wechatpay guzzle middleware."
  8504. },
  8505. "bin": [
  8506. "tool/CertificateDownloader.php"
  8507. ],
  8508. "type": "library",
  8509. "autoload": {
  8510. "psr-4": {
  8511. "WechatPay\\GuzzleMiddleware\\": "src/"
  8512. }
  8513. },
  8514. "notification-url": "https://packagist.org/downloads/",
  8515. "license": [
  8516. "Apache-2.0"
  8517. ],
  8518. "description": "WechatPay API V3 Guzzle Middleware",
  8519. "homepage": "https://wechatpay-api.gitbook.io/wechatpay-api-v3/",
  8520. "keywords": [
  8521. "wechatpay"
  8522. ],
  8523. "support": {
  8524. "issues": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware/issues",
  8525. "source": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware/tree/v0.2.2"
  8526. },
  8527. "time": "2021-03-05T03:09:29+00:00"
  8528. },
  8529. {
  8530. "name": "yansongda/pay",
  8531. "version": "v3.4.2",
  8532. "source": {
  8533. "type": "git",
  8534. "url": "https://github.com/yansongda/pay.git",
  8535. "reference": "de827f7a594ef02432432da1f873926662b478fc"
  8536. },
  8537. "dist": {
  8538. "type": "zip",
  8539. "url": "https://api.github.com/repos/yansongda/pay/zipball/de827f7a594ef02432432da1f873926662b478fc",
  8540. "reference": "de827f7a594ef02432432da1f873926662b478fc",
  8541. "shasum": ""
  8542. },
  8543. "require": {
  8544. "ext-bcmath": "*",
  8545. "ext-json": "*",
  8546. "ext-libxml": "*",
  8547. "ext-openssl": "*",
  8548. "ext-simplexml": "*",
  8549. "php": ">=8.0",
  8550. "psr/container": "^1.1 || ^2.0",
  8551. "psr/event-dispatcher": "^1.0",
  8552. "psr/http-client": "^1.0",
  8553. "psr/http-message": "^1.1 || ^2.0",
  8554. "psr/log": "^1.1 || ^2.0 || ^3.0",
  8555. "yansongda/supports": "~4.0.0"
  8556. },
  8557. "conflict": {
  8558. "hyperf/framework": "<3.0"
  8559. },
  8560. "require-dev": {
  8561. "friendsofphp/php-cs-fixer": "^3.0",
  8562. "guzzlehttp/guzzle": "^7.0",
  8563. "hyperf/pimple": "^2.2",
  8564. "mockery/mockery": "^1.4",
  8565. "monolog/monolog": "^2.2",
  8566. "phpstan/phpstan": "^1.0.0",
  8567. "phpunit/phpunit": "^9.0",
  8568. "symfony/event-dispatcher": "^5.2.0",
  8569. "symfony/http-foundation": "^5.2.0",
  8570. "symfony/psr-http-message-bridge": "^2.1",
  8571. "symfony/var-dumper": "^5.1"
  8572. },
  8573. "suggest": {
  8574. "hyperf/pimple": "其它/无框架下使用 SDK,请安装",
  8575. "hyperf/utils": "Hyperf 框架下使用 SDK,请安装",
  8576. "illuminate/container": "Laravel 框架下使用 SDK,请安装"
  8577. },
  8578. "type": "library",
  8579. "autoload": {
  8580. "files": [
  8581. "src/Functions.php"
  8582. ],
  8583. "psr-4": {
  8584. "Yansongda\\Pay\\": "src"
  8585. }
  8586. },
  8587. "notification-url": "https://packagist.org/downloads/",
  8588. "license": [
  8589. "MIT"
  8590. ],
  8591. "authors": [
  8592. {
  8593. "name": "yansongda",
  8594. "email": "me@yansongda.cn"
  8595. }
  8596. ],
  8597. "description": "可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了",
  8598. "keywords": [
  8599. "alipay",
  8600. "pay",
  8601. "wechat"
  8602. ],
  8603. "support": {
  8604. "homepage": "https://pay.yansongda.cn",
  8605. "issues": "https://github.com/yansongda/pay/issues",
  8606. "source": "https://github.com/yansongda/pay"
  8607. },
  8608. "time": "2023-06-27T09:54:37+00:00"
  8609. },
  8610. {
  8611. "name": "yansongda/supports",
  8612. "version": "v4.0.3",
  8613. "source": {
  8614. "type": "git",
  8615. "url": "https://github.com/yansongda/supports.git",
  8616. "reference": "73e01ed827202b33395c0827943410f6dbd790a4"
  8617. },
  8618. "dist": {
  8619. "type": "zip",
  8620. "url": "https://api.github.com/repos/yansongda/supports/zipball/73e01ed827202b33395c0827943410f6dbd790a4",
  8621. "reference": "73e01ed827202b33395c0827943410f6dbd790a4",
  8622. "shasum": ""
  8623. },
  8624. "require": {
  8625. "php": ">=8.0"
  8626. },
  8627. "require-dev": {
  8628. "friendsofphp/php-cs-fixer": "^3.0",
  8629. "mockery/mockery": "^1.4",
  8630. "phpstan/phpstan": "^1.1.0",
  8631. "phpunit/phpunit": "^9.0"
  8632. },
  8633. "suggest": {
  8634. "monolog/monolog": "Use logger",
  8635. "symfony/console": "Use stdout logger"
  8636. },
  8637. "type": "library",
  8638. "autoload": {
  8639. "files": [
  8640. "src/Functions.php"
  8641. ],
  8642. "psr-4": {
  8643. "Yansongda\\Supports\\": "src/"
  8644. }
  8645. },
  8646. "notification-url": "https://packagist.org/downloads/",
  8647. "license": [
  8648. "MIT"
  8649. ],
  8650. "authors": [
  8651. {
  8652. "name": "yansongda",
  8653. "email": "me@yansongda.cn"
  8654. }
  8655. ],
  8656. "description": "common components",
  8657. "keywords": [
  8658. "array",
  8659. "collection",
  8660. "config",
  8661. "support"
  8662. ],
  8663. "support": {
  8664. "issues": "https://github.com/yansongda/supports/issues",
  8665. "source": "https://github.com/yansongda/supports"
  8666. },
  8667. "time": "2023-12-23T15:04:07+00:00"
  8668. }
  8669. ],
  8670. "packages-dev": [
  8671. {
  8672. "name": "doctrine/instantiator",
  8673. "version": "1.5.0",
  8674. "source": {
  8675. "type": "git",
  8676. "url": "https://github.com/doctrine/instantiator.git",
  8677. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8678. },
  8679. "dist": {
  8680. "type": "zip",
  8681. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8682. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8683. "shasum": ""
  8684. },
  8685. "require": {
  8686. "php": "^7.1 || ^8.0"
  8687. },
  8688. "require-dev": {
  8689. "doctrine/coding-standard": "^9 || ^11",
  8690. "ext-pdo": "*",
  8691. "ext-phar": "*",
  8692. "phpbench/phpbench": "^0.16 || ^1",
  8693. "phpstan/phpstan": "^1.4",
  8694. "phpstan/phpstan-phpunit": "^1",
  8695. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8696. "vimeo/psalm": "^4.30 || ^5.4"
  8697. },
  8698. "type": "library",
  8699. "autoload": {
  8700. "psr-4": {
  8701. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8702. }
  8703. },
  8704. "notification-url": "https://packagist.org/downloads/",
  8705. "license": [
  8706. "MIT"
  8707. ],
  8708. "authors": [
  8709. {
  8710. "name": "Marco Pivetta",
  8711. "email": "ocramius@gmail.com",
  8712. "homepage": "https://ocramius.github.io/"
  8713. }
  8714. ],
  8715. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8716. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8717. "keywords": [
  8718. "constructor",
  8719. "instantiate"
  8720. ],
  8721. "support": {
  8722. "issues": "https://github.com/doctrine/instantiator/issues",
  8723. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8724. },
  8725. "funding": [
  8726. {
  8727. "url": "https://www.doctrine-project.org/sponsorship.html",
  8728. "type": "custom"
  8729. },
  8730. {
  8731. "url": "https://www.patreon.com/phpdoctrine",
  8732. "type": "patreon"
  8733. },
  8734. {
  8735. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8736. "type": "tidelift"
  8737. }
  8738. ],
  8739. "time": "2022-12-30T00:15:36+00:00"
  8740. },
  8741. {
  8742. "name": "facade/flare-client-php",
  8743. "version": "1.10.0",
  8744. "source": {
  8745. "type": "git",
  8746. "url": "https://github.com/facade/flare-client-php.git",
  8747. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8748. },
  8749. "dist": {
  8750. "type": "zip",
  8751. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8752. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8753. "shasum": ""
  8754. },
  8755. "require": {
  8756. "facade/ignition-contracts": "~1.0",
  8757. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8758. "php": "^7.1|^8.0",
  8759. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8760. "symfony/mime": "^3.4|^4.0|^5.1",
  8761. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8762. },
  8763. "require-dev": {
  8764. "friendsofphp/php-cs-fixer": "^2.14",
  8765. "phpunit/phpunit": "^7.5",
  8766. "spatie/phpunit-snapshot-assertions": "^2.0"
  8767. },
  8768. "type": "library",
  8769. "extra": {
  8770. "branch-alias": {
  8771. "dev-master": "1.0-dev"
  8772. }
  8773. },
  8774. "autoload": {
  8775. "files": [
  8776. "src/helpers.php"
  8777. ],
  8778. "psr-4": {
  8779. "Facade\\FlareClient\\": "src"
  8780. }
  8781. },
  8782. "notification-url": "https://packagist.org/downloads/",
  8783. "license": [
  8784. "MIT"
  8785. ],
  8786. "description": "Send PHP errors to Flare",
  8787. "homepage": "https://github.com/facade/flare-client-php",
  8788. "keywords": [
  8789. "exception",
  8790. "facade",
  8791. "flare",
  8792. "reporting"
  8793. ],
  8794. "support": {
  8795. "issues": "https://github.com/facade/flare-client-php/issues",
  8796. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8797. },
  8798. "funding": [
  8799. {
  8800. "url": "https://github.com/spatie",
  8801. "type": "github"
  8802. }
  8803. ],
  8804. "time": "2022-08-09T11:23:57+00:00"
  8805. },
  8806. {
  8807. "name": "facade/ignition",
  8808. "version": "2.17.7",
  8809. "source": {
  8810. "type": "git",
  8811. "url": "https://github.com/facade/ignition.git",
  8812. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8813. },
  8814. "dist": {
  8815. "type": "zip",
  8816. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8817. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8818. "shasum": ""
  8819. },
  8820. "require": {
  8821. "ext-curl": "*",
  8822. "ext-json": "*",
  8823. "ext-mbstring": "*",
  8824. "facade/flare-client-php": "^1.9.1",
  8825. "facade/ignition-contracts": "^1.0.2",
  8826. "illuminate/support": "^7.0|^8.0",
  8827. "monolog/monolog": "^2.0",
  8828. "php": "^7.2.5|^8.0",
  8829. "symfony/console": "^5.0",
  8830. "symfony/var-dumper": "^5.0"
  8831. },
  8832. "require-dev": {
  8833. "friendsofphp/php-cs-fixer": "^2.14",
  8834. "livewire/livewire": "^2.4",
  8835. "mockery/mockery": "^1.3",
  8836. "orchestra/testbench": "^5.0|^6.0",
  8837. "psalm/plugin-laravel": "^1.2"
  8838. },
  8839. "suggest": {
  8840. "laravel/telescope": "^3.1"
  8841. },
  8842. "type": "library",
  8843. "extra": {
  8844. "branch-alias": {
  8845. "dev-master": "2.x-dev"
  8846. },
  8847. "laravel": {
  8848. "providers": [
  8849. "Facade\\Ignition\\IgnitionServiceProvider"
  8850. ],
  8851. "aliases": {
  8852. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8853. }
  8854. }
  8855. },
  8856. "autoload": {
  8857. "files": [
  8858. "src/helpers.php"
  8859. ],
  8860. "psr-4": {
  8861. "Facade\\Ignition\\": "src"
  8862. }
  8863. },
  8864. "notification-url": "https://packagist.org/downloads/",
  8865. "license": [
  8866. "MIT"
  8867. ],
  8868. "description": "A beautiful error page for Laravel applications.",
  8869. "homepage": "https://github.com/facade/ignition",
  8870. "keywords": [
  8871. "error",
  8872. "flare",
  8873. "laravel",
  8874. "page"
  8875. ],
  8876. "support": {
  8877. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8878. "forum": "https://twitter.com/flareappio",
  8879. "issues": "https://github.com/facade/ignition/issues",
  8880. "source": "https://github.com/facade/ignition"
  8881. },
  8882. "time": "2023-01-26T12:34:59+00:00"
  8883. },
  8884. {
  8885. "name": "facade/ignition-contracts",
  8886. "version": "1.0.2",
  8887. "source": {
  8888. "type": "git",
  8889. "url": "https://github.com/facade/ignition-contracts.git",
  8890. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8891. },
  8892. "dist": {
  8893. "type": "zip",
  8894. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8895. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8896. "shasum": ""
  8897. },
  8898. "require": {
  8899. "php": "^7.3|^8.0"
  8900. },
  8901. "require-dev": {
  8902. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8903. "phpunit/phpunit": "^9.3.11",
  8904. "vimeo/psalm": "^3.17.1"
  8905. },
  8906. "type": "library",
  8907. "autoload": {
  8908. "psr-4": {
  8909. "Facade\\IgnitionContracts\\": "src"
  8910. }
  8911. },
  8912. "notification-url": "https://packagist.org/downloads/",
  8913. "license": [
  8914. "MIT"
  8915. ],
  8916. "authors": [
  8917. {
  8918. "name": "Freek Van der Herten",
  8919. "email": "freek@spatie.be",
  8920. "homepage": "https://flareapp.io",
  8921. "role": "Developer"
  8922. }
  8923. ],
  8924. "description": "Solution contracts for Ignition",
  8925. "homepage": "https://github.com/facade/ignition-contracts",
  8926. "keywords": [
  8927. "contracts",
  8928. "flare",
  8929. "ignition"
  8930. ],
  8931. "support": {
  8932. "issues": "https://github.com/facade/ignition-contracts/issues",
  8933. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8934. },
  8935. "time": "2020-10-16T08:27:54+00:00"
  8936. },
  8937. {
  8938. "name": "fakerphp/faker",
  8939. "version": "v1.23.0",
  8940. "source": {
  8941. "type": "git",
  8942. "url": "https://github.com/FakerPHP/Faker.git",
  8943. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  8944. },
  8945. "dist": {
  8946. "type": "zip",
  8947. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8948. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8949. "shasum": ""
  8950. },
  8951. "require": {
  8952. "php": "^7.4 || ^8.0",
  8953. "psr/container": "^1.0 || ^2.0",
  8954. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8955. },
  8956. "conflict": {
  8957. "fzaninotto/faker": "*"
  8958. },
  8959. "require-dev": {
  8960. "bamarni/composer-bin-plugin": "^1.4.1",
  8961. "doctrine/persistence": "^1.3 || ^2.0",
  8962. "ext-intl": "*",
  8963. "phpunit/phpunit": "^9.5.26",
  8964. "symfony/phpunit-bridge": "^5.4.16"
  8965. },
  8966. "suggest": {
  8967. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8968. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8969. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8970. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8971. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8972. },
  8973. "type": "library",
  8974. "extra": {
  8975. "branch-alias": {
  8976. "dev-main": "v1.21-dev"
  8977. }
  8978. },
  8979. "autoload": {
  8980. "psr-4": {
  8981. "Faker\\": "src/Faker/"
  8982. }
  8983. },
  8984. "notification-url": "https://packagist.org/downloads/",
  8985. "license": [
  8986. "MIT"
  8987. ],
  8988. "authors": [
  8989. {
  8990. "name": "François Zaninotto"
  8991. }
  8992. ],
  8993. "description": "Faker is a PHP library that generates fake data for you.",
  8994. "keywords": [
  8995. "data",
  8996. "faker",
  8997. "fixtures"
  8998. ],
  8999. "support": {
  9000. "issues": "https://github.com/FakerPHP/Faker/issues",
  9001. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  9002. },
  9003. "time": "2023-06-12T08:44:38+00:00"
  9004. },
  9005. {
  9006. "name": "filp/whoops",
  9007. "version": "2.15.4",
  9008. "source": {
  9009. "type": "git",
  9010. "url": "https://github.com/filp/whoops.git",
  9011. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  9012. },
  9013. "dist": {
  9014. "type": "zip",
  9015. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9016. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9017. "shasum": ""
  9018. },
  9019. "require": {
  9020. "php": "^5.5.9 || ^7.0 || ^8.0",
  9021. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9022. },
  9023. "require-dev": {
  9024. "mockery/mockery": "^0.9 || ^1.0",
  9025. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  9026. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  9027. },
  9028. "suggest": {
  9029. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9030. "whoops/soap": "Formats errors as SOAP responses"
  9031. },
  9032. "type": "library",
  9033. "extra": {
  9034. "branch-alias": {
  9035. "dev-master": "2.7-dev"
  9036. }
  9037. },
  9038. "autoload": {
  9039. "psr-4": {
  9040. "Whoops\\": "src/Whoops/"
  9041. }
  9042. },
  9043. "notification-url": "https://packagist.org/downloads/",
  9044. "license": [
  9045. "MIT"
  9046. ],
  9047. "authors": [
  9048. {
  9049. "name": "Filipe Dobreira",
  9050. "homepage": "https://github.com/filp",
  9051. "role": "Developer"
  9052. }
  9053. ],
  9054. "description": "php error handling for cool kids",
  9055. "homepage": "https://filp.github.io/whoops/",
  9056. "keywords": [
  9057. "error",
  9058. "exception",
  9059. "handling",
  9060. "library",
  9061. "throwable",
  9062. "whoops"
  9063. ],
  9064. "support": {
  9065. "issues": "https://github.com/filp/whoops/issues",
  9066. "source": "https://github.com/filp/whoops/tree/2.15.4"
  9067. },
  9068. "funding": [
  9069. {
  9070. "url": "https://github.com/denis-sokolov",
  9071. "type": "github"
  9072. }
  9073. ],
  9074. "time": "2023-11-03T12:00:00+00:00"
  9075. },
  9076. {
  9077. "name": "hamcrest/hamcrest-php",
  9078. "version": "v2.0.1",
  9079. "source": {
  9080. "type": "git",
  9081. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9082. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9083. },
  9084. "dist": {
  9085. "type": "zip",
  9086. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9087. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9088. "shasum": ""
  9089. },
  9090. "require": {
  9091. "php": "^5.3|^7.0|^8.0"
  9092. },
  9093. "replace": {
  9094. "cordoval/hamcrest-php": "*",
  9095. "davedevelopment/hamcrest-php": "*",
  9096. "kodova/hamcrest-php": "*"
  9097. },
  9098. "require-dev": {
  9099. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9100. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9101. },
  9102. "type": "library",
  9103. "extra": {
  9104. "branch-alias": {
  9105. "dev-master": "2.1-dev"
  9106. }
  9107. },
  9108. "autoload": {
  9109. "classmap": [
  9110. "hamcrest"
  9111. ]
  9112. },
  9113. "notification-url": "https://packagist.org/downloads/",
  9114. "license": [
  9115. "BSD-3-Clause"
  9116. ],
  9117. "description": "This is the PHP port of Hamcrest Matchers",
  9118. "keywords": [
  9119. "test"
  9120. ],
  9121. "support": {
  9122. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9123. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9124. },
  9125. "time": "2020-07-09T08:09:16+00:00"
  9126. },
  9127. {
  9128. "name": "mockery/mockery",
  9129. "version": "1.6.7",
  9130. "source": {
  9131. "type": "git",
  9132. "url": "https://github.com/mockery/mockery.git",
  9133. "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06"
  9134. },
  9135. "dist": {
  9136. "type": "zip",
  9137. "url": "https://api.github.com/repos/mockery/mockery/zipball/0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06",
  9138. "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06",
  9139. "shasum": ""
  9140. },
  9141. "require": {
  9142. "hamcrest/hamcrest-php": "^2.0.1",
  9143. "lib-pcre": ">=7.0",
  9144. "php": ">=7.3"
  9145. },
  9146. "conflict": {
  9147. "phpunit/phpunit": "<8.0"
  9148. },
  9149. "require-dev": {
  9150. "phpunit/phpunit": "^8.5 || ^9.6.10",
  9151. "symplify/easy-coding-standard": "^12.0.8"
  9152. },
  9153. "type": "library",
  9154. "autoload": {
  9155. "files": [
  9156. "library/helpers.php",
  9157. "library/Mockery.php"
  9158. ],
  9159. "psr-4": {
  9160. "Mockery\\": "library/Mockery"
  9161. }
  9162. },
  9163. "notification-url": "https://packagist.org/downloads/",
  9164. "license": [
  9165. "BSD-3-Clause"
  9166. ],
  9167. "authors": [
  9168. {
  9169. "name": "Pádraic Brady",
  9170. "email": "padraic.brady@gmail.com",
  9171. "homepage": "https://github.com/padraic",
  9172. "role": "Author"
  9173. },
  9174. {
  9175. "name": "Dave Marshall",
  9176. "email": "dave.marshall@atstsolutions.co.uk",
  9177. "homepage": "https://davedevelopment.co.uk",
  9178. "role": "Developer"
  9179. },
  9180. {
  9181. "name": "Nathanael Esayeas",
  9182. "email": "nathanael.esayeas@protonmail.com",
  9183. "homepage": "https://github.com/ghostwriter",
  9184. "role": "Lead Developer"
  9185. }
  9186. ],
  9187. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9188. "homepage": "https://github.com/mockery/mockery",
  9189. "keywords": [
  9190. "BDD",
  9191. "TDD",
  9192. "library",
  9193. "mock",
  9194. "mock objects",
  9195. "mockery",
  9196. "stub",
  9197. "test",
  9198. "test double",
  9199. "testing"
  9200. ],
  9201. "support": {
  9202. "docs": "https://docs.mockery.io/",
  9203. "issues": "https://github.com/mockery/mockery/issues",
  9204. "rss": "https://github.com/mockery/mockery/releases.atom",
  9205. "security": "https://github.com/mockery/mockery/security/advisories",
  9206. "source": "https://github.com/mockery/mockery"
  9207. },
  9208. "time": "2023-12-10T02:24:34+00:00"
  9209. },
  9210. {
  9211. "name": "myclabs/deep-copy",
  9212. "version": "1.11.1",
  9213. "source": {
  9214. "type": "git",
  9215. "url": "https://github.com/myclabs/DeepCopy.git",
  9216. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  9217. },
  9218. "dist": {
  9219. "type": "zip",
  9220. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9221. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9222. "shasum": ""
  9223. },
  9224. "require": {
  9225. "php": "^7.1 || ^8.0"
  9226. },
  9227. "conflict": {
  9228. "doctrine/collections": "<1.6.8",
  9229. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  9230. },
  9231. "require-dev": {
  9232. "doctrine/collections": "^1.6.8",
  9233. "doctrine/common": "^2.13.3 || ^3.2.2",
  9234. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9235. },
  9236. "type": "library",
  9237. "autoload": {
  9238. "files": [
  9239. "src/DeepCopy/deep_copy.php"
  9240. ],
  9241. "psr-4": {
  9242. "DeepCopy\\": "src/DeepCopy/"
  9243. }
  9244. },
  9245. "notification-url": "https://packagist.org/downloads/",
  9246. "license": [
  9247. "MIT"
  9248. ],
  9249. "description": "Create deep copies (clones) of your objects",
  9250. "keywords": [
  9251. "clone",
  9252. "copy",
  9253. "duplicate",
  9254. "object",
  9255. "object graph"
  9256. ],
  9257. "support": {
  9258. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9259. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9260. },
  9261. "funding": [
  9262. {
  9263. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9264. "type": "tidelift"
  9265. }
  9266. ],
  9267. "time": "2023-03-08T13:26:56+00:00"
  9268. },
  9269. {
  9270. "name": "nunomaduro/collision",
  9271. "version": "v5.11.0",
  9272. "source": {
  9273. "type": "git",
  9274. "url": "https://github.com/nunomaduro/collision.git",
  9275. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  9276. },
  9277. "dist": {
  9278. "type": "zip",
  9279. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9280. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9281. "shasum": ""
  9282. },
  9283. "require": {
  9284. "facade/ignition-contracts": "^1.0",
  9285. "filp/whoops": "^2.14.3",
  9286. "php": "^7.3 || ^8.0",
  9287. "symfony/console": "^5.0"
  9288. },
  9289. "require-dev": {
  9290. "brianium/paratest": "^6.1",
  9291. "fideloper/proxy": "^4.4.1",
  9292. "fruitcake/laravel-cors": "^2.0.3",
  9293. "laravel/framework": "8.x-dev",
  9294. "nunomaduro/larastan": "^0.6.2",
  9295. "nunomaduro/mock-final-classes": "^1.0",
  9296. "orchestra/testbench": "^6.0",
  9297. "phpstan/phpstan": "^0.12.64",
  9298. "phpunit/phpunit": "^9.5.0"
  9299. },
  9300. "type": "library",
  9301. "extra": {
  9302. "laravel": {
  9303. "providers": [
  9304. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9305. ]
  9306. }
  9307. },
  9308. "autoload": {
  9309. "psr-4": {
  9310. "NunoMaduro\\Collision\\": "src/"
  9311. }
  9312. },
  9313. "notification-url": "https://packagist.org/downloads/",
  9314. "license": [
  9315. "MIT"
  9316. ],
  9317. "authors": [
  9318. {
  9319. "name": "Nuno Maduro",
  9320. "email": "enunomaduro@gmail.com"
  9321. }
  9322. ],
  9323. "description": "Cli error handling for console/command-line PHP applications.",
  9324. "keywords": [
  9325. "artisan",
  9326. "cli",
  9327. "command-line",
  9328. "console",
  9329. "error",
  9330. "handling",
  9331. "laravel",
  9332. "laravel-zero",
  9333. "php",
  9334. "symfony"
  9335. ],
  9336. "support": {
  9337. "issues": "https://github.com/nunomaduro/collision/issues",
  9338. "source": "https://github.com/nunomaduro/collision"
  9339. },
  9340. "funding": [
  9341. {
  9342. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9343. "type": "custom"
  9344. },
  9345. {
  9346. "url": "https://github.com/nunomaduro",
  9347. "type": "github"
  9348. },
  9349. {
  9350. "url": "https://www.patreon.com/nunomaduro",
  9351. "type": "patreon"
  9352. }
  9353. ],
  9354. "time": "2022-01-10T16:22:52+00:00"
  9355. },
  9356. {
  9357. "name": "phar-io/manifest",
  9358. "version": "2.0.3",
  9359. "source": {
  9360. "type": "git",
  9361. "url": "https://github.com/phar-io/manifest.git",
  9362. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9363. },
  9364. "dist": {
  9365. "type": "zip",
  9366. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9367. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9368. "shasum": ""
  9369. },
  9370. "require": {
  9371. "ext-dom": "*",
  9372. "ext-phar": "*",
  9373. "ext-xmlwriter": "*",
  9374. "phar-io/version": "^3.0.1",
  9375. "php": "^7.2 || ^8.0"
  9376. },
  9377. "type": "library",
  9378. "extra": {
  9379. "branch-alias": {
  9380. "dev-master": "2.0.x-dev"
  9381. }
  9382. },
  9383. "autoload": {
  9384. "classmap": [
  9385. "src/"
  9386. ]
  9387. },
  9388. "notification-url": "https://packagist.org/downloads/",
  9389. "license": [
  9390. "BSD-3-Clause"
  9391. ],
  9392. "authors": [
  9393. {
  9394. "name": "Arne Blankerts",
  9395. "email": "arne@blankerts.de",
  9396. "role": "Developer"
  9397. },
  9398. {
  9399. "name": "Sebastian Heuer",
  9400. "email": "sebastian@phpeople.de",
  9401. "role": "Developer"
  9402. },
  9403. {
  9404. "name": "Sebastian Bergmann",
  9405. "email": "sebastian@phpunit.de",
  9406. "role": "Developer"
  9407. }
  9408. ],
  9409. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9410. "support": {
  9411. "issues": "https://github.com/phar-io/manifest/issues",
  9412. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9413. },
  9414. "time": "2021-07-20T11:28:43+00:00"
  9415. },
  9416. {
  9417. "name": "phar-io/version",
  9418. "version": "3.2.1",
  9419. "source": {
  9420. "type": "git",
  9421. "url": "https://github.com/phar-io/version.git",
  9422. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9423. },
  9424. "dist": {
  9425. "type": "zip",
  9426. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9427. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9428. "shasum": ""
  9429. },
  9430. "require": {
  9431. "php": "^7.2 || ^8.0"
  9432. },
  9433. "type": "library",
  9434. "autoload": {
  9435. "classmap": [
  9436. "src/"
  9437. ]
  9438. },
  9439. "notification-url": "https://packagist.org/downloads/",
  9440. "license": [
  9441. "BSD-3-Clause"
  9442. ],
  9443. "authors": [
  9444. {
  9445. "name": "Arne Blankerts",
  9446. "email": "arne@blankerts.de",
  9447. "role": "Developer"
  9448. },
  9449. {
  9450. "name": "Sebastian Heuer",
  9451. "email": "sebastian@phpeople.de",
  9452. "role": "Developer"
  9453. },
  9454. {
  9455. "name": "Sebastian Bergmann",
  9456. "email": "sebastian@phpunit.de",
  9457. "role": "Developer"
  9458. }
  9459. ],
  9460. "description": "Library for handling version information and constraints",
  9461. "support": {
  9462. "issues": "https://github.com/phar-io/version/issues",
  9463. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9464. },
  9465. "time": "2022-02-21T01:04:05+00:00"
  9466. },
  9467. {
  9468. "name": "phpunit/php-code-coverage",
  9469. "version": "9.2.30",
  9470. "source": {
  9471. "type": "git",
  9472. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9473. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  9474. },
  9475. "dist": {
  9476. "type": "zip",
  9477. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  9478. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  9479. "shasum": ""
  9480. },
  9481. "require": {
  9482. "ext-dom": "*",
  9483. "ext-libxml": "*",
  9484. "ext-xmlwriter": "*",
  9485. "nikic/php-parser": "^4.18 || ^5.0",
  9486. "php": ">=7.3",
  9487. "phpunit/php-file-iterator": "^3.0.3",
  9488. "phpunit/php-text-template": "^2.0.2",
  9489. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9490. "sebastian/complexity": "^2.0",
  9491. "sebastian/environment": "^5.1.2",
  9492. "sebastian/lines-of-code": "^1.0.3",
  9493. "sebastian/version": "^3.0.1",
  9494. "theseer/tokenizer": "^1.2.0"
  9495. },
  9496. "require-dev": {
  9497. "phpunit/phpunit": "^9.3"
  9498. },
  9499. "suggest": {
  9500. "ext-pcov": "PHP extension that provides line coverage",
  9501. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9502. },
  9503. "type": "library",
  9504. "extra": {
  9505. "branch-alias": {
  9506. "dev-master": "9.2-dev"
  9507. }
  9508. },
  9509. "autoload": {
  9510. "classmap": [
  9511. "src/"
  9512. ]
  9513. },
  9514. "notification-url": "https://packagist.org/downloads/",
  9515. "license": [
  9516. "BSD-3-Clause"
  9517. ],
  9518. "authors": [
  9519. {
  9520. "name": "Sebastian Bergmann",
  9521. "email": "sebastian@phpunit.de",
  9522. "role": "lead"
  9523. }
  9524. ],
  9525. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9526. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9527. "keywords": [
  9528. "coverage",
  9529. "testing",
  9530. "xunit"
  9531. ],
  9532. "support": {
  9533. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9534. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9535. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  9536. },
  9537. "funding": [
  9538. {
  9539. "url": "https://github.com/sebastianbergmann",
  9540. "type": "github"
  9541. }
  9542. ],
  9543. "time": "2023-12-22T06:47:57+00:00"
  9544. },
  9545. {
  9546. "name": "phpunit/php-file-iterator",
  9547. "version": "3.0.6",
  9548. "source": {
  9549. "type": "git",
  9550. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9551. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9552. },
  9553. "dist": {
  9554. "type": "zip",
  9555. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9556. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9557. "shasum": ""
  9558. },
  9559. "require": {
  9560. "php": ">=7.3"
  9561. },
  9562. "require-dev": {
  9563. "phpunit/phpunit": "^9.3"
  9564. },
  9565. "type": "library",
  9566. "extra": {
  9567. "branch-alias": {
  9568. "dev-master": "3.0-dev"
  9569. }
  9570. },
  9571. "autoload": {
  9572. "classmap": [
  9573. "src/"
  9574. ]
  9575. },
  9576. "notification-url": "https://packagist.org/downloads/",
  9577. "license": [
  9578. "BSD-3-Clause"
  9579. ],
  9580. "authors": [
  9581. {
  9582. "name": "Sebastian Bergmann",
  9583. "email": "sebastian@phpunit.de",
  9584. "role": "lead"
  9585. }
  9586. ],
  9587. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9588. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9589. "keywords": [
  9590. "filesystem",
  9591. "iterator"
  9592. ],
  9593. "support": {
  9594. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9595. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9596. },
  9597. "funding": [
  9598. {
  9599. "url": "https://github.com/sebastianbergmann",
  9600. "type": "github"
  9601. }
  9602. ],
  9603. "time": "2021-12-02T12:48:52+00:00"
  9604. },
  9605. {
  9606. "name": "phpunit/php-invoker",
  9607. "version": "3.1.1",
  9608. "source": {
  9609. "type": "git",
  9610. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9611. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9612. },
  9613. "dist": {
  9614. "type": "zip",
  9615. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9616. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9617. "shasum": ""
  9618. },
  9619. "require": {
  9620. "php": ">=7.3"
  9621. },
  9622. "require-dev": {
  9623. "ext-pcntl": "*",
  9624. "phpunit/phpunit": "^9.3"
  9625. },
  9626. "suggest": {
  9627. "ext-pcntl": "*"
  9628. },
  9629. "type": "library",
  9630. "extra": {
  9631. "branch-alias": {
  9632. "dev-master": "3.1-dev"
  9633. }
  9634. },
  9635. "autoload": {
  9636. "classmap": [
  9637. "src/"
  9638. ]
  9639. },
  9640. "notification-url": "https://packagist.org/downloads/",
  9641. "license": [
  9642. "BSD-3-Clause"
  9643. ],
  9644. "authors": [
  9645. {
  9646. "name": "Sebastian Bergmann",
  9647. "email": "sebastian@phpunit.de",
  9648. "role": "lead"
  9649. }
  9650. ],
  9651. "description": "Invoke callables with a timeout",
  9652. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9653. "keywords": [
  9654. "process"
  9655. ],
  9656. "support": {
  9657. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9658. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9659. },
  9660. "funding": [
  9661. {
  9662. "url": "https://github.com/sebastianbergmann",
  9663. "type": "github"
  9664. }
  9665. ],
  9666. "time": "2020-09-28T05:58:55+00:00"
  9667. },
  9668. {
  9669. "name": "phpunit/php-text-template",
  9670. "version": "2.0.4",
  9671. "source": {
  9672. "type": "git",
  9673. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9674. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9675. },
  9676. "dist": {
  9677. "type": "zip",
  9678. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9679. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9680. "shasum": ""
  9681. },
  9682. "require": {
  9683. "php": ">=7.3"
  9684. },
  9685. "require-dev": {
  9686. "phpunit/phpunit": "^9.3"
  9687. },
  9688. "type": "library",
  9689. "extra": {
  9690. "branch-alias": {
  9691. "dev-master": "2.0-dev"
  9692. }
  9693. },
  9694. "autoload": {
  9695. "classmap": [
  9696. "src/"
  9697. ]
  9698. },
  9699. "notification-url": "https://packagist.org/downloads/",
  9700. "license": [
  9701. "BSD-3-Clause"
  9702. ],
  9703. "authors": [
  9704. {
  9705. "name": "Sebastian Bergmann",
  9706. "email": "sebastian@phpunit.de",
  9707. "role": "lead"
  9708. }
  9709. ],
  9710. "description": "Simple template engine.",
  9711. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9712. "keywords": [
  9713. "template"
  9714. ],
  9715. "support": {
  9716. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9717. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9718. },
  9719. "funding": [
  9720. {
  9721. "url": "https://github.com/sebastianbergmann",
  9722. "type": "github"
  9723. }
  9724. ],
  9725. "time": "2020-10-26T05:33:50+00:00"
  9726. },
  9727. {
  9728. "name": "phpunit/php-timer",
  9729. "version": "5.0.3",
  9730. "source": {
  9731. "type": "git",
  9732. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9733. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9734. },
  9735. "dist": {
  9736. "type": "zip",
  9737. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9738. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9739. "shasum": ""
  9740. },
  9741. "require": {
  9742. "php": ">=7.3"
  9743. },
  9744. "require-dev": {
  9745. "phpunit/phpunit": "^9.3"
  9746. },
  9747. "type": "library",
  9748. "extra": {
  9749. "branch-alias": {
  9750. "dev-master": "5.0-dev"
  9751. }
  9752. },
  9753. "autoload": {
  9754. "classmap": [
  9755. "src/"
  9756. ]
  9757. },
  9758. "notification-url": "https://packagist.org/downloads/",
  9759. "license": [
  9760. "BSD-3-Clause"
  9761. ],
  9762. "authors": [
  9763. {
  9764. "name": "Sebastian Bergmann",
  9765. "email": "sebastian@phpunit.de",
  9766. "role": "lead"
  9767. }
  9768. ],
  9769. "description": "Utility class for timing",
  9770. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9771. "keywords": [
  9772. "timer"
  9773. ],
  9774. "support": {
  9775. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9776. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9777. },
  9778. "funding": [
  9779. {
  9780. "url": "https://github.com/sebastianbergmann",
  9781. "type": "github"
  9782. }
  9783. ],
  9784. "time": "2020-10-26T13:16:10+00:00"
  9785. },
  9786. {
  9787. "name": "phpunit/phpunit",
  9788. "version": "9.6.15",
  9789. "source": {
  9790. "type": "git",
  9791. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9792. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
  9793. },
  9794. "dist": {
  9795. "type": "zip",
  9796. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1",
  9797. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1",
  9798. "shasum": ""
  9799. },
  9800. "require": {
  9801. "doctrine/instantiator": "^1.3.1 || ^2",
  9802. "ext-dom": "*",
  9803. "ext-json": "*",
  9804. "ext-libxml": "*",
  9805. "ext-mbstring": "*",
  9806. "ext-xml": "*",
  9807. "ext-xmlwriter": "*",
  9808. "myclabs/deep-copy": "^1.10.1",
  9809. "phar-io/manifest": "^2.0.3",
  9810. "phar-io/version": "^3.0.2",
  9811. "php": ">=7.3",
  9812. "phpunit/php-code-coverage": "^9.2.28",
  9813. "phpunit/php-file-iterator": "^3.0.5",
  9814. "phpunit/php-invoker": "^3.1.1",
  9815. "phpunit/php-text-template": "^2.0.3",
  9816. "phpunit/php-timer": "^5.0.2",
  9817. "sebastian/cli-parser": "^1.0.1",
  9818. "sebastian/code-unit": "^1.0.6",
  9819. "sebastian/comparator": "^4.0.8",
  9820. "sebastian/diff": "^4.0.3",
  9821. "sebastian/environment": "^5.1.3",
  9822. "sebastian/exporter": "^4.0.5",
  9823. "sebastian/global-state": "^5.0.1",
  9824. "sebastian/object-enumerator": "^4.0.3",
  9825. "sebastian/resource-operations": "^3.0.3",
  9826. "sebastian/type": "^3.2",
  9827. "sebastian/version": "^3.0.2"
  9828. },
  9829. "suggest": {
  9830. "ext-soap": "To be able to generate mocks based on WSDL files",
  9831. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9832. },
  9833. "bin": [
  9834. "phpunit"
  9835. ],
  9836. "type": "library",
  9837. "extra": {
  9838. "branch-alias": {
  9839. "dev-master": "9.6-dev"
  9840. }
  9841. },
  9842. "autoload": {
  9843. "files": [
  9844. "src/Framework/Assert/Functions.php"
  9845. ],
  9846. "classmap": [
  9847. "src/"
  9848. ]
  9849. },
  9850. "notification-url": "https://packagist.org/downloads/",
  9851. "license": [
  9852. "BSD-3-Clause"
  9853. ],
  9854. "authors": [
  9855. {
  9856. "name": "Sebastian Bergmann",
  9857. "email": "sebastian@phpunit.de",
  9858. "role": "lead"
  9859. }
  9860. ],
  9861. "description": "The PHP Unit Testing framework.",
  9862. "homepage": "https://phpunit.de/",
  9863. "keywords": [
  9864. "phpunit",
  9865. "testing",
  9866. "xunit"
  9867. ],
  9868. "support": {
  9869. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9870. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9871. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
  9872. },
  9873. "funding": [
  9874. {
  9875. "url": "https://phpunit.de/sponsors.html",
  9876. "type": "custom"
  9877. },
  9878. {
  9879. "url": "https://github.com/sebastianbergmann",
  9880. "type": "github"
  9881. },
  9882. {
  9883. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9884. "type": "tidelift"
  9885. }
  9886. ],
  9887. "time": "2023-12-01T16:55:19+00:00"
  9888. },
  9889. {
  9890. "name": "sebastian/cli-parser",
  9891. "version": "1.0.1",
  9892. "source": {
  9893. "type": "git",
  9894. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9895. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9896. },
  9897. "dist": {
  9898. "type": "zip",
  9899. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9900. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9901. "shasum": ""
  9902. },
  9903. "require": {
  9904. "php": ">=7.3"
  9905. },
  9906. "require-dev": {
  9907. "phpunit/phpunit": "^9.3"
  9908. },
  9909. "type": "library",
  9910. "extra": {
  9911. "branch-alias": {
  9912. "dev-master": "1.0-dev"
  9913. }
  9914. },
  9915. "autoload": {
  9916. "classmap": [
  9917. "src/"
  9918. ]
  9919. },
  9920. "notification-url": "https://packagist.org/downloads/",
  9921. "license": [
  9922. "BSD-3-Clause"
  9923. ],
  9924. "authors": [
  9925. {
  9926. "name": "Sebastian Bergmann",
  9927. "email": "sebastian@phpunit.de",
  9928. "role": "lead"
  9929. }
  9930. ],
  9931. "description": "Library for parsing CLI options",
  9932. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9933. "support": {
  9934. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9935. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9936. },
  9937. "funding": [
  9938. {
  9939. "url": "https://github.com/sebastianbergmann",
  9940. "type": "github"
  9941. }
  9942. ],
  9943. "time": "2020-09-28T06:08:49+00:00"
  9944. },
  9945. {
  9946. "name": "sebastian/code-unit",
  9947. "version": "1.0.8",
  9948. "source": {
  9949. "type": "git",
  9950. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9951. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9952. },
  9953. "dist": {
  9954. "type": "zip",
  9955. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9956. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9957. "shasum": ""
  9958. },
  9959. "require": {
  9960. "php": ">=7.3"
  9961. },
  9962. "require-dev": {
  9963. "phpunit/phpunit": "^9.3"
  9964. },
  9965. "type": "library",
  9966. "extra": {
  9967. "branch-alias": {
  9968. "dev-master": "1.0-dev"
  9969. }
  9970. },
  9971. "autoload": {
  9972. "classmap": [
  9973. "src/"
  9974. ]
  9975. },
  9976. "notification-url": "https://packagist.org/downloads/",
  9977. "license": [
  9978. "BSD-3-Clause"
  9979. ],
  9980. "authors": [
  9981. {
  9982. "name": "Sebastian Bergmann",
  9983. "email": "sebastian@phpunit.de",
  9984. "role": "lead"
  9985. }
  9986. ],
  9987. "description": "Collection of value objects that represent the PHP code units",
  9988. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9989. "support": {
  9990. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9991. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9992. },
  9993. "funding": [
  9994. {
  9995. "url": "https://github.com/sebastianbergmann",
  9996. "type": "github"
  9997. }
  9998. ],
  9999. "time": "2020-10-26T13:08:54+00:00"
  10000. },
  10001. {
  10002. "name": "sebastian/code-unit-reverse-lookup",
  10003. "version": "2.0.3",
  10004. "source": {
  10005. "type": "git",
  10006. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10007. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10008. },
  10009. "dist": {
  10010. "type": "zip",
  10011. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10012. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10013. "shasum": ""
  10014. },
  10015. "require": {
  10016. "php": ">=7.3"
  10017. },
  10018. "require-dev": {
  10019. "phpunit/phpunit": "^9.3"
  10020. },
  10021. "type": "library",
  10022. "extra": {
  10023. "branch-alias": {
  10024. "dev-master": "2.0-dev"
  10025. }
  10026. },
  10027. "autoload": {
  10028. "classmap": [
  10029. "src/"
  10030. ]
  10031. },
  10032. "notification-url": "https://packagist.org/downloads/",
  10033. "license": [
  10034. "BSD-3-Clause"
  10035. ],
  10036. "authors": [
  10037. {
  10038. "name": "Sebastian Bergmann",
  10039. "email": "sebastian@phpunit.de"
  10040. }
  10041. ],
  10042. "description": "Looks up which function or method a line of code belongs to",
  10043. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10044. "support": {
  10045. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10046. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10047. },
  10048. "funding": [
  10049. {
  10050. "url": "https://github.com/sebastianbergmann",
  10051. "type": "github"
  10052. }
  10053. ],
  10054. "time": "2020-09-28T05:30:19+00:00"
  10055. },
  10056. {
  10057. "name": "sebastian/comparator",
  10058. "version": "4.0.8",
  10059. "source": {
  10060. "type": "git",
  10061. "url": "https://github.com/sebastianbergmann/comparator.git",
  10062. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  10063. },
  10064. "dist": {
  10065. "type": "zip",
  10066. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  10067. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  10068. "shasum": ""
  10069. },
  10070. "require": {
  10071. "php": ">=7.3",
  10072. "sebastian/diff": "^4.0",
  10073. "sebastian/exporter": "^4.0"
  10074. },
  10075. "require-dev": {
  10076. "phpunit/phpunit": "^9.3"
  10077. },
  10078. "type": "library",
  10079. "extra": {
  10080. "branch-alias": {
  10081. "dev-master": "4.0-dev"
  10082. }
  10083. },
  10084. "autoload": {
  10085. "classmap": [
  10086. "src/"
  10087. ]
  10088. },
  10089. "notification-url": "https://packagist.org/downloads/",
  10090. "license": [
  10091. "BSD-3-Clause"
  10092. ],
  10093. "authors": [
  10094. {
  10095. "name": "Sebastian Bergmann",
  10096. "email": "sebastian@phpunit.de"
  10097. },
  10098. {
  10099. "name": "Jeff Welch",
  10100. "email": "whatthejeff@gmail.com"
  10101. },
  10102. {
  10103. "name": "Volker Dusch",
  10104. "email": "github@wallbash.com"
  10105. },
  10106. {
  10107. "name": "Bernhard Schussek",
  10108. "email": "bschussek@2bepublished.at"
  10109. }
  10110. ],
  10111. "description": "Provides the functionality to compare PHP values for equality",
  10112. "homepage": "https://github.com/sebastianbergmann/comparator",
  10113. "keywords": [
  10114. "comparator",
  10115. "compare",
  10116. "equality"
  10117. ],
  10118. "support": {
  10119. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10120. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  10121. },
  10122. "funding": [
  10123. {
  10124. "url": "https://github.com/sebastianbergmann",
  10125. "type": "github"
  10126. }
  10127. ],
  10128. "time": "2022-09-14T12:41:17+00:00"
  10129. },
  10130. {
  10131. "name": "sebastian/complexity",
  10132. "version": "2.0.3",
  10133. "source": {
  10134. "type": "git",
  10135. "url": "https://github.com/sebastianbergmann/complexity.git",
  10136. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  10137. },
  10138. "dist": {
  10139. "type": "zip",
  10140. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  10141. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  10142. "shasum": ""
  10143. },
  10144. "require": {
  10145. "nikic/php-parser": "^4.18 || ^5.0",
  10146. "php": ">=7.3"
  10147. },
  10148. "require-dev": {
  10149. "phpunit/phpunit": "^9.3"
  10150. },
  10151. "type": "library",
  10152. "extra": {
  10153. "branch-alias": {
  10154. "dev-master": "2.0-dev"
  10155. }
  10156. },
  10157. "autoload": {
  10158. "classmap": [
  10159. "src/"
  10160. ]
  10161. },
  10162. "notification-url": "https://packagist.org/downloads/",
  10163. "license": [
  10164. "BSD-3-Clause"
  10165. ],
  10166. "authors": [
  10167. {
  10168. "name": "Sebastian Bergmann",
  10169. "email": "sebastian@phpunit.de",
  10170. "role": "lead"
  10171. }
  10172. ],
  10173. "description": "Library for calculating the complexity of PHP code units",
  10174. "homepage": "https://github.com/sebastianbergmann/complexity",
  10175. "support": {
  10176. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10177. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  10178. },
  10179. "funding": [
  10180. {
  10181. "url": "https://github.com/sebastianbergmann",
  10182. "type": "github"
  10183. }
  10184. ],
  10185. "time": "2023-12-22T06:19:30+00:00"
  10186. },
  10187. {
  10188. "name": "sebastian/diff",
  10189. "version": "4.0.5",
  10190. "source": {
  10191. "type": "git",
  10192. "url": "https://github.com/sebastianbergmann/diff.git",
  10193. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  10194. },
  10195. "dist": {
  10196. "type": "zip",
  10197. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  10198. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  10199. "shasum": ""
  10200. },
  10201. "require": {
  10202. "php": ">=7.3"
  10203. },
  10204. "require-dev": {
  10205. "phpunit/phpunit": "^9.3",
  10206. "symfony/process": "^4.2 || ^5"
  10207. },
  10208. "type": "library",
  10209. "extra": {
  10210. "branch-alias": {
  10211. "dev-master": "4.0-dev"
  10212. }
  10213. },
  10214. "autoload": {
  10215. "classmap": [
  10216. "src/"
  10217. ]
  10218. },
  10219. "notification-url": "https://packagist.org/downloads/",
  10220. "license": [
  10221. "BSD-3-Clause"
  10222. ],
  10223. "authors": [
  10224. {
  10225. "name": "Sebastian Bergmann",
  10226. "email": "sebastian@phpunit.de"
  10227. },
  10228. {
  10229. "name": "Kore Nordmann",
  10230. "email": "mail@kore-nordmann.de"
  10231. }
  10232. ],
  10233. "description": "Diff implementation",
  10234. "homepage": "https://github.com/sebastianbergmann/diff",
  10235. "keywords": [
  10236. "diff",
  10237. "udiff",
  10238. "unidiff",
  10239. "unified diff"
  10240. ],
  10241. "support": {
  10242. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10243. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  10244. },
  10245. "funding": [
  10246. {
  10247. "url": "https://github.com/sebastianbergmann",
  10248. "type": "github"
  10249. }
  10250. ],
  10251. "time": "2023-05-07T05:35:17+00:00"
  10252. },
  10253. {
  10254. "name": "sebastian/environment",
  10255. "version": "5.1.5",
  10256. "source": {
  10257. "type": "git",
  10258. "url": "https://github.com/sebastianbergmann/environment.git",
  10259. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10260. },
  10261. "dist": {
  10262. "type": "zip",
  10263. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10264. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10265. "shasum": ""
  10266. },
  10267. "require": {
  10268. "php": ">=7.3"
  10269. },
  10270. "require-dev": {
  10271. "phpunit/phpunit": "^9.3"
  10272. },
  10273. "suggest": {
  10274. "ext-posix": "*"
  10275. },
  10276. "type": "library",
  10277. "extra": {
  10278. "branch-alias": {
  10279. "dev-master": "5.1-dev"
  10280. }
  10281. },
  10282. "autoload": {
  10283. "classmap": [
  10284. "src/"
  10285. ]
  10286. },
  10287. "notification-url": "https://packagist.org/downloads/",
  10288. "license": [
  10289. "BSD-3-Clause"
  10290. ],
  10291. "authors": [
  10292. {
  10293. "name": "Sebastian Bergmann",
  10294. "email": "sebastian@phpunit.de"
  10295. }
  10296. ],
  10297. "description": "Provides functionality to handle HHVM/PHP environments",
  10298. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10299. "keywords": [
  10300. "Xdebug",
  10301. "environment",
  10302. "hhvm"
  10303. ],
  10304. "support": {
  10305. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10306. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10307. },
  10308. "funding": [
  10309. {
  10310. "url": "https://github.com/sebastianbergmann",
  10311. "type": "github"
  10312. }
  10313. ],
  10314. "time": "2023-02-03T06:03:51+00:00"
  10315. },
  10316. {
  10317. "name": "sebastian/exporter",
  10318. "version": "4.0.5",
  10319. "source": {
  10320. "type": "git",
  10321. "url": "https://github.com/sebastianbergmann/exporter.git",
  10322. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  10323. },
  10324. "dist": {
  10325. "type": "zip",
  10326. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10327. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10328. "shasum": ""
  10329. },
  10330. "require": {
  10331. "php": ">=7.3",
  10332. "sebastian/recursion-context": "^4.0"
  10333. },
  10334. "require-dev": {
  10335. "ext-mbstring": "*",
  10336. "phpunit/phpunit": "^9.3"
  10337. },
  10338. "type": "library",
  10339. "extra": {
  10340. "branch-alias": {
  10341. "dev-master": "4.0-dev"
  10342. }
  10343. },
  10344. "autoload": {
  10345. "classmap": [
  10346. "src/"
  10347. ]
  10348. },
  10349. "notification-url": "https://packagist.org/downloads/",
  10350. "license": [
  10351. "BSD-3-Clause"
  10352. ],
  10353. "authors": [
  10354. {
  10355. "name": "Sebastian Bergmann",
  10356. "email": "sebastian@phpunit.de"
  10357. },
  10358. {
  10359. "name": "Jeff Welch",
  10360. "email": "whatthejeff@gmail.com"
  10361. },
  10362. {
  10363. "name": "Volker Dusch",
  10364. "email": "github@wallbash.com"
  10365. },
  10366. {
  10367. "name": "Adam Harvey",
  10368. "email": "aharvey@php.net"
  10369. },
  10370. {
  10371. "name": "Bernhard Schussek",
  10372. "email": "bschussek@gmail.com"
  10373. }
  10374. ],
  10375. "description": "Provides the functionality to export PHP variables for visualization",
  10376. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10377. "keywords": [
  10378. "export",
  10379. "exporter"
  10380. ],
  10381. "support": {
  10382. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10383. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10384. },
  10385. "funding": [
  10386. {
  10387. "url": "https://github.com/sebastianbergmann",
  10388. "type": "github"
  10389. }
  10390. ],
  10391. "time": "2022-09-14T06:03:37+00:00"
  10392. },
  10393. {
  10394. "name": "sebastian/global-state",
  10395. "version": "5.0.6",
  10396. "source": {
  10397. "type": "git",
  10398. "url": "https://github.com/sebastianbergmann/global-state.git",
  10399. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  10400. },
  10401. "dist": {
  10402. "type": "zip",
  10403. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  10404. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  10405. "shasum": ""
  10406. },
  10407. "require": {
  10408. "php": ">=7.3",
  10409. "sebastian/object-reflector": "^2.0",
  10410. "sebastian/recursion-context": "^4.0"
  10411. },
  10412. "require-dev": {
  10413. "ext-dom": "*",
  10414. "phpunit/phpunit": "^9.3"
  10415. },
  10416. "suggest": {
  10417. "ext-uopz": "*"
  10418. },
  10419. "type": "library",
  10420. "extra": {
  10421. "branch-alias": {
  10422. "dev-master": "5.0-dev"
  10423. }
  10424. },
  10425. "autoload": {
  10426. "classmap": [
  10427. "src/"
  10428. ]
  10429. },
  10430. "notification-url": "https://packagist.org/downloads/",
  10431. "license": [
  10432. "BSD-3-Clause"
  10433. ],
  10434. "authors": [
  10435. {
  10436. "name": "Sebastian Bergmann",
  10437. "email": "sebastian@phpunit.de"
  10438. }
  10439. ],
  10440. "description": "Snapshotting of global state",
  10441. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10442. "keywords": [
  10443. "global state"
  10444. ],
  10445. "support": {
  10446. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10447. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  10448. },
  10449. "funding": [
  10450. {
  10451. "url": "https://github.com/sebastianbergmann",
  10452. "type": "github"
  10453. }
  10454. ],
  10455. "time": "2023-08-02T09:26:13+00:00"
  10456. },
  10457. {
  10458. "name": "sebastian/lines-of-code",
  10459. "version": "1.0.4",
  10460. "source": {
  10461. "type": "git",
  10462. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10463. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10464. },
  10465. "dist": {
  10466. "type": "zip",
  10467. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10468. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10469. "shasum": ""
  10470. },
  10471. "require": {
  10472. "nikic/php-parser": "^4.18 || ^5.0",
  10473. "php": ">=7.3"
  10474. },
  10475. "require-dev": {
  10476. "phpunit/phpunit": "^9.3"
  10477. },
  10478. "type": "library",
  10479. "extra": {
  10480. "branch-alias": {
  10481. "dev-master": "1.0-dev"
  10482. }
  10483. },
  10484. "autoload": {
  10485. "classmap": [
  10486. "src/"
  10487. ]
  10488. },
  10489. "notification-url": "https://packagist.org/downloads/",
  10490. "license": [
  10491. "BSD-3-Clause"
  10492. ],
  10493. "authors": [
  10494. {
  10495. "name": "Sebastian Bergmann",
  10496. "email": "sebastian@phpunit.de",
  10497. "role": "lead"
  10498. }
  10499. ],
  10500. "description": "Library for counting the lines of code in PHP source code",
  10501. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10502. "support": {
  10503. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10504. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10505. },
  10506. "funding": [
  10507. {
  10508. "url": "https://github.com/sebastianbergmann",
  10509. "type": "github"
  10510. }
  10511. ],
  10512. "time": "2023-12-22T06:20:34+00:00"
  10513. },
  10514. {
  10515. "name": "sebastian/object-enumerator",
  10516. "version": "4.0.4",
  10517. "source": {
  10518. "type": "git",
  10519. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10520. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10521. },
  10522. "dist": {
  10523. "type": "zip",
  10524. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10525. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10526. "shasum": ""
  10527. },
  10528. "require": {
  10529. "php": ">=7.3",
  10530. "sebastian/object-reflector": "^2.0",
  10531. "sebastian/recursion-context": "^4.0"
  10532. },
  10533. "require-dev": {
  10534. "phpunit/phpunit": "^9.3"
  10535. },
  10536. "type": "library",
  10537. "extra": {
  10538. "branch-alias": {
  10539. "dev-master": "4.0-dev"
  10540. }
  10541. },
  10542. "autoload": {
  10543. "classmap": [
  10544. "src/"
  10545. ]
  10546. },
  10547. "notification-url": "https://packagist.org/downloads/",
  10548. "license": [
  10549. "BSD-3-Clause"
  10550. ],
  10551. "authors": [
  10552. {
  10553. "name": "Sebastian Bergmann",
  10554. "email": "sebastian@phpunit.de"
  10555. }
  10556. ],
  10557. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10558. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10559. "support": {
  10560. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10561. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10562. },
  10563. "funding": [
  10564. {
  10565. "url": "https://github.com/sebastianbergmann",
  10566. "type": "github"
  10567. }
  10568. ],
  10569. "time": "2020-10-26T13:12:34+00:00"
  10570. },
  10571. {
  10572. "name": "sebastian/object-reflector",
  10573. "version": "2.0.4",
  10574. "source": {
  10575. "type": "git",
  10576. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10577. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10578. },
  10579. "dist": {
  10580. "type": "zip",
  10581. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10582. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10583. "shasum": ""
  10584. },
  10585. "require": {
  10586. "php": ">=7.3"
  10587. },
  10588. "require-dev": {
  10589. "phpunit/phpunit": "^9.3"
  10590. },
  10591. "type": "library",
  10592. "extra": {
  10593. "branch-alias": {
  10594. "dev-master": "2.0-dev"
  10595. }
  10596. },
  10597. "autoload": {
  10598. "classmap": [
  10599. "src/"
  10600. ]
  10601. },
  10602. "notification-url": "https://packagist.org/downloads/",
  10603. "license": [
  10604. "BSD-3-Clause"
  10605. ],
  10606. "authors": [
  10607. {
  10608. "name": "Sebastian Bergmann",
  10609. "email": "sebastian@phpunit.de"
  10610. }
  10611. ],
  10612. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10613. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10614. "support": {
  10615. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10616. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10617. },
  10618. "funding": [
  10619. {
  10620. "url": "https://github.com/sebastianbergmann",
  10621. "type": "github"
  10622. }
  10623. ],
  10624. "time": "2020-10-26T13:14:26+00:00"
  10625. },
  10626. {
  10627. "name": "sebastian/recursion-context",
  10628. "version": "4.0.5",
  10629. "source": {
  10630. "type": "git",
  10631. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10632. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10633. },
  10634. "dist": {
  10635. "type": "zip",
  10636. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10637. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10638. "shasum": ""
  10639. },
  10640. "require": {
  10641. "php": ">=7.3"
  10642. },
  10643. "require-dev": {
  10644. "phpunit/phpunit": "^9.3"
  10645. },
  10646. "type": "library",
  10647. "extra": {
  10648. "branch-alias": {
  10649. "dev-master": "4.0-dev"
  10650. }
  10651. },
  10652. "autoload": {
  10653. "classmap": [
  10654. "src/"
  10655. ]
  10656. },
  10657. "notification-url": "https://packagist.org/downloads/",
  10658. "license": [
  10659. "BSD-3-Clause"
  10660. ],
  10661. "authors": [
  10662. {
  10663. "name": "Sebastian Bergmann",
  10664. "email": "sebastian@phpunit.de"
  10665. },
  10666. {
  10667. "name": "Jeff Welch",
  10668. "email": "whatthejeff@gmail.com"
  10669. },
  10670. {
  10671. "name": "Adam Harvey",
  10672. "email": "aharvey@php.net"
  10673. }
  10674. ],
  10675. "description": "Provides functionality to recursively process PHP variables",
  10676. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10677. "support": {
  10678. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10679. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10680. },
  10681. "funding": [
  10682. {
  10683. "url": "https://github.com/sebastianbergmann",
  10684. "type": "github"
  10685. }
  10686. ],
  10687. "time": "2023-02-03T06:07:39+00:00"
  10688. },
  10689. {
  10690. "name": "sebastian/resource-operations",
  10691. "version": "3.0.3",
  10692. "source": {
  10693. "type": "git",
  10694. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10695. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10696. },
  10697. "dist": {
  10698. "type": "zip",
  10699. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10700. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10701. "shasum": ""
  10702. },
  10703. "require": {
  10704. "php": ">=7.3"
  10705. },
  10706. "require-dev": {
  10707. "phpunit/phpunit": "^9.0"
  10708. },
  10709. "type": "library",
  10710. "extra": {
  10711. "branch-alias": {
  10712. "dev-master": "3.0-dev"
  10713. }
  10714. },
  10715. "autoload": {
  10716. "classmap": [
  10717. "src/"
  10718. ]
  10719. },
  10720. "notification-url": "https://packagist.org/downloads/",
  10721. "license": [
  10722. "BSD-3-Clause"
  10723. ],
  10724. "authors": [
  10725. {
  10726. "name": "Sebastian Bergmann",
  10727. "email": "sebastian@phpunit.de"
  10728. }
  10729. ],
  10730. "description": "Provides a list of PHP built-in functions that operate on resources",
  10731. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10732. "support": {
  10733. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10734. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10735. },
  10736. "funding": [
  10737. {
  10738. "url": "https://github.com/sebastianbergmann",
  10739. "type": "github"
  10740. }
  10741. ],
  10742. "time": "2020-09-28T06:45:17+00:00"
  10743. },
  10744. {
  10745. "name": "sebastian/type",
  10746. "version": "3.2.1",
  10747. "source": {
  10748. "type": "git",
  10749. "url": "https://github.com/sebastianbergmann/type.git",
  10750. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10751. },
  10752. "dist": {
  10753. "type": "zip",
  10754. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10755. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10756. "shasum": ""
  10757. },
  10758. "require": {
  10759. "php": ">=7.3"
  10760. },
  10761. "require-dev": {
  10762. "phpunit/phpunit": "^9.5"
  10763. },
  10764. "type": "library",
  10765. "extra": {
  10766. "branch-alias": {
  10767. "dev-master": "3.2-dev"
  10768. }
  10769. },
  10770. "autoload": {
  10771. "classmap": [
  10772. "src/"
  10773. ]
  10774. },
  10775. "notification-url": "https://packagist.org/downloads/",
  10776. "license": [
  10777. "BSD-3-Clause"
  10778. ],
  10779. "authors": [
  10780. {
  10781. "name": "Sebastian Bergmann",
  10782. "email": "sebastian@phpunit.de",
  10783. "role": "lead"
  10784. }
  10785. ],
  10786. "description": "Collection of value objects that represent the types of the PHP type system",
  10787. "homepage": "https://github.com/sebastianbergmann/type",
  10788. "support": {
  10789. "issues": "https://github.com/sebastianbergmann/type/issues",
  10790. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10791. },
  10792. "funding": [
  10793. {
  10794. "url": "https://github.com/sebastianbergmann",
  10795. "type": "github"
  10796. }
  10797. ],
  10798. "time": "2023-02-03T06:13:03+00:00"
  10799. },
  10800. {
  10801. "name": "sebastian/version",
  10802. "version": "3.0.2",
  10803. "source": {
  10804. "type": "git",
  10805. "url": "https://github.com/sebastianbergmann/version.git",
  10806. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10807. },
  10808. "dist": {
  10809. "type": "zip",
  10810. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10811. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10812. "shasum": ""
  10813. },
  10814. "require": {
  10815. "php": ">=7.3"
  10816. },
  10817. "type": "library",
  10818. "extra": {
  10819. "branch-alias": {
  10820. "dev-master": "3.0-dev"
  10821. }
  10822. },
  10823. "autoload": {
  10824. "classmap": [
  10825. "src/"
  10826. ]
  10827. },
  10828. "notification-url": "https://packagist.org/downloads/",
  10829. "license": [
  10830. "BSD-3-Clause"
  10831. ],
  10832. "authors": [
  10833. {
  10834. "name": "Sebastian Bergmann",
  10835. "email": "sebastian@phpunit.de",
  10836. "role": "lead"
  10837. }
  10838. ],
  10839. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10840. "homepage": "https://github.com/sebastianbergmann/version",
  10841. "support": {
  10842. "issues": "https://github.com/sebastianbergmann/version/issues",
  10843. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10844. },
  10845. "funding": [
  10846. {
  10847. "url": "https://github.com/sebastianbergmann",
  10848. "type": "github"
  10849. }
  10850. ],
  10851. "time": "2020-09-28T06:39:44+00:00"
  10852. },
  10853. {
  10854. "name": "theseer/tokenizer",
  10855. "version": "1.2.2",
  10856. "source": {
  10857. "type": "git",
  10858. "url": "https://github.com/theseer/tokenizer.git",
  10859. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96"
  10860. },
  10861. "dist": {
  10862. "type": "zip",
  10863. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  10864. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  10865. "shasum": ""
  10866. },
  10867. "require": {
  10868. "ext-dom": "*",
  10869. "ext-tokenizer": "*",
  10870. "ext-xmlwriter": "*",
  10871. "php": "^7.2 || ^8.0"
  10872. },
  10873. "type": "library",
  10874. "autoload": {
  10875. "classmap": [
  10876. "src/"
  10877. ]
  10878. },
  10879. "notification-url": "https://packagist.org/downloads/",
  10880. "license": [
  10881. "BSD-3-Clause"
  10882. ],
  10883. "authors": [
  10884. {
  10885. "name": "Arne Blankerts",
  10886. "email": "arne@blankerts.de",
  10887. "role": "Developer"
  10888. }
  10889. ],
  10890. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10891. "support": {
  10892. "issues": "https://github.com/theseer/tokenizer/issues",
  10893. "source": "https://github.com/theseer/tokenizer/tree/1.2.2"
  10894. },
  10895. "funding": [
  10896. {
  10897. "url": "https://github.com/theseer",
  10898. "type": "github"
  10899. }
  10900. ],
  10901. "time": "2023-11-20T00:12:19+00:00"
  10902. }
  10903. ],
  10904. "aliases": [],
  10905. "minimum-stability": "dev",
  10906. "stability-flags": {
  10907. "getuilaboratory/getui-pushapi-php-client-v2": 20
  10908. },
  10909. "prefer-stable": true,
  10910. "prefer-lowest": false,
  10911. "platform": {
  10912. "php": "^8.0",
  10913. "ext-json": "*"
  10914. },
  10915. "platform-dev": [],
  10916. "plugin-api-version": "2.6.0"
  10917. }