composer.lock 419 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658
  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": "e26e92d469452b9f76d8d37af4139f7b",
  8. "packages": [
  9. {
  10. "name": "brick/math",
  11. "version": "0.10.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/brick/math.git",
  15. "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/brick/math/zipball/459f2781e1a08d52ee56b0b1444086e038561e3f",
  20. "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-json": "*",
  31. "php": "^7.4 || ^8.0"
  32. },
  33. "require-dev": {
  34. "php-coveralls/php-coveralls": "^2.2",
  35. "phpunit/phpunit": "^9.0",
  36. "vimeo/psalm": "4.25.0"
  37. },
  38. "type": "library",
  39. "autoload": {
  40. "psr-4": {
  41. "Brick\\Math\\": "src/"
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "MIT"
  47. ],
  48. "description": "Arbitrary-precision arithmetic library",
  49. "keywords": [
  50. "Arbitrary-precision",
  51. "BigInteger",
  52. "BigRational",
  53. "arithmetic",
  54. "bigdecimal",
  55. "bignum",
  56. "brick",
  57. "math"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/brick/math/issues",
  61. "source": "https://github.com/brick/math/tree/0.10.2"
  62. },
  63. "funding": [
  64. {
  65. "url": "https://github.com/BenMorel",
  66. "type": "github"
  67. }
  68. ],
  69. "time": "2022-08-10T22:54:19+00:00"
  70. },
  71. {
  72. "name": "composer/semver",
  73. "version": "3.3.2",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/composer/semver.git",
  77. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  82. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  83. "shasum": "",
  84. "mirrors": [
  85. {
  86. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  87. "preferred": true
  88. }
  89. ]
  90. },
  91. "require": {
  92. "php": "^5.3.2 || ^7.0 || ^8.0"
  93. },
  94. "require-dev": {
  95. "phpstan/phpstan": "^1.4",
  96. "symfony/phpunit-bridge": "^4.2 || ^5"
  97. },
  98. "type": "library",
  99. "extra": {
  100. "branch-alias": {
  101. "dev-main": "3.x-dev"
  102. }
  103. },
  104. "autoload": {
  105. "psr-4": {
  106. "Composer\\Semver\\": "src"
  107. }
  108. },
  109. "notification-url": "https://packagist.org/downloads/",
  110. "license": [
  111. "MIT"
  112. ],
  113. "authors": [
  114. {
  115. "name": "Nils Adermann",
  116. "email": "naderman@naderman.de",
  117. "homepage": "http://www.naderman.de"
  118. },
  119. {
  120. "name": "Jordi Boggiano",
  121. "email": "j.boggiano@seld.be",
  122. "homepage": "http://seld.be"
  123. },
  124. {
  125. "name": "Rob Bast",
  126. "email": "rob.bast@gmail.com",
  127. "homepage": "http://robbast.nl"
  128. }
  129. ],
  130. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  131. "keywords": [
  132. "semantic",
  133. "semver",
  134. "validation",
  135. "versioning"
  136. ],
  137. "support": {
  138. "irc": "irc://irc.freenode.org/composer",
  139. "issues": "https://github.com/composer/semver/issues",
  140. "source": "https://github.com/composer/semver/tree/3.3.2"
  141. },
  142. "funding": [
  143. {
  144. "url": "https://packagist.com",
  145. "type": "custom"
  146. },
  147. {
  148. "url": "https://github.com/composer",
  149. "type": "github"
  150. },
  151. {
  152. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  153. "type": "tidelift"
  154. }
  155. ],
  156. "time": "2022-04-01T19:23:25+00:00"
  157. },
  158. {
  159. "name": "dflydev/dot-access-data",
  160. "version": "v3.0.1",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  164. "reference": "0992cc19268b259a39e86f296da5f0677841f42c"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c",
  169. "reference": "0992cc19268b259a39e86f296da5f0677841f42c",
  170. "shasum": "",
  171. "mirrors": [
  172. {
  173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  174. "preferred": true
  175. }
  176. ]
  177. },
  178. "require": {
  179. "php": "^7.1 || ^8.0"
  180. },
  181. "require-dev": {
  182. "phpstan/phpstan": "^0.12.42",
  183. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  184. "scrutinizer/ocular": "1.6.0",
  185. "squizlabs/php_codesniffer": "^3.5",
  186. "vimeo/psalm": "^3.14"
  187. },
  188. "type": "library",
  189. "extra": {
  190. "branch-alias": {
  191. "dev-main": "3.x-dev"
  192. }
  193. },
  194. "autoload": {
  195. "psr-4": {
  196. "Dflydev\\DotAccessData\\": "src/"
  197. }
  198. },
  199. "notification-url": "https://packagist.org/downloads/",
  200. "license": [
  201. "MIT"
  202. ],
  203. "authors": [
  204. {
  205. "name": "Dragonfly Development Inc.",
  206. "email": "info@dflydev.com",
  207. "homepage": "http://dflydev.com"
  208. },
  209. {
  210. "name": "Beau Simensen",
  211. "email": "beau@dflydev.com",
  212. "homepage": "http://beausimensen.com"
  213. },
  214. {
  215. "name": "Carlos Frutos",
  216. "email": "carlos@kiwing.it",
  217. "homepage": "https://github.com/cfrutos"
  218. },
  219. {
  220. "name": "Colin O'Dell",
  221. "email": "colinodell@gmail.com",
  222. "homepage": "https://www.colinodell.com"
  223. }
  224. ],
  225. "description": "Given a deep data structure, access data by dot notation.",
  226. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  227. "keywords": [
  228. "access",
  229. "data",
  230. "dot",
  231. "notation"
  232. ],
  233. "support": {
  234. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  235. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1"
  236. },
  237. "time": "2021-08-13T13:06:58+00:00"
  238. },
  239. {
  240. "name": "doctrine/deprecations",
  241. "version": "v1.0.0",
  242. "source": {
  243. "type": "git",
  244. "url": "https://github.com/doctrine/deprecations.git",
  245. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  246. },
  247. "dist": {
  248. "type": "zip",
  249. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  250. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  251. "shasum": "",
  252. "mirrors": [
  253. {
  254. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  255. "preferred": true
  256. }
  257. ]
  258. },
  259. "require": {
  260. "php": "^7.1|^8.0"
  261. },
  262. "require-dev": {
  263. "doctrine/coding-standard": "^9",
  264. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  265. "psr/log": "^1|^2|^3"
  266. },
  267. "suggest": {
  268. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  269. },
  270. "type": "library",
  271. "autoload": {
  272. "psr-4": {
  273. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  274. }
  275. },
  276. "notification-url": "https://packagist.org/downloads/",
  277. "license": [
  278. "MIT"
  279. ],
  280. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  281. "homepage": "https://www.doctrine-project.org/",
  282. "support": {
  283. "issues": "https://github.com/doctrine/deprecations/issues",
  284. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  285. },
  286. "time": "2022-05-02T15:47:09+00:00"
  287. },
  288. {
  289. "name": "doctrine/inflector",
  290. "version": "2.0.4",
  291. "source": {
  292. "type": "git",
  293. "url": "https://github.com/doctrine/inflector.git",
  294. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  295. },
  296. "dist": {
  297. "type": "zip",
  298. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  299. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  300. "shasum": "",
  301. "mirrors": [
  302. {
  303. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  304. "preferred": true
  305. }
  306. ]
  307. },
  308. "require": {
  309. "php": "^7.2 || ^8.0"
  310. },
  311. "require-dev": {
  312. "doctrine/coding-standard": "^8.2",
  313. "phpstan/phpstan": "^0.12",
  314. "phpstan/phpstan-phpunit": "^0.12",
  315. "phpstan/phpstan-strict-rules": "^0.12",
  316. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  317. "vimeo/psalm": "^4.10"
  318. },
  319. "type": "library",
  320. "autoload": {
  321. "psr-4": {
  322. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  323. }
  324. },
  325. "notification-url": "https://packagist.org/downloads/",
  326. "license": [
  327. "MIT"
  328. ],
  329. "authors": [
  330. {
  331. "name": "Guilherme Blanco",
  332. "email": "guilhermeblanco@gmail.com"
  333. },
  334. {
  335. "name": "Roman Borschel",
  336. "email": "roman@code-factory.org"
  337. },
  338. {
  339. "name": "Benjamin Eberlei",
  340. "email": "kontakt@beberlei.de"
  341. },
  342. {
  343. "name": "Jonathan Wage",
  344. "email": "jonwage@gmail.com"
  345. },
  346. {
  347. "name": "Johannes Schmitt",
  348. "email": "schmittjoh@gmail.com"
  349. }
  350. ],
  351. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  352. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  353. "keywords": [
  354. "inflection",
  355. "inflector",
  356. "lowercase",
  357. "manipulation",
  358. "php",
  359. "plural",
  360. "singular",
  361. "strings",
  362. "uppercase",
  363. "words"
  364. ],
  365. "support": {
  366. "issues": "https://github.com/doctrine/inflector/issues",
  367. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  368. },
  369. "funding": [
  370. {
  371. "url": "https://www.doctrine-project.org/sponsorship.html",
  372. "type": "custom"
  373. },
  374. {
  375. "url": "https://www.patreon.com/phpdoctrine",
  376. "type": "patreon"
  377. },
  378. {
  379. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  380. "type": "tidelift"
  381. }
  382. ],
  383. "time": "2021-10-22T20:16:43+00:00"
  384. },
  385. {
  386. "name": "doctrine/lexer",
  387. "version": "2.1.0",
  388. "source": {
  389. "type": "git",
  390. "url": "https://github.com/doctrine/lexer.git",
  391. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  392. },
  393. "dist": {
  394. "type": "zip",
  395. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  396. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  397. "shasum": "",
  398. "mirrors": [
  399. {
  400. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  401. "preferred": true
  402. }
  403. ]
  404. },
  405. "require": {
  406. "doctrine/deprecations": "^1.0",
  407. "php": "^7.1 || ^8.0"
  408. },
  409. "require-dev": {
  410. "doctrine/coding-standard": "^9 || ^10",
  411. "phpstan/phpstan": "^1.3",
  412. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  413. "psalm/plugin-phpunit": "^0.18.3",
  414. "vimeo/psalm": "^4.11 || ^5.0"
  415. },
  416. "type": "library",
  417. "autoload": {
  418. "psr-4": {
  419. "Doctrine\\Common\\Lexer\\": "src"
  420. }
  421. },
  422. "notification-url": "https://packagist.org/downloads/",
  423. "license": [
  424. "MIT"
  425. ],
  426. "authors": [
  427. {
  428. "name": "Guilherme Blanco",
  429. "email": "guilhermeblanco@gmail.com"
  430. },
  431. {
  432. "name": "Roman Borschel",
  433. "email": "roman@code-factory.org"
  434. },
  435. {
  436. "name": "Johannes Schmitt",
  437. "email": "schmittjoh@gmail.com"
  438. }
  439. ],
  440. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  441. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  442. "keywords": [
  443. "annotations",
  444. "docblock",
  445. "lexer",
  446. "parser",
  447. "php"
  448. ],
  449. "support": {
  450. "issues": "https://github.com/doctrine/lexer/issues",
  451. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  452. },
  453. "funding": [
  454. {
  455. "url": "https://www.doctrine-project.org/sponsorship.html",
  456. "type": "custom"
  457. },
  458. {
  459. "url": "https://www.patreon.com/phpdoctrine",
  460. "type": "patreon"
  461. },
  462. {
  463. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  464. "type": "tidelift"
  465. }
  466. ],
  467. "time": "2022-12-14T08:49:07+00:00"
  468. },
  469. {
  470. "name": "dragonmantank/cron-expression",
  471. "version": "v3.3.1",
  472. "source": {
  473. "type": "git",
  474. "url": "https://github.com/dragonmantank/cron-expression.git",
  475. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa"
  476. },
  477. "dist": {
  478. "type": "zip",
  479. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  480. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  481. "shasum": "",
  482. "mirrors": [
  483. {
  484. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  485. "preferred": true
  486. }
  487. ]
  488. },
  489. "require": {
  490. "php": "^7.2|^8.0",
  491. "webmozart/assert": "^1.0"
  492. },
  493. "replace": {
  494. "mtdowling/cron-expression": "^1.0"
  495. },
  496. "require-dev": {
  497. "phpstan/extension-installer": "^1.0",
  498. "phpstan/phpstan": "^1.0",
  499. "phpstan/phpstan-webmozart-assert": "^1.0",
  500. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  501. },
  502. "type": "library",
  503. "autoload": {
  504. "psr-4": {
  505. "Cron\\": "src/Cron/"
  506. }
  507. },
  508. "notification-url": "https://packagist.org/downloads/",
  509. "license": [
  510. "MIT"
  511. ],
  512. "authors": [
  513. {
  514. "name": "Chris Tankersley",
  515. "email": "chris@ctankersley.com",
  516. "homepage": "https://github.com/dragonmantank"
  517. }
  518. ],
  519. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  520. "keywords": [
  521. "cron",
  522. "schedule"
  523. ],
  524. "support": {
  525. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  526. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.1"
  527. },
  528. "funding": [
  529. {
  530. "url": "https://github.com/dragonmantank",
  531. "type": "github"
  532. }
  533. ],
  534. "time": "2022-01-18T15:43:28+00:00"
  535. },
  536. {
  537. "name": "egulias/email-validator",
  538. "version": "3.2.5",
  539. "source": {
  540. "type": "git",
  541. "url": "https://github.com/egulias/EmailValidator.git",
  542. "reference": "b531a2311709443320c786feb4519cfaf94af796"
  543. },
  544. "dist": {
  545. "type": "zip",
  546. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b531a2311709443320c786feb4519cfaf94af796",
  547. "reference": "b531a2311709443320c786feb4519cfaf94af796",
  548. "shasum": "",
  549. "mirrors": [
  550. {
  551. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  552. "preferred": true
  553. }
  554. ]
  555. },
  556. "require": {
  557. "doctrine/lexer": "^1.2|^2",
  558. "php": ">=7.2",
  559. "symfony/polyfill-intl-idn": "^1.15"
  560. },
  561. "require-dev": {
  562. "phpunit/phpunit": "^8.5.8|^9.3.3",
  563. "vimeo/psalm": "^4"
  564. },
  565. "suggest": {
  566. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  567. },
  568. "type": "library",
  569. "extra": {
  570. "branch-alias": {
  571. "dev-master": "3.0.x-dev"
  572. }
  573. },
  574. "autoload": {
  575. "psr-4": {
  576. "Egulias\\EmailValidator\\": "src"
  577. }
  578. },
  579. "notification-url": "https://packagist.org/downloads/",
  580. "license": [
  581. "MIT"
  582. ],
  583. "authors": [
  584. {
  585. "name": "Eduardo Gulias Davis"
  586. }
  587. ],
  588. "description": "A library for validating emails against several RFCs",
  589. "homepage": "https://github.com/egulias/EmailValidator",
  590. "keywords": [
  591. "email",
  592. "emailvalidation",
  593. "emailvalidator",
  594. "validation",
  595. "validator"
  596. ],
  597. "support": {
  598. "issues": "https://github.com/egulias/EmailValidator/issues",
  599. "source": "https://github.com/egulias/EmailValidator/tree/3.2.5"
  600. },
  601. "funding": [
  602. {
  603. "url": "https://github.com/egulias",
  604. "type": "github"
  605. }
  606. ],
  607. "time": "2023-01-02T17:26:14+00:00"
  608. },
  609. {
  610. "name": "elfsundae/laravel-hashid",
  611. "version": "1.7.1",
  612. "source": {
  613. "type": "git",
  614. "url": "https://github.com/ElfSundae/laravel-hashid.git",
  615. "reference": "86df3130db08bfd9954daed64e1db7ceba8270e3"
  616. },
  617. "dist": {
  618. "type": "zip",
  619. "url": "https://api.github.com/repos/ElfSundae/laravel-hashid/zipball/86df3130db08bfd9954daed64e1db7ceba8270e3",
  620. "reference": "86df3130db08bfd9954daed64e1db7ceba8270e3",
  621. "shasum": "",
  622. "mirrors": [
  623. {
  624. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  625. "preferred": true
  626. }
  627. ]
  628. },
  629. "require": {
  630. "elfsundae/urlsafe-base64": "^1.1",
  631. "hashids/hashids": "^2.0.4|^3.0|^4.0",
  632. "illuminate/console": "^5.0|^6.0|^7.0|^8.0|^9.0",
  633. "illuminate/support": "^5.0|^6.0|^7.0|^8.0|^9.0",
  634. "jenssegers/optimus": "^1.0",
  635. "php": "^7.1|^8.0",
  636. "tuupola/base62": "^2.0"
  637. },
  638. "require-dev": {
  639. "mockery/mockery": "^1.0",
  640. "orchestra/testbench": "^3.0|^4.0|^5.0|^6.0|^7.0",
  641. "phpunit/phpunit": "^5.7|^6.0|^7.0|^8.0|^9.0"
  642. },
  643. "suggest": {
  644. "elfsundae/laravel-hashid-uuid": "Shorten UUID encoding"
  645. },
  646. "type": "library",
  647. "extra": {
  648. "branch-alias": {
  649. "dev-master": "1.7-dev"
  650. },
  651. "laravel": {
  652. "providers": [
  653. "ElfSundae\\Laravel\\Hashid\\HashidServiceProvider"
  654. ],
  655. "aliases": {
  656. "Hashid": "ElfSundae\\Laravel\\Hashid\\Facades\\Hashid"
  657. }
  658. }
  659. },
  660. "autoload": {
  661. "files": [
  662. "src/helpers.php"
  663. ],
  664. "psr-4": {
  665. "ElfSundae\\Laravel\\Hashid\\": "src/"
  666. }
  667. },
  668. "notification-url": "https://packagist.org/downloads/",
  669. "license": [
  670. "MIT"
  671. ],
  672. "authors": [
  673. {
  674. "name": "Elf Sundae",
  675. "email": "elf.sundae@gmail.com",
  676. "homepage": "https://0x123.com"
  677. }
  678. ],
  679. "description": "A simple, elegant way to obfuscate your data by generating reversible, non-sequential, URL-safe identifiers.",
  680. "homepage": "https://github.com/ElfSundae/laravel-hashid",
  681. "keywords": [
  682. "URL safe",
  683. "base62",
  684. "base64",
  685. "hashid",
  686. "hashids",
  687. "obfuscate",
  688. "optimus"
  689. ],
  690. "support": {
  691. "issues": "https://github.com/ElfSundae/laravel-hashid/issues",
  692. "source": "https://github.com/ElfSundae/laravel-hashid/tree/1.7.1"
  693. },
  694. "time": "2022-05-01T19:52:44+00:00"
  695. },
  696. {
  697. "name": "elfsundae/urlsafe-base64",
  698. "version": "1.1.1",
  699. "source": {
  700. "type": "git",
  701. "url": "https://github.com/ElfSundae/urlsafe-base64.git",
  702. "reference": "fffdc235475308068e92c8bb1dec6b4bc7b95e73"
  703. },
  704. "dist": {
  705. "type": "zip",
  706. "url": "https://api.github.com/repos/ElfSundae/urlsafe-base64/zipball/fffdc235475308068e92c8bb1dec6b4bc7b95e73",
  707. "reference": "fffdc235475308068e92c8bb1dec6b4bc7b95e73",
  708. "shasum": "",
  709. "mirrors": [
  710. {
  711. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  712. "preferred": true
  713. }
  714. ]
  715. },
  716. "require-dev": {
  717. "paragonie/random_compat": "~2.0",
  718. "phpunit/phpunit": "~5.4"
  719. },
  720. "type": "library",
  721. "autoload": {
  722. "files": [
  723. "src/helpers.php"
  724. ]
  725. },
  726. "notification-url": "https://packagist.org/downloads/",
  727. "license": [
  728. "MIT"
  729. ],
  730. "authors": [
  731. {
  732. "name": "Elf Sundae",
  733. "email": "elf.sundae@gmail.com",
  734. "homepage": "https://0x123.com"
  735. }
  736. ],
  737. "description": "URL safe base64 encoding for PHP",
  738. "homepage": "https://github.com/ElfSundae/urlsafe-base64",
  739. "keywords": [
  740. "base64",
  741. "urlsafe"
  742. ],
  743. "support": {
  744. "issues": "https://github.com/ElfSundae/urlsafe-base64/issues",
  745. "source": "https://github.com/ElfSundae/urlsafe-base64/tree/master"
  746. },
  747. "time": "2017-12-11T14:50:59+00:00"
  748. },
  749. {
  750. "name": "ezyang/htmlpurifier",
  751. "version": "v4.16.0",
  752. "source": {
  753. "type": "git",
  754. "url": "https://github.com/ezyang/htmlpurifier.git",
  755. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  756. },
  757. "dist": {
  758. "type": "zip",
  759. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  760. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  761. "shasum": "",
  762. "mirrors": [
  763. {
  764. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  765. "preferred": true
  766. }
  767. ]
  768. },
  769. "require": {
  770. "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"
  771. },
  772. "require-dev": {
  773. "cerdic/css-tidy": "^1.7 || ^2.0",
  774. "simpletest/simpletest": "dev-master"
  775. },
  776. "suggest": {
  777. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  778. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  779. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  780. "ext-tidy": "Used for pretty-printing HTML"
  781. },
  782. "type": "library",
  783. "autoload": {
  784. "files": [
  785. "library/HTMLPurifier.composer.php"
  786. ],
  787. "psr-0": {
  788. "HTMLPurifier": "library/"
  789. },
  790. "exclude-from-classmap": [
  791. "/library/HTMLPurifier/Language/"
  792. ]
  793. },
  794. "notification-url": "https://packagist.org/downloads/",
  795. "license": [
  796. "LGPL-2.1-or-later"
  797. ],
  798. "authors": [
  799. {
  800. "name": "Edward Z. Yang",
  801. "email": "admin@htmlpurifier.org",
  802. "homepage": "http://ezyang.com"
  803. }
  804. ],
  805. "description": "Standards compliant HTML filter written in PHP",
  806. "homepage": "http://htmlpurifier.org/",
  807. "keywords": [
  808. "html"
  809. ],
  810. "support": {
  811. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  812. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  813. },
  814. "time": "2022-09-18T07:06:19+00:00"
  815. },
  816. {
  817. "name": "fruitcake/php-cors",
  818. "version": "v1.2.0",
  819. "source": {
  820. "type": "git",
  821. "url": "https://github.com/fruitcake/php-cors.git",
  822. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  823. },
  824. "dist": {
  825. "type": "zip",
  826. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  827. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  828. "shasum": "",
  829. "mirrors": [
  830. {
  831. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  832. "preferred": true
  833. }
  834. ]
  835. },
  836. "require": {
  837. "php": "^7.4|^8.0",
  838. "symfony/http-foundation": "^4.4|^5.4|^6"
  839. },
  840. "require-dev": {
  841. "phpstan/phpstan": "^1.4",
  842. "phpunit/phpunit": "^9",
  843. "squizlabs/php_codesniffer": "^3.5"
  844. },
  845. "type": "library",
  846. "extra": {
  847. "branch-alias": {
  848. "dev-main": "1.1-dev"
  849. }
  850. },
  851. "autoload": {
  852. "psr-4": {
  853. "Fruitcake\\Cors\\": "src/"
  854. }
  855. },
  856. "notification-url": "https://packagist.org/downloads/",
  857. "license": [
  858. "MIT"
  859. ],
  860. "authors": [
  861. {
  862. "name": "Fruitcake",
  863. "homepage": "https://fruitcake.nl"
  864. },
  865. {
  866. "name": "Barryvdh",
  867. "email": "barryvdh@gmail.com"
  868. }
  869. ],
  870. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  871. "homepage": "https://github.com/fruitcake/php-cors",
  872. "keywords": [
  873. "cors",
  874. "laravel",
  875. "symfony"
  876. ],
  877. "support": {
  878. "issues": "https://github.com/fruitcake/php-cors/issues",
  879. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  880. },
  881. "funding": [
  882. {
  883. "url": "https://fruitcake.nl",
  884. "type": "custom"
  885. },
  886. {
  887. "url": "https://github.com/barryvdh",
  888. "type": "github"
  889. }
  890. ],
  891. "time": "2022-02-20T15:07:15+00:00"
  892. },
  893. {
  894. "name": "graham-campbell/result-type",
  895. "version": "v1.1.0",
  896. "source": {
  897. "type": "git",
  898. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  899. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8"
  900. },
  901. "dist": {
  902. "type": "zip",
  903. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/a878d45c1914464426dc94da61c9e1d36ae262a8",
  904. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8",
  905. "shasum": "",
  906. "mirrors": [
  907. {
  908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  909. "preferred": true
  910. }
  911. ]
  912. },
  913. "require": {
  914. "php": "^7.2.5 || ^8.0",
  915. "phpoption/phpoption": "^1.9"
  916. },
  917. "require-dev": {
  918. "phpunit/phpunit": "^8.5.28 || ^9.5.21"
  919. },
  920. "type": "library",
  921. "autoload": {
  922. "psr-4": {
  923. "GrahamCampbell\\ResultType\\": "src/"
  924. }
  925. },
  926. "notification-url": "https://packagist.org/downloads/",
  927. "license": [
  928. "MIT"
  929. ],
  930. "authors": [
  931. {
  932. "name": "Graham Campbell",
  933. "email": "hello@gjcampbell.co.uk",
  934. "homepage": "https://github.com/GrahamCampbell"
  935. }
  936. ],
  937. "description": "An Implementation Of The Result Type",
  938. "keywords": [
  939. "Graham Campbell",
  940. "GrahamCampbell",
  941. "Result Type",
  942. "Result-Type",
  943. "result"
  944. ],
  945. "support": {
  946. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  947. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.0"
  948. },
  949. "funding": [
  950. {
  951. "url": "https://github.com/GrahamCampbell",
  952. "type": "github"
  953. },
  954. {
  955. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  956. "type": "tidelift"
  957. }
  958. ],
  959. "time": "2022-07-30T15:56:11+00:00"
  960. },
  961. {
  962. "name": "guzzlehttp/guzzle",
  963. "version": "7.5.1",
  964. "source": {
  965. "type": "git",
  966. "url": "https://github.com/guzzle/guzzle.git",
  967. "reference": "b964ca597e86b752cd994f27293e9fa6b6a95ed9"
  968. },
  969. "dist": {
  970. "type": "zip",
  971. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b964ca597e86b752cd994f27293e9fa6b6a95ed9",
  972. "reference": "b964ca597e86b752cd994f27293e9fa6b6a95ed9",
  973. "shasum": "",
  974. "mirrors": [
  975. {
  976. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  977. "preferred": true
  978. }
  979. ]
  980. },
  981. "require": {
  982. "ext-json": "*",
  983. "guzzlehttp/promises": "^1.5",
  984. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  985. "php": "^7.2.5 || ^8.0",
  986. "psr/http-client": "^1.0",
  987. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  988. },
  989. "provide": {
  990. "psr/http-client-implementation": "1.0"
  991. },
  992. "require-dev": {
  993. "bamarni/composer-bin-plugin": "^1.8.1",
  994. "ext-curl": "*",
  995. "php-http/client-integration-tests": "^3.0",
  996. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  997. "psr/log": "^1.1 || ^2.0 || ^3.0"
  998. },
  999. "suggest": {
  1000. "ext-curl": "Required for CURL handler support",
  1001. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1002. "psr/log": "Required for using the Log middleware"
  1003. },
  1004. "type": "library",
  1005. "extra": {
  1006. "bamarni-bin": {
  1007. "bin-links": true,
  1008. "forward-command": false
  1009. },
  1010. "branch-alias": {
  1011. "dev-master": "7.5-dev"
  1012. }
  1013. },
  1014. "autoload": {
  1015. "files": [
  1016. "src/functions_include.php"
  1017. ],
  1018. "psr-4": {
  1019. "GuzzleHttp\\": "src/"
  1020. }
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "MIT"
  1025. ],
  1026. "authors": [
  1027. {
  1028. "name": "Graham Campbell",
  1029. "email": "hello@gjcampbell.co.uk",
  1030. "homepage": "https://github.com/GrahamCampbell"
  1031. },
  1032. {
  1033. "name": "Michael Dowling",
  1034. "email": "mtdowling@gmail.com",
  1035. "homepage": "https://github.com/mtdowling"
  1036. },
  1037. {
  1038. "name": "Jeremy Lindblom",
  1039. "email": "jeremeamia@gmail.com",
  1040. "homepage": "https://github.com/jeremeamia"
  1041. },
  1042. {
  1043. "name": "George Mponos",
  1044. "email": "gmponos@gmail.com",
  1045. "homepage": "https://github.com/gmponos"
  1046. },
  1047. {
  1048. "name": "Tobias Nyholm",
  1049. "email": "tobias.nyholm@gmail.com",
  1050. "homepage": "https://github.com/Nyholm"
  1051. },
  1052. {
  1053. "name": "Márk Sági-Kazár",
  1054. "email": "mark.sagikazar@gmail.com",
  1055. "homepage": "https://github.com/sagikazarmark"
  1056. },
  1057. {
  1058. "name": "Tobias Schultze",
  1059. "email": "webmaster@tubo-world.de",
  1060. "homepage": "https://github.com/Tobion"
  1061. }
  1062. ],
  1063. "description": "Guzzle is a PHP HTTP client library",
  1064. "keywords": [
  1065. "client",
  1066. "curl",
  1067. "framework",
  1068. "http",
  1069. "http client",
  1070. "psr-18",
  1071. "psr-7",
  1072. "rest",
  1073. "web service"
  1074. ],
  1075. "support": {
  1076. "issues": "https://github.com/guzzle/guzzle/issues",
  1077. "source": "https://github.com/guzzle/guzzle/tree/7.5.1"
  1078. },
  1079. "funding": [
  1080. {
  1081. "url": "https://github.com/GrahamCampbell",
  1082. "type": "github"
  1083. },
  1084. {
  1085. "url": "https://github.com/Nyholm",
  1086. "type": "github"
  1087. },
  1088. {
  1089. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1090. "type": "tidelift"
  1091. }
  1092. ],
  1093. "time": "2023-04-17T16:30:08+00:00"
  1094. },
  1095. {
  1096. "name": "guzzlehttp/promises",
  1097. "version": "1.5.2",
  1098. "source": {
  1099. "type": "git",
  1100. "url": "https://github.com/guzzle/promises.git",
  1101. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  1102. },
  1103. "dist": {
  1104. "type": "zip",
  1105. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  1106. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  1107. "shasum": "",
  1108. "mirrors": [
  1109. {
  1110. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1111. "preferred": true
  1112. }
  1113. ]
  1114. },
  1115. "require": {
  1116. "php": ">=5.5"
  1117. },
  1118. "require-dev": {
  1119. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1120. },
  1121. "type": "library",
  1122. "extra": {
  1123. "branch-alias": {
  1124. "dev-master": "1.5-dev"
  1125. }
  1126. },
  1127. "autoload": {
  1128. "files": [
  1129. "src/functions_include.php"
  1130. ],
  1131. "psr-4": {
  1132. "GuzzleHttp\\Promise\\": "src/"
  1133. }
  1134. },
  1135. "notification-url": "https://packagist.org/downloads/",
  1136. "license": [
  1137. "MIT"
  1138. ],
  1139. "authors": [
  1140. {
  1141. "name": "Graham Campbell",
  1142. "email": "hello@gjcampbell.co.uk",
  1143. "homepage": "https://github.com/GrahamCampbell"
  1144. },
  1145. {
  1146. "name": "Michael Dowling",
  1147. "email": "mtdowling@gmail.com",
  1148. "homepage": "https://github.com/mtdowling"
  1149. },
  1150. {
  1151. "name": "Tobias Nyholm",
  1152. "email": "tobias.nyholm@gmail.com",
  1153. "homepage": "https://github.com/Nyholm"
  1154. },
  1155. {
  1156. "name": "Tobias Schultze",
  1157. "email": "webmaster@tubo-world.de",
  1158. "homepage": "https://github.com/Tobion"
  1159. }
  1160. ],
  1161. "description": "Guzzle promises library",
  1162. "keywords": [
  1163. "promise"
  1164. ],
  1165. "support": {
  1166. "issues": "https://github.com/guzzle/promises/issues",
  1167. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  1168. },
  1169. "funding": [
  1170. {
  1171. "url": "https://github.com/GrahamCampbell",
  1172. "type": "github"
  1173. },
  1174. {
  1175. "url": "https://github.com/Nyholm",
  1176. "type": "github"
  1177. },
  1178. {
  1179. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1180. "type": "tidelift"
  1181. }
  1182. ],
  1183. "time": "2022-08-28T14:55:35+00:00"
  1184. },
  1185. {
  1186. "name": "guzzlehttp/psr7",
  1187. "version": "2.5.0",
  1188. "source": {
  1189. "type": "git",
  1190. "url": "https://github.com/guzzle/psr7.git",
  1191. "reference": "b635f279edd83fc275f822a1188157ffea568ff6"
  1192. },
  1193. "dist": {
  1194. "type": "zip",
  1195. "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6",
  1196. "reference": "b635f279edd83fc275f822a1188157ffea568ff6",
  1197. "shasum": "",
  1198. "mirrors": [
  1199. {
  1200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1201. "preferred": true
  1202. }
  1203. ]
  1204. },
  1205. "require": {
  1206. "php": "^7.2.5 || ^8.0",
  1207. "psr/http-factory": "^1.0",
  1208. "psr/http-message": "^1.1 || ^2.0",
  1209. "ralouphie/getallheaders": "^3.0"
  1210. },
  1211. "provide": {
  1212. "psr/http-factory-implementation": "1.0",
  1213. "psr/http-message-implementation": "1.0"
  1214. },
  1215. "require-dev": {
  1216. "bamarni/composer-bin-plugin": "^1.8.1",
  1217. "http-interop/http-factory-tests": "^0.9",
  1218. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1219. },
  1220. "suggest": {
  1221. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1222. },
  1223. "type": "library",
  1224. "extra": {
  1225. "bamarni-bin": {
  1226. "bin-links": true,
  1227. "forward-command": false
  1228. }
  1229. },
  1230. "autoload": {
  1231. "psr-4": {
  1232. "GuzzleHttp\\Psr7\\": "src/"
  1233. }
  1234. },
  1235. "notification-url": "https://packagist.org/downloads/",
  1236. "license": [
  1237. "MIT"
  1238. ],
  1239. "authors": [
  1240. {
  1241. "name": "Graham Campbell",
  1242. "email": "hello@gjcampbell.co.uk",
  1243. "homepage": "https://github.com/GrahamCampbell"
  1244. },
  1245. {
  1246. "name": "Michael Dowling",
  1247. "email": "mtdowling@gmail.com",
  1248. "homepage": "https://github.com/mtdowling"
  1249. },
  1250. {
  1251. "name": "George Mponos",
  1252. "email": "gmponos@gmail.com",
  1253. "homepage": "https://github.com/gmponos"
  1254. },
  1255. {
  1256. "name": "Tobias Nyholm",
  1257. "email": "tobias.nyholm@gmail.com",
  1258. "homepage": "https://github.com/Nyholm"
  1259. },
  1260. {
  1261. "name": "Márk Sági-Kazár",
  1262. "email": "mark.sagikazar@gmail.com",
  1263. "homepage": "https://github.com/sagikazarmark"
  1264. },
  1265. {
  1266. "name": "Tobias Schultze",
  1267. "email": "webmaster@tubo-world.de",
  1268. "homepage": "https://github.com/Tobion"
  1269. },
  1270. {
  1271. "name": "Márk Sági-Kazár",
  1272. "email": "mark.sagikazar@gmail.com",
  1273. "homepage": "https://sagikazarmark.hu"
  1274. }
  1275. ],
  1276. "description": "PSR-7 message implementation that also provides common utility methods",
  1277. "keywords": [
  1278. "http",
  1279. "message",
  1280. "psr-7",
  1281. "request",
  1282. "response",
  1283. "stream",
  1284. "uri",
  1285. "url"
  1286. ],
  1287. "support": {
  1288. "issues": "https://github.com/guzzle/psr7/issues",
  1289. "source": "https://github.com/guzzle/psr7/tree/2.5.0"
  1290. },
  1291. "funding": [
  1292. {
  1293. "url": "https://github.com/GrahamCampbell",
  1294. "type": "github"
  1295. },
  1296. {
  1297. "url": "https://github.com/Nyholm",
  1298. "type": "github"
  1299. },
  1300. {
  1301. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1302. "type": "tidelift"
  1303. }
  1304. ],
  1305. "time": "2023-04-17T16:11:26+00:00"
  1306. },
  1307. {
  1308. "name": "hashids/hashids",
  1309. "version": "4.1.0",
  1310. "source": {
  1311. "type": "git",
  1312. "url": "https://github.com/vinkla/hashids.git",
  1313. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  1314. },
  1315. "dist": {
  1316. "type": "zip",
  1317. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  1318. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  1319. "shasum": "",
  1320. "mirrors": [
  1321. {
  1322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1323. "preferred": true
  1324. }
  1325. ]
  1326. },
  1327. "require": {
  1328. "ext-mbstring": "*",
  1329. "php": "^7.2 || ^8.0"
  1330. },
  1331. "require-dev": {
  1332. "phpunit/phpunit": "^8.0 || ^9.4",
  1333. "squizlabs/php_codesniffer": "^3.5"
  1334. },
  1335. "suggest": {
  1336. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  1337. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  1338. },
  1339. "type": "library",
  1340. "extra": {
  1341. "branch-alias": {
  1342. "dev-master": "4.1-dev"
  1343. }
  1344. },
  1345. "autoload": {
  1346. "psr-4": {
  1347. "Hashids\\": "src/"
  1348. }
  1349. },
  1350. "notification-url": "https://packagist.org/downloads/",
  1351. "license": [
  1352. "MIT"
  1353. ],
  1354. "authors": [
  1355. {
  1356. "name": "Ivan Akimov",
  1357. "email": "ivan@barreleye.com"
  1358. },
  1359. {
  1360. "name": "Vincent Klaiber",
  1361. "email": "hello@doubledip.se"
  1362. }
  1363. ],
  1364. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  1365. "homepage": "https://hashids.org/php",
  1366. "keywords": [
  1367. "bitly",
  1368. "decode",
  1369. "encode",
  1370. "hash",
  1371. "hashid",
  1372. "hashids",
  1373. "ids",
  1374. "obfuscate",
  1375. "youtube"
  1376. ],
  1377. "support": {
  1378. "issues": "https://github.com/vinkla/hashids/issues",
  1379. "source": "https://github.com/vinkla/hashids/tree/4.1.0"
  1380. },
  1381. "time": "2020-11-26T19:24:33+00:00"
  1382. },
  1383. {
  1384. "name": "jenssegers/optimus",
  1385. "version": "v1.1.1",
  1386. "source": {
  1387. "type": "git",
  1388. "url": "https://github.com/jenssegers/optimus.git",
  1389. "reference": "a062ac06598e72a25a17ea6cba87f9e02d07b1bc"
  1390. },
  1391. "dist": {
  1392. "type": "zip",
  1393. "url": "https://api.github.com/repos/jenssegers/optimus/zipball/a062ac06598e72a25a17ea6cba87f9e02d07b1bc",
  1394. "reference": "a062ac06598e72a25a17ea6cba87f9e02d07b1bc",
  1395. "shasum": "",
  1396. "mirrors": [
  1397. {
  1398. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1399. "preferred": true
  1400. }
  1401. ]
  1402. },
  1403. "require": {
  1404. "php": "^7.4||^8.0",
  1405. "phpseclib/phpseclib": "^3.0",
  1406. "symfony/console": "^5.0||^6.0"
  1407. },
  1408. "require-dev": {
  1409. "phpunit/phpunit": "^9.5.10"
  1410. },
  1411. "suggest": {
  1412. "ext-gmp": "Required for 32bit systems"
  1413. },
  1414. "bin": [
  1415. "bin/optimus"
  1416. ],
  1417. "type": "library",
  1418. "autoload": {
  1419. "psr-4": {
  1420. "Jenssegers\\Optimus\\": "src"
  1421. }
  1422. },
  1423. "notification-url": "https://packagist.org/downloads/",
  1424. "license": [
  1425. "MIT"
  1426. ],
  1427. "authors": [
  1428. {
  1429. "name": "Jens Segers",
  1430. "homepage": "https://jenssegers.com"
  1431. }
  1432. ],
  1433. "description": "Id obfuscation based on Knuth's integer hash method",
  1434. "homepage": "https://github.com/jenssegers/optimus",
  1435. "keywords": [
  1436. "hashids",
  1437. "id obfuscation",
  1438. "ids",
  1439. "obfuscation",
  1440. "optimus"
  1441. ],
  1442. "support": {
  1443. "issues": "https://github.com/jenssegers/optimus/issues",
  1444. "source": "https://github.com/jenssegers/optimus/tree/v1.1.1"
  1445. },
  1446. "funding": [
  1447. {
  1448. "url": "https://github.com/jenssegers",
  1449. "type": "github"
  1450. },
  1451. {
  1452. "url": "https://tidelift.com/funding/github/packagist/jenssegers/optimus",
  1453. "type": "tidelift"
  1454. }
  1455. ],
  1456. "time": "2021-12-21T16:15:54+00:00"
  1457. },
  1458. {
  1459. "name": "laravel/framework",
  1460. "version": "v9.33.0",
  1461. "source": {
  1462. "type": "git",
  1463. "url": "https://github.com/laravel/framework.git",
  1464. "reference": "13665b7e15dbcbecb3651acc19ba8818da6fa0a9"
  1465. },
  1466. "dist": {
  1467. "type": "zip",
  1468. "url": "https://api.github.com/repos/laravel/framework/zipball/13665b7e15dbcbecb3651acc19ba8818da6fa0a9",
  1469. "reference": "13665b7e15dbcbecb3651acc19ba8818da6fa0a9",
  1470. "shasum": "",
  1471. "mirrors": [
  1472. {
  1473. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1474. "preferred": true
  1475. }
  1476. ]
  1477. },
  1478. "require": {
  1479. "doctrine/inflector": "^2.0",
  1480. "dragonmantank/cron-expression": "^3.1",
  1481. "egulias/email-validator": "^3.1",
  1482. "ext-mbstring": "*",
  1483. "ext-openssl": "*",
  1484. "fruitcake/php-cors": "^1.2",
  1485. "laravel/serializable-closure": "^1.0",
  1486. "league/commonmark": "^2.2",
  1487. "league/flysystem": "^3.0.16",
  1488. "monolog/monolog": "^2.0",
  1489. "nesbot/carbon": "^2.62.1",
  1490. "nunomaduro/termwind": "^1.13",
  1491. "php": "^8.0.2",
  1492. "psr/container": "^1.1.1|^2.0.1",
  1493. "psr/log": "^1.0|^2.0|^3.0",
  1494. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1495. "ramsey/uuid": "^4.2.2",
  1496. "symfony/console": "^6.0.3",
  1497. "symfony/error-handler": "^6.0",
  1498. "symfony/finder": "^6.0",
  1499. "symfony/http-foundation": "^6.0",
  1500. "symfony/http-kernel": "^6.0",
  1501. "symfony/mailer": "^6.0",
  1502. "symfony/mime": "^6.0",
  1503. "symfony/process": "^6.0",
  1504. "symfony/routing": "^6.0",
  1505. "symfony/uid": "^6.0",
  1506. "symfony/var-dumper": "^6.0",
  1507. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1508. "vlucas/phpdotenv": "^5.4.1",
  1509. "voku/portable-ascii": "^2.0"
  1510. },
  1511. "conflict": {
  1512. "tightenco/collect": "<5.5.33"
  1513. },
  1514. "provide": {
  1515. "psr/container-implementation": "1.1|2.0",
  1516. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1517. },
  1518. "replace": {
  1519. "illuminate/auth": "self.version",
  1520. "illuminate/broadcasting": "self.version",
  1521. "illuminate/bus": "self.version",
  1522. "illuminate/cache": "self.version",
  1523. "illuminate/collections": "self.version",
  1524. "illuminate/conditionable": "self.version",
  1525. "illuminate/config": "self.version",
  1526. "illuminate/console": "self.version",
  1527. "illuminate/container": "self.version",
  1528. "illuminate/contracts": "self.version",
  1529. "illuminate/cookie": "self.version",
  1530. "illuminate/database": "self.version",
  1531. "illuminate/encryption": "self.version",
  1532. "illuminate/events": "self.version",
  1533. "illuminate/filesystem": "self.version",
  1534. "illuminate/hashing": "self.version",
  1535. "illuminate/http": "self.version",
  1536. "illuminate/log": "self.version",
  1537. "illuminate/macroable": "self.version",
  1538. "illuminate/mail": "self.version",
  1539. "illuminate/notifications": "self.version",
  1540. "illuminate/pagination": "self.version",
  1541. "illuminate/pipeline": "self.version",
  1542. "illuminate/queue": "self.version",
  1543. "illuminate/redis": "self.version",
  1544. "illuminate/routing": "self.version",
  1545. "illuminate/session": "self.version",
  1546. "illuminate/support": "self.version",
  1547. "illuminate/testing": "self.version",
  1548. "illuminate/translation": "self.version",
  1549. "illuminate/validation": "self.version",
  1550. "illuminate/view": "self.version"
  1551. },
  1552. "require-dev": {
  1553. "ably/ably-php": "^1.0",
  1554. "aws/aws-sdk-php": "^3.198.1",
  1555. "doctrine/dbal": "^2.13.3|^3.1.4",
  1556. "fakerphp/faker": "^1.9.2",
  1557. "guzzlehttp/guzzle": "^7.2",
  1558. "league/flysystem-aws-s3-v3": "^3.0",
  1559. "league/flysystem-ftp": "^3.0",
  1560. "league/flysystem-path-prefixing": "^3.3",
  1561. "league/flysystem-read-only": "^3.3",
  1562. "league/flysystem-sftp-v3": "^3.0",
  1563. "mockery/mockery": "^1.4.4",
  1564. "orchestra/testbench-core": "^7.8",
  1565. "pda/pheanstalk": "^4.0",
  1566. "phpstan/phpstan": "^1.4.7",
  1567. "phpunit/phpunit": "^9.5.8",
  1568. "predis/predis": "^1.1.9|^2.0",
  1569. "symfony/cache": "^6.0"
  1570. },
  1571. "suggest": {
  1572. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1573. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.198.1).",
  1574. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1575. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1576. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1577. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1578. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1579. "ext-memcached": "Required to use the memcache cache driver.",
  1580. "ext-pcntl": "Required to use all features of the queue worker.",
  1581. "ext-posix": "Required to use all features of the queue worker.",
  1582. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1583. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1584. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1585. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.2).",
  1586. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1587. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  1588. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  1589. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  1590. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  1591. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  1592. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1593. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1594. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1595. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).",
  1596. "predis/predis": "Required to use the predis connector (^1.1.9|^2.0).",
  1597. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1598. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  1599. "symfony/cache": "Required to PSR-6 cache bridge (^6.0).",
  1600. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).",
  1601. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
  1602. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
  1603. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
  1604. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  1605. },
  1606. "type": "library",
  1607. "extra": {
  1608. "branch-alias": {
  1609. "dev-master": "9.x-dev"
  1610. }
  1611. },
  1612. "autoload": {
  1613. "files": [
  1614. "src/Illuminate/Collections/helpers.php",
  1615. "src/Illuminate/Events/functions.php",
  1616. "src/Illuminate/Foundation/helpers.php",
  1617. "src/Illuminate/Support/helpers.php"
  1618. ],
  1619. "psr-4": {
  1620. "Illuminate\\": "src/Illuminate/",
  1621. "Illuminate\\Support\\": [
  1622. "src/Illuminate/Macroable/",
  1623. "src/Illuminate/Collections/",
  1624. "src/Illuminate/Conditionable/"
  1625. ]
  1626. }
  1627. },
  1628. "notification-url": "https://packagist.org/downloads/",
  1629. "license": [
  1630. "MIT"
  1631. ],
  1632. "authors": [
  1633. {
  1634. "name": "Taylor Otwell",
  1635. "email": "taylor@laravel.com"
  1636. }
  1637. ],
  1638. "description": "The Laravel Framework.",
  1639. "homepage": "https://laravel.com",
  1640. "keywords": [
  1641. "framework",
  1642. "laravel"
  1643. ],
  1644. "support": {
  1645. "issues": "https://github.com/laravel/framework/issues",
  1646. "source": "https://github.com/laravel/framework"
  1647. },
  1648. "time": "2022-09-30T12:59:55+00:00"
  1649. },
  1650. {
  1651. "name": "laravel/serializable-closure",
  1652. "version": "v1.2.2",
  1653. "source": {
  1654. "type": "git",
  1655. "url": "https://github.com/laravel/serializable-closure.git",
  1656. "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae"
  1657. },
  1658. "dist": {
  1659. "type": "zip",
  1660. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/47afb7fae28ed29057fdca37e16a84f90cc62fae",
  1661. "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae",
  1662. "shasum": "",
  1663. "mirrors": [
  1664. {
  1665. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1666. "preferred": true
  1667. }
  1668. ]
  1669. },
  1670. "require": {
  1671. "php": "^7.3|^8.0"
  1672. },
  1673. "require-dev": {
  1674. "nesbot/carbon": "^2.61",
  1675. "pestphp/pest": "^1.21.3",
  1676. "phpstan/phpstan": "^1.8.2",
  1677. "symfony/var-dumper": "^5.4.11"
  1678. },
  1679. "type": "library",
  1680. "extra": {
  1681. "branch-alias": {
  1682. "dev-master": "1.x-dev"
  1683. }
  1684. },
  1685. "autoload": {
  1686. "psr-4": {
  1687. "Laravel\\SerializableClosure\\": "src/"
  1688. }
  1689. },
  1690. "notification-url": "https://packagist.org/downloads/",
  1691. "license": [
  1692. "MIT"
  1693. ],
  1694. "authors": [
  1695. {
  1696. "name": "Taylor Otwell",
  1697. "email": "taylor@laravel.com"
  1698. },
  1699. {
  1700. "name": "Nuno Maduro",
  1701. "email": "nuno@laravel.com"
  1702. }
  1703. ],
  1704. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1705. "keywords": [
  1706. "closure",
  1707. "laravel",
  1708. "serializable"
  1709. ],
  1710. "support": {
  1711. "issues": "https://github.com/laravel/serializable-closure/issues",
  1712. "source": "https://github.com/laravel/serializable-closure"
  1713. },
  1714. "time": "2022-09-08T13:45:54+00:00"
  1715. },
  1716. {
  1717. "name": "laravel/tinker",
  1718. "version": "v2.8.1",
  1719. "source": {
  1720. "type": "git",
  1721. "url": "https://github.com/laravel/tinker.git",
  1722. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
  1723. },
  1724. "dist": {
  1725. "type": "zip",
  1726. "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  1727. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  1728. "shasum": "",
  1729. "mirrors": [
  1730. {
  1731. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1732. "preferred": true
  1733. }
  1734. ]
  1735. },
  1736. "require": {
  1737. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1738. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1739. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1740. "php": "^7.2.5|^8.0",
  1741. "psy/psysh": "^0.10.4|^0.11.1",
  1742. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  1743. },
  1744. "require-dev": {
  1745. "mockery/mockery": "~1.3.3|^1.4.2",
  1746. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1747. },
  1748. "suggest": {
  1749. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  1750. },
  1751. "type": "library",
  1752. "extra": {
  1753. "branch-alias": {
  1754. "dev-master": "2.x-dev"
  1755. },
  1756. "laravel": {
  1757. "providers": [
  1758. "Laravel\\Tinker\\TinkerServiceProvider"
  1759. ]
  1760. }
  1761. },
  1762. "autoload": {
  1763. "psr-4": {
  1764. "Laravel\\Tinker\\": "src/"
  1765. }
  1766. },
  1767. "notification-url": "https://packagist.org/downloads/",
  1768. "license": [
  1769. "MIT"
  1770. ],
  1771. "authors": [
  1772. {
  1773. "name": "Taylor Otwell",
  1774. "email": "taylor@laravel.com"
  1775. }
  1776. ],
  1777. "description": "Powerful REPL for the Laravel framework.",
  1778. "keywords": [
  1779. "REPL",
  1780. "Tinker",
  1781. "laravel",
  1782. "psysh"
  1783. ],
  1784. "support": {
  1785. "issues": "https://github.com/laravel/tinker/issues",
  1786. "source": "https://github.com/laravel/tinker/tree/v2.8.1"
  1787. },
  1788. "time": "2023-02-15T16:40:09+00:00"
  1789. },
  1790. {
  1791. "name": "league/commonmark",
  1792. "version": "2.3.9",
  1793. "source": {
  1794. "type": "git",
  1795. "url": "https://github.com/thephpleague/commonmark.git",
  1796. "reference": "c1e114f74e518daca2729ea8c4bf1167038fa4b5"
  1797. },
  1798. "dist": {
  1799. "type": "zip",
  1800. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c1e114f74e518daca2729ea8c4bf1167038fa4b5",
  1801. "reference": "c1e114f74e518daca2729ea8c4bf1167038fa4b5",
  1802. "shasum": "",
  1803. "mirrors": [
  1804. {
  1805. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1806. "preferred": true
  1807. }
  1808. ]
  1809. },
  1810. "require": {
  1811. "ext-mbstring": "*",
  1812. "league/config": "^1.1.1",
  1813. "php": "^7.4 || ^8.0",
  1814. "psr/event-dispatcher": "^1.0",
  1815. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1816. "symfony/polyfill-php80": "^1.16"
  1817. },
  1818. "require-dev": {
  1819. "cebe/markdown": "^1.0",
  1820. "commonmark/cmark": "0.30.0",
  1821. "commonmark/commonmark.js": "0.30.0",
  1822. "composer/package-versions-deprecated": "^1.8",
  1823. "embed/embed": "^4.4",
  1824. "erusev/parsedown": "^1.0",
  1825. "ext-json": "*",
  1826. "github/gfm": "0.29.0",
  1827. "michelf/php-markdown": "^1.4 || ^2.0",
  1828. "nyholm/psr7": "^1.5",
  1829. "phpstan/phpstan": "^1.8.2",
  1830. "phpunit/phpunit": "^9.5.21",
  1831. "scrutinizer/ocular": "^1.8.1",
  1832. "symfony/finder": "^5.3 | ^6.0",
  1833. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1834. "unleashedtech/php-coding-standard": "^3.1.1",
  1835. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1836. },
  1837. "suggest": {
  1838. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1839. },
  1840. "type": "library",
  1841. "extra": {
  1842. "branch-alias": {
  1843. "dev-main": "2.4-dev"
  1844. }
  1845. },
  1846. "autoload": {
  1847. "psr-4": {
  1848. "League\\CommonMark\\": "src"
  1849. }
  1850. },
  1851. "notification-url": "https://packagist.org/downloads/",
  1852. "license": [
  1853. "BSD-3-Clause"
  1854. ],
  1855. "authors": [
  1856. {
  1857. "name": "Colin O'Dell",
  1858. "email": "colinodell@gmail.com",
  1859. "homepage": "https://www.colinodell.com",
  1860. "role": "Lead Developer"
  1861. }
  1862. ],
  1863. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1864. "homepage": "https://commonmark.thephpleague.com",
  1865. "keywords": [
  1866. "commonmark",
  1867. "flavored",
  1868. "gfm",
  1869. "github",
  1870. "github-flavored",
  1871. "markdown",
  1872. "md",
  1873. "parser"
  1874. ],
  1875. "support": {
  1876. "docs": "https://commonmark.thephpleague.com/",
  1877. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1878. "issues": "https://github.com/thephpleague/commonmark/issues",
  1879. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1880. "source": "https://github.com/thephpleague/commonmark"
  1881. },
  1882. "funding": [
  1883. {
  1884. "url": "https://www.colinodell.com/sponsor",
  1885. "type": "custom"
  1886. },
  1887. {
  1888. "url": "https://www.paypal.me/colinpodell/10.00",
  1889. "type": "custom"
  1890. },
  1891. {
  1892. "url": "https://github.com/colinodell",
  1893. "type": "github"
  1894. },
  1895. {
  1896. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1897. "type": "tidelift"
  1898. }
  1899. ],
  1900. "time": "2023-02-15T14:07:24+00:00"
  1901. },
  1902. {
  1903. "name": "league/config",
  1904. "version": "v1.2.0",
  1905. "source": {
  1906. "type": "git",
  1907. "url": "https://github.com/thephpleague/config.git",
  1908. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1909. },
  1910. "dist": {
  1911. "type": "zip",
  1912. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1913. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1914. "shasum": "",
  1915. "mirrors": [
  1916. {
  1917. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1918. "preferred": true
  1919. }
  1920. ]
  1921. },
  1922. "require": {
  1923. "dflydev/dot-access-data": "^3.0.1",
  1924. "nette/schema": "^1.2",
  1925. "php": "^7.4 || ^8.0"
  1926. },
  1927. "require-dev": {
  1928. "phpstan/phpstan": "^1.8.2",
  1929. "phpunit/phpunit": "^9.5.5",
  1930. "scrutinizer/ocular": "^1.8.1",
  1931. "unleashedtech/php-coding-standard": "^3.1",
  1932. "vimeo/psalm": "^4.7.3"
  1933. },
  1934. "type": "library",
  1935. "extra": {
  1936. "branch-alias": {
  1937. "dev-main": "1.2-dev"
  1938. }
  1939. },
  1940. "autoload": {
  1941. "psr-4": {
  1942. "League\\Config\\": "src"
  1943. }
  1944. },
  1945. "notification-url": "https://packagist.org/downloads/",
  1946. "license": [
  1947. "BSD-3-Clause"
  1948. ],
  1949. "authors": [
  1950. {
  1951. "name": "Colin O'Dell",
  1952. "email": "colinodell@gmail.com",
  1953. "homepage": "https://www.colinodell.com",
  1954. "role": "Lead Developer"
  1955. }
  1956. ],
  1957. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1958. "homepage": "https://config.thephpleague.com",
  1959. "keywords": [
  1960. "array",
  1961. "config",
  1962. "configuration",
  1963. "dot",
  1964. "dot-access",
  1965. "nested",
  1966. "schema"
  1967. ],
  1968. "support": {
  1969. "docs": "https://config.thephpleague.com/",
  1970. "issues": "https://github.com/thephpleague/config/issues",
  1971. "rss": "https://github.com/thephpleague/config/releases.atom",
  1972. "source": "https://github.com/thephpleague/config"
  1973. },
  1974. "funding": [
  1975. {
  1976. "url": "https://www.colinodell.com/sponsor",
  1977. "type": "custom"
  1978. },
  1979. {
  1980. "url": "https://www.paypal.me/colinpodell/10.00",
  1981. "type": "custom"
  1982. },
  1983. {
  1984. "url": "https://github.com/colinodell",
  1985. "type": "github"
  1986. }
  1987. ],
  1988. "time": "2022-12-11T20:36:23+00:00"
  1989. },
  1990. {
  1991. "name": "league/flysystem",
  1992. "version": "3.15.1",
  1993. "source": {
  1994. "type": "git",
  1995. "url": "https://github.com/thephpleague/flysystem.git",
  1996. "reference": "a141d430414fcb8bf797a18716b09f759a385bed"
  1997. },
  1998. "dist": {
  1999. "type": "zip",
  2000. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a141d430414fcb8bf797a18716b09f759a385bed",
  2001. "reference": "a141d430414fcb8bf797a18716b09f759a385bed",
  2002. "shasum": "",
  2003. "mirrors": [
  2004. {
  2005. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2006. "preferred": true
  2007. }
  2008. ]
  2009. },
  2010. "require": {
  2011. "league/flysystem-local": "^3.0.0",
  2012. "league/mime-type-detection": "^1.0.0",
  2013. "php": "^8.0.2"
  2014. },
  2015. "conflict": {
  2016. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2017. "guzzlehttp/guzzle": "<7.0",
  2018. "guzzlehttp/ringphp": "<1.1.1",
  2019. "phpseclib/phpseclib": "3.0.15",
  2020. "symfony/http-client": "<5.2"
  2021. },
  2022. "require-dev": {
  2023. "async-aws/s3": "^1.5",
  2024. "async-aws/simple-s3": "^1.1",
  2025. "aws/aws-sdk-php": "^3.220.0",
  2026. "composer/semver": "^3.0",
  2027. "ext-fileinfo": "*",
  2028. "ext-ftp": "*",
  2029. "ext-zip": "*",
  2030. "friendsofphp/php-cs-fixer": "^3.5",
  2031. "google/cloud-storage": "^1.23",
  2032. "microsoft/azure-storage-blob": "^1.1",
  2033. "phpseclib/phpseclib": "^3.0.14",
  2034. "phpstan/phpstan": "^0.12.26",
  2035. "phpunit/phpunit": "^9.5.11",
  2036. "sabre/dav": "^4.3.1"
  2037. },
  2038. "type": "library",
  2039. "autoload": {
  2040. "psr-4": {
  2041. "League\\Flysystem\\": "src"
  2042. }
  2043. },
  2044. "notification-url": "https://packagist.org/downloads/",
  2045. "license": [
  2046. "MIT"
  2047. ],
  2048. "authors": [
  2049. {
  2050. "name": "Frank de Jonge",
  2051. "email": "info@frankdejonge.nl"
  2052. }
  2053. ],
  2054. "description": "File storage abstraction for PHP",
  2055. "keywords": [
  2056. "WebDAV",
  2057. "aws",
  2058. "cloud",
  2059. "file",
  2060. "files",
  2061. "filesystem",
  2062. "filesystems",
  2063. "ftp",
  2064. "s3",
  2065. "sftp",
  2066. "storage"
  2067. ],
  2068. "support": {
  2069. "issues": "https://github.com/thephpleague/flysystem/issues",
  2070. "source": "https://github.com/thephpleague/flysystem/tree/3.15.1"
  2071. },
  2072. "funding": [
  2073. {
  2074. "url": "https://ecologi.com/frankdejonge",
  2075. "type": "custom"
  2076. },
  2077. {
  2078. "url": "https://github.com/frankdejonge",
  2079. "type": "github"
  2080. }
  2081. ],
  2082. "time": "2023-05-04T09:04:26+00:00"
  2083. },
  2084. {
  2085. "name": "league/flysystem-local",
  2086. "version": "3.15.0",
  2087. "source": {
  2088. "type": "git",
  2089. "url": "https://github.com/thephpleague/flysystem-local.git",
  2090. "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3"
  2091. },
  2092. "dist": {
  2093. "type": "zip",
  2094. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/543f64c397fefdf9cfeac443ffb6beff602796b3",
  2095. "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3",
  2096. "shasum": "",
  2097. "mirrors": [
  2098. {
  2099. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2100. "preferred": true
  2101. }
  2102. ]
  2103. },
  2104. "require": {
  2105. "ext-fileinfo": "*",
  2106. "league/flysystem": "^3.0.0",
  2107. "league/mime-type-detection": "^1.0.0",
  2108. "php": "^8.0.2"
  2109. },
  2110. "type": "library",
  2111. "autoload": {
  2112. "psr-4": {
  2113. "League\\Flysystem\\Local\\": ""
  2114. }
  2115. },
  2116. "notification-url": "https://packagist.org/downloads/",
  2117. "license": [
  2118. "MIT"
  2119. ],
  2120. "authors": [
  2121. {
  2122. "name": "Frank de Jonge",
  2123. "email": "info@frankdejonge.nl"
  2124. }
  2125. ],
  2126. "description": "Local filesystem adapter for Flysystem.",
  2127. "keywords": [
  2128. "Flysystem",
  2129. "file",
  2130. "files",
  2131. "filesystem",
  2132. "local"
  2133. ],
  2134. "support": {
  2135. "issues": "https://github.com/thephpleague/flysystem-local/issues",
  2136. "source": "https://github.com/thephpleague/flysystem-local/tree/3.15.0"
  2137. },
  2138. "funding": [
  2139. {
  2140. "url": "https://ecologi.com/frankdejonge",
  2141. "type": "custom"
  2142. },
  2143. {
  2144. "url": "https://github.com/frankdejonge",
  2145. "type": "github"
  2146. }
  2147. ],
  2148. "time": "2023-05-02T20:02:14+00:00"
  2149. },
  2150. {
  2151. "name": "league/mime-type-detection",
  2152. "version": "1.11.0",
  2153. "source": {
  2154. "type": "git",
  2155. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2156. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2157. },
  2158. "dist": {
  2159. "type": "zip",
  2160. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2161. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2162. "shasum": "",
  2163. "mirrors": [
  2164. {
  2165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2166. "preferred": true
  2167. }
  2168. ]
  2169. },
  2170. "require": {
  2171. "ext-fileinfo": "*",
  2172. "php": "^7.2 || ^8.0"
  2173. },
  2174. "require-dev": {
  2175. "friendsofphp/php-cs-fixer": "^3.2",
  2176. "phpstan/phpstan": "^0.12.68",
  2177. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2178. },
  2179. "type": "library",
  2180. "autoload": {
  2181. "psr-4": {
  2182. "League\\MimeTypeDetection\\": "src"
  2183. }
  2184. },
  2185. "notification-url": "https://packagist.org/downloads/",
  2186. "license": [
  2187. "MIT"
  2188. ],
  2189. "authors": [
  2190. {
  2191. "name": "Frank de Jonge",
  2192. "email": "info@frankdejonge.nl"
  2193. }
  2194. ],
  2195. "description": "Mime-type detection for Flysystem",
  2196. "support": {
  2197. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2198. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2199. },
  2200. "funding": [
  2201. {
  2202. "url": "https://github.com/frankdejonge",
  2203. "type": "github"
  2204. },
  2205. {
  2206. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2207. "type": "tidelift"
  2208. }
  2209. ],
  2210. "time": "2022-04-17T13:12:02+00:00"
  2211. },
  2212. {
  2213. "name": "maatwebsite/excel",
  2214. "version": "3.1.48",
  2215. "source": {
  2216. "type": "git",
  2217. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  2218. "reference": "6d0fe2a1d195960c7af7bf0de760582da02a34b9"
  2219. },
  2220. "dist": {
  2221. "type": "zip",
  2222. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/6d0fe2a1d195960c7af7bf0de760582da02a34b9",
  2223. "reference": "6d0fe2a1d195960c7af7bf0de760582da02a34b9",
  2224. "shasum": "",
  2225. "mirrors": [
  2226. {
  2227. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2228. "preferred": true
  2229. }
  2230. ]
  2231. },
  2232. "require": {
  2233. "composer/semver": "^3.3",
  2234. "ext-json": "*",
  2235. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0",
  2236. "php": "^7.0|^8.0",
  2237. "phpoffice/phpspreadsheet": "^1.18",
  2238. "psr/simple-cache": "^1.0|^2.0|^3.0"
  2239. },
  2240. "require-dev": {
  2241. "orchestra/testbench": "^6.0|^7.0|^8.0",
  2242. "predis/predis": "^1.1"
  2243. },
  2244. "type": "library",
  2245. "extra": {
  2246. "laravel": {
  2247. "providers": [
  2248. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2249. ],
  2250. "aliases": {
  2251. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2252. }
  2253. }
  2254. },
  2255. "autoload": {
  2256. "psr-4": {
  2257. "Maatwebsite\\Excel\\": "src/"
  2258. }
  2259. },
  2260. "notification-url": "https://packagist.org/downloads/",
  2261. "license": [
  2262. "MIT"
  2263. ],
  2264. "authors": [
  2265. {
  2266. "name": "Patrick Brouwers",
  2267. "email": "patrick@spartner.nl"
  2268. }
  2269. ],
  2270. "description": "Supercharged Excel exports and imports in Laravel",
  2271. "keywords": [
  2272. "PHPExcel",
  2273. "batch",
  2274. "csv",
  2275. "excel",
  2276. "export",
  2277. "import",
  2278. "laravel",
  2279. "php",
  2280. "phpspreadsheet"
  2281. ],
  2282. "support": {
  2283. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  2284. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.48"
  2285. },
  2286. "funding": [
  2287. {
  2288. "url": "https://laravel-excel.com/commercial-support",
  2289. "type": "custom"
  2290. },
  2291. {
  2292. "url": "https://github.com/patrickbrouwers",
  2293. "type": "github"
  2294. }
  2295. ],
  2296. "time": "2023-02-22T21:01:38+00:00"
  2297. },
  2298. {
  2299. "name": "maennchen/zipstream-php",
  2300. "version": "v2.4.0",
  2301. "source": {
  2302. "type": "git",
  2303. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2304. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  2305. },
  2306. "dist": {
  2307. "type": "zip",
  2308. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  2309. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  2310. "shasum": "",
  2311. "mirrors": [
  2312. {
  2313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2314. "preferred": true
  2315. }
  2316. ]
  2317. },
  2318. "require": {
  2319. "ext-mbstring": "*",
  2320. "myclabs/php-enum": "^1.5",
  2321. "php": "^8.0",
  2322. "psr/http-message": "^1.0"
  2323. },
  2324. "require-dev": {
  2325. "ext-zip": "*",
  2326. "friendsofphp/php-cs-fixer": "^3.9",
  2327. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  2328. "mikey179/vfsstream": "^1.6",
  2329. "php-coveralls/php-coveralls": "^2.4",
  2330. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  2331. "vimeo/psalm": "^5.0"
  2332. },
  2333. "type": "library",
  2334. "autoload": {
  2335. "psr-4": {
  2336. "ZipStream\\": "src/"
  2337. }
  2338. },
  2339. "notification-url": "https://packagist.org/downloads/",
  2340. "license": [
  2341. "MIT"
  2342. ],
  2343. "authors": [
  2344. {
  2345. "name": "Paul Duncan",
  2346. "email": "pabs@pablotron.org"
  2347. },
  2348. {
  2349. "name": "Jonatan Männchen",
  2350. "email": "jonatan@maennchen.ch"
  2351. },
  2352. {
  2353. "name": "Jesse Donat",
  2354. "email": "donatj@gmail.com"
  2355. },
  2356. {
  2357. "name": "András Kolesár",
  2358. "email": "kolesar@kolesar.hu"
  2359. }
  2360. ],
  2361. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2362. "keywords": [
  2363. "stream",
  2364. "zip"
  2365. ],
  2366. "support": {
  2367. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2368. "source": "https://github.com/maennchen/ZipStream-PHP/tree/v2.4.0"
  2369. },
  2370. "funding": [
  2371. {
  2372. "url": "https://github.com/maennchen",
  2373. "type": "github"
  2374. },
  2375. {
  2376. "url": "https://opencollective.com/zipstream",
  2377. "type": "open_collective"
  2378. }
  2379. ],
  2380. "time": "2022-12-08T12:29:14+00:00"
  2381. },
  2382. {
  2383. "name": "markbaker/complex",
  2384. "version": "3.0.2",
  2385. "source": {
  2386. "type": "git",
  2387. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2388. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2389. },
  2390. "dist": {
  2391. "type": "zip",
  2392. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2393. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2394. "shasum": "",
  2395. "mirrors": [
  2396. {
  2397. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2398. "preferred": true
  2399. }
  2400. ]
  2401. },
  2402. "require": {
  2403. "php": "^7.2 || ^8.0"
  2404. },
  2405. "require-dev": {
  2406. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2407. "phpcompatibility/php-compatibility": "^9.3",
  2408. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2409. "squizlabs/php_codesniffer": "^3.7"
  2410. },
  2411. "type": "library",
  2412. "autoload": {
  2413. "psr-4": {
  2414. "Complex\\": "classes/src/"
  2415. }
  2416. },
  2417. "notification-url": "https://packagist.org/downloads/",
  2418. "license": [
  2419. "MIT"
  2420. ],
  2421. "authors": [
  2422. {
  2423. "name": "Mark Baker",
  2424. "email": "mark@lange.demon.co.uk"
  2425. }
  2426. ],
  2427. "description": "PHP Class for working with complex numbers",
  2428. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2429. "keywords": [
  2430. "complex",
  2431. "mathematics"
  2432. ],
  2433. "support": {
  2434. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2435. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  2436. },
  2437. "time": "2022-12-06T16:21:08+00:00"
  2438. },
  2439. {
  2440. "name": "markbaker/matrix",
  2441. "version": "3.0.1",
  2442. "source": {
  2443. "type": "git",
  2444. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2445. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  2446. },
  2447. "dist": {
  2448. "type": "zip",
  2449. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  2450. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  2451. "shasum": "",
  2452. "mirrors": [
  2453. {
  2454. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2455. "preferred": true
  2456. }
  2457. ]
  2458. },
  2459. "require": {
  2460. "php": "^7.1 || ^8.0"
  2461. },
  2462. "require-dev": {
  2463. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2464. "phpcompatibility/php-compatibility": "^9.3",
  2465. "phpdocumentor/phpdocumentor": "2.*",
  2466. "phploc/phploc": "^4.0",
  2467. "phpmd/phpmd": "2.*",
  2468. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2469. "sebastian/phpcpd": "^4.0",
  2470. "squizlabs/php_codesniffer": "^3.7"
  2471. },
  2472. "type": "library",
  2473. "autoload": {
  2474. "psr-4": {
  2475. "Matrix\\": "classes/src/"
  2476. }
  2477. },
  2478. "notification-url": "https://packagist.org/downloads/",
  2479. "license": [
  2480. "MIT"
  2481. ],
  2482. "authors": [
  2483. {
  2484. "name": "Mark Baker",
  2485. "email": "mark@demon-angel.eu"
  2486. }
  2487. ],
  2488. "description": "PHP Class for working with matrices",
  2489. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2490. "keywords": [
  2491. "mathematics",
  2492. "matrix",
  2493. "vector"
  2494. ],
  2495. "support": {
  2496. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2497. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  2498. },
  2499. "time": "2022-12-02T22:17:43+00:00"
  2500. },
  2501. {
  2502. "name": "monolog/monolog",
  2503. "version": "2.9.0",
  2504. "source": {
  2505. "type": "git",
  2506. "url": "https://github.com/Seldaek/monolog.git",
  2507. "reference": "e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb"
  2508. },
  2509. "dist": {
  2510. "type": "zip",
  2511. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb",
  2512. "reference": "e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb",
  2513. "shasum": "",
  2514. "mirrors": [
  2515. {
  2516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2517. "preferred": true
  2518. }
  2519. ]
  2520. },
  2521. "require": {
  2522. "php": ">=7.2",
  2523. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2524. },
  2525. "provide": {
  2526. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2527. },
  2528. "require-dev": {
  2529. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2530. "doctrine/couchdb": "~1.0@dev",
  2531. "elasticsearch/elasticsearch": "^7 || ^8",
  2532. "ext-json": "*",
  2533. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2534. "guzzlehttp/guzzle": "^7.4",
  2535. "guzzlehttp/psr7": "^2.2",
  2536. "mongodb/mongodb": "^1.8",
  2537. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2538. "phpspec/prophecy": "^1.15",
  2539. "phpstan/phpstan": "^0.12.91",
  2540. "phpunit/phpunit": "^8.5.14",
  2541. "predis/predis": "^1.1 || ^2.0",
  2542. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2543. "ruflin/elastica": "^7",
  2544. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2545. "symfony/mailer": "^5.4 || ^6",
  2546. "symfony/mime": "^5.4 || ^6"
  2547. },
  2548. "suggest": {
  2549. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2550. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2551. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2552. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2553. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2554. "ext-mbstring": "Allow to work properly with unicode symbols",
  2555. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2556. "ext-openssl": "Required to send log messages using SSL",
  2557. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2558. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2559. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2560. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2561. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2562. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2563. },
  2564. "type": "library",
  2565. "extra": {
  2566. "branch-alias": {
  2567. "dev-main": "2.x-dev"
  2568. }
  2569. },
  2570. "autoload": {
  2571. "psr-4": {
  2572. "Monolog\\": "src/Monolog"
  2573. }
  2574. },
  2575. "notification-url": "https://packagist.org/downloads/",
  2576. "license": [
  2577. "MIT"
  2578. ],
  2579. "authors": [
  2580. {
  2581. "name": "Jordi Boggiano",
  2582. "email": "j.boggiano@seld.be",
  2583. "homepage": "https://seld.be"
  2584. }
  2585. ],
  2586. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2587. "homepage": "https://github.com/Seldaek/monolog",
  2588. "keywords": [
  2589. "log",
  2590. "logging",
  2591. "psr-3"
  2592. ],
  2593. "support": {
  2594. "issues": "https://github.com/Seldaek/monolog/issues",
  2595. "source": "https://github.com/Seldaek/monolog/tree/2.9.0"
  2596. },
  2597. "funding": [
  2598. {
  2599. "url": "https://github.com/Seldaek",
  2600. "type": "github"
  2601. },
  2602. {
  2603. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2604. "type": "tidelift"
  2605. }
  2606. ],
  2607. "time": "2023-02-05T13:07:32+00:00"
  2608. },
  2609. {
  2610. "name": "myclabs/php-enum",
  2611. "version": "1.8.3",
  2612. "source": {
  2613. "type": "git",
  2614. "url": "https://github.com/myclabs/php-enum.git",
  2615. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  2616. },
  2617. "dist": {
  2618. "type": "zip",
  2619. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  2620. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  2621. "shasum": "",
  2622. "mirrors": [
  2623. {
  2624. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2625. "preferred": true
  2626. }
  2627. ]
  2628. },
  2629. "require": {
  2630. "ext-json": "*",
  2631. "php": "^7.3 || ^8.0"
  2632. },
  2633. "require-dev": {
  2634. "phpunit/phpunit": "^9.5",
  2635. "squizlabs/php_codesniffer": "1.*",
  2636. "vimeo/psalm": "^4.6.2"
  2637. },
  2638. "type": "library",
  2639. "autoload": {
  2640. "psr-4": {
  2641. "MyCLabs\\Enum\\": "src/"
  2642. }
  2643. },
  2644. "notification-url": "https://packagist.org/downloads/",
  2645. "license": [
  2646. "MIT"
  2647. ],
  2648. "authors": [
  2649. {
  2650. "name": "PHP Enum contributors",
  2651. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2652. }
  2653. ],
  2654. "description": "PHP Enum implementation",
  2655. "homepage": "http://github.com/myclabs/php-enum",
  2656. "keywords": [
  2657. "enum"
  2658. ],
  2659. "support": {
  2660. "issues": "https://github.com/myclabs/php-enum/issues",
  2661. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  2662. },
  2663. "funding": [
  2664. {
  2665. "url": "https://github.com/mnapoli",
  2666. "type": "github"
  2667. },
  2668. {
  2669. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2670. "type": "tidelift"
  2671. }
  2672. ],
  2673. "time": "2021-07-05T08:18:36+00:00"
  2674. },
  2675. {
  2676. "name": "nesbot/carbon",
  2677. "version": "2.66.0",
  2678. "source": {
  2679. "type": "git",
  2680. "url": "https://github.com/briannesbitt/Carbon.git",
  2681. "reference": "496712849902241f04902033b0441b269effe001"
  2682. },
  2683. "dist": {
  2684. "type": "zip",
  2685. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  2686. "reference": "496712849902241f04902033b0441b269effe001",
  2687. "shasum": "",
  2688. "mirrors": [
  2689. {
  2690. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2691. "preferred": true
  2692. }
  2693. ]
  2694. },
  2695. "require": {
  2696. "ext-json": "*",
  2697. "php": "^7.1.8 || ^8.0",
  2698. "symfony/polyfill-mbstring": "^1.0",
  2699. "symfony/polyfill-php80": "^1.16",
  2700. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2701. },
  2702. "require-dev": {
  2703. "doctrine/dbal": "^2.0 || ^3.1.4",
  2704. "doctrine/orm": "^2.7",
  2705. "friendsofphp/php-cs-fixer": "^3.0",
  2706. "kylekatarnls/multi-tester": "^2.0",
  2707. "ondrejmirtes/better-reflection": "*",
  2708. "phpmd/phpmd": "^2.9",
  2709. "phpstan/extension-installer": "^1.0",
  2710. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2711. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2712. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2713. "squizlabs/php_codesniffer": "^3.4"
  2714. },
  2715. "bin": [
  2716. "bin/carbon"
  2717. ],
  2718. "type": "library",
  2719. "extra": {
  2720. "branch-alias": {
  2721. "dev-3.x": "3.x-dev",
  2722. "dev-master": "2.x-dev"
  2723. },
  2724. "laravel": {
  2725. "providers": [
  2726. "Carbon\\Laravel\\ServiceProvider"
  2727. ]
  2728. },
  2729. "phpstan": {
  2730. "includes": [
  2731. "extension.neon"
  2732. ]
  2733. }
  2734. },
  2735. "autoload": {
  2736. "psr-4": {
  2737. "Carbon\\": "src/Carbon/"
  2738. }
  2739. },
  2740. "notification-url": "https://packagist.org/downloads/",
  2741. "license": [
  2742. "MIT"
  2743. ],
  2744. "authors": [
  2745. {
  2746. "name": "Brian Nesbitt",
  2747. "email": "brian@nesbot.com",
  2748. "homepage": "https://markido.com"
  2749. },
  2750. {
  2751. "name": "kylekatarnls",
  2752. "homepage": "https://github.com/kylekatarnls"
  2753. }
  2754. ],
  2755. "description": "An API extension for DateTime that supports 281 different languages.",
  2756. "homepage": "https://carbon.nesbot.com",
  2757. "keywords": [
  2758. "date",
  2759. "datetime",
  2760. "time"
  2761. ],
  2762. "support": {
  2763. "docs": "https://carbon.nesbot.com/docs",
  2764. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2765. "source": "https://github.com/briannesbitt/Carbon"
  2766. },
  2767. "funding": [
  2768. {
  2769. "url": "https://github.com/sponsors/kylekatarnls",
  2770. "type": "github"
  2771. },
  2772. {
  2773. "url": "https://opencollective.com/Carbon#sponsor",
  2774. "type": "opencollective"
  2775. },
  2776. {
  2777. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2778. "type": "tidelift"
  2779. }
  2780. ],
  2781. "time": "2023-01-29T18:53:47+00:00"
  2782. },
  2783. {
  2784. "name": "nette/schema",
  2785. "version": "v1.2.3",
  2786. "source": {
  2787. "type": "git",
  2788. "url": "https://github.com/nette/schema.git",
  2789. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  2790. },
  2791. "dist": {
  2792. "type": "zip",
  2793. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2794. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2795. "shasum": "",
  2796. "mirrors": [
  2797. {
  2798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2799. "preferred": true
  2800. }
  2801. ]
  2802. },
  2803. "require": {
  2804. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2805. "php": ">=7.1 <8.3"
  2806. },
  2807. "require-dev": {
  2808. "nette/tester": "^2.3 || ^2.4",
  2809. "phpstan/phpstan-nette": "^1.0",
  2810. "tracy/tracy": "^2.7"
  2811. },
  2812. "type": "library",
  2813. "extra": {
  2814. "branch-alias": {
  2815. "dev-master": "1.2-dev"
  2816. }
  2817. },
  2818. "autoload": {
  2819. "classmap": [
  2820. "src/"
  2821. ]
  2822. },
  2823. "notification-url": "https://packagist.org/downloads/",
  2824. "license": [
  2825. "BSD-3-Clause",
  2826. "GPL-2.0-only",
  2827. "GPL-3.0-only"
  2828. ],
  2829. "authors": [
  2830. {
  2831. "name": "David Grudl",
  2832. "homepage": "https://davidgrudl.com"
  2833. },
  2834. {
  2835. "name": "Nette Community",
  2836. "homepage": "https://nette.org/contributors"
  2837. }
  2838. ],
  2839. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2840. "homepage": "https://nette.org",
  2841. "keywords": [
  2842. "config",
  2843. "nette"
  2844. ],
  2845. "support": {
  2846. "issues": "https://github.com/nette/schema/issues",
  2847. "source": "https://github.com/nette/schema/tree/v1.2.3"
  2848. },
  2849. "time": "2022-10-13T01:24:26+00:00"
  2850. },
  2851. {
  2852. "name": "nette/utils",
  2853. "version": "v4.0.0",
  2854. "source": {
  2855. "type": "git",
  2856. "url": "https://github.com/nette/utils.git",
  2857. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  2858. },
  2859. "dist": {
  2860. "type": "zip",
  2861. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2862. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2863. "shasum": "",
  2864. "mirrors": [
  2865. {
  2866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2867. "preferred": true
  2868. }
  2869. ]
  2870. },
  2871. "require": {
  2872. "php": ">=8.0 <8.3"
  2873. },
  2874. "conflict": {
  2875. "nette/finder": "<3",
  2876. "nette/schema": "<1.2.2"
  2877. },
  2878. "require-dev": {
  2879. "jetbrains/phpstorm-attributes": "dev-master",
  2880. "nette/tester": "^2.4",
  2881. "phpstan/phpstan": "^1.0",
  2882. "tracy/tracy": "^2.9"
  2883. },
  2884. "suggest": {
  2885. "ext-gd": "to use Image",
  2886. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2887. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2888. "ext-json": "to use Nette\\Utils\\Json",
  2889. "ext-mbstring": "to use Strings::lower() etc...",
  2890. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2891. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2892. },
  2893. "type": "library",
  2894. "extra": {
  2895. "branch-alias": {
  2896. "dev-master": "4.0-dev"
  2897. }
  2898. },
  2899. "autoload": {
  2900. "classmap": [
  2901. "src/"
  2902. ]
  2903. },
  2904. "notification-url": "https://packagist.org/downloads/",
  2905. "license": [
  2906. "BSD-3-Clause",
  2907. "GPL-2.0-only",
  2908. "GPL-3.0-only"
  2909. ],
  2910. "authors": [
  2911. {
  2912. "name": "David Grudl",
  2913. "homepage": "https://davidgrudl.com"
  2914. },
  2915. {
  2916. "name": "Nette Community",
  2917. "homepage": "https://nette.org/contributors"
  2918. }
  2919. ],
  2920. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2921. "homepage": "https://nette.org",
  2922. "keywords": [
  2923. "array",
  2924. "core",
  2925. "datetime",
  2926. "images",
  2927. "json",
  2928. "nette",
  2929. "paginator",
  2930. "password",
  2931. "slugify",
  2932. "string",
  2933. "unicode",
  2934. "utf-8",
  2935. "utility",
  2936. "validation"
  2937. ],
  2938. "support": {
  2939. "issues": "https://github.com/nette/utils/issues",
  2940. "source": "https://github.com/nette/utils/tree/v4.0.0"
  2941. },
  2942. "time": "2023-02-02T10:41:53+00:00"
  2943. },
  2944. {
  2945. "name": "nikic/php-parser",
  2946. "version": "v4.15.4",
  2947. "source": {
  2948. "type": "git",
  2949. "url": "https://github.com/nikic/PHP-Parser.git",
  2950. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
  2951. },
  2952. "dist": {
  2953. "type": "zip",
  2954. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  2955. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  2956. "shasum": "",
  2957. "mirrors": [
  2958. {
  2959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2960. "preferred": true
  2961. }
  2962. ]
  2963. },
  2964. "require": {
  2965. "ext-tokenizer": "*",
  2966. "php": ">=7.0"
  2967. },
  2968. "require-dev": {
  2969. "ircmaxell/php-yacc": "^0.0.7",
  2970. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2971. },
  2972. "bin": [
  2973. "bin/php-parse"
  2974. ],
  2975. "type": "library",
  2976. "extra": {
  2977. "branch-alias": {
  2978. "dev-master": "4.9-dev"
  2979. }
  2980. },
  2981. "autoload": {
  2982. "psr-4": {
  2983. "PhpParser\\": "lib/PhpParser"
  2984. }
  2985. },
  2986. "notification-url": "https://packagist.org/downloads/",
  2987. "license": [
  2988. "BSD-3-Clause"
  2989. ],
  2990. "authors": [
  2991. {
  2992. "name": "Nikita Popov"
  2993. }
  2994. ],
  2995. "description": "A PHP parser written in PHP",
  2996. "keywords": [
  2997. "parser",
  2998. "php"
  2999. ],
  3000. "support": {
  3001. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3002. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
  3003. },
  3004. "time": "2023-03-05T19:49:14+00:00"
  3005. },
  3006. {
  3007. "name": "nunomaduro/termwind",
  3008. "version": "v1.15.1",
  3009. "source": {
  3010. "type": "git",
  3011. "url": "https://github.com/nunomaduro/termwind.git",
  3012. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  3013. },
  3014. "dist": {
  3015. "type": "zip",
  3016. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3017. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3018. "shasum": "",
  3019. "mirrors": [
  3020. {
  3021. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3022. "preferred": true
  3023. }
  3024. ]
  3025. },
  3026. "require": {
  3027. "ext-mbstring": "*",
  3028. "php": "^8.0",
  3029. "symfony/console": "^5.3.0|^6.0.0"
  3030. },
  3031. "require-dev": {
  3032. "ergebnis/phpstan-rules": "^1.0.",
  3033. "illuminate/console": "^8.0|^9.0",
  3034. "illuminate/support": "^8.0|^9.0",
  3035. "laravel/pint": "^1.0.0",
  3036. "pestphp/pest": "^1.21.0",
  3037. "pestphp/pest-plugin-mock": "^1.0",
  3038. "phpstan/phpstan": "^1.4.6",
  3039. "phpstan/phpstan-strict-rules": "^1.1.0",
  3040. "symfony/var-dumper": "^5.2.7|^6.0.0",
  3041. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3042. },
  3043. "type": "library",
  3044. "extra": {
  3045. "laravel": {
  3046. "providers": [
  3047. "Termwind\\Laravel\\TermwindServiceProvider"
  3048. ]
  3049. }
  3050. },
  3051. "autoload": {
  3052. "files": [
  3053. "src/Functions.php"
  3054. ],
  3055. "psr-4": {
  3056. "Termwind\\": "src/"
  3057. }
  3058. },
  3059. "notification-url": "https://packagist.org/downloads/",
  3060. "license": [
  3061. "MIT"
  3062. ],
  3063. "authors": [
  3064. {
  3065. "name": "Nuno Maduro",
  3066. "email": "enunomaduro@gmail.com"
  3067. }
  3068. ],
  3069. "description": "Its like Tailwind CSS, but for the console.",
  3070. "keywords": [
  3071. "cli",
  3072. "console",
  3073. "css",
  3074. "package",
  3075. "php",
  3076. "style"
  3077. ],
  3078. "support": {
  3079. "issues": "https://github.com/nunomaduro/termwind/issues",
  3080. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  3081. },
  3082. "funding": [
  3083. {
  3084. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3085. "type": "custom"
  3086. },
  3087. {
  3088. "url": "https://github.com/nunomaduro",
  3089. "type": "github"
  3090. },
  3091. {
  3092. "url": "https://github.com/xiCO2k",
  3093. "type": "github"
  3094. }
  3095. ],
  3096. "time": "2023-02-08T01:06:31+00:00"
  3097. },
  3098. {
  3099. "name": "nyholm/psr7",
  3100. "version": "1.8.0",
  3101. "source": {
  3102. "type": "git",
  3103. "url": "https://github.com/Nyholm/psr7.git",
  3104. "reference": "3cb4d163b58589e47b35103e8e5e6a6a475b47be"
  3105. },
  3106. "dist": {
  3107. "type": "zip",
  3108. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/3cb4d163b58589e47b35103e8e5e6a6a475b47be",
  3109. "reference": "3cb4d163b58589e47b35103e8e5e6a6a475b47be",
  3110. "shasum": "",
  3111. "mirrors": [
  3112. {
  3113. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3114. "preferred": true
  3115. }
  3116. ]
  3117. },
  3118. "require": {
  3119. "php": ">=7.2",
  3120. "psr/http-factory": "^1.0",
  3121. "psr/http-message": "^1.1 || ^2.0"
  3122. },
  3123. "provide": {
  3124. "php-http/message-factory-implementation": "1.0",
  3125. "psr/http-factory-implementation": "1.0",
  3126. "psr/http-message-implementation": "1.0"
  3127. },
  3128. "require-dev": {
  3129. "http-interop/http-factory-tests": "^0.9",
  3130. "php-http/message-factory": "^1.0",
  3131. "php-http/psr7-integration-tests": "^1.0",
  3132. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  3133. "symfony/error-handler": "^4.4"
  3134. },
  3135. "type": "library",
  3136. "extra": {
  3137. "branch-alias": {
  3138. "dev-master": "1.8-dev"
  3139. }
  3140. },
  3141. "autoload": {
  3142. "psr-4": {
  3143. "Nyholm\\Psr7\\": "src/"
  3144. }
  3145. },
  3146. "notification-url": "https://packagist.org/downloads/",
  3147. "license": [
  3148. "MIT"
  3149. ],
  3150. "authors": [
  3151. {
  3152. "name": "Tobias Nyholm",
  3153. "email": "tobias.nyholm@gmail.com"
  3154. },
  3155. {
  3156. "name": "Martijn van der Ven",
  3157. "email": "martijn@vanderven.se"
  3158. }
  3159. ],
  3160. "description": "A fast PHP7 implementation of PSR-7",
  3161. "homepage": "https://tnyholm.se",
  3162. "keywords": [
  3163. "psr-17",
  3164. "psr-7"
  3165. ],
  3166. "support": {
  3167. "issues": "https://github.com/Nyholm/psr7/issues",
  3168. "source": "https://github.com/Nyholm/psr7/tree/1.8.0"
  3169. },
  3170. "funding": [
  3171. {
  3172. "url": "https://github.com/Zegnat",
  3173. "type": "github"
  3174. },
  3175. {
  3176. "url": "https://github.com/nyholm",
  3177. "type": "github"
  3178. }
  3179. ],
  3180. "time": "2023-05-02T11:26:24+00:00"
  3181. },
  3182. {
  3183. "name": "nyholm/psr7-server",
  3184. "version": "1.0.2",
  3185. "source": {
  3186. "type": "git",
  3187. "url": "https://github.com/Nyholm/psr7-server.git",
  3188. "reference": "b846a689844cef114e8079d8c80f0afd96745ae3"
  3189. },
  3190. "dist": {
  3191. "type": "zip",
  3192. "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/b846a689844cef114e8079d8c80f0afd96745ae3",
  3193. "reference": "b846a689844cef114e8079d8c80f0afd96745ae3",
  3194. "shasum": "",
  3195. "mirrors": [
  3196. {
  3197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3198. "preferred": true
  3199. }
  3200. ]
  3201. },
  3202. "require": {
  3203. "php": "^7.1 || ^8.0",
  3204. "psr/http-factory": "^1.0",
  3205. "psr/http-message": "^1.0"
  3206. },
  3207. "require-dev": {
  3208. "nyholm/nsa": "^1.1",
  3209. "nyholm/psr7": "^1.3",
  3210. "phpunit/phpunit": "^7.0 || ^8.5 || ^9.3"
  3211. },
  3212. "type": "library",
  3213. "autoload": {
  3214. "psr-4": {
  3215. "Nyholm\\Psr7Server\\": "src/"
  3216. }
  3217. },
  3218. "notification-url": "https://packagist.org/downloads/",
  3219. "license": [
  3220. "MIT"
  3221. ],
  3222. "authors": [
  3223. {
  3224. "name": "Tobias Nyholm",
  3225. "email": "tobias.nyholm@gmail.com"
  3226. },
  3227. {
  3228. "name": "Martijn van der Ven",
  3229. "email": "martijn@vanderven.se"
  3230. }
  3231. ],
  3232. "description": "Helper classes to handle PSR-7 server requests",
  3233. "homepage": "http://tnyholm.se",
  3234. "keywords": [
  3235. "psr-17",
  3236. "psr-7"
  3237. ],
  3238. "support": {
  3239. "issues": "https://github.com/Nyholm/psr7-server/issues",
  3240. "source": "https://github.com/Nyholm/psr7-server/tree/1.0.2"
  3241. },
  3242. "funding": [
  3243. {
  3244. "url": "https://github.com/Zegnat",
  3245. "type": "github"
  3246. },
  3247. {
  3248. "url": "https://github.com/nyholm",
  3249. "type": "github"
  3250. }
  3251. ],
  3252. "time": "2021-05-12T11:11:27+00:00"
  3253. },
  3254. {
  3255. "name": "overtrue/socialite",
  3256. "version": "4.8.0",
  3257. "source": {
  3258. "type": "git",
  3259. "url": "https://github.com/overtrue/socialite.git",
  3260. "reference": "e55fdf50f8003be8f03a85a7e5a5b7c5716f4c9a"
  3261. },
  3262. "dist": {
  3263. "type": "zip",
  3264. "url": "https://api.github.com/repos/overtrue/socialite/zipball/e55fdf50f8003be8f03a85a7e5a5b7c5716f4c9a",
  3265. "reference": "e55fdf50f8003be8f03a85a7e5a5b7c5716f4c9a",
  3266. "shasum": "",
  3267. "mirrors": [
  3268. {
  3269. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3270. "preferred": true
  3271. }
  3272. ]
  3273. },
  3274. "require": {
  3275. "ext-json": "*",
  3276. "ext-openssl": "*",
  3277. "guzzlehttp/guzzle": "^7.0",
  3278. "php": ">=8.0.2",
  3279. "symfony/http-foundation": "^6.0",
  3280. "symfony/psr-http-message-bridge": "^2.1"
  3281. },
  3282. "require-dev": {
  3283. "jetbrains/phpstorm-attributes": "^1.0",
  3284. "laravel/pint": "^1.2",
  3285. "mockery/mockery": "^1.3",
  3286. "phpstan/phpstan": "^1.7",
  3287. "phpunit/phpunit": "^9.0"
  3288. },
  3289. "type": "library",
  3290. "autoload": {
  3291. "files": [
  3292. "src/Contracts/FactoryInterface.php",
  3293. "src/Contracts/UserInterface.php",
  3294. "src/Contracts/ProviderInterface.php"
  3295. ],
  3296. "psr-4": {
  3297. "Overtrue\\Socialite\\": "src/"
  3298. }
  3299. },
  3300. "notification-url": "https://packagist.org/downloads/",
  3301. "license": [
  3302. "MIT"
  3303. ],
  3304. "authors": [
  3305. {
  3306. "name": "overtrue",
  3307. "email": "anzhengchao@gmail.com"
  3308. }
  3309. ],
  3310. "description": "A collection of OAuth 2 packages.",
  3311. "keywords": [
  3312. "Feishu",
  3313. "login",
  3314. "oauth",
  3315. "qcloud",
  3316. "qq",
  3317. "social",
  3318. "wechat",
  3319. "weibo"
  3320. ],
  3321. "support": {
  3322. "issues": "https://github.com/overtrue/socialite/issues",
  3323. "source": "https://github.com/overtrue/socialite/tree/4.8.0"
  3324. },
  3325. "funding": [
  3326. {
  3327. "url": "https://github.com/overtrue",
  3328. "type": "github"
  3329. }
  3330. ],
  3331. "time": "2023-01-10T14:29:55+00:00"
  3332. },
  3333. {
  3334. "name": "paragonie/constant_time_encoding",
  3335. "version": "v2.6.3",
  3336. "source": {
  3337. "type": "git",
  3338. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3339. "reference": "58c3f47f650c94ec05a151692652a868995d2938"
  3340. },
  3341. "dist": {
  3342. "type": "zip",
  3343. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938",
  3344. "reference": "58c3f47f650c94ec05a151692652a868995d2938",
  3345. "shasum": "",
  3346. "mirrors": [
  3347. {
  3348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3349. "preferred": true
  3350. }
  3351. ]
  3352. },
  3353. "require": {
  3354. "php": "^7|^8"
  3355. },
  3356. "require-dev": {
  3357. "phpunit/phpunit": "^6|^7|^8|^9",
  3358. "vimeo/psalm": "^1|^2|^3|^4"
  3359. },
  3360. "type": "library",
  3361. "autoload": {
  3362. "psr-4": {
  3363. "ParagonIE\\ConstantTime\\": "src/"
  3364. }
  3365. },
  3366. "notification-url": "https://packagist.org/downloads/",
  3367. "license": [
  3368. "MIT"
  3369. ],
  3370. "authors": [
  3371. {
  3372. "name": "Paragon Initiative Enterprises",
  3373. "email": "security@paragonie.com",
  3374. "homepage": "https://paragonie.com",
  3375. "role": "Maintainer"
  3376. },
  3377. {
  3378. "name": "Steve 'Sc00bz' Thomas",
  3379. "email": "steve@tobtu.com",
  3380. "homepage": "https://www.tobtu.com",
  3381. "role": "Original Developer"
  3382. }
  3383. ],
  3384. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3385. "keywords": [
  3386. "base16",
  3387. "base32",
  3388. "base32_decode",
  3389. "base32_encode",
  3390. "base64",
  3391. "base64_decode",
  3392. "base64_encode",
  3393. "bin2hex",
  3394. "encoding",
  3395. "hex",
  3396. "hex2bin",
  3397. "rfc4648"
  3398. ],
  3399. "support": {
  3400. "email": "info@paragonie.com",
  3401. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3402. "source": "https://github.com/paragonie/constant_time_encoding"
  3403. },
  3404. "time": "2022-06-14T06:56:20+00:00"
  3405. },
  3406. {
  3407. "name": "paragonie/random_compat",
  3408. "version": "v9.99.100",
  3409. "source": {
  3410. "type": "git",
  3411. "url": "https://github.com/paragonie/random_compat.git",
  3412. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3413. },
  3414. "dist": {
  3415. "type": "zip",
  3416. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3417. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3418. "shasum": "",
  3419. "mirrors": [
  3420. {
  3421. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3422. "preferred": true
  3423. }
  3424. ]
  3425. },
  3426. "require": {
  3427. "php": ">= 7"
  3428. },
  3429. "require-dev": {
  3430. "phpunit/phpunit": "4.*|5.*",
  3431. "vimeo/psalm": "^1"
  3432. },
  3433. "suggest": {
  3434. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3435. },
  3436. "type": "library",
  3437. "notification-url": "https://packagist.org/downloads/",
  3438. "license": [
  3439. "MIT"
  3440. ],
  3441. "authors": [
  3442. {
  3443. "name": "Paragon Initiative Enterprises",
  3444. "email": "security@paragonie.com",
  3445. "homepage": "https://paragonie.com"
  3446. }
  3447. ],
  3448. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3449. "keywords": [
  3450. "csprng",
  3451. "polyfill",
  3452. "pseudorandom",
  3453. "random"
  3454. ],
  3455. "support": {
  3456. "email": "info@paragonie.com",
  3457. "issues": "https://github.com/paragonie/random_compat/issues",
  3458. "source": "https://github.com/paragonie/random_compat"
  3459. },
  3460. "time": "2020-10-15T08:29:30+00:00"
  3461. },
  3462. {
  3463. "name": "phpoffice/phpspreadsheet",
  3464. "version": "1.28.0",
  3465. "source": {
  3466. "type": "git",
  3467. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3468. "reference": "6e81cf39bbd93ebc3a4e8150444c41e8aa9b769a"
  3469. },
  3470. "dist": {
  3471. "type": "zip",
  3472. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/6e81cf39bbd93ebc3a4e8150444c41e8aa9b769a",
  3473. "reference": "6e81cf39bbd93ebc3a4e8150444c41e8aa9b769a",
  3474. "shasum": "",
  3475. "mirrors": [
  3476. {
  3477. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3478. "preferred": true
  3479. }
  3480. ]
  3481. },
  3482. "require": {
  3483. "ext-ctype": "*",
  3484. "ext-dom": "*",
  3485. "ext-fileinfo": "*",
  3486. "ext-gd": "*",
  3487. "ext-iconv": "*",
  3488. "ext-libxml": "*",
  3489. "ext-mbstring": "*",
  3490. "ext-simplexml": "*",
  3491. "ext-xml": "*",
  3492. "ext-xmlreader": "*",
  3493. "ext-xmlwriter": "*",
  3494. "ext-zip": "*",
  3495. "ext-zlib": "*",
  3496. "ezyang/htmlpurifier": "^4.15",
  3497. "maennchen/zipstream-php": "^2.1",
  3498. "markbaker/complex": "^3.0",
  3499. "markbaker/matrix": "^3.0",
  3500. "php": "^7.4 || ^8.0",
  3501. "psr/http-client": "^1.0",
  3502. "psr/http-factory": "^1.0",
  3503. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3504. },
  3505. "require-dev": {
  3506. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3507. "dompdf/dompdf": "^1.0 || ^2.0",
  3508. "friendsofphp/php-cs-fixer": "^3.2",
  3509. "mitoteam/jpgraph": "^10.2.4",
  3510. "mpdf/mpdf": "^8.1.1",
  3511. "phpcompatibility/php-compatibility": "^9.3",
  3512. "phpstan/phpstan": "^1.1",
  3513. "phpstan/phpstan-phpunit": "^1.0",
  3514. "phpunit/phpunit": "^8.5 || ^9.0",
  3515. "squizlabs/php_codesniffer": "^3.7",
  3516. "tecnickcom/tcpdf": "^6.5"
  3517. },
  3518. "suggest": {
  3519. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3520. "ext-intl": "PHP Internationalization Functions",
  3521. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3522. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3523. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3524. },
  3525. "type": "library",
  3526. "autoload": {
  3527. "psr-4": {
  3528. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3529. }
  3530. },
  3531. "notification-url": "https://packagist.org/downloads/",
  3532. "license": [
  3533. "MIT"
  3534. ],
  3535. "authors": [
  3536. {
  3537. "name": "Maarten Balliauw",
  3538. "homepage": "https://blog.maartenballiauw.be"
  3539. },
  3540. {
  3541. "name": "Mark Baker",
  3542. "homepage": "https://markbakeruk.net"
  3543. },
  3544. {
  3545. "name": "Franck Lefevre",
  3546. "homepage": "https://rootslabs.net"
  3547. },
  3548. {
  3549. "name": "Erik Tilt"
  3550. },
  3551. {
  3552. "name": "Adrien Crivelli"
  3553. }
  3554. ],
  3555. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3556. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3557. "keywords": [
  3558. "OpenXML",
  3559. "excel",
  3560. "gnumeric",
  3561. "ods",
  3562. "php",
  3563. "spreadsheet",
  3564. "xls",
  3565. "xlsx"
  3566. ],
  3567. "support": {
  3568. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3569. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.28.0"
  3570. },
  3571. "time": "2023-02-25T12:24:49+00:00"
  3572. },
  3573. {
  3574. "name": "phpoption/phpoption",
  3575. "version": "1.9.1",
  3576. "source": {
  3577. "type": "git",
  3578. "url": "https://github.com/schmittjoh/php-option.git",
  3579. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  3580. },
  3581. "dist": {
  3582. "type": "zip",
  3583. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  3584. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  3585. "shasum": "",
  3586. "mirrors": [
  3587. {
  3588. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3589. "preferred": true
  3590. }
  3591. ]
  3592. },
  3593. "require": {
  3594. "php": "^7.2.5 || ^8.0"
  3595. },
  3596. "require-dev": {
  3597. "bamarni/composer-bin-plugin": "^1.8.2",
  3598. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  3599. },
  3600. "type": "library",
  3601. "extra": {
  3602. "bamarni-bin": {
  3603. "bin-links": true,
  3604. "forward-command": true
  3605. },
  3606. "branch-alias": {
  3607. "dev-master": "1.9-dev"
  3608. }
  3609. },
  3610. "autoload": {
  3611. "psr-4": {
  3612. "PhpOption\\": "src/PhpOption/"
  3613. }
  3614. },
  3615. "notification-url": "https://packagist.org/downloads/",
  3616. "license": [
  3617. "Apache-2.0"
  3618. ],
  3619. "authors": [
  3620. {
  3621. "name": "Johannes M. Schmitt",
  3622. "email": "schmittjoh@gmail.com",
  3623. "homepage": "https://github.com/schmittjoh"
  3624. },
  3625. {
  3626. "name": "Graham Campbell",
  3627. "email": "hello@gjcampbell.co.uk",
  3628. "homepage": "https://github.com/GrahamCampbell"
  3629. }
  3630. ],
  3631. "description": "Option Type for PHP",
  3632. "keywords": [
  3633. "language",
  3634. "option",
  3635. "php",
  3636. "type"
  3637. ],
  3638. "support": {
  3639. "issues": "https://github.com/schmittjoh/php-option/issues",
  3640. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  3641. },
  3642. "funding": [
  3643. {
  3644. "url": "https://github.com/GrahamCampbell",
  3645. "type": "github"
  3646. },
  3647. {
  3648. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3649. "type": "tidelift"
  3650. }
  3651. ],
  3652. "time": "2023-02-25T19:38:58+00:00"
  3653. },
  3654. {
  3655. "name": "phpseclib/phpseclib",
  3656. "version": "3.0.19",
  3657. "source": {
  3658. "type": "git",
  3659. "url": "https://github.com/phpseclib/phpseclib.git",
  3660. "reference": "cc181005cf548bfd8a4896383bb825d859259f95"
  3661. },
  3662. "dist": {
  3663. "type": "zip",
  3664. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/cc181005cf548bfd8a4896383bb825d859259f95",
  3665. "reference": "cc181005cf548bfd8a4896383bb825d859259f95",
  3666. "shasum": "",
  3667. "mirrors": [
  3668. {
  3669. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3670. "preferred": true
  3671. }
  3672. ]
  3673. },
  3674. "require": {
  3675. "paragonie/constant_time_encoding": "^1|^2",
  3676. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  3677. "php": ">=5.6.1"
  3678. },
  3679. "require-dev": {
  3680. "phpunit/phpunit": "*"
  3681. },
  3682. "suggest": {
  3683. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  3684. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  3685. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  3686. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  3687. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  3688. },
  3689. "type": "library",
  3690. "autoload": {
  3691. "files": [
  3692. "phpseclib/bootstrap.php"
  3693. ],
  3694. "psr-4": {
  3695. "phpseclib3\\": "phpseclib/"
  3696. }
  3697. },
  3698. "notification-url": "https://packagist.org/downloads/",
  3699. "license": [
  3700. "MIT"
  3701. ],
  3702. "authors": [
  3703. {
  3704. "name": "Jim Wigginton",
  3705. "email": "terrafrost@php.net",
  3706. "role": "Lead Developer"
  3707. },
  3708. {
  3709. "name": "Patrick Monnerat",
  3710. "email": "pm@datasphere.ch",
  3711. "role": "Developer"
  3712. },
  3713. {
  3714. "name": "Andreas Fischer",
  3715. "email": "bantu@phpbb.com",
  3716. "role": "Developer"
  3717. },
  3718. {
  3719. "name": "Hans-Jürgen Petrich",
  3720. "email": "petrich@tronic-media.com",
  3721. "role": "Developer"
  3722. },
  3723. {
  3724. "name": "Graham Campbell",
  3725. "email": "graham@alt-three.com",
  3726. "role": "Developer"
  3727. }
  3728. ],
  3729. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  3730. "homepage": "http://phpseclib.sourceforge.net",
  3731. "keywords": [
  3732. "BigInteger",
  3733. "aes",
  3734. "asn.1",
  3735. "asn1",
  3736. "blowfish",
  3737. "crypto",
  3738. "cryptography",
  3739. "encryption",
  3740. "rsa",
  3741. "security",
  3742. "sftp",
  3743. "signature",
  3744. "signing",
  3745. "ssh",
  3746. "twofish",
  3747. "x.509",
  3748. "x509"
  3749. ],
  3750. "support": {
  3751. "issues": "https://github.com/phpseclib/phpseclib/issues",
  3752. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.19"
  3753. },
  3754. "funding": [
  3755. {
  3756. "url": "https://github.com/terrafrost",
  3757. "type": "github"
  3758. },
  3759. {
  3760. "url": "https://www.patreon.com/phpseclib",
  3761. "type": "patreon"
  3762. },
  3763. {
  3764. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  3765. "type": "tidelift"
  3766. }
  3767. ],
  3768. "time": "2023-03-05T17:13:09+00:00"
  3769. },
  3770. {
  3771. "name": "psr/cache",
  3772. "version": "3.0.0",
  3773. "source": {
  3774. "type": "git",
  3775. "url": "https://github.com/php-fig/cache.git",
  3776. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  3777. },
  3778. "dist": {
  3779. "type": "zip",
  3780. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3781. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3782. "shasum": "",
  3783. "mirrors": [
  3784. {
  3785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3786. "preferred": true
  3787. }
  3788. ]
  3789. },
  3790. "require": {
  3791. "php": ">=8.0.0"
  3792. },
  3793. "type": "library",
  3794. "extra": {
  3795. "branch-alias": {
  3796. "dev-master": "1.0.x-dev"
  3797. }
  3798. },
  3799. "autoload": {
  3800. "psr-4": {
  3801. "Psr\\Cache\\": "src/"
  3802. }
  3803. },
  3804. "notification-url": "https://packagist.org/downloads/",
  3805. "license": [
  3806. "MIT"
  3807. ],
  3808. "authors": [
  3809. {
  3810. "name": "PHP-FIG",
  3811. "homepage": "https://www.php-fig.org/"
  3812. }
  3813. ],
  3814. "description": "Common interface for caching libraries",
  3815. "keywords": [
  3816. "cache",
  3817. "psr",
  3818. "psr-6"
  3819. ],
  3820. "support": {
  3821. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  3822. },
  3823. "time": "2021-02-03T23:26:27+00:00"
  3824. },
  3825. {
  3826. "name": "psr/container",
  3827. "version": "2.0.2",
  3828. "source": {
  3829. "type": "git",
  3830. "url": "https://github.com/php-fig/container.git",
  3831. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3832. },
  3833. "dist": {
  3834. "type": "zip",
  3835. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3836. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3837. "shasum": "",
  3838. "mirrors": [
  3839. {
  3840. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3841. "preferred": true
  3842. }
  3843. ]
  3844. },
  3845. "require": {
  3846. "php": ">=7.4.0"
  3847. },
  3848. "type": "library",
  3849. "extra": {
  3850. "branch-alias": {
  3851. "dev-master": "2.0.x-dev"
  3852. }
  3853. },
  3854. "autoload": {
  3855. "psr-4": {
  3856. "Psr\\Container\\": "src/"
  3857. }
  3858. },
  3859. "notification-url": "https://packagist.org/downloads/",
  3860. "license": [
  3861. "MIT"
  3862. ],
  3863. "authors": [
  3864. {
  3865. "name": "PHP-FIG",
  3866. "homepage": "https://www.php-fig.org/"
  3867. }
  3868. ],
  3869. "description": "Common Container Interface (PHP FIG PSR-11)",
  3870. "homepage": "https://github.com/php-fig/container",
  3871. "keywords": [
  3872. "PSR-11",
  3873. "container",
  3874. "container-interface",
  3875. "container-interop",
  3876. "psr"
  3877. ],
  3878. "support": {
  3879. "issues": "https://github.com/php-fig/container/issues",
  3880. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3881. },
  3882. "time": "2021-11-05T16:47:00+00:00"
  3883. },
  3884. {
  3885. "name": "psr/event-dispatcher",
  3886. "version": "1.0.0",
  3887. "source": {
  3888. "type": "git",
  3889. "url": "https://github.com/php-fig/event-dispatcher.git",
  3890. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3891. },
  3892. "dist": {
  3893. "type": "zip",
  3894. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3895. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3896. "shasum": "",
  3897. "mirrors": [
  3898. {
  3899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3900. "preferred": true
  3901. }
  3902. ]
  3903. },
  3904. "require": {
  3905. "php": ">=7.2.0"
  3906. },
  3907. "type": "library",
  3908. "extra": {
  3909. "branch-alias": {
  3910. "dev-master": "1.0.x-dev"
  3911. }
  3912. },
  3913. "autoload": {
  3914. "psr-4": {
  3915. "Psr\\EventDispatcher\\": "src/"
  3916. }
  3917. },
  3918. "notification-url": "https://packagist.org/downloads/",
  3919. "license": [
  3920. "MIT"
  3921. ],
  3922. "authors": [
  3923. {
  3924. "name": "PHP-FIG",
  3925. "homepage": "http://www.php-fig.org/"
  3926. }
  3927. ],
  3928. "description": "Standard interfaces for event handling.",
  3929. "keywords": [
  3930. "events",
  3931. "psr",
  3932. "psr-14"
  3933. ],
  3934. "support": {
  3935. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3936. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3937. },
  3938. "time": "2019-01-08T18:20:26+00:00"
  3939. },
  3940. {
  3941. "name": "psr/http-client",
  3942. "version": "1.0.1",
  3943. "source": {
  3944. "type": "git",
  3945. "url": "https://github.com/php-fig/http-client.git",
  3946. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3947. },
  3948. "dist": {
  3949. "type": "zip",
  3950. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3951. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3952. "shasum": "",
  3953. "mirrors": [
  3954. {
  3955. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3956. "preferred": true
  3957. }
  3958. ]
  3959. },
  3960. "require": {
  3961. "php": "^7.0 || ^8.0",
  3962. "psr/http-message": "^1.0"
  3963. },
  3964. "type": "library",
  3965. "extra": {
  3966. "branch-alias": {
  3967. "dev-master": "1.0.x-dev"
  3968. }
  3969. },
  3970. "autoload": {
  3971. "psr-4": {
  3972. "Psr\\Http\\Client\\": "src/"
  3973. }
  3974. },
  3975. "notification-url": "https://packagist.org/downloads/",
  3976. "license": [
  3977. "MIT"
  3978. ],
  3979. "authors": [
  3980. {
  3981. "name": "PHP-FIG",
  3982. "homepage": "http://www.php-fig.org/"
  3983. }
  3984. ],
  3985. "description": "Common interface for HTTP clients",
  3986. "homepage": "https://github.com/php-fig/http-client",
  3987. "keywords": [
  3988. "http",
  3989. "http-client",
  3990. "psr",
  3991. "psr-18"
  3992. ],
  3993. "support": {
  3994. "source": "https://github.com/php-fig/http-client/tree/master"
  3995. },
  3996. "time": "2020-06-29T06:28:15+00:00"
  3997. },
  3998. {
  3999. "name": "psr/http-factory",
  4000. "version": "1.0.2",
  4001. "source": {
  4002. "type": "git",
  4003. "url": "https://github.com/php-fig/http-factory.git",
  4004. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4005. },
  4006. "dist": {
  4007. "type": "zip",
  4008. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4009. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4010. "shasum": "",
  4011. "mirrors": [
  4012. {
  4013. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4014. "preferred": true
  4015. }
  4016. ]
  4017. },
  4018. "require": {
  4019. "php": ">=7.0.0",
  4020. "psr/http-message": "^1.0 || ^2.0"
  4021. },
  4022. "type": "library",
  4023. "extra": {
  4024. "branch-alias": {
  4025. "dev-master": "1.0.x-dev"
  4026. }
  4027. },
  4028. "autoload": {
  4029. "psr-4": {
  4030. "Psr\\Http\\Message\\": "src/"
  4031. }
  4032. },
  4033. "notification-url": "https://packagist.org/downloads/",
  4034. "license": [
  4035. "MIT"
  4036. ],
  4037. "authors": [
  4038. {
  4039. "name": "PHP-FIG",
  4040. "homepage": "https://www.php-fig.org/"
  4041. }
  4042. ],
  4043. "description": "Common interfaces for PSR-7 HTTP message factories",
  4044. "keywords": [
  4045. "factory",
  4046. "http",
  4047. "message",
  4048. "psr",
  4049. "psr-17",
  4050. "psr-7",
  4051. "request",
  4052. "response"
  4053. ],
  4054. "support": {
  4055. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4056. },
  4057. "time": "2023-04-10T20:10:41+00:00"
  4058. },
  4059. {
  4060. "name": "psr/http-message",
  4061. "version": "1.1",
  4062. "source": {
  4063. "type": "git",
  4064. "url": "https://github.com/php-fig/http-message.git",
  4065. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4066. },
  4067. "dist": {
  4068. "type": "zip",
  4069. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4070. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4071. "shasum": "",
  4072. "mirrors": [
  4073. {
  4074. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4075. "preferred": true
  4076. }
  4077. ]
  4078. },
  4079. "require": {
  4080. "php": "^7.2 || ^8.0"
  4081. },
  4082. "type": "library",
  4083. "extra": {
  4084. "branch-alias": {
  4085. "dev-master": "1.1.x-dev"
  4086. }
  4087. },
  4088. "autoload": {
  4089. "psr-4": {
  4090. "Psr\\Http\\Message\\": "src/"
  4091. }
  4092. },
  4093. "notification-url": "https://packagist.org/downloads/",
  4094. "license": [
  4095. "MIT"
  4096. ],
  4097. "authors": [
  4098. {
  4099. "name": "PHP-FIG",
  4100. "homepage": "http://www.php-fig.org/"
  4101. }
  4102. ],
  4103. "description": "Common interface for HTTP messages",
  4104. "homepage": "https://github.com/php-fig/http-message",
  4105. "keywords": [
  4106. "http",
  4107. "http-message",
  4108. "psr",
  4109. "psr-7",
  4110. "request",
  4111. "response"
  4112. ],
  4113. "support": {
  4114. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4115. },
  4116. "time": "2023-04-04T09:50:52+00:00"
  4117. },
  4118. {
  4119. "name": "psr/log",
  4120. "version": "3.0.0",
  4121. "source": {
  4122. "type": "git",
  4123. "url": "https://github.com/php-fig/log.git",
  4124. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  4125. },
  4126. "dist": {
  4127. "type": "zip",
  4128. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4129. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4130. "shasum": "",
  4131. "mirrors": [
  4132. {
  4133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4134. "preferred": true
  4135. }
  4136. ]
  4137. },
  4138. "require": {
  4139. "php": ">=8.0.0"
  4140. },
  4141. "type": "library",
  4142. "extra": {
  4143. "branch-alias": {
  4144. "dev-master": "3.x-dev"
  4145. }
  4146. },
  4147. "autoload": {
  4148. "psr-4": {
  4149. "Psr\\Log\\": "src"
  4150. }
  4151. },
  4152. "notification-url": "https://packagist.org/downloads/",
  4153. "license": [
  4154. "MIT"
  4155. ],
  4156. "authors": [
  4157. {
  4158. "name": "PHP-FIG",
  4159. "homepage": "https://www.php-fig.org/"
  4160. }
  4161. ],
  4162. "description": "Common interface for logging libraries",
  4163. "homepage": "https://github.com/php-fig/log",
  4164. "keywords": [
  4165. "log",
  4166. "psr",
  4167. "psr-3"
  4168. ],
  4169. "support": {
  4170. "source": "https://github.com/php-fig/log/tree/3.0.0"
  4171. },
  4172. "time": "2021-07-14T16:46:02+00:00"
  4173. },
  4174. {
  4175. "name": "psr/simple-cache",
  4176. "version": "3.0.0",
  4177. "source": {
  4178. "type": "git",
  4179. "url": "https://github.com/php-fig/simple-cache.git",
  4180. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4181. },
  4182. "dist": {
  4183. "type": "zip",
  4184. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4185. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4186. "shasum": "",
  4187. "mirrors": [
  4188. {
  4189. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4190. "preferred": true
  4191. }
  4192. ]
  4193. },
  4194. "require": {
  4195. "php": ">=8.0.0"
  4196. },
  4197. "type": "library",
  4198. "extra": {
  4199. "branch-alias": {
  4200. "dev-master": "3.0.x-dev"
  4201. }
  4202. },
  4203. "autoload": {
  4204. "psr-4": {
  4205. "Psr\\SimpleCache\\": "src/"
  4206. }
  4207. },
  4208. "notification-url": "https://packagist.org/downloads/",
  4209. "license": [
  4210. "MIT"
  4211. ],
  4212. "authors": [
  4213. {
  4214. "name": "PHP-FIG",
  4215. "homepage": "https://www.php-fig.org/"
  4216. }
  4217. ],
  4218. "description": "Common interfaces for simple caching",
  4219. "keywords": [
  4220. "cache",
  4221. "caching",
  4222. "psr",
  4223. "psr-16",
  4224. "simple-cache"
  4225. ],
  4226. "support": {
  4227. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4228. },
  4229. "time": "2021-10-29T13:26:27+00:00"
  4230. },
  4231. {
  4232. "name": "psy/psysh",
  4233. "version": "v0.11.17",
  4234. "source": {
  4235. "type": "git",
  4236. "url": "https://github.com/bobthecow/psysh.git",
  4237. "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a"
  4238. },
  4239. "dist": {
  4240. "type": "zip",
  4241. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3dc5d4018dabd80bceb8fe1e3191ba8460569f0a",
  4242. "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a",
  4243. "shasum": "",
  4244. "mirrors": [
  4245. {
  4246. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4247. "preferred": true
  4248. }
  4249. ]
  4250. },
  4251. "require": {
  4252. "ext-json": "*",
  4253. "ext-tokenizer": "*",
  4254. "nikic/php-parser": "^4.0 || ^3.1",
  4255. "php": "^8.0 || ^7.0.8",
  4256. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4257. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4258. },
  4259. "conflict": {
  4260. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4261. },
  4262. "require-dev": {
  4263. "bamarni/composer-bin-plugin": "^1.2"
  4264. },
  4265. "suggest": {
  4266. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4267. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4268. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4269. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4270. },
  4271. "bin": [
  4272. "bin/psysh"
  4273. ],
  4274. "type": "library",
  4275. "extra": {
  4276. "branch-alias": {
  4277. "dev-main": "0.11.x-dev"
  4278. }
  4279. },
  4280. "autoload": {
  4281. "files": [
  4282. "src/functions.php"
  4283. ],
  4284. "psr-4": {
  4285. "Psy\\": "src/"
  4286. }
  4287. },
  4288. "notification-url": "https://packagist.org/downloads/",
  4289. "license": [
  4290. "MIT"
  4291. ],
  4292. "authors": [
  4293. {
  4294. "name": "Justin Hileman",
  4295. "email": "justin@justinhileman.info",
  4296. "homepage": "http://justinhileman.com"
  4297. }
  4298. ],
  4299. "description": "An interactive shell for modern PHP.",
  4300. "homepage": "http://psysh.org",
  4301. "keywords": [
  4302. "REPL",
  4303. "console",
  4304. "interactive",
  4305. "shell"
  4306. ],
  4307. "support": {
  4308. "issues": "https://github.com/bobthecow/psysh/issues",
  4309. "source": "https://github.com/bobthecow/psysh/tree/v0.11.17"
  4310. },
  4311. "time": "2023-05-05T20:02:42+00:00"
  4312. },
  4313. {
  4314. "name": "ralouphie/getallheaders",
  4315. "version": "3.0.3",
  4316. "source": {
  4317. "type": "git",
  4318. "url": "https://github.com/ralouphie/getallheaders.git",
  4319. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4320. },
  4321. "dist": {
  4322. "type": "zip",
  4323. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4324. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4325. "shasum": "",
  4326. "mirrors": [
  4327. {
  4328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4329. "preferred": true
  4330. }
  4331. ]
  4332. },
  4333. "require": {
  4334. "php": ">=5.6"
  4335. },
  4336. "require-dev": {
  4337. "php-coveralls/php-coveralls": "^2.1",
  4338. "phpunit/phpunit": "^5 || ^6.5"
  4339. },
  4340. "type": "library",
  4341. "autoload": {
  4342. "files": [
  4343. "src/getallheaders.php"
  4344. ]
  4345. },
  4346. "notification-url": "https://packagist.org/downloads/",
  4347. "license": [
  4348. "MIT"
  4349. ],
  4350. "authors": [
  4351. {
  4352. "name": "Ralph Khattar",
  4353. "email": "ralph.khattar@gmail.com"
  4354. }
  4355. ],
  4356. "description": "A polyfill for getallheaders.",
  4357. "support": {
  4358. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4359. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4360. },
  4361. "time": "2019-03-08T08:55:37+00:00"
  4362. },
  4363. {
  4364. "name": "ramsey/collection",
  4365. "version": "1.3.0",
  4366. "source": {
  4367. "type": "git",
  4368. "url": "https://github.com/ramsey/collection.git",
  4369. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4370. },
  4371. "dist": {
  4372. "type": "zip",
  4373. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4374. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4375. "shasum": "",
  4376. "mirrors": [
  4377. {
  4378. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4379. "preferred": true
  4380. }
  4381. ]
  4382. },
  4383. "require": {
  4384. "php": "^7.4 || ^8.0",
  4385. "symfony/polyfill-php81": "^1.23"
  4386. },
  4387. "require-dev": {
  4388. "captainhook/plugin-composer": "^5.3",
  4389. "ergebnis/composer-normalize": "^2.28.3",
  4390. "fakerphp/faker": "^1.21",
  4391. "hamcrest/hamcrest-php": "^2.0",
  4392. "jangregor/phpstan-prophecy": "^1.0",
  4393. "mockery/mockery": "^1.5",
  4394. "php-parallel-lint/php-console-highlighter": "^1.0",
  4395. "php-parallel-lint/php-parallel-lint": "^1.3",
  4396. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4397. "phpspec/prophecy-phpunit": "^2.0",
  4398. "phpstan/extension-installer": "^1.2",
  4399. "phpstan/phpstan": "^1.9",
  4400. "phpstan/phpstan-mockery": "^1.1",
  4401. "phpstan/phpstan-phpunit": "^1.3",
  4402. "phpunit/phpunit": "^9.5",
  4403. "psalm/plugin-mockery": "^1.1",
  4404. "psalm/plugin-phpunit": "^0.18.4",
  4405. "ramsey/coding-standard": "^2.0.3",
  4406. "ramsey/conventional-commits": "^1.3",
  4407. "vimeo/psalm": "^5.4"
  4408. },
  4409. "type": "library",
  4410. "extra": {
  4411. "captainhook": {
  4412. "force-install": true
  4413. },
  4414. "ramsey/conventional-commits": {
  4415. "configFile": "conventional-commits.json"
  4416. }
  4417. },
  4418. "autoload": {
  4419. "psr-4": {
  4420. "Ramsey\\Collection\\": "src/"
  4421. }
  4422. },
  4423. "notification-url": "https://packagist.org/downloads/",
  4424. "license": [
  4425. "MIT"
  4426. ],
  4427. "authors": [
  4428. {
  4429. "name": "Ben Ramsey",
  4430. "email": "ben@benramsey.com",
  4431. "homepage": "https://benramsey.com"
  4432. }
  4433. ],
  4434. "description": "A PHP library for representing and manipulating collections.",
  4435. "keywords": [
  4436. "array",
  4437. "collection",
  4438. "hash",
  4439. "map",
  4440. "queue",
  4441. "set"
  4442. ],
  4443. "support": {
  4444. "issues": "https://github.com/ramsey/collection/issues",
  4445. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4446. },
  4447. "funding": [
  4448. {
  4449. "url": "https://github.com/ramsey",
  4450. "type": "github"
  4451. },
  4452. {
  4453. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4454. "type": "tidelift"
  4455. }
  4456. ],
  4457. "time": "2022-12-27T19:12:24+00:00"
  4458. },
  4459. {
  4460. "name": "ramsey/uuid",
  4461. "version": "4.7.4",
  4462. "source": {
  4463. "type": "git",
  4464. "url": "https://github.com/ramsey/uuid.git",
  4465. "reference": "60a4c63ab724854332900504274f6150ff26d286"
  4466. },
  4467. "dist": {
  4468. "type": "zip",
  4469. "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
  4470. "reference": "60a4c63ab724854332900504274f6150ff26d286",
  4471. "shasum": "",
  4472. "mirrors": [
  4473. {
  4474. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4475. "preferred": true
  4476. }
  4477. ]
  4478. },
  4479. "require": {
  4480. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4481. "ext-json": "*",
  4482. "php": "^8.0",
  4483. "ramsey/collection": "^1.2 || ^2.0"
  4484. },
  4485. "replace": {
  4486. "rhumsaa/uuid": "self.version"
  4487. },
  4488. "require-dev": {
  4489. "captainhook/captainhook": "^5.10",
  4490. "captainhook/plugin-composer": "^5.3",
  4491. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4492. "doctrine/annotations": "^1.8",
  4493. "ergebnis/composer-normalize": "^2.15",
  4494. "mockery/mockery": "^1.3",
  4495. "paragonie/random-lib": "^2",
  4496. "php-mock/php-mock": "^2.2",
  4497. "php-mock/php-mock-mockery": "^1.3",
  4498. "php-parallel-lint/php-parallel-lint": "^1.1",
  4499. "phpbench/phpbench": "^1.0",
  4500. "phpstan/extension-installer": "^1.1",
  4501. "phpstan/phpstan": "^1.8",
  4502. "phpstan/phpstan-mockery": "^1.1",
  4503. "phpstan/phpstan-phpunit": "^1.1",
  4504. "phpunit/phpunit": "^8.5 || ^9",
  4505. "ramsey/composer-repl": "^1.4",
  4506. "slevomat/coding-standard": "^8.4",
  4507. "squizlabs/php_codesniffer": "^3.5",
  4508. "vimeo/psalm": "^4.9"
  4509. },
  4510. "suggest": {
  4511. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4512. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4513. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4514. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4515. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4516. },
  4517. "type": "library",
  4518. "extra": {
  4519. "captainhook": {
  4520. "force-install": true
  4521. }
  4522. },
  4523. "autoload": {
  4524. "files": [
  4525. "src/functions.php"
  4526. ],
  4527. "psr-4": {
  4528. "Ramsey\\Uuid\\": "src/"
  4529. }
  4530. },
  4531. "notification-url": "https://packagist.org/downloads/",
  4532. "license": [
  4533. "MIT"
  4534. ],
  4535. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4536. "keywords": [
  4537. "guid",
  4538. "identifier",
  4539. "uuid"
  4540. ],
  4541. "support": {
  4542. "issues": "https://github.com/ramsey/uuid/issues",
  4543. "source": "https://github.com/ramsey/uuid/tree/4.7.4"
  4544. },
  4545. "funding": [
  4546. {
  4547. "url": "https://github.com/ramsey",
  4548. "type": "github"
  4549. },
  4550. {
  4551. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4552. "type": "tidelift"
  4553. }
  4554. ],
  4555. "time": "2023-04-15T23:01:58+00:00"
  4556. },
  4557. {
  4558. "name": "symfony/cache",
  4559. "version": "v6.0.19",
  4560. "source": {
  4561. "type": "git",
  4562. "url": "https://github.com/symfony/cache.git",
  4563. "reference": "81ca309f056e836480928b20280ec52ce8369bb3"
  4564. },
  4565. "dist": {
  4566. "type": "zip",
  4567. "url": "https://api.github.com/repos/symfony/cache/zipball/81ca309f056e836480928b20280ec52ce8369bb3",
  4568. "reference": "81ca309f056e836480928b20280ec52ce8369bb3",
  4569. "shasum": "",
  4570. "mirrors": [
  4571. {
  4572. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4573. "preferred": true
  4574. }
  4575. ]
  4576. },
  4577. "require": {
  4578. "php": ">=8.0.2",
  4579. "psr/cache": "^2.0|^3.0",
  4580. "psr/log": "^1.1|^2|^3",
  4581. "symfony/cache-contracts": "^1.1.7|^2|^3",
  4582. "symfony/service-contracts": "^1.1|^2|^3",
  4583. "symfony/var-exporter": "^5.4|^6.0"
  4584. },
  4585. "conflict": {
  4586. "doctrine/dbal": "<2.13.1",
  4587. "symfony/dependency-injection": "<5.4",
  4588. "symfony/http-kernel": "<5.4",
  4589. "symfony/var-dumper": "<5.4"
  4590. },
  4591. "provide": {
  4592. "psr/cache-implementation": "2.0|3.0",
  4593. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  4594. "symfony/cache-implementation": "1.1|2.0|3.0"
  4595. },
  4596. "require-dev": {
  4597. "cache/integration-tests": "dev-master",
  4598. "doctrine/dbal": "^2.13.1|^3.0",
  4599. "predis/predis": "^1.1",
  4600. "psr/simple-cache": "^1.0|^2.0|^3.0",
  4601. "symfony/config": "^5.4|^6.0",
  4602. "symfony/dependency-injection": "^5.4|^6.0",
  4603. "symfony/filesystem": "^5.4|^6.0",
  4604. "symfony/http-kernel": "^5.4|^6.0",
  4605. "symfony/messenger": "^5.4|^6.0",
  4606. "symfony/var-dumper": "^5.4|^6.0"
  4607. },
  4608. "type": "library",
  4609. "autoload": {
  4610. "psr-4": {
  4611. "Symfony\\Component\\Cache\\": ""
  4612. },
  4613. "exclude-from-classmap": [
  4614. "/Tests/"
  4615. ]
  4616. },
  4617. "notification-url": "https://packagist.org/downloads/",
  4618. "license": [
  4619. "MIT"
  4620. ],
  4621. "authors": [
  4622. {
  4623. "name": "Nicolas Grekas",
  4624. "email": "p@tchwork.com"
  4625. },
  4626. {
  4627. "name": "Symfony Community",
  4628. "homepage": "https://symfony.com/contributors"
  4629. }
  4630. ],
  4631. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  4632. "homepage": "https://symfony.com",
  4633. "keywords": [
  4634. "caching",
  4635. "psr6"
  4636. ],
  4637. "support": {
  4638. "source": "https://github.com/symfony/cache/tree/v6.0.19"
  4639. },
  4640. "funding": [
  4641. {
  4642. "url": "https://symfony.com/sponsor",
  4643. "type": "custom"
  4644. },
  4645. {
  4646. "url": "https://github.com/fabpot",
  4647. "type": "github"
  4648. },
  4649. {
  4650. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4651. "type": "tidelift"
  4652. }
  4653. ],
  4654. "time": "2023-01-20T17:44:14+00:00"
  4655. },
  4656. {
  4657. "name": "symfony/cache-contracts",
  4658. "version": "v3.0.2",
  4659. "source": {
  4660. "type": "git",
  4661. "url": "https://github.com/symfony/cache-contracts.git",
  4662. "reference": "1c0a181c9ee221afe4fa55b2d13fc63c5ae14348"
  4663. },
  4664. "dist": {
  4665. "type": "zip",
  4666. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1c0a181c9ee221afe4fa55b2d13fc63c5ae14348",
  4667. "reference": "1c0a181c9ee221afe4fa55b2d13fc63c5ae14348",
  4668. "shasum": "",
  4669. "mirrors": [
  4670. {
  4671. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4672. "preferred": true
  4673. }
  4674. ]
  4675. },
  4676. "require": {
  4677. "php": ">=8.0.2",
  4678. "psr/cache": "^3.0"
  4679. },
  4680. "suggest": {
  4681. "symfony/cache-implementation": ""
  4682. },
  4683. "type": "library",
  4684. "extra": {
  4685. "branch-alias": {
  4686. "dev-main": "3.0-dev"
  4687. },
  4688. "thanks": {
  4689. "name": "symfony/contracts",
  4690. "url": "https://github.com/symfony/contracts"
  4691. }
  4692. },
  4693. "autoload": {
  4694. "psr-4": {
  4695. "Symfony\\Contracts\\Cache\\": ""
  4696. }
  4697. },
  4698. "notification-url": "https://packagist.org/downloads/",
  4699. "license": [
  4700. "MIT"
  4701. ],
  4702. "authors": [
  4703. {
  4704. "name": "Nicolas Grekas",
  4705. "email": "p@tchwork.com"
  4706. },
  4707. {
  4708. "name": "Symfony Community",
  4709. "homepage": "https://symfony.com/contributors"
  4710. }
  4711. ],
  4712. "description": "Generic abstractions related to caching",
  4713. "homepage": "https://symfony.com",
  4714. "keywords": [
  4715. "abstractions",
  4716. "contracts",
  4717. "decoupling",
  4718. "interfaces",
  4719. "interoperability",
  4720. "standards"
  4721. ],
  4722. "support": {
  4723. "source": "https://github.com/symfony/cache-contracts/tree/v3.0.2"
  4724. },
  4725. "funding": [
  4726. {
  4727. "url": "https://symfony.com/sponsor",
  4728. "type": "custom"
  4729. },
  4730. {
  4731. "url": "https://github.com/fabpot",
  4732. "type": "github"
  4733. },
  4734. {
  4735. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4736. "type": "tidelift"
  4737. }
  4738. ],
  4739. "time": "2022-01-02T09:55:41+00:00"
  4740. },
  4741. {
  4742. "name": "symfony/console",
  4743. "version": "v6.0.19",
  4744. "source": {
  4745. "type": "git",
  4746. "url": "https://github.com/symfony/console.git",
  4747. "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed"
  4748. },
  4749. "dist": {
  4750. "type": "zip",
  4751. "url": "https://api.github.com/repos/symfony/console/zipball/c3ebc83d031b71c39da318ca8b7a07ecc67507ed",
  4752. "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed",
  4753. "shasum": "",
  4754. "mirrors": [
  4755. {
  4756. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4757. "preferred": true
  4758. }
  4759. ]
  4760. },
  4761. "require": {
  4762. "php": ">=8.0.2",
  4763. "symfony/polyfill-mbstring": "~1.0",
  4764. "symfony/service-contracts": "^1.1|^2|^3",
  4765. "symfony/string": "^5.4|^6.0"
  4766. },
  4767. "conflict": {
  4768. "symfony/dependency-injection": "<5.4",
  4769. "symfony/dotenv": "<5.4",
  4770. "symfony/event-dispatcher": "<5.4",
  4771. "symfony/lock": "<5.4",
  4772. "symfony/process": "<5.4"
  4773. },
  4774. "provide": {
  4775. "psr/log-implementation": "1.0|2.0|3.0"
  4776. },
  4777. "require-dev": {
  4778. "psr/log": "^1|^2|^3",
  4779. "symfony/config": "^5.4|^6.0",
  4780. "symfony/dependency-injection": "^5.4|^6.0",
  4781. "symfony/event-dispatcher": "^5.4|^6.0",
  4782. "symfony/lock": "^5.4|^6.0",
  4783. "symfony/process": "^5.4|^6.0",
  4784. "symfony/var-dumper": "^5.4|^6.0"
  4785. },
  4786. "suggest": {
  4787. "psr/log": "For using the console logger",
  4788. "symfony/event-dispatcher": "",
  4789. "symfony/lock": "",
  4790. "symfony/process": ""
  4791. },
  4792. "type": "library",
  4793. "autoload": {
  4794. "psr-4": {
  4795. "Symfony\\Component\\Console\\": ""
  4796. },
  4797. "exclude-from-classmap": [
  4798. "/Tests/"
  4799. ]
  4800. },
  4801. "notification-url": "https://packagist.org/downloads/",
  4802. "license": [
  4803. "MIT"
  4804. ],
  4805. "authors": [
  4806. {
  4807. "name": "Fabien Potencier",
  4808. "email": "fabien@symfony.com"
  4809. },
  4810. {
  4811. "name": "Symfony Community",
  4812. "homepage": "https://symfony.com/contributors"
  4813. }
  4814. ],
  4815. "description": "Eases the creation of beautiful and testable command line interfaces",
  4816. "homepage": "https://symfony.com",
  4817. "keywords": [
  4818. "cli",
  4819. "command line",
  4820. "console",
  4821. "terminal"
  4822. ],
  4823. "support": {
  4824. "source": "https://github.com/symfony/console/tree/v6.0.19"
  4825. },
  4826. "funding": [
  4827. {
  4828. "url": "https://symfony.com/sponsor",
  4829. "type": "custom"
  4830. },
  4831. {
  4832. "url": "https://github.com/fabpot",
  4833. "type": "github"
  4834. },
  4835. {
  4836. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4837. "type": "tidelift"
  4838. }
  4839. ],
  4840. "time": "2023-01-01T08:36:10+00:00"
  4841. },
  4842. {
  4843. "name": "symfony/css-selector",
  4844. "version": "v6.0.19",
  4845. "source": {
  4846. "type": "git",
  4847. "url": "https://github.com/symfony/css-selector.git",
  4848. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  4849. },
  4850. "dist": {
  4851. "type": "zip",
  4852. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  4853. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  4854. "shasum": "",
  4855. "mirrors": [
  4856. {
  4857. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4858. "preferred": true
  4859. }
  4860. ]
  4861. },
  4862. "require": {
  4863. "php": ">=8.0.2"
  4864. },
  4865. "type": "library",
  4866. "autoload": {
  4867. "psr-4": {
  4868. "Symfony\\Component\\CssSelector\\": ""
  4869. },
  4870. "exclude-from-classmap": [
  4871. "/Tests/"
  4872. ]
  4873. },
  4874. "notification-url": "https://packagist.org/downloads/",
  4875. "license": [
  4876. "MIT"
  4877. ],
  4878. "authors": [
  4879. {
  4880. "name": "Fabien Potencier",
  4881. "email": "fabien@symfony.com"
  4882. },
  4883. {
  4884. "name": "Jean-François Simon",
  4885. "email": "jeanfrancois.simon@sensiolabs.com"
  4886. },
  4887. {
  4888. "name": "Symfony Community",
  4889. "homepage": "https://symfony.com/contributors"
  4890. }
  4891. ],
  4892. "description": "Converts CSS selectors to XPath expressions",
  4893. "homepage": "https://symfony.com",
  4894. "support": {
  4895. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  4896. },
  4897. "funding": [
  4898. {
  4899. "url": "https://symfony.com/sponsor",
  4900. "type": "custom"
  4901. },
  4902. {
  4903. "url": "https://github.com/fabpot",
  4904. "type": "github"
  4905. },
  4906. {
  4907. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4908. "type": "tidelift"
  4909. }
  4910. ],
  4911. "time": "2023-01-01T08:36:10+00:00"
  4912. },
  4913. {
  4914. "name": "symfony/deprecation-contracts",
  4915. "version": "v3.0.2",
  4916. "source": {
  4917. "type": "git",
  4918. "url": "https://github.com/symfony/deprecation-contracts.git",
  4919. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  4920. },
  4921. "dist": {
  4922. "type": "zip",
  4923. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  4924. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  4925. "shasum": "",
  4926. "mirrors": [
  4927. {
  4928. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4929. "preferred": true
  4930. }
  4931. ]
  4932. },
  4933. "require": {
  4934. "php": ">=8.0.2"
  4935. },
  4936. "type": "library",
  4937. "extra": {
  4938. "branch-alias": {
  4939. "dev-main": "3.0-dev"
  4940. },
  4941. "thanks": {
  4942. "name": "symfony/contracts",
  4943. "url": "https://github.com/symfony/contracts"
  4944. }
  4945. },
  4946. "autoload": {
  4947. "files": [
  4948. "function.php"
  4949. ]
  4950. },
  4951. "notification-url": "https://packagist.org/downloads/",
  4952. "license": [
  4953. "MIT"
  4954. ],
  4955. "authors": [
  4956. {
  4957. "name": "Nicolas Grekas",
  4958. "email": "p@tchwork.com"
  4959. },
  4960. {
  4961. "name": "Symfony Community",
  4962. "homepage": "https://symfony.com/contributors"
  4963. }
  4964. ],
  4965. "description": "A generic function and convention to trigger deprecation notices",
  4966. "homepage": "https://symfony.com",
  4967. "support": {
  4968. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  4969. },
  4970. "funding": [
  4971. {
  4972. "url": "https://symfony.com/sponsor",
  4973. "type": "custom"
  4974. },
  4975. {
  4976. "url": "https://github.com/fabpot",
  4977. "type": "github"
  4978. },
  4979. {
  4980. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4981. "type": "tidelift"
  4982. }
  4983. ],
  4984. "time": "2022-01-02T09:55:41+00:00"
  4985. },
  4986. {
  4987. "name": "symfony/error-handler",
  4988. "version": "v6.0.19",
  4989. "source": {
  4990. "type": "git",
  4991. "url": "https://github.com/symfony/error-handler.git",
  4992. "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67"
  4993. },
  4994. "dist": {
  4995. "type": "zip",
  4996. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c7df52182f43a68522756ac31a532dd5b1e6db67",
  4997. "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67",
  4998. "shasum": "",
  4999. "mirrors": [
  5000. {
  5001. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5002. "preferred": true
  5003. }
  5004. ]
  5005. },
  5006. "require": {
  5007. "php": ">=8.0.2",
  5008. "psr/log": "^1|^2|^3",
  5009. "symfony/var-dumper": "^5.4|^6.0"
  5010. },
  5011. "require-dev": {
  5012. "symfony/deprecation-contracts": "^2.1|^3",
  5013. "symfony/http-kernel": "^5.4|^6.0",
  5014. "symfony/serializer": "^5.4|^6.0"
  5015. },
  5016. "bin": [
  5017. "Resources/bin/patch-type-declarations"
  5018. ],
  5019. "type": "library",
  5020. "autoload": {
  5021. "psr-4": {
  5022. "Symfony\\Component\\ErrorHandler\\": ""
  5023. },
  5024. "exclude-from-classmap": [
  5025. "/Tests/"
  5026. ]
  5027. },
  5028. "notification-url": "https://packagist.org/downloads/",
  5029. "license": [
  5030. "MIT"
  5031. ],
  5032. "authors": [
  5033. {
  5034. "name": "Fabien Potencier",
  5035. "email": "fabien@symfony.com"
  5036. },
  5037. {
  5038. "name": "Symfony Community",
  5039. "homepage": "https://symfony.com/contributors"
  5040. }
  5041. ],
  5042. "description": "Provides tools to manage errors and ease debugging PHP code",
  5043. "homepage": "https://symfony.com",
  5044. "support": {
  5045. "source": "https://github.com/symfony/error-handler/tree/v6.0.19"
  5046. },
  5047. "funding": [
  5048. {
  5049. "url": "https://symfony.com/sponsor",
  5050. "type": "custom"
  5051. },
  5052. {
  5053. "url": "https://github.com/fabpot",
  5054. "type": "github"
  5055. },
  5056. {
  5057. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5058. "type": "tidelift"
  5059. }
  5060. ],
  5061. "time": "2023-01-01T08:36:10+00:00"
  5062. },
  5063. {
  5064. "name": "symfony/event-dispatcher",
  5065. "version": "v6.0.19",
  5066. "source": {
  5067. "type": "git",
  5068. "url": "https://github.com/symfony/event-dispatcher.git",
  5069. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  5070. },
  5071. "dist": {
  5072. "type": "zip",
  5073. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5074. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5075. "shasum": "",
  5076. "mirrors": [
  5077. {
  5078. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5079. "preferred": true
  5080. }
  5081. ]
  5082. },
  5083. "require": {
  5084. "php": ">=8.0.2",
  5085. "symfony/event-dispatcher-contracts": "^2|^3"
  5086. },
  5087. "conflict": {
  5088. "symfony/dependency-injection": "<5.4"
  5089. },
  5090. "provide": {
  5091. "psr/event-dispatcher-implementation": "1.0",
  5092. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5093. },
  5094. "require-dev": {
  5095. "psr/log": "^1|^2|^3",
  5096. "symfony/config": "^5.4|^6.0",
  5097. "symfony/dependency-injection": "^5.4|^6.0",
  5098. "symfony/error-handler": "^5.4|^6.0",
  5099. "symfony/expression-language": "^5.4|^6.0",
  5100. "symfony/http-foundation": "^5.4|^6.0",
  5101. "symfony/service-contracts": "^1.1|^2|^3",
  5102. "symfony/stopwatch": "^5.4|^6.0"
  5103. },
  5104. "suggest": {
  5105. "symfony/dependency-injection": "",
  5106. "symfony/http-kernel": ""
  5107. },
  5108. "type": "library",
  5109. "autoload": {
  5110. "psr-4": {
  5111. "Symfony\\Component\\EventDispatcher\\": ""
  5112. },
  5113. "exclude-from-classmap": [
  5114. "/Tests/"
  5115. ]
  5116. },
  5117. "notification-url": "https://packagist.org/downloads/",
  5118. "license": [
  5119. "MIT"
  5120. ],
  5121. "authors": [
  5122. {
  5123. "name": "Fabien Potencier",
  5124. "email": "fabien@symfony.com"
  5125. },
  5126. {
  5127. "name": "Symfony Community",
  5128. "homepage": "https://symfony.com/contributors"
  5129. }
  5130. ],
  5131. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5132. "homepage": "https://symfony.com",
  5133. "support": {
  5134. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  5135. },
  5136. "funding": [
  5137. {
  5138. "url": "https://symfony.com/sponsor",
  5139. "type": "custom"
  5140. },
  5141. {
  5142. "url": "https://github.com/fabpot",
  5143. "type": "github"
  5144. },
  5145. {
  5146. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5147. "type": "tidelift"
  5148. }
  5149. ],
  5150. "time": "2023-01-01T08:36:10+00:00"
  5151. },
  5152. {
  5153. "name": "symfony/event-dispatcher-contracts",
  5154. "version": "v3.0.2",
  5155. "source": {
  5156. "type": "git",
  5157. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5158. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  5159. },
  5160. "dist": {
  5161. "type": "zip",
  5162. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  5163. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  5164. "shasum": "",
  5165. "mirrors": [
  5166. {
  5167. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5168. "preferred": true
  5169. }
  5170. ]
  5171. },
  5172. "require": {
  5173. "php": ">=8.0.2",
  5174. "psr/event-dispatcher": "^1"
  5175. },
  5176. "suggest": {
  5177. "symfony/event-dispatcher-implementation": ""
  5178. },
  5179. "type": "library",
  5180. "extra": {
  5181. "branch-alias": {
  5182. "dev-main": "3.0-dev"
  5183. },
  5184. "thanks": {
  5185. "name": "symfony/contracts",
  5186. "url": "https://github.com/symfony/contracts"
  5187. }
  5188. },
  5189. "autoload": {
  5190. "psr-4": {
  5191. "Symfony\\Contracts\\EventDispatcher\\": ""
  5192. }
  5193. },
  5194. "notification-url": "https://packagist.org/downloads/",
  5195. "license": [
  5196. "MIT"
  5197. ],
  5198. "authors": [
  5199. {
  5200. "name": "Nicolas Grekas",
  5201. "email": "p@tchwork.com"
  5202. },
  5203. {
  5204. "name": "Symfony Community",
  5205. "homepage": "https://symfony.com/contributors"
  5206. }
  5207. ],
  5208. "description": "Generic abstractions related to dispatching event",
  5209. "homepage": "https://symfony.com",
  5210. "keywords": [
  5211. "abstractions",
  5212. "contracts",
  5213. "decoupling",
  5214. "interfaces",
  5215. "interoperability",
  5216. "standards"
  5217. ],
  5218. "support": {
  5219. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  5220. },
  5221. "funding": [
  5222. {
  5223. "url": "https://symfony.com/sponsor",
  5224. "type": "custom"
  5225. },
  5226. {
  5227. "url": "https://github.com/fabpot",
  5228. "type": "github"
  5229. },
  5230. {
  5231. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5232. "type": "tidelift"
  5233. }
  5234. ],
  5235. "time": "2022-01-02T09:55:41+00:00"
  5236. },
  5237. {
  5238. "name": "symfony/finder",
  5239. "version": "v6.0.19",
  5240. "source": {
  5241. "type": "git",
  5242. "url": "https://github.com/symfony/finder.git",
  5243. "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11"
  5244. },
  5245. "dist": {
  5246. "type": "zip",
  5247. "url": "https://api.github.com/repos/symfony/finder/zipball/5cc9cac6586fc0c28cd173780ca696e419fefa11",
  5248. "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11",
  5249. "shasum": "",
  5250. "mirrors": [
  5251. {
  5252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5253. "preferred": true
  5254. }
  5255. ]
  5256. },
  5257. "require": {
  5258. "php": ">=8.0.2"
  5259. },
  5260. "type": "library",
  5261. "autoload": {
  5262. "psr-4": {
  5263. "Symfony\\Component\\Finder\\": ""
  5264. },
  5265. "exclude-from-classmap": [
  5266. "/Tests/"
  5267. ]
  5268. },
  5269. "notification-url": "https://packagist.org/downloads/",
  5270. "license": [
  5271. "MIT"
  5272. ],
  5273. "authors": [
  5274. {
  5275. "name": "Fabien Potencier",
  5276. "email": "fabien@symfony.com"
  5277. },
  5278. {
  5279. "name": "Symfony Community",
  5280. "homepage": "https://symfony.com/contributors"
  5281. }
  5282. ],
  5283. "description": "Finds files and directories via an intuitive fluent interface",
  5284. "homepage": "https://symfony.com",
  5285. "support": {
  5286. "source": "https://github.com/symfony/finder/tree/v6.0.19"
  5287. },
  5288. "funding": [
  5289. {
  5290. "url": "https://symfony.com/sponsor",
  5291. "type": "custom"
  5292. },
  5293. {
  5294. "url": "https://github.com/fabpot",
  5295. "type": "github"
  5296. },
  5297. {
  5298. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5299. "type": "tidelift"
  5300. }
  5301. ],
  5302. "time": "2023-01-20T17:44:14+00:00"
  5303. },
  5304. {
  5305. "name": "symfony/http-client",
  5306. "version": "v6.0.20",
  5307. "source": {
  5308. "type": "git",
  5309. "url": "https://github.com/symfony/http-client.git",
  5310. "reference": "541c04560da1875f62c963c3aab6ea12a7314e11"
  5311. },
  5312. "dist": {
  5313. "type": "zip",
  5314. "url": "https://api.github.com/repos/symfony/http-client/zipball/541c04560da1875f62c963c3aab6ea12a7314e11",
  5315. "reference": "541c04560da1875f62c963c3aab6ea12a7314e11",
  5316. "shasum": "",
  5317. "mirrors": [
  5318. {
  5319. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5320. "preferred": true
  5321. }
  5322. ]
  5323. },
  5324. "require": {
  5325. "php": ">=8.0.2",
  5326. "psr/log": "^1|^2|^3",
  5327. "symfony/http-client-contracts": "^3",
  5328. "symfony/service-contracts": "^1.0|^2|^3"
  5329. },
  5330. "provide": {
  5331. "php-http/async-client-implementation": "*",
  5332. "php-http/client-implementation": "*",
  5333. "psr/http-client-implementation": "1.0",
  5334. "symfony/http-client-implementation": "3.0"
  5335. },
  5336. "require-dev": {
  5337. "amphp/amp": "^2.5",
  5338. "amphp/http-client": "^4.2.1",
  5339. "amphp/http-tunnel": "^1.0",
  5340. "amphp/socket": "^1.1",
  5341. "guzzlehttp/promises": "^1.4",
  5342. "nyholm/psr7": "^1.0",
  5343. "php-http/httplug": "^1.0|^2.0",
  5344. "psr/http-client": "^1.0",
  5345. "symfony/dependency-injection": "^5.4|^6.0",
  5346. "symfony/http-kernel": "^5.4|^6.0",
  5347. "symfony/process": "^5.4|^6.0",
  5348. "symfony/stopwatch": "^5.4|^6.0"
  5349. },
  5350. "type": "library",
  5351. "autoload": {
  5352. "psr-4": {
  5353. "Symfony\\Component\\HttpClient\\": ""
  5354. },
  5355. "exclude-from-classmap": [
  5356. "/Tests/"
  5357. ]
  5358. },
  5359. "notification-url": "https://packagist.org/downloads/",
  5360. "license": [
  5361. "MIT"
  5362. ],
  5363. "authors": [
  5364. {
  5365. "name": "Nicolas Grekas",
  5366. "email": "p@tchwork.com"
  5367. },
  5368. {
  5369. "name": "Symfony Community",
  5370. "homepage": "https://symfony.com/contributors"
  5371. }
  5372. ],
  5373. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  5374. "homepage": "https://symfony.com",
  5375. "support": {
  5376. "source": "https://github.com/symfony/http-client/tree/v6.0.20"
  5377. },
  5378. "funding": [
  5379. {
  5380. "url": "https://symfony.com/sponsor",
  5381. "type": "custom"
  5382. },
  5383. {
  5384. "url": "https://github.com/fabpot",
  5385. "type": "github"
  5386. },
  5387. {
  5388. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5389. "type": "tidelift"
  5390. }
  5391. ],
  5392. "time": "2023-01-30T15:41:07+00:00"
  5393. },
  5394. {
  5395. "name": "symfony/http-client-contracts",
  5396. "version": "v3.0.2",
  5397. "source": {
  5398. "type": "git",
  5399. "url": "https://github.com/symfony/http-client-contracts.git",
  5400. "reference": "4184b9b63af1edaf35b6a7974c6f1f9f33294129"
  5401. },
  5402. "dist": {
  5403. "type": "zip",
  5404. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/4184b9b63af1edaf35b6a7974c6f1f9f33294129",
  5405. "reference": "4184b9b63af1edaf35b6a7974c6f1f9f33294129",
  5406. "shasum": "",
  5407. "mirrors": [
  5408. {
  5409. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5410. "preferred": true
  5411. }
  5412. ]
  5413. },
  5414. "require": {
  5415. "php": ">=8.0.2"
  5416. },
  5417. "suggest": {
  5418. "symfony/http-client-implementation": ""
  5419. },
  5420. "type": "library",
  5421. "extra": {
  5422. "branch-alias": {
  5423. "dev-main": "3.0-dev"
  5424. },
  5425. "thanks": {
  5426. "name": "symfony/contracts",
  5427. "url": "https://github.com/symfony/contracts"
  5428. }
  5429. },
  5430. "autoload": {
  5431. "psr-4": {
  5432. "Symfony\\Contracts\\HttpClient\\": ""
  5433. }
  5434. },
  5435. "notification-url": "https://packagist.org/downloads/",
  5436. "license": [
  5437. "MIT"
  5438. ],
  5439. "authors": [
  5440. {
  5441. "name": "Nicolas Grekas",
  5442. "email": "p@tchwork.com"
  5443. },
  5444. {
  5445. "name": "Symfony Community",
  5446. "homepage": "https://symfony.com/contributors"
  5447. }
  5448. ],
  5449. "description": "Generic abstractions related to HTTP clients",
  5450. "homepage": "https://symfony.com",
  5451. "keywords": [
  5452. "abstractions",
  5453. "contracts",
  5454. "decoupling",
  5455. "interfaces",
  5456. "interoperability",
  5457. "standards"
  5458. ],
  5459. "support": {
  5460. "source": "https://github.com/symfony/http-client-contracts/tree/v3.0.2"
  5461. },
  5462. "funding": [
  5463. {
  5464. "url": "https://symfony.com/sponsor",
  5465. "type": "custom"
  5466. },
  5467. {
  5468. "url": "https://github.com/fabpot",
  5469. "type": "github"
  5470. },
  5471. {
  5472. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5473. "type": "tidelift"
  5474. }
  5475. ],
  5476. "time": "2022-04-12T16:11:42+00:00"
  5477. },
  5478. {
  5479. "name": "symfony/http-foundation",
  5480. "version": "v6.0.20",
  5481. "source": {
  5482. "type": "git",
  5483. "url": "https://github.com/symfony/http-foundation.git",
  5484. "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6"
  5485. },
  5486. "dist": {
  5487. "type": "zip",
  5488. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e16b2676a4b3b1fa12378a20b29c364feda2a8d6",
  5489. "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6",
  5490. "shasum": "",
  5491. "mirrors": [
  5492. {
  5493. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5494. "preferred": true
  5495. }
  5496. ]
  5497. },
  5498. "require": {
  5499. "php": ">=8.0.2",
  5500. "symfony/deprecation-contracts": "^2.1|^3",
  5501. "symfony/polyfill-mbstring": "~1.1"
  5502. },
  5503. "require-dev": {
  5504. "predis/predis": "~1.0",
  5505. "symfony/cache": "^5.4|^6.0",
  5506. "symfony/dependency-injection": "^5.4|^6.0",
  5507. "symfony/expression-language": "^5.4|^6.0",
  5508. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5509. "symfony/mime": "^5.4|^6.0",
  5510. "symfony/rate-limiter": "^5.2|^6.0"
  5511. },
  5512. "suggest": {
  5513. "symfony/mime": "To use the file extension guesser"
  5514. },
  5515. "type": "library",
  5516. "autoload": {
  5517. "psr-4": {
  5518. "Symfony\\Component\\HttpFoundation\\": ""
  5519. },
  5520. "exclude-from-classmap": [
  5521. "/Tests/"
  5522. ]
  5523. },
  5524. "notification-url": "https://packagist.org/downloads/",
  5525. "license": [
  5526. "MIT"
  5527. ],
  5528. "authors": [
  5529. {
  5530. "name": "Fabien Potencier",
  5531. "email": "fabien@symfony.com"
  5532. },
  5533. {
  5534. "name": "Symfony Community",
  5535. "homepage": "https://symfony.com/contributors"
  5536. }
  5537. ],
  5538. "description": "Defines an object-oriented layer for the HTTP specification",
  5539. "homepage": "https://symfony.com",
  5540. "support": {
  5541. "source": "https://github.com/symfony/http-foundation/tree/v6.0.20"
  5542. },
  5543. "funding": [
  5544. {
  5545. "url": "https://symfony.com/sponsor",
  5546. "type": "custom"
  5547. },
  5548. {
  5549. "url": "https://github.com/fabpot",
  5550. "type": "github"
  5551. },
  5552. {
  5553. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5554. "type": "tidelift"
  5555. }
  5556. ],
  5557. "time": "2023-01-30T15:41:07+00:00"
  5558. },
  5559. {
  5560. "name": "symfony/http-kernel",
  5561. "version": "v6.0.20",
  5562. "source": {
  5563. "type": "git",
  5564. "url": "https://github.com/symfony/http-kernel.git",
  5565. "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349"
  5566. },
  5567. "dist": {
  5568. "type": "zip",
  5569. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6dc70833fd0ef5e861e17c7854c12d7d86679349",
  5570. "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349",
  5571. "shasum": "",
  5572. "mirrors": [
  5573. {
  5574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5575. "preferred": true
  5576. }
  5577. ]
  5578. },
  5579. "require": {
  5580. "php": ">=8.0.2",
  5581. "psr/log": "^1|^2|^3",
  5582. "symfony/error-handler": "^5.4|^6.0",
  5583. "symfony/event-dispatcher": "^5.4|^6.0",
  5584. "symfony/http-foundation": "^5.4|^6.0",
  5585. "symfony/polyfill-ctype": "^1.8"
  5586. },
  5587. "conflict": {
  5588. "symfony/browser-kit": "<5.4",
  5589. "symfony/cache": "<5.4",
  5590. "symfony/config": "<5.4",
  5591. "symfony/console": "<5.4",
  5592. "symfony/dependency-injection": "<5.4",
  5593. "symfony/doctrine-bridge": "<5.4",
  5594. "symfony/form": "<5.4",
  5595. "symfony/http-client": "<5.4",
  5596. "symfony/mailer": "<5.4",
  5597. "symfony/messenger": "<5.4",
  5598. "symfony/translation": "<5.4",
  5599. "symfony/twig-bridge": "<5.4",
  5600. "symfony/validator": "<5.4",
  5601. "twig/twig": "<2.13"
  5602. },
  5603. "provide": {
  5604. "psr/log-implementation": "1.0|2.0|3.0"
  5605. },
  5606. "require-dev": {
  5607. "psr/cache": "^1.0|^2.0|^3.0",
  5608. "symfony/browser-kit": "^5.4|^6.0",
  5609. "symfony/config": "^5.4|^6.0",
  5610. "symfony/console": "^5.4|^6.0",
  5611. "symfony/css-selector": "^5.4|^6.0",
  5612. "symfony/dependency-injection": "^5.4|^6.0",
  5613. "symfony/dom-crawler": "^5.4|^6.0",
  5614. "symfony/expression-language": "^5.4|^6.0",
  5615. "symfony/finder": "^5.4|^6.0",
  5616. "symfony/http-client-contracts": "^1.1|^2|^3",
  5617. "symfony/process": "^5.4|^6.0",
  5618. "symfony/routing": "^5.4|^6.0",
  5619. "symfony/stopwatch": "^5.4|^6.0",
  5620. "symfony/translation": "^5.4|^6.0",
  5621. "symfony/translation-contracts": "^1.1|^2|^3",
  5622. "twig/twig": "^2.13|^3.0.4"
  5623. },
  5624. "suggest": {
  5625. "symfony/browser-kit": "",
  5626. "symfony/config": "",
  5627. "symfony/console": "",
  5628. "symfony/dependency-injection": ""
  5629. },
  5630. "type": "library",
  5631. "autoload": {
  5632. "psr-4": {
  5633. "Symfony\\Component\\HttpKernel\\": ""
  5634. },
  5635. "exclude-from-classmap": [
  5636. "/Tests/"
  5637. ]
  5638. },
  5639. "notification-url": "https://packagist.org/downloads/",
  5640. "license": [
  5641. "MIT"
  5642. ],
  5643. "authors": [
  5644. {
  5645. "name": "Fabien Potencier",
  5646. "email": "fabien@symfony.com"
  5647. },
  5648. {
  5649. "name": "Symfony Community",
  5650. "homepage": "https://symfony.com/contributors"
  5651. }
  5652. ],
  5653. "description": "Provides a structured process for converting a Request into a Response",
  5654. "homepage": "https://symfony.com",
  5655. "support": {
  5656. "source": "https://github.com/symfony/http-kernel/tree/v6.0.20"
  5657. },
  5658. "funding": [
  5659. {
  5660. "url": "https://symfony.com/sponsor",
  5661. "type": "custom"
  5662. },
  5663. {
  5664. "url": "https://github.com/fabpot",
  5665. "type": "github"
  5666. },
  5667. {
  5668. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5669. "type": "tidelift"
  5670. }
  5671. ],
  5672. "time": "2023-02-01T08:22:55+00:00"
  5673. },
  5674. {
  5675. "name": "symfony/mailer",
  5676. "version": "v6.0.19",
  5677. "source": {
  5678. "type": "git",
  5679. "url": "https://github.com/symfony/mailer.git",
  5680. "reference": "cd60799210c488f545ddde2444dc1aa548322872"
  5681. },
  5682. "dist": {
  5683. "type": "zip",
  5684. "url": "https://api.github.com/repos/symfony/mailer/zipball/cd60799210c488f545ddde2444dc1aa548322872",
  5685. "reference": "cd60799210c488f545ddde2444dc1aa548322872",
  5686. "shasum": "",
  5687. "mirrors": [
  5688. {
  5689. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5690. "preferred": true
  5691. }
  5692. ]
  5693. },
  5694. "require": {
  5695. "egulias/email-validator": "^2.1.10|^3|^4",
  5696. "php": ">=8.0.2",
  5697. "psr/event-dispatcher": "^1",
  5698. "psr/log": "^1|^2|^3",
  5699. "symfony/event-dispatcher": "^5.4|^6.0",
  5700. "symfony/mime": "^5.4|^6.0",
  5701. "symfony/service-contracts": "^1.1|^2|^3"
  5702. },
  5703. "conflict": {
  5704. "symfony/http-kernel": "<5.4"
  5705. },
  5706. "require-dev": {
  5707. "symfony/http-client-contracts": "^1.1|^2|^3",
  5708. "symfony/messenger": "^5.4|^6.0"
  5709. },
  5710. "type": "library",
  5711. "autoload": {
  5712. "psr-4": {
  5713. "Symfony\\Component\\Mailer\\": ""
  5714. },
  5715. "exclude-from-classmap": [
  5716. "/Tests/"
  5717. ]
  5718. },
  5719. "notification-url": "https://packagist.org/downloads/",
  5720. "license": [
  5721. "MIT"
  5722. ],
  5723. "authors": [
  5724. {
  5725. "name": "Fabien Potencier",
  5726. "email": "fabien@symfony.com"
  5727. },
  5728. {
  5729. "name": "Symfony Community",
  5730. "homepage": "https://symfony.com/contributors"
  5731. }
  5732. ],
  5733. "description": "Helps sending emails",
  5734. "homepage": "https://symfony.com",
  5735. "support": {
  5736. "source": "https://github.com/symfony/mailer/tree/v6.0.19"
  5737. },
  5738. "funding": [
  5739. {
  5740. "url": "https://symfony.com/sponsor",
  5741. "type": "custom"
  5742. },
  5743. {
  5744. "url": "https://github.com/fabpot",
  5745. "type": "github"
  5746. },
  5747. {
  5748. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5749. "type": "tidelift"
  5750. }
  5751. ],
  5752. "time": "2023-01-11T11:50:03+00:00"
  5753. },
  5754. {
  5755. "name": "symfony/mime",
  5756. "version": "v6.0.19",
  5757. "source": {
  5758. "type": "git",
  5759. "url": "https://github.com/symfony/mime.git",
  5760. "reference": "d7052547a0070cbeadd474e172b527a00d657301"
  5761. },
  5762. "dist": {
  5763. "type": "zip",
  5764. "url": "https://api.github.com/repos/symfony/mime/zipball/d7052547a0070cbeadd474e172b527a00d657301",
  5765. "reference": "d7052547a0070cbeadd474e172b527a00d657301",
  5766. "shasum": "",
  5767. "mirrors": [
  5768. {
  5769. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5770. "preferred": true
  5771. }
  5772. ]
  5773. },
  5774. "require": {
  5775. "php": ">=8.0.2",
  5776. "symfony/polyfill-intl-idn": "^1.10",
  5777. "symfony/polyfill-mbstring": "^1.0"
  5778. },
  5779. "conflict": {
  5780. "egulias/email-validator": "~3.0.0",
  5781. "phpdocumentor/reflection-docblock": "<3.2.2",
  5782. "phpdocumentor/type-resolver": "<1.4.0",
  5783. "symfony/mailer": "<5.4",
  5784. "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
  5785. },
  5786. "require-dev": {
  5787. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5788. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5789. "symfony/dependency-injection": "^5.4|^6.0",
  5790. "symfony/property-access": "^5.4|^6.0",
  5791. "symfony/property-info": "^5.4|^6.0",
  5792. "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
  5793. },
  5794. "type": "library",
  5795. "autoload": {
  5796. "psr-4": {
  5797. "Symfony\\Component\\Mime\\": ""
  5798. },
  5799. "exclude-from-classmap": [
  5800. "/Tests/"
  5801. ]
  5802. },
  5803. "notification-url": "https://packagist.org/downloads/",
  5804. "license": [
  5805. "MIT"
  5806. ],
  5807. "authors": [
  5808. {
  5809. "name": "Fabien Potencier",
  5810. "email": "fabien@symfony.com"
  5811. },
  5812. {
  5813. "name": "Symfony Community",
  5814. "homepage": "https://symfony.com/contributors"
  5815. }
  5816. ],
  5817. "description": "Allows manipulating MIME messages",
  5818. "homepage": "https://symfony.com",
  5819. "keywords": [
  5820. "mime",
  5821. "mime-type"
  5822. ],
  5823. "support": {
  5824. "source": "https://github.com/symfony/mime/tree/v6.0.19"
  5825. },
  5826. "funding": [
  5827. {
  5828. "url": "https://symfony.com/sponsor",
  5829. "type": "custom"
  5830. },
  5831. {
  5832. "url": "https://github.com/fabpot",
  5833. "type": "github"
  5834. },
  5835. {
  5836. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5837. "type": "tidelift"
  5838. }
  5839. ],
  5840. "time": "2023-01-11T11:50:03+00:00"
  5841. },
  5842. {
  5843. "name": "symfony/polyfill-ctype",
  5844. "version": "v1.27.0",
  5845. "source": {
  5846. "type": "git",
  5847. "url": "https://github.com/symfony/polyfill-ctype.git",
  5848. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  5849. },
  5850. "dist": {
  5851. "type": "zip",
  5852. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  5853. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  5854. "shasum": "",
  5855. "mirrors": [
  5856. {
  5857. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5858. "preferred": true
  5859. }
  5860. ]
  5861. },
  5862. "require": {
  5863. "php": ">=7.1"
  5864. },
  5865. "provide": {
  5866. "ext-ctype": "*"
  5867. },
  5868. "suggest": {
  5869. "ext-ctype": "For best performance"
  5870. },
  5871. "type": "library",
  5872. "extra": {
  5873. "branch-alias": {
  5874. "dev-main": "1.27-dev"
  5875. },
  5876. "thanks": {
  5877. "name": "symfony/polyfill",
  5878. "url": "https://github.com/symfony/polyfill"
  5879. }
  5880. },
  5881. "autoload": {
  5882. "files": [
  5883. "bootstrap.php"
  5884. ],
  5885. "psr-4": {
  5886. "Symfony\\Polyfill\\Ctype\\": ""
  5887. }
  5888. },
  5889. "notification-url": "https://packagist.org/downloads/",
  5890. "license": [
  5891. "MIT"
  5892. ],
  5893. "authors": [
  5894. {
  5895. "name": "Gert de Pagter",
  5896. "email": "BackEndTea@gmail.com"
  5897. },
  5898. {
  5899. "name": "Symfony Community",
  5900. "homepage": "https://symfony.com/contributors"
  5901. }
  5902. ],
  5903. "description": "Symfony polyfill for ctype functions",
  5904. "homepage": "https://symfony.com",
  5905. "keywords": [
  5906. "compatibility",
  5907. "ctype",
  5908. "polyfill",
  5909. "portable"
  5910. ],
  5911. "support": {
  5912. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  5913. },
  5914. "funding": [
  5915. {
  5916. "url": "https://symfony.com/sponsor",
  5917. "type": "custom"
  5918. },
  5919. {
  5920. "url": "https://github.com/fabpot",
  5921. "type": "github"
  5922. },
  5923. {
  5924. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5925. "type": "tidelift"
  5926. }
  5927. ],
  5928. "time": "2022-11-03T14:55:06+00:00"
  5929. },
  5930. {
  5931. "name": "symfony/polyfill-intl-grapheme",
  5932. "version": "v1.27.0",
  5933. "source": {
  5934. "type": "git",
  5935. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5936. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  5937. },
  5938. "dist": {
  5939. "type": "zip",
  5940. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  5941. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  5942. "shasum": "",
  5943. "mirrors": [
  5944. {
  5945. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5946. "preferred": true
  5947. }
  5948. ]
  5949. },
  5950. "require": {
  5951. "php": ">=7.1"
  5952. },
  5953. "suggest": {
  5954. "ext-intl": "For best performance"
  5955. },
  5956. "type": "library",
  5957. "extra": {
  5958. "branch-alias": {
  5959. "dev-main": "1.27-dev"
  5960. },
  5961. "thanks": {
  5962. "name": "symfony/polyfill",
  5963. "url": "https://github.com/symfony/polyfill"
  5964. }
  5965. },
  5966. "autoload": {
  5967. "files": [
  5968. "bootstrap.php"
  5969. ],
  5970. "psr-4": {
  5971. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5972. }
  5973. },
  5974. "notification-url": "https://packagist.org/downloads/",
  5975. "license": [
  5976. "MIT"
  5977. ],
  5978. "authors": [
  5979. {
  5980. "name": "Nicolas Grekas",
  5981. "email": "p@tchwork.com"
  5982. },
  5983. {
  5984. "name": "Symfony Community",
  5985. "homepage": "https://symfony.com/contributors"
  5986. }
  5987. ],
  5988. "description": "Symfony polyfill for intl's grapheme_* functions",
  5989. "homepage": "https://symfony.com",
  5990. "keywords": [
  5991. "compatibility",
  5992. "grapheme",
  5993. "intl",
  5994. "polyfill",
  5995. "portable",
  5996. "shim"
  5997. ],
  5998. "support": {
  5999. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  6000. },
  6001. "funding": [
  6002. {
  6003. "url": "https://symfony.com/sponsor",
  6004. "type": "custom"
  6005. },
  6006. {
  6007. "url": "https://github.com/fabpot",
  6008. "type": "github"
  6009. },
  6010. {
  6011. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6012. "type": "tidelift"
  6013. }
  6014. ],
  6015. "time": "2022-11-03T14:55:06+00:00"
  6016. },
  6017. {
  6018. "name": "symfony/polyfill-intl-idn",
  6019. "version": "v1.27.0",
  6020. "source": {
  6021. "type": "git",
  6022. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6023. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  6024. },
  6025. "dist": {
  6026. "type": "zip",
  6027. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  6028. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  6029. "shasum": "",
  6030. "mirrors": [
  6031. {
  6032. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6033. "preferred": true
  6034. }
  6035. ]
  6036. },
  6037. "require": {
  6038. "php": ">=7.1",
  6039. "symfony/polyfill-intl-normalizer": "^1.10",
  6040. "symfony/polyfill-php72": "^1.10"
  6041. },
  6042. "suggest": {
  6043. "ext-intl": "For best performance"
  6044. },
  6045. "type": "library",
  6046. "extra": {
  6047. "branch-alias": {
  6048. "dev-main": "1.27-dev"
  6049. },
  6050. "thanks": {
  6051. "name": "symfony/polyfill",
  6052. "url": "https://github.com/symfony/polyfill"
  6053. }
  6054. },
  6055. "autoload": {
  6056. "files": [
  6057. "bootstrap.php"
  6058. ],
  6059. "psr-4": {
  6060. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6061. }
  6062. },
  6063. "notification-url": "https://packagist.org/downloads/",
  6064. "license": [
  6065. "MIT"
  6066. ],
  6067. "authors": [
  6068. {
  6069. "name": "Laurent Bassin",
  6070. "email": "laurent@bassin.info"
  6071. },
  6072. {
  6073. "name": "Trevor Rowbotham",
  6074. "email": "trevor.rowbotham@pm.me"
  6075. },
  6076. {
  6077. "name": "Symfony Community",
  6078. "homepage": "https://symfony.com/contributors"
  6079. }
  6080. ],
  6081. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6082. "homepage": "https://symfony.com",
  6083. "keywords": [
  6084. "compatibility",
  6085. "idn",
  6086. "intl",
  6087. "polyfill",
  6088. "portable",
  6089. "shim"
  6090. ],
  6091. "support": {
  6092. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  6093. },
  6094. "funding": [
  6095. {
  6096. "url": "https://symfony.com/sponsor",
  6097. "type": "custom"
  6098. },
  6099. {
  6100. "url": "https://github.com/fabpot",
  6101. "type": "github"
  6102. },
  6103. {
  6104. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6105. "type": "tidelift"
  6106. }
  6107. ],
  6108. "time": "2022-11-03T14:55:06+00:00"
  6109. },
  6110. {
  6111. "name": "symfony/polyfill-intl-normalizer",
  6112. "version": "v1.27.0",
  6113. "source": {
  6114. "type": "git",
  6115. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6116. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  6117. },
  6118. "dist": {
  6119. "type": "zip",
  6120. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  6121. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  6122. "shasum": "",
  6123. "mirrors": [
  6124. {
  6125. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6126. "preferred": true
  6127. }
  6128. ]
  6129. },
  6130. "require": {
  6131. "php": ">=7.1"
  6132. },
  6133. "suggest": {
  6134. "ext-intl": "For best performance"
  6135. },
  6136. "type": "library",
  6137. "extra": {
  6138. "branch-alias": {
  6139. "dev-main": "1.27-dev"
  6140. },
  6141. "thanks": {
  6142. "name": "symfony/polyfill",
  6143. "url": "https://github.com/symfony/polyfill"
  6144. }
  6145. },
  6146. "autoload": {
  6147. "files": [
  6148. "bootstrap.php"
  6149. ],
  6150. "psr-4": {
  6151. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6152. },
  6153. "classmap": [
  6154. "Resources/stubs"
  6155. ]
  6156. },
  6157. "notification-url": "https://packagist.org/downloads/",
  6158. "license": [
  6159. "MIT"
  6160. ],
  6161. "authors": [
  6162. {
  6163. "name": "Nicolas Grekas",
  6164. "email": "p@tchwork.com"
  6165. },
  6166. {
  6167. "name": "Symfony Community",
  6168. "homepage": "https://symfony.com/contributors"
  6169. }
  6170. ],
  6171. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6172. "homepage": "https://symfony.com",
  6173. "keywords": [
  6174. "compatibility",
  6175. "intl",
  6176. "normalizer",
  6177. "polyfill",
  6178. "portable",
  6179. "shim"
  6180. ],
  6181. "support": {
  6182. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  6183. },
  6184. "funding": [
  6185. {
  6186. "url": "https://symfony.com/sponsor",
  6187. "type": "custom"
  6188. },
  6189. {
  6190. "url": "https://github.com/fabpot",
  6191. "type": "github"
  6192. },
  6193. {
  6194. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6195. "type": "tidelift"
  6196. }
  6197. ],
  6198. "time": "2022-11-03T14:55:06+00:00"
  6199. },
  6200. {
  6201. "name": "symfony/polyfill-mbstring",
  6202. "version": "v1.27.0",
  6203. "source": {
  6204. "type": "git",
  6205. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6206. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  6207. },
  6208. "dist": {
  6209. "type": "zip",
  6210. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6211. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6212. "shasum": "",
  6213. "mirrors": [
  6214. {
  6215. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6216. "preferred": true
  6217. }
  6218. ]
  6219. },
  6220. "require": {
  6221. "php": ">=7.1"
  6222. },
  6223. "provide": {
  6224. "ext-mbstring": "*"
  6225. },
  6226. "suggest": {
  6227. "ext-mbstring": "For best performance"
  6228. },
  6229. "type": "library",
  6230. "extra": {
  6231. "branch-alias": {
  6232. "dev-main": "1.27-dev"
  6233. },
  6234. "thanks": {
  6235. "name": "symfony/polyfill",
  6236. "url": "https://github.com/symfony/polyfill"
  6237. }
  6238. },
  6239. "autoload": {
  6240. "files": [
  6241. "bootstrap.php"
  6242. ],
  6243. "psr-4": {
  6244. "Symfony\\Polyfill\\Mbstring\\": ""
  6245. }
  6246. },
  6247. "notification-url": "https://packagist.org/downloads/",
  6248. "license": [
  6249. "MIT"
  6250. ],
  6251. "authors": [
  6252. {
  6253. "name": "Nicolas Grekas",
  6254. "email": "p@tchwork.com"
  6255. },
  6256. {
  6257. "name": "Symfony Community",
  6258. "homepage": "https://symfony.com/contributors"
  6259. }
  6260. ],
  6261. "description": "Symfony polyfill for the Mbstring extension",
  6262. "homepage": "https://symfony.com",
  6263. "keywords": [
  6264. "compatibility",
  6265. "mbstring",
  6266. "polyfill",
  6267. "portable",
  6268. "shim"
  6269. ],
  6270. "support": {
  6271. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  6272. },
  6273. "funding": [
  6274. {
  6275. "url": "https://symfony.com/sponsor",
  6276. "type": "custom"
  6277. },
  6278. {
  6279. "url": "https://github.com/fabpot",
  6280. "type": "github"
  6281. },
  6282. {
  6283. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6284. "type": "tidelift"
  6285. }
  6286. ],
  6287. "time": "2022-11-03T14:55:06+00:00"
  6288. },
  6289. {
  6290. "name": "symfony/polyfill-php72",
  6291. "version": "v1.27.0",
  6292. "source": {
  6293. "type": "git",
  6294. "url": "https://github.com/symfony/polyfill-php72.git",
  6295. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  6296. },
  6297. "dist": {
  6298. "type": "zip",
  6299. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  6300. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  6301. "shasum": "",
  6302. "mirrors": [
  6303. {
  6304. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6305. "preferred": true
  6306. }
  6307. ]
  6308. },
  6309. "require": {
  6310. "php": ">=7.1"
  6311. },
  6312. "type": "library",
  6313. "extra": {
  6314. "branch-alias": {
  6315. "dev-main": "1.27-dev"
  6316. },
  6317. "thanks": {
  6318. "name": "symfony/polyfill",
  6319. "url": "https://github.com/symfony/polyfill"
  6320. }
  6321. },
  6322. "autoload": {
  6323. "files": [
  6324. "bootstrap.php"
  6325. ],
  6326. "psr-4": {
  6327. "Symfony\\Polyfill\\Php72\\": ""
  6328. }
  6329. },
  6330. "notification-url": "https://packagist.org/downloads/",
  6331. "license": [
  6332. "MIT"
  6333. ],
  6334. "authors": [
  6335. {
  6336. "name": "Nicolas Grekas",
  6337. "email": "p@tchwork.com"
  6338. },
  6339. {
  6340. "name": "Symfony Community",
  6341. "homepage": "https://symfony.com/contributors"
  6342. }
  6343. ],
  6344. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6345. "homepage": "https://symfony.com",
  6346. "keywords": [
  6347. "compatibility",
  6348. "polyfill",
  6349. "portable",
  6350. "shim"
  6351. ],
  6352. "support": {
  6353. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  6354. },
  6355. "funding": [
  6356. {
  6357. "url": "https://symfony.com/sponsor",
  6358. "type": "custom"
  6359. },
  6360. {
  6361. "url": "https://github.com/fabpot",
  6362. "type": "github"
  6363. },
  6364. {
  6365. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6366. "type": "tidelift"
  6367. }
  6368. ],
  6369. "time": "2022-11-03T14:55:06+00:00"
  6370. },
  6371. {
  6372. "name": "symfony/polyfill-php80",
  6373. "version": "v1.27.0",
  6374. "source": {
  6375. "type": "git",
  6376. "url": "https://github.com/symfony/polyfill-php80.git",
  6377. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  6378. },
  6379. "dist": {
  6380. "type": "zip",
  6381. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  6382. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  6383. "shasum": "",
  6384. "mirrors": [
  6385. {
  6386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6387. "preferred": true
  6388. }
  6389. ]
  6390. },
  6391. "require": {
  6392. "php": ">=7.1"
  6393. },
  6394. "type": "library",
  6395. "extra": {
  6396. "branch-alias": {
  6397. "dev-main": "1.27-dev"
  6398. },
  6399. "thanks": {
  6400. "name": "symfony/polyfill",
  6401. "url": "https://github.com/symfony/polyfill"
  6402. }
  6403. },
  6404. "autoload": {
  6405. "files": [
  6406. "bootstrap.php"
  6407. ],
  6408. "psr-4": {
  6409. "Symfony\\Polyfill\\Php80\\": ""
  6410. },
  6411. "classmap": [
  6412. "Resources/stubs"
  6413. ]
  6414. },
  6415. "notification-url": "https://packagist.org/downloads/",
  6416. "license": [
  6417. "MIT"
  6418. ],
  6419. "authors": [
  6420. {
  6421. "name": "Ion Bazan",
  6422. "email": "ion.bazan@gmail.com"
  6423. },
  6424. {
  6425. "name": "Nicolas Grekas",
  6426. "email": "p@tchwork.com"
  6427. },
  6428. {
  6429. "name": "Symfony Community",
  6430. "homepage": "https://symfony.com/contributors"
  6431. }
  6432. ],
  6433. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6434. "homepage": "https://symfony.com",
  6435. "keywords": [
  6436. "compatibility",
  6437. "polyfill",
  6438. "portable",
  6439. "shim"
  6440. ],
  6441. "support": {
  6442. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  6443. },
  6444. "funding": [
  6445. {
  6446. "url": "https://symfony.com/sponsor",
  6447. "type": "custom"
  6448. },
  6449. {
  6450. "url": "https://github.com/fabpot",
  6451. "type": "github"
  6452. },
  6453. {
  6454. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6455. "type": "tidelift"
  6456. }
  6457. ],
  6458. "time": "2022-11-03T14:55:06+00:00"
  6459. },
  6460. {
  6461. "name": "symfony/polyfill-php81",
  6462. "version": "v1.27.0",
  6463. "source": {
  6464. "type": "git",
  6465. "url": "https://github.com/symfony/polyfill-php81.git",
  6466. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
  6467. },
  6468. "dist": {
  6469. "type": "zip",
  6470. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
  6471. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
  6472. "shasum": "",
  6473. "mirrors": [
  6474. {
  6475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6476. "preferred": true
  6477. }
  6478. ]
  6479. },
  6480. "require": {
  6481. "php": ">=7.1"
  6482. },
  6483. "type": "library",
  6484. "extra": {
  6485. "branch-alias": {
  6486. "dev-main": "1.27-dev"
  6487. },
  6488. "thanks": {
  6489. "name": "symfony/polyfill",
  6490. "url": "https://github.com/symfony/polyfill"
  6491. }
  6492. },
  6493. "autoload": {
  6494. "files": [
  6495. "bootstrap.php"
  6496. ],
  6497. "psr-4": {
  6498. "Symfony\\Polyfill\\Php81\\": ""
  6499. },
  6500. "classmap": [
  6501. "Resources/stubs"
  6502. ]
  6503. },
  6504. "notification-url": "https://packagist.org/downloads/",
  6505. "license": [
  6506. "MIT"
  6507. ],
  6508. "authors": [
  6509. {
  6510. "name": "Nicolas Grekas",
  6511. "email": "p@tchwork.com"
  6512. },
  6513. {
  6514. "name": "Symfony Community",
  6515. "homepage": "https://symfony.com/contributors"
  6516. }
  6517. ],
  6518. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6519. "homepage": "https://symfony.com",
  6520. "keywords": [
  6521. "compatibility",
  6522. "polyfill",
  6523. "portable",
  6524. "shim"
  6525. ],
  6526. "support": {
  6527. "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
  6528. },
  6529. "funding": [
  6530. {
  6531. "url": "https://symfony.com/sponsor",
  6532. "type": "custom"
  6533. },
  6534. {
  6535. "url": "https://github.com/fabpot",
  6536. "type": "github"
  6537. },
  6538. {
  6539. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6540. "type": "tidelift"
  6541. }
  6542. ],
  6543. "time": "2022-11-03T14:55:06+00:00"
  6544. },
  6545. {
  6546. "name": "symfony/polyfill-uuid",
  6547. "version": "v1.27.0",
  6548. "source": {
  6549. "type": "git",
  6550. "url": "https://github.com/symfony/polyfill-uuid.git",
  6551. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
  6552. },
  6553. "dist": {
  6554. "type": "zip",
  6555. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
  6556. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
  6557. "shasum": "",
  6558. "mirrors": [
  6559. {
  6560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6561. "preferred": true
  6562. }
  6563. ]
  6564. },
  6565. "require": {
  6566. "php": ">=7.1"
  6567. },
  6568. "provide": {
  6569. "ext-uuid": "*"
  6570. },
  6571. "suggest": {
  6572. "ext-uuid": "For best performance"
  6573. },
  6574. "type": "library",
  6575. "extra": {
  6576. "branch-alias": {
  6577. "dev-main": "1.27-dev"
  6578. },
  6579. "thanks": {
  6580. "name": "symfony/polyfill",
  6581. "url": "https://github.com/symfony/polyfill"
  6582. }
  6583. },
  6584. "autoload": {
  6585. "files": [
  6586. "bootstrap.php"
  6587. ],
  6588. "psr-4": {
  6589. "Symfony\\Polyfill\\Uuid\\": ""
  6590. }
  6591. },
  6592. "notification-url": "https://packagist.org/downloads/",
  6593. "license": [
  6594. "MIT"
  6595. ],
  6596. "authors": [
  6597. {
  6598. "name": "Grégoire Pineau",
  6599. "email": "lyrixx@lyrixx.info"
  6600. },
  6601. {
  6602. "name": "Symfony Community",
  6603. "homepage": "https://symfony.com/contributors"
  6604. }
  6605. ],
  6606. "description": "Symfony polyfill for uuid functions",
  6607. "homepage": "https://symfony.com",
  6608. "keywords": [
  6609. "compatibility",
  6610. "polyfill",
  6611. "portable",
  6612. "uuid"
  6613. ],
  6614. "support": {
  6615. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
  6616. },
  6617. "funding": [
  6618. {
  6619. "url": "https://symfony.com/sponsor",
  6620. "type": "custom"
  6621. },
  6622. {
  6623. "url": "https://github.com/fabpot",
  6624. "type": "github"
  6625. },
  6626. {
  6627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6628. "type": "tidelift"
  6629. }
  6630. ],
  6631. "time": "2022-11-03T14:55:06+00:00"
  6632. },
  6633. {
  6634. "name": "symfony/process",
  6635. "version": "v6.0.19",
  6636. "source": {
  6637. "type": "git",
  6638. "url": "https://github.com/symfony/process.git",
  6639. "reference": "2114fd60f26a296cc403a7939ab91478475a33d4"
  6640. },
  6641. "dist": {
  6642. "type": "zip",
  6643. "url": "https://api.github.com/repos/symfony/process/zipball/2114fd60f26a296cc403a7939ab91478475a33d4",
  6644. "reference": "2114fd60f26a296cc403a7939ab91478475a33d4",
  6645. "shasum": "",
  6646. "mirrors": [
  6647. {
  6648. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6649. "preferred": true
  6650. }
  6651. ]
  6652. },
  6653. "require": {
  6654. "php": ">=8.0.2"
  6655. },
  6656. "type": "library",
  6657. "autoload": {
  6658. "psr-4": {
  6659. "Symfony\\Component\\Process\\": ""
  6660. },
  6661. "exclude-from-classmap": [
  6662. "/Tests/"
  6663. ]
  6664. },
  6665. "notification-url": "https://packagist.org/downloads/",
  6666. "license": [
  6667. "MIT"
  6668. ],
  6669. "authors": [
  6670. {
  6671. "name": "Fabien Potencier",
  6672. "email": "fabien@symfony.com"
  6673. },
  6674. {
  6675. "name": "Symfony Community",
  6676. "homepage": "https://symfony.com/contributors"
  6677. }
  6678. ],
  6679. "description": "Executes commands in sub-processes",
  6680. "homepage": "https://symfony.com",
  6681. "support": {
  6682. "source": "https://github.com/symfony/process/tree/v6.0.19"
  6683. },
  6684. "funding": [
  6685. {
  6686. "url": "https://symfony.com/sponsor",
  6687. "type": "custom"
  6688. },
  6689. {
  6690. "url": "https://github.com/fabpot",
  6691. "type": "github"
  6692. },
  6693. {
  6694. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6695. "type": "tidelift"
  6696. }
  6697. ],
  6698. "time": "2023-01-01T08:36:10+00:00"
  6699. },
  6700. {
  6701. "name": "symfony/psr-http-message-bridge",
  6702. "version": "v2.2.0",
  6703. "source": {
  6704. "type": "git",
  6705. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6706. "reference": "28a732c05bbad801304ad5a5c674cf2970508993"
  6707. },
  6708. "dist": {
  6709. "type": "zip",
  6710. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993",
  6711. "reference": "28a732c05bbad801304ad5a5c674cf2970508993",
  6712. "shasum": "",
  6713. "mirrors": [
  6714. {
  6715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6716. "preferred": true
  6717. }
  6718. ]
  6719. },
  6720. "require": {
  6721. "php": ">=7.2.5",
  6722. "psr/http-message": "^1.0 || ^2.0",
  6723. "symfony/http-foundation": "^5.4 || ^6.0"
  6724. },
  6725. "require-dev": {
  6726. "nyholm/psr7": "^1.1",
  6727. "psr/log": "^1.1 || ^2 || ^3",
  6728. "symfony/browser-kit": "^5.4 || ^6.0",
  6729. "symfony/config": "^5.4 || ^6.0",
  6730. "symfony/event-dispatcher": "^5.4 || ^6.0",
  6731. "symfony/framework-bundle": "^5.4 || ^6.0",
  6732. "symfony/http-kernel": "^5.4 || ^6.0",
  6733. "symfony/phpunit-bridge": "^6.2"
  6734. },
  6735. "suggest": {
  6736. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6737. },
  6738. "type": "symfony-bridge",
  6739. "extra": {
  6740. "branch-alias": {
  6741. "dev-main": "2.2-dev"
  6742. }
  6743. },
  6744. "autoload": {
  6745. "psr-4": {
  6746. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6747. },
  6748. "exclude-from-classmap": [
  6749. "/Tests/"
  6750. ]
  6751. },
  6752. "notification-url": "https://packagist.org/downloads/",
  6753. "license": [
  6754. "MIT"
  6755. ],
  6756. "authors": [
  6757. {
  6758. "name": "Fabien Potencier",
  6759. "email": "fabien@symfony.com"
  6760. },
  6761. {
  6762. "name": "Symfony Community",
  6763. "homepage": "http://symfony.com/contributors"
  6764. }
  6765. ],
  6766. "description": "PSR HTTP message bridge",
  6767. "homepage": "http://symfony.com",
  6768. "keywords": [
  6769. "http",
  6770. "http-message",
  6771. "psr-17",
  6772. "psr-7"
  6773. ],
  6774. "support": {
  6775. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  6776. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0"
  6777. },
  6778. "funding": [
  6779. {
  6780. "url": "https://symfony.com/sponsor",
  6781. "type": "custom"
  6782. },
  6783. {
  6784. "url": "https://github.com/fabpot",
  6785. "type": "github"
  6786. },
  6787. {
  6788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6789. "type": "tidelift"
  6790. }
  6791. ],
  6792. "time": "2023-04-21T08:40:19+00:00"
  6793. },
  6794. {
  6795. "name": "symfony/routing",
  6796. "version": "v6.0.19",
  6797. "source": {
  6798. "type": "git",
  6799. "url": "https://github.com/symfony/routing.git",
  6800. "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac"
  6801. },
  6802. "dist": {
  6803. "type": "zip",
  6804. "url": "https://api.github.com/repos/symfony/routing/zipball/e56ca9b41c1ec447193474cd86ad7c0b547755ac",
  6805. "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac",
  6806. "shasum": "",
  6807. "mirrors": [
  6808. {
  6809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6810. "preferred": true
  6811. }
  6812. ]
  6813. },
  6814. "require": {
  6815. "php": ">=8.0.2"
  6816. },
  6817. "conflict": {
  6818. "doctrine/annotations": "<1.12",
  6819. "symfony/config": "<5.4",
  6820. "symfony/dependency-injection": "<5.4",
  6821. "symfony/yaml": "<5.4"
  6822. },
  6823. "require-dev": {
  6824. "doctrine/annotations": "^1.12|^2",
  6825. "psr/log": "^1|^2|^3",
  6826. "symfony/config": "^5.4|^6.0",
  6827. "symfony/dependency-injection": "^5.4|^6.0",
  6828. "symfony/expression-language": "^5.4|^6.0",
  6829. "symfony/http-foundation": "^5.4|^6.0",
  6830. "symfony/yaml": "^5.4|^6.0"
  6831. },
  6832. "suggest": {
  6833. "symfony/config": "For using the all-in-one router or any loader",
  6834. "symfony/expression-language": "For using expression matching",
  6835. "symfony/http-foundation": "For using a Symfony Request object",
  6836. "symfony/yaml": "For using the YAML loader"
  6837. },
  6838. "type": "library",
  6839. "autoload": {
  6840. "psr-4": {
  6841. "Symfony\\Component\\Routing\\": ""
  6842. },
  6843. "exclude-from-classmap": [
  6844. "/Tests/"
  6845. ]
  6846. },
  6847. "notification-url": "https://packagist.org/downloads/",
  6848. "license": [
  6849. "MIT"
  6850. ],
  6851. "authors": [
  6852. {
  6853. "name": "Fabien Potencier",
  6854. "email": "fabien@symfony.com"
  6855. },
  6856. {
  6857. "name": "Symfony Community",
  6858. "homepage": "https://symfony.com/contributors"
  6859. }
  6860. ],
  6861. "description": "Maps an HTTP request to a set of configuration variables",
  6862. "homepage": "https://symfony.com",
  6863. "keywords": [
  6864. "router",
  6865. "routing",
  6866. "uri",
  6867. "url"
  6868. ],
  6869. "support": {
  6870. "source": "https://github.com/symfony/routing/tree/v6.0.19"
  6871. },
  6872. "funding": [
  6873. {
  6874. "url": "https://symfony.com/sponsor",
  6875. "type": "custom"
  6876. },
  6877. {
  6878. "url": "https://github.com/fabpot",
  6879. "type": "github"
  6880. },
  6881. {
  6882. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6883. "type": "tidelift"
  6884. }
  6885. ],
  6886. "time": "2023-01-01T08:36:10+00:00"
  6887. },
  6888. {
  6889. "name": "symfony/service-contracts",
  6890. "version": "v3.0.2",
  6891. "source": {
  6892. "type": "git",
  6893. "url": "https://github.com/symfony/service-contracts.git",
  6894. "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66"
  6895. },
  6896. "dist": {
  6897. "type": "zip",
  6898. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
  6899. "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
  6900. "shasum": "",
  6901. "mirrors": [
  6902. {
  6903. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6904. "preferred": true
  6905. }
  6906. ]
  6907. },
  6908. "require": {
  6909. "php": ">=8.0.2",
  6910. "psr/container": "^2.0"
  6911. },
  6912. "conflict": {
  6913. "ext-psr": "<1.1|>=2"
  6914. },
  6915. "suggest": {
  6916. "symfony/service-implementation": ""
  6917. },
  6918. "type": "library",
  6919. "extra": {
  6920. "branch-alias": {
  6921. "dev-main": "3.0-dev"
  6922. },
  6923. "thanks": {
  6924. "name": "symfony/contracts",
  6925. "url": "https://github.com/symfony/contracts"
  6926. }
  6927. },
  6928. "autoload": {
  6929. "psr-4": {
  6930. "Symfony\\Contracts\\Service\\": ""
  6931. }
  6932. },
  6933. "notification-url": "https://packagist.org/downloads/",
  6934. "license": [
  6935. "MIT"
  6936. ],
  6937. "authors": [
  6938. {
  6939. "name": "Nicolas Grekas",
  6940. "email": "p@tchwork.com"
  6941. },
  6942. {
  6943. "name": "Symfony Community",
  6944. "homepage": "https://symfony.com/contributors"
  6945. }
  6946. ],
  6947. "description": "Generic abstractions related to writing services",
  6948. "homepage": "https://symfony.com",
  6949. "keywords": [
  6950. "abstractions",
  6951. "contracts",
  6952. "decoupling",
  6953. "interfaces",
  6954. "interoperability",
  6955. "standards"
  6956. ],
  6957. "support": {
  6958. "source": "https://github.com/symfony/service-contracts/tree/v3.0.2"
  6959. },
  6960. "funding": [
  6961. {
  6962. "url": "https://symfony.com/sponsor",
  6963. "type": "custom"
  6964. },
  6965. {
  6966. "url": "https://github.com/fabpot",
  6967. "type": "github"
  6968. },
  6969. {
  6970. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6971. "type": "tidelift"
  6972. }
  6973. ],
  6974. "time": "2022-05-30T19:17:58+00:00"
  6975. },
  6976. {
  6977. "name": "symfony/string",
  6978. "version": "v6.0.19",
  6979. "source": {
  6980. "type": "git",
  6981. "url": "https://github.com/symfony/string.git",
  6982. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  6983. },
  6984. "dist": {
  6985. "type": "zip",
  6986. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  6987. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  6988. "shasum": "",
  6989. "mirrors": [
  6990. {
  6991. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6992. "preferred": true
  6993. }
  6994. ]
  6995. },
  6996. "require": {
  6997. "php": ">=8.0.2",
  6998. "symfony/polyfill-ctype": "~1.8",
  6999. "symfony/polyfill-intl-grapheme": "~1.0",
  7000. "symfony/polyfill-intl-normalizer": "~1.0",
  7001. "symfony/polyfill-mbstring": "~1.0"
  7002. },
  7003. "conflict": {
  7004. "symfony/translation-contracts": "<2.0"
  7005. },
  7006. "require-dev": {
  7007. "symfony/error-handler": "^5.4|^6.0",
  7008. "symfony/http-client": "^5.4|^6.0",
  7009. "symfony/translation-contracts": "^2.0|^3.0",
  7010. "symfony/var-exporter": "^5.4|^6.0"
  7011. },
  7012. "type": "library",
  7013. "autoload": {
  7014. "files": [
  7015. "Resources/functions.php"
  7016. ],
  7017. "psr-4": {
  7018. "Symfony\\Component\\String\\": ""
  7019. },
  7020. "exclude-from-classmap": [
  7021. "/Tests/"
  7022. ]
  7023. },
  7024. "notification-url": "https://packagist.org/downloads/",
  7025. "license": [
  7026. "MIT"
  7027. ],
  7028. "authors": [
  7029. {
  7030. "name": "Nicolas Grekas",
  7031. "email": "p@tchwork.com"
  7032. },
  7033. {
  7034. "name": "Symfony Community",
  7035. "homepage": "https://symfony.com/contributors"
  7036. }
  7037. ],
  7038. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7039. "homepage": "https://symfony.com",
  7040. "keywords": [
  7041. "grapheme",
  7042. "i18n",
  7043. "string",
  7044. "unicode",
  7045. "utf-8",
  7046. "utf8"
  7047. ],
  7048. "support": {
  7049. "source": "https://github.com/symfony/string/tree/v6.0.19"
  7050. },
  7051. "funding": [
  7052. {
  7053. "url": "https://symfony.com/sponsor",
  7054. "type": "custom"
  7055. },
  7056. {
  7057. "url": "https://github.com/fabpot",
  7058. "type": "github"
  7059. },
  7060. {
  7061. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7062. "type": "tidelift"
  7063. }
  7064. ],
  7065. "time": "2023-01-01T08:36:10+00:00"
  7066. },
  7067. {
  7068. "name": "symfony/translation",
  7069. "version": "v6.0.19",
  7070. "source": {
  7071. "type": "git",
  7072. "url": "https://github.com/symfony/translation.git",
  7073. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  7074. },
  7075. "dist": {
  7076. "type": "zip",
  7077. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7078. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7079. "shasum": "",
  7080. "mirrors": [
  7081. {
  7082. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7083. "preferred": true
  7084. }
  7085. ]
  7086. },
  7087. "require": {
  7088. "php": ">=8.0.2",
  7089. "symfony/polyfill-mbstring": "~1.0",
  7090. "symfony/translation-contracts": "^2.3|^3.0"
  7091. },
  7092. "conflict": {
  7093. "symfony/config": "<5.4",
  7094. "symfony/console": "<5.4",
  7095. "symfony/dependency-injection": "<5.4",
  7096. "symfony/http-kernel": "<5.4",
  7097. "symfony/twig-bundle": "<5.4",
  7098. "symfony/yaml": "<5.4"
  7099. },
  7100. "provide": {
  7101. "symfony/translation-implementation": "2.3|3.0"
  7102. },
  7103. "require-dev": {
  7104. "psr/log": "^1|^2|^3",
  7105. "symfony/config": "^5.4|^6.0",
  7106. "symfony/console": "^5.4|^6.0",
  7107. "symfony/dependency-injection": "^5.4|^6.0",
  7108. "symfony/finder": "^5.4|^6.0",
  7109. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7110. "symfony/http-kernel": "^5.4|^6.0",
  7111. "symfony/intl": "^5.4|^6.0",
  7112. "symfony/polyfill-intl-icu": "^1.21",
  7113. "symfony/service-contracts": "^1.1.2|^2|^3",
  7114. "symfony/yaml": "^5.4|^6.0"
  7115. },
  7116. "suggest": {
  7117. "psr/log-implementation": "To use logging capability in translator",
  7118. "symfony/config": "",
  7119. "symfony/yaml": ""
  7120. },
  7121. "type": "library",
  7122. "autoload": {
  7123. "files": [
  7124. "Resources/functions.php"
  7125. ],
  7126. "psr-4": {
  7127. "Symfony\\Component\\Translation\\": ""
  7128. },
  7129. "exclude-from-classmap": [
  7130. "/Tests/"
  7131. ]
  7132. },
  7133. "notification-url": "https://packagist.org/downloads/",
  7134. "license": [
  7135. "MIT"
  7136. ],
  7137. "authors": [
  7138. {
  7139. "name": "Fabien Potencier",
  7140. "email": "fabien@symfony.com"
  7141. },
  7142. {
  7143. "name": "Symfony Community",
  7144. "homepage": "https://symfony.com/contributors"
  7145. }
  7146. ],
  7147. "description": "Provides tools to internationalize your application",
  7148. "homepage": "https://symfony.com",
  7149. "support": {
  7150. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  7151. },
  7152. "funding": [
  7153. {
  7154. "url": "https://symfony.com/sponsor",
  7155. "type": "custom"
  7156. },
  7157. {
  7158. "url": "https://github.com/fabpot",
  7159. "type": "github"
  7160. },
  7161. {
  7162. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7163. "type": "tidelift"
  7164. }
  7165. ],
  7166. "time": "2023-01-01T08:36:10+00:00"
  7167. },
  7168. {
  7169. "name": "symfony/translation-contracts",
  7170. "version": "v3.0.2",
  7171. "source": {
  7172. "type": "git",
  7173. "url": "https://github.com/symfony/translation-contracts.git",
  7174. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  7175. },
  7176. "dist": {
  7177. "type": "zip",
  7178. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7179. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7180. "shasum": "",
  7181. "mirrors": [
  7182. {
  7183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7184. "preferred": true
  7185. }
  7186. ]
  7187. },
  7188. "require": {
  7189. "php": ">=8.0.2"
  7190. },
  7191. "suggest": {
  7192. "symfony/translation-implementation": ""
  7193. },
  7194. "type": "library",
  7195. "extra": {
  7196. "branch-alias": {
  7197. "dev-main": "3.0-dev"
  7198. },
  7199. "thanks": {
  7200. "name": "symfony/contracts",
  7201. "url": "https://github.com/symfony/contracts"
  7202. }
  7203. },
  7204. "autoload": {
  7205. "psr-4": {
  7206. "Symfony\\Contracts\\Translation\\": ""
  7207. }
  7208. },
  7209. "notification-url": "https://packagist.org/downloads/",
  7210. "license": [
  7211. "MIT"
  7212. ],
  7213. "authors": [
  7214. {
  7215. "name": "Nicolas Grekas",
  7216. "email": "p@tchwork.com"
  7217. },
  7218. {
  7219. "name": "Symfony Community",
  7220. "homepage": "https://symfony.com/contributors"
  7221. }
  7222. ],
  7223. "description": "Generic abstractions related to translation",
  7224. "homepage": "https://symfony.com",
  7225. "keywords": [
  7226. "abstractions",
  7227. "contracts",
  7228. "decoupling",
  7229. "interfaces",
  7230. "interoperability",
  7231. "standards"
  7232. ],
  7233. "support": {
  7234. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  7235. },
  7236. "funding": [
  7237. {
  7238. "url": "https://symfony.com/sponsor",
  7239. "type": "custom"
  7240. },
  7241. {
  7242. "url": "https://github.com/fabpot",
  7243. "type": "github"
  7244. },
  7245. {
  7246. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7247. "type": "tidelift"
  7248. }
  7249. ],
  7250. "time": "2022-06-27T17:10:44+00:00"
  7251. },
  7252. {
  7253. "name": "symfony/uid",
  7254. "version": "v6.0.19",
  7255. "source": {
  7256. "type": "git",
  7257. "url": "https://github.com/symfony/uid.git",
  7258. "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d"
  7259. },
  7260. "dist": {
  7261. "type": "zip",
  7262. "url": "https://api.github.com/repos/symfony/uid/zipball/6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d",
  7263. "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d",
  7264. "shasum": "",
  7265. "mirrors": [
  7266. {
  7267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7268. "preferred": true
  7269. }
  7270. ]
  7271. },
  7272. "require": {
  7273. "php": ">=8.0.2",
  7274. "symfony/polyfill-uuid": "^1.15"
  7275. },
  7276. "require-dev": {
  7277. "symfony/console": "^5.4|^6.0"
  7278. },
  7279. "type": "library",
  7280. "autoload": {
  7281. "psr-4": {
  7282. "Symfony\\Component\\Uid\\": ""
  7283. },
  7284. "exclude-from-classmap": [
  7285. "/Tests/"
  7286. ]
  7287. },
  7288. "notification-url": "https://packagist.org/downloads/",
  7289. "license": [
  7290. "MIT"
  7291. ],
  7292. "authors": [
  7293. {
  7294. "name": "Grégoire Pineau",
  7295. "email": "lyrixx@lyrixx.info"
  7296. },
  7297. {
  7298. "name": "Nicolas Grekas",
  7299. "email": "p@tchwork.com"
  7300. },
  7301. {
  7302. "name": "Symfony Community",
  7303. "homepage": "https://symfony.com/contributors"
  7304. }
  7305. ],
  7306. "description": "Provides an object-oriented API to generate and represent UIDs",
  7307. "homepage": "https://symfony.com",
  7308. "keywords": [
  7309. "UID",
  7310. "ulid",
  7311. "uuid"
  7312. ],
  7313. "support": {
  7314. "source": "https://github.com/symfony/uid/tree/v6.0.19"
  7315. },
  7316. "funding": [
  7317. {
  7318. "url": "https://symfony.com/sponsor",
  7319. "type": "custom"
  7320. },
  7321. {
  7322. "url": "https://github.com/fabpot",
  7323. "type": "github"
  7324. },
  7325. {
  7326. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7327. "type": "tidelift"
  7328. }
  7329. ],
  7330. "time": "2023-01-01T08:36:10+00:00"
  7331. },
  7332. {
  7333. "name": "symfony/var-dumper",
  7334. "version": "v6.0.19",
  7335. "source": {
  7336. "type": "git",
  7337. "url": "https://github.com/symfony/var-dumper.git",
  7338. "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52"
  7339. },
  7340. "dist": {
  7341. "type": "zip",
  7342. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/eb980457fa6899840fe1687e8627a03a7d8a3d52",
  7343. "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52",
  7344. "shasum": "",
  7345. "mirrors": [
  7346. {
  7347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7348. "preferred": true
  7349. }
  7350. ]
  7351. },
  7352. "require": {
  7353. "php": ">=8.0.2",
  7354. "symfony/polyfill-mbstring": "~1.0"
  7355. },
  7356. "conflict": {
  7357. "phpunit/phpunit": "<5.4.3",
  7358. "symfony/console": "<5.4"
  7359. },
  7360. "require-dev": {
  7361. "ext-iconv": "*",
  7362. "symfony/console": "^5.4|^6.0",
  7363. "symfony/process": "^5.4|^6.0",
  7364. "symfony/uid": "^5.4|^6.0",
  7365. "twig/twig": "^2.13|^3.0.4"
  7366. },
  7367. "suggest": {
  7368. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7369. "ext-intl": "To show region name in time zone dump",
  7370. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7371. },
  7372. "bin": [
  7373. "Resources/bin/var-dump-server"
  7374. ],
  7375. "type": "library",
  7376. "autoload": {
  7377. "files": [
  7378. "Resources/functions/dump.php"
  7379. ],
  7380. "psr-4": {
  7381. "Symfony\\Component\\VarDumper\\": ""
  7382. },
  7383. "exclude-from-classmap": [
  7384. "/Tests/"
  7385. ]
  7386. },
  7387. "notification-url": "https://packagist.org/downloads/",
  7388. "license": [
  7389. "MIT"
  7390. ],
  7391. "authors": [
  7392. {
  7393. "name": "Nicolas Grekas",
  7394. "email": "p@tchwork.com"
  7395. },
  7396. {
  7397. "name": "Symfony Community",
  7398. "homepage": "https://symfony.com/contributors"
  7399. }
  7400. ],
  7401. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7402. "homepage": "https://symfony.com",
  7403. "keywords": [
  7404. "debug",
  7405. "dump"
  7406. ],
  7407. "support": {
  7408. "source": "https://github.com/symfony/var-dumper/tree/v6.0.19"
  7409. },
  7410. "funding": [
  7411. {
  7412. "url": "https://symfony.com/sponsor",
  7413. "type": "custom"
  7414. },
  7415. {
  7416. "url": "https://github.com/fabpot",
  7417. "type": "github"
  7418. },
  7419. {
  7420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7421. "type": "tidelift"
  7422. }
  7423. ],
  7424. "time": "2023-01-20T17:44:14+00:00"
  7425. },
  7426. {
  7427. "name": "symfony/var-exporter",
  7428. "version": "v6.0.19",
  7429. "source": {
  7430. "type": "git",
  7431. "url": "https://github.com/symfony/var-exporter.git",
  7432. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2"
  7433. },
  7434. "dist": {
  7435. "type": "zip",
  7436. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  7437. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  7438. "shasum": "",
  7439. "mirrors": [
  7440. {
  7441. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7442. "preferred": true
  7443. }
  7444. ]
  7445. },
  7446. "require": {
  7447. "php": ">=8.0.2"
  7448. },
  7449. "require-dev": {
  7450. "symfony/var-dumper": "^5.4|^6.0"
  7451. },
  7452. "type": "library",
  7453. "autoload": {
  7454. "psr-4": {
  7455. "Symfony\\Component\\VarExporter\\": ""
  7456. },
  7457. "exclude-from-classmap": [
  7458. "/Tests/"
  7459. ]
  7460. },
  7461. "notification-url": "https://packagist.org/downloads/",
  7462. "license": [
  7463. "MIT"
  7464. ],
  7465. "authors": [
  7466. {
  7467. "name": "Nicolas Grekas",
  7468. "email": "p@tchwork.com"
  7469. },
  7470. {
  7471. "name": "Symfony Community",
  7472. "homepage": "https://symfony.com/contributors"
  7473. }
  7474. ],
  7475. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7476. "homepage": "https://symfony.com",
  7477. "keywords": [
  7478. "clone",
  7479. "construct",
  7480. "export",
  7481. "hydrate",
  7482. "instantiate",
  7483. "serialize"
  7484. ],
  7485. "support": {
  7486. "source": "https://github.com/symfony/var-exporter/tree/v6.0.19"
  7487. },
  7488. "funding": [
  7489. {
  7490. "url": "https://symfony.com/sponsor",
  7491. "type": "custom"
  7492. },
  7493. {
  7494. "url": "https://github.com/fabpot",
  7495. "type": "github"
  7496. },
  7497. {
  7498. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7499. "type": "tidelift"
  7500. }
  7501. ],
  7502. "time": "2023-01-13T08:34:10+00:00"
  7503. },
  7504. {
  7505. "name": "th3n3rd/cartesian-product",
  7506. "version": "v0.3.0",
  7507. "source": {
  7508. "type": "git",
  7509. "url": "https://github.com/th3n3rd/cartesian-product.git",
  7510. "reference": "78b22f4feb4ef3efc1e99dfe5d932e17024b035d"
  7511. },
  7512. "dist": {
  7513. "type": "zip",
  7514. "url": "https://api.github.com/repos/th3n3rd/cartesian-product/zipball/78b22f4feb4ef3efc1e99dfe5d932e17024b035d",
  7515. "reference": "78b22f4feb4ef3efc1e99dfe5d932e17024b035d",
  7516. "shasum": "",
  7517. "mirrors": [
  7518. {
  7519. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7520. "preferred": true
  7521. }
  7522. ]
  7523. },
  7524. "require": {
  7525. "php": ">=5.3.3"
  7526. },
  7527. "require-dev": {
  7528. "devster/ubench": "~1.1",
  7529. "phpunit/phpunit": "~4.4"
  7530. },
  7531. "type": "library",
  7532. "extra": {
  7533. "branch-alias": {
  7534. "dev-master": "0.3-dev"
  7535. }
  7536. },
  7537. "autoload": {
  7538. "psr-4": {
  7539. "Nerd\\CartesianProduct\\": "src"
  7540. }
  7541. },
  7542. "notification-url": "https://packagist.org/downloads/",
  7543. "license": [
  7544. "MIT"
  7545. ],
  7546. "authors": [
  7547. {
  7548. "name": "Marco Garofalo",
  7549. "email": "marcogarofalo.personal@gmail.com"
  7550. }
  7551. ],
  7552. "description": "Memory efficient Cartesian Product implementation",
  7553. "keywords": [
  7554. "cartesian",
  7555. "product"
  7556. ],
  7557. "support": {
  7558. "issues": "https://github.com/th3n3rd/cartesian-product/issues",
  7559. "source": "https://github.com/th3n3rd/cartesian-product/tree/master"
  7560. },
  7561. "time": "2015-05-30T08:42:25+00:00"
  7562. },
  7563. {
  7564. "name": "thenorthmemory/xml",
  7565. "version": "1.1.1",
  7566. "source": {
  7567. "type": "git",
  7568. "url": "https://github.com/TheNorthMemory/xml.git",
  7569. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb"
  7570. },
  7571. "dist": {
  7572. "type": "zip",
  7573. "url": "https://api.github.com/repos/TheNorthMemory/xml/zipball/6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  7574. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  7575. "shasum": "",
  7576. "mirrors": [
  7577. {
  7578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7579. "preferred": true
  7580. }
  7581. ]
  7582. },
  7583. "require": {
  7584. "ext-libxml": "*",
  7585. "ext-simplexml": "*",
  7586. "php": ">=7.1.2"
  7587. },
  7588. "require-dev": {
  7589. "phpstan/phpstan": "^0.12.89 || ^1.0",
  7590. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  7591. },
  7592. "type": "library",
  7593. "autoload": {
  7594. "psr-4": {
  7595. "TheNorthMemory\\Xml\\": "src/"
  7596. }
  7597. },
  7598. "notification-url": "https://packagist.org/downloads/",
  7599. "license": [
  7600. "Apache-2.0"
  7601. ],
  7602. "authors": [
  7603. {
  7604. "name": "James ZHANG",
  7605. "homepage": "https://github.com/TheNorthMemory"
  7606. }
  7607. ],
  7608. "description": "A wrapper of the XML parser and builder",
  7609. "homepage": "https://github.com/TheNorthMemory/xml",
  7610. "keywords": [
  7611. "xml-builder",
  7612. "xml-parser"
  7613. ],
  7614. "support": {
  7615. "issues": "https://github.com/TheNorthMemory/xml/issues",
  7616. "source": "https://github.com/TheNorthMemory/xml/tree/1.1.1"
  7617. },
  7618. "time": "2023-01-15T06:01:13+00:00"
  7619. },
  7620. {
  7621. "name": "tijsverkoyen/css-to-inline-styles",
  7622. "version": "2.2.6",
  7623. "source": {
  7624. "type": "git",
  7625. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7626. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  7627. },
  7628. "dist": {
  7629. "type": "zip",
  7630. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7631. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7632. "shasum": "",
  7633. "mirrors": [
  7634. {
  7635. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7636. "preferred": true
  7637. }
  7638. ]
  7639. },
  7640. "require": {
  7641. "ext-dom": "*",
  7642. "ext-libxml": "*",
  7643. "php": "^5.5 || ^7.0 || ^8.0",
  7644. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7645. },
  7646. "require-dev": {
  7647. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7648. },
  7649. "type": "library",
  7650. "extra": {
  7651. "branch-alias": {
  7652. "dev-master": "2.2.x-dev"
  7653. }
  7654. },
  7655. "autoload": {
  7656. "psr-4": {
  7657. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7658. }
  7659. },
  7660. "notification-url": "https://packagist.org/downloads/",
  7661. "license": [
  7662. "BSD-3-Clause"
  7663. ],
  7664. "authors": [
  7665. {
  7666. "name": "Tijs Verkoyen",
  7667. "email": "css_to_inline_styles@verkoyen.eu",
  7668. "role": "Developer"
  7669. }
  7670. ],
  7671. "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.",
  7672. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7673. "support": {
  7674. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7675. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  7676. },
  7677. "time": "2023-01-03T09:29:04+00:00"
  7678. },
  7679. {
  7680. "name": "tuupola/base62",
  7681. "version": "2.1.0",
  7682. "source": {
  7683. "type": "git",
  7684. "url": "https://github.com/tuupola/base62.git",
  7685. "reference": "7406145a9cf8c567cd35ad7358d1b24828cbcfdb"
  7686. },
  7687. "dist": {
  7688. "type": "zip",
  7689. "url": "https://api.github.com/repos/tuupola/base62/zipball/7406145a9cf8c567cd35ad7358d1b24828cbcfdb",
  7690. "reference": "7406145a9cf8c567cd35ad7358d1b24828cbcfdb",
  7691. "shasum": "",
  7692. "mirrors": [
  7693. {
  7694. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7695. "preferred": true
  7696. }
  7697. ]
  7698. },
  7699. "require": {
  7700. "php": "^7.1|^8.0"
  7701. },
  7702. "require-dev": {
  7703. "overtrue/phplint": "^1.0",
  7704. "phpbench/phpbench": "^0.15.0",
  7705. "phpstan/phpstan": "^0.12.38",
  7706. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  7707. "squizlabs/php_codesniffer": "^3.0"
  7708. },
  7709. "suggest": {
  7710. "ext-gmp": "GMP extension provides the fastest encoding and decoding."
  7711. },
  7712. "type": "library",
  7713. "autoload": {
  7714. "psr-4": {
  7715. "Tuupola\\": "src"
  7716. }
  7717. },
  7718. "notification-url": "https://packagist.org/downloads/",
  7719. "license": [
  7720. "MIT"
  7721. ],
  7722. "authors": [
  7723. {
  7724. "name": "Mika Tuupola",
  7725. "email": "tuupola@appelsiini.net",
  7726. "homepage": "https://appelsiini.net/",
  7727. "role": "Developer"
  7728. }
  7729. ],
  7730. "description": "Base62 encoder and decoder for arbitrary data",
  7731. "homepage": "https://github.com/tuupola/base62",
  7732. "keywords": [
  7733. "base62"
  7734. ],
  7735. "support": {
  7736. "issues": "https://github.com/tuupola/base62/issues",
  7737. "source": "https://github.com/tuupola/base62/tree/2.1.0"
  7738. },
  7739. "funding": [
  7740. {
  7741. "url": "https://github.com/tuupola",
  7742. "type": "github"
  7743. }
  7744. ],
  7745. "time": "2020-09-09T15:05:36+00:00"
  7746. },
  7747. {
  7748. "name": "vlucas/phpdotenv",
  7749. "version": "v5.4.1",
  7750. "source": {
  7751. "type": "git",
  7752. "url": "https://github.com/vlucas/phpdotenv.git",
  7753. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  7754. },
  7755. "dist": {
  7756. "type": "zip",
  7757. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  7758. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  7759. "shasum": "",
  7760. "mirrors": [
  7761. {
  7762. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7763. "preferred": true
  7764. }
  7765. ]
  7766. },
  7767. "require": {
  7768. "ext-pcre": "*",
  7769. "graham-campbell/result-type": "^1.0.2",
  7770. "php": "^7.1.3 || ^8.0",
  7771. "phpoption/phpoption": "^1.8",
  7772. "symfony/polyfill-ctype": "^1.23",
  7773. "symfony/polyfill-mbstring": "^1.23.1",
  7774. "symfony/polyfill-php80": "^1.23.1"
  7775. },
  7776. "require-dev": {
  7777. "bamarni/composer-bin-plugin": "^1.4.1",
  7778. "ext-filter": "*",
  7779. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  7780. },
  7781. "suggest": {
  7782. "ext-filter": "Required to use the boolean validator."
  7783. },
  7784. "type": "library",
  7785. "extra": {
  7786. "branch-alias": {
  7787. "dev-master": "5.4-dev"
  7788. }
  7789. },
  7790. "autoload": {
  7791. "psr-4": {
  7792. "Dotenv\\": "src/"
  7793. }
  7794. },
  7795. "notification-url": "https://packagist.org/downloads/",
  7796. "license": [
  7797. "BSD-3-Clause"
  7798. ],
  7799. "authors": [
  7800. {
  7801. "name": "Graham Campbell",
  7802. "email": "hello@gjcampbell.co.uk",
  7803. "homepage": "https://github.com/GrahamCampbell"
  7804. },
  7805. {
  7806. "name": "Vance Lucas",
  7807. "email": "vance@vancelucas.com",
  7808. "homepage": "https://github.com/vlucas"
  7809. }
  7810. ],
  7811. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7812. "keywords": [
  7813. "dotenv",
  7814. "env",
  7815. "environment"
  7816. ],
  7817. "support": {
  7818. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7819. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  7820. },
  7821. "funding": [
  7822. {
  7823. "url": "https://github.com/GrahamCampbell",
  7824. "type": "github"
  7825. },
  7826. {
  7827. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7828. "type": "tidelift"
  7829. }
  7830. ],
  7831. "time": "2021-12-12T23:22:04+00:00"
  7832. },
  7833. {
  7834. "name": "voku/portable-ascii",
  7835. "version": "2.0.1",
  7836. "source": {
  7837. "type": "git",
  7838. "url": "https://github.com/voku/portable-ascii.git",
  7839. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  7840. },
  7841. "dist": {
  7842. "type": "zip",
  7843. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  7844. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  7845. "shasum": "",
  7846. "mirrors": [
  7847. {
  7848. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7849. "preferred": true
  7850. }
  7851. ]
  7852. },
  7853. "require": {
  7854. "php": ">=7.0.0"
  7855. },
  7856. "require-dev": {
  7857. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7858. },
  7859. "suggest": {
  7860. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7861. },
  7862. "type": "library",
  7863. "autoload": {
  7864. "psr-4": {
  7865. "voku\\": "src/voku/"
  7866. }
  7867. },
  7868. "notification-url": "https://packagist.org/downloads/",
  7869. "license": [
  7870. "MIT"
  7871. ],
  7872. "authors": [
  7873. {
  7874. "name": "Lars Moelleken",
  7875. "homepage": "http://www.moelleken.org/"
  7876. }
  7877. ],
  7878. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7879. "homepage": "https://github.com/voku/portable-ascii",
  7880. "keywords": [
  7881. "ascii",
  7882. "clean",
  7883. "php"
  7884. ],
  7885. "support": {
  7886. "issues": "https://github.com/voku/portable-ascii/issues",
  7887. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  7888. },
  7889. "funding": [
  7890. {
  7891. "url": "https://www.paypal.me/moelleken",
  7892. "type": "custom"
  7893. },
  7894. {
  7895. "url": "https://github.com/voku",
  7896. "type": "github"
  7897. },
  7898. {
  7899. "url": "https://opencollective.com/portable-ascii",
  7900. "type": "open_collective"
  7901. },
  7902. {
  7903. "url": "https://www.patreon.com/voku",
  7904. "type": "patreon"
  7905. },
  7906. {
  7907. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7908. "type": "tidelift"
  7909. }
  7910. ],
  7911. "time": "2022-03-08T17:03:00+00:00"
  7912. },
  7913. {
  7914. "name": "w7corp/easywechat",
  7915. "version": "6.8.0",
  7916. "source": {
  7917. "type": "git",
  7918. "url": "https://github.com/w7corp/easywechat.git",
  7919. "reference": "60f0b4ba2ac3144df1a2291193daa34beb949d26"
  7920. },
  7921. "dist": {
  7922. "type": "zip",
  7923. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/60f0b4ba2ac3144df1a2291193daa34beb949d26",
  7924. "reference": "60f0b4ba2ac3144df1a2291193daa34beb949d26",
  7925. "shasum": "",
  7926. "mirrors": [
  7927. {
  7928. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7929. "preferred": true
  7930. }
  7931. ]
  7932. },
  7933. "require": {
  7934. "ext-curl": "*",
  7935. "ext-fileinfo": "*",
  7936. "ext-libxml": "*",
  7937. "ext-openssl": "*",
  7938. "ext-simplexml": "*",
  7939. "ext-sodium": "*",
  7940. "monolog/monolog": "^2.2",
  7941. "nyholm/psr7": "^1.5",
  7942. "nyholm/psr7-server": "^1.0",
  7943. "overtrue/socialite": "^3.5|^4.0.1",
  7944. "php": ">=8.0.2",
  7945. "psr/http-client": "^1.0",
  7946. "psr/simple-cache": "^1.0|^2.0|^3.0",
  7947. "symfony/cache": "^5.4|^6.0",
  7948. "symfony/http-client": "^5.4|^6.0",
  7949. "symfony/http-foundation": "^5.4|^6.0",
  7950. "symfony/mime": "^5.4|^6.0",
  7951. "symfony/polyfill-php81": "^1.25",
  7952. "symfony/psr-http-message-bridge": "^2.1.2",
  7953. "thenorthmemory/xml": "^1.0"
  7954. },
  7955. "require-dev": {
  7956. "brainmaestro/composer-git-hooks": "^2.8",
  7957. "jetbrains/phpstorm-attributes": "^1.0",
  7958. "laravel/pint": "^1.2",
  7959. "mikey179/vfsstream": "^1.6",
  7960. "mockery/mockery": "^1.4.4",
  7961. "phpstan/phpstan": "^1.0",
  7962. "phpunit/phpunit": "^9.5",
  7963. "symfony/var-dumper": "^5.2"
  7964. },
  7965. "type": "library",
  7966. "extra": {
  7967. "hooks": {
  7968. "pre-commit": [
  7969. "composer check-style",
  7970. "composer phpstan",
  7971. "composer test"
  7972. ],
  7973. "pre-push": [
  7974. "composer check-style"
  7975. ],
  7976. "config": {
  7977. "stop-on-failure": [
  7978. "pre-commit",
  7979. "pre-push"
  7980. ]
  7981. }
  7982. }
  7983. },
  7984. "autoload": {
  7985. "psr-4": {
  7986. "EasyWeChat\\": "src/"
  7987. }
  7988. },
  7989. "notification-url": "https://packagist.org/downloads/",
  7990. "license": [
  7991. "MIT"
  7992. ],
  7993. "authors": [
  7994. {
  7995. "name": "overtrue",
  7996. "email": "anzhengchao@gmail.com"
  7997. }
  7998. ],
  7999. "description": "微信SDK",
  8000. "keywords": [
  8001. "easywechat",
  8002. "sdk",
  8003. "wechat",
  8004. "weixin",
  8005. "weixin-sdk"
  8006. ],
  8007. "support": {
  8008. "issues": "https://github.com/w7corp/easywechat/issues",
  8009. "source": "https://github.com/w7corp/easywechat/tree/6.8.0"
  8010. },
  8011. "funding": [
  8012. {
  8013. "url": "https://github.com/overtrue",
  8014. "type": "github"
  8015. }
  8016. ],
  8017. "time": "2022-09-25T13:05:18+00:00"
  8018. },
  8019. {
  8020. "name": "webmozart/assert",
  8021. "version": "1.11.0",
  8022. "source": {
  8023. "type": "git",
  8024. "url": "https://github.com/webmozarts/assert.git",
  8025. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8026. },
  8027. "dist": {
  8028. "type": "zip",
  8029. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8030. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8031. "shasum": "",
  8032. "mirrors": [
  8033. {
  8034. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8035. "preferred": true
  8036. }
  8037. ]
  8038. },
  8039. "require": {
  8040. "ext-ctype": "*",
  8041. "php": "^7.2 || ^8.0"
  8042. },
  8043. "conflict": {
  8044. "phpstan/phpstan": "<0.12.20",
  8045. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8046. },
  8047. "require-dev": {
  8048. "phpunit/phpunit": "^8.5.13"
  8049. },
  8050. "type": "library",
  8051. "extra": {
  8052. "branch-alias": {
  8053. "dev-master": "1.10-dev"
  8054. }
  8055. },
  8056. "autoload": {
  8057. "psr-4": {
  8058. "Webmozart\\Assert\\": "src/"
  8059. }
  8060. },
  8061. "notification-url": "https://packagist.org/downloads/",
  8062. "license": [
  8063. "MIT"
  8064. ],
  8065. "authors": [
  8066. {
  8067. "name": "Bernhard Schussek",
  8068. "email": "bschussek@gmail.com"
  8069. }
  8070. ],
  8071. "description": "Assertions to validate method input/output with nice error messages.",
  8072. "keywords": [
  8073. "assert",
  8074. "check",
  8075. "validate"
  8076. ],
  8077. "support": {
  8078. "issues": "https://github.com/webmozarts/assert/issues",
  8079. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8080. },
  8081. "time": "2022-06-03T18:03:27+00:00"
  8082. }
  8083. ],
  8084. "packages-dev": [
  8085. {
  8086. "name": "barryvdh/laravel-ide-helper",
  8087. "version": "v2.12.3",
  8088. "source": {
  8089. "type": "git",
  8090. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  8091. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550"
  8092. },
  8093. "dist": {
  8094. "type": "zip",
  8095. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  8096. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  8097. "shasum": "",
  8098. "mirrors": [
  8099. {
  8100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8101. "preferred": true
  8102. }
  8103. ]
  8104. },
  8105. "require": {
  8106. "barryvdh/reflection-docblock": "^2.0.6",
  8107. "composer/pcre": "^1 || ^2 || ^3",
  8108. "doctrine/dbal": "^2.6 || ^3",
  8109. "ext-json": "*",
  8110. "illuminate/console": "^8 || ^9",
  8111. "illuminate/filesystem": "^8 || ^9",
  8112. "illuminate/support": "^8 || ^9",
  8113. "nikic/php-parser": "^4.7",
  8114. "php": "^7.3 || ^8.0",
  8115. "phpdocumentor/type-resolver": "^1.1.0"
  8116. },
  8117. "require-dev": {
  8118. "ext-pdo_sqlite": "*",
  8119. "friendsofphp/php-cs-fixer": "^2",
  8120. "illuminate/config": "^8 || ^9",
  8121. "illuminate/view": "^8 || ^9",
  8122. "mockery/mockery": "^1.4",
  8123. "orchestra/testbench": "^6 || ^7",
  8124. "phpunit/phpunit": "^8.5 || ^9",
  8125. "spatie/phpunit-snapshot-assertions": "^3 || ^4",
  8126. "vimeo/psalm": "^3.12"
  8127. },
  8128. "suggest": {
  8129. "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9)."
  8130. },
  8131. "type": "library",
  8132. "extra": {
  8133. "branch-alias": {
  8134. "dev-master": "2.12-dev"
  8135. },
  8136. "laravel": {
  8137. "providers": [
  8138. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  8139. ]
  8140. }
  8141. },
  8142. "autoload": {
  8143. "psr-4": {
  8144. "Barryvdh\\LaravelIdeHelper\\": "src"
  8145. }
  8146. },
  8147. "notification-url": "https://packagist.org/downloads/",
  8148. "license": [
  8149. "MIT"
  8150. ],
  8151. "authors": [
  8152. {
  8153. "name": "Barry vd. Heuvel",
  8154. "email": "barryvdh@gmail.com"
  8155. }
  8156. ],
  8157. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  8158. "keywords": [
  8159. "autocomplete",
  8160. "codeintel",
  8161. "helper",
  8162. "ide",
  8163. "laravel",
  8164. "netbeans",
  8165. "phpdoc",
  8166. "phpstorm",
  8167. "sublime"
  8168. ],
  8169. "support": {
  8170. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  8171. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.12.3"
  8172. },
  8173. "funding": [
  8174. {
  8175. "url": "https://fruitcake.nl",
  8176. "type": "custom"
  8177. },
  8178. {
  8179. "url": "https://github.com/barryvdh",
  8180. "type": "github"
  8181. }
  8182. ],
  8183. "time": "2022-03-06T14:33:42+00:00"
  8184. },
  8185. {
  8186. "name": "barryvdh/reflection-docblock",
  8187. "version": "v2.1.0",
  8188. "source": {
  8189. "type": "git",
  8190. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  8191. "reference": "bf44b757feb8ba1734659029357646466ded673e"
  8192. },
  8193. "dist": {
  8194. "type": "zip",
  8195. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/bf44b757feb8ba1734659029357646466ded673e",
  8196. "reference": "bf44b757feb8ba1734659029357646466ded673e",
  8197. "shasum": "",
  8198. "mirrors": [
  8199. {
  8200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8201. "preferred": true
  8202. }
  8203. ]
  8204. },
  8205. "require": {
  8206. "php": ">=5.3.3"
  8207. },
  8208. "require-dev": {
  8209. "phpunit/phpunit": "^8.5.14|^9"
  8210. },
  8211. "suggest": {
  8212. "dflydev/markdown": "~1.0",
  8213. "erusev/parsedown": "~1.0"
  8214. },
  8215. "type": "library",
  8216. "extra": {
  8217. "branch-alias": {
  8218. "dev-master": "2.0.x-dev"
  8219. }
  8220. },
  8221. "autoload": {
  8222. "psr-0": {
  8223. "Barryvdh": [
  8224. "src/"
  8225. ]
  8226. }
  8227. },
  8228. "notification-url": "https://packagist.org/downloads/",
  8229. "license": [
  8230. "MIT"
  8231. ],
  8232. "authors": [
  8233. {
  8234. "name": "Mike van Riel",
  8235. "email": "mike.vanriel@naenius.com"
  8236. }
  8237. ],
  8238. "support": {
  8239. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.1.0"
  8240. },
  8241. "time": "2022-10-31T15:35:43+00:00"
  8242. },
  8243. {
  8244. "name": "composer/pcre",
  8245. "version": "3.0.2",
  8246. "source": {
  8247. "type": "git",
  8248. "url": "https://github.com/composer/pcre.git",
  8249. "reference": "4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb"
  8250. },
  8251. "dist": {
  8252. "type": "zip",
  8253. "url": "https://api.github.com/repos/composer/pcre/zipball/4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb",
  8254. "reference": "4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb",
  8255. "shasum": "",
  8256. "mirrors": [
  8257. {
  8258. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8259. "preferred": true
  8260. }
  8261. ]
  8262. },
  8263. "require": {
  8264. "php": "^7.4 || ^8.0"
  8265. },
  8266. "require-dev": {
  8267. "phpstan/phpstan": "^1.3",
  8268. "phpstan/phpstan-strict-rules": "^1.1",
  8269. "symfony/phpunit-bridge": "^5"
  8270. },
  8271. "type": "library",
  8272. "extra": {
  8273. "branch-alias": {
  8274. "dev-main": "3.x-dev"
  8275. }
  8276. },
  8277. "autoload": {
  8278. "psr-4": {
  8279. "Composer\\Pcre\\": "src"
  8280. }
  8281. },
  8282. "notification-url": "https://packagist.org/downloads/",
  8283. "license": [
  8284. "MIT"
  8285. ],
  8286. "authors": [
  8287. {
  8288. "name": "Jordi Boggiano",
  8289. "email": "j.boggiano@seld.be",
  8290. "homepage": "http://seld.be"
  8291. }
  8292. ],
  8293. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8294. "keywords": [
  8295. "PCRE",
  8296. "preg",
  8297. "regex",
  8298. "regular expression"
  8299. ],
  8300. "support": {
  8301. "issues": "https://github.com/composer/pcre/issues",
  8302. "source": "https://github.com/composer/pcre/tree/3.0.2"
  8303. },
  8304. "funding": [
  8305. {
  8306. "url": "https://packagist.com",
  8307. "type": "custom"
  8308. },
  8309. {
  8310. "url": "https://github.com/composer",
  8311. "type": "github"
  8312. },
  8313. {
  8314. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8315. "type": "tidelift"
  8316. }
  8317. ],
  8318. "time": "2022-11-03T20:24:16+00:00"
  8319. },
  8320. {
  8321. "name": "doctrine/cache",
  8322. "version": "2.2.0",
  8323. "source": {
  8324. "type": "git",
  8325. "url": "https://github.com/doctrine/cache.git",
  8326. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  8327. },
  8328. "dist": {
  8329. "type": "zip",
  8330. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  8331. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  8332. "shasum": "",
  8333. "mirrors": [
  8334. {
  8335. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8336. "preferred": true
  8337. }
  8338. ]
  8339. },
  8340. "require": {
  8341. "php": "~7.1 || ^8.0"
  8342. },
  8343. "conflict": {
  8344. "doctrine/common": ">2.2,<2.4"
  8345. },
  8346. "require-dev": {
  8347. "cache/integration-tests": "dev-master",
  8348. "doctrine/coding-standard": "^9",
  8349. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8350. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  8351. "symfony/cache": "^4.4 || ^5.4 || ^6",
  8352. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  8353. },
  8354. "type": "library",
  8355. "autoload": {
  8356. "psr-4": {
  8357. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  8358. }
  8359. },
  8360. "notification-url": "https://packagist.org/downloads/",
  8361. "license": [
  8362. "MIT"
  8363. ],
  8364. "authors": [
  8365. {
  8366. "name": "Guilherme Blanco",
  8367. "email": "guilhermeblanco@gmail.com"
  8368. },
  8369. {
  8370. "name": "Roman Borschel",
  8371. "email": "roman@code-factory.org"
  8372. },
  8373. {
  8374. "name": "Benjamin Eberlei",
  8375. "email": "kontakt@beberlei.de"
  8376. },
  8377. {
  8378. "name": "Jonathan Wage",
  8379. "email": "jonwage@gmail.com"
  8380. },
  8381. {
  8382. "name": "Johannes Schmitt",
  8383. "email": "schmittjoh@gmail.com"
  8384. }
  8385. ],
  8386. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  8387. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  8388. "keywords": [
  8389. "abstraction",
  8390. "apcu",
  8391. "cache",
  8392. "caching",
  8393. "couchdb",
  8394. "memcached",
  8395. "php",
  8396. "redis",
  8397. "xcache"
  8398. ],
  8399. "support": {
  8400. "issues": "https://github.com/doctrine/cache/issues",
  8401. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  8402. },
  8403. "funding": [
  8404. {
  8405. "url": "https://www.doctrine-project.org/sponsorship.html",
  8406. "type": "custom"
  8407. },
  8408. {
  8409. "url": "https://www.patreon.com/phpdoctrine",
  8410. "type": "patreon"
  8411. },
  8412. {
  8413. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  8414. "type": "tidelift"
  8415. }
  8416. ],
  8417. "time": "2022-05-20T20:07:39+00:00"
  8418. },
  8419. {
  8420. "name": "doctrine/dbal",
  8421. "version": "3.6.1",
  8422. "source": {
  8423. "type": "git",
  8424. "url": "https://github.com/doctrine/dbal.git",
  8425. "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e"
  8426. },
  8427. "dist": {
  8428. "type": "zip",
  8429. "url": "https://api.github.com/repos/doctrine/dbal/zipball/57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
  8430. "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
  8431. "shasum": "",
  8432. "mirrors": [
  8433. {
  8434. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8435. "preferred": true
  8436. }
  8437. ]
  8438. },
  8439. "require": {
  8440. "composer-runtime-api": "^2",
  8441. "doctrine/cache": "^1.11|^2.0",
  8442. "doctrine/deprecations": "^0.5.3|^1",
  8443. "doctrine/event-manager": "^1|^2",
  8444. "php": "^7.4 || ^8.0",
  8445. "psr/cache": "^1|^2|^3",
  8446. "psr/log": "^1|^2|^3"
  8447. },
  8448. "require-dev": {
  8449. "doctrine/coding-standard": "11.1.0",
  8450. "fig/log-test": "^1",
  8451. "jetbrains/phpstorm-stubs": "2022.3",
  8452. "phpstan/phpstan": "1.10.3",
  8453. "phpstan/phpstan-strict-rules": "^1.5",
  8454. "phpunit/phpunit": "9.6.4",
  8455. "psalm/plugin-phpunit": "0.18.4",
  8456. "squizlabs/php_codesniffer": "3.7.2",
  8457. "symfony/cache": "^5.4|^6.0",
  8458. "symfony/console": "^4.4|^5.4|^6.0",
  8459. "vimeo/psalm": "4.30.0"
  8460. },
  8461. "suggest": {
  8462. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  8463. },
  8464. "bin": [
  8465. "bin/doctrine-dbal"
  8466. ],
  8467. "type": "library",
  8468. "autoload": {
  8469. "psr-4": {
  8470. "Doctrine\\DBAL\\": "src"
  8471. }
  8472. },
  8473. "notification-url": "https://packagist.org/downloads/",
  8474. "license": [
  8475. "MIT"
  8476. ],
  8477. "authors": [
  8478. {
  8479. "name": "Guilherme Blanco",
  8480. "email": "guilhermeblanco@gmail.com"
  8481. },
  8482. {
  8483. "name": "Roman Borschel",
  8484. "email": "roman@code-factory.org"
  8485. },
  8486. {
  8487. "name": "Benjamin Eberlei",
  8488. "email": "kontakt@beberlei.de"
  8489. },
  8490. {
  8491. "name": "Jonathan Wage",
  8492. "email": "jonwage@gmail.com"
  8493. }
  8494. ],
  8495. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  8496. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  8497. "keywords": [
  8498. "abstraction",
  8499. "database",
  8500. "db2",
  8501. "dbal",
  8502. "mariadb",
  8503. "mssql",
  8504. "mysql",
  8505. "oci8",
  8506. "oracle",
  8507. "pdo",
  8508. "pgsql",
  8509. "postgresql",
  8510. "queryobject",
  8511. "sasql",
  8512. "sql",
  8513. "sqlite",
  8514. "sqlserver",
  8515. "sqlsrv"
  8516. ],
  8517. "support": {
  8518. "issues": "https://github.com/doctrine/dbal/issues",
  8519. "source": "https://github.com/doctrine/dbal/tree/3.6.1"
  8520. },
  8521. "funding": [
  8522. {
  8523. "url": "https://www.doctrine-project.org/sponsorship.html",
  8524. "type": "custom"
  8525. },
  8526. {
  8527. "url": "https://www.patreon.com/phpdoctrine",
  8528. "type": "patreon"
  8529. },
  8530. {
  8531. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  8532. "type": "tidelift"
  8533. }
  8534. ],
  8535. "time": "2023-03-02T19:26:24+00:00"
  8536. },
  8537. {
  8538. "name": "doctrine/event-manager",
  8539. "version": "1.1.1",
  8540. "source": {
  8541. "type": "git",
  8542. "url": "https://github.com/doctrine/event-manager.git",
  8543. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  8544. },
  8545. "dist": {
  8546. "type": "zip",
  8547. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  8548. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  8549. "shasum": "",
  8550. "mirrors": [
  8551. {
  8552. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8553. "preferred": true
  8554. }
  8555. ]
  8556. },
  8557. "require": {
  8558. "php": "^7.1 || ^8.0"
  8559. },
  8560. "conflict": {
  8561. "doctrine/common": "<2.9@dev"
  8562. },
  8563. "require-dev": {
  8564. "doctrine/coding-standard": "^6.0",
  8565. "phpunit/phpunit": "^7.0"
  8566. },
  8567. "type": "library",
  8568. "extra": {
  8569. "branch-alias": {
  8570. "dev-master": "1.0.x-dev"
  8571. }
  8572. },
  8573. "autoload": {
  8574. "psr-4": {
  8575. "Doctrine\\Common\\": "lib/Doctrine/Common"
  8576. }
  8577. },
  8578. "notification-url": "https://packagist.org/downloads/",
  8579. "license": [
  8580. "MIT"
  8581. ],
  8582. "authors": [
  8583. {
  8584. "name": "Guilherme Blanco",
  8585. "email": "guilhermeblanco@gmail.com"
  8586. },
  8587. {
  8588. "name": "Roman Borschel",
  8589. "email": "roman@code-factory.org"
  8590. },
  8591. {
  8592. "name": "Benjamin Eberlei",
  8593. "email": "kontakt@beberlei.de"
  8594. },
  8595. {
  8596. "name": "Jonathan Wage",
  8597. "email": "jonwage@gmail.com"
  8598. },
  8599. {
  8600. "name": "Johannes Schmitt",
  8601. "email": "schmittjoh@gmail.com"
  8602. },
  8603. {
  8604. "name": "Marco Pivetta",
  8605. "email": "ocramius@gmail.com"
  8606. }
  8607. ],
  8608. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  8609. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  8610. "keywords": [
  8611. "event",
  8612. "event dispatcher",
  8613. "event manager",
  8614. "event system",
  8615. "events"
  8616. ],
  8617. "support": {
  8618. "issues": "https://github.com/doctrine/event-manager/issues",
  8619. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  8620. },
  8621. "funding": [
  8622. {
  8623. "url": "https://www.doctrine-project.org/sponsorship.html",
  8624. "type": "custom"
  8625. },
  8626. {
  8627. "url": "https://www.patreon.com/phpdoctrine",
  8628. "type": "patreon"
  8629. },
  8630. {
  8631. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  8632. "type": "tidelift"
  8633. }
  8634. ],
  8635. "time": "2020-05-29T18:28:51+00:00"
  8636. },
  8637. {
  8638. "name": "doctrine/instantiator",
  8639. "version": "1.5.0",
  8640. "source": {
  8641. "type": "git",
  8642. "url": "https://github.com/doctrine/instantiator.git",
  8643. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8644. },
  8645. "dist": {
  8646. "type": "zip",
  8647. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8648. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8649. "shasum": "",
  8650. "mirrors": [
  8651. {
  8652. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8653. "preferred": true
  8654. }
  8655. ]
  8656. },
  8657. "require": {
  8658. "php": "^7.1 || ^8.0"
  8659. },
  8660. "require-dev": {
  8661. "doctrine/coding-standard": "^9 || ^11",
  8662. "ext-pdo": "*",
  8663. "ext-phar": "*",
  8664. "phpbench/phpbench": "^0.16 || ^1",
  8665. "phpstan/phpstan": "^1.4",
  8666. "phpstan/phpstan-phpunit": "^1",
  8667. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8668. "vimeo/psalm": "^4.30 || ^5.4"
  8669. },
  8670. "type": "library",
  8671. "autoload": {
  8672. "psr-4": {
  8673. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8674. }
  8675. },
  8676. "notification-url": "https://packagist.org/downloads/",
  8677. "license": [
  8678. "MIT"
  8679. ],
  8680. "authors": [
  8681. {
  8682. "name": "Marco Pivetta",
  8683. "email": "ocramius@gmail.com",
  8684. "homepage": "https://ocramius.github.io/"
  8685. }
  8686. ],
  8687. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8688. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8689. "keywords": [
  8690. "constructor",
  8691. "instantiate"
  8692. ],
  8693. "support": {
  8694. "issues": "https://github.com/doctrine/instantiator/issues",
  8695. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8696. },
  8697. "funding": [
  8698. {
  8699. "url": "https://www.doctrine-project.org/sponsorship.html",
  8700. "type": "custom"
  8701. },
  8702. {
  8703. "url": "https://www.patreon.com/phpdoctrine",
  8704. "type": "patreon"
  8705. },
  8706. {
  8707. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8708. "type": "tidelift"
  8709. }
  8710. ],
  8711. "time": "2022-12-30T00:15:36+00:00"
  8712. },
  8713. {
  8714. "name": "fakerphp/faker",
  8715. "version": "v1.21.0",
  8716. "source": {
  8717. "type": "git",
  8718. "url": "https://github.com/FakerPHP/Faker.git",
  8719. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d"
  8720. },
  8721. "dist": {
  8722. "type": "zip",
  8723. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d",
  8724. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d",
  8725. "shasum": "",
  8726. "mirrors": [
  8727. {
  8728. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8729. "preferred": true
  8730. }
  8731. ]
  8732. },
  8733. "require": {
  8734. "php": "^7.4 || ^8.0",
  8735. "psr/container": "^1.0 || ^2.0",
  8736. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8737. },
  8738. "conflict": {
  8739. "fzaninotto/faker": "*"
  8740. },
  8741. "require-dev": {
  8742. "bamarni/composer-bin-plugin": "^1.4.1",
  8743. "doctrine/persistence": "^1.3 || ^2.0",
  8744. "ext-intl": "*",
  8745. "phpunit/phpunit": "^9.5.26",
  8746. "symfony/phpunit-bridge": "^5.4.16"
  8747. },
  8748. "suggest": {
  8749. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8750. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8751. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8752. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8753. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8754. },
  8755. "type": "library",
  8756. "extra": {
  8757. "branch-alias": {
  8758. "dev-main": "v1.21-dev"
  8759. }
  8760. },
  8761. "autoload": {
  8762. "psr-4": {
  8763. "Faker\\": "src/Faker/"
  8764. }
  8765. },
  8766. "notification-url": "https://packagist.org/downloads/",
  8767. "license": [
  8768. "MIT"
  8769. ],
  8770. "authors": [
  8771. {
  8772. "name": "François Zaninotto"
  8773. }
  8774. ],
  8775. "description": "Faker is a PHP library that generates fake data for you.",
  8776. "keywords": [
  8777. "data",
  8778. "faker",
  8779. "fixtures"
  8780. ],
  8781. "support": {
  8782. "issues": "https://github.com/FakerPHP/Faker/issues",
  8783. "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0"
  8784. },
  8785. "time": "2022-12-13T13:54:32+00:00"
  8786. },
  8787. {
  8788. "name": "filp/whoops",
  8789. "version": "2.15.2",
  8790. "source": {
  8791. "type": "git",
  8792. "url": "https://github.com/filp/whoops.git",
  8793. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73"
  8794. },
  8795. "dist": {
  8796. "type": "zip",
  8797. "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  8798. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  8799. "shasum": "",
  8800. "mirrors": [
  8801. {
  8802. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8803. "preferred": true
  8804. }
  8805. ]
  8806. },
  8807. "require": {
  8808. "php": "^5.5.9 || ^7.0 || ^8.0",
  8809. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8810. },
  8811. "require-dev": {
  8812. "mockery/mockery": "^0.9 || ^1.0",
  8813. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8814. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8815. },
  8816. "suggest": {
  8817. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8818. "whoops/soap": "Formats errors as SOAP responses"
  8819. },
  8820. "type": "library",
  8821. "extra": {
  8822. "branch-alias": {
  8823. "dev-master": "2.7-dev"
  8824. }
  8825. },
  8826. "autoload": {
  8827. "psr-4": {
  8828. "Whoops\\": "src/Whoops/"
  8829. }
  8830. },
  8831. "notification-url": "https://packagist.org/downloads/",
  8832. "license": [
  8833. "MIT"
  8834. ],
  8835. "authors": [
  8836. {
  8837. "name": "Filipe Dobreira",
  8838. "homepage": "https://github.com/filp",
  8839. "role": "Developer"
  8840. }
  8841. ],
  8842. "description": "php error handling for cool kids",
  8843. "homepage": "https://filp.github.io/whoops/",
  8844. "keywords": [
  8845. "error",
  8846. "exception",
  8847. "handling",
  8848. "library",
  8849. "throwable",
  8850. "whoops"
  8851. ],
  8852. "support": {
  8853. "issues": "https://github.com/filp/whoops/issues",
  8854. "source": "https://github.com/filp/whoops/tree/2.15.2"
  8855. },
  8856. "funding": [
  8857. {
  8858. "url": "https://github.com/denis-sokolov",
  8859. "type": "github"
  8860. }
  8861. ],
  8862. "time": "2023-04-12T12:00:00+00:00"
  8863. },
  8864. {
  8865. "name": "hamcrest/hamcrest-php",
  8866. "version": "v2.0.1",
  8867. "source": {
  8868. "type": "git",
  8869. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8870. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8871. },
  8872. "dist": {
  8873. "type": "zip",
  8874. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8875. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8876. "shasum": "",
  8877. "mirrors": [
  8878. {
  8879. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8880. "preferred": true
  8881. }
  8882. ]
  8883. },
  8884. "require": {
  8885. "php": "^5.3|^7.0|^8.0"
  8886. },
  8887. "replace": {
  8888. "cordoval/hamcrest-php": "*",
  8889. "davedevelopment/hamcrest-php": "*",
  8890. "kodova/hamcrest-php": "*"
  8891. },
  8892. "require-dev": {
  8893. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8894. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8895. },
  8896. "type": "library",
  8897. "extra": {
  8898. "branch-alias": {
  8899. "dev-master": "2.1-dev"
  8900. }
  8901. },
  8902. "autoload": {
  8903. "classmap": [
  8904. "hamcrest"
  8905. ]
  8906. },
  8907. "notification-url": "https://packagist.org/downloads/",
  8908. "license": [
  8909. "BSD-3-Clause"
  8910. ],
  8911. "description": "This is the PHP port of Hamcrest Matchers",
  8912. "keywords": [
  8913. "test"
  8914. ],
  8915. "support": {
  8916. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8917. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8918. },
  8919. "time": "2020-07-09T08:09:16+00:00"
  8920. },
  8921. {
  8922. "name": "laravel/pint",
  8923. "version": "v1.5.0",
  8924. "source": {
  8925. "type": "git",
  8926. "url": "https://github.com/laravel/pint.git",
  8927. "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362"
  8928. },
  8929. "dist": {
  8930. "type": "zip",
  8931. "url": "https://api.github.com/repos/laravel/pint/zipball/e0a8cef58b74662f27355be9cdea0e726bbac362",
  8932. "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362",
  8933. "shasum": "",
  8934. "mirrors": [
  8935. {
  8936. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8937. "preferred": true
  8938. }
  8939. ]
  8940. },
  8941. "require": {
  8942. "ext-json": "*",
  8943. "ext-mbstring": "*",
  8944. "ext-tokenizer": "*",
  8945. "ext-xml": "*",
  8946. "php": "^8.0"
  8947. },
  8948. "require-dev": {
  8949. "friendsofphp/php-cs-fixer": "^3.14.4",
  8950. "illuminate/view": "^9.51.0",
  8951. "laravel-zero/framework": "^9.2.0",
  8952. "mockery/mockery": "^1.5.1",
  8953. "nunomaduro/larastan": "^2.4.0",
  8954. "nunomaduro/termwind": "^1.15.1",
  8955. "pestphp/pest": "^1.22.4"
  8956. },
  8957. "bin": [
  8958. "builds/pint"
  8959. ],
  8960. "type": "project",
  8961. "autoload": {
  8962. "psr-4": {
  8963. "App\\": "app/",
  8964. "Database\\Seeders\\": "database/seeders/",
  8965. "Database\\Factories\\": "database/factories/"
  8966. }
  8967. },
  8968. "notification-url": "https://packagist.org/downloads/",
  8969. "license": [
  8970. "MIT"
  8971. ],
  8972. "authors": [
  8973. {
  8974. "name": "Nuno Maduro",
  8975. "email": "enunomaduro@gmail.com"
  8976. }
  8977. ],
  8978. "description": "An opinionated code formatter for PHP.",
  8979. "homepage": "https://laravel.com",
  8980. "keywords": [
  8981. "format",
  8982. "formatter",
  8983. "lint",
  8984. "linter",
  8985. "php"
  8986. ],
  8987. "support": {
  8988. "issues": "https://github.com/laravel/pint/issues",
  8989. "source": "https://github.com/laravel/pint"
  8990. },
  8991. "time": "2023-02-14T16:31:02+00:00"
  8992. },
  8993. {
  8994. "name": "laravel/sail",
  8995. "version": "v1.21.5",
  8996. "source": {
  8997. "type": "git",
  8998. "url": "https://github.com/laravel/sail.git",
  8999. "reference": "27af207bb1c53faddcba34c7528b3e969f6a646d"
  9000. },
  9001. "dist": {
  9002. "type": "zip",
  9003. "url": "https://api.github.com/repos/laravel/sail/zipball/27af207bb1c53faddcba34c7528b3e969f6a646d",
  9004. "reference": "27af207bb1c53faddcba34c7528b3e969f6a646d",
  9005. "shasum": "",
  9006. "mirrors": [
  9007. {
  9008. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9009. "preferred": true
  9010. }
  9011. ]
  9012. },
  9013. "require": {
  9014. "illuminate/console": "^8.0|^9.0|^10.0",
  9015. "illuminate/contracts": "^8.0|^9.0|^10.0",
  9016. "illuminate/support": "^8.0|^9.0|^10.0",
  9017. "php": "^7.3|^8.0",
  9018. "symfony/yaml": "^6.0"
  9019. },
  9020. "require-dev": {
  9021. "orchestra/testbench": "^6.0|^7.0|^8.0",
  9022. "phpstan/phpstan": "^1.10"
  9023. },
  9024. "bin": [
  9025. "bin/sail"
  9026. ],
  9027. "type": "library",
  9028. "extra": {
  9029. "branch-alias": {
  9030. "dev-master": "1.x-dev"
  9031. },
  9032. "laravel": {
  9033. "providers": [
  9034. "Laravel\\Sail\\SailServiceProvider"
  9035. ]
  9036. }
  9037. },
  9038. "autoload": {
  9039. "psr-4": {
  9040. "Laravel\\Sail\\": "src/"
  9041. }
  9042. },
  9043. "notification-url": "https://packagist.org/downloads/",
  9044. "license": [
  9045. "MIT"
  9046. ],
  9047. "authors": [
  9048. {
  9049. "name": "Taylor Otwell",
  9050. "email": "taylor@laravel.com"
  9051. }
  9052. ],
  9053. "description": "Docker files for running a basic Laravel application.",
  9054. "keywords": [
  9055. "docker",
  9056. "laravel"
  9057. ],
  9058. "support": {
  9059. "issues": "https://github.com/laravel/sail/issues",
  9060. "source": "https://github.com/laravel/sail"
  9061. },
  9062. "time": "2023-04-24T13:29:38+00:00"
  9063. },
  9064. {
  9065. "name": "laravel/telescope",
  9066. "version": "v4.14.2",
  9067. "source": {
  9068. "type": "git",
  9069. "url": "https://github.com/laravel/telescope.git",
  9070. "reference": "222bbea975d9f3a10879af153db5c34ffac08034"
  9071. },
  9072. "dist": {
  9073. "type": "zip",
  9074. "url": "https://api.github.com/repos/laravel/telescope/zipball/222bbea975d9f3a10879af153db5c34ffac08034",
  9075. "reference": "222bbea975d9f3a10879af153db5c34ffac08034",
  9076. "shasum": "",
  9077. "mirrors": [
  9078. {
  9079. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9080. "preferred": true
  9081. }
  9082. ]
  9083. },
  9084. "require": {
  9085. "ext-json": "*",
  9086. "laravel/framework": "^8.37|^9.0|^10.0",
  9087. "php": "^8.0",
  9088. "symfony/var-dumper": "^5.0|^6.0"
  9089. },
  9090. "require-dev": {
  9091. "ext-gd": "*",
  9092. "guzzlehttp/guzzle": "^6.0|^7.0",
  9093. "laravel/octane": "^1.4",
  9094. "orchestra/testbench": "^6.0|^7.0|^8.0",
  9095. "phpstan/phpstan": "^1.10",
  9096. "phpunit/phpunit": "^9.0"
  9097. },
  9098. "type": "library",
  9099. "extra": {
  9100. "branch-alias": {
  9101. "dev-master": "4.x-dev"
  9102. },
  9103. "laravel": {
  9104. "providers": [
  9105. "Laravel\\Telescope\\TelescopeServiceProvider"
  9106. ]
  9107. }
  9108. },
  9109. "autoload": {
  9110. "psr-4": {
  9111. "Laravel\\Telescope\\": "src/",
  9112. "Laravel\\Telescope\\Database\\Factories\\": "database/factories/"
  9113. }
  9114. },
  9115. "notification-url": "https://packagist.org/downloads/",
  9116. "license": [
  9117. "MIT"
  9118. ],
  9119. "authors": [
  9120. {
  9121. "name": "Taylor Otwell",
  9122. "email": "taylor@laravel.com"
  9123. },
  9124. {
  9125. "name": "Mohamed Said",
  9126. "email": "mohamed@laravel.com"
  9127. }
  9128. ],
  9129. "description": "An elegant debug assistant for the Laravel framework.",
  9130. "keywords": [
  9131. "debugging",
  9132. "laravel",
  9133. "monitoring"
  9134. ],
  9135. "support": {
  9136. "issues": "https://github.com/laravel/telescope/issues",
  9137. "source": "https://github.com/laravel/telescope/tree/v4.14.2"
  9138. },
  9139. "time": "2023-04-19T15:24:14+00:00"
  9140. },
  9141. {
  9142. "name": "mockery/mockery",
  9143. "version": "1.5.1",
  9144. "source": {
  9145. "type": "git",
  9146. "url": "https://github.com/mockery/mockery.git",
  9147. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  9148. },
  9149. "dist": {
  9150. "type": "zip",
  9151. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  9152. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  9153. "shasum": "",
  9154. "mirrors": [
  9155. {
  9156. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9157. "preferred": true
  9158. }
  9159. ]
  9160. },
  9161. "require": {
  9162. "hamcrest/hamcrest-php": "^2.0.1",
  9163. "lib-pcre": ">=7.0",
  9164. "php": "^7.3 || ^8.0"
  9165. },
  9166. "conflict": {
  9167. "phpunit/phpunit": "<8.0"
  9168. },
  9169. "require-dev": {
  9170. "phpunit/phpunit": "^8.5 || ^9.3"
  9171. },
  9172. "type": "library",
  9173. "extra": {
  9174. "branch-alias": {
  9175. "dev-master": "1.4.x-dev"
  9176. }
  9177. },
  9178. "autoload": {
  9179. "psr-0": {
  9180. "Mockery": "library/"
  9181. }
  9182. },
  9183. "notification-url": "https://packagist.org/downloads/",
  9184. "license": [
  9185. "BSD-3-Clause"
  9186. ],
  9187. "authors": [
  9188. {
  9189. "name": "Pádraic Brady",
  9190. "email": "padraic.brady@gmail.com",
  9191. "homepage": "http://blog.astrumfutura.com"
  9192. },
  9193. {
  9194. "name": "Dave Marshall",
  9195. "email": "dave.marshall@atstsolutions.co.uk",
  9196. "homepage": "http://davedevelopment.co.uk"
  9197. }
  9198. ],
  9199. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9200. "homepage": "https://github.com/mockery/mockery",
  9201. "keywords": [
  9202. "BDD",
  9203. "TDD",
  9204. "library",
  9205. "mock",
  9206. "mock objects",
  9207. "mockery",
  9208. "stub",
  9209. "test",
  9210. "test double",
  9211. "testing"
  9212. ],
  9213. "support": {
  9214. "issues": "https://github.com/mockery/mockery/issues",
  9215. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  9216. },
  9217. "time": "2022-09-07T15:32:08+00:00"
  9218. },
  9219. {
  9220. "name": "myclabs/deep-copy",
  9221. "version": "1.11.1",
  9222. "source": {
  9223. "type": "git",
  9224. "url": "https://github.com/myclabs/DeepCopy.git",
  9225. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  9226. },
  9227. "dist": {
  9228. "type": "zip",
  9229. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9230. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9231. "shasum": "",
  9232. "mirrors": [
  9233. {
  9234. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9235. "preferred": true
  9236. }
  9237. ]
  9238. },
  9239. "require": {
  9240. "php": "^7.1 || ^8.0"
  9241. },
  9242. "conflict": {
  9243. "doctrine/collections": "<1.6.8",
  9244. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  9245. },
  9246. "require-dev": {
  9247. "doctrine/collections": "^1.6.8",
  9248. "doctrine/common": "^2.13.3 || ^3.2.2",
  9249. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9250. },
  9251. "type": "library",
  9252. "autoload": {
  9253. "files": [
  9254. "src/DeepCopy/deep_copy.php"
  9255. ],
  9256. "psr-4": {
  9257. "DeepCopy\\": "src/DeepCopy/"
  9258. }
  9259. },
  9260. "notification-url": "https://packagist.org/downloads/",
  9261. "license": [
  9262. "MIT"
  9263. ],
  9264. "description": "Create deep copies (clones) of your objects",
  9265. "keywords": [
  9266. "clone",
  9267. "copy",
  9268. "duplicate",
  9269. "object",
  9270. "object graph"
  9271. ],
  9272. "support": {
  9273. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9274. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9275. },
  9276. "funding": [
  9277. {
  9278. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9279. "type": "tidelift"
  9280. }
  9281. ],
  9282. "time": "2023-03-08T13:26:56+00:00"
  9283. },
  9284. {
  9285. "name": "nunomaduro/collision",
  9286. "version": "v6.4.0",
  9287. "source": {
  9288. "type": "git",
  9289. "url": "https://github.com/nunomaduro/collision.git",
  9290. "reference": "f05978827b9343cba381ca05b8c7deee346b6015"
  9291. },
  9292. "dist": {
  9293. "type": "zip",
  9294. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015",
  9295. "reference": "f05978827b9343cba381ca05b8c7deee346b6015",
  9296. "shasum": "",
  9297. "mirrors": [
  9298. {
  9299. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9300. "preferred": true
  9301. }
  9302. ]
  9303. },
  9304. "require": {
  9305. "filp/whoops": "^2.14.5",
  9306. "php": "^8.0.0",
  9307. "symfony/console": "^6.0.2"
  9308. },
  9309. "require-dev": {
  9310. "brianium/paratest": "^6.4.1",
  9311. "laravel/framework": "^9.26.1",
  9312. "laravel/pint": "^1.1.1",
  9313. "nunomaduro/larastan": "^1.0.3",
  9314. "nunomaduro/mock-final-classes": "^1.1.0",
  9315. "orchestra/testbench": "^7.7",
  9316. "phpunit/phpunit": "^9.5.23",
  9317. "spatie/ignition": "^1.4.1"
  9318. },
  9319. "type": "library",
  9320. "extra": {
  9321. "branch-alias": {
  9322. "dev-develop": "6.x-dev"
  9323. },
  9324. "laravel": {
  9325. "providers": [
  9326. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9327. ]
  9328. }
  9329. },
  9330. "autoload": {
  9331. "psr-4": {
  9332. "NunoMaduro\\Collision\\": "src/"
  9333. }
  9334. },
  9335. "notification-url": "https://packagist.org/downloads/",
  9336. "license": [
  9337. "MIT"
  9338. ],
  9339. "authors": [
  9340. {
  9341. "name": "Nuno Maduro",
  9342. "email": "enunomaduro@gmail.com"
  9343. }
  9344. ],
  9345. "description": "Cli error handling for console/command-line PHP applications.",
  9346. "keywords": [
  9347. "artisan",
  9348. "cli",
  9349. "command-line",
  9350. "console",
  9351. "error",
  9352. "handling",
  9353. "laravel",
  9354. "laravel-zero",
  9355. "php",
  9356. "symfony"
  9357. ],
  9358. "support": {
  9359. "issues": "https://github.com/nunomaduro/collision/issues",
  9360. "source": "https://github.com/nunomaduro/collision"
  9361. },
  9362. "funding": [
  9363. {
  9364. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9365. "type": "custom"
  9366. },
  9367. {
  9368. "url": "https://github.com/nunomaduro",
  9369. "type": "github"
  9370. },
  9371. {
  9372. "url": "https://www.patreon.com/nunomaduro",
  9373. "type": "patreon"
  9374. }
  9375. ],
  9376. "time": "2023-01-03T12:54:54+00:00"
  9377. },
  9378. {
  9379. "name": "phar-io/manifest",
  9380. "version": "2.0.3",
  9381. "source": {
  9382. "type": "git",
  9383. "url": "https://github.com/phar-io/manifest.git",
  9384. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9385. },
  9386. "dist": {
  9387. "type": "zip",
  9388. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9389. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9390. "shasum": "",
  9391. "mirrors": [
  9392. {
  9393. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9394. "preferred": true
  9395. }
  9396. ]
  9397. },
  9398. "require": {
  9399. "ext-dom": "*",
  9400. "ext-phar": "*",
  9401. "ext-xmlwriter": "*",
  9402. "phar-io/version": "^3.0.1",
  9403. "php": "^7.2 || ^8.0"
  9404. },
  9405. "type": "library",
  9406. "extra": {
  9407. "branch-alias": {
  9408. "dev-master": "2.0.x-dev"
  9409. }
  9410. },
  9411. "autoload": {
  9412. "classmap": [
  9413. "src/"
  9414. ]
  9415. },
  9416. "notification-url": "https://packagist.org/downloads/",
  9417. "license": [
  9418. "BSD-3-Clause"
  9419. ],
  9420. "authors": [
  9421. {
  9422. "name": "Arne Blankerts",
  9423. "email": "arne@blankerts.de",
  9424. "role": "Developer"
  9425. },
  9426. {
  9427. "name": "Sebastian Heuer",
  9428. "email": "sebastian@phpeople.de",
  9429. "role": "Developer"
  9430. },
  9431. {
  9432. "name": "Sebastian Bergmann",
  9433. "email": "sebastian@phpunit.de",
  9434. "role": "Developer"
  9435. }
  9436. ],
  9437. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9438. "support": {
  9439. "issues": "https://github.com/phar-io/manifest/issues",
  9440. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9441. },
  9442. "time": "2021-07-20T11:28:43+00:00"
  9443. },
  9444. {
  9445. "name": "phar-io/version",
  9446. "version": "3.2.1",
  9447. "source": {
  9448. "type": "git",
  9449. "url": "https://github.com/phar-io/version.git",
  9450. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9451. },
  9452. "dist": {
  9453. "type": "zip",
  9454. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9455. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9456. "shasum": "",
  9457. "mirrors": [
  9458. {
  9459. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9460. "preferred": true
  9461. }
  9462. ]
  9463. },
  9464. "require": {
  9465. "php": "^7.2 || ^8.0"
  9466. },
  9467. "type": "library",
  9468. "autoload": {
  9469. "classmap": [
  9470. "src/"
  9471. ]
  9472. },
  9473. "notification-url": "https://packagist.org/downloads/",
  9474. "license": [
  9475. "BSD-3-Clause"
  9476. ],
  9477. "authors": [
  9478. {
  9479. "name": "Arne Blankerts",
  9480. "email": "arne@blankerts.de",
  9481. "role": "Developer"
  9482. },
  9483. {
  9484. "name": "Sebastian Heuer",
  9485. "email": "sebastian@phpeople.de",
  9486. "role": "Developer"
  9487. },
  9488. {
  9489. "name": "Sebastian Bergmann",
  9490. "email": "sebastian@phpunit.de",
  9491. "role": "Developer"
  9492. }
  9493. ],
  9494. "description": "Library for handling version information and constraints",
  9495. "support": {
  9496. "issues": "https://github.com/phar-io/version/issues",
  9497. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9498. },
  9499. "time": "2022-02-21T01:04:05+00:00"
  9500. },
  9501. {
  9502. "name": "phpdocumentor/reflection-common",
  9503. "version": "2.2.0",
  9504. "source": {
  9505. "type": "git",
  9506. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9507. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9508. },
  9509. "dist": {
  9510. "type": "zip",
  9511. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9512. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9513. "shasum": "",
  9514. "mirrors": [
  9515. {
  9516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9517. "preferred": true
  9518. }
  9519. ]
  9520. },
  9521. "require": {
  9522. "php": "^7.2 || ^8.0"
  9523. },
  9524. "type": "library",
  9525. "extra": {
  9526. "branch-alias": {
  9527. "dev-2.x": "2.x-dev"
  9528. }
  9529. },
  9530. "autoload": {
  9531. "psr-4": {
  9532. "phpDocumentor\\Reflection\\": "src/"
  9533. }
  9534. },
  9535. "notification-url": "https://packagist.org/downloads/",
  9536. "license": [
  9537. "MIT"
  9538. ],
  9539. "authors": [
  9540. {
  9541. "name": "Jaap van Otterdijk",
  9542. "email": "opensource@ijaap.nl"
  9543. }
  9544. ],
  9545. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9546. "homepage": "http://www.phpdoc.org",
  9547. "keywords": [
  9548. "FQSEN",
  9549. "phpDocumentor",
  9550. "phpdoc",
  9551. "reflection",
  9552. "static analysis"
  9553. ],
  9554. "support": {
  9555. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9556. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9557. },
  9558. "time": "2020-06-27T09:03:43+00:00"
  9559. },
  9560. {
  9561. "name": "phpdocumentor/type-resolver",
  9562. "version": "1.7.1",
  9563. "source": {
  9564. "type": "git",
  9565. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9566. "reference": "dfc078e8af9c99210337325ff5aa152872c98714"
  9567. },
  9568. "dist": {
  9569. "type": "zip",
  9570. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/dfc078e8af9c99210337325ff5aa152872c98714",
  9571. "reference": "dfc078e8af9c99210337325ff5aa152872c98714",
  9572. "shasum": "",
  9573. "mirrors": [
  9574. {
  9575. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9576. "preferred": true
  9577. }
  9578. ]
  9579. },
  9580. "require": {
  9581. "doctrine/deprecations": "^1.0",
  9582. "php": "^7.4 || ^8.0",
  9583. "phpdocumentor/reflection-common": "^2.0",
  9584. "phpstan/phpdoc-parser": "^1.13"
  9585. },
  9586. "require-dev": {
  9587. "ext-tokenizer": "*",
  9588. "phpbench/phpbench": "^1.2",
  9589. "phpstan/extension-installer": "^1.1",
  9590. "phpstan/phpstan": "^1.8",
  9591. "phpstan/phpstan-phpunit": "^1.1",
  9592. "phpunit/phpunit": "^9.5",
  9593. "rector/rector": "^0.13.9",
  9594. "vimeo/psalm": "^4.25"
  9595. },
  9596. "type": "library",
  9597. "extra": {
  9598. "branch-alias": {
  9599. "dev-1.x": "1.x-dev"
  9600. }
  9601. },
  9602. "autoload": {
  9603. "psr-4": {
  9604. "phpDocumentor\\Reflection\\": "src"
  9605. }
  9606. },
  9607. "notification-url": "https://packagist.org/downloads/",
  9608. "license": [
  9609. "MIT"
  9610. ],
  9611. "authors": [
  9612. {
  9613. "name": "Mike van Riel",
  9614. "email": "me@mikevanriel.com"
  9615. }
  9616. ],
  9617. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9618. "support": {
  9619. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9620. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.1"
  9621. },
  9622. "time": "2023-03-27T19:02:04+00:00"
  9623. },
  9624. {
  9625. "name": "phpstan/phpdoc-parser",
  9626. "version": "1.20.3",
  9627. "source": {
  9628. "type": "git",
  9629. "url": "https://github.com/phpstan/phpdoc-parser.git",
  9630. "reference": "6c04009f6cae6eda2f040745b6b846080ef069c2"
  9631. },
  9632. "dist": {
  9633. "type": "zip",
  9634. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/6c04009f6cae6eda2f040745b6b846080ef069c2",
  9635. "reference": "6c04009f6cae6eda2f040745b6b846080ef069c2",
  9636. "shasum": "",
  9637. "mirrors": [
  9638. {
  9639. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9640. "preferred": true
  9641. }
  9642. ]
  9643. },
  9644. "require": {
  9645. "php": "^7.2 || ^8.0"
  9646. },
  9647. "require-dev": {
  9648. "php-parallel-lint/php-parallel-lint": "^1.2",
  9649. "phpstan/extension-installer": "^1.0",
  9650. "phpstan/phpstan": "^1.5",
  9651. "phpstan/phpstan-phpunit": "^1.1",
  9652. "phpstan/phpstan-strict-rules": "^1.0",
  9653. "phpunit/phpunit": "^9.5",
  9654. "symfony/process": "^5.2"
  9655. },
  9656. "type": "library",
  9657. "autoload": {
  9658. "psr-4": {
  9659. "PHPStan\\PhpDocParser\\": [
  9660. "src/"
  9661. ]
  9662. }
  9663. },
  9664. "notification-url": "https://packagist.org/downloads/",
  9665. "license": [
  9666. "MIT"
  9667. ],
  9668. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  9669. "support": {
  9670. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  9671. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.20.3"
  9672. },
  9673. "time": "2023-04-25T09:01:03+00:00"
  9674. },
  9675. {
  9676. "name": "phpunit/php-code-coverage",
  9677. "version": "9.2.26",
  9678. "source": {
  9679. "type": "git",
  9680. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9681. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  9682. },
  9683. "dist": {
  9684. "type": "zip",
  9685. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9686. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9687. "shasum": "",
  9688. "mirrors": [
  9689. {
  9690. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9691. "preferred": true
  9692. }
  9693. ]
  9694. },
  9695. "require": {
  9696. "ext-dom": "*",
  9697. "ext-libxml": "*",
  9698. "ext-xmlwriter": "*",
  9699. "nikic/php-parser": "^4.15",
  9700. "php": ">=7.3",
  9701. "phpunit/php-file-iterator": "^3.0.3",
  9702. "phpunit/php-text-template": "^2.0.2",
  9703. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9704. "sebastian/complexity": "^2.0",
  9705. "sebastian/environment": "^5.1.2",
  9706. "sebastian/lines-of-code": "^1.0.3",
  9707. "sebastian/version": "^3.0.1",
  9708. "theseer/tokenizer": "^1.2.0"
  9709. },
  9710. "require-dev": {
  9711. "phpunit/phpunit": "^9.3"
  9712. },
  9713. "suggest": {
  9714. "ext-pcov": "PHP extension that provides line coverage",
  9715. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9716. },
  9717. "type": "library",
  9718. "extra": {
  9719. "branch-alias": {
  9720. "dev-master": "9.2-dev"
  9721. }
  9722. },
  9723. "autoload": {
  9724. "classmap": [
  9725. "src/"
  9726. ]
  9727. },
  9728. "notification-url": "https://packagist.org/downloads/",
  9729. "license": [
  9730. "BSD-3-Clause"
  9731. ],
  9732. "authors": [
  9733. {
  9734. "name": "Sebastian Bergmann",
  9735. "email": "sebastian@phpunit.de",
  9736. "role": "lead"
  9737. }
  9738. ],
  9739. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9740. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9741. "keywords": [
  9742. "coverage",
  9743. "testing",
  9744. "xunit"
  9745. ],
  9746. "support": {
  9747. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9748. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  9749. },
  9750. "funding": [
  9751. {
  9752. "url": "https://github.com/sebastianbergmann",
  9753. "type": "github"
  9754. }
  9755. ],
  9756. "time": "2023-03-06T12:58:08+00:00"
  9757. },
  9758. {
  9759. "name": "phpunit/php-file-iterator",
  9760. "version": "3.0.6",
  9761. "source": {
  9762. "type": "git",
  9763. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9764. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9765. },
  9766. "dist": {
  9767. "type": "zip",
  9768. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9769. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9770. "shasum": "",
  9771. "mirrors": [
  9772. {
  9773. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9774. "preferred": true
  9775. }
  9776. ]
  9777. },
  9778. "require": {
  9779. "php": ">=7.3"
  9780. },
  9781. "require-dev": {
  9782. "phpunit/phpunit": "^9.3"
  9783. },
  9784. "type": "library",
  9785. "extra": {
  9786. "branch-alias": {
  9787. "dev-master": "3.0-dev"
  9788. }
  9789. },
  9790. "autoload": {
  9791. "classmap": [
  9792. "src/"
  9793. ]
  9794. },
  9795. "notification-url": "https://packagist.org/downloads/",
  9796. "license": [
  9797. "BSD-3-Clause"
  9798. ],
  9799. "authors": [
  9800. {
  9801. "name": "Sebastian Bergmann",
  9802. "email": "sebastian@phpunit.de",
  9803. "role": "lead"
  9804. }
  9805. ],
  9806. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9807. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9808. "keywords": [
  9809. "filesystem",
  9810. "iterator"
  9811. ],
  9812. "support": {
  9813. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9814. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9815. },
  9816. "funding": [
  9817. {
  9818. "url": "https://github.com/sebastianbergmann",
  9819. "type": "github"
  9820. }
  9821. ],
  9822. "time": "2021-12-02T12:48:52+00:00"
  9823. },
  9824. {
  9825. "name": "phpunit/php-invoker",
  9826. "version": "3.1.1",
  9827. "source": {
  9828. "type": "git",
  9829. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9830. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9831. },
  9832. "dist": {
  9833. "type": "zip",
  9834. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9835. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9836. "shasum": "",
  9837. "mirrors": [
  9838. {
  9839. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9840. "preferred": true
  9841. }
  9842. ]
  9843. },
  9844. "require": {
  9845. "php": ">=7.3"
  9846. },
  9847. "require-dev": {
  9848. "ext-pcntl": "*",
  9849. "phpunit/phpunit": "^9.3"
  9850. },
  9851. "suggest": {
  9852. "ext-pcntl": "*"
  9853. },
  9854. "type": "library",
  9855. "extra": {
  9856. "branch-alias": {
  9857. "dev-master": "3.1-dev"
  9858. }
  9859. },
  9860. "autoload": {
  9861. "classmap": [
  9862. "src/"
  9863. ]
  9864. },
  9865. "notification-url": "https://packagist.org/downloads/",
  9866. "license": [
  9867. "BSD-3-Clause"
  9868. ],
  9869. "authors": [
  9870. {
  9871. "name": "Sebastian Bergmann",
  9872. "email": "sebastian@phpunit.de",
  9873. "role": "lead"
  9874. }
  9875. ],
  9876. "description": "Invoke callables with a timeout",
  9877. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9878. "keywords": [
  9879. "process"
  9880. ],
  9881. "support": {
  9882. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9883. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9884. },
  9885. "funding": [
  9886. {
  9887. "url": "https://github.com/sebastianbergmann",
  9888. "type": "github"
  9889. }
  9890. ],
  9891. "time": "2020-09-28T05:58:55+00:00"
  9892. },
  9893. {
  9894. "name": "phpunit/php-text-template",
  9895. "version": "2.0.4",
  9896. "source": {
  9897. "type": "git",
  9898. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9899. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9900. },
  9901. "dist": {
  9902. "type": "zip",
  9903. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9904. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9905. "shasum": "",
  9906. "mirrors": [
  9907. {
  9908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9909. "preferred": true
  9910. }
  9911. ]
  9912. },
  9913. "require": {
  9914. "php": ">=7.3"
  9915. },
  9916. "require-dev": {
  9917. "phpunit/phpunit": "^9.3"
  9918. },
  9919. "type": "library",
  9920. "extra": {
  9921. "branch-alias": {
  9922. "dev-master": "2.0-dev"
  9923. }
  9924. },
  9925. "autoload": {
  9926. "classmap": [
  9927. "src/"
  9928. ]
  9929. },
  9930. "notification-url": "https://packagist.org/downloads/",
  9931. "license": [
  9932. "BSD-3-Clause"
  9933. ],
  9934. "authors": [
  9935. {
  9936. "name": "Sebastian Bergmann",
  9937. "email": "sebastian@phpunit.de",
  9938. "role": "lead"
  9939. }
  9940. ],
  9941. "description": "Simple template engine.",
  9942. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9943. "keywords": [
  9944. "template"
  9945. ],
  9946. "support": {
  9947. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9948. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9949. },
  9950. "funding": [
  9951. {
  9952. "url": "https://github.com/sebastianbergmann",
  9953. "type": "github"
  9954. }
  9955. ],
  9956. "time": "2020-10-26T05:33:50+00:00"
  9957. },
  9958. {
  9959. "name": "phpunit/php-timer",
  9960. "version": "5.0.3",
  9961. "source": {
  9962. "type": "git",
  9963. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9964. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9965. },
  9966. "dist": {
  9967. "type": "zip",
  9968. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9969. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9970. "shasum": "",
  9971. "mirrors": [
  9972. {
  9973. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9974. "preferred": true
  9975. }
  9976. ]
  9977. },
  9978. "require": {
  9979. "php": ">=7.3"
  9980. },
  9981. "require-dev": {
  9982. "phpunit/phpunit": "^9.3"
  9983. },
  9984. "type": "library",
  9985. "extra": {
  9986. "branch-alias": {
  9987. "dev-master": "5.0-dev"
  9988. }
  9989. },
  9990. "autoload": {
  9991. "classmap": [
  9992. "src/"
  9993. ]
  9994. },
  9995. "notification-url": "https://packagist.org/downloads/",
  9996. "license": [
  9997. "BSD-3-Clause"
  9998. ],
  9999. "authors": [
  10000. {
  10001. "name": "Sebastian Bergmann",
  10002. "email": "sebastian@phpunit.de",
  10003. "role": "lead"
  10004. }
  10005. ],
  10006. "description": "Utility class for timing",
  10007. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10008. "keywords": [
  10009. "timer"
  10010. ],
  10011. "support": {
  10012. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10013. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10014. },
  10015. "funding": [
  10016. {
  10017. "url": "https://github.com/sebastianbergmann",
  10018. "type": "github"
  10019. }
  10020. ],
  10021. "time": "2020-10-26T13:16:10+00:00"
  10022. },
  10023. {
  10024. "name": "phpunit/phpunit",
  10025. "version": "9.6.7",
  10026. "source": {
  10027. "type": "git",
  10028. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10029. "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2"
  10030. },
  10031. "dist": {
  10032. "type": "zip",
  10033. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c993f0d3b0489ffc42ee2fe0bd645af1538a63b2",
  10034. "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2",
  10035. "shasum": "",
  10036. "mirrors": [
  10037. {
  10038. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10039. "preferred": true
  10040. }
  10041. ]
  10042. },
  10043. "require": {
  10044. "doctrine/instantiator": "^1.3.1 || ^2",
  10045. "ext-dom": "*",
  10046. "ext-json": "*",
  10047. "ext-libxml": "*",
  10048. "ext-mbstring": "*",
  10049. "ext-xml": "*",
  10050. "ext-xmlwriter": "*",
  10051. "myclabs/deep-copy": "^1.10.1",
  10052. "phar-io/manifest": "^2.0.3",
  10053. "phar-io/version": "^3.0.2",
  10054. "php": ">=7.3",
  10055. "phpunit/php-code-coverage": "^9.2.13",
  10056. "phpunit/php-file-iterator": "^3.0.5",
  10057. "phpunit/php-invoker": "^3.1.1",
  10058. "phpunit/php-text-template": "^2.0.3",
  10059. "phpunit/php-timer": "^5.0.2",
  10060. "sebastian/cli-parser": "^1.0.1",
  10061. "sebastian/code-unit": "^1.0.6",
  10062. "sebastian/comparator": "^4.0.8",
  10063. "sebastian/diff": "^4.0.3",
  10064. "sebastian/environment": "^5.1.3",
  10065. "sebastian/exporter": "^4.0.5",
  10066. "sebastian/global-state": "^5.0.1",
  10067. "sebastian/object-enumerator": "^4.0.3",
  10068. "sebastian/resource-operations": "^3.0.3",
  10069. "sebastian/type": "^3.2",
  10070. "sebastian/version": "^3.0.2"
  10071. },
  10072. "suggest": {
  10073. "ext-soap": "To be able to generate mocks based on WSDL files",
  10074. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10075. },
  10076. "bin": [
  10077. "phpunit"
  10078. ],
  10079. "type": "library",
  10080. "extra": {
  10081. "branch-alias": {
  10082. "dev-master": "9.6-dev"
  10083. }
  10084. },
  10085. "autoload": {
  10086. "files": [
  10087. "src/Framework/Assert/Functions.php"
  10088. ],
  10089. "classmap": [
  10090. "src/"
  10091. ]
  10092. },
  10093. "notification-url": "https://packagist.org/downloads/",
  10094. "license": [
  10095. "BSD-3-Clause"
  10096. ],
  10097. "authors": [
  10098. {
  10099. "name": "Sebastian Bergmann",
  10100. "email": "sebastian@phpunit.de",
  10101. "role": "lead"
  10102. }
  10103. ],
  10104. "description": "The PHP Unit Testing framework.",
  10105. "homepage": "https://phpunit.de/",
  10106. "keywords": [
  10107. "phpunit",
  10108. "testing",
  10109. "xunit"
  10110. ],
  10111. "support": {
  10112. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10113. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10114. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.7"
  10115. },
  10116. "funding": [
  10117. {
  10118. "url": "https://phpunit.de/sponsors.html",
  10119. "type": "custom"
  10120. },
  10121. {
  10122. "url": "https://github.com/sebastianbergmann",
  10123. "type": "github"
  10124. },
  10125. {
  10126. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10127. "type": "tidelift"
  10128. }
  10129. ],
  10130. "time": "2023-04-14T08:58:40+00:00"
  10131. },
  10132. {
  10133. "name": "sebastian/cli-parser",
  10134. "version": "1.0.1",
  10135. "source": {
  10136. "type": "git",
  10137. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10138. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10139. },
  10140. "dist": {
  10141. "type": "zip",
  10142. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10143. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10144. "shasum": "",
  10145. "mirrors": [
  10146. {
  10147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10148. "preferred": true
  10149. }
  10150. ]
  10151. },
  10152. "require": {
  10153. "php": ">=7.3"
  10154. },
  10155. "require-dev": {
  10156. "phpunit/phpunit": "^9.3"
  10157. },
  10158. "type": "library",
  10159. "extra": {
  10160. "branch-alias": {
  10161. "dev-master": "1.0-dev"
  10162. }
  10163. },
  10164. "autoload": {
  10165. "classmap": [
  10166. "src/"
  10167. ]
  10168. },
  10169. "notification-url": "https://packagist.org/downloads/",
  10170. "license": [
  10171. "BSD-3-Clause"
  10172. ],
  10173. "authors": [
  10174. {
  10175. "name": "Sebastian Bergmann",
  10176. "email": "sebastian@phpunit.de",
  10177. "role": "lead"
  10178. }
  10179. ],
  10180. "description": "Library for parsing CLI options",
  10181. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10182. "support": {
  10183. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10184. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10185. },
  10186. "funding": [
  10187. {
  10188. "url": "https://github.com/sebastianbergmann",
  10189. "type": "github"
  10190. }
  10191. ],
  10192. "time": "2020-09-28T06:08:49+00:00"
  10193. },
  10194. {
  10195. "name": "sebastian/code-unit",
  10196. "version": "1.0.8",
  10197. "source": {
  10198. "type": "git",
  10199. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10200. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10201. },
  10202. "dist": {
  10203. "type": "zip",
  10204. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10205. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10206. "shasum": "",
  10207. "mirrors": [
  10208. {
  10209. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10210. "preferred": true
  10211. }
  10212. ]
  10213. },
  10214. "require": {
  10215. "php": ">=7.3"
  10216. },
  10217. "require-dev": {
  10218. "phpunit/phpunit": "^9.3"
  10219. },
  10220. "type": "library",
  10221. "extra": {
  10222. "branch-alias": {
  10223. "dev-master": "1.0-dev"
  10224. }
  10225. },
  10226. "autoload": {
  10227. "classmap": [
  10228. "src/"
  10229. ]
  10230. },
  10231. "notification-url": "https://packagist.org/downloads/",
  10232. "license": [
  10233. "BSD-3-Clause"
  10234. ],
  10235. "authors": [
  10236. {
  10237. "name": "Sebastian Bergmann",
  10238. "email": "sebastian@phpunit.de",
  10239. "role": "lead"
  10240. }
  10241. ],
  10242. "description": "Collection of value objects that represent the PHP code units",
  10243. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10244. "support": {
  10245. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10246. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10247. },
  10248. "funding": [
  10249. {
  10250. "url": "https://github.com/sebastianbergmann",
  10251. "type": "github"
  10252. }
  10253. ],
  10254. "time": "2020-10-26T13:08:54+00:00"
  10255. },
  10256. {
  10257. "name": "sebastian/code-unit-reverse-lookup",
  10258. "version": "2.0.3",
  10259. "source": {
  10260. "type": "git",
  10261. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10262. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10263. },
  10264. "dist": {
  10265. "type": "zip",
  10266. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10267. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10268. "shasum": "",
  10269. "mirrors": [
  10270. {
  10271. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10272. "preferred": true
  10273. }
  10274. ]
  10275. },
  10276. "require": {
  10277. "php": ">=7.3"
  10278. },
  10279. "require-dev": {
  10280. "phpunit/phpunit": "^9.3"
  10281. },
  10282. "type": "library",
  10283. "extra": {
  10284. "branch-alias": {
  10285. "dev-master": "2.0-dev"
  10286. }
  10287. },
  10288. "autoload": {
  10289. "classmap": [
  10290. "src/"
  10291. ]
  10292. },
  10293. "notification-url": "https://packagist.org/downloads/",
  10294. "license": [
  10295. "BSD-3-Clause"
  10296. ],
  10297. "authors": [
  10298. {
  10299. "name": "Sebastian Bergmann",
  10300. "email": "sebastian@phpunit.de"
  10301. }
  10302. ],
  10303. "description": "Looks up which function or method a line of code belongs to",
  10304. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10305. "support": {
  10306. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10307. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10308. },
  10309. "funding": [
  10310. {
  10311. "url": "https://github.com/sebastianbergmann",
  10312. "type": "github"
  10313. }
  10314. ],
  10315. "time": "2020-09-28T05:30:19+00:00"
  10316. },
  10317. {
  10318. "name": "sebastian/comparator",
  10319. "version": "4.0.8",
  10320. "source": {
  10321. "type": "git",
  10322. "url": "https://github.com/sebastianbergmann/comparator.git",
  10323. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  10324. },
  10325. "dist": {
  10326. "type": "zip",
  10327. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  10328. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  10329. "shasum": "",
  10330. "mirrors": [
  10331. {
  10332. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10333. "preferred": true
  10334. }
  10335. ]
  10336. },
  10337. "require": {
  10338. "php": ">=7.3",
  10339. "sebastian/diff": "^4.0",
  10340. "sebastian/exporter": "^4.0"
  10341. },
  10342. "require-dev": {
  10343. "phpunit/phpunit": "^9.3"
  10344. },
  10345. "type": "library",
  10346. "extra": {
  10347. "branch-alias": {
  10348. "dev-master": "4.0-dev"
  10349. }
  10350. },
  10351. "autoload": {
  10352. "classmap": [
  10353. "src/"
  10354. ]
  10355. },
  10356. "notification-url": "https://packagist.org/downloads/",
  10357. "license": [
  10358. "BSD-3-Clause"
  10359. ],
  10360. "authors": [
  10361. {
  10362. "name": "Sebastian Bergmann",
  10363. "email": "sebastian@phpunit.de"
  10364. },
  10365. {
  10366. "name": "Jeff Welch",
  10367. "email": "whatthejeff@gmail.com"
  10368. },
  10369. {
  10370. "name": "Volker Dusch",
  10371. "email": "github@wallbash.com"
  10372. },
  10373. {
  10374. "name": "Bernhard Schussek",
  10375. "email": "bschussek@2bepublished.at"
  10376. }
  10377. ],
  10378. "description": "Provides the functionality to compare PHP values for equality",
  10379. "homepage": "https://github.com/sebastianbergmann/comparator",
  10380. "keywords": [
  10381. "comparator",
  10382. "compare",
  10383. "equality"
  10384. ],
  10385. "support": {
  10386. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10387. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  10388. },
  10389. "funding": [
  10390. {
  10391. "url": "https://github.com/sebastianbergmann",
  10392. "type": "github"
  10393. }
  10394. ],
  10395. "time": "2022-09-14T12:41:17+00:00"
  10396. },
  10397. {
  10398. "name": "sebastian/complexity",
  10399. "version": "2.0.2",
  10400. "source": {
  10401. "type": "git",
  10402. "url": "https://github.com/sebastianbergmann/complexity.git",
  10403. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10404. },
  10405. "dist": {
  10406. "type": "zip",
  10407. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10408. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10409. "shasum": "",
  10410. "mirrors": [
  10411. {
  10412. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10413. "preferred": true
  10414. }
  10415. ]
  10416. },
  10417. "require": {
  10418. "nikic/php-parser": "^4.7",
  10419. "php": ">=7.3"
  10420. },
  10421. "require-dev": {
  10422. "phpunit/phpunit": "^9.3"
  10423. },
  10424. "type": "library",
  10425. "extra": {
  10426. "branch-alias": {
  10427. "dev-master": "2.0-dev"
  10428. }
  10429. },
  10430. "autoload": {
  10431. "classmap": [
  10432. "src/"
  10433. ]
  10434. },
  10435. "notification-url": "https://packagist.org/downloads/",
  10436. "license": [
  10437. "BSD-3-Clause"
  10438. ],
  10439. "authors": [
  10440. {
  10441. "name": "Sebastian Bergmann",
  10442. "email": "sebastian@phpunit.de",
  10443. "role": "lead"
  10444. }
  10445. ],
  10446. "description": "Library for calculating the complexity of PHP code units",
  10447. "homepage": "https://github.com/sebastianbergmann/complexity",
  10448. "support": {
  10449. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10450. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10451. },
  10452. "funding": [
  10453. {
  10454. "url": "https://github.com/sebastianbergmann",
  10455. "type": "github"
  10456. }
  10457. ],
  10458. "time": "2020-10-26T15:52:27+00:00"
  10459. },
  10460. {
  10461. "name": "sebastian/diff",
  10462. "version": "4.0.4",
  10463. "source": {
  10464. "type": "git",
  10465. "url": "https://github.com/sebastianbergmann/diff.git",
  10466. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10467. },
  10468. "dist": {
  10469. "type": "zip",
  10470. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10471. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10472. "shasum": "",
  10473. "mirrors": [
  10474. {
  10475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10476. "preferred": true
  10477. }
  10478. ]
  10479. },
  10480. "require": {
  10481. "php": ">=7.3"
  10482. },
  10483. "require-dev": {
  10484. "phpunit/phpunit": "^9.3",
  10485. "symfony/process": "^4.2 || ^5"
  10486. },
  10487. "type": "library",
  10488. "extra": {
  10489. "branch-alias": {
  10490. "dev-master": "4.0-dev"
  10491. }
  10492. },
  10493. "autoload": {
  10494. "classmap": [
  10495. "src/"
  10496. ]
  10497. },
  10498. "notification-url": "https://packagist.org/downloads/",
  10499. "license": [
  10500. "BSD-3-Clause"
  10501. ],
  10502. "authors": [
  10503. {
  10504. "name": "Sebastian Bergmann",
  10505. "email": "sebastian@phpunit.de"
  10506. },
  10507. {
  10508. "name": "Kore Nordmann",
  10509. "email": "mail@kore-nordmann.de"
  10510. }
  10511. ],
  10512. "description": "Diff implementation",
  10513. "homepage": "https://github.com/sebastianbergmann/diff",
  10514. "keywords": [
  10515. "diff",
  10516. "udiff",
  10517. "unidiff",
  10518. "unified diff"
  10519. ],
  10520. "support": {
  10521. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10522. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10523. },
  10524. "funding": [
  10525. {
  10526. "url": "https://github.com/sebastianbergmann",
  10527. "type": "github"
  10528. }
  10529. ],
  10530. "time": "2020-10-26T13:10:38+00:00"
  10531. },
  10532. {
  10533. "name": "sebastian/environment",
  10534. "version": "5.1.5",
  10535. "source": {
  10536. "type": "git",
  10537. "url": "https://github.com/sebastianbergmann/environment.git",
  10538. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10539. },
  10540. "dist": {
  10541. "type": "zip",
  10542. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10543. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10544. "shasum": "",
  10545. "mirrors": [
  10546. {
  10547. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10548. "preferred": true
  10549. }
  10550. ]
  10551. },
  10552. "require": {
  10553. "php": ">=7.3"
  10554. },
  10555. "require-dev": {
  10556. "phpunit/phpunit": "^9.3"
  10557. },
  10558. "suggest": {
  10559. "ext-posix": "*"
  10560. },
  10561. "type": "library",
  10562. "extra": {
  10563. "branch-alias": {
  10564. "dev-master": "5.1-dev"
  10565. }
  10566. },
  10567. "autoload": {
  10568. "classmap": [
  10569. "src/"
  10570. ]
  10571. },
  10572. "notification-url": "https://packagist.org/downloads/",
  10573. "license": [
  10574. "BSD-3-Clause"
  10575. ],
  10576. "authors": [
  10577. {
  10578. "name": "Sebastian Bergmann",
  10579. "email": "sebastian@phpunit.de"
  10580. }
  10581. ],
  10582. "description": "Provides functionality to handle HHVM/PHP environments",
  10583. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10584. "keywords": [
  10585. "Xdebug",
  10586. "environment",
  10587. "hhvm"
  10588. ],
  10589. "support": {
  10590. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10591. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10592. },
  10593. "funding": [
  10594. {
  10595. "url": "https://github.com/sebastianbergmann",
  10596. "type": "github"
  10597. }
  10598. ],
  10599. "time": "2023-02-03T06:03:51+00:00"
  10600. },
  10601. {
  10602. "name": "sebastian/exporter",
  10603. "version": "4.0.5",
  10604. "source": {
  10605. "type": "git",
  10606. "url": "https://github.com/sebastianbergmann/exporter.git",
  10607. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  10608. },
  10609. "dist": {
  10610. "type": "zip",
  10611. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10612. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10613. "shasum": "",
  10614. "mirrors": [
  10615. {
  10616. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10617. "preferred": true
  10618. }
  10619. ]
  10620. },
  10621. "require": {
  10622. "php": ">=7.3",
  10623. "sebastian/recursion-context": "^4.0"
  10624. },
  10625. "require-dev": {
  10626. "ext-mbstring": "*",
  10627. "phpunit/phpunit": "^9.3"
  10628. },
  10629. "type": "library",
  10630. "extra": {
  10631. "branch-alias": {
  10632. "dev-master": "4.0-dev"
  10633. }
  10634. },
  10635. "autoload": {
  10636. "classmap": [
  10637. "src/"
  10638. ]
  10639. },
  10640. "notification-url": "https://packagist.org/downloads/",
  10641. "license": [
  10642. "BSD-3-Clause"
  10643. ],
  10644. "authors": [
  10645. {
  10646. "name": "Sebastian Bergmann",
  10647. "email": "sebastian@phpunit.de"
  10648. },
  10649. {
  10650. "name": "Jeff Welch",
  10651. "email": "whatthejeff@gmail.com"
  10652. },
  10653. {
  10654. "name": "Volker Dusch",
  10655. "email": "github@wallbash.com"
  10656. },
  10657. {
  10658. "name": "Adam Harvey",
  10659. "email": "aharvey@php.net"
  10660. },
  10661. {
  10662. "name": "Bernhard Schussek",
  10663. "email": "bschussek@gmail.com"
  10664. }
  10665. ],
  10666. "description": "Provides the functionality to export PHP variables for visualization",
  10667. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10668. "keywords": [
  10669. "export",
  10670. "exporter"
  10671. ],
  10672. "support": {
  10673. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10674. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10675. },
  10676. "funding": [
  10677. {
  10678. "url": "https://github.com/sebastianbergmann",
  10679. "type": "github"
  10680. }
  10681. ],
  10682. "time": "2022-09-14T06:03:37+00:00"
  10683. },
  10684. {
  10685. "name": "sebastian/global-state",
  10686. "version": "5.0.5",
  10687. "source": {
  10688. "type": "git",
  10689. "url": "https://github.com/sebastianbergmann/global-state.git",
  10690. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  10691. },
  10692. "dist": {
  10693. "type": "zip",
  10694. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10695. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10696. "shasum": "",
  10697. "mirrors": [
  10698. {
  10699. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10700. "preferred": true
  10701. }
  10702. ]
  10703. },
  10704. "require": {
  10705. "php": ">=7.3",
  10706. "sebastian/object-reflector": "^2.0",
  10707. "sebastian/recursion-context": "^4.0"
  10708. },
  10709. "require-dev": {
  10710. "ext-dom": "*",
  10711. "phpunit/phpunit": "^9.3"
  10712. },
  10713. "suggest": {
  10714. "ext-uopz": "*"
  10715. },
  10716. "type": "library",
  10717. "extra": {
  10718. "branch-alias": {
  10719. "dev-master": "5.0-dev"
  10720. }
  10721. },
  10722. "autoload": {
  10723. "classmap": [
  10724. "src/"
  10725. ]
  10726. },
  10727. "notification-url": "https://packagist.org/downloads/",
  10728. "license": [
  10729. "BSD-3-Clause"
  10730. ],
  10731. "authors": [
  10732. {
  10733. "name": "Sebastian Bergmann",
  10734. "email": "sebastian@phpunit.de"
  10735. }
  10736. ],
  10737. "description": "Snapshotting of global state",
  10738. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10739. "keywords": [
  10740. "global state"
  10741. ],
  10742. "support": {
  10743. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10744. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  10745. },
  10746. "funding": [
  10747. {
  10748. "url": "https://github.com/sebastianbergmann",
  10749. "type": "github"
  10750. }
  10751. ],
  10752. "time": "2022-02-14T08:28:10+00:00"
  10753. },
  10754. {
  10755. "name": "sebastian/lines-of-code",
  10756. "version": "1.0.3",
  10757. "source": {
  10758. "type": "git",
  10759. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10760. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10761. },
  10762. "dist": {
  10763. "type": "zip",
  10764. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10765. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10766. "shasum": "",
  10767. "mirrors": [
  10768. {
  10769. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10770. "preferred": true
  10771. }
  10772. ]
  10773. },
  10774. "require": {
  10775. "nikic/php-parser": "^4.6",
  10776. "php": ">=7.3"
  10777. },
  10778. "require-dev": {
  10779. "phpunit/phpunit": "^9.3"
  10780. },
  10781. "type": "library",
  10782. "extra": {
  10783. "branch-alias": {
  10784. "dev-master": "1.0-dev"
  10785. }
  10786. },
  10787. "autoload": {
  10788. "classmap": [
  10789. "src/"
  10790. ]
  10791. },
  10792. "notification-url": "https://packagist.org/downloads/",
  10793. "license": [
  10794. "BSD-3-Clause"
  10795. ],
  10796. "authors": [
  10797. {
  10798. "name": "Sebastian Bergmann",
  10799. "email": "sebastian@phpunit.de",
  10800. "role": "lead"
  10801. }
  10802. ],
  10803. "description": "Library for counting the lines of code in PHP source code",
  10804. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10805. "support": {
  10806. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10807. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10808. },
  10809. "funding": [
  10810. {
  10811. "url": "https://github.com/sebastianbergmann",
  10812. "type": "github"
  10813. }
  10814. ],
  10815. "time": "2020-11-28T06:42:11+00:00"
  10816. },
  10817. {
  10818. "name": "sebastian/object-enumerator",
  10819. "version": "4.0.4",
  10820. "source": {
  10821. "type": "git",
  10822. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10823. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10824. },
  10825. "dist": {
  10826. "type": "zip",
  10827. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10828. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10829. "shasum": "",
  10830. "mirrors": [
  10831. {
  10832. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10833. "preferred": true
  10834. }
  10835. ]
  10836. },
  10837. "require": {
  10838. "php": ">=7.3",
  10839. "sebastian/object-reflector": "^2.0",
  10840. "sebastian/recursion-context": "^4.0"
  10841. },
  10842. "require-dev": {
  10843. "phpunit/phpunit": "^9.3"
  10844. },
  10845. "type": "library",
  10846. "extra": {
  10847. "branch-alias": {
  10848. "dev-master": "4.0-dev"
  10849. }
  10850. },
  10851. "autoload": {
  10852. "classmap": [
  10853. "src/"
  10854. ]
  10855. },
  10856. "notification-url": "https://packagist.org/downloads/",
  10857. "license": [
  10858. "BSD-3-Clause"
  10859. ],
  10860. "authors": [
  10861. {
  10862. "name": "Sebastian Bergmann",
  10863. "email": "sebastian@phpunit.de"
  10864. }
  10865. ],
  10866. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10867. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10868. "support": {
  10869. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10870. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10871. },
  10872. "funding": [
  10873. {
  10874. "url": "https://github.com/sebastianbergmann",
  10875. "type": "github"
  10876. }
  10877. ],
  10878. "time": "2020-10-26T13:12:34+00:00"
  10879. },
  10880. {
  10881. "name": "sebastian/object-reflector",
  10882. "version": "2.0.4",
  10883. "source": {
  10884. "type": "git",
  10885. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10886. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10887. },
  10888. "dist": {
  10889. "type": "zip",
  10890. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10891. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10892. "shasum": "",
  10893. "mirrors": [
  10894. {
  10895. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10896. "preferred": true
  10897. }
  10898. ]
  10899. },
  10900. "require": {
  10901. "php": ">=7.3"
  10902. },
  10903. "require-dev": {
  10904. "phpunit/phpunit": "^9.3"
  10905. },
  10906. "type": "library",
  10907. "extra": {
  10908. "branch-alias": {
  10909. "dev-master": "2.0-dev"
  10910. }
  10911. },
  10912. "autoload": {
  10913. "classmap": [
  10914. "src/"
  10915. ]
  10916. },
  10917. "notification-url": "https://packagist.org/downloads/",
  10918. "license": [
  10919. "BSD-3-Clause"
  10920. ],
  10921. "authors": [
  10922. {
  10923. "name": "Sebastian Bergmann",
  10924. "email": "sebastian@phpunit.de"
  10925. }
  10926. ],
  10927. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10928. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10929. "support": {
  10930. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10931. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10932. },
  10933. "funding": [
  10934. {
  10935. "url": "https://github.com/sebastianbergmann",
  10936. "type": "github"
  10937. }
  10938. ],
  10939. "time": "2020-10-26T13:14:26+00:00"
  10940. },
  10941. {
  10942. "name": "sebastian/recursion-context",
  10943. "version": "4.0.5",
  10944. "source": {
  10945. "type": "git",
  10946. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10947. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10948. },
  10949. "dist": {
  10950. "type": "zip",
  10951. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10952. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10953. "shasum": "",
  10954. "mirrors": [
  10955. {
  10956. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10957. "preferred": true
  10958. }
  10959. ]
  10960. },
  10961. "require": {
  10962. "php": ">=7.3"
  10963. },
  10964. "require-dev": {
  10965. "phpunit/phpunit": "^9.3"
  10966. },
  10967. "type": "library",
  10968. "extra": {
  10969. "branch-alias": {
  10970. "dev-master": "4.0-dev"
  10971. }
  10972. },
  10973. "autoload": {
  10974. "classmap": [
  10975. "src/"
  10976. ]
  10977. },
  10978. "notification-url": "https://packagist.org/downloads/",
  10979. "license": [
  10980. "BSD-3-Clause"
  10981. ],
  10982. "authors": [
  10983. {
  10984. "name": "Sebastian Bergmann",
  10985. "email": "sebastian@phpunit.de"
  10986. },
  10987. {
  10988. "name": "Jeff Welch",
  10989. "email": "whatthejeff@gmail.com"
  10990. },
  10991. {
  10992. "name": "Adam Harvey",
  10993. "email": "aharvey@php.net"
  10994. }
  10995. ],
  10996. "description": "Provides functionality to recursively process PHP variables",
  10997. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10998. "support": {
  10999. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11000. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  11001. },
  11002. "funding": [
  11003. {
  11004. "url": "https://github.com/sebastianbergmann",
  11005. "type": "github"
  11006. }
  11007. ],
  11008. "time": "2023-02-03T06:07:39+00:00"
  11009. },
  11010. {
  11011. "name": "sebastian/resource-operations",
  11012. "version": "3.0.3",
  11013. "source": {
  11014. "type": "git",
  11015. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11016. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  11017. },
  11018. "dist": {
  11019. "type": "zip",
  11020. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11021. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11022. "shasum": "",
  11023. "mirrors": [
  11024. {
  11025. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11026. "preferred": true
  11027. }
  11028. ]
  11029. },
  11030. "require": {
  11031. "php": ">=7.3"
  11032. },
  11033. "require-dev": {
  11034. "phpunit/phpunit": "^9.0"
  11035. },
  11036. "type": "library",
  11037. "extra": {
  11038. "branch-alias": {
  11039. "dev-master": "3.0-dev"
  11040. }
  11041. },
  11042. "autoload": {
  11043. "classmap": [
  11044. "src/"
  11045. ]
  11046. },
  11047. "notification-url": "https://packagist.org/downloads/",
  11048. "license": [
  11049. "BSD-3-Clause"
  11050. ],
  11051. "authors": [
  11052. {
  11053. "name": "Sebastian Bergmann",
  11054. "email": "sebastian@phpunit.de"
  11055. }
  11056. ],
  11057. "description": "Provides a list of PHP built-in functions that operate on resources",
  11058. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11059. "support": {
  11060. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11061. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11062. },
  11063. "funding": [
  11064. {
  11065. "url": "https://github.com/sebastianbergmann",
  11066. "type": "github"
  11067. }
  11068. ],
  11069. "time": "2020-09-28T06:45:17+00:00"
  11070. },
  11071. {
  11072. "name": "sebastian/type",
  11073. "version": "3.2.1",
  11074. "source": {
  11075. "type": "git",
  11076. "url": "https://github.com/sebastianbergmann/type.git",
  11077. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  11078. },
  11079. "dist": {
  11080. "type": "zip",
  11081. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  11082. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  11083. "shasum": "",
  11084. "mirrors": [
  11085. {
  11086. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11087. "preferred": true
  11088. }
  11089. ]
  11090. },
  11091. "require": {
  11092. "php": ">=7.3"
  11093. },
  11094. "require-dev": {
  11095. "phpunit/phpunit": "^9.5"
  11096. },
  11097. "type": "library",
  11098. "extra": {
  11099. "branch-alias": {
  11100. "dev-master": "3.2-dev"
  11101. }
  11102. },
  11103. "autoload": {
  11104. "classmap": [
  11105. "src/"
  11106. ]
  11107. },
  11108. "notification-url": "https://packagist.org/downloads/",
  11109. "license": [
  11110. "BSD-3-Clause"
  11111. ],
  11112. "authors": [
  11113. {
  11114. "name": "Sebastian Bergmann",
  11115. "email": "sebastian@phpunit.de",
  11116. "role": "lead"
  11117. }
  11118. ],
  11119. "description": "Collection of value objects that represent the types of the PHP type system",
  11120. "homepage": "https://github.com/sebastianbergmann/type",
  11121. "support": {
  11122. "issues": "https://github.com/sebastianbergmann/type/issues",
  11123. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  11124. },
  11125. "funding": [
  11126. {
  11127. "url": "https://github.com/sebastianbergmann",
  11128. "type": "github"
  11129. }
  11130. ],
  11131. "time": "2023-02-03T06:13:03+00:00"
  11132. },
  11133. {
  11134. "name": "sebastian/version",
  11135. "version": "3.0.2",
  11136. "source": {
  11137. "type": "git",
  11138. "url": "https://github.com/sebastianbergmann/version.git",
  11139. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11140. },
  11141. "dist": {
  11142. "type": "zip",
  11143. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11144. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11145. "shasum": "",
  11146. "mirrors": [
  11147. {
  11148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11149. "preferred": true
  11150. }
  11151. ]
  11152. },
  11153. "require": {
  11154. "php": ">=7.3"
  11155. },
  11156. "type": "library",
  11157. "extra": {
  11158. "branch-alias": {
  11159. "dev-master": "3.0-dev"
  11160. }
  11161. },
  11162. "autoload": {
  11163. "classmap": [
  11164. "src/"
  11165. ]
  11166. },
  11167. "notification-url": "https://packagist.org/downloads/",
  11168. "license": [
  11169. "BSD-3-Clause"
  11170. ],
  11171. "authors": [
  11172. {
  11173. "name": "Sebastian Bergmann",
  11174. "email": "sebastian@phpunit.de",
  11175. "role": "lead"
  11176. }
  11177. ],
  11178. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11179. "homepage": "https://github.com/sebastianbergmann/version",
  11180. "support": {
  11181. "issues": "https://github.com/sebastianbergmann/version/issues",
  11182. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11183. },
  11184. "funding": [
  11185. {
  11186. "url": "https://github.com/sebastianbergmann",
  11187. "type": "github"
  11188. }
  11189. ],
  11190. "time": "2020-09-28T06:39:44+00:00"
  11191. },
  11192. {
  11193. "name": "spatie/backtrace",
  11194. "version": "1.3.0",
  11195. "source": {
  11196. "type": "git",
  11197. "url": "https://github.com/spatie/backtrace.git",
  11198. "reference": "6d0ff6485800ba649f06c788f1fbd1fb61fbc3ec"
  11199. },
  11200. "dist": {
  11201. "type": "zip",
  11202. "url": "https://api.github.com/repos/spatie/backtrace/zipball/6d0ff6485800ba649f06c788f1fbd1fb61fbc3ec",
  11203. "reference": "6d0ff6485800ba649f06c788f1fbd1fb61fbc3ec",
  11204. "shasum": "",
  11205. "mirrors": [
  11206. {
  11207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11208. "preferred": true
  11209. }
  11210. ]
  11211. },
  11212. "require": {
  11213. "php": "^7.3|^8.0"
  11214. },
  11215. "require-dev": {
  11216. "ext-json": "*",
  11217. "phpunit/phpunit": "^9.3",
  11218. "spatie/phpunit-snapshot-assertions": "^4.2",
  11219. "symfony/var-dumper": "^5.1"
  11220. },
  11221. "type": "library",
  11222. "autoload": {
  11223. "psr-4": {
  11224. "Spatie\\Backtrace\\": "src"
  11225. }
  11226. },
  11227. "notification-url": "https://packagist.org/downloads/",
  11228. "license": [
  11229. "MIT"
  11230. ],
  11231. "authors": [
  11232. {
  11233. "name": "Freek Van de Herten",
  11234. "email": "freek@spatie.be",
  11235. "homepage": "https://spatie.be",
  11236. "role": "Developer"
  11237. }
  11238. ],
  11239. "description": "A better backtrace",
  11240. "homepage": "https://github.com/spatie/backtrace",
  11241. "keywords": [
  11242. "Backtrace",
  11243. "spatie"
  11244. ],
  11245. "support": {
  11246. "source": "https://github.com/spatie/backtrace/tree/1.3.0"
  11247. },
  11248. "funding": [
  11249. {
  11250. "url": "https://github.com/sponsors/spatie",
  11251. "type": "github"
  11252. },
  11253. {
  11254. "url": "https://spatie.be/open-source/support-us",
  11255. "type": "other"
  11256. }
  11257. ],
  11258. "time": "2023-03-04T08:31:24+00:00"
  11259. },
  11260. {
  11261. "name": "spatie/flare-client-php",
  11262. "version": "1.3.5",
  11263. "source": {
  11264. "type": "git",
  11265. "url": "https://github.com/spatie/flare-client-php.git",
  11266. "reference": "3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42"
  11267. },
  11268. "dist": {
  11269. "type": "zip",
  11270. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42",
  11271. "reference": "3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42",
  11272. "shasum": "",
  11273. "mirrors": [
  11274. {
  11275. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11276. "preferred": true
  11277. }
  11278. ]
  11279. },
  11280. "require": {
  11281. "illuminate/pipeline": "^8.0|^9.0|^10.0",
  11282. "php": "^8.0",
  11283. "spatie/backtrace": "^1.2",
  11284. "symfony/http-foundation": "^5.0|^6.0",
  11285. "symfony/mime": "^5.2|^6.0",
  11286. "symfony/process": "^5.2|^6.0",
  11287. "symfony/var-dumper": "^5.2|^6.0"
  11288. },
  11289. "require-dev": {
  11290. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  11291. "pestphp/pest": "^1.20",
  11292. "phpstan/extension-installer": "^1.1",
  11293. "phpstan/phpstan-deprecation-rules": "^1.0",
  11294. "phpstan/phpstan-phpunit": "^1.0",
  11295. "spatie/phpunit-snapshot-assertions": "^4.0"
  11296. },
  11297. "type": "library",
  11298. "extra": {
  11299. "branch-alias": {
  11300. "dev-main": "1.1.x-dev"
  11301. }
  11302. },
  11303. "autoload": {
  11304. "files": [
  11305. "src/helpers.php"
  11306. ],
  11307. "psr-4": {
  11308. "Spatie\\FlareClient\\": "src"
  11309. }
  11310. },
  11311. "notification-url": "https://packagist.org/downloads/",
  11312. "license": [
  11313. "MIT"
  11314. ],
  11315. "description": "Send PHP errors to Flare",
  11316. "homepage": "https://github.com/spatie/flare-client-php",
  11317. "keywords": [
  11318. "exception",
  11319. "flare",
  11320. "reporting",
  11321. "spatie"
  11322. ],
  11323. "support": {
  11324. "issues": "https://github.com/spatie/flare-client-php/issues",
  11325. "source": "https://github.com/spatie/flare-client-php/tree/1.3.5"
  11326. },
  11327. "funding": [
  11328. {
  11329. "url": "https://github.com/spatie",
  11330. "type": "github"
  11331. }
  11332. ],
  11333. "time": "2023-01-23T15:58:46+00:00"
  11334. },
  11335. {
  11336. "name": "spatie/ignition",
  11337. "version": "1.4.5",
  11338. "source": {
  11339. "type": "git",
  11340. "url": "https://github.com/spatie/ignition.git",
  11341. "reference": "cc09114b7057bd217b676f047544b33f5b6247e6"
  11342. },
  11343. "dist": {
  11344. "type": "zip",
  11345. "url": "https://api.github.com/repos/spatie/ignition/zipball/cc09114b7057bd217b676f047544b33f5b6247e6",
  11346. "reference": "cc09114b7057bd217b676f047544b33f5b6247e6",
  11347. "shasum": "",
  11348. "mirrors": [
  11349. {
  11350. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11351. "preferred": true
  11352. }
  11353. ]
  11354. },
  11355. "require": {
  11356. "ext-json": "*",
  11357. "ext-mbstring": "*",
  11358. "php": "^8.0",
  11359. "spatie/flare-client-php": "^1.1",
  11360. "symfony/console": "^5.4|^6.0",
  11361. "symfony/var-dumper": "^5.4|^6.0"
  11362. },
  11363. "require-dev": {
  11364. "mockery/mockery": "^1.4",
  11365. "pestphp/pest": "^1.20",
  11366. "phpstan/extension-installer": "^1.1",
  11367. "phpstan/phpstan-deprecation-rules": "^1.0",
  11368. "phpstan/phpstan-phpunit": "^1.0",
  11369. "symfony/process": "^5.4|^6.0"
  11370. },
  11371. "type": "library",
  11372. "extra": {
  11373. "branch-alias": {
  11374. "dev-main": "1.4.x-dev"
  11375. }
  11376. },
  11377. "autoload": {
  11378. "psr-4": {
  11379. "Spatie\\Ignition\\": "src"
  11380. }
  11381. },
  11382. "notification-url": "https://packagist.org/downloads/",
  11383. "license": [
  11384. "MIT"
  11385. ],
  11386. "authors": [
  11387. {
  11388. "name": "Spatie",
  11389. "email": "info@spatie.be",
  11390. "role": "Developer"
  11391. }
  11392. ],
  11393. "description": "A beautiful error page for PHP applications.",
  11394. "homepage": "https://flareapp.io/ignition",
  11395. "keywords": [
  11396. "error",
  11397. "flare",
  11398. "laravel",
  11399. "page"
  11400. ],
  11401. "support": {
  11402. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  11403. "forum": "https://twitter.com/flareappio",
  11404. "issues": "https://github.com/spatie/ignition/issues",
  11405. "source": "https://github.com/spatie/ignition"
  11406. },
  11407. "funding": [
  11408. {
  11409. "url": "https://github.com/spatie",
  11410. "type": "github"
  11411. }
  11412. ],
  11413. "time": "2023-02-28T16:49:47+00:00"
  11414. },
  11415. {
  11416. "name": "spatie/laravel-ignition",
  11417. "version": "1.6.4",
  11418. "source": {
  11419. "type": "git",
  11420. "url": "https://github.com/spatie/laravel-ignition.git",
  11421. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc"
  11422. },
  11423. "dist": {
  11424. "type": "zip",
  11425. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  11426. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  11427. "shasum": "",
  11428. "mirrors": [
  11429. {
  11430. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11431. "preferred": true
  11432. }
  11433. ]
  11434. },
  11435. "require": {
  11436. "ext-curl": "*",
  11437. "ext-json": "*",
  11438. "ext-mbstring": "*",
  11439. "illuminate/support": "^8.77|^9.27",
  11440. "monolog/monolog": "^2.3",
  11441. "php": "^8.0",
  11442. "spatie/flare-client-php": "^1.0.1",
  11443. "spatie/ignition": "^1.4.1",
  11444. "symfony/console": "^5.0|^6.0",
  11445. "symfony/var-dumper": "^5.0|^6.0"
  11446. },
  11447. "require-dev": {
  11448. "filp/whoops": "^2.14",
  11449. "livewire/livewire": "^2.8|dev-develop",
  11450. "mockery/mockery": "^1.4",
  11451. "nunomaduro/larastan": "^1.0",
  11452. "orchestra/testbench": "^6.23|^7.0",
  11453. "pestphp/pest": "^1.20",
  11454. "phpstan/extension-installer": "^1.1",
  11455. "phpstan/phpstan-deprecation-rules": "^1.0",
  11456. "phpstan/phpstan-phpunit": "^1.0",
  11457. "spatie/laravel-ray": "^1.27"
  11458. },
  11459. "type": "library",
  11460. "extra": {
  11461. "laravel": {
  11462. "providers": [
  11463. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  11464. ],
  11465. "aliases": {
  11466. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  11467. }
  11468. }
  11469. },
  11470. "autoload": {
  11471. "files": [
  11472. "src/helpers.php"
  11473. ],
  11474. "psr-4": {
  11475. "Spatie\\LaravelIgnition\\": "src"
  11476. }
  11477. },
  11478. "notification-url": "https://packagist.org/downloads/",
  11479. "license": [
  11480. "MIT"
  11481. ],
  11482. "authors": [
  11483. {
  11484. "name": "Spatie",
  11485. "email": "info@spatie.be",
  11486. "role": "Developer"
  11487. }
  11488. ],
  11489. "description": "A beautiful error page for Laravel applications.",
  11490. "homepage": "https://flareapp.io/ignition",
  11491. "keywords": [
  11492. "error",
  11493. "flare",
  11494. "laravel",
  11495. "page"
  11496. ],
  11497. "support": {
  11498. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  11499. "forum": "https://twitter.com/flareappio",
  11500. "issues": "https://github.com/spatie/laravel-ignition/issues",
  11501. "source": "https://github.com/spatie/laravel-ignition"
  11502. },
  11503. "funding": [
  11504. {
  11505. "url": "https://github.com/spatie",
  11506. "type": "github"
  11507. }
  11508. ],
  11509. "time": "2023-01-03T19:28:04+00:00"
  11510. },
  11511. {
  11512. "name": "symfony/yaml",
  11513. "version": "v6.0.19",
  11514. "source": {
  11515. "type": "git",
  11516. "url": "https://github.com/symfony/yaml.git",
  11517. "reference": "deec3a812a0305a50db8ae689b183f43d915c884"
  11518. },
  11519. "dist": {
  11520. "type": "zip",
  11521. "url": "https://api.github.com/repos/symfony/yaml/zipball/deec3a812a0305a50db8ae689b183f43d915c884",
  11522. "reference": "deec3a812a0305a50db8ae689b183f43d915c884",
  11523. "shasum": "",
  11524. "mirrors": [
  11525. {
  11526. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11527. "preferred": true
  11528. }
  11529. ]
  11530. },
  11531. "require": {
  11532. "php": ">=8.0.2",
  11533. "symfony/polyfill-ctype": "^1.8"
  11534. },
  11535. "conflict": {
  11536. "symfony/console": "<5.4"
  11537. },
  11538. "require-dev": {
  11539. "symfony/console": "^5.4|^6.0"
  11540. },
  11541. "suggest": {
  11542. "symfony/console": "For validating YAML files using the lint command"
  11543. },
  11544. "bin": [
  11545. "Resources/bin/yaml-lint"
  11546. ],
  11547. "type": "library",
  11548. "autoload": {
  11549. "psr-4": {
  11550. "Symfony\\Component\\Yaml\\": ""
  11551. },
  11552. "exclude-from-classmap": [
  11553. "/Tests/"
  11554. ]
  11555. },
  11556. "notification-url": "https://packagist.org/downloads/",
  11557. "license": [
  11558. "MIT"
  11559. ],
  11560. "authors": [
  11561. {
  11562. "name": "Fabien Potencier",
  11563. "email": "fabien@symfony.com"
  11564. },
  11565. {
  11566. "name": "Symfony Community",
  11567. "homepage": "https://symfony.com/contributors"
  11568. }
  11569. ],
  11570. "description": "Loads and dumps YAML files",
  11571. "homepage": "https://symfony.com",
  11572. "support": {
  11573. "source": "https://github.com/symfony/yaml/tree/v6.0.19"
  11574. },
  11575. "funding": [
  11576. {
  11577. "url": "https://symfony.com/sponsor",
  11578. "type": "custom"
  11579. },
  11580. {
  11581. "url": "https://github.com/fabpot",
  11582. "type": "github"
  11583. },
  11584. {
  11585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11586. "type": "tidelift"
  11587. }
  11588. ],
  11589. "time": "2023-01-11T11:50:03+00:00"
  11590. },
  11591. {
  11592. "name": "theseer/tokenizer",
  11593. "version": "1.2.1",
  11594. "source": {
  11595. "type": "git",
  11596. "url": "https://github.com/theseer/tokenizer.git",
  11597. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  11598. },
  11599. "dist": {
  11600. "type": "zip",
  11601. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  11602. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  11603. "shasum": "",
  11604. "mirrors": [
  11605. {
  11606. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11607. "preferred": true
  11608. }
  11609. ]
  11610. },
  11611. "require": {
  11612. "ext-dom": "*",
  11613. "ext-tokenizer": "*",
  11614. "ext-xmlwriter": "*",
  11615. "php": "^7.2 || ^8.0"
  11616. },
  11617. "type": "library",
  11618. "autoload": {
  11619. "classmap": [
  11620. "src/"
  11621. ]
  11622. },
  11623. "notification-url": "https://packagist.org/downloads/",
  11624. "license": [
  11625. "BSD-3-Clause"
  11626. ],
  11627. "authors": [
  11628. {
  11629. "name": "Arne Blankerts",
  11630. "email": "arne@blankerts.de",
  11631. "role": "Developer"
  11632. }
  11633. ],
  11634. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11635. "support": {
  11636. "issues": "https://github.com/theseer/tokenizer/issues",
  11637. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  11638. },
  11639. "funding": [
  11640. {
  11641. "url": "https://github.com/theseer",
  11642. "type": "github"
  11643. }
  11644. ],
  11645. "time": "2021-07-28T10:34:58+00:00"
  11646. }
  11647. ],
  11648. "aliases": [],
  11649. "minimum-stability": "stable",
  11650. "stability-flags": [],
  11651. "prefer-stable": true,
  11652. "prefer-lowest": false,
  11653. "platform": {
  11654. "php": "^8.0.2"
  11655. },
  11656. "platform-dev": [],
  11657. "plugin-api-version": "2.3.0"
  11658. }