composer.lock 465 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867
  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": "295db55778b9eaf099ebda0f14a3d07f",
  8. "packages": [
  9. {
  10. "name": "appstract/laravel-opcache",
  11. "version": "4.0.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/appstract/laravel-opcache.git",
  15. "reference": "d2ce88cddda6af54c14d1f9ceaaf94b54f38f9d3"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/appstract/laravel-opcache/zipball/d2ce88cddda6af54c14d1f9ceaaf94b54f38f9d3",
  20. "reference": "d2ce88cddda6af54c14d1f9ceaaf94b54f38f9d3",
  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. "guzzlehttp/guzzle": "^6.3.1|^7.0",
  31. "laravel/framework": ">=7.0",
  32. "php": ">=7.2.5"
  33. },
  34. "require-dev": {
  35. "orchestra/testbench": "^5.0",
  36. "phpunit/phpunit": "^8.5"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "laravel": {
  41. "providers": [
  42. "Appstract\\Opcache\\OpcacheServiceProvider"
  43. ]
  44. }
  45. },
  46. "autoload": {
  47. "psr-4": {
  48. "Appstract\\Opcache\\": "src"
  49. }
  50. },
  51. "notification-url": "https://packagist.org/downloads/",
  52. "license": [
  53. "MIT"
  54. ],
  55. "authors": [
  56. {
  57. "name": "Olav van Schie",
  58. "email": "mail@appstract.nl",
  59. "homepage": "https://appstract.nl",
  60. "role": "Developer"
  61. }
  62. ],
  63. "description": "PHP OPcache Artisan commands for Laravel.",
  64. "homepage": "https://github.com/appstract/laravel-opcache",
  65. "keywords": [
  66. "Opcache",
  67. "appstract",
  68. "laravel",
  69. "php"
  70. ],
  71. "support": {
  72. "issues": "https://github.com/appstract/laravel-opcache/issues",
  73. "source": "https://github.com/appstract/laravel-opcache/tree/4.0.2"
  74. },
  75. "time": "2020-12-01T16:12:14+00:00"
  76. },
  77. {
  78. "name": "asm89/stack-cors",
  79. "version": "v2.1.1",
  80. "source": {
  81. "type": "git",
  82. "url": "https://github.com/asm89/stack-cors.git",
  83. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  84. },
  85. "dist": {
  86. "type": "zip",
  87. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  88. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  89. "shasum": "",
  90. "mirrors": [
  91. {
  92. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  93. "preferred": true
  94. }
  95. ]
  96. },
  97. "require": {
  98. "php": "^7.2|^8.0",
  99. "symfony/http-foundation": "^4|^5|^6",
  100. "symfony/http-kernel": "^4|^5|^6"
  101. },
  102. "require-dev": {
  103. "phpunit/phpunit": "^7|^9",
  104. "squizlabs/php_codesniffer": "^3.5"
  105. },
  106. "type": "library",
  107. "extra": {
  108. "branch-alias": {
  109. "dev-master": "2.1-dev"
  110. }
  111. },
  112. "autoload": {
  113. "psr-4": {
  114. "Asm89\\Stack\\": "src/"
  115. }
  116. },
  117. "notification-url": "https://packagist.org/downloads/",
  118. "license": [
  119. "MIT"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Alexander",
  124. "email": "iam.asm89@gmail.com"
  125. }
  126. ],
  127. "description": "Cross-origin resource sharing library and stack middleware",
  128. "homepage": "https://github.com/asm89/stack-cors",
  129. "keywords": [
  130. "cors",
  131. "stack"
  132. ],
  133. "support": {
  134. "issues": "https://github.com/asm89/stack-cors/issues",
  135. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  136. },
  137. "time": "2022-01-18T09:12:03+00:00"
  138. },
  139. {
  140. "name": "brick/math",
  141. "version": "0.9.3",
  142. "source": {
  143. "type": "git",
  144. "url": "https://github.com/brick/math.git",
  145. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  146. },
  147. "dist": {
  148. "type": "zip",
  149. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  150. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  151. "shasum": "",
  152. "mirrors": [
  153. {
  154. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  155. "preferred": true
  156. }
  157. ]
  158. },
  159. "require": {
  160. "ext-json": "*",
  161. "php": "^7.1 || ^8.0"
  162. },
  163. "require-dev": {
  164. "php-coveralls/php-coveralls": "^2.2",
  165. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  166. "vimeo/psalm": "4.9.2"
  167. },
  168. "type": "library",
  169. "autoload": {
  170. "psr-4": {
  171. "Brick\\Math\\": "src/"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "description": "Arbitrary-precision arithmetic library",
  179. "keywords": [
  180. "Arbitrary-precision",
  181. "BigInteger",
  182. "BigRational",
  183. "arithmetic",
  184. "bigdecimal",
  185. "bignum",
  186. "brick",
  187. "math"
  188. ],
  189. "support": {
  190. "issues": "https://github.com/brick/math/issues",
  191. "source": "https://github.com/brick/math/tree/0.9.3"
  192. },
  193. "funding": [
  194. {
  195. "url": "https://github.com/BenMorel",
  196. "type": "github"
  197. },
  198. {
  199. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  200. "type": "tidelift"
  201. }
  202. ],
  203. "time": "2021-08-15T20:50:18+00:00"
  204. },
  205. {
  206. "name": "composer/ca-bundle",
  207. "version": "1.3.5",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/composer/ca-bundle.git",
  211. "reference": "74780ccf8c19d6acb8d65c5f39cd72110e132bbd"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/74780ccf8c19d6acb8d65c5f39cd72110e132bbd",
  216. "reference": "74780ccf8c19d6acb8d65c5f39cd72110e132bbd",
  217. "shasum": "",
  218. "mirrors": [
  219. {
  220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  221. "preferred": true
  222. }
  223. ]
  224. },
  225. "require": {
  226. "ext-openssl": "*",
  227. "ext-pcre": "*",
  228. "php": "^5.3.2 || ^7.0 || ^8.0"
  229. },
  230. "require-dev": {
  231. "phpstan/phpstan": "^0.12.55",
  232. "psr/log": "^1.0",
  233. "symfony/phpunit-bridge": "^4.2 || ^5",
  234. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  235. },
  236. "type": "library",
  237. "extra": {
  238. "branch-alias": {
  239. "dev-main": "1.x-dev"
  240. }
  241. },
  242. "autoload": {
  243. "psr-4": {
  244. "Composer\\CaBundle\\": "src"
  245. }
  246. },
  247. "notification-url": "https://packagist.org/downloads/",
  248. "license": [
  249. "MIT"
  250. ],
  251. "authors": [
  252. {
  253. "name": "Jordi Boggiano",
  254. "email": "j.boggiano@seld.be",
  255. "homepage": "http://seld.be"
  256. }
  257. ],
  258. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  259. "keywords": [
  260. "cabundle",
  261. "cacert",
  262. "certificate",
  263. "ssl",
  264. "tls"
  265. ],
  266. "support": {
  267. "irc": "irc://irc.freenode.org/composer",
  268. "issues": "https://github.com/composer/ca-bundle/issues",
  269. "source": "https://github.com/composer/ca-bundle/tree/1.3.5"
  270. },
  271. "funding": [
  272. {
  273. "url": "https://packagist.com",
  274. "type": "custom"
  275. },
  276. {
  277. "url": "https://github.com/composer",
  278. "type": "github"
  279. },
  280. {
  281. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  282. "type": "tidelift"
  283. }
  284. ],
  285. "time": "2023-01-11T08:27:00+00:00"
  286. },
  287. {
  288. "name": "doctrine/cache",
  289. "version": "2.2.0",
  290. "source": {
  291. "type": "git",
  292. "url": "https://github.com/doctrine/cache.git",
  293. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  294. },
  295. "dist": {
  296. "type": "zip",
  297. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  298. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  299. "shasum": "",
  300. "mirrors": [
  301. {
  302. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  303. "preferred": true
  304. }
  305. ]
  306. },
  307. "require": {
  308. "php": "~7.1 || ^8.0"
  309. },
  310. "conflict": {
  311. "doctrine/common": ">2.2,<2.4"
  312. },
  313. "require-dev": {
  314. "cache/integration-tests": "dev-master",
  315. "doctrine/coding-standard": "^9",
  316. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  317. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  318. "symfony/cache": "^4.4 || ^5.4 || ^6",
  319. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  320. },
  321. "type": "library",
  322. "autoload": {
  323. "psr-4": {
  324. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  325. }
  326. },
  327. "notification-url": "https://packagist.org/downloads/",
  328. "license": [
  329. "MIT"
  330. ],
  331. "authors": [
  332. {
  333. "name": "Guilherme Blanco",
  334. "email": "guilhermeblanco@gmail.com"
  335. },
  336. {
  337. "name": "Roman Borschel",
  338. "email": "roman@code-factory.org"
  339. },
  340. {
  341. "name": "Benjamin Eberlei",
  342. "email": "kontakt@beberlei.de"
  343. },
  344. {
  345. "name": "Jonathan Wage",
  346. "email": "jonwage@gmail.com"
  347. },
  348. {
  349. "name": "Johannes Schmitt",
  350. "email": "schmittjoh@gmail.com"
  351. }
  352. ],
  353. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  354. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  355. "keywords": [
  356. "abstraction",
  357. "apcu",
  358. "cache",
  359. "caching",
  360. "couchdb",
  361. "memcached",
  362. "php",
  363. "redis",
  364. "xcache"
  365. ],
  366. "support": {
  367. "issues": "https://github.com/doctrine/cache/issues",
  368. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  369. },
  370. "funding": [
  371. {
  372. "url": "https://www.doctrine-project.org/sponsorship.html",
  373. "type": "custom"
  374. },
  375. {
  376. "url": "https://www.patreon.com/phpdoctrine",
  377. "type": "patreon"
  378. },
  379. {
  380. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  381. "type": "tidelift"
  382. }
  383. ],
  384. "time": "2022-05-20T20:07:39+00:00"
  385. },
  386. {
  387. "name": "doctrine/dbal",
  388. "version": "2.13.9",
  389. "source": {
  390. "type": "git",
  391. "url": "https://github.com/doctrine/dbal.git",
  392. "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8"
  393. },
  394. "dist": {
  395. "type": "zip",
  396. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c480849ca3ad6706a39c970cdfe6888fa8a058b8",
  397. "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8",
  398. "shasum": "",
  399. "mirrors": [
  400. {
  401. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  402. "preferred": true
  403. }
  404. ]
  405. },
  406. "require": {
  407. "doctrine/cache": "^1.0|^2.0",
  408. "doctrine/deprecations": "^0.5.3|^1",
  409. "doctrine/event-manager": "^1.0",
  410. "ext-pdo": "*",
  411. "php": "^7.1 || ^8"
  412. },
  413. "require-dev": {
  414. "doctrine/coding-standard": "9.0.0",
  415. "jetbrains/phpstorm-stubs": "2021.1",
  416. "phpstan/phpstan": "1.4.6",
  417. "phpunit/phpunit": "^7.5.20|^8.5|9.5.16",
  418. "psalm/plugin-phpunit": "0.16.1",
  419. "squizlabs/php_codesniffer": "3.6.2",
  420. "symfony/cache": "^4.4",
  421. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  422. "vimeo/psalm": "4.22.0"
  423. },
  424. "suggest": {
  425. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  426. },
  427. "bin": [
  428. "bin/doctrine-dbal"
  429. ],
  430. "type": "library",
  431. "autoload": {
  432. "psr-4": {
  433. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  434. }
  435. },
  436. "notification-url": "https://packagist.org/downloads/",
  437. "license": [
  438. "MIT"
  439. ],
  440. "authors": [
  441. {
  442. "name": "Guilherme Blanco",
  443. "email": "guilhermeblanco@gmail.com"
  444. },
  445. {
  446. "name": "Roman Borschel",
  447. "email": "roman@code-factory.org"
  448. },
  449. {
  450. "name": "Benjamin Eberlei",
  451. "email": "kontakt@beberlei.de"
  452. },
  453. {
  454. "name": "Jonathan Wage",
  455. "email": "jonwage@gmail.com"
  456. }
  457. ],
  458. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  459. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  460. "keywords": [
  461. "abstraction",
  462. "database",
  463. "db2",
  464. "dbal",
  465. "mariadb",
  466. "mssql",
  467. "mysql",
  468. "oci8",
  469. "oracle",
  470. "pdo",
  471. "pgsql",
  472. "postgresql",
  473. "queryobject",
  474. "sasql",
  475. "sql",
  476. "sqlanywhere",
  477. "sqlite",
  478. "sqlserver",
  479. "sqlsrv"
  480. ],
  481. "support": {
  482. "issues": "https://github.com/doctrine/dbal/issues",
  483. "source": "https://github.com/doctrine/dbal/tree/2.13.9"
  484. },
  485. "funding": [
  486. {
  487. "url": "https://www.doctrine-project.org/sponsorship.html",
  488. "type": "custom"
  489. },
  490. {
  491. "url": "https://www.patreon.com/phpdoctrine",
  492. "type": "patreon"
  493. },
  494. {
  495. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  496. "type": "tidelift"
  497. }
  498. ],
  499. "time": "2022-05-02T20:28:55+00:00"
  500. },
  501. {
  502. "name": "doctrine/deprecations",
  503. "version": "v1.1.0",
  504. "source": {
  505. "type": "git",
  506. "url": "https://github.com/doctrine/deprecations.git",
  507. "reference": "8cffffb2218e01f3b370bf763e00e81697725259"
  508. },
  509. "dist": {
  510. "type": "zip",
  511. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/8cffffb2218e01f3b370bf763e00e81697725259",
  512. "reference": "8cffffb2218e01f3b370bf763e00e81697725259",
  513. "shasum": "",
  514. "mirrors": [
  515. {
  516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  517. "preferred": true
  518. }
  519. ]
  520. },
  521. "require": {
  522. "php": "^7.1|^8.0"
  523. },
  524. "require-dev": {
  525. "doctrine/coding-standard": "^9",
  526. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  527. "psr/log": "^1|^2|^3"
  528. },
  529. "suggest": {
  530. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  531. },
  532. "type": "library",
  533. "autoload": {
  534. "psr-4": {
  535. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  536. }
  537. },
  538. "notification-url": "https://packagist.org/downloads/",
  539. "license": [
  540. "MIT"
  541. ],
  542. "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.",
  543. "homepage": "https://www.doctrine-project.org/",
  544. "support": {
  545. "issues": "https://github.com/doctrine/deprecations/issues",
  546. "source": "https://github.com/doctrine/deprecations/tree/v1.1.0"
  547. },
  548. "time": "2023-05-29T18:55:17+00:00"
  549. },
  550. {
  551. "name": "doctrine/event-manager",
  552. "version": "1.1.1",
  553. "source": {
  554. "type": "git",
  555. "url": "https://github.com/doctrine/event-manager.git",
  556. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  557. },
  558. "dist": {
  559. "type": "zip",
  560. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  561. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  562. "shasum": "",
  563. "mirrors": [
  564. {
  565. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  566. "preferred": true
  567. }
  568. ]
  569. },
  570. "require": {
  571. "php": "^7.1 || ^8.0"
  572. },
  573. "conflict": {
  574. "doctrine/common": "<2.9@dev"
  575. },
  576. "require-dev": {
  577. "doctrine/coding-standard": "^6.0",
  578. "phpunit/phpunit": "^7.0"
  579. },
  580. "type": "library",
  581. "extra": {
  582. "branch-alias": {
  583. "dev-master": "1.0.x-dev"
  584. }
  585. },
  586. "autoload": {
  587. "psr-4": {
  588. "Doctrine\\Common\\": "lib/Doctrine/Common"
  589. }
  590. },
  591. "notification-url": "https://packagist.org/downloads/",
  592. "license": [
  593. "MIT"
  594. ],
  595. "authors": [
  596. {
  597. "name": "Guilherme Blanco",
  598. "email": "guilhermeblanco@gmail.com"
  599. },
  600. {
  601. "name": "Roman Borschel",
  602. "email": "roman@code-factory.org"
  603. },
  604. {
  605. "name": "Benjamin Eberlei",
  606. "email": "kontakt@beberlei.de"
  607. },
  608. {
  609. "name": "Jonathan Wage",
  610. "email": "jonwage@gmail.com"
  611. },
  612. {
  613. "name": "Johannes Schmitt",
  614. "email": "schmittjoh@gmail.com"
  615. },
  616. {
  617. "name": "Marco Pivetta",
  618. "email": "ocramius@gmail.com"
  619. }
  620. ],
  621. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  622. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  623. "keywords": [
  624. "event",
  625. "event dispatcher",
  626. "event manager",
  627. "event system",
  628. "events"
  629. ],
  630. "support": {
  631. "issues": "https://github.com/doctrine/event-manager/issues",
  632. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  633. },
  634. "funding": [
  635. {
  636. "url": "https://www.doctrine-project.org/sponsorship.html",
  637. "type": "custom"
  638. },
  639. {
  640. "url": "https://www.patreon.com/phpdoctrine",
  641. "type": "patreon"
  642. },
  643. {
  644. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  645. "type": "tidelift"
  646. }
  647. ],
  648. "time": "2020-05-29T18:28:51+00:00"
  649. },
  650. {
  651. "name": "doctrine/inflector",
  652. "version": "2.0.8",
  653. "source": {
  654. "type": "git",
  655. "url": "https://github.com/doctrine/inflector.git",
  656. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  657. },
  658. "dist": {
  659. "type": "zip",
  660. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  661. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  662. "shasum": "",
  663. "mirrors": [
  664. {
  665. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  666. "preferred": true
  667. }
  668. ]
  669. },
  670. "require": {
  671. "php": "^7.2 || ^8.0"
  672. },
  673. "require-dev": {
  674. "doctrine/coding-standard": "^11.0",
  675. "phpstan/phpstan": "^1.8",
  676. "phpstan/phpstan-phpunit": "^1.1",
  677. "phpstan/phpstan-strict-rules": "^1.3",
  678. "phpunit/phpunit": "^8.5 || ^9.5",
  679. "vimeo/psalm": "^4.25 || ^5.4"
  680. },
  681. "type": "library",
  682. "autoload": {
  683. "psr-4": {
  684. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  685. }
  686. },
  687. "notification-url": "https://packagist.org/downloads/",
  688. "license": [
  689. "MIT"
  690. ],
  691. "authors": [
  692. {
  693. "name": "Guilherme Blanco",
  694. "email": "guilhermeblanco@gmail.com"
  695. },
  696. {
  697. "name": "Roman Borschel",
  698. "email": "roman@code-factory.org"
  699. },
  700. {
  701. "name": "Benjamin Eberlei",
  702. "email": "kontakt@beberlei.de"
  703. },
  704. {
  705. "name": "Jonathan Wage",
  706. "email": "jonwage@gmail.com"
  707. },
  708. {
  709. "name": "Johannes Schmitt",
  710. "email": "schmittjoh@gmail.com"
  711. }
  712. ],
  713. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  714. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  715. "keywords": [
  716. "inflection",
  717. "inflector",
  718. "lowercase",
  719. "manipulation",
  720. "php",
  721. "plural",
  722. "singular",
  723. "strings",
  724. "uppercase",
  725. "words"
  726. ],
  727. "support": {
  728. "issues": "https://github.com/doctrine/inflector/issues",
  729. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  730. },
  731. "funding": [
  732. {
  733. "url": "https://www.doctrine-project.org/sponsorship.html",
  734. "type": "custom"
  735. },
  736. {
  737. "url": "https://www.patreon.com/phpdoctrine",
  738. "type": "patreon"
  739. },
  740. {
  741. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  742. "type": "tidelift"
  743. }
  744. ],
  745. "time": "2023-06-16T13:40:37+00:00"
  746. },
  747. {
  748. "name": "doctrine/lexer",
  749. "version": "1.2.3",
  750. "source": {
  751. "type": "git",
  752. "url": "https://github.com/doctrine/lexer.git",
  753. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  754. },
  755. "dist": {
  756. "type": "zip",
  757. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  758. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  759. "shasum": "",
  760. "mirrors": [
  761. {
  762. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  763. "preferred": true
  764. }
  765. ]
  766. },
  767. "require": {
  768. "php": "^7.1 || ^8.0"
  769. },
  770. "require-dev": {
  771. "doctrine/coding-standard": "^9.0",
  772. "phpstan/phpstan": "^1.3",
  773. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  774. "vimeo/psalm": "^4.11"
  775. },
  776. "type": "library",
  777. "autoload": {
  778. "psr-4": {
  779. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  780. }
  781. },
  782. "notification-url": "https://packagist.org/downloads/",
  783. "license": [
  784. "MIT"
  785. ],
  786. "authors": [
  787. {
  788. "name": "Guilherme Blanco",
  789. "email": "guilhermeblanco@gmail.com"
  790. },
  791. {
  792. "name": "Roman Borschel",
  793. "email": "roman@code-factory.org"
  794. },
  795. {
  796. "name": "Johannes Schmitt",
  797. "email": "schmittjoh@gmail.com"
  798. }
  799. ],
  800. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  801. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  802. "keywords": [
  803. "annotations",
  804. "docblock",
  805. "lexer",
  806. "parser",
  807. "php"
  808. ],
  809. "support": {
  810. "issues": "https://github.com/doctrine/lexer/issues",
  811. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  812. },
  813. "funding": [
  814. {
  815. "url": "https://www.doctrine-project.org/sponsorship.html",
  816. "type": "custom"
  817. },
  818. {
  819. "url": "https://www.patreon.com/phpdoctrine",
  820. "type": "patreon"
  821. },
  822. {
  823. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  824. "type": "tidelift"
  825. }
  826. ],
  827. "time": "2022-02-28T11:07:21+00:00"
  828. },
  829. {
  830. "name": "dragonmantank/cron-expression",
  831. "version": "v2.3.1",
  832. "source": {
  833. "type": "git",
  834. "url": "https://github.com/dragonmantank/cron-expression.git",
  835. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  836. },
  837. "dist": {
  838. "type": "zip",
  839. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  840. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  841. "shasum": "",
  842. "mirrors": [
  843. {
  844. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  845. "preferred": true
  846. }
  847. ]
  848. },
  849. "require": {
  850. "php": "^7.0|^8.0"
  851. },
  852. "require-dev": {
  853. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  854. },
  855. "type": "library",
  856. "extra": {
  857. "branch-alias": {
  858. "dev-master": "2.3-dev"
  859. }
  860. },
  861. "autoload": {
  862. "psr-4": {
  863. "Cron\\": "src/Cron/"
  864. }
  865. },
  866. "notification-url": "https://packagist.org/downloads/",
  867. "license": [
  868. "MIT"
  869. ],
  870. "authors": [
  871. {
  872. "name": "Michael Dowling",
  873. "email": "mtdowling@gmail.com",
  874. "homepage": "https://github.com/mtdowling"
  875. },
  876. {
  877. "name": "Chris Tankersley",
  878. "email": "chris@ctankersley.com",
  879. "homepage": "https://github.com/dragonmantank"
  880. }
  881. ],
  882. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  883. "keywords": [
  884. "cron",
  885. "schedule"
  886. ],
  887. "support": {
  888. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  889. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  890. },
  891. "funding": [
  892. {
  893. "url": "https://github.com/dragonmantank",
  894. "type": "github"
  895. }
  896. ],
  897. "time": "2020-10-13T00:52:37+00:00"
  898. },
  899. {
  900. "name": "egulias/email-validator",
  901. "version": "2.1.25",
  902. "source": {
  903. "type": "git",
  904. "url": "https://github.com/egulias/EmailValidator.git",
  905. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  906. },
  907. "dist": {
  908. "type": "zip",
  909. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  910. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  911. "shasum": "",
  912. "mirrors": [
  913. {
  914. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  915. "preferred": true
  916. }
  917. ]
  918. },
  919. "require": {
  920. "doctrine/lexer": "^1.0.1",
  921. "php": ">=5.5",
  922. "symfony/polyfill-intl-idn": "^1.10"
  923. },
  924. "require-dev": {
  925. "dominicsayers/isemail": "^3.0.7",
  926. "phpunit/phpunit": "^4.8.36|^7.5.15",
  927. "satooshi/php-coveralls": "^1.0.1"
  928. },
  929. "suggest": {
  930. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  931. },
  932. "type": "library",
  933. "extra": {
  934. "branch-alias": {
  935. "dev-master": "2.1.x-dev"
  936. }
  937. },
  938. "autoload": {
  939. "psr-4": {
  940. "Egulias\\EmailValidator\\": "src"
  941. }
  942. },
  943. "notification-url": "https://packagist.org/downloads/",
  944. "license": [
  945. "MIT"
  946. ],
  947. "authors": [
  948. {
  949. "name": "Eduardo Gulias Davis"
  950. }
  951. ],
  952. "description": "A library for validating emails against several RFCs",
  953. "homepage": "https://github.com/egulias/EmailValidator",
  954. "keywords": [
  955. "email",
  956. "emailvalidation",
  957. "emailvalidator",
  958. "validation",
  959. "validator"
  960. ],
  961. "support": {
  962. "issues": "https://github.com/egulias/EmailValidator/issues",
  963. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  964. },
  965. "funding": [
  966. {
  967. "url": "https://github.com/egulias",
  968. "type": "github"
  969. }
  970. ],
  971. "time": "2020-12-29T14:50:06+00:00"
  972. },
  973. {
  974. "name": "elfsundae/bearychat",
  975. "version": "1.3.1",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/ElfSundae/bearychat.git",
  979. "reference": "b3c7437d0e24463504679931a482e9b642d93024"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/ElfSundae/bearychat/zipball/b3c7437d0e24463504679931a482e9b642d93024",
  984. "reference": "b3c7437d0e24463504679931a482e9b642d93024",
  985. "shasum": "",
  986. "mirrors": [
  987. {
  988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  989. "preferred": true
  990. }
  991. ]
  992. },
  993. "require": {
  994. "ext-mbstring": "*",
  995. "guzzlehttp/guzzle": "~5.3|~6.0",
  996. "php": ">=5.4.0"
  997. },
  998. "require-dev": {
  999. "mockery/mockery": "0.9.*",
  1000. "phpunit/phpunit": "~5.7"
  1001. },
  1002. "suggest": {
  1003. "elfsundae/laravel-bearychat": "Required for Laravel integration.",
  1004. "laravel-notification-channels/bearychat": "BearyChat notifications channel for Laravel 5."
  1005. },
  1006. "type": "library",
  1007. "autoload": {
  1008. "psr-4": {
  1009. "ElfSundae\\BearyChat\\": "src/"
  1010. }
  1011. },
  1012. "notification-url": "https://packagist.org/downloads/",
  1013. "license": [
  1014. "MIT"
  1015. ],
  1016. "authors": [
  1017. {
  1018. "name": "Elf Sundae",
  1019. "email": "elf.sundae@gmail.com",
  1020. "homepage": "https://0x123.com"
  1021. }
  1022. ],
  1023. "description": "An elegant way of interacting with BearyChat webhooks.",
  1024. "homepage": "https://github.com/ElfSundae/bearychat",
  1025. "keywords": [
  1026. "bearychat",
  1027. "incoming",
  1028. "outgoing",
  1029. "robot",
  1030. "webhook"
  1031. ],
  1032. "support": {
  1033. "issues": "https://github.com/ElfSundae/bearychat/issues",
  1034. "source": "https://github.com/ElfSundae/bearychat/tree/master"
  1035. },
  1036. "time": "2017-09-04T05:54:05+00:00"
  1037. },
  1038. {
  1039. "name": "elfsundae/laravel-bearychat",
  1040. "version": "1.6.0",
  1041. "source": {
  1042. "type": "git",
  1043. "url": "https://github.com/ElfSundae/laravel-bearychat.git",
  1044. "reference": "417a15868e46c9d664a437532c5ddd9be3fe9b04"
  1045. },
  1046. "dist": {
  1047. "type": "zip",
  1048. "url": "https://api.github.com/repos/ElfSundae/laravel-bearychat/zipball/417a15868e46c9d664a437532c5ddd9be3fe9b04",
  1049. "reference": "417a15868e46c9d664a437532c5ddd9be3fe9b04",
  1050. "shasum": "",
  1051. "mirrors": [
  1052. {
  1053. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1054. "preferred": true
  1055. }
  1056. ]
  1057. },
  1058. "require": {
  1059. "elfsundae/bearychat": "^1.3.1",
  1060. "illuminate/support": "~5.0|~6.0|~7.0|~8.0",
  1061. "php": ">=5.6.4"
  1062. },
  1063. "require-dev": {
  1064. "mockery/mockery": "~0.9|~1.0",
  1065. "phpunit/phpunit": "~5.7|~6.0|~7.0|~8.0|~9.0"
  1066. },
  1067. "suggest": {
  1068. "laravel-notification-channels/bearychat": "BearyChat notifications channel for Laravel 5."
  1069. },
  1070. "type": "library",
  1071. "extra": {
  1072. "laravel": {
  1073. "providers": [
  1074. "ElfSundae\\BearyChat\\Laravel\\ServiceProvider"
  1075. ],
  1076. "aliases": {
  1077. "BearyChat": "ElfSundae\\BearyChat\\Laravel\\BearyChat"
  1078. }
  1079. }
  1080. },
  1081. "autoload": {
  1082. "files": [
  1083. "src/helpers.php"
  1084. ],
  1085. "psr-4": {
  1086. "ElfSundae\\BearyChat\\Laravel\\": "src/"
  1087. }
  1088. },
  1089. "notification-url": "https://packagist.org/downloads/",
  1090. "license": [
  1091. "MIT"
  1092. ],
  1093. "authors": [
  1094. {
  1095. "name": "Elf Sundae",
  1096. "email": "elf.sundae@gmail.com",
  1097. "homepage": "https://0x123.com"
  1098. }
  1099. ],
  1100. "description": "Laravel integration for BearyChat.",
  1101. "homepage": "https://github.com/ElfSundae/laravel-bearychat",
  1102. "keywords": [
  1103. "bearychat",
  1104. "incoming",
  1105. "laravel",
  1106. "outgoing",
  1107. "robot",
  1108. "webhook"
  1109. ],
  1110. "support": {
  1111. "issues": "https://github.com/ElfSundae/laravel-bearychat/issues",
  1112. "source": "https://github.com/ElfSundae/laravel-bearychat/tree/1.6.0"
  1113. },
  1114. "time": "2020-09-13T14:19:31+00:00"
  1115. },
  1116. {
  1117. "name": "ezyang/htmlpurifier",
  1118. "version": "v4.16.0",
  1119. "source": {
  1120. "type": "git",
  1121. "url": "https://github.com/ezyang/htmlpurifier.git",
  1122. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  1123. },
  1124. "dist": {
  1125. "type": "zip",
  1126. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1127. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1128. "shasum": "",
  1129. "mirrors": [
  1130. {
  1131. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1132. "preferred": true
  1133. }
  1134. ]
  1135. },
  1136. "require": {
  1137. "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"
  1138. },
  1139. "require-dev": {
  1140. "cerdic/css-tidy": "^1.7 || ^2.0",
  1141. "simpletest/simpletest": "dev-master"
  1142. },
  1143. "suggest": {
  1144. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1145. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1146. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1147. "ext-tidy": "Used for pretty-printing HTML"
  1148. },
  1149. "type": "library",
  1150. "autoload": {
  1151. "files": [
  1152. "library/HTMLPurifier.composer.php"
  1153. ],
  1154. "psr-0": {
  1155. "HTMLPurifier": "library/"
  1156. },
  1157. "exclude-from-classmap": [
  1158. "/library/HTMLPurifier/Language/"
  1159. ]
  1160. },
  1161. "notification-url": "https://packagist.org/downloads/",
  1162. "license": [
  1163. "LGPL-2.1-or-later"
  1164. ],
  1165. "authors": [
  1166. {
  1167. "name": "Edward Z. Yang",
  1168. "email": "admin@htmlpurifier.org",
  1169. "homepage": "http://ezyang.com"
  1170. }
  1171. ],
  1172. "description": "Standards compliant HTML filter written in PHP",
  1173. "homepage": "http://htmlpurifier.org/",
  1174. "keywords": [
  1175. "html"
  1176. ],
  1177. "support": {
  1178. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1179. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  1180. },
  1181. "time": "2022-09-18T07:06:19+00:00"
  1182. },
  1183. {
  1184. "name": "fideloper/proxy",
  1185. "version": "4.4.2",
  1186. "source": {
  1187. "type": "git",
  1188. "url": "https://github.com/fideloper/TrustedProxy.git",
  1189. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  1190. },
  1191. "dist": {
  1192. "type": "zip",
  1193. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1194. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1195. "shasum": "",
  1196. "mirrors": [
  1197. {
  1198. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1199. "preferred": true
  1200. }
  1201. ]
  1202. },
  1203. "require": {
  1204. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1205. "php": ">=5.4.0"
  1206. },
  1207. "require-dev": {
  1208. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1209. "mockery/mockery": "^1.0",
  1210. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1211. },
  1212. "type": "library",
  1213. "extra": {
  1214. "laravel": {
  1215. "providers": [
  1216. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1217. ]
  1218. }
  1219. },
  1220. "autoload": {
  1221. "psr-4": {
  1222. "Fideloper\\Proxy\\": "src/"
  1223. }
  1224. },
  1225. "notification-url": "https://packagist.org/downloads/",
  1226. "license": [
  1227. "MIT"
  1228. ],
  1229. "authors": [
  1230. {
  1231. "name": "Chris Fidao",
  1232. "email": "fideloper@gmail.com"
  1233. }
  1234. ],
  1235. "description": "Set trusted proxies for Laravel",
  1236. "keywords": [
  1237. "load balancing",
  1238. "proxy",
  1239. "trusted proxy"
  1240. ],
  1241. "support": {
  1242. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1243. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1244. },
  1245. "time": "2022-02-09T13:33:34+00:00"
  1246. },
  1247. {
  1248. "name": "fruitcake/laravel-cors",
  1249. "version": "v2.2.0",
  1250. "source": {
  1251. "type": "git",
  1252. "url": "https://github.com/fruitcake/laravel-cors.git",
  1253. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1254. },
  1255. "dist": {
  1256. "type": "zip",
  1257. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1258. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1259. "shasum": "",
  1260. "mirrors": [
  1261. {
  1262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1263. "preferred": true
  1264. }
  1265. ]
  1266. },
  1267. "require": {
  1268. "asm89/stack-cors": "^2.0.1",
  1269. "illuminate/contracts": "^6|^7|^8|^9",
  1270. "illuminate/support": "^6|^7|^8|^9",
  1271. "php": ">=7.2"
  1272. },
  1273. "require-dev": {
  1274. "laravel/framework": "^6|^7.24|^8",
  1275. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1276. "phpunit/phpunit": "^6|^7|^8|^9",
  1277. "squizlabs/php_codesniffer": "^3.5"
  1278. },
  1279. "type": "library",
  1280. "extra": {
  1281. "branch-alias": {
  1282. "dev-master": "2.1-dev"
  1283. },
  1284. "laravel": {
  1285. "providers": [
  1286. "Fruitcake\\Cors\\CorsServiceProvider"
  1287. ]
  1288. }
  1289. },
  1290. "autoload": {
  1291. "psr-4": {
  1292. "Fruitcake\\Cors\\": "src/"
  1293. }
  1294. },
  1295. "notification-url": "https://packagist.org/downloads/",
  1296. "license": [
  1297. "MIT"
  1298. ],
  1299. "authors": [
  1300. {
  1301. "name": "Fruitcake",
  1302. "homepage": "https://fruitcake.nl"
  1303. },
  1304. {
  1305. "name": "Barry vd. Heuvel",
  1306. "email": "barryvdh@gmail.com"
  1307. }
  1308. ],
  1309. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1310. "keywords": [
  1311. "api",
  1312. "cors",
  1313. "crossdomain",
  1314. "laravel"
  1315. ],
  1316. "support": {
  1317. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1318. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1319. },
  1320. "funding": [
  1321. {
  1322. "url": "https://fruitcake.nl",
  1323. "type": "custom"
  1324. },
  1325. {
  1326. "url": "https://github.com/barryvdh",
  1327. "type": "github"
  1328. }
  1329. ],
  1330. "abandoned": true,
  1331. "time": "2022-02-23T14:25:13+00:00"
  1332. },
  1333. {
  1334. "name": "geoip2/geoip2",
  1335. "version": "v2.13.0",
  1336. "source": {
  1337. "type": "git",
  1338. "url": "git@github.com:maxmind/GeoIP2-php.git",
  1339. "reference": "6a41d8fbd6b90052bc34dff3b4252d0f88067b23"
  1340. },
  1341. "dist": {
  1342. "type": "zip",
  1343. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/6a41d8fbd6b90052bc34dff3b4252d0f88067b23",
  1344. "reference": "6a41d8fbd6b90052bc34dff3b4252d0f88067b23",
  1345. "shasum": "",
  1346. "mirrors": [
  1347. {
  1348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1349. "preferred": true
  1350. }
  1351. ]
  1352. },
  1353. "require": {
  1354. "ext-json": "*",
  1355. "maxmind-db/reader": "~1.8",
  1356. "maxmind/web-service-common": "~0.8",
  1357. "php": ">=7.2"
  1358. },
  1359. "require-dev": {
  1360. "friendsofphp/php-cs-fixer": "3.*",
  1361. "phpstan/phpstan": "*",
  1362. "phpunit/phpunit": "^8.0 || ^9.0",
  1363. "squizlabs/php_codesniffer": "3.*"
  1364. },
  1365. "type": "library",
  1366. "autoload": {
  1367. "psr-4": {
  1368. "GeoIp2\\": "src"
  1369. }
  1370. },
  1371. "notification-url": "https://packagist.org/downloads/",
  1372. "license": [
  1373. "Apache-2.0"
  1374. ],
  1375. "authors": [
  1376. {
  1377. "name": "Gregory J. Oschwald",
  1378. "email": "goschwald@maxmind.com",
  1379. "homepage": "https://www.maxmind.com/"
  1380. }
  1381. ],
  1382. "description": "MaxMind GeoIP2 PHP API",
  1383. "homepage": "https://github.com/maxmind/GeoIP2-php",
  1384. "keywords": [
  1385. "IP",
  1386. "geoip",
  1387. "geoip2",
  1388. "geolocation",
  1389. "maxmind"
  1390. ],
  1391. "time": "2022-08-05T20:32:58+00:00"
  1392. },
  1393. {
  1394. "name": "guzzlehttp/guzzle",
  1395. "version": "6.5.8",
  1396. "source": {
  1397. "type": "git",
  1398. "url": "https://github.com/guzzle/guzzle.git",
  1399. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  1400. },
  1401. "dist": {
  1402. "type": "zip",
  1403. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  1404. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  1405. "shasum": "",
  1406. "mirrors": [
  1407. {
  1408. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1409. "preferred": true
  1410. }
  1411. ]
  1412. },
  1413. "require": {
  1414. "ext-json": "*",
  1415. "guzzlehttp/promises": "^1.0",
  1416. "guzzlehttp/psr7": "^1.9",
  1417. "php": ">=5.5",
  1418. "symfony/polyfill-intl-idn": "^1.17"
  1419. },
  1420. "require-dev": {
  1421. "ext-curl": "*",
  1422. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1423. "psr/log": "^1.1"
  1424. },
  1425. "suggest": {
  1426. "psr/log": "Required for using the Log middleware"
  1427. },
  1428. "type": "library",
  1429. "extra": {
  1430. "branch-alias": {
  1431. "dev-master": "6.5-dev"
  1432. }
  1433. },
  1434. "autoload": {
  1435. "files": [
  1436. "src/functions_include.php"
  1437. ],
  1438. "psr-4": {
  1439. "GuzzleHttp\\": "src/"
  1440. }
  1441. },
  1442. "notification-url": "https://packagist.org/downloads/",
  1443. "license": [
  1444. "MIT"
  1445. ],
  1446. "authors": [
  1447. {
  1448. "name": "Graham Campbell",
  1449. "email": "hello@gjcampbell.co.uk",
  1450. "homepage": "https://github.com/GrahamCampbell"
  1451. },
  1452. {
  1453. "name": "Michael Dowling",
  1454. "email": "mtdowling@gmail.com",
  1455. "homepage": "https://github.com/mtdowling"
  1456. },
  1457. {
  1458. "name": "Jeremy Lindblom",
  1459. "email": "jeremeamia@gmail.com",
  1460. "homepage": "https://github.com/jeremeamia"
  1461. },
  1462. {
  1463. "name": "George Mponos",
  1464. "email": "gmponos@gmail.com",
  1465. "homepage": "https://github.com/gmponos"
  1466. },
  1467. {
  1468. "name": "Tobias Nyholm",
  1469. "email": "tobias.nyholm@gmail.com",
  1470. "homepage": "https://github.com/Nyholm"
  1471. },
  1472. {
  1473. "name": "Márk Sági-Kazár",
  1474. "email": "mark.sagikazar@gmail.com",
  1475. "homepage": "https://github.com/sagikazarmark"
  1476. },
  1477. {
  1478. "name": "Tobias Schultze",
  1479. "email": "webmaster@tubo-world.de",
  1480. "homepage": "https://github.com/Tobion"
  1481. }
  1482. ],
  1483. "description": "Guzzle is a PHP HTTP client library",
  1484. "homepage": "http://guzzlephp.org/",
  1485. "keywords": [
  1486. "client",
  1487. "curl",
  1488. "framework",
  1489. "http",
  1490. "http client",
  1491. "rest",
  1492. "web service"
  1493. ],
  1494. "support": {
  1495. "issues": "https://github.com/guzzle/guzzle/issues",
  1496. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  1497. },
  1498. "funding": [
  1499. {
  1500. "url": "https://github.com/GrahamCampbell",
  1501. "type": "github"
  1502. },
  1503. {
  1504. "url": "https://github.com/Nyholm",
  1505. "type": "github"
  1506. },
  1507. {
  1508. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1509. "type": "tidelift"
  1510. }
  1511. ],
  1512. "time": "2022-06-20T22:16:07+00:00"
  1513. },
  1514. {
  1515. "name": "guzzlehttp/promises",
  1516. "version": "1.5.3",
  1517. "source": {
  1518. "type": "git",
  1519. "url": "https://github.com/guzzle/promises.git",
  1520. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  1521. },
  1522. "dist": {
  1523. "type": "zip",
  1524. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  1525. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  1526. "shasum": "",
  1527. "mirrors": [
  1528. {
  1529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1530. "preferred": true
  1531. }
  1532. ]
  1533. },
  1534. "require": {
  1535. "php": ">=5.5"
  1536. },
  1537. "require-dev": {
  1538. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1539. },
  1540. "type": "library",
  1541. "autoload": {
  1542. "files": [
  1543. "src/functions_include.php"
  1544. ],
  1545. "psr-4": {
  1546. "GuzzleHttp\\Promise\\": "src/"
  1547. }
  1548. },
  1549. "notification-url": "https://packagist.org/downloads/",
  1550. "license": [
  1551. "MIT"
  1552. ],
  1553. "authors": [
  1554. {
  1555. "name": "Graham Campbell",
  1556. "email": "hello@gjcampbell.co.uk",
  1557. "homepage": "https://github.com/GrahamCampbell"
  1558. },
  1559. {
  1560. "name": "Michael Dowling",
  1561. "email": "mtdowling@gmail.com",
  1562. "homepage": "https://github.com/mtdowling"
  1563. },
  1564. {
  1565. "name": "Tobias Nyholm",
  1566. "email": "tobias.nyholm@gmail.com",
  1567. "homepage": "https://github.com/Nyholm"
  1568. },
  1569. {
  1570. "name": "Tobias Schultze",
  1571. "email": "webmaster@tubo-world.de",
  1572. "homepage": "https://github.com/Tobion"
  1573. }
  1574. ],
  1575. "description": "Guzzle promises library",
  1576. "keywords": [
  1577. "promise"
  1578. ],
  1579. "support": {
  1580. "issues": "https://github.com/guzzle/promises/issues",
  1581. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  1582. },
  1583. "funding": [
  1584. {
  1585. "url": "https://github.com/GrahamCampbell",
  1586. "type": "github"
  1587. },
  1588. {
  1589. "url": "https://github.com/Nyholm",
  1590. "type": "github"
  1591. },
  1592. {
  1593. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1594. "type": "tidelift"
  1595. }
  1596. ],
  1597. "time": "2023-05-21T12:31:43+00:00"
  1598. },
  1599. {
  1600. "name": "guzzlehttp/psr7",
  1601. "version": "1.9.1",
  1602. "source": {
  1603. "type": "git",
  1604. "url": "https://github.com/guzzle/psr7.git",
  1605. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  1606. },
  1607. "dist": {
  1608. "type": "zip",
  1609. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  1610. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  1611. "shasum": "",
  1612. "mirrors": [
  1613. {
  1614. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1615. "preferred": true
  1616. }
  1617. ]
  1618. },
  1619. "require": {
  1620. "php": ">=5.4.0",
  1621. "psr/http-message": "~1.0",
  1622. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1623. },
  1624. "provide": {
  1625. "psr/http-message-implementation": "1.0"
  1626. },
  1627. "require-dev": {
  1628. "ext-zlib": "*",
  1629. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1630. },
  1631. "suggest": {
  1632. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1633. },
  1634. "type": "library",
  1635. "autoload": {
  1636. "files": [
  1637. "src/functions_include.php"
  1638. ],
  1639. "psr-4": {
  1640. "GuzzleHttp\\Psr7\\": "src/"
  1641. }
  1642. },
  1643. "notification-url": "https://packagist.org/downloads/",
  1644. "license": [
  1645. "MIT"
  1646. ],
  1647. "authors": [
  1648. {
  1649. "name": "Graham Campbell",
  1650. "email": "hello@gjcampbell.co.uk",
  1651. "homepage": "https://github.com/GrahamCampbell"
  1652. },
  1653. {
  1654. "name": "Michael Dowling",
  1655. "email": "mtdowling@gmail.com",
  1656. "homepage": "https://github.com/mtdowling"
  1657. },
  1658. {
  1659. "name": "George Mponos",
  1660. "email": "gmponos@gmail.com",
  1661. "homepage": "https://github.com/gmponos"
  1662. },
  1663. {
  1664. "name": "Tobias Nyholm",
  1665. "email": "tobias.nyholm@gmail.com",
  1666. "homepage": "https://github.com/Nyholm"
  1667. },
  1668. {
  1669. "name": "Márk Sági-Kazár",
  1670. "email": "mark.sagikazar@gmail.com",
  1671. "homepage": "https://github.com/sagikazarmark"
  1672. },
  1673. {
  1674. "name": "Tobias Schultze",
  1675. "email": "webmaster@tubo-world.de",
  1676. "homepage": "https://github.com/Tobion"
  1677. }
  1678. ],
  1679. "description": "PSR-7 message implementation that also provides common utility methods",
  1680. "keywords": [
  1681. "http",
  1682. "message",
  1683. "psr-7",
  1684. "request",
  1685. "response",
  1686. "stream",
  1687. "uri",
  1688. "url"
  1689. ],
  1690. "support": {
  1691. "issues": "https://github.com/guzzle/psr7/issues",
  1692. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  1693. },
  1694. "funding": [
  1695. {
  1696. "url": "https://github.com/GrahamCampbell",
  1697. "type": "github"
  1698. },
  1699. {
  1700. "url": "https://github.com/Nyholm",
  1701. "type": "github"
  1702. },
  1703. {
  1704. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1705. "type": "tidelift"
  1706. }
  1707. ],
  1708. "time": "2023-04-17T16:00:37+00:00"
  1709. },
  1710. {
  1711. "name": "intervention/image",
  1712. "version": "2.7.2",
  1713. "source": {
  1714. "type": "git",
  1715. "url": "https://github.com/Intervention/image.git",
  1716. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  1717. },
  1718. "dist": {
  1719. "type": "zip",
  1720. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  1721. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  1722. "shasum": "",
  1723. "mirrors": [
  1724. {
  1725. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1726. "preferred": true
  1727. }
  1728. ]
  1729. },
  1730. "require": {
  1731. "ext-fileinfo": "*",
  1732. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1733. "php": ">=5.4.0"
  1734. },
  1735. "require-dev": {
  1736. "mockery/mockery": "~0.9.2",
  1737. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1738. },
  1739. "suggest": {
  1740. "ext-gd": "to use GD library based image processing.",
  1741. "ext-imagick": "to use Imagick based image processing.",
  1742. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1743. },
  1744. "type": "library",
  1745. "extra": {
  1746. "branch-alias": {
  1747. "dev-master": "2.4-dev"
  1748. },
  1749. "laravel": {
  1750. "providers": [
  1751. "Intervention\\Image\\ImageServiceProvider"
  1752. ],
  1753. "aliases": {
  1754. "Image": "Intervention\\Image\\Facades\\Image"
  1755. }
  1756. }
  1757. },
  1758. "autoload": {
  1759. "psr-4": {
  1760. "Intervention\\Image\\": "src/Intervention/Image"
  1761. }
  1762. },
  1763. "notification-url": "https://packagist.org/downloads/",
  1764. "license": [
  1765. "MIT"
  1766. ],
  1767. "authors": [
  1768. {
  1769. "name": "Oliver Vogel",
  1770. "email": "oliver@intervention.io",
  1771. "homepage": "https://intervention.io/"
  1772. }
  1773. ],
  1774. "description": "Image handling and manipulation library with support for Laravel integration",
  1775. "homepage": "http://image.intervention.io/",
  1776. "keywords": [
  1777. "gd",
  1778. "image",
  1779. "imagick",
  1780. "laravel",
  1781. "thumbnail",
  1782. "watermark"
  1783. ],
  1784. "support": {
  1785. "issues": "https://github.com/Intervention/image/issues",
  1786. "source": "https://github.com/Intervention/image/tree/2.7.2"
  1787. },
  1788. "funding": [
  1789. {
  1790. "url": "https://paypal.me/interventionio",
  1791. "type": "custom"
  1792. },
  1793. {
  1794. "url": "https://github.com/Intervention",
  1795. "type": "github"
  1796. }
  1797. ],
  1798. "time": "2022-05-21T17:30:32+00:00"
  1799. },
  1800. {
  1801. "name": "ip2location/ip2location-laravel",
  1802. "version": "1.2.0",
  1803. "source": {
  1804. "type": "git",
  1805. "url": "https://github.com/ip2location/ip2location-laravel.git",
  1806. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b"
  1807. },
  1808. "dist": {
  1809. "type": "zip",
  1810. "url": "https://api.github.com/repos/ip2location/ip2location-laravel/zipball/56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1811. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1812. "shasum": "",
  1813. "mirrors": [
  1814. {
  1815. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1816. "preferred": true
  1817. }
  1818. ]
  1819. },
  1820. "require": {
  1821. "ip2location/ip2location-php": "8.*",
  1822. "php": ">=5.4"
  1823. },
  1824. "type": "library",
  1825. "autoload": {
  1826. "psr-4": {
  1827. "Ip2location\\IP2LocationLaravel\\": "src/"
  1828. }
  1829. },
  1830. "notification-url": "https://packagist.org/downloads/",
  1831. "license": [
  1832. "MIT"
  1833. ],
  1834. "authors": [
  1835. {
  1836. "name": "IP2Location",
  1837. "email": "support@ip2location.com"
  1838. }
  1839. ],
  1840. "description": "Lookup for visitor's IP information, such as country, region, city, coordinates, zip code, time zone, ISP, domain name, connection type, area code, weather, MCC, MNC, mobile brand name, elevation and usage type.",
  1841. "keywords": [
  1842. "geolocation",
  1843. "ip2location",
  1844. "laravel",
  1845. "laravel 5",
  1846. "laravel 7"
  1847. ],
  1848. "support": {
  1849. "issues": "https://github.com/ip2location/ip2location-laravel/issues",
  1850. "source": "https://github.com/ip2location/ip2location-laravel/tree/master"
  1851. },
  1852. "time": "2020-08-27T07:47:55+00:00"
  1853. },
  1854. {
  1855. "name": "ip2location/ip2location-php",
  1856. "version": "8.3.0",
  1857. "source": {
  1858. "type": "git",
  1859. "url": "https://github.com/chrislim2888/IP2Location-PHP-Module.git",
  1860. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15"
  1861. },
  1862. "dist": {
  1863. "type": "zip",
  1864. "url": "https://api.github.com/repos/chrislim2888/IP2Location-PHP-Module/zipball/4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1865. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1866. "shasum": "",
  1867. "mirrors": [
  1868. {
  1869. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1870. "preferred": true
  1871. }
  1872. ]
  1873. },
  1874. "type": "library",
  1875. "autoload": {
  1876. "classmap": [
  1877. "IP2Location.php"
  1878. ]
  1879. },
  1880. "notification-url": "https://packagist.org/downloads/",
  1881. "license": [
  1882. "MIT"
  1883. ],
  1884. "authors": [
  1885. {
  1886. "name": "IP2Location",
  1887. "email": "support@ip2location.com",
  1888. "homepage": "http://www.ip2location.com"
  1889. }
  1890. ],
  1891. "description": "[Official Release] IP2Location PHP API to get location info from IPv4 and IPv6 address.",
  1892. "homepage": "http://www.ip2location.com",
  1893. "keywords": [
  1894. "geolocation",
  1895. "ip2location",
  1896. "ip2locationlite"
  1897. ],
  1898. "support": {
  1899. "issues": "https://github.com/chrislim2888/IP2Location-PHP-Module/issues",
  1900. "source": "https://github.com/chrislim2888/IP2Location-PHP-Module/tree/8.3.0"
  1901. },
  1902. "time": "2020-11-23T04:30:39+00:00"
  1903. },
  1904. {
  1905. "name": "ipip/db",
  1906. "version": "v1.0.1",
  1907. "source": {
  1908. "type": "git",
  1909. "url": "https://github.com/ipipdotnet/ipdb-php.git",
  1910. "reference": "9be2e284369c34267487487f4492de26e20a7735"
  1911. },
  1912. "dist": {
  1913. "type": "zip",
  1914. "url": "https://api.github.com/repos/ipipdotnet/ipdb-php/zipball/9be2e284369c34267487487f4492de26e20a7735",
  1915. "reference": "9be2e284369c34267487487f4492de26e20a7735",
  1916. "shasum": "",
  1917. "mirrors": [
  1918. {
  1919. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1920. "preferred": true
  1921. }
  1922. ]
  1923. },
  1924. "require": {
  1925. "php": ">=5.4.0"
  1926. },
  1927. "type": "library",
  1928. "autoload": {
  1929. "psr-4": {
  1930. "ipip\\db\\": "src/ipip/db/"
  1931. }
  1932. },
  1933. "notification-url": "https://packagist.org/downloads/",
  1934. "license": [
  1935. "Apache-2.0"
  1936. ],
  1937. "authors": [
  1938. {
  1939. "name": "IPIP.net",
  1940. "email": "frk@ipip.net",
  1941. "homepage": "https://www.ipip.net"
  1942. }
  1943. ],
  1944. "description": "IPIP.net officially supported IP database ipdb format parsing library",
  1945. "homepage": "https://www.ipip.net",
  1946. "keywords": [
  1947. "IP",
  1948. "geo",
  1949. "geoip",
  1950. "geolocation",
  1951. "ipdb",
  1952. "ipip.net"
  1953. ],
  1954. "support": {
  1955. "issues": "https://github.com/ipipdotnet/ipdb-php/issues",
  1956. "source": "https://github.com/ipipdotnet/ipdb-php/tree/v1.0.1"
  1957. },
  1958. "time": "2023-02-09T06:59:46+00:00"
  1959. },
  1960. {
  1961. "name": "jaybizzle/crawler-detect",
  1962. "version": "v1.2.114",
  1963. "source": {
  1964. "type": "git",
  1965. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1966. "reference": "62d0e6b38f6715c673e156ffb0fc894791de3452"
  1967. },
  1968. "dist": {
  1969. "type": "zip",
  1970. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/62d0e6b38f6715c673e156ffb0fc894791de3452",
  1971. "reference": "62d0e6b38f6715c673e156ffb0fc894791de3452",
  1972. "shasum": "",
  1973. "mirrors": [
  1974. {
  1975. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1976. "preferred": true
  1977. }
  1978. ]
  1979. },
  1980. "require": {
  1981. "php": ">=5.3.0"
  1982. },
  1983. "require-dev": {
  1984. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  1985. },
  1986. "type": "library",
  1987. "autoload": {
  1988. "psr-4": {
  1989. "Jaybizzle\\CrawlerDetect\\": "src/"
  1990. }
  1991. },
  1992. "notification-url": "https://packagist.org/downloads/",
  1993. "license": [
  1994. "MIT"
  1995. ],
  1996. "authors": [
  1997. {
  1998. "name": "Mark Beech",
  1999. "email": "m@rkbee.ch",
  2000. "role": "Developer"
  2001. }
  2002. ],
  2003. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  2004. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  2005. "keywords": [
  2006. "crawler",
  2007. "crawler detect",
  2008. "crawler detector",
  2009. "crawlerdetect",
  2010. "php crawler detect"
  2011. ],
  2012. "support": {
  2013. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  2014. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.114"
  2015. },
  2016. "time": "2023-03-21T21:54:27+00:00"
  2017. },
  2018. {
  2019. "name": "jenssegers/agent",
  2020. "version": "v2.6.4",
  2021. "source": {
  2022. "type": "git",
  2023. "url": "https://github.com/jenssegers/agent.git",
  2024. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  2025. },
  2026. "dist": {
  2027. "type": "zip",
  2028. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  2029. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  2030. "shasum": "",
  2031. "mirrors": [
  2032. {
  2033. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2034. "preferred": true
  2035. }
  2036. ]
  2037. },
  2038. "require": {
  2039. "jaybizzle/crawler-detect": "^1.2",
  2040. "mobiledetect/mobiledetectlib": "^2.7.6",
  2041. "php": ">=5.6"
  2042. },
  2043. "require-dev": {
  2044. "php-coveralls/php-coveralls": "^2.1",
  2045. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  2046. },
  2047. "suggest": {
  2048. "illuminate/support": "Required for laravel service providers"
  2049. },
  2050. "type": "library",
  2051. "extra": {
  2052. "branch-alias": {
  2053. "dev-master": "3.0-dev"
  2054. },
  2055. "laravel": {
  2056. "providers": [
  2057. "Jenssegers\\Agent\\AgentServiceProvider"
  2058. ],
  2059. "aliases": {
  2060. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  2061. }
  2062. }
  2063. },
  2064. "autoload": {
  2065. "psr-4": {
  2066. "Jenssegers\\Agent\\": "src/"
  2067. }
  2068. },
  2069. "notification-url": "https://packagist.org/downloads/",
  2070. "license": [
  2071. "MIT"
  2072. ],
  2073. "authors": [
  2074. {
  2075. "name": "Jens Segers",
  2076. "homepage": "https://jenssegers.com"
  2077. }
  2078. ],
  2079. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  2080. "homepage": "https://github.com/jenssegers/agent",
  2081. "keywords": [
  2082. "Agent",
  2083. "browser",
  2084. "desktop",
  2085. "laravel",
  2086. "mobile",
  2087. "platform",
  2088. "user agent",
  2089. "useragent"
  2090. ],
  2091. "support": {
  2092. "issues": "https://github.com/jenssegers/agent/issues",
  2093. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  2094. },
  2095. "funding": [
  2096. {
  2097. "url": "https://github.com/jenssegers",
  2098. "type": "github"
  2099. },
  2100. {
  2101. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  2102. "type": "tidelift"
  2103. }
  2104. ],
  2105. "time": "2020-06-13T08:05:20+00:00"
  2106. },
  2107. {
  2108. "name": "laravel-lang/lang",
  2109. "version": "5.0.0",
  2110. "source": {
  2111. "type": "git",
  2112. "url": "https://github.com/Laravel-Lang/lang.git",
  2113. "reference": "96d7868069de7823a680710cc09d51fed24a5dbd"
  2114. },
  2115. "dist": {
  2116. "type": "zip",
  2117. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/96d7868069de7823a680710cc09d51fed24a5dbd",
  2118. "reference": "96d7868069de7823a680710cc09d51fed24a5dbd",
  2119. "shasum": "",
  2120. "mirrors": [
  2121. {
  2122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2123. "preferred": true
  2124. }
  2125. ]
  2126. },
  2127. "require": {
  2128. "ext-json": "*"
  2129. },
  2130. "suggest": {
  2131. "ablunier/laravel-lang-installer": "Command for easily add languages to a Laravel project",
  2132. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  2133. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  2134. "overtrue/laravel-lang": "Command to add languages in your project"
  2135. },
  2136. "type": "library",
  2137. "notification-url": "https://packagist.org/downloads/",
  2138. "license": [
  2139. "MIT"
  2140. ],
  2141. "authors": [
  2142. {
  2143. "name": "caouecs",
  2144. "email": "caouecs@caouecs.net"
  2145. }
  2146. ],
  2147. "description": "Languages for Laravel",
  2148. "keywords": [
  2149. "lang",
  2150. "languages",
  2151. "laravel",
  2152. "lpm"
  2153. ],
  2154. "support": {
  2155. "issues": "https://github.com/Laravel-Lang/lang/issues",
  2156. "source": "https://github.com/Laravel-Lang/lang/tree/5.0.0"
  2157. },
  2158. "time": "2020-03-17T15:25:41+00:00"
  2159. },
  2160. {
  2161. "name": "laravel-notification-channels/bearychat",
  2162. "version": "1.4.0",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://github.com/laravel-notification-channels/bearychat.git",
  2166. "reference": "b04ac9bad37cd08cf177a342b3e2b831c87b2a96"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://api.github.com/repos/laravel-notification-channels/bearychat/zipball/b04ac9bad37cd08cf177a342b3e2b831c87b2a96",
  2171. "reference": "b04ac9bad37cd08cf177a342b3e2b831c87b2a96",
  2172. "shasum": "",
  2173. "mirrors": [
  2174. {
  2175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2176. "preferred": true
  2177. }
  2178. ]
  2179. },
  2180. "require": {
  2181. "elfsundae/laravel-bearychat": "~1.4",
  2182. "illuminate/notifications": "~5.3|~6.0|~7.0|~8.0",
  2183. "php": ">=5.6.4"
  2184. },
  2185. "require-dev": {
  2186. "mockery/mockery": "~1.0",
  2187. "phpunit/phpunit": "~5.7|~6.0|~7.0|~8.0"
  2188. },
  2189. "type": "library",
  2190. "autoload": {
  2191. "psr-4": {
  2192. "NotificationChannels\\BearyChat\\": "src"
  2193. }
  2194. },
  2195. "notification-url": "https://packagist.org/downloads/",
  2196. "license": [
  2197. "MIT"
  2198. ],
  2199. "authors": [
  2200. {
  2201. "name": "Elf Sundae",
  2202. "email": "elf.sundae@gmail.com",
  2203. "homepage": "https://github.com/ElfSundae",
  2204. "role": "Developer"
  2205. }
  2206. ],
  2207. "description": "BearyChat notifications channel for Laravel.",
  2208. "homepage": "https://github.com/laravel-notification-channels/bearychat",
  2209. "support": {
  2210. "issues": "https://github.com/laravel-notification-channels/bearychat/issues",
  2211. "source": "https://github.com/laravel-notification-channels/bearychat/tree/1.4.0"
  2212. },
  2213. "time": "2020-09-13T14:32:13+00:00"
  2214. },
  2215. {
  2216. "name": "laravel-notification-channels/telegram",
  2217. "version": "0.5.1",
  2218. "source": {
  2219. "type": "git",
  2220. "url": "https://github.com/laravel-notification-channels/telegram.git",
  2221. "reference": "2cedb10b78219cc91a285eaa5a3de0db405cc207"
  2222. },
  2223. "dist": {
  2224. "type": "zip",
  2225. "url": "https://api.github.com/repos/laravel-notification-channels/telegram/zipball/2cedb10b78219cc91a285eaa5a3de0db405cc207",
  2226. "reference": "2cedb10b78219cc91a285eaa5a3de0db405cc207",
  2227. "shasum": "",
  2228. "mirrors": [
  2229. {
  2230. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2231. "preferred": true
  2232. }
  2233. ]
  2234. },
  2235. "require": {
  2236. "ext-json": "*",
  2237. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  2238. "illuminate/notifications": "^5.5 || ^6.0 || ^7.0 || ^8.0",
  2239. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0",
  2240. "php": "^7.1 || ^8.0"
  2241. },
  2242. "require-dev": {
  2243. "mockery/mockery": "^1.3",
  2244. "phpunit/phpunit": "^7.0 || ^8.0"
  2245. },
  2246. "type": "library",
  2247. "extra": {
  2248. "laravel": {
  2249. "providers": [
  2250. "NotificationChannels\\Telegram\\TelegramServiceProvider"
  2251. ]
  2252. }
  2253. },
  2254. "autoload": {
  2255. "psr-4": {
  2256. "NotificationChannels\\Telegram\\": "src"
  2257. }
  2258. },
  2259. "notification-url": "https://packagist.org/downloads/",
  2260. "license": [
  2261. "MIT"
  2262. ],
  2263. "authors": [
  2264. {
  2265. "name": "Irfaq Syed",
  2266. "email": "syed@lukonet.com",
  2267. "homepage": "https://lukonet.com",
  2268. "role": "Developer"
  2269. }
  2270. ],
  2271. "description": "Telegram Notifications Channel for Laravel",
  2272. "homepage": "https://github.com/laravel-notification-channels/telegram",
  2273. "keywords": [
  2274. "laravel",
  2275. "notification",
  2276. "telegram",
  2277. "telegram notification",
  2278. "telegram notifications channel"
  2279. ],
  2280. "support": {
  2281. "issues": "https://github.com/laravel-notification-channels/telegram/issues",
  2282. "source": "https://github.com/laravel-notification-channels/telegram/tree/0.5.1"
  2283. },
  2284. "time": "2020-12-06T19:00:18+00:00"
  2285. },
  2286. {
  2287. "name": "laravel/framework",
  2288. "version": "v7.30.6",
  2289. "source": {
  2290. "type": "git",
  2291. "url": "https://github.com/laravel/framework.git",
  2292. "reference": "ecdafad1dda3c790af186a6d18479ea4757ef9ee"
  2293. },
  2294. "dist": {
  2295. "type": "zip",
  2296. "url": "https://api.github.com/repos/laravel/framework/zipball/ecdafad1dda3c790af186a6d18479ea4757ef9ee",
  2297. "reference": "ecdafad1dda3c790af186a6d18479ea4757ef9ee",
  2298. "shasum": "",
  2299. "mirrors": [
  2300. {
  2301. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2302. "preferred": true
  2303. }
  2304. ]
  2305. },
  2306. "require": {
  2307. "doctrine/inflector": "^1.4|^2.0",
  2308. "dragonmantank/cron-expression": "^2.3.1",
  2309. "egulias/email-validator": "^2.1.10",
  2310. "ext-json": "*",
  2311. "ext-mbstring": "*",
  2312. "ext-openssl": "*",
  2313. "league/commonmark": "^1.3",
  2314. "league/flysystem": "^1.1",
  2315. "monolog/monolog": "^2.0",
  2316. "nesbot/carbon": "^2.31",
  2317. "opis/closure": "^3.6",
  2318. "php": "^7.2.5|^8.0",
  2319. "psr/container": "^1.0",
  2320. "psr/simple-cache": "^1.0",
  2321. "ramsey/uuid": "^3.7|^4.0",
  2322. "swiftmailer/swiftmailer": "^6.0",
  2323. "symfony/console": "^5.0",
  2324. "symfony/error-handler": "^5.0",
  2325. "symfony/finder": "^5.0",
  2326. "symfony/http-foundation": "^5.0",
  2327. "symfony/http-kernel": "^5.0",
  2328. "symfony/mime": "^5.0",
  2329. "symfony/polyfill-php73": "^1.17",
  2330. "symfony/process": "^5.0",
  2331. "symfony/routing": "^5.0",
  2332. "symfony/var-dumper": "^5.0",
  2333. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2334. "vlucas/phpdotenv": "^4.0",
  2335. "voku/portable-ascii": "^1.4.8"
  2336. },
  2337. "conflict": {
  2338. "tightenco/collect": "<5.5.33"
  2339. },
  2340. "provide": {
  2341. "psr/container-implementation": "1.0"
  2342. },
  2343. "replace": {
  2344. "illuminate/auth": "self.version",
  2345. "illuminate/broadcasting": "self.version",
  2346. "illuminate/bus": "self.version",
  2347. "illuminate/cache": "self.version",
  2348. "illuminate/config": "self.version",
  2349. "illuminate/console": "self.version",
  2350. "illuminate/container": "self.version",
  2351. "illuminate/contracts": "self.version",
  2352. "illuminate/cookie": "self.version",
  2353. "illuminate/database": "self.version",
  2354. "illuminate/encryption": "self.version",
  2355. "illuminate/events": "self.version",
  2356. "illuminate/filesystem": "self.version",
  2357. "illuminate/hashing": "self.version",
  2358. "illuminate/http": "self.version",
  2359. "illuminate/log": "self.version",
  2360. "illuminate/mail": "self.version",
  2361. "illuminate/notifications": "self.version",
  2362. "illuminate/pagination": "self.version",
  2363. "illuminate/pipeline": "self.version",
  2364. "illuminate/queue": "self.version",
  2365. "illuminate/redis": "self.version",
  2366. "illuminate/routing": "self.version",
  2367. "illuminate/session": "self.version",
  2368. "illuminate/support": "self.version",
  2369. "illuminate/testing": "self.version",
  2370. "illuminate/translation": "self.version",
  2371. "illuminate/validation": "self.version",
  2372. "illuminate/view": "self.version"
  2373. },
  2374. "require-dev": {
  2375. "aws/aws-sdk-php": "^3.155",
  2376. "doctrine/dbal": "^2.6",
  2377. "filp/whoops": "^2.8",
  2378. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2379. "league/flysystem-cached-adapter": "^1.0",
  2380. "mockery/mockery": "~1.3.3|^1.4.2",
  2381. "moontoast/math": "^1.1",
  2382. "orchestra/testbench-core": "^5.8",
  2383. "pda/pheanstalk": "^4.0",
  2384. "phpunit/phpunit": "^8.4|^9.3.3",
  2385. "predis/predis": "^1.1.1",
  2386. "symfony/cache": "^5.0"
  2387. },
  2388. "suggest": {
  2389. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2390. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2391. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2392. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2393. "ext-memcached": "Required to use the memcache cache driver.",
  2394. "ext-pcntl": "Required to use all features of the queue worker.",
  2395. "ext-posix": "Required to use all features of the queue worker.",
  2396. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2397. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2398. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2399. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2400. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2401. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2402. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2403. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2404. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2405. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2406. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2407. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2408. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2409. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2410. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2411. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2412. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2413. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2414. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2415. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2416. },
  2417. "type": "library",
  2418. "extra": {
  2419. "branch-alias": {
  2420. "dev-master": "7.x-dev"
  2421. }
  2422. },
  2423. "autoload": {
  2424. "files": [
  2425. "src/Illuminate/Foundation/helpers.php",
  2426. "src/Illuminate/Support/helpers.php"
  2427. ],
  2428. "psr-4": {
  2429. "Illuminate\\": "src/Illuminate/"
  2430. }
  2431. },
  2432. "notification-url": "https://packagist.org/downloads/",
  2433. "license": [
  2434. "MIT"
  2435. ],
  2436. "authors": [
  2437. {
  2438. "name": "Taylor Otwell",
  2439. "email": "taylor@laravel.com"
  2440. }
  2441. ],
  2442. "description": "The Laravel Framework.",
  2443. "homepage": "https://laravel.com",
  2444. "keywords": [
  2445. "framework",
  2446. "laravel"
  2447. ],
  2448. "support": {
  2449. "issues": "https://github.com/laravel/framework/issues",
  2450. "source": "https://github.com/laravel/framework"
  2451. },
  2452. "time": "2021-12-07T14:56:47+00:00"
  2453. },
  2454. {
  2455. "name": "laravel/tinker",
  2456. "version": "v2.8.1",
  2457. "source": {
  2458. "type": "git",
  2459. "url": "https://github.com/laravel/tinker.git",
  2460. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
  2461. },
  2462. "dist": {
  2463. "type": "zip",
  2464. "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2465. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2466. "shasum": "",
  2467. "mirrors": [
  2468. {
  2469. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2470. "preferred": true
  2471. }
  2472. ]
  2473. },
  2474. "require": {
  2475. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2476. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2477. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2478. "php": "^7.2.5|^8.0",
  2479. "psy/psysh": "^0.10.4|^0.11.1",
  2480. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2481. },
  2482. "require-dev": {
  2483. "mockery/mockery": "~1.3.3|^1.4.2",
  2484. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2485. },
  2486. "suggest": {
  2487. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  2488. },
  2489. "type": "library",
  2490. "extra": {
  2491. "branch-alias": {
  2492. "dev-master": "2.x-dev"
  2493. },
  2494. "laravel": {
  2495. "providers": [
  2496. "Laravel\\Tinker\\TinkerServiceProvider"
  2497. ]
  2498. }
  2499. },
  2500. "autoload": {
  2501. "psr-4": {
  2502. "Laravel\\Tinker\\": "src/"
  2503. }
  2504. },
  2505. "notification-url": "https://packagist.org/downloads/",
  2506. "license": [
  2507. "MIT"
  2508. ],
  2509. "authors": [
  2510. {
  2511. "name": "Taylor Otwell",
  2512. "email": "taylor@laravel.com"
  2513. }
  2514. ],
  2515. "description": "Powerful REPL for the Laravel framework.",
  2516. "keywords": [
  2517. "REPL",
  2518. "Tinker",
  2519. "laravel",
  2520. "psysh"
  2521. ],
  2522. "support": {
  2523. "issues": "https://github.com/laravel/tinker/issues",
  2524. "source": "https://github.com/laravel/tinker/tree/v2.8.1"
  2525. },
  2526. "time": "2023-02-15T16:40:09+00:00"
  2527. },
  2528. {
  2529. "name": "lcobucci/jwt",
  2530. "version": "3.3.3",
  2531. "source": {
  2532. "type": "git",
  2533. "url": "https://github.com/lcobucci/jwt.git",
  2534. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  2535. },
  2536. "dist": {
  2537. "type": "zip",
  2538. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  2539. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  2540. "shasum": "",
  2541. "mirrors": [
  2542. {
  2543. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2544. "preferred": true
  2545. }
  2546. ]
  2547. },
  2548. "require": {
  2549. "ext-mbstring": "*",
  2550. "ext-openssl": "*",
  2551. "php": "^5.6 || ^7.0"
  2552. },
  2553. "require-dev": {
  2554. "mikey179/vfsstream": "~1.5",
  2555. "phpmd/phpmd": "~2.2",
  2556. "phpunit/php-invoker": "~1.1",
  2557. "phpunit/phpunit": "^5.7 || ^7.3",
  2558. "squizlabs/php_codesniffer": "~2.3"
  2559. },
  2560. "type": "library",
  2561. "extra": {
  2562. "branch-alias": {
  2563. "dev-master": "3.1-dev"
  2564. }
  2565. },
  2566. "autoload": {
  2567. "psr-4": {
  2568. "Lcobucci\\JWT\\": "src"
  2569. }
  2570. },
  2571. "notification-url": "https://packagist.org/downloads/",
  2572. "license": [
  2573. "BSD-3-Clause"
  2574. ],
  2575. "authors": [
  2576. {
  2577. "name": "Luís Otávio Cobucci Oblonczyk",
  2578. "email": "lcobucci@gmail.com",
  2579. "role": "Developer"
  2580. }
  2581. ],
  2582. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2583. "keywords": [
  2584. "JWS",
  2585. "jwt"
  2586. ],
  2587. "support": {
  2588. "issues": "https://github.com/lcobucci/jwt/issues",
  2589. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  2590. },
  2591. "funding": [
  2592. {
  2593. "url": "https://github.com/lcobucci",
  2594. "type": "github"
  2595. },
  2596. {
  2597. "url": "https://www.patreon.com/lcobucci",
  2598. "type": "patreon"
  2599. }
  2600. ],
  2601. "time": "2020-08-20T13:22:28+00:00"
  2602. },
  2603. {
  2604. "name": "league/commonmark",
  2605. "version": "1.6.7",
  2606. "source": {
  2607. "type": "git",
  2608. "url": "https://github.com/thephpleague/commonmark.git",
  2609. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b"
  2610. },
  2611. "dist": {
  2612. "type": "zip",
  2613. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  2614. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  2615. "shasum": "",
  2616. "mirrors": [
  2617. {
  2618. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2619. "preferred": true
  2620. }
  2621. ]
  2622. },
  2623. "require": {
  2624. "ext-mbstring": "*",
  2625. "php": "^7.1 || ^8.0"
  2626. },
  2627. "conflict": {
  2628. "scrutinizer/ocular": "1.7.*"
  2629. },
  2630. "require-dev": {
  2631. "cebe/markdown": "~1.0",
  2632. "commonmark/commonmark.js": "0.29.2",
  2633. "erusev/parsedown": "~1.0",
  2634. "ext-json": "*",
  2635. "github/gfm": "0.29.0",
  2636. "michelf/php-markdown": "~1.4",
  2637. "mikehaertl/php-shellcommand": "^1.4",
  2638. "phpstan/phpstan": "^0.12.90",
  2639. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2640. "scrutinizer/ocular": "^1.5",
  2641. "symfony/finder": "^4.2"
  2642. },
  2643. "bin": [
  2644. "bin/commonmark"
  2645. ],
  2646. "type": "library",
  2647. "autoload": {
  2648. "psr-4": {
  2649. "League\\CommonMark\\": "src"
  2650. }
  2651. },
  2652. "notification-url": "https://packagist.org/downloads/",
  2653. "license": [
  2654. "BSD-3-Clause"
  2655. ],
  2656. "authors": [
  2657. {
  2658. "name": "Colin O'Dell",
  2659. "email": "colinodell@gmail.com",
  2660. "homepage": "https://www.colinodell.com",
  2661. "role": "Lead Developer"
  2662. }
  2663. ],
  2664. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2665. "homepage": "https://commonmark.thephpleague.com",
  2666. "keywords": [
  2667. "commonmark",
  2668. "flavored",
  2669. "gfm",
  2670. "github",
  2671. "github-flavored",
  2672. "markdown",
  2673. "md",
  2674. "parser"
  2675. ],
  2676. "support": {
  2677. "docs": "https://commonmark.thephpleague.com/",
  2678. "issues": "https://github.com/thephpleague/commonmark/issues",
  2679. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2680. "source": "https://github.com/thephpleague/commonmark"
  2681. },
  2682. "funding": [
  2683. {
  2684. "url": "https://www.colinodell.com/sponsor",
  2685. "type": "custom"
  2686. },
  2687. {
  2688. "url": "https://www.paypal.me/colinpodell/10.00",
  2689. "type": "custom"
  2690. },
  2691. {
  2692. "url": "https://github.com/colinodell",
  2693. "type": "github"
  2694. },
  2695. {
  2696. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2697. "type": "tidelift"
  2698. }
  2699. ],
  2700. "time": "2022-01-13T17:18:13+00:00"
  2701. },
  2702. {
  2703. "name": "league/flysystem",
  2704. "version": "1.1.10",
  2705. "source": {
  2706. "type": "git",
  2707. "url": "https://github.com/thephpleague/flysystem.git",
  2708. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2709. },
  2710. "dist": {
  2711. "type": "zip",
  2712. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2713. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2714. "shasum": "",
  2715. "mirrors": [
  2716. {
  2717. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2718. "preferred": true
  2719. }
  2720. ]
  2721. },
  2722. "require": {
  2723. "ext-fileinfo": "*",
  2724. "league/mime-type-detection": "^1.3",
  2725. "php": "^7.2.5 || ^8.0"
  2726. },
  2727. "conflict": {
  2728. "league/flysystem-sftp": "<1.0.6"
  2729. },
  2730. "require-dev": {
  2731. "phpspec/prophecy": "^1.11.1",
  2732. "phpunit/phpunit": "^8.5.8"
  2733. },
  2734. "suggest": {
  2735. "ext-ftp": "Allows you to use FTP server storage",
  2736. "ext-openssl": "Allows you to use FTPS server storage",
  2737. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2738. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2739. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2740. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2741. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2742. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2743. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2744. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2745. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2746. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2747. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2748. },
  2749. "type": "library",
  2750. "extra": {
  2751. "branch-alias": {
  2752. "dev-master": "1.1-dev"
  2753. }
  2754. },
  2755. "autoload": {
  2756. "psr-4": {
  2757. "League\\Flysystem\\": "src/"
  2758. }
  2759. },
  2760. "notification-url": "https://packagist.org/downloads/",
  2761. "license": [
  2762. "MIT"
  2763. ],
  2764. "authors": [
  2765. {
  2766. "name": "Frank de Jonge",
  2767. "email": "info@frenky.net"
  2768. }
  2769. ],
  2770. "description": "Filesystem abstraction: Many filesystems, one API.",
  2771. "keywords": [
  2772. "Cloud Files",
  2773. "WebDAV",
  2774. "abstraction",
  2775. "aws",
  2776. "cloud",
  2777. "copy.com",
  2778. "dropbox",
  2779. "file systems",
  2780. "files",
  2781. "filesystem",
  2782. "filesystems",
  2783. "ftp",
  2784. "rackspace",
  2785. "remote",
  2786. "s3",
  2787. "sftp",
  2788. "storage"
  2789. ],
  2790. "support": {
  2791. "issues": "https://github.com/thephpleague/flysystem/issues",
  2792. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2793. },
  2794. "funding": [
  2795. {
  2796. "url": "https://offset.earth/frankdejonge",
  2797. "type": "other"
  2798. }
  2799. ],
  2800. "time": "2022-10-04T09:16:37+00:00"
  2801. },
  2802. {
  2803. "name": "league/mime-type-detection",
  2804. "version": "1.11.0",
  2805. "source": {
  2806. "type": "git",
  2807. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2808. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2809. },
  2810. "dist": {
  2811. "type": "zip",
  2812. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2813. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2814. "shasum": "",
  2815. "mirrors": [
  2816. {
  2817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2818. "preferred": true
  2819. }
  2820. ]
  2821. },
  2822. "require": {
  2823. "ext-fileinfo": "*",
  2824. "php": "^7.2 || ^8.0"
  2825. },
  2826. "require-dev": {
  2827. "friendsofphp/php-cs-fixer": "^3.2",
  2828. "phpstan/phpstan": "^0.12.68",
  2829. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2830. },
  2831. "type": "library",
  2832. "autoload": {
  2833. "psr-4": {
  2834. "League\\MimeTypeDetection\\": "src"
  2835. }
  2836. },
  2837. "notification-url": "https://packagist.org/downloads/",
  2838. "license": [
  2839. "MIT"
  2840. ],
  2841. "authors": [
  2842. {
  2843. "name": "Frank de Jonge",
  2844. "email": "info@frankdejonge.nl"
  2845. }
  2846. ],
  2847. "description": "Mime-type detection for Flysystem",
  2848. "support": {
  2849. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2850. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2851. },
  2852. "funding": [
  2853. {
  2854. "url": "https://github.com/frankdejonge",
  2855. "type": "github"
  2856. },
  2857. {
  2858. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2859. "type": "tidelift"
  2860. }
  2861. ],
  2862. "time": "2022-04-17T13:12:02+00:00"
  2863. },
  2864. {
  2865. "name": "maennchen/zipstream-php",
  2866. "version": "2.2.6",
  2867. "source": {
  2868. "type": "git",
  2869. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2870. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f"
  2871. },
  2872. "dist": {
  2873. "type": "zip",
  2874. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  2875. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  2876. "shasum": "",
  2877. "mirrors": [
  2878. {
  2879. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2880. "preferred": true
  2881. }
  2882. ]
  2883. },
  2884. "require": {
  2885. "myclabs/php-enum": "^1.5",
  2886. "php": "^7.4 || ^8.0",
  2887. "psr/http-message": "^1.0",
  2888. "symfony/polyfill-mbstring": "^1.0"
  2889. },
  2890. "require-dev": {
  2891. "ext-zip": "*",
  2892. "friendsofphp/php-cs-fixer": "^3.9",
  2893. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  2894. "mikey179/vfsstream": "^1.6",
  2895. "php-coveralls/php-coveralls": "^2.4",
  2896. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  2897. "vimeo/psalm": "^4.1"
  2898. },
  2899. "type": "library",
  2900. "autoload": {
  2901. "psr-4": {
  2902. "ZipStream\\": "src/"
  2903. }
  2904. },
  2905. "notification-url": "https://packagist.org/downloads/",
  2906. "license": [
  2907. "MIT"
  2908. ],
  2909. "authors": [
  2910. {
  2911. "name": "Paul Duncan",
  2912. "email": "pabs@pablotron.org"
  2913. },
  2914. {
  2915. "name": "Jonatan Männchen",
  2916. "email": "jonatan@maennchen.ch"
  2917. },
  2918. {
  2919. "name": "Jesse Donat",
  2920. "email": "donatj@gmail.com"
  2921. },
  2922. {
  2923. "name": "András Kolesár",
  2924. "email": "kolesar@kolesar.hu"
  2925. }
  2926. ],
  2927. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2928. "keywords": [
  2929. "stream",
  2930. "zip"
  2931. ],
  2932. "support": {
  2933. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2934. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6"
  2935. },
  2936. "funding": [
  2937. {
  2938. "url": "https://github.com/maennchen",
  2939. "type": "github"
  2940. },
  2941. {
  2942. "url": "https://opencollective.com/zipstream",
  2943. "type": "open_collective"
  2944. }
  2945. ],
  2946. "time": "2022-11-25T18:57:19+00:00"
  2947. },
  2948. {
  2949. "name": "markbaker/complex",
  2950. "version": "3.0.2",
  2951. "source": {
  2952. "type": "git",
  2953. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2954. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2955. },
  2956. "dist": {
  2957. "type": "zip",
  2958. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2959. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2960. "shasum": "",
  2961. "mirrors": [
  2962. {
  2963. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2964. "preferred": true
  2965. }
  2966. ]
  2967. },
  2968. "require": {
  2969. "php": "^7.2 || ^8.0"
  2970. },
  2971. "require-dev": {
  2972. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2973. "phpcompatibility/php-compatibility": "^9.3",
  2974. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2975. "squizlabs/php_codesniffer": "^3.7"
  2976. },
  2977. "type": "library",
  2978. "autoload": {
  2979. "psr-4": {
  2980. "Complex\\": "classes/src/"
  2981. }
  2982. },
  2983. "notification-url": "https://packagist.org/downloads/",
  2984. "license": [
  2985. "MIT"
  2986. ],
  2987. "authors": [
  2988. {
  2989. "name": "Mark Baker",
  2990. "email": "mark@lange.demon.co.uk"
  2991. }
  2992. ],
  2993. "description": "PHP Class for working with complex numbers",
  2994. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2995. "keywords": [
  2996. "complex",
  2997. "mathematics"
  2998. ],
  2999. "support": {
  3000. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3001. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  3002. },
  3003. "time": "2022-12-06T16:21:08+00:00"
  3004. },
  3005. {
  3006. "name": "markbaker/matrix",
  3007. "version": "3.0.1",
  3008. "source": {
  3009. "type": "git",
  3010. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3011. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  3012. },
  3013. "dist": {
  3014. "type": "zip",
  3015. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  3016. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3017. "shasum": "",
  3018. "mirrors": [
  3019. {
  3020. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3021. "preferred": true
  3022. }
  3023. ]
  3024. },
  3025. "require": {
  3026. "php": "^7.1 || ^8.0"
  3027. },
  3028. "require-dev": {
  3029. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3030. "phpcompatibility/php-compatibility": "^9.3",
  3031. "phpdocumentor/phpdocumentor": "2.*",
  3032. "phploc/phploc": "^4.0",
  3033. "phpmd/phpmd": "2.*",
  3034. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3035. "sebastian/phpcpd": "^4.0",
  3036. "squizlabs/php_codesniffer": "^3.7"
  3037. },
  3038. "type": "library",
  3039. "autoload": {
  3040. "psr-4": {
  3041. "Matrix\\": "classes/src/"
  3042. }
  3043. },
  3044. "notification-url": "https://packagist.org/downloads/",
  3045. "license": [
  3046. "MIT"
  3047. ],
  3048. "authors": [
  3049. {
  3050. "name": "Mark Baker",
  3051. "email": "mark@demon-angel.eu"
  3052. }
  3053. ],
  3054. "description": "PHP Class for working with matrices",
  3055. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3056. "keywords": [
  3057. "mathematics",
  3058. "matrix",
  3059. "vector"
  3060. ],
  3061. "support": {
  3062. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3063. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  3064. },
  3065. "time": "2022-12-02T22:17:43+00:00"
  3066. },
  3067. {
  3068. "name": "maxmind-db/reader",
  3069. "version": "v1.11.0",
  3070. "source": {
  3071. "type": "git",
  3072. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  3073. "reference": "b1f3c0699525336d09cc5161a2861268d9f2ae5b"
  3074. },
  3075. "dist": {
  3076. "type": "zip",
  3077. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/b1f3c0699525336d09cc5161a2861268d9f2ae5b",
  3078. "reference": "b1f3c0699525336d09cc5161a2861268d9f2ae5b",
  3079. "shasum": "",
  3080. "mirrors": [
  3081. {
  3082. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3083. "preferred": true
  3084. }
  3085. ]
  3086. },
  3087. "require": {
  3088. "php": ">=7.2"
  3089. },
  3090. "conflict": {
  3091. "ext-maxminddb": "<1.10.1,>=2.0.0"
  3092. },
  3093. "require-dev": {
  3094. "friendsofphp/php-cs-fixer": "3.*",
  3095. "php-coveralls/php-coveralls": "^2.1",
  3096. "phpstan/phpstan": "*",
  3097. "phpunit/phpcov": ">=6.0.0",
  3098. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  3099. "squizlabs/php_codesniffer": "3.*"
  3100. },
  3101. "suggest": {
  3102. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  3103. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  3104. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  3105. },
  3106. "type": "library",
  3107. "autoload": {
  3108. "psr-4": {
  3109. "MaxMind\\Db\\": "src/MaxMind/Db"
  3110. }
  3111. },
  3112. "notification-url": "https://packagist.org/downloads/",
  3113. "license": [
  3114. "Apache-2.0"
  3115. ],
  3116. "authors": [
  3117. {
  3118. "name": "Gregory J. Oschwald",
  3119. "email": "goschwald@maxmind.com",
  3120. "homepage": "https://www.maxmind.com/"
  3121. }
  3122. ],
  3123. "description": "MaxMind DB Reader API",
  3124. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  3125. "keywords": [
  3126. "database",
  3127. "geoip",
  3128. "geoip2",
  3129. "geolocation",
  3130. "maxmind"
  3131. ],
  3132. "support": {
  3133. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  3134. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.11.0"
  3135. },
  3136. "time": "2021-10-18T15:23:10+00:00"
  3137. },
  3138. {
  3139. "name": "maxmind/web-service-common",
  3140. "version": "v0.9.0",
  3141. "source": {
  3142. "type": "git",
  3143. "url": "https://github.com/maxmind/web-service-common-php.git",
  3144. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53"
  3145. },
  3146. "dist": {
  3147. "type": "zip",
  3148. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  3149. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  3150. "shasum": "",
  3151. "mirrors": [
  3152. {
  3153. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3154. "preferred": true
  3155. }
  3156. ]
  3157. },
  3158. "require": {
  3159. "composer/ca-bundle": "^1.0.3",
  3160. "ext-curl": "*",
  3161. "ext-json": "*",
  3162. "php": ">=7.2"
  3163. },
  3164. "require-dev": {
  3165. "friendsofphp/php-cs-fixer": "3.*",
  3166. "phpstan/phpstan": "*",
  3167. "phpunit/phpunit": "^8.0 || ^9.0",
  3168. "squizlabs/php_codesniffer": "3.*"
  3169. },
  3170. "type": "library",
  3171. "autoload": {
  3172. "psr-4": {
  3173. "MaxMind\\Exception\\": "src/Exception",
  3174. "MaxMind\\WebService\\": "src/WebService"
  3175. }
  3176. },
  3177. "notification-url": "https://packagist.org/downloads/",
  3178. "license": [
  3179. "Apache-2.0"
  3180. ],
  3181. "authors": [
  3182. {
  3183. "name": "Gregory Oschwald",
  3184. "email": "goschwald@maxmind.com"
  3185. }
  3186. ],
  3187. "description": "Internal MaxMind Web Service API",
  3188. "homepage": "https://github.com/maxmind/web-service-common-php",
  3189. "support": {
  3190. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  3191. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.9.0"
  3192. },
  3193. "time": "2022-03-28T17:43:20+00:00"
  3194. },
  3195. {
  3196. "name": "mews/captcha",
  3197. "version": "3.3.1",
  3198. "source": {
  3199. "type": "git",
  3200. "url": "https://github.com/mewebstudio/captcha.git",
  3201. "reference": "7915706fa1ab7307378127067f39b533fdd7e2a8"
  3202. },
  3203. "dist": {
  3204. "type": "zip",
  3205. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/7915706fa1ab7307378127067f39b533fdd7e2a8",
  3206. "reference": "7915706fa1ab7307378127067f39b533fdd7e2a8",
  3207. "shasum": "",
  3208. "mirrors": [
  3209. {
  3210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3211. "preferred": true
  3212. }
  3213. ]
  3214. },
  3215. "require": {
  3216. "ext-gd": "*",
  3217. "illuminate/config": "~5|^6|^7|^8",
  3218. "illuminate/filesystem": "~5|^6|^7|^8",
  3219. "illuminate/hashing": "~5|^6|^7|^8",
  3220. "illuminate/session": "~5|^6|^7|^8",
  3221. "illuminate/support": "~5|^6|^7|^8",
  3222. "intervention/image": "~2.5",
  3223. "php": "^7.2|^8.1"
  3224. },
  3225. "require-dev": {
  3226. "mockery/mockery": "^1.0",
  3227. "phpunit/phpunit": "^8.5|^9.5.10"
  3228. },
  3229. "type": "package",
  3230. "extra": {
  3231. "laravel": {
  3232. "providers": [
  3233. "Mews\\Captcha\\CaptchaServiceProvider"
  3234. ],
  3235. "aliases": {
  3236. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  3237. }
  3238. }
  3239. },
  3240. "autoload": {
  3241. "files": [
  3242. "src/helpers.php"
  3243. ],
  3244. "psr-4": {
  3245. "Mews\\Captcha\\": "src/"
  3246. }
  3247. },
  3248. "notification-url": "https://packagist.org/downloads/",
  3249. "license": [
  3250. "MIT"
  3251. ],
  3252. "authors": [
  3253. {
  3254. "name": "Muharrem ERİN",
  3255. "email": "me@mewebstudio.com",
  3256. "homepage": "https://github.com/mewebstudio",
  3257. "role": "Developer"
  3258. }
  3259. ],
  3260. "description": "Laravel 5 & 6 Captcha Package",
  3261. "homepage": "https://github.com/mewebstudio/captcha",
  3262. "keywords": [
  3263. "captcha",
  3264. "laravel5 Security",
  3265. "laravel6 Captcha",
  3266. "laravel6 Security"
  3267. ],
  3268. "support": {
  3269. "issues": "https://github.com/mewebstudio/captcha/issues",
  3270. "source": "https://github.com/mewebstudio/captcha/tree/3.3.1"
  3271. },
  3272. "time": "2023-05-29T18:04:41+00:00"
  3273. },
  3274. {
  3275. "name": "mews/purifier",
  3276. "version": "3.4.0",
  3277. "source": {
  3278. "type": "git",
  3279. "url": "https://github.com/mewebstudio/Purifier.git",
  3280. "reference": "48e7bddc18140412d7cd815b6eea2fc7a141c432"
  3281. },
  3282. "dist": {
  3283. "type": "zip",
  3284. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/48e7bddc18140412d7cd815b6eea2fc7a141c432",
  3285. "reference": "48e7bddc18140412d7cd815b6eea2fc7a141c432",
  3286. "shasum": "",
  3287. "mirrors": [
  3288. {
  3289. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3290. "preferred": true
  3291. }
  3292. ]
  3293. },
  3294. "require": {
  3295. "ezyang/htmlpurifier": "^4.16.0",
  3296. "illuminate/config": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
  3297. "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
  3298. "illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
  3299. "php": "^7.2|^8.0"
  3300. },
  3301. "require-dev": {
  3302. "graham-campbell/testbench": "^3.2|^5.5.1",
  3303. "mockery/mockery": "^1.3.3",
  3304. "phpunit/phpunit": "^8.0|^9.0|^10.0"
  3305. },
  3306. "suggest": {
  3307. "laravel/framework": "To test the Laravel bindings",
  3308. "laravel/lumen-framework": "To test the Lumen bindings"
  3309. },
  3310. "type": "package",
  3311. "extra": {
  3312. "laravel": {
  3313. "providers": [
  3314. "Mews\\Purifier\\PurifierServiceProvider"
  3315. ],
  3316. "aliases": {
  3317. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  3318. }
  3319. }
  3320. },
  3321. "autoload": {
  3322. "files": [
  3323. "src/helpers.php"
  3324. ],
  3325. "psr-4": {
  3326. "Mews\\Purifier\\": "src/"
  3327. }
  3328. },
  3329. "notification-url": "https://packagist.org/downloads/",
  3330. "license": [
  3331. "MIT"
  3332. ],
  3333. "authors": [
  3334. {
  3335. "name": "Muharrem ERİN",
  3336. "email": "me@mewebstudio.com",
  3337. "homepage": "https://github.com/mewebstudio",
  3338. "role": "Developer"
  3339. }
  3340. ],
  3341. "description": "Laravel 5/6/7/8/9/10 HtmlPurifier Package",
  3342. "homepage": "https://github.com/mewebstudio/purifier",
  3343. "keywords": [
  3344. "Laravel Purifier",
  3345. "Laravel Security",
  3346. "Purifier",
  3347. "htmlpurifier",
  3348. "laravel HtmlPurifier",
  3349. "security",
  3350. "xss"
  3351. ],
  3352. "support": {
  3353. "issues": "https://github.com/mewebstudio/Purifier/issues",
  3354. "source": "https://github.com/mewebstudio/Purifier/tree/3.4.0"
  3355. },
  3356. "time": "2023-03-14T08:28:28+00:00"
  3357. },
  3358. {
  3359. "name": "mobiledetect/mobiledetectlib",
  3360. "version": "2.8.41",
  3361. "source": {
  3362. "type": "git",
  3363. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  3364. "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1"
  3365. },
  3366. "dist": {
  3367. "type": "zip",
  3368. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1",
  3369. "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1",
  3370. "shasum": "",
  3371. "mirrors": [
  3372. {
  3373. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3374. "preferred": true
  3375. }
  3376. ]
  3377. },
  3378. "require": {
  3379. "php": ">=5.0.0"
  3380. },
  3381. "require-dev": {
  3382. "phpunit/phpunit": "~4.8.35||~5.7"
  3383. },
  3384. "type": "library",
  3385. "autoload": {
  3386. "psr-0": {
  3387. "Detection": "namespaced/"
  3388. },
  3389. "classmap": [
  3390. "Mobile_Detect.php"
  3391. ]
  3392. },
  3393. "notification-url": "https://packagist.org/downloads/",
  3394. "license": [
  3395. "MIT"
  3396. ],
  3397. "authors": [
  3398. {
  3399. "name": "Serban Ghita",
  3400. "email": "serbanghita@gmail.com",
  3401. "homepage": "http://mobiledetect.net",
  3402. "role": "Developer"
  3403. }
  3404. ],
  3405. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  3406. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  3407. "keywords": [
  3408. "detect mobile devices",
  3409. "mobile",
  3410. "mobile detect",
  3411. "mobile detector",
  3412. "php mobile detect"
  3413. ],
  3414. "support": {
  3415. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  3416. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.41"
  3417. },
  3418. "time": "2022-11-08T18:31:26+00:00"
  3419. },
  3420. {
  3421. "name": "monolog/monolog",
  3422. "version": "2.9.1",
  3423. "source": {
  3424. "type": "git",
  3425. "url": "https://github.com/Seldaek/monolog.git",
  3426. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
  3427. },
  3428. "dist": {
  3429. "type": "zip",
  3430. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  3431. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  3432. "shasum": "",
  3433. "mirrors": [
  3434. {
  3435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3436. "preferred": true
  3437. }
  3438. ]
  3439. },
  3440. "require": {
  3441. "php": ">=7.2",
  3442. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3443. },
  3444. "provide": {
  3445. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3446. },
  3447. "require-dev": {
  3448. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3449. "doctrine/couchdb": "~1.0@dev",
  3450. "elasticsearch/elasticsearch": "^7 || ^8",
  3451. "ext-json": "*",
  3452. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3453. "guzzlehttp/guzzle": "^7.4",
  3454. "guzzlehttp/psr7": "^2.2",
  3455. "mongodb/mongodb": "^1.8",
  3456. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3457. "phpspec/prophecy": "^1.15",
  3458. "phpstan/phpstan": "^0.12.91",
  3459. "phpunit/phpunit": "^8.5.14",
  3460. "predis/predis": "^1.1 || ^2.0",
  3461. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3462. "ruflin/elastica": "^7",
  3463. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3464. "symfony/mailer": "^5.4 || ^6",
  3465. "symfony/mime": "^5.4 || ^6"
  3466. },
  3467. "suggest": {
  3468. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3469. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3470. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3471. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3472. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3473. "ext-mbstring": "Allow to work properly with unicode symbols",
  3474. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3475. "ext-openssl": "Required to send log messages using SSL",
  3476. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3477. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3478. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3479. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3480. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3481. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3482. },
  3483. "type": "library",
  3484. "extra": {
  3485. "branch-alias": {
  3486. "dev-main": "2.x-dev"
  3487. }
  3488. },
  3489. "autoload": {
  3490. "psr-4": {
  3491. "Monolog\\": "src/Monolog"
  3492. }
  3493. },
  3494. "notification-url": "https://packagist.org/downloads/",
  3495. "license": [
  3496. "MIT"
  3497. ],
  3498. "authors": [
  3499. {
  3500. "name": "Jordi Boggiano",
  3501. "email": "j.boggiano@seld.be",
  3502. "homepage": "https://seld.be"
  3503. }
  3504. ],
  3505. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3506. "homepage": "https://github.com/Seldaek/monolog",
  3507. "keywords": [
  3508. "log",
  3509. "logging",
  3510. "psr-3"
  3511. ],
  3512. "support": {
  3513. "issues": "https://github.com/Seldaek/monolog/issues",
  3514. "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
  3515. },
  3516. "funding": [
  3517. {
  3518. "url": "https://github.com/Seldaek",
  3519. "type": "github"
  3520. },
  3521. {
  3522. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3523. "type": "tidelift"
  3524. }
  3525. ],
  3526. "time": "2023-02-06T13:44:46+00:00"
  3527. },
  3528. {
  3529. "name": "myclabs/php-enum",
  3530. "version": "1.8.3",
  3531. "source": {
  3532. "type": "git",
  3533. "url": "https://github.com/myclabs/php-enum.git",
  3534. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  3535. },
  3536. "dist": {
  3537. "type": "zip",
  3538. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  3539. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  3540. "shasum": "",
  3541. "mirrors": [
  3542. {
  3543. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3544. "preferred": true
  3545. }
  3546. ]
  3547. },
  3548. "require": {
  3549. "ext-json": "*",
  3550. "php": "^7.3 || ^8.0"
  3551. },
  3552. "require-dev": {
  3553. "phpunit/phpunit": "^9.5",
  3554. "squizlabs/php_codesniffer": "1.*",
  3555. "vimeo/psalm": "^4.6.2"
  3556. },
  3557. "type": "library",
  3558. "autoload": {
  3559. "psr-4": {
  3560. "MyCLabs\\Enum\\": "src/"
  3561. }
  3562. },
  3563. "notification-url": "https://packagist.org/downloads/",
  3564. "license": [
  3565. "MIT"
  3566. ],
  3567. "authors": [
  3568. {
  3569. "name": "PHP Enum contributors",
  3570. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3571. }
  3572. ],
  3573. "description": "PHP Enum implementation",
  3574. "homepage": "http://github.com/myclabs/php-enum",
  3575. "keywords": [
  3576. "enum"
  3577. ],
  3578. "support": {
  3579. "issues": "https://github.com/myclabs/php-enum/issues",
  3580. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  3581. },
  3582. "funding": [
  3583. {
  3584. "url": "https://github.com/mnapoli",
  3585. "type": "github"
  3586. },
  3587. {
  3588. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3589. "type": "tidelift"
  3590. }
  3591. ],
  3592. "time": "2021-07-05T08:18:36+00:00"
  3593. },
  3594. {
  3595. "name": "namshi/jose",
  3596. "version": "7.2.3",
  3597. "source": {
  3598. "type": "git",
  3599. "url": "https://github.com/namshi/jose.git",
  3600. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  3601. },
  3602. "dist": {
  3603. "type": "zip",
  3604. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  3605. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  3606. "shasum": "",
  3607. "mirrors": [
  3608. {
  3609. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3610. "preferred": true
  3611. }
  3612. ]
  3613. },
  3614. "require": {
  3615. "ext-date": "*",
  3616. "ext-hash": "*",
  3617. "ext-json": "*",
  3618. "ext-pcre": "*",
  3619. "ext-spl": "*",
  3620. "php": ">=5.5",
  3621. "symfony/polyfill-php56": "^1.0"
  3622. },
  3623. "require-dev": {
  3624. "phpseclib/phpseclib": "^2.0",
  3625. "phpunit/phpunit": "^4.5|^5.0",
  3626. "satooshi/php-coveralls": "^1.0"
  3627. },
  3628. "suggest": {
  3629. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  3630. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  3631. },
  3632. "type": "library",
  3633. "autoload": {
  3634. "psr-4": {
  3635. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  3636. }
  3637. },
  3638. "notification-url": "https://packagist.org/downloads/",
  3639. "license": [
  3640. "MIT"
  3641. ],
  3642. "authors": [
  3643. {
  3644. "name": "Alessandro Nadalin",
  3645. "email": "alessandro.nadalin@gmail.com"
  3646. },
  3647. {
  3648. "name": "Alessandro Cinelli (cirpo)",
  3649. "email": "alessandro.cinelli@gmail.com"
  3650. }
  3651. ],
  3652. "description": "JSON Object Signing and Encryption library for PHP.",
  3653. "keywords": [
  3654. "JSON Web Signature",
  3655. "JSON Web Token",
  3656. "JWS",
  3657. "json",
  3658. "jwt",
  3659. "token"
  3660. ],
  3661. "support": {
  3662. "issues": "https://github.com/namshi/jose/issues",
  3663. "source": "https://github.com/namshi/jose/tree/master"
  3664. },
  3665. "time": "2016-12-05T07:27:31+00:00"
  3666. },
  3667. {
  3668. "name": "nesbot/carbon",
  3669. "version": "2.68.1",
  3670. "source": {
  3671. "type": "git",
  3672. "url": "https://github.com/briannesbitt/Carbon.git",
  3673. "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da"
  3674. },
  3675. "dist": {
  3676. "type": "zip",
  3677. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4f991ed2a403c85efbc4f23eb4030063fdbe01da",
  3678. "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da",
  3679. "shasum": "",
  3680. "mirrors": [
  3681. {
  3682. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3683. "preferred": true
  3684. }
  3685. ]
  3686. },
  3687. "require": {
  3688. "ext-json": "*",
  3689. "php": "^7.1.8 || ^8.0",
  3690. "symfony/polyfill-mbstring": "^1.0",
  3691. "symfony/polyfill-php80": "^1.16",
  3692. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3693. },
  3694. "require-dev": {
  3695. "doctrine/dbal": "^2.0 || ^3.1.4",
  3696. "doctrine/orm": "^2.7",
  3697. "friendsofphp/php-cs-fixer": "^3.0",
  3698. "kylekatarnls/multi-tester": "^2.0",
  3699. "ondrejmirtes/better-reflection": "*",
  3700. "phpmd/phpmd": "^2.9",
  3701. "phpstan/extension-installer": "^1.0",
  3702. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3703. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3704. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3705. "squizlabs/php_codesniffer": "^3.4"
  3706. },
  3707. "bin": [
  3708. "bin/carbon"
  3709. ],
  3710. "type": "library",
  3711. "extra": {
  3712. "branch-alias": {
  3713. "dev-3.x": "3.x-dev",
  3714. "dev-master": "2.x-dev"
  3715. },
  3716. "laravel": {
  3717. "providers": [
  3718. "Carbon\\Laravel\\ServiceProvider"
  3719. ]
  3720. },
  3721. "phpstan": {
  3722. "includes": [
  3723. "extension.neon"
  3724. ]
  3725. }
  3726. },
  3727. "autoload": {
  3728. "psr-4": {
  3729. "Carbon\\": "src/Carbon/"
  3730. }
  3731. },
  3732. "notification-url": "https://packagist.org/downloads/",
  3733. "license": [
  3734. "MIT"
  3735. ],
  3736. "authors": [
  3737. {
  3738. "name": "Brian Nesbitt",
  3739. "email": "brian@nesbot.com",
  3740. "homepage": "https://markido.com"
  3741. },
  3742. {
  3743. "name": "kylekatarnls",
  3744. "homepage": "https://github.com/kylekatarnls"
  3745. }
  3746. ],
  3747. "description": "An API extension for DateTime that supports 281 different languages.",
  3748. "homepage": "https://carbon.nesbot.com",
  3749. "keywords": [
  3750. "date",
  3751. "datetime",
  3752. "time"
  3753. ],
  3754. "support": {
  3755. "docs": "https://carbon.nesbot.com/docs",
  3756. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3757. "source": "https://github.com/briannesbitt/Carbon"
  3758. },
  3759. "funding": [
  3760. {
  3761. "url": "https://github.com/sponsors/kylekatarnls",
  3762. "type": "github"
  3763. },
  3764. {
  3765. "url": "https://opencollective.com/Carbon#sponsor",
  3766. "type": "opencollective"
  3767. },
  3768. {
  3769. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3770. "type": "tidelift"
  3771. }
  3772. ],
  3773. "time": "2023-06-20T18:29:04+00:00"
  3774. },
  3775. {
  3776. "name": "nikic/php-parser",
  3777. "version": "v4.15.5",
  3778. "source": {
  3779. "type": "git",
  3780. "url": "https://github.com/nikic/PHP-Parser.git",
  3781. "reference": "11e2663a5bc9db5d714eedb4277ee300403b4a9e"
  3782. },
  3783. "dist": {
  3784. "type": "zip",
  3785. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/11e2663a5bc9db5d714eedb4277ee300403b4a9e",
  3786. "reference": "11e2663a5bc9db5d714eedb4277ee300403b4a9e",
  3787. "shasum": "",
  3788. "mirrors": [
  3789. {
  3790. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3791. "preferred": true
  3792. }
  3793. ]
  3794. },
  3795. "require": {
  3796. "ext-tokenizer": "*",
  3797. "php": ">=7.0"
  3798. },
  3799. "require-dev": {
  3800. "ircmaxell/php-yacc": "^0.0.7",
  3801. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3802. },
  3803. "bin": [
  3804. "bin/php-parse"
  3805. ],
  3806. "type": "library",
  3807. "extra": {
  3808. "branch-alias": {
  3809. "dev-master": "4.9-dev"
  3810. }
  3811. },
  3812. "autoload": {
  3813. "psr-4": {
  3814. "PhpParser\\": "lib/PhpParser"
  3815. }
  3816. },
  3817. "notification-url": "https://packagist.org/downloads/",
  3818. "license": [
  3819. "BSD-3-Clause"
  3820. ],
  3821. "authors": [
  3822. {
  3823. "name": "Nikita Popov"
  3824. }
  3825. ],
  3826. "description": "A PHP parser written in PHP",
  3827. "keywords": [
  3828. "parser",
  3829. "php"
  3830. ],
  3831. "support": {
  3832. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3833. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.5"
  3834. },
  3835. "time": "2023-05-19T20:20:00+00:00"
  3836. },
  3837. {
  3838. "name": "opis/closure",
  3839. "version": "3.6.3",
  3840. "source": {
  3841. "type": "git",
  3842. "url": "https://github.com/opis/closure.git",
  3843. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3844. },
  3845. "dist": {
  3846. "type": "zip",
  3847. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3848. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3849. "shasum": "",
  3850. "mirrors": [
  3851. {
  3852. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3853. "preferred": true
  3854. }
  3855. ]
  3856. },
  3857. "require": {
  3858. "php": "^5.4 || ^7.0 || ^8.0"
  3859. },
  3860. "require-dev": {
  3861. "jeremeamia/superclosure": "^2.0",
  3862. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3863. },
  3864. "type": "library",
  3865. "extra": {
  3866. "branch-alias": {
  3867. "dev-master": "3.6.x-dev"
  3868. }
  3869. },
  3870. "autoload": {
  3871. "files": [
  3872. "functions.php"
  3873. ],
  3874. "psr-4": {
  3875. "Opis\\Closure\\": "src/"
  3876. }
  3877. },
  3878. "notification-url": "https://packagist.org/downloads/",
  3879. "license": [
  3880. "MIT"
  3881. ],
  3882. "authors": [
  3883. {
  3884. "name": "Marius Sarca",
  3885. "email": "marius.sarca@gmail.com"
  3886. },
  3887. {
  3888. "name": "Sorin Sarca",
  3889. "email": "sarca_sorin@hotmail.com"
  3890. }
  3891. ],
  3892. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3893. "homepage": "https://opis.io/closure",
  3894. "keywords": [
  3895. "anonymous functions",
  3896. "closure",
  3897. "function",
  3898. "serializable",
  3899. "serialization",
  3900. "serialize"
  3901. ],
  3902. "support": {
  3903. "issues": "https://github.com/opis/closure/issues",
  3904. "source": "https://github.com/opis/closure/tree/3.6.3"
  3905. },
  3906. "time": "2022-01-27T09:35:39+00:00"
  3907. },
  3908. {
  3909. "name": "overtrue/laravel-lang",
  3910. "version": "4.2.2",
  3911. "source": {
  3912. "type": "git",
  3913. "url": "https://github.com/overtrue/laravel-lang.git",
  3914. "reference": "d8c35f9c21df83a9f418a80b3be5e131bae29494"
  3915. },
  3916. "dist": {
  3917. "type": "zip",
  3918. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/d8c35f9c21df83a9f418a80b3be5e131bae29494",
  3919. "reference": "d8c35f9c21df83a9f418a80b3be5e131bae29494",
  3920. "shasum": "",
  3921. "mirrors": [
  3922. {
  3923. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3924. "preferred": true
  3925. }
  3926. ]
  3927. },
  3928. "require": {
  3929. "ext-json": "*",
  3930. "laravel-lang/lang": "^5.0",
  3931. "symfony/process": "^4.0|^5.0"
  3932. },
  3933. "require-dev": {
  3934. "laravel/framework": "~8.1"
  3935. },
  3936. "type": "library",
  3937. "extra": {
  3938. "laravel": {
  3939. "providers": [
  3940. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  3941. ]
  3942. }
  3943. },
  3944. "autoload": {
  3945. "psr-4": {
  3946. "Overtrue\\LaravelLang\\": "src/"
  3947. }
  3948. },
  3949. "notification-url": "https://packagist.org/downloads/",
  3950. "license": [
  3951. "MIT"
  3952. ],
  3953. "authors": [
  3954. {
  3955. "name": "overtrue",
  3956. "email": "anzhengchao@gmail.com"
  3957. }
  3958. ],
  3959. "description": "List of 75 languages for Laravel 4, 5, 6 and 7",
  3960. "keywords": [
  3961. "i18n",
  3962. "languages",
  3963. "laravel",
  3964. "locale",
  3965. "overtrue"
  3966. ],
  3967. "support": {
  3968. "issues": "https://github.com/overtrue/laravel-lang/issues",
  3969. "source": "https://github.com/overtrue/laravel-lang/tree/4.2.2"
  3970. },
  3971. "funding": [
  3972. {
  3973. "url": "https://www.patreon.com/overtrue",
  3974. "type": "patreon"
  3975. }
  3976. ],
  3977. "time": "2021-04-28T03:50:38+00:00"
  3978. },
  3979. {
  3980. "name": "phpoffice/phpspreadsheet",
  3981. "version": "1.28.0",
  3982. "source": {
  3983. "type": "git",
  3984. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3985. "reference": "6e81cf39bbd93ebc3a4e8150444c41e8aa9b769a"
  3986. },
  3987. "dist": {
  3988. "type": "zip",
  3989. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/6e81cf39bbd93ebc3a4e8150444c41e8aa9b769a",
  3990. "reference": "6e81cf39bbd93ebc3a4e8150444c41e8aa9b769a",
  3991. "shasum": "",
  3992. "mirrors": [
  3993. {
  3994. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3995. "preferred": true
  3996. }
  3997. ]
  3998. },
  3999. "require": {
  4000. "ext-ctype": "*",
  4001. "ext-dom": "*",
  4002. "ext-fileinfo": "*",
  4003. "ext-gd": "*",
  4004. "ext-iconv": "*",
  4005. "ext-libxml": "*",
  4006. "ext-mbstring": "*",
  4007. "ext-simplexml": "*",
  4008. "ext-xml": "*",
  4009. "ext-xmlreader": "*",
  4010. "ext-xmlwriter": "*",
  4011. "ext-zip": "*",
  4012. "ext-zlib": "*",
  4013. "ezyang/htmlpurifier": "^4.15",
  4014. "maennchen/zipstream-php": "^2.1",
  4015. "markbaker/complex": "^3.0",
  4016. "markbaker/matrix": "^3.0",
  4017. "php": "^7.4 || ^8.0",
  4018. "psr/http-client": "^1.0",
  4019. "psr/http-factory": "^1.0",
  4020. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  4021. },
  4022. "require-dev": {
  4023. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  4024. "dompdf/dompdf": "^1.0 || ^2.0",
  4025. "friendsofphp/php-cs-fixer": "^3.2",
  4026. "mitoteam/jpgraph": "^10.2.4",
  4027. "mpdf/mpdf": "^8.1.1",
  4028. "phpcompatibility/php-compatibility": "^9.3",
  4029. "phpstan/phpstan": "^1.1",
  4030. "phpstan/phpstan-phpunit": "^1.0",
  4031. "phpunit/phpunit": "^8.5 || ^9.0",
  4032. "squizlabs/php_codesniffer": "^3.7",
  4033. "tecnickcom/tcpdf": "^6.5"
  4034. },
  4035. "suggest": {
  4036. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  4037. "ext-intl": "PHP Internationalization Functions",
  4038. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  4039. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  4040. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  4041. },
  4042. "type": "library",
  4043. "autoload": {
  4044. "psr-4": {
  4045. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  4046. }
  4047. },
  4048. "notification-url": "https://packagist.org/downloads/",
  4049. "license": [
  4050. "MIT"
  4051. ],
  4052. "authors": [
  4053. {
  4054. "name": "Maarten Balliauw",
  4055. "homepage": "https://blog.maartenballiauw.be"
  4056. },
  4057. {
  4058. "name": "Mark Baker",
  4059. "homepage": "https://markbakeruk.net"
  4060. },
  4061. {
  4062. "name": "Franck Lefevre",
  4063. "homepage": "https://rootslabs.net"
  4064. },
  4065. {
  4066. "name": "Erik Tilt"
  4067. },
  4068. {
  4069. "name": "Adrien Crivelli"
  4070. }
  4071. ],
  4072. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  4073. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  4074. "keywords": [
  4075. "OpenXML",
  4076. "excel",
  4077. "gnumeric",
  4078. "ods",
  4079. "php",
  4080. "spreadsheet",
  4081. "xls",
  4082. "xlsx"
  4083. ],
  4084. "support": {
  4085. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  4086. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.28.0"
  4087. },
  4088. "time": "2023-02-25T12:24:49+00:00"
  4089. },
  4090. {
  4091. "name": "phpoption/phpoption",
  4092. "version": "1.9.1",
  4093. "source": {
  4094. "type": "git",
  4095. "url": "https://github.com/schmittjoh/php-option.git",
  4096. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  4097. },
  4098. "dist": {
  4099. "type": "zip",
  4100. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  4101. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  4102. "shasum": "",
  4103. "mirrors": [
  4104. {
  4105. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4106. "preferred": true
  4107. }
  4108. ]
  4109. },
  4110. "require": {
  4111. "php": "^7.2.5 || ^8.0"
  4112. },
  4113. "require-dev": {
  4114. "bamarni/composer-bin-plugin": "^1.8.2",
  4115. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  4116. },
  4117. "type": "library",
  4118. "extra": {
  4119. "bamarni-bin": {
  4120. "bin-links": true,
  4121. "forward-command": true
  4122. },
  4123. "branch-alias": {
  4124. "dev-master": "1.9-dev"
  4125. }
  4126. },
  4127. "autoload": {
  4128. "psr-4": {
  4129. "PhpOption\\": "src/PhpOption/"
  4130. }
  4131. },
  4132. "notification-url": "https://packagist.org/downloads/",
  4133. "license": [
  4134. "Apache-2.0"
  4135. ],
  4136. "authors": [
  4137. {
  4138. "name": "Johannes M. Schmitt",
  4139. "email": "schmittjoh@gmail.com",
  4140. "homepage": "https://github.com/schmittjoh"
  4141. },
  4142. {
  4143. "name": "Graham Campbell",
  4144. "email": "hello@gjcampbell.co.uk",
  4145. "homepage": "https://github.com/GrahamCampbell"
  4146. }
  4147. ],
  4148. "description": "Option Type for PHP",
  4149. "keywords": [
  4150. "language",
  4151. "option",
  4152. "php",
  4153. "type"
  4154. ],
  4155. "support": {
  4156. "issues": "https://github.com/schmittjoh/php-option/issues",
  4157. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  4158. },
  4159. "funding": [
  4160. {
  4161. "url": "https://github.com/GrahamCampbell",
  4162. "type": "github"
  4163. },
  4164. {
  4165. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4166. "type": "tidelift"
  4167. }
  4168. ],
  4169. "time": "2023-02-25T19:38:58+00:00"
  4170. },
  4171. {
  4172. "name": "psr/container",
  4173. "version": "1.1.2",
  4174. "source": {
  4175. "type": "git",
  4176. "url": "https://github.com/php-fig/container.git",
  4177. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4178. },
  4179. "dist": {
  4180. "type": "zip",
  4181. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4182. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4183. "shasum": "",
  4184. "mirrors": [
  4185. {
  4186. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4187. "preferred": true
  4188. }
  4189. ]
  4190. },
  4191. "require": {
  4192. "php": ">=7.4.0"
  4193. },
  4194. "type": "library",
  4195. "autoload": {
  4196. "psr-4": {
  4197. "Psr\\Container\\": "src/"
  4198. }
  4199. },
  4200. "notification-url": "https://packagist.org/downloads/",
  4201. "license": [
  4202. "MIT"
  4203. ],
  4204. "authors": [
  4205. {
  4206. "name": "PHP-FIG",
  4207. "homepage": "https://www.php-fig.org/"
  4208. }
  4209. ],
  4210. "description": "Common Container Interface (PHP FIG PSR-11)",
  4211. "homepage": "https://github.com/php-fig/container",
  4212. "keywords": [
  4213. "PSR-11",
  4214. "container",
  4215. "container-interface",
  4216. "container-interop",
  4217. "psr"
  4218. ],
  4219. "support": {
  4220. "issues": "https://github.com/php-fig/container/issues",
  4221. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4222. },
  4223. "time": "2021-11-05T16:50:12+00:00"
  4224. },
  4225. {
  4226. "name": "psr/event-dispatcher",
  4227. "version": "1.0.0",
  4228. "source": {
  4229. "type": "git",
  4230. "url": "https://github.com/php-fig/event-dispatcher.git",
  4231. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4232. },
  4233. "dist": {
  4234. "type": "zip",
  4235. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4236. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4237. "shasum": "",
  4238. "mirrors": [
  4239. {
  4240. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4241. "preferred": true
  4242. }
  4243. ]
  4244. },
  4245. "require": {
  4246. "php": ">=7.2.0"
  4247. },
  4248. "type": "library",
  4249. "extra": {
  4250. "branch-alias": {
  4251. "dev-master": "1.0.x-dev"
  4252. }
  4253. },
  4254. "autoload": {
  4255. "psr-4": {
  4256. "Psr\\EventDispatcher\\": "src/"
  4257. }
  4258. },
  4259. "notification-url": "https://packagist.org/downloads/",
  4260. "license": [
  4261. "MIT"
  4262. ],
  4263. "authors": [
  4264. {
  4265. "name": "PHP-FIG",
  4266. "homepage": "http://www.php-fig.org/"
  4267. }
  4268. ],
  4269. "description": "Standard interfaces for event handling.",
  4270. "keywords": [
  4271. "events",
  4272. "psr",
  4273. "psr-14"
  4274. ],
  4275. "support": {
  4276. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4277. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4278. },
  4279. "time": "2019-01-08T18:20:26+00:00"
  4280. },
  4281. {
  4282. "name": "psr/http-client",
  4283. "version": "1.0.1",
  4284. "source": {
  4285. "type": "git",
  4286. "url": "https://github.com/php-fig/http-client.git",
  4287. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4288. },
  4289. "dist": {
  4290. "type": "zip",
  4291. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4292. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4293. "shasum": "",
  4294. "mirrors": [
  4295. {
  4296. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4297. "preferred": true
  4298. }
  4299. ]
  4300. },
  4301. "require": {
  4302. "php": "^7.0 || ^8.0",
  4303. "psr/http-message": "^1.0"
  4304. },
  4305. "type": "library",
  4306. "extra": {
  4307. "branch-alias": {
  4308. "dev-master": "1.0.x-dev"
  4309. }
  4310. },
  4311. "autoload": {
  4312. "psr-4": {
  4313. "Psr\\Http\\Client\\": "src/"
  4314. }
  4315. },
  4316. "notification-url": "https://packagist.org/downloads/",
  4317. "license": [
  4318. "MIT"
  4319. ],
  4320. "authors": [
  4321. {
  4322. "name": "PHP-FIG",
  4323. "homepage": "http://www.php-fig.org/"
  4324. }
  4325. ],
  4326. "description": "Common interface for HTTP clients",
  4327. "homepage": "https://github.com/php-fig/http-client",
  4328. "keywords": [
  4329. "http",
  4330. "http-client",
  4331. "psr",
  4332. "psr-18"
  4333. ],
  4334. "support": {
  4335. "source": "https://github.com/php-fig/http-client/tree/master"
  4336. },
  4337. "time": "2020-06-29T06:28:15+00:00"
  4338. },
  4339. {
  4340. "name": "psr/http-factory",
  4341. "version": "1.0.2",
  4342. "source": {
  4343. "type": "git",
  4344. "url": "https://github.com/php-fig/http-factory.git",
  4345. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4346. },
  4347. "dist": {
  4348. "type": "zip",
  4349. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4350. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4351. "shasum": "",
  4352. "mirrors": [
  4353. {
  4354. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4355. "preferred": true
  4356. }
  4357. ]
  4358. },
  4359. "require": {
  4360. "php": ">=7.0.0",
  4361. "psr/http-message": "^1.0 || ^2.0"
  4362. },
  4363. "type": "library",
  4364. "extra": {
  4365. "branch-alias": {
  4366. "dev-master": "1.0.x-dev"
  4367. }
  4368. },
  4369. "autoload": {
  4370. "psr-4": {
  4371. "Psr\\Http\\Message\\": "src/"
  4372. }
  4373. },
  4374. "notification-url": "https://packagist.org/downloads/",
  4375. "license": [
  4376. "MIT"
  4377. ],
  4378. "authors": [
  4379. {
  4380. "name": "PHP-FIG",
  4381. "homepage": "https://www.php-fig.org/"
  4382. }
  4383. ],
  4384. "description": "Common interfaces for PSR-7 HTTP message factories",
  4385. "keywords": [
  4386. "factory",
  4387. "http",
  4388. "message",
  4389. "psr",
  4390. "psr-17",
  4391. "psr-7",
  4392. "request",
  4393. "response"
  4394. ],
  4395. "support": {
  4396. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4397. },
  4398. "time": "2023-04-10T20:10:41+00:00"
  4399. },
  4400. {
  4401. "name": "psr/http-message",
  4402. "version": "1.1",
  4403. "source": {
  4404. "type": "git",
  4405. "url": "https://github.com/php-fig/http-message.git",
  4406. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4407. },
  4408. "dist": {
  4409. "type": "zip",
  4410. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4411. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4412. "shasum": "",
  4413. "mirrors": [
  4414. {
  4415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4416. "preferred": true
  4417. }
  4418. ]
  4419. },
  4420. "require": {
  4421. "php": "^7.2 || ^8.0"
  4422. },
  4423. "type": "library",
  4424. "extra": {
  4425. "branch-alias": {
  4426. "dev-master": "1.1.x-dev"
  4427. }
  4428. },
  4429. "autoload": {
  4430. "psr-4": {
  4431. "Psr\\Http\\Message\\": "src/"
  4432. }
  4433. },
  4434. "notification-url": "https://packagist.org/downloads/",
  4435. "license": [
  4436. "MIT"
  4437. ],
  4438. "authors": [
  4439. {
  4440. "name": "PHP-FIG",
  4441. "homepage": "http://www.php-fig.org/"
  4442. }
  4443. ],
  4444. "description": "Common interface for HTTP messages",
  4445. "homepage": "https://github.com/php-fig/http-message",
  4446. "keywords": [
  4447. "http",
  4448. "http-message",
  4449. "psr",
  4450. "psr-7",
  4451. "request",
  4452. "response"
  4453. ],
  4454. "support": {
  4455. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4456. },
  4457. "time": "2023-04-04T09:50:52+00:00"
  4458. },
  4459. {
  4460. "name": "psr/log",
  4461. "version": "1.1.4",
  4462. "source": {
  4463. "type": "git",
  4464. "url": "https://github.com/php-fig/log.git",
  4465. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4466. },
  4467. "dist": {
  4468. "type": "zip",
  4469. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4470. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  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. "php": ">=5.3.0"
  4481. },
  4482. "type": "library",
  4483. "extra": {
  4484. "branch-alias": {
  4485. "dev-master": "1.1.x-dev"
  4486. }
  4487. },
  4488. "autoload": {
  4489. "psr-4": {
  4490. "Psr\\Log\\": "Psr/Log/"
  4491. }
  4492. },
  4493. "notification-url": "https://packagist.org/downloads/",
  4494. "license": [
  4495. "MIT"
  4496. ],
  4497. "authors": [
  4498. {
  4499. "name": "PHP-FIG",
  4500. "homepage": "https://www.php-fig.org/"
  4501. }
  4502. ],
  4503. "description": "Common interface for logging libraries",
  4504. "homepage": "https://github.com/php-fig/log",
  4505. "keywords": [
  4506. "log",
  4507. "psr",
  4508. "psr-3"
  4509. ],
  4510. "support": {
  4511. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4512. },
  4513. "time": "2021-05-03T11:20:27+00:00"
  4514. },
  4515. {
  4516. "name": "psr/simple-cache",
  4517. "version": "1.0.1",
  4518. "source": {
  4519. "type": "git",
  4520. "url": "https://github.com/php-fig/simple-cache.git",
  4521. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4522. },
  4523. "dist": {
  4524. "type": "zip",
  4525. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4526. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4527. "shasum": "",
  4528. "mirrors": [
  4529. {
  4530. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4531. "preferred": true
  4532. }
  4533. ]
  4534. },
  4535. "require": {
  4536. "php": ">=5.3.0"
  4537. },
  4538. "type": "library",
  4539. "extra": {
  4540. "branch-alias": {
  4541. "dev-master": "1.0.x-dev"
  4542. }
  4543. },
  4544. "autoload": {
  4545. "psr-4": {
  4546. "Psr\\SimpleCache\\": "src/"
  4547. }
  4548. },
  4549. "notification-url": "https://packagist.org/downloads/",
  4550. "license": [
  4551. "MIT"
  4552. ],
  4553. "authors": [
  4554. {
  4555. "name": "PHP-FIG",
  4556. "homepage": "http://www.php-fig.org/"
  4557. }
  4558. ],
  4559. "description": "Common interfaces for simple caching",
  4560. "keywords": [
  4561. "cache",
  4562. "caching",
  4563. "psr",
  4564. "psr-16",
  4565. "simple-cache"
  4566. ],
  4567. "support": {
  4568. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4569. },
  4570. "time": "2017-10-23T01:57:42+00:00"
  4571. },
  4572. {
  4573. "name": "psy/psysh",
  4574. "version": "v0.11.18",
  4575. "source": {
  4576. "type": "git",
  4577. "url": "https://github.com/bobthecow/psysh.git",
  4578. "reference": "4f00ee9e236fa6a48f4560d1300b9c961a70a7ec"
  4579. },
  4580. "dist": {
  4581. "type": "zip",
  4582. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/4f00ee9e236fa6a48f4560d1300b9c961a70a7ec",
  4583. "reference": "4f00ee9e236fa6a48f4560d1300b9c961a70a7ec",
  4584. "shasum": "",
  4585. "mirrors": [
  4586. {
  4587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4588. "preferred": true
  4589. }
  4590. ]
  4591. },
  4592. "require": {
  4593. "ext-json": "*",
  4594. "ext-tokenizer": "*",
  4595. "nikic/php-parser": "^4.0 || ^3.1",
  4596. "php": "^8.0 || ^7.0.8",
  4597. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4598. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4599. },
  4600. "conflict": {
  4601. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4602. },
  4603. "require-dev": {
  4604. "bamarni/composer-bin-plugin": "^1.2"
  4605. },
  4606. "suggest": {
  4607. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4608. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4609. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4610. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4611. },
  4612. "bin": [
  4613. "bin/psysh"
  4614. ],
  4615. "type": "library",
  4616. "extra": {
  4617. "branch-alias": {
  4618. "dev-main": "0.11.x-dev"
  4619. }
  4620. },
  4621. "autoload": {
  4622. "files": [
  4623. "src/functions.php"
  4624. ],
  4625. "psr-4": {
  4626. "Psy\\": "src/"
  4627. }
  4628. },
  4629. "notification-url": "https://packagist.org/downloads/",
  4630. "license": [
  4631. "MIT"
  4632. ],
  4633. "authors": [
  4634. {
  4635. "name": "Justin Hileman",
  4636. "email": "justin@justinhileman.info",
  4637. "homepage": "http://justinhileman.com"
  4638. }
  4639. ],
  4640. "description": "An interactive shell for modern PHP.",
  4641. "homepage": "http://psysh.org",
  4642. "keywords": [
  4643. "REPL",
  4644. "console",
  4645. "interactive",
  4646. "shell"
  4647. ],
  4648. "support": {
  4649. "issues": "https://github.com/bobthecow/psysh/issues",
  4650. "source": "https://github.com/bobthecow/psysh/tree/v0.11.18"
  4651. },
  4652. "time": "2023-05-23T02:31:11+00:00"
  4653. },
  4654. {
  4655. "name": "ralouphie/getallheaders",
  4656. "version": "3.0.3",
  4657. "source": {
  4658. "type": "git",
  4659. "url": "https://github.com/ralouphie/getallheaders.git",
  4660. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4661. },
  4662. "dist": {
  4663. "type": "zip",
  4664. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4665. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4666. "shasum": "",
  4667. "mirrors": [
  4668. {
  4669. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4670. "preferred": true
  4671. }
  4672. ]
  4673. },
  4674. "require": {
  4675. "php": ">=5.6"
  4676. },
  4677. "require-dev": {
  4678. "php-coveralls/php-coveralls": "^2.1",
  4679. "phpunit/phpunit": "^5 || ^6.5"
  4680. },
  4681. "type": "library",
  4682. "autoload": {
  4683. "files": [
  4684. "src/getallheaders.php"
  4685. ]
  4686. },
  4687. "notification-url": "https://packagist.org/downloads/",
  4688. "license": [
  4689. "MIT"
  4690. ],
  4691. "authors": [
  4692. {
  4693. "name": "Ralph Khattar",
  4694. "email": "ralph.khattar@gmail.com"
  4695. }
  4696. ],
  4697. "description": "A polyfill for getallheaders.",
  4698. "support": {
  4699. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4700. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4701. },
  4702. "time": "2019-03-08T08:55:37+00:00"
  4703. },
  4704. {
  4705. "name": "ramsey/collection",
  4706. "version": "1.3.0",
  4707. "source": {
  4708. "type": "git",
  4709. "url": "https://github.com/ramsey/collection.git",
  4710. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4711. },
  4712. "dist": {
  4713. "type": "zip",
  4714. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4715. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4716. "shasum": "",
  4717. "mirrors": [
  4718. {
  4719. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4720. "preferred": true
  4721. }
  4722. ]
  4723. },
  4724. "require": {
  4725. "php": "^7.4 || ^8.0",
  4726. "symfony/polyfill-php81": "^1.23"
  4727. },
  4728. "require-dev": {
  4729. "captainhook/plugin-composer": "^5.3",
  4730. "ergebnis/composer-normalize": "^2.28.3",
  4731. "fakerphp/faker": "^1.21",
  4732. "hamcrest/hamcrest-php": "^2.0",
  4733. "jangregor/phpstan-prophecy": "^1.0",
  4734. "mockery/mockery": "^1.5",
  4735. "php-parallel-lint/php-console-highlighter": "^1.0",
  4736. "php-parallel-lint/php-parallel-lint": "^1.3",
  4737. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4738. "phpspec/prophecy-phpunit": "^2.0",
  4739. "phpstan/extension-installer": "^1.2",
  4740. "phpstan/phpstan": "^1.9",
  4741. "phpstan/phpstan-mockery": "^1.1",
  4742. "phpstan/phpstan-phpunit": "^1.3",
  4743. "phpunit/phpunit": "^9.5",
  4744. "psalm/plugin-mockery": "^1.1",
  4745. "psalm/plugin-phpunit": "^0.18.4",
  4746. "ramsey/coding-standard": "^2.0.3",
  4747. "ramsey/conventional-commits": "^1.3",
  4748. "vimeo/psalm": "^5.4"
  4749. },
  4750. "type": "library",
  4751. "extra": {
  4752. "captainhook": {
  4753. "force-install": true
  4754. },
  4755. "ramsey/conventional-commits": {
  4756. "configFile": "conventional-commits.json"
  4757. }
  4758. },
  4759. "autoload": {
  4760. "psr-4": {
  4761. "Ramsey\\Collection\\": "src/"
  4762. }
  4763. },
  4764. "notification-url": "https://packagist.org/downloads/",
  4765. "license": [
  4766. "MIT"
  4767. ],
  4768. "authors": [
  4769. {
  4770. "name": "Ben Ramsey",
  4771. "email": "ben@benramsey.com",
  4772. "homepage": "https://benramsey.com"
  4773. }
  4774. ],
  4775. "description": "A PHP library for representing and manipulating collections.",
  4776. "keywords": [
  4777. "array",
  4778. "collection",
  4779. "hash",
  4780. "map",
  4781. "queue",
  4782. "set"
  4783. ],
  4784. "support": {
  4785. "issues": "https://github.com/ramsey/collection/issues",
  4786. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4787. },
  4788. "funding": [
  4789. {
  4790. "url": "https://github.com/ramsey",
  4791. "type": "github"
  4792. },
  4793. {
  4794. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4795. "type": "tidelift"
  4796. }
  4797. ],
  4798. "time": "2022-12-27T19:12:24+00:00"
  4799. },
  4800. {
  4801. "name": "ramsey/uuid",
  4802. "version": "4.2.3",
  4803. "source": {
  4804. "type": "git",
  4805. "url": "https://github.com/ramsey/uuid.git",
  4806. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  4807. },
  4808. "dist": {
  4809. "type": "zip",
  4810. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4811. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4812. "shasum": "",
  4813. "mirrors": [
  4814. {
  4815. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4816. "preferred": true
  4817. }
  4818. ]
  4819. },
  4820. "require": {
  4821. "brick/math": "^0.8 || ^0.9",
  4822. "ext-json": "*",
  4823. "php": "^7.2 || ^8.0",
  4824. "ramsey/collection": "^1.0",
  4825. "symfony/polyfill-ctype": "^1.8",
  4826. "symfony/polyfill-php80": "^1.14"
  4827. },
  4828. "replace": {
  4829. "rhumsaa/uuid": "self.version"
  4830. },
  4831. "require-dev": {
  4832. "captainhook/captainhook": "^5.10",
  4833. "captainhook/plugin-composer": "^5.3",
  4834. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4835. "doctrine/annotations": "^1.8",
  4836. "ergebnis/composer-normalize": "^2.15",
  4837. "mockery/mockery": "^1.3",
  4838. "moontoast/math": "^1.1",
  4839. "paragonie/random-lib": "^2",
  4840. "php-mock/php-mock": "^2.2",
  4841. "php-mock/php-mock-mockery": "^1.3",
  4842. "php-parallel-lint/php-parallel-lint": "^1.1",
  4843. "phpbench/phpbench": "^1.0",
  4844. "phpstan/extension-installer": "^1.0",
  4845. "phpstan/phpstan": "^0.12",
  4846. "phpstan/phpstan-mockery": "^0.12",
  4847. "phpstan/phpstan-phpunit": "^0.12",
  4848. "phpunit/phpunit": "^8.5 || ^9",
  4849. "slevomat/coding-standard": "^7.0",
  4850. "squizlabs/php_codesniffer": "^3.5",
  4851. "vimeo/psalm": "^4.9"
  4852. },
  4853. "suggest": {
  4854. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4855. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4856. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4857. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4858. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4859. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4860. },
  4861. "type": "library",
  4862. "extra": {
  4863. "branch-alias": {
  4864. "dev-main": "4.x-dev"
  4865. },
  4866. "captainhook": {
  4867. "force-install": true
  4868. }
  4869. },
  4870. "autoload": {
  4871. "files": [
  4872. "src/functions.php"
  4873. ],
  4874. "psr-4": {
  4875. "Ramsey\\Uuid\\": "src/"
  4876. }
  4877. },
  4878. "notification-url": "https://packagist.org/downloads/",
  4879. "license": [
  4880. "MIT"
  4881. ],
  4882. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4883. "keywords": [
  4884. "guid",
  4885. "identifier",
  4886. "uuid"
  4887. ],
  4888. "support": {
  4889. "issues": "https://github.com/ramsey/uuid/issues",
  4890. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  4891. },
  4892. "funding": [
  4893. {
  4894. "url": "https://github.com/ramsey",
  4895. "type": "github"
  4896. },
  4897. {
  4898. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4899. "type": "tidelift"
  4900. }
  4901. ],
  4902. "time": "2021-09-25T23:10:38+00:00"
  4903. },
  4904. {
  4905. "name": "rap2hpoutre/laravel-log-viewer",
  4906. "version": "v1.7.0",
  4907. "source": {
  4908. "type": "git",
  4909. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4910. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a"
  4911. },
  4912. "dist": {
  4913. "type": "zip",
  4914. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/27392d29234b6ff38a456454558f4bcc40cc837a",
  4915. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a",
  4916. "shasum": "",
  4917. "mirrors": [
  4918. {
  4919. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4920. "preferred": true
  4921. }
  4922. ]
  4923. },
  4924. "require": {
  4925. "illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0",
  4926. "php": ">=5.4.0"
  4927. },
  4928. "require-dev": {
  4929. "orchestra/testbench": "3.7.*",
  4930. "phpunit/phpunit": "^7"
  4931. },
  4932. "type": "laravel-package",
  4933. "extra": {
  4934. "laravel": {
  4935. "providers": [
  4936. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4937. ]
  4938. }
  4939. },
  4940. "autoload": {
  4941. "psr-0": {
  4942. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4943. },
  4944. "classmap": [
  4945. "src/controllers"
  4946. ]
  4947. },
  4948. "notification-url": "https://packagist.org/downloads/",
  4949. "license": [
  4950. "MIT"
  4951. ],
  4952. "authors": [
  4953. {
  4954. "name": "rap2hpoutre",
  4955. "email": "raphaelht@gmail.com"
  4956. }
  4957. ],
  4958. "description": "A Laravel log reader",
  4959. "keywords": [
  4960. "laravel",
  4961. "log",
  4962. "log-reader",
  4963. "log-viewer",
  4964. "logging",
  4965. "lumen"
  4966. ],
  4967. "support": {
  4968. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4969. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/master"
  4970. },
  4971. "time": "2020-09-08T12:21:27+00:00"
  4972. },
  4973. {
  4974. "name": "riverslei/payment",
  4975. "version": "v5.1.0",
  4976. "source": {
  4977. "type": "git",
  4978. "url": "https://github.com/helei112g/payment.git",
  4979. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  4980. },
  4981. "dist": {
  4982. "type": "zip",
  4983. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4984. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4985. "shasum": "",
  4986. "mirrors": [
  4987. {
  4988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4989. "preferred": true
  4990. }
  4991. ]
  4992. },
  4993. "require": {
  4994. "ext-bcmath": "*",
  4995. "ext-json": "*",
  4996. "ext-mbstring": "*",
  4997. "ext-openssl": "*",
  4998. "ext-simplexml": "*",
  4999. "ext-xml": "*",
  5000. "guzzlehttp/guzzle": "~6.0",
  5001. "php": ">=7.0"
  5002. },
  5003. "require-dev": {
  5004. "codeception/codeception": "*"
  5005. },
  5006. "type": "library",
  5007. "autoload": {
  5008. "psr-4": {
  5009. "Payment\\": "src/"
  5010. }
  5011. },
  5012. "notification-url": "https://packagist.org/downloads/",
  5013. "license": [
  5014. "MIT"
  5015. ],
  5016. "authors": [
  5017. {
  5018. "name": "Leo",
  5019. "email": "dayugog@gmail.com",
  5020. "homepage": "https://dayutalk.cn"
  5021. }
  5022. ],
  5023. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  5024. "homepage": "http://helei112g.github.io/payment",
  5025. "keywords": [
  5026. "alipay",
  5027. "weixin",
  5028. "一网通",
  5029. "微信支付",
  5030. "招商一网通",
  5031. "支付宝支付",
  5032. "集成支付接口SDK"
  5033. ],
  5034. "support": {
  5035. "issues": "https://github.com/helei112g/payment/issues",
  5036. "source": "https://github.com/helei112g/payment/tree/v5.x"
  5037. },
  5038. "time": "2020-05-04T03:07:17+00:00"
  5039. },
  5040. {
  5041. "name": "spatie/laravel-permission",
  5042. "version": "3.18.0",
  5043. "source": {
  5044. "type": "git",
  5045. "url": "https://github.com/spatie/laravel-permission.git",
  5046. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a"
  5047. },
  5048. "dist": {
  5049. "type": "zip",
  5050. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/1c51a5fa12131565fe3860705163e53d7a26258a",
  5051. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a",
  5052. "shasum": "",
  5053. "mirrors": [
  5054. {
  5055. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5056. "preferred": true
  5057. }
  5058. ]
  5059. },
  5060. "require": {
  5061. "illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
  5062. "illuminate/container": "^5.8|^6.0|^7.0|^8.0",
  5063. "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
  5064. "illuminate/database": "^5.8|^6.0|^7.0|^8.0",
  5065. "php": "^7.2.5|^8.0"
  5066. },
  5067. "require-dev": {
  5068. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
  5069. "phpunit/phpunit": "^8.0|^9.0",
  5070. "predis/predis": "^1.1"
  5071. },
  5072. "type": "library",
  5073. "extra": {
  5074. "laravel": {
  5075. "providers": [
  5076. "Spatie\\Permission\\PermissionServiceProvider"
  5077. ]
  5078. }
  5079. },
  5080. "autoload": {
  5081. "files": [
  5082. "src/helpers.php"
  5083. ],
  5084. "psr-4": {
  5085. "Spatie\\Permission\\": "src"
  5086. }
  5087. },
  5088. "notification-url": "https://packagist.org/downloads/",
  5089. "license": [
  5090. "MIT"
  5091. ],
  5092. "authors": [
  5093. {
  5094. "name": "Freek Van der Herten",
  5095. "email": "freek@spatie.be",
  5096. "homepage": "https://spatie.be",
  5097. "role": "Developer"
  5098. }
  5099. ],
  5100. "description": "Permission handling for Laravel 5.8 and up",
  5101. "homepage": "https://github.com/spatie/laravel-permission",
  5102. "keywords": [
  5103. "acl",
  5104. "laravel",
  5105. "permission",
  5106. "permissions",
  5107. "rbac",
  5108. "roles",
  5109. "security",
  5110. "spatie"
  5111. ],
  5112. "support": {
  5113. "issues": "https://github.com/spatie/laravel-permission/issues",
  5114. "source": "https://github.com/spatie/laravel-permission/tree/3.18.0"
  5115. },
  5116. "funding": [
  5117. {
  5118. "url": "https://github.com/spatie",
  5119. "type": "github"
  5120. }
  5121. ],
  5122. "time": "2020-11-09T14:08:36+00:00"
  5123. },
  5124. {
  5125. "name": "srmklive/paypal",
  5126. "version": "1.11.0",
  5127. "source": {
  5128. "type": "git",
  5129. "url": "https://github.com/srmklive/laravel-paypal.git",
  5130. "reference": "6591f5431a3e872d04609889c147148413abf493"
  5131. },
  5132. "dist": {
  5133. "type": "zip",
  5134. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/6591f5431a3e872d04609889c147148413abf493",
  5135. "reference": "6591f5431a3e872d04609889c147148413abf493",
  5136. "shasum": "",
  5137. "mirrors": [
  5138. {
  5139. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5140. "preferred": true
  5141. }
  5142. ]
  5143. },
  5144. "require": {
  5145. "guzzlehttp/guzzle": "~6.0|~7.0",
  5146. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0|~9.0|~10.0",
  5147. "nesbot/carbon": "~1.0|~2.0"
  5148. },
  5149. "type": "library",
  5150. "extra": {
  5151. "laravel": {
  5152. "providers": [
  5153. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  5154. ],
  5155. "aliases": {
  5156. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  5157. }
  5158. }
  5159. },
  5160. "autoload": {
  5161. "psr-4": {
  5162. "Srmklive\\PayPal\\": "src/"
  5163. }
  5164. },
  5165. "notification-url": "https://packagist.org/downloads/",
  5166. "license": [
  5167. "MIT"
  5168. ],
  5169. "authors": [
  5170. {
  5171. "name": "Raza Mehdi",
  5172. "email": "srmk@outlook.com"
  5173. }
  5174. ],
  5175. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  5176. "keywords": [
  5177. "http",
  5178. "laravel paypal",
  5179. "paypal",
  5180. "rest",
  5181. "web service"
  5182. ],
  5183. "support": {
  5184. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  5185. "source": "https://github.com/srmklive/laravel-paypal/tree/1.11.0"
  5186. },
  5187. "time": "2023-02-24T09:55:50+00:00"
  5188. },
  5189. {
  5190. "name": "stripe/stripe-php",
  5191. "version": "v7.128.0",
  5192. "source": {
  5193. "type": "git",
  5194. "url": "https://github.com/stripe/stripe-php.git",
  5195. "reference": "c704949c49b72985c76cc61063aa26fefbd2724e"
  5196. },
  5197. "dist": {
  5198. "type": "zip",
  5199. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/c704949c49b72985c76cc61063aa26fefbd2724e",
  5200. "reference": "c704949c49b72985c76cc61063aa26fefbd2724e",
  5201. "shasum": "",
  5202. "mirrors": [
  5203. {
  5204. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5205. "preferred": true
  5206. }
  5207. ]
  5208. },
  5209. "require": {
  5210. "ext-curl": "*",
  5211. "ext-json": "*",
  5212. "ext-mbstring": "*",
  5213. "php": ">=5.6.0"
  5214. },
  5215. "require-dev": {
  5216. "friendsofphp/php-cs-fixer": "3.5.0",
  5217. "phpstan/phpstan": "^1.2",
  5218. "phpunit/phpunit": "^5.7 || ^9.0",
  5219. "squizlabs/php_codesniffer": "^3.3"
  5220. },
  5221. "type": "library",
  5222. "extra": {
  5223. "branch-alias": {
  5224. "dev-master": "2.0-dev"
  5225. }
  5226. },
  5227. "autoload": {
  5228. "psr-4": {
  5229. "Stripe\\": "lib/"
  5230. }
  5231. },
  5232. "notification-url": "https://packagist.org/downloads/",
  5233. "license": [
  5234. "MIT"
  5235. ],
  5236. "authors": [
  5237. {
  5238. "name": "Stripe and contributors",
  5239. "homepage": "https://github.com/stripe/stripe-php/contributors"
  5240. }
  5241. ],
  5242. "description": "Stripe PHP Library",
  5243. "homepage": "https://stripe.com/",
  5244. "keywords": [
  5245. "api",
  5246. "payment processing",
  5247. "stripe"
  5248. ],
  5249. "support": {
  5250. "issues": "https://github.com/stripe/stripe-php/issues",
  5251. "source": "https://github.com/stripe/stripe-php/tree/v7.128.0"
  5252. },
  5253. "time": "2022-05-05T17:18:02+00:00"
  5254. },
  5255. {
  5256. "name": "swiftmailer/swiftmailer",
  5257. "version": "v6.3.0",
  5258. "source": {
  5259. "type": "git",
  5260. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5261. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5262. },
  5263. "dist": {
  5264. "type": "zip",
  5265. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5266. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5267. "shasum": "",
  5268. "mirrors": [
  5269. {
  5270. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5271. "preferred": true
  5272. }
  5273. ]
  5274. },
  5275. "require": {
  5276. "egulias/email-validator": "^2.0|^3.1",
  5277. "php": ">=7.0.0",
  5278. "symfony/polyfill-iconv": "^1.0",
  5279. "symfony/polyfill-intl-idn": "^1.10",
  5280. "symfony/polyfill-mbstring": "^1.0"
  5281. },
  5282. "require-dev": {
  5283. "mockery/mockery": "^1.0",
  5284. "symfony/phpunit-bridge": "^4.4|^5.4"
  5285. },
  5286. "suggest": {
  5287. "ext-intl": "Needed to support internationalized email addresses"
  5288. },
  5289. "type": "library",
  5290. "extra": {
  5291. "branch-alias": {
  5292. "dev-master": "6.2-dev"
  5293. }
  5294. },
  5295. "autoload": {
  5296. "files": [
  5297. "lib/swift_required.php"
  5298. ]
  5299. },
  5300. "notification-url": "https://packagist.org/downloads/",
  5301. "license": [
  5302. "MIT"
  5303. ],
  5304. "authors": [
  5305. {
  5306. "name": "Chris Corbyn"
  5307. },
  5308. {
  5309. "name": "Fabien Potencier",
  5310. "email": "fabien@symfony.com"
  5311. }
  5312. ],
  5313. "description": "Swiftmailer, free feature-rich PHP mailer",
  5314. "homepage": "https://swiftmailer.symfony.com",
  5315. "keywords": [
  5316. "email",
  5317. "mail",
  5318. "mailer"
  5319. ],
  5320. "support": {
  5321. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5322. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5323. },
  5324. "funding": [
  5325. {
  5326. "url": "https://github.com/fabpot",
  5327. "type": "github"
  5328. },
  5329. {
  5330. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5331. "type": "tidelift"
  5332. }
  5333. ],
  5334. "abandoned": "symfony/mailer",
  5335. "time": "2021-10-18T15:26:12+00:00"
  5336. },
  5337. {
  5338. "name": "symfony/console",
  5339. "version": "v5.4.24",
  5340. "source": {
  5341. "type": "git",
  5342. "url": "https://github.com/symfony/console.git",
  5343. "reference": "560fc3ed7a43e6d30ea94a07d77f9a60b8ed0fb8"
  5344. },
  5345. "dist": {
  5346. "type": "zip",
  5347. "url": "https://api.github.com/repos/symfony/console/zipball/560fc3ed7a43e6d30ea94a07d77f9a60b8ed0fb8",
  5348. "reference": "560fc3ed7a43e6d30ea94a07d77f9a60b8ed0fb8",
  5349. "shasum": "",
  5350. "mirrors": [
  5351. {
  5352. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5353. "preferred": true
  5354. }
  5355. ]
  5356. },
  5357. "require": {
  5358. "php": ">=7.2.5",
  5359. "symfony/deprecation-contracts": "^2.1|^3",
  5360. "symfony/polyfill-mbstring": "~1.0",
  5361. "symfony/polyfill-php73": "^1.9",
  5362. "symfony/polyfill-php80": "^1.16",
  5363. "symfony/service-contracts": "^1.1|^2|^3",
  5364. "symfony/string": "^5.1|^6.0"
  5365. },
  5366. "conflict": {
  5367. "psr/log": ">=3",
  5368. "symfony/dependency-injection": "<4.4",
  5369. "symfony/dotenv": "<5.1",
  5370. "symfony/event-dispatcher": "<4.4",
  5371. "symfony/lock": "<4.4",
  5372. "symfony/process": "<4.4"
  5373. },
  5374. "provide": {
  5375. "psr/log-implementation": "1.0|2.0"
  5376. },
  5377. "require-dev": {
  5378. "psr/log": "^1|^2",
  5379. "symfony/config": "^4.4|^5.0|^6.0",
  5380. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5381. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5382. "symfony/lock": "^4.4|^5.0|^6.0",
  5383. "symfony/process": "^4.4|^5.0|^6.0",
  5384. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5385. },
  5386. "suggest": {
  5387. "psr/log": "For using the console logger",
  5388. "symfony/event-dispatcher": "",
  5389. "symfony/lock": "",
  5390. "symfony/process": ""
  5391. },
  5392. "type": "library",
  5393. "autoload": {
  5394. "psr-4": {
  5395. "Symfony\\Component\\Console\\": ""
  5396. },
  5397. "exclude-from-classmap": [
  5398. "/Tests/"
  5399. ]
  5400. },
  5401. "notification-url": "https://packagist.org/downloads/",
  5402. "license": [
  5403. "MIT"
  5404. ],
  5405. "authors": [
  5406. {
  5407. "name": "Fabien Potencier",
  5408. "email": "fabien@symfony.com"
  5409. },
  5410. {
  5411. "name": "Symfony Community",
  5412. "homepage": "https://symfony.com/contributors"
  5413. }
  5414. ],
  5415. "description": "Eases the creation of beautiful and testable command line interfaces",
  5416. "homepage": "https://symfony.com",
  5417. "keywords": [
  5418. "cli",
  5419. "command-line",
  5420. "console",
  5421. "terminal"
  5422. ],
  5423. "support": {
  5424. "source": "https://github.com/symfony/console/tree/v5.4.24"
  5425. },
  5426. "funding": [
  5427. {
  5428. "url": "https://symfony.com/sponsor",
  5429. "type": "custom"
  5430. },
  5431. {
  5432. "url": "https://github.com/fabpot",
  5433. "type": "github"
  5434. },
  5435. {
  5436. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5437. "type": "tidelift"
  5438. }
  5439. ],
  5440. "time": "2023-05-26T05:13:16+00:00"
  5441. },
  5442. {
  5443. "name": "symfony/css-selector",
  5444. "version": "v5.4.21",
  5445. "source": {
  5446. "type": "git",
  5447. "url": "https://github.com/symfony/css-selector.git",
  5448. "reference": "95f3c7468db1da8cc360b24fa2a26e7cefcb355d"
  5449. },
  5450. "dist": {
  5451. "type": "zip",
  5452. "url": "https://api.github.com/repos/symfony/css-selector/zipball/95f3c7468db1da8cc360b24fa2a26e7cefcb355d",
  5453. "reference": "95f3c7468db1da8cc360b24fa2a26e7cefcb355d",
  5454. "shasum": "",
  5455. "mirrors": [
  5456. {
  5457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5458. "preferred": true
  5459. }
  5460. ]
  5461. },
  5462. "require": {
  5463. "php": ">=7.2.5",
  5464. "symfony/polyfill-php80": "^1.16"
  5465. },
  5466. "type": "library",
  5467. "autoload": {
  5468. "psr-4": {
  5469. "Symfony\\Component\\CssSelector\\": ""
  5470. },
  5471. "exclude-from-classmap": [
  5472. "/Tests/"
  5473. ]
  5474. },
  5475. "notification-url": "https://packagist.org/downloads/",
  5476. "license": [
  5477. "MIT"
  5478. ],
  5479. "authors": [
  5480. {
  5481. "name": "Fabien Potencier",
  5482. "email": "fabien@symfony.com"
  5483. },
  5484. {
  5485. "name": "Jean-François Simon",
  5486. "email": "jeanfrancois.simon@sensiolabs.com"
  5487. },
  5488. {
  5489. "name": "Symfony Community",
  5490. "homepage": "https://symfony.com/contributors"
  5491. }
  5492. ],
  5493. "description": "Converts CSS selectors to XPath expressions",
  5494. "homepage": "https://symfony.com",
  5495. "support": {
  5496. "source": "https://github.com/symfony/css-selector/tree/v5.4.21"
  5497. },
  5498. "funding": [
  5499. {
  5500. "url": "https://symfony.com/sponsor",
  5501. "type": "custom"
  5502. },
  5503. {
  5504. "url": "https://github.com/fabpot",
  5505. "type": "github"
  5506. },
  5507. {
  5508. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5509. "type": "tidelift"
  5510. }
  5511. ],
  5512. "time": "2023-02-14T08:03:56+00:00"
  5513. },
  5514. {
  5515. "name": "symfony/deprecation-contracts",
  5516. "version": "v2.5.2",
  5517. "source": {
  5518. "type": "git",
  5519. "url": "https://github.com/symfony/deprecation-contracts.git",
  5520. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  5521. },
  5522. "dist": {
  5523. "type": "zip",
  5524. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5525. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5526. "shasum": "",
  5527. "mirrors": [
  5528. {
  5529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5530. "preferred": true
  5531. }
  5532. ]
  5533. },
  5534. "require": {
  5535. "php": ">=7.1"
  5536. },
  5537. "type": "library",
  5538. "extra": {
  5539. "branch-alias": {
  5540. "dev-main": "2.5-dev"
  5541. },
  5542. "thanks": {
  5543. "name": "symfony/contracts",
  5544. "url": "https://github.com/symfony/contracts"
  5545. }
  5546. },
  5547. "autoload": {
  5548. "files": [
  5549. "function.php"
  5550. ]
  5551. },
  5552. "notification-url": "https://packagist.org/downloads/",
  5553. "license": [
  5554. "MIT"
  5555. ],
  5556. "authors": [
  5557. {
  5558. "name": "Nicolas Grekas",
  5559. "email": "p@tchwork.com"
  5560. },
  5561. {
  5562. "name": "Symfony Community",
  5563. "homepage": "https://symfony.com/contributors"
  5564. }
  5565. ],
  5566. "description": "A generic function and convention to trigger deprecation notices",
  5567. "homepage": "https://symfony.com",
  5568. "support": {
  5569. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  5570. },
  5571. "funding": [
  5572. {
  5573. "url": "https://symfony.com/sponsor",
  5574. "type": "custom"
  5575. },
  5576. {
  5577. "url": "https://github.com/fabpot",
  5578. "type": "github"
  5579. },
  5580. {
  5581. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5582. "type": "tidelift"
  5583. }
  5584. ],
  5585. "time": "2022-01-02T09:53:40+00:00"
  5586. },
  5587. {
  5588. "name": "symfony/error-handler",
  5589. "version": "v5.4.24",
  5590. "source": {
  5591. "type": "git",
  5592. "url": "https://github.com/symfony/error-handler.git",
  5593. "reference": "c1b9be3b8a6f60f720bec28c4ffb6fb5b00a8946"
  5594. },
  5595. "dist": {
  5596. "type": "zip",
  5597. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c1b9be3b8a6f60f720bec28c4ffb6fb5b00a8946",
  5598. "reference": "c1b9be3b8a6f60f720bec28c4ffb6fb5b00a8946",
  5599. "shasum": "",
  5600. "mirrors": [
  5601. {
  5602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5603. "preferred": true
  5604. }
  5605. ]
  5606. },
  5607. "require": {
  5608. "php": ">=7.2.5",
  5609. "psr/log": "^1|^2|^3",
  5610. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5611. },
  5612. "require-dev": {
  5613. "symfony/deprecation-contracts": "^2.1|^3",
  5614. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5615. "symfony/serializer": "^4.4|^5.0|^6.0"
  5616. },
  5617. "bin": [
  5618. "Resources/bin/patch-type-declarations"
  5619. ],
  5620. "type": "library",
  5621. "autoload": {
  5622. "psr-4": {
  5623. "Symfony\\Component\\ErrorHandler\\": ""
  5624. },
  5625. "exclude-from-classmap": [
  5626. "/Tests/"
  5627. ]
  5628. },
  5629. "notification-url": "https://packagist.org/downloads/",
  5630. "license": [
  5631. "MIT"
  5632. ],
  5633. "authors": [
  5634. {
  5635. "name": "Fabien Potencier",
  5636. "email": "fabien@symfony.com"
  5637. },
  5638. {
  5639. "name": "Symfony Community",
  5640. "homepage": "https://symfony.com/contributors"
  5641. }
  5642. ],
  5643. "description": "Provides tools to manage errors and ease debugging PHP code",
  5644. "homepage": "https://symfony.com",
  5645. "support": {
  5646. "source": "https://github.com/symfony/error-handler/tree/v5.4.24"
  5647. },
  5648. "funding": [
  5649. {
  5650. "url": "https://symfony.com/sponsor",
  5651. "type": "custom"
  5652. },
  5653. {
  5654. "url": "https://github.com/fabpot",
  5655. "type": "github"
  5656. },
  5657. {
  5658. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5659. "type": "tidelift"
  5660. }
  5661. ],
  5662. "time": "2023-05-02T16:13:31+00:00"
  5663. },
  5664. {
  5665. "name": "symfony/event-dispatcher",
  5666. "version": "v5.4.22",
  5667. "source": {
  5668. "type": "git",
  5669. "url": "https://github.com/symfony/event-dispatcher.git",
  5670. "reference": "1df20e45d56da29a4b1d8259dd6e950acbf1b13f"
  5671. },
  5672. "dist": {
  5673. "type": "zip",
  5674. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1df20e45d56da29a4b1d8259dd6e950acbf1b13f",
  5675. "reference": "1df20e45d56da29a4b1d8259dd6e950acbf1b13f",
  5676. "shasum": "",
  5677. "mirrors": [
  5678. {
  5679. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5680. "preferred": true
  5681. }
  5682. ]
  5683. },
  5684. "require": {
  5685. "php": ">=7.2.5",
  5686. "symfony/deprecation-contracts": "^2.1|^3",
  5687. "symfony/event-dispatcher-contracts": "^2|^3",
  5688. "symfony/polyfill-php80": "^1.16"
  5689. },
  5690. "conflict": {
  5691. "symfony/dependency-injection": "<4.4"
  5692. },
  5693. "provide": {
  5694. "psr/event-dispatcher-implementation": "1.0",
  5695. "symfony/event-dispatcher-implementation": "2.0"
  5696. },
  5697. "require-dev": {
  5698. "psr/log": "^1|^2|^3",
  5699. "symfony/config": "^4.4|^5.0|^6.0",
  5700. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5701. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5702. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5703. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5704. "symfony/service-contracts": "^1.1|^2|^3",
  5705. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  5706. },
  5707. "suggest": {
  5708. "symfony/dependency-injection": "",
  5709. "symfony/http-kernel": ""
  5710. },
  5711. "type": "library",
  5712. "autoload": {
  5713. "psr-4": {
  5714. "Symfony\\Component\\EventDispatcher\\": ""
  5715. },
  5716. "exclude-from-classmap": [
  5717. "/Tests/"
  5718. ]
  5719. },
  5720. "notification-url": "https://packagist.org/downloads/",
  5721. "license": [
  5722. "MIT"
  5723. ],
  5724. "authors": [
  5725. {
  5726. "name": "Fabien Potencier",
  5727. "email": "fabien@symfony.com"
  5728. },
  5729. {
  5730. "name": "Symfony Community",
  5731. "homepage": "https://symfony.com/contributors"
  5732. }
  5733. ],
  5734. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5735. "homepage": "https://symfony.com",
  5736. "support": {
  5737. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.22"
  5738. },
  5739. "funding": [
  5740. {
  5741. "url": "https://symfony.com/sponsor",
  5742. "type": "custom"
  5743. },
  5744. {
  5745. "url": "https://github.com/fabpot",
  5746. "type": "github"
  5747. },
  5748. {
  5749. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5750. "type": "tidelift"
  5751. }
  5752. ],
  5753. "time": "2023-03-17T11:31:58+00:00"
  5754. },
  5755. {
  5756. "name": "symfony/event-dispatcher-contracts",
  5757. "version": "v2.5.2",
  5758. "source": {
  5759. "type": "git",
  5760. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5761. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  5762. },
  5763. "dist": {
  5764. "type": "zip",
  5765. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  5766. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  5767. "shasum": "",
  5768. "mirrors": [
  5769. {
  5770. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5771. "preferred": true
  5772. }
  5773. ]
  5774. },
  5775. "require": {
  5776. "php": ">=7.2.5",
  5777. "psr/event-dispatcher": "^1"
  5778. },
  5779. "suggest": {
  5780. "symfony/event-dispatcher-implementation": ""
  5781. },
  5782. "type": "library",
  5783. "extra": {
  5784. "branch-alias": {
  5785. "dev-main": "2.5-dev"
  5786. },
  5787. "thanks": {
  5788. "name": "symfony/contracts",
  5789. "url": "https://github.com/symfony/contracts"
  5790. }
  5791. },
  5792. "autoload": {
  5793. "psr-4": {
  5794. "Symfony\\Contracts\\EventDispatcher\\": ""
  5795. }
  5796. },
  5797. "notification-url": "https://packagist.org/downloads/",
  5798. "license": [
  5799. "MIT"
  5800. ],
  5801. "authors": [
  5802. {
  5803. "name": "Nicolas Grekas",
  5804. "email": "p@tchwork.com"
  5805. },
  5806. {
  5807. "name": "Symfony Community",
  5808. "homepage": "https://symfony.com/contributors"
  5809. }
  5810. ],
  5811. "description": "Generic abstractions related to dispatching event",
  5812. "homepage": "https://symfony.com",
  5813. "keywords": [
  5814. "abstractions",
  5815. "contracts",
  5816. "decoupling",
  5817. "interfaces",
  5818. "interoperability",
  5819. "standards"
  5820. ],
  5821. "support": {
  5822. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  5823. },
  5824. "funding": [
  5825. {
  5826. "url": "https://symfony.com/sponsor",
  5827. "type": "custom"
  5828. },
  5829. {
  5830. "url": "https://github.com/fabpot",
  5831. "type": "github"
  5832. },
  5833. {
  5834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5835. "type": "tidelift"
  5836. }
  5837. ],
  5838. "time": "2022-01-02T09:53:40+00:00"
  5839. },
  5840. {
  5841. "name": "symfony/finder",
  5842. "version": "v5.4.21",
  5843. "source": {
  5844. "type": "git",
  5845. "url": "https://github.com/symfony/finder.git",
  5846. "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19"
  5847. },
  5848. "dist": {
  5849. "type": "zip",
  5850. "url": "https://api.github.com/repos/symfony/finder/zipball/078e9a5e1871fcfe6a5ce421b539344c21afef19",
  5851. "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19",
  5852. "shasum": "",
  5853. "mirrors": [
  5854. {
  5855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5856. "preferred": true
  5857. }
  5858. ]
  5859. },
  5860. "require": {
  5861. "php": ">=7.2.5",
  5862. "symfony/deprecation-contracts": "^2.1|^3",
  5863. "symfony/polyfill-php80": "^1.16"
  5864. },
  5865. "type": "library",
  5866. "autoload": {
  5867. "psr-4": {
  5868. "Symfony\\Component\\Finder\\": ""
  5869. },
  5870. "exclude-from-classmap": [
  5871. "/Tests/"
  5872. ]
  5873. },
  5874. "notification-url": "https://packagist.org/downloads/",
  5875. "license": [
  5876. "MIT"
  5877. ],
  5878. "authors": [
  5879. {
  5880. "name": "Fabien Potencier",
  5881. "email": "fabien@symfony.com"
  5882. },
  5883. {
  5884. "name": "Symfony Community",
  5885. "homepage": "https://symfony.com/contributors"
  5886. }
  5887. ],
  5888. "description": "Finds files and directories via an intuitive fluent interface",
  5889. "homepage": "https://symfony.com",
  5890. "support": {
  5891. "source": "https://github.com/symfony/finder/tree/v5.4.21"
  5892. },
  5893. "funding": [
  5894. {
  5895. "url": "https://symfony.com/sponsor",
  5896. "type": "custom"
  5897. },
  5898. {
  5899. "url": "https://github.com/fabpot",
  5900. "type": "github"
  5901. },
  5902. {
  5903. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5904. "type": "tidelift"
  5905. }
  5906. ],
  5907. "time": "2023-02-16T09:33:00+00:00"
  5908. },
  5909. {
  5910. "name": "symfony/http-foundation",
  5911. "version": "v5.4.25",
  5912. "source": {
  5913. "type": "git",
  5914. "url": "https://github.com/symfony/http-foundation.git",
  5915. "reference": "f66be2706075c5f6325d2fe2b743a57fb5d23f6b"
  5916. },
  5917. "dist": {
  5918. "type": "zip",
  5919. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f66be2706075c5f6325d2fe2b743a57fb5d23f6b",
  5920. "reference": "f66be2706075c5f6325d2fe2b743a57fb5d23f6b",
  5921. "shasum": "",
  5922. "mirrors": [
  5923. {
  5924. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5925. "preferred": true
  5926. }
  5927. ]
  5928. },
  5929. "require": {
  5930. "php": ">=7.2.5",
  5931. "symfony/deprecation-contracts": "^2.1|^3",
  5932. "symfony/polyfill-mbstring": "~1.1",
  5933. "symfony/polyfill-php80": "^1.16"
  5934. },
  5935. "require-dev": {
  5936. "predis/predis": "~1.0",
  5937. "symfony/cache": "^4.4|^5.0|^6.0",
  5938. "symfony/dependency-injection": "^5.4|^6.0",
  5939. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5940. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5941. "symfony/mime": "^4.4|^5.0|^6.0",
  5942. "symfony/rate-limiter": "^5.2|^6.0"
  5943. },
  5944. "suggest": {
  5945. "symfony/mime": "To use the file extension guesser"
  5946. },
  5947. "type": "library",
  5948. "autoload": {
  5949. "psr-4": {
  5950. "Symfony\\Component\\HttpFoundation\\": ""
  5951. },
  5952. "exclude-from-classmap": [
  5953. "/Tests/"
  5954. ]
  5955. },
  5956. "notification-url": "https://packagist.org/downloads/",
  5957. "license": [
  5958. "MIT"
  5959. ],
  5960. "authors": [
  5961. {
  5962. "name": "Fabien Potencier",
  5963. "email": "fabien@symfony.com"
  5964. },
  5965. {
  5966. "name": "Symfony Community",
  5967. "homepage": "https://symfony.com/contributors"
  5968. }
  5969. ],
  5970. "description": "Defines an object-oriented layer for the HTTP specification",
  5971. "homepage": "https://symfony.com",
  5972. "support": {
  5973. "source": "https://github.com/symfony/http-foundation/tree/v5.4.25"
  5974. },
  5975. "funding": [
  5976. {
  5977. "url": "https://symfony.com/sponsor",
  5978. "type": "custom"
  5979. },
  5980. {
  5981. "url": "https://github.com/fabpot",
  5982. "type": "github"
  5983. },
  5984. {
  5985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5986. "type": "tidelift"
  5987. }
  5988. ],
  5989. "time": "2023-06-22T08:06:06+00:00"
  5990. },
  5991. {
  5992. "name": "symfony/http-kernel",
  5993. "version": "v5.4.25",
  5994. "source": {
  5995. "type": "git",
  5996. "url": "https://github.com/symfony/http-kernel.git",
  5997. "reference": "f6c92fe64bbdad7616cb90663c24f6350f3ca464"
  5998. },
  5999. "dist": {
  6000. "type": "zip",
  6001. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f6c92fe64bbdad7616cb90663c24f6350f3ca464",
  6002. "reference": "f6c92fe64bbdad7616cb90663c24f6350f3ca464",
  6003. "shasum": "",
  6004. "mirrors": [
  6005. {
  6006. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6007. "preferred": true
  6008. }
  6009. ]
  6010. },
  6011. "require": {
  6012. "php": ">=7.2.5",
  6013. "psr/log": "^1|^2",
  6014. "symfony/deprecation-contracts": "^2.1|^3",
  6015. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6016. "symfony/event-dispatcher": "^5.0|^6.0",
  6017. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6018. "symfony/polyfill-ctype": "^1.8",
  6019. "symfony/polyfill-php73": "^1.9",
  6020. "symfony/polyfill-php80": "^1.16"
  6021. },
  6022. "conflict": {
  6023. "symfony/browser-kit": "<5.4",
  6024. "symfony/cache": "<5.0",
  6025. "symfony/config": "<5.0",
  6026. "symfony/console": "<4.4",
  6027. "symfony/dependency-injection": "<5.3",
  6028. "symfony/doctrine-bridge": "<5.0",
  6029. "symfony/form": "<5.0",
  6030. "symfony/http-client": "<5.0",
  6031. "symfony/mailer": "<5.0",
  6032. "symfony/messenger": "<5.0",
  6033. "symfony/translation": "<5.0",
  6034. "symfony/twig-bridge": "<5.0",
  6035. "symfony/validator": "<5.0",
  6036. "twig/twig": "<2.13"
  6037. },
  6038. "provide": {
  6039. "psr/log-implementation": "1.0|2.0"
  6040. },
  6041. "require-dev": {
  6042. "psr/cache": "^1.0|^2.0|^3.0",
  6043. "symfony/browser-kit": "^5.4|^6.0",
  6044. "symfony/config": "^5.0|^6.0",
  6045. "symfony/console": "^4.4|^5.0|^6.0",
  6046. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6047. "symfony/dependency-injection": "^5.3|^6.0",
  6048. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6049. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6050. "symfony/finder": "^4.4|^5.0|^6.0",
  6051. "symfony/http-client-contracts": "^1.1|^2|^3",
  6052. "symfony/process": "^4.4|^5.0|^6.0",
  6053. "symfony/routing": "^4.4|^5.0|^6.0",
  6054. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6055. "symfony/translation": "^4.4|^5.0|^6.0",
  6056. "symfony/translation-contracts": "^1.1|^2|^3",
  6057. "twig/twig": "^2.13|^3.0.4"
  6058. },
  6059. "suggest": {
  6060. "symfony/browser-kit": "",
  6061. "symfony/config": "",
  6062. "symfony/console": "",
  6063. "symfony/dependency-injection": ""
  6064. },
  6065. "type": "library",
  6066. "autoload": {
  6067. "psr-4": {
  6068. "Symfony\\Component\\HttpKernel\\": ""
  6069. },
  6070. "exclude-from-classmap": [
  6071. "/Tests/"
  6072. ]
  6073. },
  6074. "notification-url": "https://packagist.org/downloads/",
  6075. "license": [
  6076. "MIT"
  6077. ],
  6078. "authors": [
  6079. {
  6080. "name": "Fabien Potencier",
  6081. "email": "fabien@symfony.com"
  6082. },
  6083. {
  6084. "name": "Symfony Community",
  6085. "homepage": "https://symfony.com/contributors"
  6086. }
  6087. ],
  6088. "description": "Provides a structured process for converting a Request into a Response",
  6089. "homepage": "https://symfony.com",
  6090. "support": {
  6091. "source": "https://github.com/symfony/http-kernel/tree/v5.4.25"
  6092. },
  6093. "funding": [
  6094. {
  6095. "url": "https://symfony.com/sponsor",
  6096. "type": "custom"
  6097. },
  6098. {
  6099. "url": "https://github.com/fabpot",
  6100. "type": "github"
  6101. },
  6102. {
  6103. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6104. "type": "tidelift"
  6105. }
  6106. ],
  6107. "time": "2023-06-26T05:58:08+00:00"
  6108. },
  6109. {
  6110. "name": "symfony/mime",
  6111. "version": "v5.4.23",
  6112. "source": {
  6113. "type": "git",
  6114. "url": "https://github.com/symfony/mime.git",
  6115. "reference": "ae0a1032a450a3abf305ee44fc55ed423fbf16e3"
  6116. },
  6117. "dist": {
  6118. "type": "zip",
  6119. "url": "https://api.github.com/repos/symfony/mime/zipball/ae0a1032a450a3abf305ee44fc55ed423fbf16e3",
  6120. "reference": "ae0a1032a450a3abf305ee44fc55ed423fbf16e3",
  6121. "shasum": "",
  6122. "mirrors": [
  6123. {
  6124. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6125. "preferred": true
  6126. }
  6127. ]
  6128. },
  6129. "require": {
  6130. "php": ">=7.2.5",
  6131. "symfony/deprecation-contracts": "^2.1|^3",
  6132. "symfony/polyfill-intl-idn": "^1.10",
  6133. "symfony/polyfill-mbstring": "^1.0",
  6134. "symfony/polyfill-php80": "^1.16"
  6135. },
  6136. "conflict": {
  6137. "egulias/email-validator": "~3.0.0",
  6138. "phpdocumentor/reflection-docblock": "<3.2.2",
  6139. "phpdocumentor/type-resolver": "<1.4.0",
  6140. "symfony/mailer": "<4.4",
  6141. "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
  6142. },
  6143. "require-dev": {
  6144. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6145. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6146. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6147. "symfony/property-access": "^4.4|^5.1|^6.0",
  6148. "symfony/property-info": "^4.4|^5.1|^6.0",
  6149. "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
  6150. },
  6151. "type": "library",
  6152. "autoload": {
  6153. "psr-4": {
  6154. "Symfony\\Component\\Mime\\": ""
  6155. },
  6156. "exclude-from-classmap": [
  6157. "/Tests/"
  6158. ]
  6159. },
  6160. "notification-url": "https://packagist.org/downloads/",
  6161. "license": [
  6162. "MIT"
  6163. ],
  6164. "authors": [
  6165. {
  6166. "name": "Fabien Potencier",
  6167. "email": "fabien@symfony.com"
  6168. },
  6169. {
  6170. "name": "Symfony Community",
  6171. "homepage": "https://symfony.com/contributors"
  6172. }
  6173. ],
  6174. "description": "Allows manipulating MIME messages",
  6175. "homepage": "https://symfony.com",
  6176. "keywords": [
  6177. "mime",
  6178. "mime-type"
  6179. ],
  6180. "support": {
  6181. "source": "https://github.com/symfony/mime/tree/v5.4.23"
  6182. },
  6183. "funding": [
  6184. {
  6185. "url": "https://symfony.com/sponsor",
  6186. "type": "custom"
  6187. },
  6188. {
  6189. "url": "https://github.com/fabpot",
  6190. "type": "github"
  6191. },
  6192. {
  6193. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6194. "type": "tidelift"
  6195. }
  6196. ],
  6197. "time": "2023-04-19T09:49:13+00:00"
  6198. },
  6199. {
  6200. "name": "symfony/polyfill-ctype",
  6201. "version": "v1.27.0",
  6202. "source": {
  6203. "type": "git",
  6204. "url": "https://github.com/symfony/polyfill-ctype.git",
  6205. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  6206. },
  6207. "dist": {
  6208. "type": "zip",
  6209. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  6210. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  6211. "shasum": "",
  6212. "mirrors": [
  6213. {
  6214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6215. "preferred": true
  6216. }
  6217. ]
  6218. },
  6219. "require": {
  6220. "php": ">=7.1"
  6221. },
  6222. "provide": {
  6223. "ext-ctype": "*"
  6224. },
  6225. "suggest": {
  6226. "ext-ctype": "For best performance"
  6227. },
  6228. "type": "library",
  6229. "extra": {
  6230. "branch-alias": {
  6231. "dev-main": "1.27-dev"
  6232. },
  6233. "thanks": {
  6234. "name": "symfony/polyfill",
  6235. "url": "https://github.com/symfony/polyfill"
  6236. }
  6237. },
  6238. "autoload": {
  6239. "files": [
  6240. "bootstrap.php"
  6241. ],
  6242. "psr-4": {
  6243. "Symfony\\Polyfill\\Ctype\\": ""
  6244. }
  6245. },
  6246. "notification-url": "https://packagist.org/downloads/",
  6247. "license": [
  6248. "MIT"
  6249. ],
  6250. "authors": [
  6251. {
  6252. "name": "Gert de Pagter",
  6253. "email": "BackEndTea@gmail.com"
  6254. },
  6255. {
  6256. "name": "Symfony Community",
  6257. "homepage": "https://symfony.com/contributors"
  6258. }
  6259. ],
  6260. "description": "Symfony polyfill for ctype functions",
  6261. "homepage": "https://symfony.com",
  6262. "keywords": [
  6263. "compatibility",
  6264. "ctype",
  6265. "polyfill",
  6266. "portable"
  6267. ],
  6268. "support": {
  6269. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  6270. },
  6271. "funding": [
  6272. {
  6273. "url": "https://symfony.com/sponsor",
  6274. "type": "custom"
  6275. },
  6276. {
  6277. "url": "https://github.com/fabpot",
  6278. "type": "github"
  6279. },
  6280. {
  6281. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6282. "type": "tidelift"
  6283. }
  6284. ],
  6285. "time": "2022-11-03T14:55:06+00:00"
  6286. },
  6287. {
  6288. "name": "symfony/polyfill-iconv",
  6289. "version": "v1.27.0",
  6290. "source": {
  6291. "type": "git",
  6292. "url": "https://github.com/symfony/polyfill-iconv.git",
  6293. "reference": "927013f3aac555983a5059aada98e1907d842695"
  6294. },
  6295. "dist": {
  6296. "type": "zip",
  6297. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  6298. "reference": "927013f3aac555983a5059aada98e1907d842695",
  6299. "shasum": "",
  6300. "mirrors": [
  6301. {
  6302. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6303. "preferred": true
  6304. }
  6305. ]
  6306. },
  6307. "require": {
  6308. "php": ">=7.1"
  6309. },
  6310. "provide": {
  6311. "ext-iconv": "*"
  6312. },
  6313. "suggest": {
  6314. "ext-iconv": "For best performance"
  6315. },
  6316. "type": "library",
  6317. "extra": {
  6318. "branch-alias": {
  6319. "dev-main": "1.27-dev"
  6320. },
  6321. "thanks": {
  6322. "name": "symfony/polyfill",
  6323. "url": "https://github.com/symfony/polyfill"
  6324. }
  6325. },
  6326. "autoload": {
  6327. "files": [
  6328. "bootstrap.php"
  6329. ],
  6330. "psr-4": {
  6331. "Symfony\\Polyfill\\Iconv\\": ""
  6332. }
  6333. },
  6334. "notification-url": "https://packagist.org/downloads/",
  6335. "license": [
  6336. "MIT"
  6337. ],
  6338. "authors": [
  6339. {
  6340. "name": "Nicolas Grekas",
  6341. "email": "p@tchwork.com"
  6342. },
  6343. {
  6344. "name": "Symfony Community",
  6345. "homepage": "https://symfony.com/contributors"
  6346. }
  6347. ],
  6348. "description": "Symfony polyfill for the Iconv extension",
  6349. "homepage": "https://symfony.com",
  6350. "keywords": [
  6351. "compatibility",
  6352. "iconv",
  6353. "polyfill",
  6354. "portable",
  6355. "shim"
  6356. ],
  6357. "support": {
  6358. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  6359. },
  6360. "funding": [
  6361. {
  6362. "url": "https://symfony.com/sponsor",
  6363. "type": "custom"
  6364. },
  6365. {
  6366. "url": "https://github.com/fabpot",
  6367. "type": "github"
  6368. },
  6369. {
  6370. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6371. "type": "tidelift"
  6372. }
  6373. ],
  6374. "time": "2022-11-03T14:55:06+00:00"
  6375. },
  6376. {
  6377. "name": "symfony/polyfill-intl-grapheme",
  6378. "version": "v1.27.0",
  6379. "source": {
  6380. "type": "git",
  6381. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6382. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  6383. },
  6384. "dist": {
  6385. "type": "zip",
  6386. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  6387. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  6388. "shasum": "",
  6389. "mirrors": [
  6390. {
  6391. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6392. "preferred": true
  6393. }
  6394. ]
  6395. },
  6396. "require": {
  6397. "php": ">=7.1"
  6398. },
  6399. "suggest": {
  6400. "ext-intl": "For best performance"
  6401. },
  6402. "type": "library",
  6403. "extra": {
  6404. "branch-alias": {
  6405. "dev-main": "1.27-dev"
  6406. },
  6407. "thanks": {
  6408. "name": "symfony/polyfill",
  6409. "url": "https://github.com/symfony/polyfill"
  6410. }
  6411. },
  6412. "autoload": {
  6413. "files": [
  6414. "bootstrap.php"
  6415. ],
  6416. "psr-4": {
  6417. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6418. }
  6419. },
  6420. "notification-url": "https://packagist.org/downloads/",
  6421. "license": [
  6422. "MIT"
  6423. ],
  6424. "authors": [
  6425. {
  6426. "name": "Nicolas Grekas",
  6427. "email": "p@tchwork.com"
  6428. },
  6429. {
  6430. "name": "Symfony Community",
  6431. "homepage": "https://symfony.com/contributors"
  6432. }
  6433. ],
  6434. "description": "Symfony polyfill for intl's grapheme_* functions",
  6435. "homepage": "https://symfony.com",
  6436. "keywords": [
  6437. "compatibility",
  6438. "grapheme",
  6439. "intl",
  6440. "polyfill",
  6441. "portable",
  6442. "shim"
  6443. ],
  6444. "support": {
  6445. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  6446. },
  6447. "funding": [
  6448. {
  6449. "url": "https://symfony.com/sponsor",
  6450. "type": "custom"
  6451. },
  6452. {
  6453. "url": "https://github.com/fabpot",
  6454. "type": "github"
  6455. },
  6456. {
  6457. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6458. "type": "tidelift"
  6459. }
  6460. ],
  6461. "time": "2022-11-03T14:55:06+00:00"
  6462. },
  6463. {
  6464. "name": "symfony/polyfill-intl-idn",
  6465. "version": "v1.27.0",
  6466. "source": {
  6467. "type": "git",
  6468. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6469. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  6470. },
  6471. "dist": {
  6472. "type": "zip",
  6473. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  6474. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  6475. "shasum": "",
  6476. "mirrors": [
  6477. {
  6478. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6479. "preferred": true
  6480. }
  6481. ]
  6482. },
  6483. "require": {
  6484. "php": ">=7.1",
  6485. "symfony/polyfill-intl-normalizer": "^1.10",
  6486. "symfony/polyfill-php72": "^1.10"
  6487. },
  6488. "suggest": {
  6489. "ext-intl": "For best performance"
  6490. },
  6491. "type": "library",
  6492. "extra": {
  6493. "branch-alias": {
  6494. "dev-main": "1.27-dev"
  6495. },
  6496. "thanks": {
  6497. "name": "symfony/polyfill",
  6498. "url": "https://github.com/symfony/polyfill"
  6499. }
  6500. },
  6501. "autoload": {
  6502. "files": [
  6503. "bootstrap.php"
  6504. ],
  6505. "psr-4": {
  6506. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6507. }
  6508. },
  6509. "notification-url": "https://packagist.org/downloads/",
  6510. "license": [
  6511. "MIT"
  6512. ],
  6513. "authors": [
  6514. {
  6515. "name": "Laurent Bassin",
  6516. "email": "laurent@bassin.info"
  6517. },
  6518. {
  6519. "name": "Trevor Rowbotham",
  6520. "email": "trevor.rowbotham@pm.me"
  6521. },
  6522. {
  6523. "name": "Symfony Community",
  6524. "homepage": "https://symfony.com/contributors"
  6525. }
  6526. ],
  6527. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6528. "homepage": "https://symfony.com",
  6529. "keywords": [
  6530. "compatibility",
  6531. "idn",
  6532. "intl",
  6533. "polyfill",
  6534. "portable",
  6535. "shim"
  6536. ],
  6537. "support": {
  6538. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  6539. },
  6540. "funding": [
  6541. {
  6542. "url": "https://symfony.com/sponsor",
  6543. "type": "custom"
  6544. },
  6545. {
  6546. "url": "https://github.com/fabpot",
  6547. "type": "github"
  6548. },
  6549. {
  6550. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6551. "type": "tidelift"
  6552. }
  6553. ],
  6554. "time": "2022-11-03T14:55:06+00:00"
  6555. },
  6556. {
  6557. "name": "symfony/polyfill-intl-normalizer",
  6558. "version": "v1.27.0",
  6559. "source": {
  6560. "type": "git",
  6561. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6562. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  6563. },
  6564. "dist": {
  6565. "type": "zip",
  6566. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  6567. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  6568. "shasum": "",
  6569. "mirrors": [
  6570. {
  6571. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6572. "preferred": true
  6573. }
  6574. ]
  6575. },
  6576. "require": {
  6577. "php": ">=7.1"
  6578. },
  6579. "suggest": {
  6580. "ext-intl": "For best performance"
  6581. },
  6582. "type": "library",
  6583. "extra": {
  6584. "branch-alias": {
  6585. "dev-main": "1.27-dev"
  6586. },
  6587. "thanks": {
  6588. "name": "symfony/polyfill",
  6589. "url": "https://github.com/symfony/polyfill"
  6590. }
  6591. },
  6592. "autoload": {
  6593. "files": [
  6594. "bootstrap.php"
  6595. ],
  6596. "psr-4": {
  6597. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6598. },
  6599. "classmap": [
  6600. "Resources/stubs"
  6601. ]
  6602. },
  6603. "notification-url": "https://packagist.org/downloads/",
  6604. "license": [
  6605. "MIT"
  6606. ],
  6607. "authors": [
  6608. {
  6609. "name": "Nicolas Grekas",
  6610. "email": "p@tchwork.com"
  6611. },
  6612. {
  6613. "name": "Symfony Community",
  6614. "homepage": "https://symfony.com/contributors"
  6615. }
  6616. ],
  6617. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6618. "homepage": "https://symfony.com",
  6619. "keywords": [
  6620. "compatibility",
  6621. "intl",
  6622. "normalizer",
  6623. "polyfill",
  6624. "portable",
  6625. "shim"
  6626. ],
  6627. "support": {
  6628. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  6629. },
  6630. "funding": [
  6631. {
  6632. "url": "https://symfony.com/sponsor",
  6633. "type": "custom"
  6634. },
  6635. {
  6636. "url": "https://github.com/fabpot",
  6637. "type": "github"
  6638. },
  6639. {
  6640. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6641. "type": "tidelift"
  6642. }
  6643. ],
  6644. "time": "2022-11-03T14:55:06+00:00"
  6645. },
  6646. {
  6647. "name": "symfony/polyfill-mbstring",
  6648. "version": "v1.27.0",
  6649. "source": {
  6650. "type": "git",
  6651. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6652. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  6653. },
  6654. "dist": {
  6655. "type": "zip",
  6656. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6657. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6658. "shasum": "",
  6659. "mirrors": [
  6660. {
  6661. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6662. "preferred": true
  6663. }
  6664. ]
  6665. },
  6666. "require": {
  6667. "php": ">=7.1"
  6668. },
  6669. "provide": {
  6670. "ext-mbstring": "*"
  6671. },
  6672. "suggest": {
  6673. "ext-mbstring": "For best performance"
  6674. },
  6675. "type": "library",
  6676. "extra": {
  6677. "branch-alias": {
  6678. "dev-main": "1.27-dev"
  6679. },
  6680. "thanks": {
  6681. "name": "symfony/polyfill",
  6682. "url": "https://github.com/symfony/polyfill"
  6683. }
  6684. },
  6685. "autoload": {
  6686. "files": [
  6687. "bootstrap.php"
  6688. ],
  6689. "psr-4": {
  6690. "Symfony\\Polyfill\\Mbstring\\": ""
  6691. }
  6692. },
  6693. "notification-url": "https://packagist.org/downloads/",
  6694. "license": [
  6695. "MIT"
  6696. ],
  6697. "authors": [
  6698. {
  6699. "name": "Nicolas Grekas",
  6700. "email": "p@tchwork.com"
  6701. },
  6702. {
  6703. "name": "Symfony Community",
  6704. "homepage": "https://symfony.com/contributors"
  6705. }
  6706. ],
  6707. "description": "Symfony polyfill for the Mbstring extension",
  6708. "homepage": "https://symfony.com",
  6709. "keywords": [
  6710. "compatibility",
  6711. "mbstring",
  6712. "polyfill",
  6713. "portable",
  6714. "shim"
  6715. ],
  6716. "support": {
  6717. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  6718. },
  6719. "funding": [
  6720. {
  6721. "url": "https://symfony.com/sponsor",
  6722. "type": "custom"
  6723. },
  6724. {
  6725. "url": "https://github.com/fabpot",
  6726. "type": "github"
  6727. },
  6728. {
  6729. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6730. "type": "tidelift"
  6731. }
  6732. ],
  6733. "time": "2022-11-03T14:55:06+00:00"
  6734. },
  6735. {
  6736. "name": "symfony/polyfill-php56",
  6737. "version": "v1.20.0",
  6738. "source": {
  6739. "type": "git",
  6740. "url": "https://github.com/symfony/polyfill-php56.git",
  6741. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  6742. },
  6743. "dist": {
  6744. "type": "zip",
  6745. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6746. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6747. "shasum": "",
  6748. "mirrors": [
  6749. {
  6750. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6751. "preferred": true
  6752. }
  6753. ]
  6754. },
  6755. "require": {
  6756. "php": ">=7.1"
  6757. },
  6758. "type": "metapackage",
  6759. "extra": {
  6760. "branch-alias": {
  6761. "dev-main": "1.20-dev"
  6762. },
  6763. "thanks": {
  6764. "name": "symfony/polyfill",
  6765. "url": "https://github.com/symfony/polyfill"
  6766. }
  6767. },
  6768. "notification-url": "https://packagist.org/downloads/",
  6769. "license": [
  6770. "MIT"
  6771. ],
  6772. "authors": [
  6773. {
  6774. "name": "Nicolas Grekas",
  6775. "email": "p@tchwork.com"
  6776. },
  6777. {
  6778. "name": "Symfony Community",
  6779. "homepage": "https://symfony.com/contributors"
  6780. }
  6781. ],
  6782. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  6783. "homepage": "https://symfony.com",
  6784. "keywords": [
  6785. "compatibility",
  6786. "polyfill",
  6787. "portable",
  6788. "shim"
  6789. ],
  6790. "support": {
  6791. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  6792. },
  6793. "funding": [
  6794. {
  6795. "url": "https://symfony.com/sponsor",
  6796. "type": "custom"
  6797. },
  6798. {
  6799. "url": "https://github.com/fabpot",
  6800. "type": "github"
  6801. },
  6802. {
  6803. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6804. "type": "tidelift"
  6805. }
  6806. ],
  6807. "time": "2020-10-23T14:02:19+00:00"
  6808. },
  6809. {
  6810. "name": "symfony/polyfill-php72",
  6811. "version": "v1.27.0",
  6812. "source": {
  6813. "type": "git",
  6814. "url": "https://github.com/symfony/polyfill-php72.git",
  6815. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  6816. },
  6817. "dist": {
  6818. "type": "zip",
  6819. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  6820. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  6821. "shasum": "",
  6822. "mirrors": [
  6823. {
  6824. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6825. "preferred": true
  6826. }
  6827. ]
  6828. },
  6829. "require": {
  6830. "php": ">=7.1"
  6831. },
  6832. "type": "library",
  6833. "extra": {
  6834. "branch-alias": {
  6835. "dev-main": "1.27-dev"
  6836. },
  6837. "thanks": {
  6838. "name": "symfony/polyfill",
  6839. "url": "https://github.com/symfony/polyfill"
  6840. }
  6841. },
  6842. "autoload": {
  6843. "files": [
  6844. "bootstrap.php"
  6845. ],
  6846. "psr-4": {
  6847. "Symfony\\Polyfill\\Php72\\": ""
  6848. }
  6849. },
  6850. "notification-url": "https://packagist.org/downloads/",
  6851. "license": [
  6852. "MIT"
  6853. ],
  6854. "authors": [
  6855. {
  6856. "name": "Nicolas Grekas",
  6857. "email": "p@tchwork.com"
  6858. },
  6859. {
  6860. "name": "Symfony Community",
  6861. "homepage": "https://symfony.com/contributors"
  6862. }
  6863. ],
  6864. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6865. "homepage": "https://symfony.com",
  6866. "keywords": [
  6867. "compatibility",
  6868. "polyfill",
  6869. "portable",
  6870. "shim"
  6871. ],
  6872. "support": {
  6873. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  6874. },
  6875. "funding": [
  6876. {
  6877. "url": "https://symfony.com/sponsor",
  6878. "type": "custom"
  6879. },
  6880. {
  6881. "url": "https://github.com/fabpot",
  6882. "type": "github"
  6883. },
  6884. {
  6885. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6886. "type": "tidelift"
  6887. }
  6888. ],
  6889. "time": "2022-11-03T14:55:06+00:00"
  6890. },
  6891. {
  6892. "name": "symfony/polyfill-php73",
  6893. "version": "v1.27.0",
  6894. "source": {
  6895. "type": "git",
  6896. "url": "https://github.com/symfony/polyfill-php73.git",
  6897. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
  6898. },
  6899. "dist": {
  6900. "type": "zip",
  6901. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  6902. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  6903. "shasum": "",
  6904. "mirrors": [
  6905. {
  6906. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6907. "preferred": true
  6908. }
  6909. ]
  6910. },
  6911. "require": {
  6912. "php": ">=7.1"
  6913. },
  6914. "type": "library",
  6915. "extra": {
  6916. "branch-alias": {
  6917. "dev-main": "1.27-dev"
  6918. },
  6919. "thanks": {
  6920. "name": "symfony/polyfill",
  6921. "url": "https://github.com/symfony/polyfill"
  6922. }
  6923. },
  6924. "autoload": {
  6925. "files": [
  6926. "bootstrap.php"
  6927. ],
  6928. "psr-4": {
  6929. "Symfony\\Polyfill\\Php73\\": ""
  6930. },
  6931. "classmap": [
  6932. "Resources/stubs"
  6933. ]
  6934. },
  6935. "notification-url": "https://packagist.org/downloads/",
  6936. "license": [
  6937. "MIT"
  6938. ],
  6939. "authors": [
  6940. {
  6941. "name": "Nicolas Grekas",
  6942. "email": "p@tchwork.com"
  6943. },
  6944. {
  6945. "name": "Symfony Community",
  6946. "homepage": "https://symfony.com/contributors"
  6947. }
  6948. ],
  6949. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6950. "homepage": "https://symfony.com",
  6951. "keywords": [
  6952. "compatibility",
  6953. "polyfill",
  6954. "portable",
  6955. "shim"
  6956. ],
  6957. "support": {
  6958. "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
  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-11-03T14:55:06+00:00"
  6975. },
  6976. {
  6977. "name": "symfony/polyfill-php80",
  6978. "version": "v1.27.0",
  6979. "source": {
  6980. "type": "git",
  6981. "url": "https://github.com/symfony/polyfill-php80.git",
  6982. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  6983. },
  6984. "dist": {
  6985. "type": "zip",
  6986. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  6987. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  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": ">=7.1"
  6998. },
  6999. "type": "library",
  7000. "extra": {
  7001. "branch-alias": {
  7002. "dev-main": "1.27-dev"
  7003. },
  7004. "thanks": {
  7005. "name": "symfony/polyfill",
  7006. "url": "https://github.com/symfony/polyfill"
  7007. }
  7008. },
  7009. "autoload": {
  7010. "files": [
  7011. "bootstrap.php"
  7012. ],
  7013. "psr-4": {
  7014. "Symfony\\Polyfill\\Php80\\": ""
  7015. },
  7016. "classmap": [
  7017. "Resources/stubs"
  7018. ]
  7019. },
  7020. "notification-url": "https://packagist.org/downloads/",
  7021. "license": [
  7022. "MIT"
  7023. ],
  7024. "authors": [
  7025. {
  7026. "name": "Ion Bazan",
  7027. "email": "ion.bazan@gmail.com"
  7028. },
  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": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7039. "homepage": "https://symfony.com",
  7040. "keywords": [
  7041. "compatibility",
  7042. "polyfill",
  7043. "portable",
  7044. "shim"
  7045. ],
  7046. "support": {
  7047. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  7048. },
  7049. "funding": [
  7050. {
  7051. "url": "https://symfony.com/sponsor",
  7052. "type": "custom"
  7053. },
  7054. {
  7055. "url": "https://github.com/fabpot",
  7056. "type": "github"
  7057. },
  7058. {
  7059. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7060. "type": "tidelift"
  7061. }
  7062. ],
  7063. "time": "2022-11-03T14:55:06+00:00"
  7064. },
  7065. {
  7066. "name": "symfony/polyfill-php81",
  7067. "version": "v1.27.0",
  7068. "source": {
  7069. "type": "git",
  7070. "url": "https://github.com/symfony/polyfill-php81.git",
  7071. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
  7072. },
  7073. "dist": {
  7074. "type": "zip",
  7075. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
  7076. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
  7077. "shasum": "",
  7078. "mirrors": [
  7079. {
  7080. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7081. "preferred": true
  7082. }
  7083. ]
  7084. },
  7085. "require": {
  7086. "php": ">=7.1"
  7087. },
  7088. "type": "library",
  7089. "extra": {
  7090. "branch-alias": {
  7091. "dev-main": "1.27-dev"
  7092. },
  7093. "thanks": {
  7094. "name": "symfony/polyfill",
  7095. "url": "https://github.com/symfony/polyfill"
  7096. }
  7097. },
  7098. "autoload": {
  7099. "files": [
  7100. "bootstrap.php"
  7101. ],
  7102. "psr-4": {
  7103. "Symfony\\Polyfill\\Php81\\": ""
  7104. },
  7105. "classmap": [
  7106. "Resources/stubs"
  7107. ]
  7108. },
  7109. "notification-url": "https://packagist.org/downloads/",
  7110. "license": [
  7111. "MIT"
  7112. ],
  7113. "authors": [
  7114. {
  7115. "name": "Nicolas Grekas",
  7116. "email": "p@tchwork.com"
  7117. },
  7118. {
  7119. "name": "Symfony Community",
  7120. "homepage": "https://symfony.com/contributors"
  7121. }
  7122. ],
  7123. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7124. "homepage": "https://symfony.com",
  7125. "keywords": [
  7126. "compatibility",
  7127. "polyfill",
  7128. "portable",
  7129. "shim"
  7130. ],
  7131. "support": {
  7132. "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
  7133. },
  7134. "funding": [
  7135. {
  7136. "url": "https://symfony.com/sponsor",
  7137. "type": "custom"
  7138. },
  7139. {
  7140. "url": "https://github.com/fabpot",
  7141. "type": "github"
  7142. },
  7143. {
  7144. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7145. "type": "tidelift"
  7146. }
  7147. ],
  7148. "time": "2022-11-03T14:55:06+00:00"
  7149. },
  7150. {
  7151. "name": "symfony/process",
  7152. "version": "v5.4.24",
  7153. "source": {
  7154. "type": "git",
  7155. "url": "https://github.com/symfony/process.git",
  7156. "reference": "e3c46cc5689c8782944274bb30702106ecbe3b64"
  7157. },
  7158. "dist": {
  7159. "type": "zip",
  7160. "url": "https://api.github.com/repos/symfony/process/zipball/e3c46cc5689c8782944274bb30702106ecbe3b64",
  7161. "reference": "e3c46cc5689c8782944274bb30702106ecbe3b64",
  7162. "shasum": "",
  7163. "mirrors": [
  7164. {
  7165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7166. "preferred": true
  7167. }
  7168. ]
  7169. },
  7170. "require": {
  7171. "php": ">=7.2.5",
  7172. "symfony/polyfill-php80": "^1.16"
  7173. },
  7174. "type": "library",
  7175. "autoload": {
  7176. "psr-4": {
  7177. "Symfony\\Component\\Process\\": ""
  7178. },
  7179. "exclude-from-classmap": [
  7180. "/Tests/"
  7181. ]
  7182. },
  7183. "notification-url": "https://packagist.org/downloads/",
  7184. "license": [
  7185. "MIT"
  7186. ],
  7187. "authors": [
  7188. {
  7189. "name": "Fabien Potencier",
  7190. "email": "fabien@symfony.com"
  7191. },
  7192. {
  7193. "name": "Symfony Community",
  7194. "homepage": "https://symfony.com/contributors"
  7195. }
  7196. ],
  7197. "description": "Executes commands in sub-processes",
  7198. "homepage": "https://symfony.com",
  7199. "support": {
  7200. "source": "https://github.com/symfony/process/tree/v5.4.24"
  7201. },
  7202. "funding": [
  7203. {
  7204. "url": "https://symfony.com/sponsor",
  7205. "type": "custom"
  7206. },
  7207. {
  7208. "url": "https://github.com/fabpot",
  7209. "type": "github"
  7210. },
  7211. {
  7212. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7213. "type": "tidelift"
  7214. }
  7215. ],
  7216. "time": "2023-05-17T11:26:05+00:00"
  7217. },
  7218. {
  7219. "name": "symfony/routing",
  7220. "version": "v5.4.25",
  7221. "source": {
  7222. "type": "git",
  7223. "url": "https://github.com/symfony/routing.git",
  7224. "reference": "56bfc1394f7011303eb2e22724f9b422d3f14649"
  7225. },
  7226. "dist": {
  7227. "type": "zip",
  7228. "url": "https://api.github.com/repos/symfony/routing/zipball/56bfc1394f7011303eb2e22724f9b422d3f14649",
  7229. "reference": "56bfc1394f7011303eb2e22724f9b422d3f14649",
  7230. "shasum": "",
  7231. "mirrors": [
  7232. {
  7233. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7234. "preferred": true
  7235. }
  7236. ]
  7237. },
  7238. "require": {
  7239. "php": ">=7.2.5",
  7240. "symfony/deprecation-contracts": "^2.1|^3",
  7241. "symfony/polyfill-php80": "^1.16"
  7242. },
  7243. "conflict": {
  7244. "doctrine/annotations": "<1.12",
  7245. "symfony/config": "<5.3",
  7246. "symfony/dependency-injection": "<4.4",
  7247. "symfony/yaml": "<4.4"
  7248. },
  7249. "require-dev": {
  7250. "doctrine/annotations": "^1.12|^2",
  7251. "psr/log": "^1|^2|^3",
  7252. "symfony/config": "^5.3|^6.0",
  7253. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7254. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7255. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7256. "symfony/yaml": "^4.4|^5.0|^6.0"
  7257. },
  7258. "suggest": {
  7259. "symfony/config": "For using the all-in-one router or any loader",
  7260. "symfony/expression-language": "For using expression matching",
  7261. "symfony/http-foundation": "For using a Symfony Request object",
  7262. "symfony/yaml": "For using the YAML loader"
  7263. },
  7264. "type": "library",
  7265. "autoload": {
  7266. "psr-4": {
  7267. "Symfony\\Component\\Routing\\": ""
  7268. },
  7269. "exclude-from-classmap": [
  7270. "/Tests/"
  7271. ]
  7272. },
  7273. "notification-url": "https://packagist.org/downloads/",
  7274. "license": [
  7275. "MIT"
  7276. ],
  7277. "authors": [
  7278. {
  7279. "name": "Fabien Potencier",
  7280. "email": "fabien@symfony.com"
  7281. },
  7282. {
  7283. "name": "Symfony Community",
  7284. "homepage": "https://symfony.com/contributors"
  7285. }
  7286. ],
  7287. "description": "Maps an HTTP request to a set of configuration variables",
  7288. "homepage": "https://symfony.com",
  7289. "keywords": [
  7290. "router",
  7291. "routing",
  7292. "uri",
  7293. "url"
  7294. ],
  7295. "support": {
  7296. "source": "https://github.com/symfony/routing/tree/v5.4.25"
  7297. },
  7298. "funding": [
  7299. {
  7300. "url": "https://symfony.com/sponsor",
  7301. "type": "custom"
  7302. },
  7303. {
  7304. "url": "https://github.com/fabpot",
  7305. "type": "github"
  7306. },
  7307. {
  7308. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7309. "type": "tidelift"
  7310. }
  7311. ],
  7312. "time": "2023-06-05T14:18:47+00:00"
  7313. },
  7314. {
  7315. "name": "symfony/service-contracts",
  7316. "version": "v2.5.2",
  7317. "source": {
  7318. "type": "git",
  7319. "url": "https://github.com/symfony/service-contracts.git",
  7320. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  7321. },
  7322. "dist": {
  7323. "type": "zip",
  7324. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7325. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7326. "shasum": "",
  7327. "mirrors": [
  7328. {
  7329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7330. "preferred": true
  7331. }
  7332. ]
  7333. },
  7334. "require": {
  7335. "php": ">=7.2.5",
  7336. "psr/container": "^1.1",
  7337. "symfony/deprecation-contracts": "^2.1|^3"
  7338. },
  7339. "conflict": {
  7340. "ext-psr": "<1.1|>=2"
  7341. },
  7342. "suggest": {
  7343. "symfony/service-implementation": ""
  7344. },
  7345. "type": "library",
  7346. "extra": {
  7347. "branch-alias": {
  7348. "dev-main": "2.5-dev"
  7349. },
  7350. "thanks": {
  7351. "name": "symfony/contracts",
  7352. "url": "https://github.com/symfony/contracts"
  7353. }
  7354. },
  7355. "autoload": {
  7356. "psr-4": {
  7357. "Symfony\\Contracts\\Service\\": ""
  7358. }
  7359. },
  7360. "notification-url": "https://packagist.org/downloads/",
  7361. "license": [
  7362. "MIT"
  7363. ],
  7364. "authors": [
  7365. {
  7366. "name": "Nicolas Grekas",
  7367. "email": "p@tchwork.com"
  7368. },
  7369. {
  7370. "name": "Symfony Community",
  7371. "homepage": "https://symfony.com/contributors"
  7372. }
  7373. ],
  7374. "description": "Generic abstractions related to writing services",
  7375. "homepage": "https://symfony.com",
  7376. "keywords": [
  7377. "abstractions",
  7378. "contracts",
  7379. "decoupling",
  7380. "interfaces",
  7381. "interoperability",
  7382. "standards"
  7383. ],
  7384. "support": {
  7385. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  7386. },
  7387. "funding": [
  7388. {
  7389. "url": "https://symfony.com/sponsor",
  7390. "type": "custom"
  7391. },
  7392. {
  7393. "url": "https://github.com/fabpot",
  7394. "type": "github"
  7395. },
  7396. {
  7397. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7398. "type": "tidelift"
  7399. }
  7400. ],
  7401. "time": "2022-05-30T19:17:29+00:00"
  7402. },
  7403. {
  7404. "name": "symfony/string",
  7405. "version": "v5.4.22",
  7406. "source": {
  7407. "type": "git",
  7408. "url": "https://github.com/symfony/string.git",
  7409. "reference": "8036a4c76c0dd29e60b6a7cafcacc50cf088ea62"
  7410. },
  7411. "dist": {
  7412. "type": "zip",
  7413. "url": "https://api.github.com/repos/symfony/string/zipball/8036a4c76c0dd29e60b6a7cafcacc50cf088ea62",
  7414. "reference": "8036a4c76c0dd29e60b6a7cafcacc50cf088ea62",
  7415. "shasum": "",
  7416. "mirrors": [
  7417. {
  7418. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7419. "preferred": true
  7420. }
  7421. ]
  7422. },
  7423. "require": {
  7424. "php": ">=7.2.5",
  7425. "symfony/polyfill-ctype": "~1.8",
  7426. "symfony/polyfill-intl-grapheme": "~1.0",
  7427. "symfony/polyfill-intl-normalizer": "~1.0",
  7428. "symfony/polyfill-mbstring": "~1.0",
  7429. "symfony/polyfill-php80": "~1.15"
  7430. },
  7431. "conflict": {
  7432. "symfony/translation-contracts": ">=3.0"
  7433. },
  7434. "require-dev": {
  7435. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7436. "symfony/http-client": "^4.4|^5.0|^6.0",
  7437. "symfony/translation-contracts": "^1.1|^2",
  7438. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  7439. },
  7440. "type": "library",
  7441. "autoload": {
  7442. "files": [
  7443. "Resources/functions.php"
  7444. ],
  7445. "psr-4": {
  7446. "Symfony\\Component\\String\\": ""
  7447. },
  7448. "exclude-from-classmap": [
  7449. "/Tests/"
  7450. ]
  7451. },
  7452. "notification-url": "https://packagist.org/downloads/",
  7453. "license": [
  7454. "MIT"
  7455. ],
  7456. "authors": [
  7457. {
  7458. "name": "Nicolas Grekas",
  7459. "email": "p@tchwork.com"
  7460. },
  7461. {
  7462. "name": "Symfony Community",
  7463. "homepage": "https://symfony.com/contributors"
  7464. }
  7465. ],
  7466. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7467. "homepage": "https://symfony.com",
  7468. "keywords": [
  7469. "grapheme",
  7470. "i18n",
  7471. "string",
  7472. "unicode",
  7473. "utf-8",
  7474. "utf8"
  7475. ],
  7476. "support": {
  7477. "source": "https://github.com/symfony/string/tree/v5.4.22"
  7478. },
  7479. "funding": [
  7480. {
  7481. "url": "https://symfony.com/sponsor",
  7482. "type": "custom"
  7483. },
  7484. {
  7485. "url": "https://github.com/fabpot",
  7486. "type": "github"
  7487. },
  7488. {
  7489. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7490. "type": "tidelift"
  7491. }
  7492. ],
  7493. "time": "2023-03-14T06:11:53+00:00"
  7494. },
  7495. {
  7496. "name": "symfony/translation",
  7497. "version": "v5.4.24",
  7498. "source": {
  7499. "type": "git",
  7500. "url": "https://github.com/symfony/translation.git",
  7501. "reference": "de237e59c5833422342be67402d487fbf50334ff"
  7502. },
  7503. "dist": {
  7504. "type": "zip",
  7505. "url": "https://api.github.com/repos/symfony/translation/zipball/de237e59c5833422342be67402d487fbf50334ff",
  7506. "reference": "de237e59c5833422342be67402d487fbf50334ff",
  7507. "shasum": "",
  7508. "mirrors": [
  7509. {
  7510. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7511. "preferred": true
  7512. }
  7513. ]
  7514. },
  7515. "require": {
  7516. "php": ">=7.2.5",
  7517. "symfony/deprecation-contracts": "^2.1|^3",
  7518. "symfony/polyfill-mbstring": "~1.0",
  7519. "symfony/polyfill-php80": "^1.16",
  7520. "symfony/translation-contracts": "^2.3"
  7521. },
  7522. "conflict": {
  7523. "symfony/config": "<4.4",
  7524. "symfony/console": "<5.3",
  7525. "symfony/dependency-injection": "<5.0",
  7526. "symfony/http-kernel": "<5.0",
  7527. "symfony/twig-bundle": "<5.0",
  7528. "symfony/yaml": "<4.4"
  7529. },
  7530. "provide": {
  7531. "symfony/translation-implementation": "2.3"
  7532. },
  7533. "require-dev": {
  7534. "psr/log": "^1|^2|^3",
  7535. "symfony/config": "^4.4|^5.0|^6.0",
  7536. "symfony/console": "^5.4|^6.0",
  7537. "symfony/dependency-injection": "^5.0|^6.0",
  7538. "symfony/finder": "^4.4|^5.0|^6.0",
  7539. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7540. "symfony/http-kernel": "^5.0|^6.0",
  7541. "symfony/intl": "^4.4|^5.0|^6.0",
  7542. "symfony/polyfill-intl-icu": "^1.21",
  7543. "symfony/service-contracts": "^1.1.2|^2|^3",
  7544. "symfony/yaml": "^4.4|^5.0|^6.0"
  7545. },
  7546. "suggest": {
  7547. "psr/log-implementation": "To use logging capability in translator",
  7548. "symfony/config": "",
  7549. "symfony/yaml": ""
  7550. },
  7551. "type": "library",
  7552. "autoload": {
  7553. "files": [
  7554. "Resources/functions.php"
  7555. ],
  7556. "psr-4": {
  7557. "Symfony\\Component\\Translation\\": ""
  7558. },
  7559. "exclude-from-classmap": [
  7560. "/Tests/"
  7561. ]
  7562. },
  7563. "notification-url": "https://packagist.org/downloads/",
  7564. "license": [
  7565. "MIT"
  7566. ],
  7567. "authors": [
  7568. {
  7569. "name": "Fabien Potencier",
  7570. "email": "fabien@symfony.com"
  7571. },
  7572. {
  7573. "name": "Symfony Community",
  7574. "homepage": "https://symfony.com/contributors"
  7575. }
  7576. ],
  7577. "description": "Provides tools to internationalize your application",
  7578. "homepage": "https://symfony.com",
  7579. "support": {
  7580. "source": "https://github.com/symfony/translation/tree/v5.4.24"
  7581. },
  7582. "funding": [
  7583. {
  7584. "url": "https://symfony.com/sponsor",
  7585. "type": "custom"
  7586. },
  7587. {
  7588. "url": "https://github.com/fabpot",
  7589. "type": "github"
  7590. },
  7591. {
  7592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7593. "type": "tidelift"
  7594. }
  7595. ],
  7596. "time": "2023-05-19T12:34:17+00:00"
  7597. },
  7598. {
  7599. "name": "symfony/translation-contracts",
  7600. "version": "v2.5.2",
  7601. "source": {
  7602. "type": "git",
  7603. "url": "https://github.com/symfony/translation-contracts.git",
  7604. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  7605. },
  7606. "dist": {
  7607. "type": "zip",
  7608. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7609. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7610. "shasum": "",
  7611. "mirrors": [
  7612. {
  7613. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7614. "preferred": true
  7615. }
  7616. ]
  7617. },
  7618. "require": {
  7619. "php": ">=7.2.5"
  7620. },
  7621. "suggest": {
  7622. "symfony/translation-implementation": ""
  7623. },
  7624. "type": "library",
  7625. "extra": {
  7626. "branch-alias": {
  7627. "dev-main": "2.5-dev"
  7628. },
  7629. "thanks": {
  7630. "name": "symfony/contracts",
  7631. "url": "https://github.com/symfony/contracts"
  7632. }
  7633. },
  7634. "autoload": {
  7635. "psr-4": {
  7636. "Symfony\\Contracts\\Translation\\": ""
  7637. }
  7638. },
  7639. "notification-url": "https://packagist.org/downloads/",
  7640. "license": [
  7641. "MIT"
  7642. ],
  7643. "authors": [
  7644. {
  7645. "name": "Nicolas Grekas",
  7646. "email": "p@tchwork.com"
  7647. },
  7648. {
  7649. "name": "Symfony Community",
  7650. "homepage": "https://symfony.com/contributors"
  7651. }
  7652. ],
  7653. "description": "Generic abstractions related to translation",
  7654. "homepage": "https://symfony.com",
  7655. "keywords": [
  7656. "abstractions",
  7657. "contracts",
  7658. "decoupling",
  7659. "interfaces",
  7660. "interoperability",
  7661. "standards"
  7662. ],
  7663. "support": {
  7664. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  7665. },
  7666. "funding": [
  7667. {
  7668. "url": "https://symfony.com/sponsor",
  7669. "type": "custom"
  7670. },
  7671. {
  7672. "url": "https://github.com/fabpot",
  7673. "type": "github"
  7674. },
  7675. {
  7676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7677. "type": "tidelift"
  7678. }
  7679. ],
  7680. "time": "2022-06-27T16:58:25+00:00"
  7681. },
  7682. {
  7683. "name": "symfony/var-dumper",
  7684. "version": "v5.4.25",
  7685. "source": {
  7686. "type": "git",
  7687. "url": "https://github.com/symfony/var-dumper.git",
  7688. "reference": "82269f73c0f0f9859ab9b6900eebacbe54954ede"
  7689. },
  7690. "dist": {
  7691. "type": "zip",
  7692. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/82269f73c0f0f9859ab9b6900eebacbe54954ede",
  7693. "reference": "82269f73c0f0f9859ab9b6900eebacbe54954ede",
  7694. "shasum": "",
  7695. "mirrors": [
  7696. {
  7697. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7698. "preferred": true
  7699. }
  7700. ]
  7701. },
  7702. "require": {
  7703. "php": ">=7.2.5",
  7704. "symfony/polyfill-mbstring": "~1.0",
  7705. "symfony/polyfill-php80": "^1.16"
  7706. },
  7707. "conflict": {
  7708. "symfony/console": "<4.4"
  7709. },
  7710. "require-dev": {
  7711. "ext-iconv": "*",
  7712. "symfony/console": "^4.4|^5.0|^6.0",
  7713. "symfony/process": "^4.4|^5.0|^6.0",
  7714. "symfony/uid": "^5.1|^6.0",
  7715. "twig/twig": "^2.13|^3.0.4"
  7716. },
  7717. "suggest": {
  7718. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7719. "ext-intl": "To show region name in time zone dump",
  7720. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7721. },
  7722. "bin": [
  7723. "Resources/bin/var-dump-server"
  7724. ],
  7725. "type": "library",
  7726. "autoload": {
  7727. "files": [
  7728. "Resources/functions/dump.php"
  7729. ],
  7730. "psr-4": {
  7731. "Symfony\\Component\\VarDumper\\": ""
  7732. },
  7733. "exclude-from-classmap": [
  7734. "/Tests/"
  7735. ]
  7736. },
  7737. "notification-url": "https://packagist.org/downloads/",
  7738. "license": [
  7739. "MIT"
  7740. ],
  7741. "authors": [
  7742. {
  7743. "name": "Nicolas Grekas",
  7744. "email": "p@tchwork.com"
  7745. },
  7746. {
  7747. "name": "Symfony Community",
  7748. "homepage": "https://symfony.com/contributors"
  7749. }
  7750. ],
  7751. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7752. "homepage": "https://symfony.com",
  7753. "keywords": [
  7754. "debug",
  7755. "dump"
  7756. ],
  7757. "support": {
  7758. "source": "https://github.com/symfony/var-dumper/tree/v5.4.25"
  7759. },
  7760. "funding": [
  7761. {
  7762. "url": "https://symfony.com/sponsor",
  7763. "type": "custom"
  7764. },
  7765. {
  7766. "url": "https://github.com/fabpot",
  7767. "type": "github"
  7768. },
  7769. {
  7770. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7771. "type": "tidelift"
  7772. }
  7773. ],
  7774. "time": "2023-06-20T20:56:26+00:00"
  7775. },
  7776. {
  7777. "name": "symfony/yaml",
  7778. "version": "v5.4.23",
  7779. "source": {
  7780. "type": "git",
  7781. "url": "https://github.com/symfony/yaml.git",
  7782. "reference": "4cd2e3ea301aadd76a4172756296fe552fb45b0b"
  7783. },
  7784. "dist": {
  7785. "type": "zip",
  7786. "url": "https://api.github.com/repos/symfony/yaml/zipball/4cd2e3ea301aadd76a4172756296fe552fb45b0b",
  7787. "reference": "4cd2e3ea301aadd76a4172756296fe552fb45b0b",
  7788. "shasum": "",
  7789. "mirrors": [
  7790. {
  7791. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7792. "preferred": true
  7793. }
  7794. ]
  7795. },
  7796. "require": {
  7797. "php": ">=7.2.5",
  7798. "symfony/deprecation-contracts": "^2.1|^3",
  7799. "symfony/polyfill-ctype": "^1.8"
  7800. },
  7801. "conflict": {
  7802. "symfony/console": "<5.3"
  7803. },
  7804. "require-dev": {
  7805. "symfony/console": "^5.3|^6.0"
  7806. },
  7807. "suggest": {
  7808. "symfony/console": "For validating YAML files using the lint command"
  7809. },
  7810. "bin": [
  7811. "Resources/bin/yaml-lint"
  7812. ],
  7813. "type": "library",
  7814. "autoload": {
  7815. "psr-4": {
  7816. "Symfony\\Component\\Yaml\\": ""
  7817. },
  7818. "exclude-from-classmap": [
  7819. "/Tests/"
  7820. ]
  7821. },
  7822. "notification-url": "https://packagist.org/downloads/",
  7823. "license": [
  7824. "MIT"
  7825. ],
  7826. "authors": [
  7827. {
  7828. "name": "Fabien Potencier",
  7829. "email": "fabien@symfony.com"
  7830. },
  7831. {
  7832. "name": "Symfony Community",
  7833. "homepage": "https://symfony.com/contributors"
  7834. }
  7835. ],
  7836. "description": "Loads and dumps YAML files",
  7837. "homepage": "https://symfony.com",
  7838. "support": {
  7839. "source": "https://github.com/symfony/yaml/tree/v5.4.23"
  7840. },
  7841. "funding": [
  7842. {
  7843. "url": "https://symfony.com/sponsor",
  7844. "type": "custom"
  7845. },
  7846. {
  7847. "url": "https://github.com/fabpot",
  7848. "type": "github"
  7849. },
  7850. {
  7851. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7852. "type": "tidelift"
  7853. }
  7854. ],
  7855. "time": "2023-04-23T19:33:36+00:00"
  7856. },
  7857. {
  7858. "name": "tijsverkoyen/css-to-inline-styles",
  7859. "version": "2.2.6",
  7860. "source": {
  7861. "type": "git",
  7862. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7863. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  7864. },
  7865. "dist": {
  7866. "type": "zip",
  7867. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7868. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7869. "shasum": "",
  7870. "mirrors": [
  7871. {
  7872. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7873. "preferred": true
  7874. }
  7875. ]
  7876. },
  7877. "require": {
  7878. "ext-dom": "*",
  7879. "ext-libxml": "*",
  7880. "php": "^5.5 || ^7.0 || ^8.0",
  7881. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7882. },
  7883. "require-dev": {
  7884. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7885. },
  7886. "type": "library",
  7887. "extra": {
  7888. "branch-alias": {
  7889. "dev-master": "2.2.x-dev"
  7890. }
  7891. },
  7892. "autoload": {
  7893. "psr-4": {
  7894. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7895. }
  7896. },
  7897. "notification-url": "https://packagist.org/downloads/",
  7898. "license": [
  7899. "BSD-3-Clause"
  7900. ],
  7901. "authors": [
  7902. {
  7903. "name": "Tijs Verkoyen",
  7904. "email": "css_to_inline_styles@verkoyen.eu",
  7905. "role": "Developer"
  7906. }
  7907. ],
  7908. "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.",
  7909. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7910. "support": {
  7911. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7912. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  7913. },
  7914. "time": "2023-01-03T09:29:04+00:00"
  7915. },
  7916. {
  7917. "name": "tymon/jwt-auth",
  7918. "version": "1.0.2",
  7919. "source": {
  7920. "type": "git",
  7921. "url": "https://github.com/tymondesigns/jwt-auth.git",
  7922. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  7923. },
  7924. "dist": {
  7925. "type": "zip",
  7926. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  7927. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  7928. "shasum": "",
  7929. "mirrors": [
  7930. {
  7931. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7932. "preferred": true
  7933. }
  7934. ]
  7935. },
  7936. "require": {
  7937. "illuminate/auth": "^5.2|^6|^7|^8",
  7938. "illuminate/contracts": "^5.2|^6|^7|^8",
  7939. "illuminate/http": "^5.2|^6|^7|^8",
  7940. "illuminate/support": "^5.2|^6|^7|^8",
  7941. "lcobucci/jwt": "<3.4",
  7942. "namshi/jose": "^7.0",
  7943. "nesbot/carbon": "^1.0|^2.0",
  7944. "php": "^5.5.9|^7.0"
  7945. },
  7946. "require-dev": {
  7947. "illuminate/console": "^5.2|^6|^7|^8",
  7948. "illuminate/database": "^5.2|^6|^7|^8",
  7949. "illuminate/routing": "^5.2|^6|^7|^8",
  7950. "mockery/mockery": ">=0.9.9",
  7951. "phpunit/phpunit": "~4.8|~6.0"
  7952. },
  7953. "type": "library",
  7954. "extra": {
  7955. "branch-alias": {
  7956. "dev-develop": "1.0-dev"
  7957. },
  7958. "laravel": {
  7959. "aliases": {
  7960. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  7961. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  7962. },
  7963. "providers": [
  7964. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  7965. ]
  7966. }
  7967. },
  7968. "autoload": {
  7969. "psr-4": {
  7970. "Tymon\\JWTAuth\\": "src/"
  7971. }
  7972. },
  7973. "notification-url": "https://packagist.org/downloads/",
  7974. "license": [
  7975. "MIT"
  7976. ],
  7977. "authors": [
  7978. {
  7979. "name": "Sean Tymon",
  7980. "email": "tymon148@gmail.com",
  7981. "homepage": "https://tymon.xyz",
  7982. "role": "Developer"
  7983. }
  7984. ],
  7985. "description": "JSON Web Token Authentication for Laravel and Lumen",
  7986. "homepage": "https://github.com/tymondesigns/jwt-auth",
  7987. "keywords": [
  7988. "Authentication",
  7989. "JSON Web Token",
  7990. "auth",
  7991. "jwt",
  7992. "laravel"
  7993. ],
  7994. "support": {
  7995. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  7996. "source": "https://github.com/tymondesigns/jwt-auth"
  7997. },
  7998. "funding": [
  7999. {
  8000. "url": "https://www.patreon.com/seantymon",
  8001. "type": "patreon"
  8002. }
  8003. ],
  8004. "time": "2020-11-27T12:32:42+00:00"
  8005. },
  8006. {
  8007. "name": "vlucas/phpdotenv",
  8008. "version": "v4.2.2",
  8009. "source": {
  8010. "type": "git",
  8011. "url": "https://github.com/vlucas/phpdotenv.git",
  8012. "reference": "77e974614d2ead521f18069dccc571696f52b8dc"
  8013. },
  8014. "dist": {
  8015. "type": "zip",
  8016. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/77e974614d2ead521f18069dccc571696f52b8dc",
  8017. "reference": "77e974614d2ead521f18069dccc571696f52b8dc",
  8018. "shasum": "",
  8019. "mirrors": [
  8020. {
  8021. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8022. "preferred": true
  8023. }
  8024. ]
  8025. },
  8026. "require": {
  8027. "php": "^5.5.9 || ^7.0 || ^8.0",
  8028. "phpoption/phpoption": "^1.7.3",
  8029. "symfony/polyfill-ctype": "^1.17"
  8030. },
  8031. "require-dev": {
  8032. "bamarni/composer-bin-plugin": "^1.4.1",
  8033. "ext-filter": "*",
  8034. "ext-pcre": "*",
  8035. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  8036. },
  8037. "suggest": {
  8038. "ext-filter": "Required to use the boolean validator.",
  8039. "ext-pcre": "Required to use most of the library."
  8040. },
  8041. "type": "library",
  8042. "extra": {
  8043. "branch-alias": {
  8044. "dev-master": "4.2-dev"
  8045. }
  8046. },
  8047. "autoload": {
  8048. "psr-4": {
  8049. "Dotenv\\": "src/"
  8050. }
  8051. },
  8052. "notification-url": "https://packagist.org/downloads/",
  8053. "license": [
  8054. "BSD-3-Clause"
  8055. ],
  8056. "authors": [
  8057. {
  8058. "name": "Graham Campbell",
  8059. "email": "hello@gjcampbell.co.uk",
  8060. "homepage": "https://github.com/GrahamCampbell"
  8061. },
  8062. {
  8063. "name": "Vance Lucas",
  8064. "email": "vance@vancelucas.com",
  8065. "homepage": "https://github.com/vlucas"
  8066. }
  8067. ],
  8068. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8069. "keywords": [
  8070. "dotenv",
  8071. "env",
  8072. "environment"
  8073. ],
  8074. "support": {
  8075. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8076. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.2"
  8077. },
  8078. "funding": [
  8079. {
  8080. "url": "https://github.com/GrahamCampbell",
  8081. "type": "github"
  8082. },
  8083. {
  8084. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8085. "type": "tidelift"
  8086. }
  8087. ],
  8088. "time": "2021-12-12T23:07:53+00:00"
  8089. },
  8090. {
  8091. "name": "voku/portable-ascii",
  8092. "version": "1.6.1",
  8093. "source": {
  8094. "type": "git",
  8095. "url": "https://github.com/voku/portable-ascii.git",
  8096. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  8097. },
  8098. "dist": {
  8099. "type": "zip",
  8100. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  8101. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  8102. "shasum": "",
  8103. "mirrors": [
  8104. {
  8105. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8106. "preferred": true
  8107. }
  8108. ]
  8109. },
  8110. "require": {
  8111. "php": ">=7.0.0"
  8112. },
  8113. "require-dev": {
  8114. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8115. },
  8116. "suggest": {
  8117. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8118. },
  8119. "type": "library",
  8120. "autoload": {
  8121. "psr-4": {
  8122. "voku\\": "src/voku/"
  8123. }
  8124. },
  8125. "notification-url": "https://packagist.org/downloads/",
  8126. "license": [
  8127. "MIT"
  8128. ],
  8129. "authors": [
  8130. {
  8131. "name": "Lars Moelleken",
  8132. "homepage": "http://www.moelleken.org/"
  8133. }
  8134. ],
  8135. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8136. "homepage": "https://github.com/voku/portable-ascii",
  8137. "keywords": [
  8138. "ascii",
  8139. "clean",
  8140. "php"
  8141. ],
  8142. "support": {
  8143. "issues": "https://github.com/voku/portable-ascii/issues",
  8144. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  8145. },
  8146. "funding": [
  8147. {
  8148. "url": "https://www.paypal.me/moelleken",
  8149. "type": "custom"
  8150. },
  8151. {
  8152. "url": "https://github.com/voku",
  8153. "type": "github"
  8154. },
  8155. {
  8156. "url": "https://opencollective.com/portable-ascii",
  8157. "type": "open_collective"
  8158. },
  8159. {
  8160. "url": "https://www.patreon.com/voku",
  8161. "type": "patreon"
  8162. },
  8163. {
  8164. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8165. "type": "tidelift"
  8166. }
  8167. ],
  8168. "time": "2022-01-24T18:55:24+00:00"
  8169. },
  8170. {
  8171. "name": "xhat/payjs",
  8172. "version": "1.5.0",
  8173. "source": {
  8174. "type": "git",
  8175. "url": "https://github.com/xhat/payjs.git",
  8176. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  8177. },
  8178. "dist": {
  8179. "type": "zip",
  8180. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  8181. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  8182. "shasum": "",
  8183. "mirrors": [
  8184. {
  8185. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8186. "preferred": true
  8187. }
  8188. ]
  8189. },
  8190. "type": "library",
  8191. "autoload": {
  8192. "psr-4": {
  8193. "Xhat\\Payjs\\": "src/"
  8194. }
  8195. },
  8196. "notification-url": "https://packagist.org/downloads/",
  8197. "license": [
  8198. "MIT"
  8199. ],
  8200. "authors": [
  8201. {
  8202. "name": "andy",
  8203. "email": "andy@popfeng.com"
  8204. }
  8205. ],
  8206. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  8207. "support": {
  8208. "issues": "https://github.com/xhat/payjs/issues",
  8209. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  8210. },
  8211. "funding": [
  8212. {
  8213. "url": "https://payjs.cn/sponsor/dajjxz",
  8214. "type": "custom"
  8215. }
  8216. ],
  8217. "time": "2020-09-11T06:02:42+00:00"
  8218. },
  8219. {
  8220. "name": "zbrettonye/geetest",
  8221. "version": "v1.3.1",
  8222. "source": {
  8223. "type": "git",
  8224. "url": "https://github.com/ZBrettonYe/geetest.git",
  8225. "reference": "2d3594527725d4ef3db3e5438dc7c1156730d001"
  8226. },
  8227. "dist": {
  8228. "type": "zip",
  8229. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/2d3594527725d4ef3db3e5438dc7c1156730d001",
  8230. "reference": "2d3594527725d4ef3db3e5438dc7c1156730d001",
  8231. "shasum": "",
  8232. "mirrors": [
  8233. {
  8234. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8235. "preferred": true
  8236. }
  8237. ]
  8238. },
  8239. "require": {
  8240. "ext-json": "*",
  8241. "illuminate/routing": ">=6",
  8242. "illuminate/support": ">=6",
  8243. "php": ">=7.2"
  8244. },
  8245. "require-dev": {
  8246. "mockery/mockery": "^1.4",
  8247. "phpunit/phpunit": "^9.0"
  8248. },
  8249. "type": "library",
  8250. "extra": {
  8251. "laravel": {
  8252. "providers": [
  8253. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  8254. ],
  8255. "aliases": {
  8256. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  8257. }
  8258. }
  8259. },
  8260. "autoload": {
  8261. "psr-4": {
  8262. "ZBrettonYe\\Geetest\\": "src/"
  8263. }
  8264. },
  8265. "notification-url": "https://packagist.org/downloads/",
  8266. "license": [
  8267. "MIT"
  8268. ],
  8269. "authors": [
  8270. {
  8271. "name": "zbrettonye",
  8272. "email": "monkeyblacktech97@gmail.com"
  8273. }
  8274. ],
  8275. "description": "Geetest Package for Laravel6-10",
  8276. "keywords": [
  8277. "geetest",
  8278. "laravel"
  8279. ],
  8280. "support": {
  8281. "source": "https://github.com/ZBrettonYe/geetest/tree/v1.3.1"
  8282. },
  8283. "time": "2023-05-10T03:51:42+00:00"
  8284. },
  8285. {
  8286. "name": "zbrettonye/hcaptcha",
  8287. "version": "v1.2.1",
  8288. "source": {
  8289. "type": "git",
  8290. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  8291. "reference": "2c6dec441d18e9b0e0c02f479be8148aeac73c1e"
  8292. },
  8293. "dist": {
  8294. "type": "zip",
  8295. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/2c6dec441d18e9b0e0c02f479be8148aeac73c1e",
  8296. "reference": "2c6dec441d18e9b0e0c02f479be8148aeac73c1e",
  8297. "shasum": "",
  8298. "mirrors": [
  8299. {
  8300. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8301. "preferred": true
  8302. }
  8303. ]
  8304. },
  8305. "require": {
  8306. "ext-json": "*",
  8307. "guzzlehttp/guzzle": ">=6.2",
  8308. "illuminate/support": ">=6",
  8309. "php": ">=7.2"
  8310. },
  8311. "require-dev": {
  8312. "phpunit/phpunit": ">=6"
  8313. },
  8314. "type": "library",
  8315. "extra": {
  8316. "laravel": {
  8317. "providers": [
  8318. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  8319. ],
  8320. "aliases": {
  8321. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  8322. }
  8323. }
  8324. },
  8325. "autoload": {
  8326. "psr-4": {
  8327. "ZBrettonYe\\HCaptcha\\": "src/"
  8328. }
  8329. },
  8330. "notification-url": "https://packagist.org/downloads/",
  8331. "license": [
  8332. "MIT"
  8333. ],
  8334. "authors": [
  8335. {
  8336. "name": "zbrettonye",
  8337. "email": "monkeyblacktech97@gmail.com"
  8338. }
  8339. ],
  8340. "description": "hCaptcha For Laravel6~10",
  8341. "keywords": [
  8342. "captcha",
  8343. "hcaptcha",
  8344. "laravel"
  8345. ],
  8346. "support": {
  8347. "source": "https://github.com/ZBrettonYe/hcaptcha/tree/v1.2.1"
  8348. },
  8349. "time": "2023-05-10T04:01:07+00:00"
  8350. },
  8351. {
  8352. "name": "zbrettonye/no-captcha",
  8353. "version": "v1.2.1",
  8354. "source": {
  8355. "type": "git",
  8356. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  8357. "reference": "4af4ba628260009fbdc240250b6c43721b57f7d0"
  8358. },
  8359. "dist": {
  8360. "type": "zip",
  8361. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/4af4ba628260009fbdc240250b6c43721b57f7d0",
  8362. "reference": "4af4ba628260009fbdc240250b6c43721b57f7d0",
  8363. "shasum": "",
  8364. "mirrors": [
  8365. {
  8366. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8367. "preferred": true
  8368. }
  8369. ]
  8370. },
  8371. "require": {
  8372. "ext-json": "*",
  8373. "guzzlehttp/guzzle": ">=6.2",
  8374. "illuminate/support": ">=6",
  8375. "php": ">=7.2"
  8376. },
  8377. "require-dev": {
  8378. "phpunit/phpunit": ">=4.8"
  8379. },
  8380. "type": "library",
  8381. "extra": {
  8382. "laravel": {
  8383. "providers": [
  8384. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  8385. ],
  8386. "aliases": {
  8387. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  8388. }
  8389. }
  8390. },
  8391. "autoload": {
  8392. "psr-4": {
  8393. "ZBrettonYe\\NoCaptcha\\": "src/"
  8394. }
  8395. },
  8396. "notification-url": "https://packagist.org/downloads/",
  8397. "license": [
  8398. "MIT"
  8399. ],
  8400. "authors": [
  8401. {
  8402. "name": "zbrettonye",
  8403. "email": "monkeyblacktech97@gmail.com"
  8404. }
  8405. ],
  8406. "description": "No CAPTCHA reCAPTCHA For Laravel6~8",
  8407. "keywords": [
  8408. "captcha",
  8409. "laravel",
  8410. "no-captcha",
  8411. "recaptcha"
  8412. ],
  8413. "support": {
  8414. "source": "https://github.com/ZBrettonYe/no-captcha/tree/v1.2.1"
  8415. },
  8416. "time": "2023-05-10T03:41:05+00:00"
  8417. },
  8418. {
  8419. "name": "zoujingli/ip2region",
  8420. "version": "v1.0.13",
  8421. "source": {
  8422. "type": "git",
  8423. "url": "https://github.com/zoujingli/ip2region.git",
  8424. "reference": "c02c74571ad665745e57db5d04efa165e543fade"
  8425. },
  8426. "dist": {
  8427. "type": "zip",
  8428. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/c02c74571ad665745e57db5d04efa165e543fade",
  8429. "reference": "c02c74571ad665745e57db5d04efa165e543fade",
  8430. "shasum": "",
  8431. "mirrors": [
  8432. {
  8433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8434. "preferred": true
  8435. }
  8436. ]
  8437. },
  8438. "require": {
  8439. "php": ">=5.3"
  8440. },
  8441. "type": "library",
  8442. "autoload": {
  8443. "classmap": [
  8444. "Ip2Region.php"
  8445. ]
  8446. },
  8447. "notification-url": "https://packagist.org/downloads/",
  8448. "license": [
  8449. "Apache-2.0"
  8450. ],
  8451. "authors": [
  8452. {
  8453. "name": "Anyon",
  8454. "email": "zoujingli@qq.com",
  8455. "homepage": "http://ctolog.com"
  8456. }
  8457. ],
  8458. "description": "Ip2Region for PHP",
  8459. "homepage": "https://github.com/zoujingli/Ip2Region",
  8460. "keywords": [
  8461. "Ip2Region"
  8462. ],
  8463. "support": {
  8464. "issues": "https://github.com/zoujingli/ip2region/issues",
  8465. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.13"
  8466. },
  8467. "time": "2023-03-13T05:18:05+00:00"
  8468. }
  8469. ],
  8470. "packages-dev": [
  8471. {
  8472. "name": "barryvdh/laravel-debugbar",
  8473. "version": "v3.7.0",
  8474. "source": {
  8475. "type": "git",
  8476. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  8477. "reference": "3372ed65e6d2039d663ed19aa699956f9d346271"
  8478. },
  8479. "dist": {
  8480. "type": "zip",
  8481. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/3372ed65e6d2039d663ed19aa699956f9d346271",
  8482. "reference": "3372ed65e6d2039d663ed19aa699956f9d346271",
  8483. "shasum": "",
  8484. "mirrors": [
  8485. {
  8486. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8487. "preferred": true
  8488. }
  8489. ]
  8490. },
  8491. "require": {
  8492. "illuminate/routing": "^7|^8|^9",
  8493. "illuminate/session": "^7|^8|^9",
  8494. "illuminate/support": "^7|^8|^9",
  8495. "maximebf/debugbar": "^1.17.2",
  8496. "php": ">=7.2.5",
  8497. "symfony/finder": "^5|^6"
  8498. },
  8499. "require-dev": {
  8500. "mockery/mockery": "^1.3.3",
  8501. "orchestra/testbench-dusk": "^5|^6|^7",
  8502. "phpunit/phpunit": "^8.5|^9.0",
  8503. "squizlabs/php_codesniffer": "^3.5"
  8504. },
  8505. "type": "library",
  8506. "extra": {
  8507. "branch-alias": {
  8508. "dev-master": "3.6-dev"
  8509. },
  8510. "laravel": {
  8511. "providers": [
  8512. "Barryvdh\\Debugbar\\ServiceProvider"
  8513. ],
  8514. "aliases": {
  8515. "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
  8516. }
  8517. }
  8518. },
  8519. "autoload": {
  8520. "files": [
  8521. "src/helpers.php"
  8522. ],
  8523. "psr-4": {
  8524. "Barryvdh\\Debugbar\\": "src/"
  8525. }
  8526. },
  8527. "notification-url": "https://packagist.org/downloads/",
  8528. "license": [
  8529. "MIT"
  8530. ],
  8531. "authors": [
  8532. {
  8533. "name": "Barry vd. Heuvel",
  8534. "email": "barryvdh@gmail.com"
  8535. }
  8536. ],
  8537. "description": "PHP Debugbar integration for Laravel",
  8538. "keywords": [
  8539. "debug",
  8540. "debugbar",
  8541. "laravel",
  8542. "profiler",
  8543. "webprofiler"
  8544. ],
  8545. "support": {
  8546. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8547. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.7.0"
  8548. },
  8549. "funding": [
  8550. {
  8551. "url": "https://fruitcake.nl",
  8552. "type": "custom"
  8553. },
  8554. {
  8555. "url": "https://github.com/barryvdh",
  8556. "type": "github"
  8557. }
  8558. ],
  8559. "time": "2022-07-11T09:26:42+00:00"
  8560. },
  8561. {
  8562. "name": "barryvdh/laravel-ide-helper",
  8563. "version": "v2.8.2",
  8564. "source": {
  8565. "type": "git",
  8566. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  8567. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  8568. },
  8569. "dist": {
  8570. "type": "zip",
  8571. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  8572. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  8573. "shasum": "",
  8574. "mirrors": [
  8575. {
  8576. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8577. "preferred": true
  8578. }
  8579. ]
  8580. },
  8581. "require": {
  8582. "barryvdh/reflection-docblock": "^2.0.6",
  8583. "composer/composer": "^1.6 || ^2",
  8584. "doctrine/dbal": "~2.3",
  8585. "ext-json": "*",
  8586. "illuminate/console": "^6 || ^7 || ^8",
  8587. "illuminate/filesystem": "^6 || ^7 || ^8",
  8588. "illuminate/support": "^6 || ^7 || ^8",
  8589. "php": ">=7.2",
  8590. "phpdocumentor/type-resolver": "^1.1.0"
  8591. },
  8592. "require-dev": {
  8593. "ext-pdo_sqlite": "*",
  8594. "friendsofphp/php-cs-fixer": "^2",
  8595. "illuminate/config": "^6 || ^7 || ^8",
  8596. "illuminate/view": "^6 || ^7 || ^8",
  8597. "mockery/mockery": "^1.3.3",
  8598. "orchestra/testbench": "^4 || ^5 || ^6",
  8599. "phpunit/phpunit": "^8.5 || ^9",
  8600. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  8601. "vimeo/psalm": "^3.12"
  8602. },
  8603. "type": "library",
  8604. "extra": {
  8605. "branch-alias": {
  8606. "dev-master": "2.8-dev"
  8607. },
  8608. "laravel": {
  8609. "providers": [
  8610. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  8611. ]
  8612. }
  8613. },
  8614. "autoload": {
  8615. "psr-4": {
  8616. "Barryvdh\\LaravelIdeHelper\\": "src"
  8617. }
  8618. },
  8619. "notification-url": "https://packagist.org/downloads/",
  8620. "license": [
  8621. "MIT"
  8622. ],
  8623. "authors": [
  8624. {
  8625. "name": "Barry vd. Heuvel",
  8626. "email": "barryvdh@gmail.com"
  8627. }
  8628. ],
  8629. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  8630. "keywords": [
  8631. "autocomplete",
  8632. "codeintel",
  8633. "helper",
  8634. "ide",
  8635. "laravel",
  8636. "netbeans",
  8637. "phpdoc",
  8638. "phpstorm",
  8639. "sublime"
  8640. ],
  8641. "support": {
  8642. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  8643. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.2"
  8644. },
  8645. "funding": [
  8646. {
  8647. "url": "https://github.com/barryvdh",
  8648. "type": "github"
  8649. }
  8650. ],
  8651. "time": "2020-12-06T08:55:05+00:00"
  8652. },
  8653. {
  8654. "name": "barryvdh/reflection-docblock",
  8655. "version": "v2.1.0",
  8656. "source": {
  8657. "type": "git",
  8658. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  8659. "reference": "bf44b757feb8ba1734659029357646466ded673e"
  8660. },
  8661. "dist": {
  8662. "type": "zip",
  8663. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/bf44b757feb8ba1734659029357646466ded673e",
  8664. "reference": "bf44b757feb8ba1734659029357646466ded673e",
  8665. "shasum": "",
  8666. "mirrors": [
  8667. {
  8668. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8669. "preferred": true
  8670. }
  8671. ]
  8672. },
  8673. "require": {
  8674. "php": ">=5.3.3"
  8675. },
  8676. "require-dev": {
  8677. "phpunit/phpunit": "^8.5.14|^9"
  8678. },
  8679. "suggest": {
  8680. "dflydev/markdown": "~1.0",
  8681. "erusev/parsedown": "~1.0"
  8682. },
  8683. "type": "library",
  8684. "extra": {
  8685. "branch-alias": {
  8686. "dev-master": "2.0.x-dev"
  8687. }
  8688. },
  8689. "autoload": {
  8690. "psr-0": {
  8691. "Barryvdh": [
  8692. "src/"
  8693. ]
  8694. }
  8695. },
  8696. "notification-url": "https://packagist.org/downloads/",
  8697. "license": [
  8698. "MIT"
  8699. ],
  8700. "authors": [
  8701. {
  8702. "name": "Mike van Riel",
  8703. "email": "mike.vanriel@naenius.com"
  8704. }
  8705. ],
  8706. "support": {
  8707. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.1.0"
  8708. },
  8709. "time": "2022-10-31T15:35:43+00:00"
  8710. },
  8711. {
  8712. "name": "composer/class-map-generator",
  8713. "version": "1.1.0",
  8714. "source": {
  8715. "type": "git",
  8716. "url": "https://github.com/composer/class-map-generator.git",
  8717. "reference": "953cc4ea32e0c31f2185549c7d216d7921f03da9"
  8718. },
  8719. "dist": {
  8720. "type": "zip",
  8721. "url": "https://api.github.com/repos/composer/class-map-generator/zipball/953cc4ea32e0c31f2185549c7d216d7921f03da9",
  8722. "reference": "953cc4ea32e0c31f2185549c7d216d7921f03da9",
  8723. "shasum": "",
  8724. "mirrors": [
  8725. {
  8726. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8727. "preferred": true
  8728. }
  8729. ]
  8730. },
  8731. "require": {
  8732. "composer/pcre": "^2.1 || ^3.1",
  8733. "php": "^7.2 || ^8.0",
  8734. "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
  8735. },
  8736. "require-dev": {
  8737. "phpstan/phpstan": "^1.6",
  8738. "phpstan/phpstan-deprecation-rules": "^1",
  8739. "phpstan/phpstan-phpunit": "^1",
  8740. "phpstan/phpstan-strict-rules": "^1.1",
  8741. "symfony/filesystem": "^5.4 || ^6",
  8742. "symfony/phpunit-bridge": "^5"
  8743. },
  8744. "type": "library",
  8745. "extra": {
  8746. "branch-alias": {
  8747. "dev-main": "1.x-dev"
  8748. }
  8749. },
  8750. "autoload": {
  8751. "psr-4": {
  8752. "Composer\\ClassMapGenerator\\": "src"
  8753. }
  8754. },
  8755. "notification-url": "https://packagist.org/downloads/",
  8756. "license": [
  8757. "MIT"
  8758. ],
  8759. "authors": [
  8760. {
  8761. "name": "Jordi Boggiano",
  8762. "email": "j.boggiano@seld.be",
  8763. "homepage": "https://seld.be"
  8764. }
  8765. ],
  8766. "description": "Utilities to scan PHP code and generate class maps.",
  8767. "keywords": [
  8768. "classmap"
  8769. ],
  8770. "support": {
  8771. "issues": "https://github.com/composer/class-map-generator/issues",
  8772. "source": "https://github.com/composer/class-map-generator/tree/1.1.0"
  8773. },
  8774. "funding": [
  8775. {
  8776. "url": "https://packagist.com",
  8777. "type": "custom"
  8778. },
  8779. {
  8780. "url": "https://github.com/composer",
  8781. "type": "github"
  8782. },
  8783. {
  8784. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8785. "type": "tidelift"
  8786. }
  8787. ],
  8788. "time": "2023-06-30T13:58:57+00:00"
  8789. },
  8790. {
  8791. "name": "composer/composer",
  8792. "version": "2.5.6",
  8793. "source": {
  8794. "type": "git",
  8795. "url": "https://github.com/composer/composer.git",
  8796. "reference": "f7c05db8b0a66d046203faf3c187e319cd211fae"
  8797. },
  8798. "dist": {
  8799. "type": "zip",
  8800. "url": "https://api.github.com/repos/composer/composer/zipball/f7c05db8b0a66d046203faf3c187e319cd211fae",
  8801. "reference": "f7c05db8b0a66d046203faf3c187e319cd211fae",
  8802. "shasum": "",
  8803. "mirrors": [
  8804. {
  8805. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8806. "preferred": true
  8807. }
  8808. ]
  8809. },
  8810. "require": {
  8811. "composer/ca-bundle": "^1.0",
  8812. "composer/class-map-generator": "^1.0",
  8813. "composer/metadata-minifier": "^1.0",
  8814. "composer/pcre": "^2.1 || ^3.1",
  8815. "composer/semver": "^3.0",
  8816. "composer/spdx-licenses": "^1.5.7",
  8817. "composer/xdebug-handler": "^2.0.2 || ^3.0.3",
  8818. "justinrainbow/json-schema": "^5.2.11",
  8819. "php": "^7.2.5 || ^8.0",
  8820. "psr/log": "^1.0 || ^2.0 || ^3.0",
  8821. "react/promise": "^2.8",
  8822. "seld/jsonlint": "^1.4",
  8823. "seld/phar-utils": "^1.2",
  8824. "seld/signal-handler": "^2.0",
  8825. "symfony/console": "^5.4.11 || ^6.0.11",
  8826. "symfony/filesystem": "^5.4 || ^6.0",
  8827. "symfony/finder": "^5.4 || ^6.0",
  8828. "symfony/polyfill-php73": "^1.24",
  8829. "symfony/polyfill-php80": "^1.24",
  8830. "symfony/polyfill-php81": "^1.24",
  8831. "symfony/process": "^5.4 || ^6.0"
  8832. },
  8833. "require-dev": {
  8834. "phpstan/phpstan": "^1.9.3",
  8835. "phpstan/phpstan-deprecation-rules": "^1",
  8836. "phpstan/phpstan-phpunit": "^1.0",
  8837. "phpstan/phpstan-strict-rules": "^1",
  8838. "phpstan/phpstan-symfony": "^1.2.10",
  8839. "symfony/phpunit-bridge": "^6.0"
  8840. },
  8841. "suggest": {
  8842. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  8843. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  8844. "ext-zlib": "Allow gzip compression of HTTP requests"
  8845. },
  8846. "bin": [
  8847. "bin/composer"
  8848. ],
  8849. "type": "library",
  8850. "extra": {
  8851. "branch-alias": {
  8852. "dev-main": "2.5-dev"
  8853. },
  8854. "phpstan": {
  8855. "includes": [
  8856. "phpstan/rules.neon"
  8857. ]
  8858. }
  8859. },
  8860. "autoload": {
  8861. "psr-4": {
  8862. "Composer\\": "src/Composer"
  8863. }
  8864. },
  8865. "notification-url": "https://packagist.org/downloads/",
  8866. "license": [
  8867. "MIT"
  8868. ],
  8869. "authors": [
  8870. {
  8871. "name": "Nils Adermann",
  8872. "email": "naderman@naderman.de",
  8873. "homepage": "https://www.naderman.de"
  8874. },
  8875. {
  8876. "name": "Jordi Boggiano",
  8877. "email": "j.boggiano@seld.be",
  8878. "homepage": "https://seld.be"
  8879. }
  8880. ],
  8881. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  8882. "homepage": "https://getcomposer.org/",
  8883. "keywords": [
  8884. "autoload",
  8885. "dependency",
  8886. "package"
  8887. ],
  8888. "support": {
  8889. "irc": "ircs://irc.libera.chat:6697/composer",
  8890. "issues": "https://github.com/composer/composer/issues",
  8891. "source": "https://github.com/composer/composer/tree/2.5.6"
  8892. },
  8893. "funding": [
  8894. {
  8895. "url": "https://packagist.com",
  8896. "type": "custom"
  8897. },
  8898. {
  8899. "url": "https://github.com/composer",
  8900. "type": "github"
  8901. },
  8902. {
  8903. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8904. "type": "tidelift"
  8905. }
  8906. ],
  8907. "time": "2023-05-24T07:14:18+00:00"
  8908. },
  8909. {
  8910. "name": "composer/metadata-minifier",
  8911. "version": "1.0.0",
  8912. "source": {
  8913. "type": "git",
  8914. "url": "https://github.com/composer/metadata-minifier.git",
  8915. "reference": "c549d23829536f0d0e984aaabbf02af91f443207"
  8916. },
  8917. "dist": {
  8918. "type": "zip",
  8919. "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207",
  8920. "reference": "c549d23829536f0d0e984aaabbf02af91f443207",
  8921. "shasum": "",
  8922. "mirrors": [
  8923. {
  8924. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8925. "preferred": true
  8926. }
  8927. ]
  8928. },
  8929. "require": {
  8930. "php": "^5.3.2 || ^7.0 || ^8.0"
  8931. },
  8932. "require-dev": {
  8933. "composer/composer": "^2",
  8934. "phpstan/phpstan": "^0.12.55",
  8935. "symfony/phpunit-bridge": "^4.2 || ^5"
  8936. },
  8937. "type": "library",
  8938. "extra": {
  8939. "branch-alias": {
  8940. "dev-main": "1.x-dev"
  8941. }
  8942. },
  8943. "autoload": {
  8944. "psr-4": {
  8945. "Composer\\MetadataMinifier\\": "src"
  8946. }
  8947. },
  8948. "notification-url": "https://packagist.org/downloads/",
  8949. "license": [
  8950. "MIT"
  8951. ],
  8952. "authors": [
  8953. {
  8954. "name": "Jordi Boggiano",
  8955. "email": "j.boggiano@seld.be",
  8956. "homepage": "http://seld.be"
  8957. }
  8958. ],
  8959. "description": "Small utility library that handles metadata minification and expansion.",
  8960. "keywords": [
  8961. "composer",
  8962. "compression"
  8963. ],
  8964. "support": {
  8965. "issues": "https://github.com/composer/metadata-minifier/issues",
  8966. "source": "https://github.com/composer/metadata-minifier/tree/1.0.0"
  8967. },
  8968. "funding": [
  8969. {
  8970. "url": "https://packagist.com",
  8971. "type": "custom"
  8972. },
  8973. {
  8974. "url": "https://github.com/composer",
  8975. "type": "github"
  8976. },
  8977. {
  8978. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8979. "type": "tidelift"
  8980. }
  8981. ],
  8982. "time": "2021-04-07T13:37:33+00:00"
  8983. },
  8984. {
  8985. "name": "composer/pcre",
  8986. "version": "dev-main",
  8987. "source": {
  8988. "type": "git",
  8989. "url": "https://github.com/composer/pcre.git",
  8990. "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2"
  8991. },
  8992. "dist": {
  8993. "type": "zip",
  8994. "url": "https://api.github.com/repos/composer/pcre/zipball/4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
  8995. "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
  8996. "shasum": "",
  8997. "mirrors": [
  8998. {
  8999. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9000. "preferred": true
  9001. }
  9002. ]
  9003. },
  9004. "require": {
  9005. "php": "^7.4 || ^8.0"
  9006. },
  9007. "require-dev": {
  9008. "phpstan/phpstan": "^1.3",
  9009. "phpstan/phpstan-strict-rules": "^1.1",
  9010. "symfony/phpunit-bridge": "^5"
  9011. },
  9012. "default-branch": true,
  9013. "type": "library",
  9014. "extra": {
  9015. "branch-alias": {
  9016. "dev-main": "3.x-dev"
  9017. }
  9018. },
  9019. "autoload": {
  9020. "psr-4": {
  9021. "Composer\\Pcre\\": "src"
  9022. }
  9023. },
  9024. "notification-url": "https://packagist.org/downloads/",
  9025. "license": [
  9026. "MIT"
  9027. ],
  9028. "authors": [
  9029. {
  9030. "name": "Jordi Boggiano",
  9031. "email": "j.boggiano@seld.be",
  9032. "homepage": "http://seld.be"
  9033. }
  9034. ],
  9035. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  9036. "keywords": [
  9037. "PCRE",
  9038. "preg",
  9039. "regex",
  9040. "regular expression"
  9041. ],
  9042. "support": {
  9043. "issues": "https://github.com/composer/pcre/issues",
  9044. "source": "https://github.com/composer/pcre/tree/main"
  9045. },
  9046. "funding": [
  9047. {
  9048. "url": "https://packagist.com",
  9049. "type": "custom"
  9050. },
  9051. {
  9052. "url": "https://github.com/composer",
  9053. "type": "github"
  9054. },
  9055. {
  9056. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9057. "type": "tidelift"
  9058. }
  9059. ],
  9060. "time": "2022-11-17T09:50:14+00:00"
  9061. },
  9062. {
  9063. "name": "composer/semver",
  9064. "version": "3.3.2",
  9065. "source": {
  9066. "type": "git",
  9067. "url": "https://github.com/composer/semver.git",
  9068. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  9069. },
  9070. "dist": {
  9071. "type": "zip",
  9072. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  9073. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  9074. "shasum": "",
  9075. "mirrors": [
  9076. {
  9077. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9078. "preferred": true
  9079. }
  9080. ]
  9081. },
  9082. "require": {
  9083. "php": "^5.3.2 || ^7.0 || ^8.0"
  9084. },
  9085. "require-dev": {
  9086. "phpstan/phpstan": "^1.4",
  9087. "symfony/phpunit-bridge": "^4.2 || ^5"
  9088. },
  9089. "type": "library",
  9090. "extra": {
  9091. "branch-alias": {
  9092. "dev-main": "3.x-dev"
  9093. }
  9094. },
  9095. "autoload": {
  9096. "psr-4": {
  9097. "Composer\\Semver\\": "src"
  9098. }
  9099. },
  9100. "notification-url": "https://packagist.org/downloads/",
  9101. "license": [
  9102. "MIT"
  9103. ],
  9104. "authors": [
  9105. {
  9106. "name": "Nils Adermann",
  9107. "email": "naderman@naderman.de",
  9108. "homepage": "http://www.naderman.de"
  9109. },
  9110. {
  9111. "name": "Jordi Boggiano",
  9112. "email": "j.boggiano@seld.be",
  9113. "homepage": "http://seld.be"
  9114. },
  9115. {
  9116. "name": "Rob Bast",
  9117. "email": "rob.bast@gmail.com",
  9118. "homepage": "http://robbast.nl"
  9119. }
  9120. ],
  9121. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  9122. "keywords": [
  9123. "semantic",
  9124. "semver",
  9125. "validation",
  9126. "versioning"
  9127. ],
  9128. "support": {
  9129. "irc": "irc://irc.freenode.org/composer",
  9130. "issues": "https://github.com/composer/semver/issues",
  9131. "source": "https://github.com/composer/semver/tree/3.3.2"
  9132. },
  9133. "funding": [
  9134. {
  9135. "url": "https://packagist.com",
  9136. "type": "custom"
  9137. },
  9138. {
  9139. "url": "https://github.com/composer",
  9140. "type": "github"
  9141. },
  9142. {
  9143. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9144. "type": "tidelift"
  9145. }
  9146. ],
  9147. "time": "2022-04-01T19:23:25+00:00"
  9148. },
  9149. {
  9150. "name": "composer/spdx-licenses",
  9151. "version": "1.5.7",
  9152. "source": {
  9153. "type": "git",
  9154. "url": "https://github.com/composer/spdx-licenses.git",
  9155. "reference": "c848241796da2abf65837d51dce1fae55a960149"
  9156. },
  9157. "dist": {
  9158. "type": "zip",
  9159. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/c848241796da2abf65837d51dce1fae55a960149",
  9160. "reference": "c848241796da2abf65837d51dce1fae55a960149",
  9161. "shasum": "",
  9162. "mirrors": [
  9163. {
  9164. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9165. "preferred": true
  9166. }
  9167. ]
  9168. },
  9169. "require": {
  9170. "php": "^5.3.2 || ^7.0 || ^8.0"
  9171. },
  9172. "require-dev": {
  9173. "phpstan/phpstan": "^0.12.55",
  9174. "symfony/phpunit-bridge": "^4.2 || ^5"
  9175. },
  9176. "type": "library",
  9177. "extra": {
  9178. "branch-alias": {
  9179. "dev-main": "1.x-dev"
  9180. }
  9181. },
  9182. "autoload": {
  9183. "psr-4": {
  9184. "Composer\\Spdx\\": "src"
  9185. }
  9186. },
  9187. "notification-url": "https://packagist.org/downloads/",
  9188. "license": [
  9189. "MIT"
  9190. ],
  9191. "authors": [
  9192. {
  9193. "name": "Nils Adermann",
  9194. "email": "naderman@naderman.de",
  9195. "homepage": "http://www.naderman.de"
  9196. },
  9197. {
  9198. "name": "Jordi Boggiano",
  9199. "email": "j.boggiano@seld.be",
  9200. "homepage": "http://seld.be"
  9201. },
  9202. {
  9203. "name": "Rob Bast",
  9204. "email": "rob.bast@gmail.com",
  9205. "homepage": "http://robbast.nl"
  9206. }
  9207. ],
  9208. "description": "SPDX licenses list and validation library.",
  9209. "keywords": [
  9210. "license",
  9211. "spdx",
  9212. "validator"
  9213. ],
  9214. "support": {
  9215. "irc": "irc://irc.freenode.org/composer",
  9216. "issues": "https://github.com/composer/spdx-licenses/issues",
  9217. "source": "https://github.com/composer/spdx-licenses/tree/1.5.7"
  9218. },
  9219. "funding": [
  9220. {
  9221. "url": "https://packagist.com",
  9222. "type": "custom"
  9223. },
  9224. {
  9225. "url": "https://github.com/composer",
  9226. "type": "github"
  9227. },
  9228. {
  9229. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9230. "type": "tidelift"
  9231. }
  9232. ],
  9233. "time": "2022-05-23T07:37:50+00:00"
  9234. },
  9235. {
  9236. "name": "composer/xdebug-handler",
  9237. "version": "3.0.3",
  9238. "source": {
  9239. "type": "git",
  9240. "url": "https://github.com/composer/xdebug-handler.git",
  9241. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  9242. },
  9243. "dist": {
  9244. "type": "zip",
  9245. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  9246. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  9247. "shasum": "",
  9248. "mirrors": [
  9249. {
  9250. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9251. "preferred": true
  9252. }
  9253. ]
  9254. },
  9255. "require": {
  9256. "composer/pcre": "^1 || ^2 || ^3",
  9257. "php": "^7.2.5 || ^8.0",
  9258. "psr/log": "^1 || ^2 || ^3"
  9259. },
  9260. "require-dev": {
  9261. "phpstan/phpstan": "^1.0",
  9262. "phpstan/phpstan-strict-rules": "^1.1",
  9263. "symfony/phpunit-bridge": "^6.0"
  9264. },
  9265. "type": "library",
  9266. "autoload": {
  9267. "psr-4": {
  9268. "Composer\\XdebugHandler\\": "src"
  9269. }
  9270. },
  9271. "notification-url": "https://packagist.org/downloads/",
  9272. "license": [
  9273. "MIT"
  9274. ],
  9275. "authors": [
  9276. {
  9277. "name": "John Stevenson",
  9278. "email": "john-stevenson@blueyonder.co.uk"
  9279. }
  9280. ],
  9281. "description": "Restarts a process without Xdebug.",
  9282. "keywords": [
  9283. "Xdebug",
  9284. "performance"
  9285. ],
  9286. "support": {
  9287. "irc": "irc://irc.freenode.org/composer",
  9288. "issues": "https://github.com/composer/xdebug-handler/issues",
  9289. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  9290. },
  9291. "funding": [
  9292. {
  9293. "url": "https://packagist.com",
  9294. "type": "custom"
  9295. },
  9296. {
  9297. "url": "https://github.com/composer",
  9298. "type": "github"
  9299. },
  9300. {
  9301. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9302. "type": "tidelift"
  9303. }
  9304. ],
  9305. "time": "2022-02-25T21:32:43+00:00"
  9306. },
  9307. {
  9308. "name": "doctrine/instantiator",
  9309. "version": "1.5.0",
  9310. "source": {
  9311. "type": "git",
  9312. "url": "https://github.com/doctrine/instantiator.git",
  9313. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  9314. },
  9315. "dist": {
  9316. "type": "zip",
  9317. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  9318. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  9319. "shasum": "",
  9320. "mirrors": [
  9321. {
  9322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9323. "preferred": true
  9324. }
  9325. ]
  9326. },
  9327. "require": {
  9328. "php": "^7.1 || ^8.0"
  9329. },
  9330. "require-dev": {
  9331. "doctrine/coding-standard": "^9 || ^11",
  9332. "ext-pdo": "*",
  9333. "ext-phar": "*",
  9334. "phpbench/phpbench": "^0.16 || ^1",
  9335. "phpstan/phpstan": "^1.4",
  9336. "phpstan/phpstan-phpunit": "^1",
  9337. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  9338. "vimeo/psalm": "^4.30 || ^5.4"
  9339. },
  9340. "type": "library",
  9341. "autoload": {
  9342. "psr-4": {
  9343. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  9344. }
  9345. },
  9346. "notification-url": "https://packagist.org/downloads/",
  9347. "license": [
  9348. "MIT"
  9349. ],
  9350. "authors": [
  9351. {
  9352. "name": "Marco Pivetta",
  9353. "email": "ocramius@gmail.com",
  9354. "homepage": "https://ocramius.github.io/"
  9355. }
  9356. ],
  9357. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  9358. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  9359. "keywords": [
  9360. "constructor",
  9361. "instantiate"
  9362. ],
  9363. "support": {
  9364. "issues": "https://github.com/doctrine/instantiator/issues",
  9365. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  9366. },
  9367. "funding": [
  9368. {
  9369. "url": "https://www.doctrine-project.org/sponsorship.html",
  9370. "type": "custom"
  9371. },
  9372. {
  9373. "url": "https://www.patreon.com/phpdoctrine",
  9374. "type": "patreon"
  9375. },
  9376. {
  9377. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  9378. "type": "tidelift"
  9379. }
  9380. ],
  9381. "time": "2022-12-30T00:15:36+00:00"
  9382. },
  9383. {
  9384. "name": "facade/flare-client-php",
  9385. "version": "1.10.0",
  9386. "source": {
  9387. "type": "git",
  9388. "url": "https://github.com/facade/flare-client-php.git",
  9389. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  9390. },
  9391. "dist": {
  9392. "type": "zip",
  9393. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  9394. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  9395. "shasum": "",
  9396. "mirrors": [
  9397. {
  9398. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9399. "preferred": true
  9400. }
  9401. ]
  9402. },
  9403. "require": {
  9404. "facade/ignition-contracts": "~1.0",
  9405. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  9406. "php": "^7.1|^8.0",
  9407. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  9408. "symfony/mime": "^3.4|^4.0|^5.1",
  9409. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  9410. },
  9411. "require-dev": {
  9412. "friendsofphp/php-cs-fixer": "^2.14",
  9413. "phpunit/phpunit": "^7.5",
  9414. "spatie/phpunit-snapshot-assertions": "^2.0"
  9415. },
  9416. "type": "library",
  9417. "extra": {
  9418. "branch-alias": {
  9419. "dev-master": "1.0-dev"
  9420. }
  9421. },
  9422. "autoload": {
  9423. "files": [
  9424. "src/helpers.php"
  9425. ],
  9426. "psr-4": {
  9427. "Facade\\FlareClient\\": "src"
  9428. }
  9429. },
  9430. "notification-url": "https://packagist.org/downloads/",
  9431. "license": [
  9432. "MIT"
  9433. ],
  9434. "description": "Send PHP errors to Flare",
  9435. "homepage": "https://github.com/facade/flare-client-php",
  9436. "keywords": [
  9437. "exception",
  9438. "facade",
  9439. "flare",
  9440. "reporting"
  9441. ],
  9442. "support": {
  9443. "issues": "https://github.com/facade/flare-client-php/issues",
  9444. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  9445. },
  9446. "funding": [
  9447. {
  9448. "url": "https://github.com/spatie",
  9449. "type": "github"
  9450. }
  9451. ],
  9452. "time": "2022-08-09T11:23:57+00:00"
  9453. },
  9454. {
  9455. "name": "facade/ignition",
  9456. "version": "2.17.7",
  9457. "source": {
  9458. "type": "git",
  9459. "url": "https://github.com/facade/ignition.git",
  9460. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  9461. },
  9462. "dist": {
  9463. "type": "zip",
  9464. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  9465. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  9466. "shasum": "",
  9467. "mirrors": [
  9468. {
  9469. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9470. "preferred": true
  9471. }
  9472. ]
  9473. },
  9474. "require": {
  9475. "ext-curl": "*",
  9476. "ext-json": "*",
  9477. "ext-mbstring": "*",
  9478. "facade/flare-client-php": "^1.9.1",
  9479. "facade/ignition-contracts": "^1.0.2",
  9480. "illuminate/support": "^7.0|^8.0",
  9481. "monolog/monolog": "^2.0",
  9482. "php": "^7.2.5|^8.0",
  9483. "symfony/console": "^5.0",
  9484. "symfony/var-dumper": "^5.0"
  9485. },
  9486. "require-dev": {
  9487. "friendsofphp/php-cs-fixer": "^2.14",
  9488. "livewire/livewire": "^2.4",
  9489. "mockery/mockery": "^1.3",
  9490. "orchestra/testbench": "^5.0|^6.0",
  9491. "psalm/plugin-laravel": "^1.2"
  9492. },
  9493. "suggest": {
  9494. "laravel/telescope": "^3.1"
  9495. },
  9496. "type": "library",
  9497. "extra": {
  9498. "branch-alias": {
  9499. "dev-master": "2.x-dev"
  9500. },
  9501. "laravel": {
  9502. "providers": [
  9503. "Facade\\Ignition\\IgnitionServiceProvider"
  9504. ],
  9505. "aliases": {
  9506. "Flare": "Facade\\Ignition\\Facades\\Flare"
  9507. }
  9508. }
  9509. },
  9510. "autoload": {
  9511. "files": [
  9512. "src/helpers.php"
  9513. ],
  9514. "psr-4": {
  9515. "Facade\\Ignition\\": "src"
  9516. }
  9517. },
  9518. "notification-url": "https://packagist.org/downloads/",
  9519. "license": [
  9520. "MIT"
  9521. ],
  9522. "description": "A beautiful error page for Laravel applications.",
  9523. "homepage": "https://github.com/facade/ignition",
  9524. "keywords": [
  9525. "error",
  9526. "flare",
  9527. "laravel",
  9528. "page"
  9529. ],
  9530. "support": {
  9531. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  9532. "forum": "https://twitter.com/flareappio",
  9533. "issues": "https://github.com/facade/ignition/issues",
  9534. "source": "https://github.com/facade/ignition"
  9535. },
  9536. "time": "2023-01-26T12:34:59+00:00"
  9537. },
  9538. {
  9539. "name": "facade/ignition-contracts",
  9540. "version": "1.0.2",
  9541. "source": {
  9542. "type": "git",
  9543. "url": "https://github.com/facade/ignition-contracts.git",
  9544. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  9545. },
  9546. "dist": {
  9547. "type": "zip",
  9548. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  9549. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  9550. "shasum": "",
  9551. "mirrors": [
  9552. {
  9553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9554. "preferred": true
  9555. }
  9556. ]
  9557. },
  9558. "require": {
  9559. "php": "^7.3|^8.0"
  9560. },
  9561. "require-dev": {
  9562. "friendsofphp/php-cs-fixer": "^v2.15.8",
  9563. "phpunit/phpunit": "^9.3.11",
  9564. "vimeo/psalm": "^3.17.1"
  9565. },
  9566. "type": "library",
  9567. "autoload": {
  9568. "psr-4": {
  9569. "Facade\\IgnitionContracts\\": "src"
  9570. }
  9571. },
  9572. "notification-url": "https://packagist.org/downloads/",
  9573. "license": [
  9574. "MIT"
  9575. ],
  9576. "authors": [
  9577. {
  9578. "name": "Freek Van der Herten",
  9579. "email": "freek@spatie.be",
  9580. "homepage": "https://flareapp.io",
  9581. "role": "Developer"
  9582. }
  9583. ],
  9584. "description": "Solution contracts for Ignition",
  9585. "homepage": "https://github.com/facade/ignition-contracts",
  9586. "keywords": [
  9587. "contracts",
  9588. "flare",
  9589. "ignition"
  9590. ],
  9591. "support": {
  9592. "issues": "https://github.com/facade/ignition-contracts/issues",
  9593. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  9594. },
  9595. "time": "2020-10-16T08:27:54+00:00"
  9596. },
  9597. {
  9598. "name": "fakerphp/faker",
  9599. "version": "v1.22.0",
  9600. "source": {
  9601. "type": "git",
  9602. "url": "https://github.com/FakerPHP/Faker.git",
  9603. "reference": "f85772abd508bd04e20bb4b1bbe260a68d0066d2"
  9604. },
  9605. "dist": {
  9606. "type": "zip",
  9607. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/f85772abd508bd04e20bb4b1bbe260a68d0066d2",
  9608. "reference": "f85772abd508bd04e20bb4b1bbe260a68d0066d2",
  9609. "shasum": "",
  9610. "mirrors": [
  9611. {
  9612. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9613. "preferred": true
  9614. }
  9615. ]
  9616. },
  9617. "require": {
  9618. "php": "^7.4 || ^8.0",
  9619. "psr/container": "^1.0 || ^2.0",
  9620. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9621. },
  9622. "conflict": {
  9623. "fzaninotto/faker": "*"
  9624. },
  9625. "require-dev": {
  9626. "bamarni/composer-bin-plugin": "^1.4.1",
  9627. "doctrine/persistence": "^1.3 || ^2.0",
  9628. "ext-intl": "*",
  9629. "phpunit/phpunit": "^9.5.26",
  9630. "symfony/phpunit-bridge": "^5.4.16"
  9631. },
  9632. "suggest": {
  9633. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9634. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9635. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9636. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9637. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9638. },
  9639. "type": "library",
  9640. "extra": {
  9641. "branch-alias": {
  9642. "dev-main": "v1.21-dev"
  9643. }
  9644. },
  9645. "autoload": {
  9646. "psr-4": {
  9647. "Faker\\": "src/Faker/"
  9648. }
  9649. },
  9650. "notification-url": "https://packagist.org/downloads/",
  9651. "license": [
  9652. "MIT"
  9653. ],
  9654. "authors": [
  9655. {
  9656. "name": "François Zaninotto"
  9657. }
  9658. ],
  9659. "description": "Faker is a PHP library that generates fake data for you.",
  9660. "keywords": [
  9661. "data",
  9662. "faker",
  9663. "fixtures"
  9664. ],
  9665. "support": {
  9666. "issues": "https://github.com/FakerPHP/Faker/issues",
  9667. "source": "https://github.com/FakerPHP/Faker/tree/v1.22.0"
  9668. },
  9669. "time": "2023-05-14T12:31:37+00:00"
  9670. },
  9671. {
  9672. "name": "filp/whoops",
  9673. "version": "2.15.2",
  9674. "source": {
  9675. "type": "git",
  9676. "url": "https://github.com/filp/whoops.git",
  9677. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73"
  9678. },
  9679. "dist": {
  9680. "type": "zip",
  9681. "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  9682. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  9683. "shasum": "",
  9684. "mirrors": [
  9685. {
  9686. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9687. "preferred": true
  9688. }
  9689. ]
  9690. },
  9691. "require": {
  9692. "php": "^5.5.9 || ^7.0 || ^8.0",
  9693. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9694. },
  9695. "require-dev": {
  9696. "mockery/mockery": "^0.9 || ^1.0",
  9697. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  9698. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  9699. },
  9700. "suggest": {
  9701. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9702. "whoops/soap": "Formats errors as SOAP responses"
  9703. },
  9704. "type": "library",
  9705. "extra": {
  9706. "branch-alias": {
  9707. "dev-master": "2.7-dev"
  9708. }
  9709. },
  9710. "autoload": {
  9711. "psr-4": {
  9712. "Whoops\\": "src/Whoops/"
  9713. }
  9714. },
  9715. "notification-url": "https://packagist.org/downloads/",
  9716. "license": [
  9717. "MIT"
  9718. ],
  9719. "authors": [
  9720. {
  9721. "name": "Filipe Dobreira",
  9722. "homepage": "https://github.com/filp",
  9723. "role": "Developer"
  9724. }
  9725. ],
  9726. "description": "php error handling for cool kids",
  9727. "homepage": "https://filp.github.io/whoops/",
  9728. "keywords": [
  9729. "error",
  9730. "exception",
  9731. "handling",
  9732. "library",
  9733. "throwable",
  9734. "whoops"
  9735. ],
  9736. "support": {
  9737. "issues": "https://github.com/filp/whoops/issues",
  9738. "source": "https://github.com/filp/whoops/tree/2.15.2"
  9739. },
  9740. "funding": [
  9741. {
  9742. "url": "https://github.com/denis-sokolov",
  9743. "type": "github"
  9744. }
  9745. ],
  9746. "time": "2023-04-12T12:00:00+00:00"
  9747. },
  9748. {
  9749. "name": "hamcrest/hamcrest-php",
  9750. "version": "v2.0.1",
  9751. "source": {
  9752. "type": "git",
  9753. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9754. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9755. },
  9756. "dist": {
  9757. "type": "zip",
  9758. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9759. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9760. "shasum": "",
  9761. "mirrors": [
  9762. {
  9763. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9764. "preferred": true
  9765. }
  9766. ]
  9767. },
  9768. "require": {
  9769. "php": "^5.3|^7.0|^8.0"
  9770. },
  9771. "replace": {
  9772. "cordoval/hamcrest-php": "*",
  9773. "davedevelopment/hamcrest-php": "*",
  9774. "kodova/hamcrest-php": "*"
  9775. },
  9776. "require-dev": {
  9777. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9778. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9779. },
  9780. "type": "library",
  9781. "extra": {
  9782. "branch-alias": {
  9783. "dev-master": "2.1-dev"
  9784. }
  9785. },
  9786. "autoload": {
  9787. "classmap": [
  9788. "hamcrest"
  9789. ]
  9790. },
  9791. "notification-url": "https://packagist.org/downloads/",
  9792. "license": [
  9793. "BSD-3-Clause"
  9794. ],
  9795. "description": "This is the PHP port of Hamcrest Matchers",
  9796. "keywords": [
  9797. "test"
  9798. ],
  9799. "support": {
  9800. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9801. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9802. },
  9803. "time": "2020-07-09T08:09:16+00:00"
  9804. },
  9805. {
  9806. "name": "justinrainbow/json-schema",
  9807. "version": "5.2.12",
  9808. "source": {
  9809. "type": "git",
  9810. "url": "https://github.com/justinrainbow/json-schema.git",
  9811. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60"
  9812. },
  9813. "dist": {
  9814. "type": "zip",
  9815. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  9816. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  9817. "shasum": "",
  9818. "mirrors": [
  9819. {
  9820. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9821. "preferred": true
  9822. }
  9823. ]
  9824. },
  9825. "require": {
  9826. "php": ">=5.3.3"
  9827. },
  9828. "require-dev": {
  9829. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  9830. "json-schema/json-schema-test-suite": "1.2.0",
  9831. "phpunit/phpunit": "^4.8.35"
  9832. },
  9833. "bin": [
  9834. "bin/validate-json"
  9835. ],
  9836. "type": "library",
  9837. "extra": {
  9838. "branch-alias": {
  9839. "dev-master": "5.0.x-dev"
  9840. }
  9841. },
  9842. "autoload": {
  9843. "psr-4": {
  9844. "JsonSchema\\": "src/JsonSchema/"
  9845. }
  9846. },
  9847. "notification-url": "https://packagist.org/downloads/",
  9848. "license": [
  9849. "MIT"
  9850. ],
  9851. "authors": [
  9852. {
  9853. "name": "Bruno Prieto Reis",
  9854. "email": "bruno.p.reis@gmail.com"
  9855. },
  9856. {
  9857. "name": "Justin Rainbow",
  9858. "email": "justin.rainbow@gmail.com"
  9859. },
  9860. {
  9861. "name": "Igor Wiedler",
  9862. "email": "igor@wiedler.ch"
  9863. },
  9864. {
  9865. "name": "Robert Schönthal",
  9866. "email": "seroscho@googlemail.com"
  9867. }
  9868. ],
  9869. "description": "A library to validate a json schema.",
  9870. "homepage": "https://github.com/justinrainbow/json-schema",
  9871. "keywords": [
  9872. "json",
  9873. "schema"
  9874. ],
  9875. "support": {
  9876. "issues": "https://github.com/justinrainbow/json-schema/issues",
  9877. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.12"
  9878. },
  9879. "time": "2022-04-13T08:02:27+00:00"
  9880. },
  9881. {
  9882. "name": "laravel/telescope",
  9883. "version": "v3.5.1",
  9884. "source": {
  9885. "type": "git",
  9886. "url": "https://github.com/laravel/telescope.git",
  9887. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  9888. },
  9889. "dist": {
  9890. "type": "zip",
  9891. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  9892. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  9893. "shasum": "",
  9894. "mirrors": [
  9895. {
  9896. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9897. "preferred": true
  9898. }
  9899. ]
  9900. },
  9901. "require": {
  9902. "ext-json": "*",
  9903. "laravel/framework": "^6.0|^7.0",
  9904. "moontoast/math": "^1.1",
  9905. "php": "^7.2",
  9906. "symfony/var-dumper": "^4.4|^5.0"
  9907. },
  9908. "require-dev": {
  9909. "ext-gd": "*",
  9910. "orchestra/testbench": "^4.0|^5.0"
  9911. },
  9912. "type": "library",
  9913. "extra": {
  9914. "branch-alias": {
  9915. "dev-master": "3.x-dev"
  9916. },
  9917. "laravel": {
  9918. "providers": [
  9919. "Laravel\\Telescope\\TelescopeServiceProvider"
  9920. ]
  9921. }
  9922. },
  9923. "autoload": {
  9924. "psr-4": {
  9925. "Laravel\\Telescope\\": "src/"
  9926. }
  9927. },
  9928. "notification-url": "https://packagist.org/downloads/",
  9929. "license": [
  9930. "MIT"
  9931. ],
  9932. "authors": [
  9933. {
  9934. "name": "Taylor Otwell",
  9935. "email": "taylor@laravel.com"
  9936. },
  9937. {
  9938. "name": "Mohamed Said",
  9939. "email": "mohamed@laravel.com"
  9940. }
  9941. ],
  9942. "description": "An elegant debug assistant for the Laravel framework.",
  9943. "keywords": [
  9944. "debugging",
  9945. "laravel",
  9946. "monitoring"
  9947. ],
  9948. "support": {
  9949. "issues": "https://github.com/laravel/telescope/issues",
  9950. "source": "https://github.com/laravel/telescope/tree/v3.5.1"
  9951. },
  9952. "time": "2020-07-28T19:12:33+00:00"
  9953. },
  9954. {
  9955. "name": "maximebf/debugbar",
  9956. "version": "v1.18.1",
  9957. "source": {
  9958. "type": "git",
  9959. "url": "https://github.com/maximebf/php-debugbar.git",
  9960. "reference": "ba0af68dd4316834701ecb30a00ce9604ced3ee9"
  9961. },
  9962. "dist": {
  9963. "type": "zip",
  9964. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/ba0af68dd4316834701ecb30a00ce9604ced3ee9",
  9965. "reference": "ba0af68dd4316834701ecb30a00ce9604ced3ee9",
  9966. "shasum": "",
  9967. "mirrors": [
  9968. {
  9969. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9970. "preferred": true
  9971. }
  9972. ]
  9973. },
  9974. "require": {
  9975. "php": "^7.1|^8",
  9976. "psr/log": "^1|^2|^3",
  9977. "symfony/var-dumper": "^2.6|^3|^4|^5|^6"
  9978. },
  9979. "require-dev": {
  9980. "phpunit/phpunit": "^7.5.20 || ^9.4.2",
  9981. "twig/twig": "^1.38|^2.7|^3.0"
  9982. },
  9983. "suggest": {
  9984. "kriswallsmith/assetic": "The best way to manage assets",
  9985. "monolog/monolog": "Log using Monolog",
  9986. "predis/predis": "Redis storage"
  9987. },
  9988. "type": "library",
  9989. "extra": {
  9990. "branch-alias": {
  9991. "dev-master": "1.18-dev"
  9992. }
  9993. },
  9994. "autoload": {
  9995. "psr-4": {
  9996. "DebugBar\\": "src/DebugBar/"
  9997. }
  9998. },
  9999. "notification-url": "https://packagist.org/downloads/",
  10000. "license": [
  10001. "MIT"
  10002. ],
  10003. "authors": [
  10004. {
  10005. "name": "Maxime Bouroumeau-Fuseau",
  10006. "email": "maxime.bouroumeau@gmail.com",
  10007. "homepage": "http://maximebf.com"
  10008. },
  10009. {
  10010. "name": "Barry vd. Heuvel",
  10011. "email": "barryvdh@gmail.com"
  10012. }
  10013. ],
  10014. "description": "Debug bar in the browser for php application",
  10015. "homepage": "https://github.com/maximebf/php-debugbar",
  10016. "keywords": [
  10017. "debug",
  10018. "debugbar"
  10019. ],
  10020. "support": {
  10021. "issues": "https://github.com/maximebf/php-debugbar/issues",
  10022. "source": "https://github.com/maximebf/php-debugbar/tree/v1.18.1"
  10023. },
  10024. "time": "2022-03-31T14:55:54+00:00"
  10025. },
  10026. {
  10027. "name": "mockery/mockery",
  10028. "version": "1.5.1",
  10029. "source": {
  10030. "type": "git",
  10031. "url": "https://github.com/mockery/mockery.git",
  10032. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  10033. },
  10034. "dist": {
  10035. "type": "zip",
  10036. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  10037. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  10038. "shasum": "",
  10039. "mirrors": [
  10040. {
  10041. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10042. "preferred": true
  10043. }
  10044. ]
  10045. },
  10046. "require": {
  10047. "hamcrest/hamcrest-php": "^2.0.1",
  10048. "lib-pcre": ">=7.0",
  10049. "php": "^7.3 || ^8.0"
  10050. },
  10051. "conflict": {
  10052. "phpunit/phpunit": "<8.0"
  10053. },
  10054. "require-dev": {
  10055. "phpunit/phpunit": "^8.5 || ^9.3"
  10056. },
  10057. "type": "library",
  10058. "extra": {
  10059. "branch-alias": {
  10060. "dev-master": "1.4.x-dev"
  10061. }
  10062. },
  10063. "autoload": {
  10064. "psr-0": {
  10065. "Mockery": "library/"
  10066. }
  10067. },
  10068. "notification-url": "https://packagist.org/downloads/",
  10069. "license": [
  10070. "BSD-3-Clause"
  10071. ],
  10072. "authors": [
  10073. {
  10074. "name": "Pádraic Brady",
  10075. "email": "padraic.brady@gmail.com",
  10076. "homepage": "http://blog.astrumfutura.com"
  10077. },
  10078. {
  10079. "name": "Dave Marshall",
  10080. "email": "dave.marshall@atstsolutions.co.uk",
  10081. "homepage": "http://davedevelopment.co.uk"
  10082. }
  10083. ],
  10084. "description": "Mockery is a simple yet flexible PHP mock object framework",
  10085. "homepage": "https://github.com/mockery/mockery",
  10086. "keywords": [
  10087. "BDD",
  10088. "TDD",
  10089. "library",
  10090. "mock",
  10091. "mock objects",
  10092. "mockery",
  10093. "stub",
  10094. "test",
  10095. "test double",
  10096. "testing"
  10097. ],
  10098. "support": {
  10099. "issues": "https://github.com/mockery/mockery/issues",
  10100. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  10101. },
  10102. "time": "2022-09-07T15:32:08+00:00"
  10103. },
  10104. {
  10105. "name": "moontoast/math",
  10106. "version": "1.2.1",
  10107. "source": {
  10108. "type": "git",
  10109. "url": "https://github.com/ramsey/moontoast-math.git",
  10110. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  10111. },
  10112. "dist": {
  10113. "type": "zip",
  10114. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  10115. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  10116. "shasum": "",
  10117. "mirrors": [
  10118. {
  10119. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10120. "preferred": true
  10121. }
  10122. ]
  10123. },
  10124. "require": {
  10125. "php": ">=5.3.3",
  10126. "phpseclib/bcmath_compat": ">=1.0.3"
  10127. },
  10128. "require-dev": {
  10129. "jakub-onderka/php-parallel-lint": "^0.9.0",
  10130. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  10131. "satooshi/php-coveralls": "^0.6.1",
  10132. "squizlabs/php_codesniffer": "^2.3"
  10133. },
  10134. "type": "library",
  10135. "autoload": {
  10136. "psr-4": {
  10137. "Moontoast\\Math\\": "src/Moontoast/Math",
  10138. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  10139. }
  10140. },
  10141. "notification-url": "https://packagist.org/downloads/",
  10142. "license": [
  10143. "Apache-2.0"
  10144. ],
  10145. "authors": [
  10146. {
  10147. "name": "Ben Ramsey",
  10148. "email": "ben@benramsey.com",
  10149. "homepage": "https://benramsey.com"
  10150. }
  10151. ],
  10152. "description": "A mathematics library, providing functionality for large numbers",
  10153. "homepage": "https://github.com/ramsey/moontoast-math",
  10154. "keywords": [
  10155. "bcmath",
  10156. "math"
  10157. ],
  10158. "support": {
  10159. "issues": "https://github.com/ramsey/moontoast-math/issues",
  10160. "source": "https://github.com/ramsey/moontoast-math"
  10161. },
  10162. "abandoned": "brick/math",
  10163. "time": "2020-01-05T04:49:34+00:00"
  10164. },
  10165. {
  10166. "name": "myclabs/deep-copy",
  10167. "version": "1.11.1",
  10168. "source": {
  10169. "type": "git",
  10170. "url": "https://github.com/myclabs/DeepCopy.git",
  10171. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  10172. },
  10173. "dist": {
  10174. "type": "zip",
  10175. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  10176. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  10177. "shasum": "",
  10178. "mirrors": [
  10179. {
  10180. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10181. "preferred": true
  10182. }
  10183. ]
  10184. },
  10185. "require": {
  10186. "php": "^7.1 || ^8.0"
  10187. },
  10188. "conflict": {
  10189. "doctrine/collections": "<1.6.8",
  10190. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  10191. },
  10192. "require-dev": {
  10193. "doctrine/collections": "^1.6.8",
  10194. "doctrine/common": "^2.13.3 || ^3.2.2",
  10195. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10196. },
  10197. "type": "library",
  10198. "autoload": {
  10199. "files": [
  10200. "src/DeepCopy/deep_copy.php"
  10201. ],
  10202. "psr-4": {
  10203. "DeepCopy\\": "src/DeepCopy/"
  10204. }
  10205. },
  10206. "notification-url": "https://packagist.org/downloads/",
  10207. "license": [
  10208. "MIT"
  10209. ],
  10210. "description": "Create deep copies (clones) of your objects",
  10211. "keywords": [
  10212. "clone",
  10213. "copy",
  10214. "duplicate",
  10215. "object",
  10216. "object graph"
  10217. ],
  10218. "support": {
  10219. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10220. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  10221. },
  10222. "funding": [
  10223. {
  10224. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10225. "type": "tidelift"
  10226. }
  10227. ],
  10228. "time": "2023-03-08T13:26:56+00:00"
  10229. },
  10230. {
  10231. "name": "nunomaduro/collision",
  10232. "version": "v4.3.0",
  10233. "source": {
  10234. "type": "git",
  10235. "url": "https://github.com/nunomaduro/collision.git",
  10236. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  10237. },
  10238. "dist": {
  10239. "type": "zip",
  10240. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  10241. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  10242. "shasum": "",
  10243. "mirrors": [
  10244. {
  10245. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10246. "preferred": true
  10247. }
  10248. ]
  10249. },
  10250. "require": {
  10251. "facade/ignition-contracts": "^1.0",
  10252. "filp/whoops": "^2.4",
  10253. "php": "^7.2.5 || ^8.0",
  10254. "symfony/console": "^5.0"
  10255. },
  10256. "require-dev": {
  10257. "facade/ignition": "^2.0",
  10258. "fideloper/proxy": "^4.2",
  10259. "friendsofphp/php-cs-fixer": "^2.16",
  10260. "fruitcake/laravel-cors": "^1.0",
  10261. "laravel/framework": "^7.0",
  10262. "laravel/tinker": "^2.0",
  10263. "nunomaduro/larastan": "^0.6",
  10264. "orchestra/testbench": "^5.0",
  10265. "phpstan/phpstan": "^0.12.3",
  10266. "phpunit/phpunit": "^8.5.1 || ^9.0"
  10267. },
  10268. "type": "library",
  10269. "extra": {
  10270. "laravel": {
  10271. "providers": [
  10272. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10273. ]
  10274. }
  10275. },
  10276. "autoload": {
  10277. "psr-4": {
  10278. "NunoMaduro\\Collision\\": "src/"
  10279. }
  10280. },
  10281. "notification-url": "https://packagist.org/downloads/",
  10282. "license": [
  10283. "MIT"
  10284. ],
  10285. "authors": [
  10286. {
  10287. "name": "Nuno Maduro",
  10288. "email": "enunomaduro@gmail.com"
  10289. }
  10290. ],
  10291. "description": "Cli error handling for console/command-line PHP applications.",
  10292. "keywords": [
  10293. "artisan",
  10294. "cli",
  10295. "command-line",
  10296. "console",
  10297. "error",
  10298. "handling",
  10299. "laravel",
  10300. "laravel-zero",
  10301. "php",
  10302. "symfony"
  10303. ],
  10304. "support": {
  10305. "issues": "https://github.com/nunomaduro/collision/issues",
  10306. "source": "https://github.com/nunomaduro/collision"
  10307. },
  10308. "funding": [
  10309. {
  10310. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10311. "type": "custom"
  10312. },
  10313. {
  10314. "url": "https://github.com/nunomaduro",
  10315. "type": "github"
  10316. },
  10317. {
  10318. "url": "https://www.patreon.com/nunomaduro",
  10319. "type": "patreon"
  10320. }
  10321. ],
  10322. "time": "2020-10-29T15:12:23+00:00"
  10323. },
  10324. {
  10325. "name": "paragonie/constant_time_encoding",
  10326. "version": "v2.6.3",
  10327. "source": {
  10328. "type": "git",
  10329. "url": "https://github.com/paragonie/constant_time_encoding.git",
  10330. "reference": "58c3f47f650c94ec05a151692652a868995d2938"
  10331. },
  10332. "dist": {
  10333. "type": "zip",
  10334. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938",
  10335. "reference": "58c3f47f650c94ec05a151692652a868995d2938",
  10336. "shasum": "",
  10337. "mirrors": [
  10338. {
  10339. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10340. "preferred": true
  10341. }
  10342. ]
  10343. },
  10344. "require": {
  10345. "php": "^7|^8"
  10346. },
  10347. "require-dev": {
  10348. "phpunit/phpunit": "^6|^7|^8|^9",
  10349. "vimeo/psalm": "^1|^2|^3|^4"
  10350. },
  10351. "type": "library",
  10352. "autoload": {
  10353. "psr-4": {
  10354. "ParagonIE\\ConstantTime\\": "src/"
  10355. }
  10356. },
  10357. "notification-url": "https://packagist.org/downloads/",
  10358. "license": [
  10359. "MIT"
  10360. ],
  10361. "authors": [
  10362. {
  10363. "name": "Paragon Initiative Enterprises",
  10364. "email": "security@paragonie.com",
  10365. "homepage": "https://paragonie.com",
  10366. "role": "Maintainer"
  10367. },
  10368. {
  10369. "name": "Steve 'Sc00bz' Thomas",
  10370. "email": "steve@tobtu.com",
  10371. "homepage": "https://www.tobtu.com",
  10372. "role": "Original Developer"
  10373. }
  10374. ],
  10375. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  10376. "keywords": [
  10377. "base16",
  10378. "base32",
  10379. "base32_decode",
  10380. "base32_encode",
  10381. "base64",
  10382. "base64_decode",
  10383. "base64_encode",
  10384. "bin2hex",
  10385. "encoding",
  10386. "hex",
  10387. "hex2bin",
  10388. "rfc4648"
  10389. ],
  10390. "support": {
  10391. "email": "info@paragonie.com",
  10392. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  10393. "source": "https://github.com/paragonie/constant_time_encoding"
  10394. },
  10395. "time": "2022-06-14T06:56:20+00:00"
  10396. },
  10397. {
  10398. "name": "paragonie/random_compat",
  10399. "version": "v9.99.100",
  10400. "source": {
  10401. "type": "git",
  10402. "url": "https://github.com/paragonie/random_compat.git",
  10403. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  10404. },
  10405. "dist": {
  10406. "type": "zip",
  10407. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  10408. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  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. "php": ">= 7"
  10419. },
  10420. "require-dev": {
  10421. "phpunit/phpunit": "4.*|5.*",
  10422. "vimeo/psalm": "^1"
  10423. },
  10424. "suggest": {
  10425. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  10426. },
  10427. "type": "library",
  10428. "notification-url": "https://packagist.org/downloads/",
  10429. "license": [
  10430. "MIT"
  10431. ],
  10432. "authors": [
  10433. {
  10434. "name": "Paragon Initiative Enterprises",
  10435. "email": "security@paragonie.com",
  10436. "homepage": "https://paragonie.com"
  10437. }
  10438. ],
  10439. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  10440. "keywords": [
  10441. "csprng",
  10442. "polyfill",
  10443. "pseudorandom",
  10444. "random"
  10445. ],
  10446. "support": {
  10447. "email": "info@paragonie.com",
  10448. "issues": "https://github.com/paragonie/random_compat/issues",
  10449. "source": "https://github.com/paragonie/random_compat"
  10450. },
  10451. "time": "2020-10-15T08:29:30+00:00"
  10452. },
  10453. {
  10454. "name": "phar-io/manifest",
  10455. "version": "2.0.3",
  10456. "source": {
  10457. "type": "git",
  10458. "url": "https://github.com/phar-io/manifest.git",
  10459. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  10460. },
  10461. "dist": {
  10462. "type": "zip",
  10463. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  10464. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  10465. "shasum": "",
  10466. "mirrors": [
  10467. {
  10468. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10469. "preferred": true
  10470. }
  10471. ]
  10472. },
  10473. "require": {
  10474. "ext-dom": "*",
  10475. "ext-phar": "*",
  10476. "ext-xmlwriter": "*",
  10477. "phar-io/version": "^3.0.1",
  10478. "php": "^7.2 || ^8.0"
  10479. },
  10480. "type": "library",
  10481. "extra": {
  10482. "branch-alias": {
  10483. "dev-master": "2.0.x-dev"
  10484. }
  10485. },
  10486. "autoload": {
  10487. "classmap": [
  10488. "src/"
  10489. ]
  10490. },
  10491. "notification-url": "https://packagist.org/downloads/",
  10492. "license": [
  10493. "BSD-3-Clause"
  10494. ],
  10495. "authors": [
  10496. {
  10497. "name": "Arne Blankerts",
  10498. "email": "arne@blankerts.de",
  10499. "role": "Developer"
  10500. },
  10501. {
  10502. "name": "Sebastian Heuer",
  10503. "email": "sebastian@phpeople.de",
  10504. "role": "Developer"
  10505. },
  10506. {
  10507. "name": "Sebastian Bergmann",
  10508. "email": "sebastian@phpunit.de",
  10509. "role": "Developer"
  10510. }
  10511. ],
  10512. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10513. "support": {
  10514. "issues": "https://github.com/phar-io/manifest/issues",
  10515. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  10516. },
  10517. "time": "2021-07-20T11:28:43+00:00"
  10518. },
  10519. {
  10520. "name": "phar-io/version",
  10521. "version": "3.2.1",
  10522. "source": {
  10523. "type": "git",
  10524. "url": "https://github.com/phar-io/version.git",
  10525. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10526. },
  10527. "dist": {
  10528. "type": "zip",
  10529. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10530. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10531. "shasum": "",
  10532. "mirrors": [
  10533. {
  10534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10535. "preferred": true
  10536. }
  10537. ]
  10538. },
  10539. "require": {
  10540. "php": "^7.2 || ^8.0"
  10541. },
  10542. "type": "library",
  10543. "autoload": {
  10544. "classmap": [
  10545. "src/"
  10546. ]
  10547. },
  10548. "notification-url": "https://packagist.org/downloads/",
  10549. "license": [
  10550. "BSD-3-Clause"
  10551. ],
  10552. "authors": [
  10553. {
  10554. "name": "Arne Blankerts",
  10555. "email": "arne@blankerts.de",
  10556. "role": "Developer"
  10557. },
  10558. {
  10559. "name": "Sebastian Heuer",
  10560. "email": "sebastian@phpeople.de",
  10561. "role": "Developer"
  10562. },
  10563. {
  10564. "name": "Sebastian Bergmann",
  10565. "email": "sebastian@phpunit.de",
  10566. "role": "Developer"
  10567. }
  10568. ],
  10569. "description": "Library for handling version information and constraints",
  10570. "support": {
  10571. "issues": "https://github.com/phar-io/version/issues",
  10572. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10573. },
  10574. "time": "2022-02-21T01:04:05+00:00"
  10575. },
  10576. {
  10577. "name": "phpdocumentor/reflection-common",
  10578. "version": "2.2.0",
  10579. "source": {
  10580. "type": "git",
  10581. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  10582. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  10583. },
  10584. "dist": {
  10585. "type": "zip",
  10586. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10587. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10588. "shasum": "",
  10589. "mirrors": [
  10590. {
  10591. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10592. "preferred": true
  10593. }
  10594. ]
  10595. },
  10596. "require": {
  10597. "php": "^7.2 || ^8.0"
  10598. },
  10599. "type": "library",
  10600. "extra": {
  10601. "branch-alias": {
  10602. "dev-2.x": "2.x-dev"
  10603. }
  10604. },
  10605. "autoload": {
  10606. "psr-4": {
  10607. "phpDocumentor\\Reflection\\": "src/"
  10608. }
  10609. },
  10610. "notification-url": "https://packagist.org/downloads/",
  10611. "license": [
  10612. "MIT"
  10613. ],
  10614. "authors": [
  10615. {
  10616. "name": "Jaap van Otterdijk",
  10617. "email": "opensource@ijaap.nl"
  10618. }
  10619. ],
  10620. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  10621. "homepage": "http://www.phpdoc.org",
  10622. "keywords": [
  10623. "FQSEN",
  10624. "phpDocumentor",
  10625. "phpdoc",
  10626. "reflection",
  10627. "static analysis"
  10628. ],
  10629. "support": {
  10630. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  10631. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  10632. },
  10633. "time": "2020-06-27T09:03:43+00:00"
  10634. },
  10635. {
  10636. "name": "phpdocumentor/type-resolver",
  10637. "version": "1.7.2",
  10638. "source": {
  10639. "type": "git",
  10640. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  10641. "reference": "b2fe4d22a5426f38e014855322200b97b5362c0d"
  10642. },
  10643. "dist": {
  10644. "type": "zip",
  10645. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/b2fe4d22a5426f38e014855322200b97b5362c0d",
  10646. "reference": "b2fe4d22a5426f38e014855322200b97b5362c0d",
  10647. "shasum": "",
  10648. "mirrors": [
  10649. {
  10650. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10651. "preferred": true
  10652. }
  10653. ]
  10654. },
  10655. "require": {
  10656. "doctrine/deprecations": "^1.0",
  10657. "php": "^7.4 || ^8.0",
  10658. "phpdocumentor/reflection-common": "^2.0",
  10659. "phpstan/phpdoc-parser": "^1.13"
  10660. },
  10661. "require-dev": {
  10662. "ext-tokenizer": "*",
  10663. "phpbench/phpbench": "^1.2",
  10664. "phpstan/extension-installer": "^1.1",
  10665. "phpstan/phpstan": "^1.8",
  10666. "phpstan/phpstan-phpunit": "^1.1",
  10667. "phpunit/phpunit": "^9.5",
  10668. "rector/rector": "^0.13.9",
  10669. "vimeo/psalm": "^4.25"
  10670. },
  10671. "type": "library",
  10672. "extra": {
  10673. "branch-alias": {
  10674. "dev-1.x": "1.x-dev"
  10675. }
  10676. },
  10677. "autoload": {
  10678. "psr-4": {
  10679. "phpDocumentor\\Reflection\\": "src"
  10680. }
  10681. },
  10682. "notification-url": "https://packagist.org/downloads/",
  10683. "license": [
  10684. "MIT"
  10685. ],
  10686. "authors": [
  10687. {
  10688. "name": "Mike van Riel",
  10689. "email": "me@mikevanriel.com"
  10690. }
  10691. ],
  10692. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  10693. "support": {
  10694. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  10695. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.2"
  10696. },
  10697. "time": "2023-05-30T18:13:47+00:00"
  10698. },
  10699. {
  10700. "name": "phpseclib/bcmath_compat",
  10701. "version": "2.0.1",
  10702. "source": {
  10703. "type": "git",
  10704. "url": "https://github.com/phpseclib/bcmath_compat.git",
  10705. "reference": "2ffea8bfe1702b4535a7b3c2649c4301968e9a3c"
  10706. },
  10707. "dist": {
  10708. "type": "zip",
  10709. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/2ffea8bfe1702b4535a7b3c2649c4301968e9a3c",
  10710. "reference": "2ffea8bfe1702b4535a7b3c2649c4301968e9a3c",
  10711. "shasum": "",
  10712. "mirrors": [
  10713. {
  10714. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10715. "preferred": true
  10716. }
  10717. ]
  10718. },
  10719. "require": {
  10720. "phpseclib/phpseclib": "^3.0"
  10721. },
  10722. "provide": {
  10723. "ext-bcmath": "8.1.0"
  10724. },
  10725. "require-dev": {
  10726. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  10727. "squizlabs/php_codesniffer": "^3.0"
  10728. },
  10729. "suggest": {
  10730. "ext-gmp": "Will enable faster math operations"
  10731. },
  10732. "type": "library",
  10733. "autoload": {
  10734. "files": [
  10735. "lib/bcmath.php"
  10736. ],
  10737. "psr-4": {
  10738. "bcmath_compat\\": "src"
  10739. }
  10740. },
  10741. "notification-url": "https://packagist.org/downloads/",
  10742. "license": [
  10743. "MIT"
  10744. ],
  10745. "authors": [
  10746. {
  10747. "name": "Jim Wigginton",
  10748. "email": "terrafrost@php.net",
  10749. "homepage": "http://phpseclib.sourceforge.net"
  10750. }
  10751. ],
  10752. "description": "PHP 5.x-8.x polyfill for bcmath extension",
  10753. "keywords": [
  10754. "BigInteger",
  10755. "bcmath",
  10756. "bigdecimal",
  10757. "math",
  10758. "polyfill"
  10759. ],
  10760. "support": {
  10761. "email": "terrafrost@php.net",
  10762. "issues": "https://github.com/phpseclib/bcmath_compat/issues",
  10763. "source": "https://github.com/phpseclib/bcmath_compat"
  10764. },
  10765. "time": "2021-12-16T02:35:52+00:00"
  10766. },
  10767. {
  10768. "name": "phpseclib/phpseclib",
  10769. "version": "3.0.19",
  10770. "source": {
  10771. "type": "git",
  10772. "url": "https://github.com/phpseclib/phpseclib.git",
  10773. "reference": "cc181005cf548bfd8a4896383bb825d859259f95"
  10774. },
  10775. "dist": {
  10776. "type": "zip",
  10777. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/cc181005cf548bfd8a4896383bb825d859259f95",
  10778. "reference": "cc181005cf548bfd8a4896383bb825d859259f95",
  10779. "shasum": "",
  10780. "mirrors": [
  10781. {
  10782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10783. "preferred": true
  10784. }
  10785. ]
  10786. },
  10787. "require": {
  10788. "paragonie/constant_time_encoding": "^1|^2",
  10789. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  10790. "php": ">=5.6.1"
  10791. },
  10792. "require-dev": {
  10793. "phpunit/phpunit": "*"
  10794. },
  10795. "suggest": {
  10796. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  10797. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  10798. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  10799. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  10800. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  10801. },
  10802. "type": "library",
  10803. "autoload": {
  10804. "files": [
  10805. "phpseclib/bootstrap.php"
  10806. ],
  10807. "psr-4": {
  10808. "phpseclib3\\": "phpseclib/"
  10809. }
  10810. },
  10811. "notification-url": "https://packagist.org/downloads/",
  10812. "license": [
  10813. "MIT"
  10814. ],
  10815. "authors": [
  10816. {
  10817. "name": "Jim Wigginton",
  10818. "email": "terrafrost@php.net",
  10819. "role": "Lead Developer"
  10820. },
  10821. {
  10822. "name": "Patrick Monnerat",
  10823. "email": "pm@datasphere.ch",
  10824. "role": "Developer"
  10825. },
  10826. {
  10827. "name": "Andreas Fischer",
  10828. "email": "bantu@phpbb.com",
  10829. "role": "Developer"
  10830. },
  10831. {
  10832. "name": "Hans-Jürgen Petrich",
  10833. "email": "petrich@tronic-media.com",
  10834. "role": "Developer"
  10835. },
  10836. {
  10837. "name": "Graham Campbell",
  10838. "email": "graham@alt-three.com",
  10839. "role": "Developer"
  10840. }
  10841. ],
  10842. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  10843. "homepage": "http://phpseclib.sourceforge.net",
  10844. "keywords": [
  10845. "BigInteger",
  10846. "aes",
  10847. "asn.1",
  10848. "asn1",
  10849. "blowfish",
  10850. "crypto",
  10851. "cryptography",
  10852. "encryption",
  10853. "rsa",
  10854. "security",
  10855. "sftp",
  10856. "signature",
  10857. "signing",
  10858. "ssh",
  10859. "twofish",
  10860. "x.509",
  10861. "x509"
  10862. ],
  10863. "support": {
  10864. "issues": "https://github.com/phpseclib/phpseclib/issues",
  10865. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.19"
  10866. },
  10867. "funding": [
  10868. {
  10869. "url": "https://github.com/terrafrost",
  10870. "type": "github"
  10871. },
  10872. {
  10873. "url": "https://www.patreon.com/phpseclib",
  10874. "type": "patreon"
  10875. },
  10876. {
  10877. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  10878. "type": "tidelift"
  10879. }
  10880. ],
  10881. "time": "2023-03-05T17:13:09+00:00"
  10882. },
  10883. {
  10884. "name": "phpstan/phpdoc-parser",
  10885. "version": "1.22.1",
  10886. "source": {
  10887. "type": "git",
  10888. "url": "https://github.com/phpstan/phpdoc-parser.git",
  10889. "reference": "65c39594fbd8c67abfc68bb323f86447bab79cc0"
  10890. },
  10891. "dist": {
  10892. "type": "zip",
  10893. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/65c39594fbd8c67abfc68bb323f86447bab79cc0",
  10894. "reference": "65c39594fbd8c67abfc68bb323f86447bab79cc0",
  10895. "shasum": "",
  10896. "mirrors": [
  10897. {
  10898. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10899. "preferred": true
  10900. }
  10901. ]
  10902. },
  10903. "require": {
  10904. "php": "^7.2 || ^8.0"
  10905. },
  10906. "require-dev": {
  10907. "doctrine/annotations": "^2.0",
  10908. "nikic/php-parser": "^4.15",
  10909. "php-parallel-lint/php-parallel-lint": "^1.2",
  10910. "phpstan/extension-installer": "^1.0",
  10911. "phpstan/phpstan": "^1.5",
  10912. "phpstan/phpstan-phpunit": "^1.1",
  10913. "phpstan/phpstan-strict-rules": "^1.0",
  10914. "phpunit/phpunit": "^9.5",
  10915. "symfony/process": "^5.2"
  10916. },
  10917. "type": "library",
  10918. "autoload": {
  10919. "psr-4": {
  10920. "PHPStan\\PhpDocParser\\": [
  10921. "src/"
  10922. ]
  10923. }
  10924. },
  10925. "notification-url": "https://packagist.org/downloads/",
  10926. "license": [
  10927. "MIT"
  10928. ],
  10929. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  10930. "support": {
  10931. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  10932. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.22.1"
  10933. },
  10934. "time": "2023-06-29T20:46:06+00:00"
  10935. },
  10936. {
  10937. "name": "phpunit/php-code-coverage",
  10938. "version": "9.2.26",
  10939. "source": {
  10940. "type": "git",
  10941. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10942. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  10943. },
  10944. "dist": {
  10945. "type": "zip",
  10946. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  10947. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  10948. "shasum": "",
  10949. "mirrors": [
  10950. {
  10951. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10952. "preferred": true
  10953. }
  10954. ]
  10955. },
  10956. "require": {
  10957. "ext-dom": "*",
  10958. "ext-libxml": "*",
  10959. "ext-xmlwriter": "*",
  10960. "nikic/php-parser": "^4.15",
  10961. "php": ">=7.3",
  10962. "phpunit/php-file-iterator": "^3.0.3",
  10963. "phpunit/php-text-template": "^2.0.2",
  10964. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  10965. "sebastian/complexity": "^2.0",
  10966. "sebastian/environment": "^5.1.2",
  10967. "sebastian/lines-of-code": "^1.0.3",
  10968. "sebastian/version": "^3.0.1",
  10969. "theseer/tokenizer": "^1.2.0"
  10970. },
  10971. "require-dev": {
  10972. "phpunit/phpunit": "^9.3"
  10973. },
  10974. "suggest": {
  10975. "ext-pcov": "PHP extension that provides line coverage",
  10976. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10977. },
  10978. "type": "library",
  10979. "extra": {
  10980. "branch-alias": {
  10981. "dev-master": "9.2-dev"
  10982. }
  10983. },
  10984. "autoload": {
  10985. "classmap": [
  10986. "src/"
  10987. ]
  10988. },
  10989. "notification-url": "https://packagist.org/downloads/",
  10990. "license": [
  10991. "BSD-3-Clause"
  10992. ],
  10993. "authors": [
  10994. {
  10995. "name": "Sebastian Bergmann",
  10996. "email": "sebastian@phpunit.de",
  10997. "role": "lead"
  10998. }
  10999. ],
  11000. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11001. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11002. "keywords": [
  11003. "coverage",
  11004. "testing",
  11005. "xunit"
  11006. ],
  11007. "support": {
  11008. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11009. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  11010. },
  11011. "funding": [
  11012. {
  11013. "url": "https://github.com/sebastianbergmann",
  11014. "type": "github"
  11015. }
  11016. ],
  11017. "time": "2023-03-06T12:58:08+00:00"
  11018. },
  11019. {
  11020. "name": "phpunit/php-file-iterator",
  11021. "version": "3.0.6",
  11022. "source": {
  11023. "type": "git",
  11024. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11025. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  11026. },
  11027. "dist": {
  11028. "type": "zip",
  11029. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11030. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11031. "shasum": "",
  11032. "mirrors": [
  11033. {
  11034. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11035. "preferred": true
  11036. }
  11037. ]
  11038. },
  11039. "require": {
  11040. "php": ">=7.3"
  11041. },
  11042. "require-dev": {
  11043. "phpunit/phpunit": "^9.3"
  11044. },
  11045. "type": "library",
  11046. "extra": {
  11047. "branch-alias": {
  11048. "dev-master": "3.0-dev"
  11049. }
  11050. },
  11051. "autoload": {
  11052. "classmap": [
  11053. "src/"
  11054. ]
  11055. },
  11056. "notification-url": "https://packagist.org/downloads/",
  11057. "license": [
  11058. "BSD-3-Clause"
  11059. ],
  11060. "authors": [
  11061. {
  11062. "name": "Sebastian Bergmann",
  11063. "email": "sebastian@phpunit.de",
  11064. "role": "lead"
  11065. }
  11066. ],
  11067. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11068. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11069. "keywords": [
  11070. "filesystem",
  11071. "iterator"
  11072. ],
  11073. "support": {
  11074. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11075. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  11076. },
  11077. "funding": [
  11078. {
  11079. "url": "https://github.com/sebastianbergmann",
  11080. "type": "github"
  11081. }
  11082. ],
  11083. "time": "2021-12-02T12:48:52+00:00"
  11084. },
  11085. {
  11086. "name": "phpunit/php-invoker",
  11087. "version": "3.1.1",
  11088. "source": {
  11089. "type": "git",
  11090. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11091. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  11092. },
  11093. "dist": {
  11094. "type": "zip",
  11095. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11096. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11097. "shasum": "",
  11098. "mirrors": [
  11099. {
  11100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11101. "preferred": true
  11102. }
  11103. ]
  11104. },
  11105. "require": {
  11106. "php": ">=7.3"
  11107. },
  11108. "require-dev": {
  11109. "ext-pcntl": "*",
  11110. "phpunit/phpunit": "^9.3"
  11111. },
  11112. "suggest": {
  11113. "ext-pcntl": "*"
  11114. },
  11115. "type": "library",
  11116. "extra": {
  11117. "branch-alias": {
  11118. "dev-master": "3.1-dev"
  11119. }
  11120. },
  11121. "autoload": {
  11122. "classmap": [
  11123. "src/"
  11124. ]
  11125. },
  11126. "notification-url": "https://packagist.org/downloads/",
  11127. "license": [
  11128. "BSD-3-Clause"
  11129. ],
  11130. "authors": [
  11131. {
  11132. "name": "Sebastian Bergmann",
  11133. "email": "sebastian@phpunit.de",
  11134. "role": "lead"
  11135. }
  11136. ],
  11137. "description": "Invoke callables with a timeout",
  11138. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11139. "keywords": [
  11140. "process"
  11141. ],
  11142. "support": {
  11143. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11144. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  11145. },
  11146. "funding": [
  11147. {
  11148. "url": "https://github.com/sebastianbergmann",
  11149. "type": "github"
  11150. }
  11151. ],
  11152. "time": "2020-09-28T05:58:55+00:00"
  11153. },
  11154. {
  11155. "name": "phpunit/php-text-template",
  11156. "version": "2.0.4",
  11157. "source": {
  11158. "type": "git",
  11159. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11160. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  11161. },
  11162. "dist": {
  11163. "type": "zip",
  11164. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11165. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11166. "shasum": "",
  11167. "mirrors": [
  11168. {
  11169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11170. "preferred": true
  11171. }
  11172. ]
  11173. },
  11174. "require": {
  11175. "php": ">=7.3"
  11176. },
  11177. "require-dev": {
  11178. "phpunit/phpunit": "^9.3"
  11179. },
  11180. "type": "library",
  11181. "extra": {
  11182. "branch-alias": {
  11183. "dev-master": "2.0-dev"
  11184. }
  11185. },
  11186. "autoload": {
  11187. "classmap": [
  11188. "src/"
  11189. ]
  11190. },
  11191. "notification-url": "https://packagist.org/downloads/",
  11192. "license": [
  11193. "BSD-3-Clause"
  11194. ],
  11195. "authors": [
  11196. {
  11197. "name": "Sebastian Bergmann",
  11198. "email": "sebastian@phpunit.de",
  11199. "role": "lead"
  11200. }
  11201. ],
  11202. "description": "Simple template engine.",
  11203. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11204. "keywords": [
  11205. "template"
  11206. ],
  11207. "support": {
  11208. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11209. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  11210. },
  11211. "funding": [
  11212. {
  11213. "url": "https://github.com/sebastianbergmann",
  11214. "type": "github"
  11215. }
  11216. ],
  11217. "time": "2020-10-26T05:33:50+00:00"
  11218. },
  11219. {
  11220. "name": "phpunit/php-timer",
  11221. "version": "5.0.3",
  11222. "source": {
  11223. "type": "git",
  11224. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11225. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  11226. },
  11227. "dist": {
  11228. "type": "zip",
  11229. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11230. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11231. "shasum": "",
  11232. "mirrors": [
  11233. {
  11234. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11235. "preferred": true
  11236. }
  11237. ]
  11238. },
  11239. "require": {
  11240. "php": ">=7.3"
  11241. },
  11242. "require-dev": {
  11243. "phpunit/phpunit": "^9.3"
  11244. },
  11245. "type": "library",
  11246. "extra": {
  11247. "branch-alias": {
  11248. "dev-master": "5.0-dev"
  11249. }
  11250. },
  11251. "autoload": {
  11252. "classmap": [
  11253. "src/"
  11254. ]
  11255. },
  11256. "notification-url": "https://packagist.org/downloads/",
  11257. "license": [
  11258. "BSD-3-Clause"
  11259. ],
  11260. "authors": [
  11261. {
  11262. "name": "Sebastian Bergmann",
  11263. "email": "sebastian@phpunit.de",
  11264. "role": "lead"
  11265. }
  11266. ],
  11267. "description": "Utility class for timing",
  11268. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11269. "keywords": [
  11270. "timer"
  11271. ],
  11272. "support": {
  11273. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11274. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  11275. },
  11276. "funding": [
  11277. {
  11278. "url": "https://github.com/sebastianbergmann",
  11279. "type": "github"
  11280. }
  11281. ],
  11282. "time": "2020-10-26T13:16:10+00:00"
  11283. },
  11284. {
  11285. "name": "phpunit/phpunit",
  11286. "version": "9.6.9",
  11287. "source": {
  11288. "type": "git",
  11289. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11290. "reference": "a9aceaf20a682aeacf28d582654a1670d8826778"
  11291. },
  11292. "dist": {
  11293. "type": "zip",
  11294. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a9aceaf20a682aeacf28d582654a1670d8826778",
  11295. "reference": "a9aceaf20a682aeacf28d582654a1670d8826778",
  11296. "shasum": "",
  11297. "mirrors": [
  11298. {
  11299. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11300. "preferred": true
  11301. }
  11302. ]
  11303. },
  11304. "require": {
  11305. "doctrine/instantiator": "^1.3.1 || ^2",
  11306. "ext-dom": "*",
  11307. "ext-json": "*",
  11308. "ext-libxml": "*",
  11309. "ext-mbstring": "*",
  11310. "ext-xml": "*",
  11311. "ext-xmlwriter": "*",
  11312. "myclabs/deep-copy": "^1.10.1",
  11313. "phar-io/manifest": "^2.0.3",
  11314. "phar-io/version": "^3.0.2",
  11315. "php": ">=7.3",
  11316. "phpunit/php-code-coverage": "^9.2.13",
  11317. "phpunit/php-file-iterator": "^3.0.5",
  11318. "phpunit/php-invoker": "^3.1.1",
  11319. "phpunit/php-text-template": "^2.0.3",
  11320. "phpunit/php-timer": "^5.0.2",
  11321. "sebastian/cli-parser": "^1.0.1",
  11322. "sebastian/code-unit": "^1.0.6",
  11323. "sebastian/comparator": "^4.0.8",
  11324. "sebastian/diff": "^4.0.3",
  11325. "sebastian/environment": "^5.1.3",
  11326. "sebastian/exporter": "^4.0.5",
  11327. "sebastian/global-state": "^5.0.1",
  11328. "sebastian/object-enumerator": "^4.0.3",
  11329. "sebastian/resource-operations": "^3.0.3",
  11330. "sebastian/type": "^3.2",
  11331. "sebastian/version": "^3.0.2"
  11332. },
  11333. "suggest": {
  11334. "ext-soap": "To be able to generate mocks based on WSDL files",
  11335. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  11336. },
  11337. "bin": [
  11338. "phpunit"
  11339. ],
  11340. "type": "library",
  11341. "extra": {
  11342. "branch-alias": {
  11343. "dev-master": "9.6-dev"
  11344. }
  11345. },
  11346. "autoload": {
  11347. "files": [
  11348. "src/Framework/Assert/Functions.php"
  11349. ],
  11350. "classmap": [
  11351. "src/"
  11352. ]
  11353. },
  11354. "notification-url": "https://packagist.org/downloads/",
  11355. "license": [
  11356. "BSD-3-Clause"
  11357. ],
  11358. "authors": [
  11359. {
  11360. "name": "Sebastian Bergmann",
  11361. "email": "sebastian@phpunit.de",
  11362. "role": "lead"
  11363. }
  11364. ],
  11365. "description": "The PHP Unit Testing framework.",
  11366. "homepage": "https://phpunit.de/",
  11367. "keywords": [
  11368. "phpunit",
  11369. "testing",
  11370. "xunit"
  11371. ],
  11372. "support": {
  11373. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11374. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  11375. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.9"
  11376. },
  11377. "funding": [
  11378. {
  11379. "url": "https://phpunit.de/sponsors.html",
  11380. "type": "custom"
  11381. },
  11382. {
  11383. "url": "https://github.com/sebastianbergmann",
  11384. "type": "github"
  11385. },
  11386. {
  11387. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  11388. "type": "tidelift"
  11389. }
  11390. ],
  11391. "time": "2023-06-11T06:13:56+00:00"
  11392. },
  11393. {
  11394. "name": "react/promise",
  11395. "version": "v2.9.0",
  11396. "source": {
  11397. "type": "git",
  11398. "url": "https://github.com/reactphp/promise.git",
  11399. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910"
  11400. },
  11401. "dist": {
  11402. "type": "zip",
  11403. "url": "https://api.github.com/repos/reactphp/promise/zipball/234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  11404. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  11405. "shasum": "",
  11406. "mirrors": [
  11407. {
  11408. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11409. "preferred": true
  11410. }
  11411. ]
  11412. },
  11413. "require": {
  11414. "php": ">=5.4.0"
  11415. },
  11416. "require-dev": {
  11417. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36"
  11418. },
  11419. "type": "library",
  11420. "autoload": {
  11421. "files": [
  11422. "src/functions_include.php"
  11423. ],
  11424. "psr-4": {
  11425. "React\\Promise\\": "src/"
  11426. }
  11427. },
  11428. "notification-url": "https://packagist.org/downloads/",
  11429. "license": [
  11430. "MIT"
  11431. ],
  11432. "authors": [
  11433. {
  11434. "name": "Jan Sorgalla",
  11435. "email": "jsorgalla@gmail.com",
  11436. "homepage": "https://sorgalla.com/"
  11437. },
  11438. {
  11439. "name": "Christian Lück",
  11440. "email": "christian@clue.engineering",
  11441. "homepage": "https://clue.engineering/"
  11442. },
  11443. {
  11444. "name": "Cees-Jan Kiewiet",
  11445. "email": "reactphp@ceesjankiewiet.nl",
  11446. "homepage": "https://wyrihaximus.net/"
  11447. },
  11448. {
  11449. "name": "Chris Boden",
  11450. "email": "cboden@gmail.com",
  11451. "homepage": "https://cboden.dev/"
  11452. }
  11453. ],
  11454. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  11455. "keywords": [
  11456. "promise",
  11457. "promises"
  11458. ],
  11459. "support": {
  11460. "issues": "https://github.com/reactphp/promise/issues",
  11461. "source": "https://github.com/reactphp/promise/tree/v2.9.0"
  11462. },
  11463. "funding": [
  11464. {
  11465. "url": "https://github.com/WyriHaximus",
  11466. "type": "github"
  11467. },
  11468. {
  11469. "url": "https://github.com/clue",
  11470. "type": "github"
  11471. }
  11472. ],
  11473. "time": "2022-02-11T10:27:51+00:00"
  11474. },
  11475. {
  11476. "name": "sebastian/cli-parser",
  11477. "version": "1.0.1",
  11478. "source": {
  11479. "type": "git",
  11480. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11481. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  11482. },
  11483. "dist": {
  11484. "type": "zip",
  11485. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11486. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11487. "shasum": "",
  11488. "mirrors": [
  11489. {
  11490. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11491. "preferred": true
  11492. }
  11493. ]
  11494. },
  11495. "require": {
  11496. "php": ">=7.3"
  11497. },
  11498. "require-dev": {
  11499. "phpunit/phpunit": "^9.3"
  11500. },
  11501. "type": "library",
  11502. "extra": {
  11503. "branch-alias": {
  11504. "dev-master": "1.0-dev"
  11505. }
  11506. },
  11507. "autoload": {
  11508. "classmap": [
  11509. "src/"
  11510. ]
  11511. },
  11512. "notification-url": "https://packagist.org/downloads/",
  11513. "license": [
  11514. "BSD-3-Clause"
  11515. ],
  11516. "authors": [
  11517. {
  11518. "name": "Sebastian Bergmann",
  11519. "email": "sebastian@phpunit.de",
  11520. "role": "lead"
  11521. }
  11522. ],
  11523. "description": "Library for parsing CLI options",
  11524. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11525. "support": {
  11526. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11527. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  11528. },
  11529. "funding": [
  11530. {
  11531. "url": "https://github.com/sebastianbergmann",
  11532. "type": "github"
  11533. }
  11534. ],
  11535. "time": "2020-09-28T06:08:49+00:00"
  11536. },
  11537. {
  11538. "name": "sebastian/code-unit",
  11539. "version": "1.0.8",
  11540. "source": {
  11541. "type": "git",
  11542. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11543. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  11544. },
  11545. "dist": {
  11546. "type": "zip",
  11547. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  11548. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  11549. "shasum": "",
  11550. "mirrors": [
  11551. {
  11552. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11553. "preferred": true
  11554. }
  11555. ]
  11556. },
  11557. "require": {
  11558. "php": ">=7.3"
  11559. },
  11560. "require-dev": {
  11561. "phpunit/phpunit": "^9.3"
  11562. },
  11563. "type": "library",
  11564. "extra": {
  11565. "branch-alias": {
  11566. "dev-master": "1.0-dev"
  11567. }
  11568. },
  11569. "autoload": {
  11570. "classmap": [
  11571. "src/"
  11572. ]
  11573. },
  11574. "notification-url": "https://packagist.org/downloads/",
  11575. "license": [
  11576. "BSD-3-Clause"
  11577. ],
  11578. "authors": [
  11579. {
  11580. "name": "Sebastian Bergmann",
  11581. "email": "sebastian@phpunit.de",
  11582. "role": "lead"
  11583. }
  11584. ],
  11585. "description": "Collection of value objects that represent the PHP code units",
  11586. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11587. "support": {
  11588. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11589. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  11590. },
  11591. "funding": [
  11592. {
  11593. "url": "https://github.com/sebastianbergmann",
  11594. "type": "github"
  11595. }
  11596. ],
  11597. "time": "2020-10-26T13:08:54+00:00"
  11598. },
  11599. {
  11600. "name": "sebastian/code-unit-reverse-lookup",
  11601. "version": "2.0.3",
  11602. "source": {
  11603. "type": "git",
  11604. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11605. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  11606. },
  11607. "dist": {
  11608. "type": "zip",
  11609. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  11610. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  11611. "shasum": "",
  11612. "mirrors": [
  11613. {
  11614. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11615. "preferred": true
  11616. }
  11617. ]
  11618. },
  11619. "require": {
  11620. "php": ">=7.3"
  11621. },
  11622. "require-dev": {
  11623. "phpunit/phpunit": "^9.3"
  11624. },
  11625. "type": "library",
  11626. "extra": {
  11627. "branch-alias": {
  11628. "dev-master": "2.0-dev"
  11629. }
  11630. },
  11631. "autoload": {
  11632. "classmap": [
  11633. "src/"
  11634. ]
  11635. },
  11636. "notification-url": "https://packagist.org/downloads/",
  11637. "license": [
  11638. "BSD-3-Clause"
  11639. ],
  11640. "authors": [
  11641. {
  11642. "name": "Sebastian Bergmann",
  11643. "email": "sebastian@phpunit.de"
  11644. }
  11645. ],
  11646. "description": "Looks up which function or method a line of code belongs to",
  11647. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11648. "support": {
  11649. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11650. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  11651. },
  11652. "funding": [
  11653. {
  11654. "url": "https://github.com/sebastianbergmann",
  11655. "type": "github"
  11656. }
  11657. ],
  11658. "time": "2020-09-28T05:30:19+00:00"
  11659. },
  11660. {
  11661. "name": "sebastian/comparator",
  11662. "version": "4.0.8",
  11663. "source": {
  11664. "type": "git",
  11665. "url": "https://github.com/sebastianbergmann/comparator.git",
  11666. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  11667. },
  11668. "dist": {
  11669. "type": "zip",
  11670. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  11671. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  11672. "shasum": "",
  11673. "mirrors": [
  11674. {
  11675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11676. "preferred": true
  11677. }
  11678. ]
  11679. },
  11680. "require": {
  11681. "php": ">=7.3",
  11682. "sebastian/diff": "^4.0",
  11683. "sebastian/exporter": "^4.0"
  11684. },
  11685. "require-dev": {
  11686. "phpunit/phpunit": "^9.3"
  11687. },
  11688. "type": "library",
  11689. "extra": {
  11690. "branch-alias": {
  11691. "dev-master": "4.0-dev"
  11692. }
  11693. },
  11694. "autoload": {
  11695. "classmap": [
  11696. "src/"
  11697. ]
  11698. },
  11699. "notification-url": "https://packagist.org/downloads/",
  11700. "license": [
  11701. "BSD-3-Clause"
  11702. ],
  11703. "authors": [
  11704. {
  11705. "name": "Sebastian Bergmann",
  11706. "email": "sebastian@phpunit.de"
  11707. },
  11708. {
  11709. "name": "Jeff Welch",
  11710. "email": "whatthejeff@gmail.com"
  11711. },
  11712. {
  11713. "name": "Volker Dusch",
  11714. "email": "github@wallbash.com"
  11715. },
  11716. {
  11717. "name": "Bernhard Schussek",
  11718. "email": "bschussek@2bepublished.at"
  11719. }
  11720. ],
  11721. "description": "Provides the functionality to compare PHP values for equality",
  11722. "homepage": "https://github.com/sebastianbergmann/comparator",
  11723. "keywords": [
  11724. "comparator",
  11725. "compare",
  11726. "equality"
  11727. ],
  11728. "support": {
  11729. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11730. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  11731. },
  11732. "funding": [
  11733. {
  11734. "url": "https://github.com/sebastianbergmann",
  11735. "type": "github"
  11736. }
  11737. ],
  11738. "time": "2022-09-14T12:41:17+00:00"
  11739. },
  11740. {
  11741. "name": "sebastian/complexity",
  11742. "version": "2.0.2",
  11743. "source": {
  11744. "type": "git",
  11745. "url": "https://github.com/sebastianbergmann/complexity.git",
  11746. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  11747. },
  11748. "dist": {
  11749. "type": "zip",
  11750. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  11751. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  11752. "shasum": "",
  11753. "mirrors": [
  11754. {
  11755. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11756. "preferred": true
  11757. }
  11758. ]
  11759. },
  11760. "require": {
  11761. "nikic/php-parser": "^4.7",
  11762. "php": ">=7.3"
  11763. },
  11764. "require-dev": {
  11765. "phpunit/phpunit": "^9.3"
  11766. },
  11767. "type": "library",
  11768. "extra": {
  11769. "branch-alias": {
  11770. "dev-master": "2.0-dev"
  11771. }
  11772. },
  11773. "autoload": {
  11774. "classmap": [
  11775. "src/"
  11776. ]
  11777. },
  11778. "notification-url": "https://packagist.org/downloads/",
  11779. "license": [
  11780. "BSD-3-Clause"
  11781. ],
  11782. "authors": [
  11783. {
  11784. "name": "Sebastian Bergmann",
  11785. "email": "sebastian@phpunit.de",
  11786. "role": "lead"
  11787. }
  11788. ],
  11789. "description": "Library for calculating the complexity of PHP code units",
  11790. "homepage": "https://github.com/sebastianbergmann/complexity",
  11791. "support": {
  11792. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11793. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  11794. },
  11795. "funding": [
  11796. {
  11797. "url": "https://github.com/sebastianbergmann",
  11798. "type": "github"
  11799. }
  11800. ],
  11801. "time": "2020-10-26T15:52:27+00:00"
  11802. },
  11803. {
  11804. "name": "sebastian/diff",
  11805. "version": "4.0.5",
  11806. "source": {
  11807. "type": "git",
  11808. "url": "https://github.com/sebastianbergmann/diff.git",
  11809. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  11810. },
  11811. "dist": {
  11812. "type": "zip",
  11813. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  11814. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  11815. "shasum": "",
  11816. "mirrors": [
  11817. {
  11818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11819. "preferred": true
  11820. }
  11821. ]
  11822. },
  11823. "require": {
  11824. "php": ">=7.3"
  11825. },
  11826. "require-dev": {
  11827. "phpunit/phpunit": "^9.3",
  11828. "symfony/process": "^4.2 || ^5"
  11829. },
  11830. "type": "library",
  11831. "extra": {
  11832. "branch-alias": {
  11833. "dev-master": "4.0-dev"
  11834. }
  11835. },
  11836. "autoload": {
  11837. "classmap": [
  11838. "src/"
  11839. ]
  11840. },
  11841. "notification-url": "https://packagist.org/downloads/",
  11842. "license": [
  11843. "BSD-3-Clause"
  11844. ],
  11845. "authors": [
  11846. {
  11847. "name": "Sebastian Bergmann",
  11848. "email": "sebastian@phpunit.de"
  11849. },
  11850. {
  11851. "name": "Kore Nordmann",
  11852. "email": "mail@kore-nordmann.de"
  11853. }
  11854. ],
  11855. "description": "Diff implementation",
  11856. "homepage": "https://github.com/sebastianbergmann/diff",
  11857. "keywords": [
  11858. "diff",
  11859. "udiff",
  11860. "unidiff",
  11861. "unified diff"
  11862. ],
  11863. "support": {
  11864. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11865. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  11866. },
  11867. "funding": [
  11868. {
  11869. "url": "https://github.com/sebastianbergmann",
  11870. "type": "github"
  11871. }
  11872. ],
  11873. "time": "2023-05-07T05:35:17+00:00"
  11874. },
  11875. {
  11876. "name": "sebastian/environment",
  11877. "version": "5.1.5",
  11878. "source": {
  11879. "type": "git",
  11880. "url": "https://github.com/sebastianbergmann/environment.git",
  11881. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  11882. },
  11883. "dist": {
  11884. "type": "zip",
  11885. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  11886. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  11887. "shasum": "",
  11888. "mirrors": [
  11889. {
  11890. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11891. "preferred": true
  11892. }
  11893. ]
  11894. },
  11895. "require": {
  11896. "php": ">=7.3"
  11897. },
  11898. "require-dev": {
  11899. "phpunit/phpunit": "^9.3"
  11900. },
  11901. "suggest": {
  11902. "ext-posix": "*"
  11903. },
  11904. "type": "library",
  11905. "extra": {
  11906. "branch-alias": {
  11907. "dev-master": "5.1-dev"
  11908. }
  11909. },
  11910. "autoload": {
  11911. "classmap": [
  11912. "src/"
  11913. ]
  11914. },
  11915. "notification-url": "https://packagist.org/downloads/",
  11916. "license": [
  11917. "BSD-3-Clause"
  11918. ],
  11919. "authors": [
  11920. {
  11921. "name": "Sebastian Bergmann",
  11922. "email": "sebastian@phpunit.de"
  11923. }
  11924. ],
  11925. "description": "Provides functionality to handle HHVM/PHP environments",
  11926. "homepage": "http://www.github.com/sebastianbergmann/environment",
  11927. "keywords": [
  11928. "Xdebug",
  11929. "environment",
  11930. "hhvm"
  11931. ],
  11932. "support": {
  11933. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11934. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  11935. },
  11936. "funding": [
  11937. {
  11938. "url": "https://github.com/sebastianbergmann",
  11939. "type": "github"
  11940. }
  11941. ],
  11942. "time": "2023-02-03T06:03:51+00:00"
  11943. },
  11944. {
  11945. "name": "sebastian/exporter",
  11946. "version": "4.0.5",
  11947. "source": {
  11948. "type": "git",
  11949. "url": "https://github.com/sebastianbergmann/exporter.git",
  11950. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  11951. },
  11952. "dist": {
  11953. "type": "zip",
  11954. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  11955. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  11956. "shasum": "",
  11957. "mirrors": [
  11958. {
  11959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11960. "preferred": true
  11961. }
  11962. ]
  11963. },
  11964. "require": {
  11965. "php": ">=7.3",
  11966. "sebastian/recursion-context": "^4.0"
  11967. },
  11968. "require-dev": {
  11969. "ext-mbstring": "*",
  11970. "phpunit/phpunit": "^9.3"
  11971. },
  11972. "type": "library",
  11973. "extra": {
  11974. "branch-alias": {
  11975. "dev-master": "4.0-dev"
  11976. }
  11977. },
  11978. "autoload": {
  11979. "classmap": [
  11980. "src/"
  11981. ]
  11982. },
  11983. "notification-url": "https://packagist.org/downloads/",
  11984. "license": [
  11985. "BSD-3-Clause"
  11986. ],
  11987. "authors": [
  11988. {
  11989. "name": "Sebastian Bergmann",
  11990. "email": "sebastian@phpunit.de"
  11991. },
  11992. {
  11993. "name": "Jeff Welch",
  11994. "email": "whatthejeff@gmail.com"
  11995. },
  11996. {
  11997. "name": "Volker Dusch",
  11998. "email": "github@wallbash.com"
  11999. },
  12000. {
  12001. "name": "Adam Harvey",
  12002. "email": "aharvey@php.net"
  12003. },
  12004. {
  12005. "name": "Bernhard Schussek",
  12006. "email": "bschussek@gmail.com"
  12007. }
  12008. ],
  12009. "description": "Provides the functionality to export PHP variables for visualization",
  12010. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12011. "keywords": [
  12012. "export",
  12013. "exporter"
  12014. ],
  12015. "support": {
  12016. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12017. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  12018. },
  12019. "funding": [
  12020. {
  12021. "url": "https://github.com/sebastianbergmann",
  12022. "type": "github"
  12023. }
  12024. ],
  12025. "time": "2022-09-14T06:03:37+00:00"
  12026. },
  12027. {
  12028. "name": "sebastian/global-state",
  12029. "version": "5.0.5",
  12030. "source": {
  12031. "type": "git",
  12032. "url": "https://github.com/sebastianbergmann/global-state.git",
  12033. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  12034. },
  12035. "dist": {
  12036. "type": "zip",
  12037. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12038. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12039. "shasum": "",
  12040. "mirrors": [
  12041. {
  12042. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12043. "preferred": true
  12044. }
  12045. ]
  12046. },
  12047. "require": {
  12048. "php": ">=7.3",
  12049. "sebastian/object-reflector": "^2.0",
  12050. "sebastian/recursion-context": "^4.0"
  12051. },
  12052. "require-dev": {
  12053. "ext-dom": "*",
  12054. "phpunit/phpunit": "^9.3"
  12055. },
  12056. "suggest": {
  12057. "ext-uopz": "*"
  12058. },
  12059. "type": "library",
  12060. "extra": {
  12061. "branch-alias": {
  12062. "dev-master": "5.0-dev"
  12063. }
  12064. },
  12065. "autoload": {
  12066. "classmap": [
  12067. "src/"
  12068. ]
  12069. },
  12070. "notification-url": "https://packagist.org/downloads/",
  12071. "license": [
  12072. "BSD-3-Clause"
  12073. ],
  12074. "authors": [
  12075. {
  12076. "name": "Sebastian Bergmann",
  12077. "email": "sebastian@phpunit.de"
  12078. }
  12079. ],
  12080. "description": "Snapshotting of global state",
  12081. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  12082. "keywords": [
  12083. "global state"
  12084. ],
  12085. "support": {
  12086. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12087. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  12088. },
  12089. "funding": [
  12090. {
  12091. "url": "https://github.com/sebastianbergmann",
  12092. "type": "github"
  12093. }
  12094. ],
  12095. "time": "2022-02-14T08:28:10+00:00"
  12096. },
  12097. {
  12098. "name": "sebastian/lines-of-code",
  12099. "version": "1.0.3",
  12100. "source": {
  12101. "type": "git",
  12102. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12103. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  12104. },
  12105. "dist": {
  12106. "type": "zip",
  12107. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12108. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12109. "shasum": "",
  12110. "mirrors": [
  12111. {
  12112. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12113. "preferred": true
  12114. }
  12115. ]
  12116. },
  12117. "require": {
  12118. "nikic/php-parser": "^4.6",
  12119. "php": ">=7.3"
  12120. },
  12121. "require-dev": {
  12122. "phpunit/phpunit": "^9.3"
  12123. },
  12124. "type": "library",
  12125. "extra": {
  12126. "branch-alias": {
  12127. "dev-master": "1.0-dev"
  12128. }
  12129. },
  12130. "autoload": {
  12131. "classmap": [
  12132. "src/"
  12133. ]
  12134. },
  12135. "notification-url": "https://packagist.org/downloads/",
  12136. "license": [
  12137. "BSD-3-Clause"
  12138. ],
  12139. "authors": [
  12140. {
  12141. "name": "Sebastian Bergmann",
  12142. "email": "sebastian@phpunit.de",
  12143. "role": "lead"
  12144. }
  12145. ],
  12146. "description": "Library for counting the lines of code in PHP source code",
  12147. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12148. "support": {
  12149. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12150. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  12151. },
  12152. "funding": [
  12153. {
  12154. "url": "https://github.com/sebastianbergmann",
  12155. "type": "github"
  12156. }
  12157. ],
  12158. "time": "2020-11-28T06:42:11+00:00"
  12159. },
  12160. {
  12161. "name": "sebastian/object-enumerator",
  12162. "version": "4.0.4",
  12163. "source": {
  12164. "type": "git",
  12165. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12166. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  12167. },
  12168. "dist": {
  12169. "type": "zip",
  12170. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  12171. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  12172. "shasum": "",
  12173. "mirrors": [
  12174. {
  12175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12176. "preferred": true
  12177. }
  12178. ]
  12179. },
  12180. "require": {
  12181. "php": ">=7.3",
  12182. "sebastian/object-reflector": "^2.0",
  12183. "sebastian/recursion-context": "^4.0"
  12184. },
  12185. "require-dev": {
  12186. "phpunit/phpunit": "^9.3"
  12187. },
  12188. "type": "library",
  12189. "extra": {
  12190. "branch-alias": {
  12191. "dev-master": "4.0-dev"
  12192. }
  12193. },
  12194. "autoload": {
  12195. "classmap": [
  12196. "src/"
  12197. ]
  12198. },
  12199. "notification-url": "https://packagist.org/downloads/",
  12200. "license": [
  12201. "BSD-3-Clause"
  12202. ],
  12203. "authors": [
  12204. {
  12205. "name": "Sebastian Bergmann",
  12206. "email": "sebastian@phpunit.de"
  12207. }
  12208. ],
  12209. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12210. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12211. "support": {
  12212. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12213. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  12214. },
  12215. "funding": [
  12216. {
  12217. "url": "https://github.com/sebastianbergmann",
  12218. "type": "github"
  12219. }
  12220. ],
  12221. "time": "2020-10-26T13:12:34+00:00"
  12222. },
  12223. {
  12224. "name": "sebastian/object-reflector",
  12225. "version": "2.0.4",
  12226. "source": {
  12227. "type": "git",
  12228. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12229. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  12230. },
  12231. "dist": {
  12232. "type": "zip",
  12233. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12234. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12235. "shasum": "",
  12236. "mirrors": [
  12237. {
  12238. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12239. "preferred": true
  12240. }
  12241. ]
  12242. },
  12243. "require": {
  12244. "php": ">=7.3"
  12245. },
  12246. "require-dev": {
  12247. "phpunit/phpunit": "^9.3"
  12248. },
  12249. "type": "library",
  12250. "extra": {
  12251. "branch-alias": {
  12252. "dev-master": "2.0-dev"
  12253. }
  12254. },
  12255. "autoload": {
  12256. "classmap": [
  12257. "src/"
  12258. ]
  12259. },
  12260. "notification-url": "https://packagist.org/downloads/",
  12261. "license": [
  12262. "BSD-3-Clause"
  12263. ],
  12264. "authors": [
  12265. {
  12266. "name": "Sebastian Bergmann",
  12267. "email": "sebastian@phpunit.de"
  12268. }
  12269. ],
  12270. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12271. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12272. "support": {
  12273. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12274. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  12275. },
  12276. "funding": [
  12277. {
  12278. "url": "https://github.com/sebastianbergmann",
  12279. "type": "github"
  12280. }
  12281. ],
  12282. "time": "2020-10-26T13:14:26+00:00"
  12283. },
  12284. {
  12285. "name": "sebastian/recursion-context",
  12286. "version": "4.0.5",
  12287. "source": {
  12288. "type": "git",
  12289. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12290. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  12291. },
  12292. "dist": {
  12293. "type": "zip",
  12294. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  12295. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  12296. "shasum": "",
  12297. "mirrors": [
  12298. {
  12299. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12300. "preferred": true
  12301. }
  12302. ]
  12303. },
  12304. "require": {
  12305. "php": ">=7.3"
  12306. },
  12307. "require-dev": {
  12308. "phpunit/phpunit": "^9.3"
  12309. },
  12310. "type": "library",
  12311. "extra": {
  12312. "branch-alias": {
  12313. "dev-master": "4.0-dev"
  12314. }
  12315. },
  12316. "autoload": {
  12317. "classmap": [
  12318. "src/"
  12319. ]
  12320. },
  12321. "notification-url": "https://packagist.org/downloads/",
  12322. "license": [
  12323. "BSD-3-Clause"
  12324. ],
  12325. "authors": [
  12326. {
  12327. "name": "Sebastian Bergmann",
  12328. "email": "sebastian@phpunit.de"
  12329. },
  12330. {
  12331. "name": "Jeff Welch",
  12332. "email": "whatthejeff@gmail.com"
  12333. },
  12334. {
  12335. "name": "Adam Harvey",
  12336. "email": "aharvey@php.net"
  12337. }
  12338. ],
  12339. "description": "Provides functionality to recursively process PHP variables",
  12340. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12341. "support": {
  12342. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12343. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  12344. },
  12345. "funding": [
  12346. {
  12347. "url": "https://github.com/sebastianbergmann",
  12348. "type": "github"
  12349. }
  12350. ],
  12351. "time": "2023-02-03T06:07:39+00:00"
  12352. },
  12353. {
  12354. "name": "sebastian/resource-operations",
  12355. "version": "3.0.3",
  12356. "source": {
  12357. "type": "git",
  12358. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  12359. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  12360. },
  12361. "dist": {
  12362. "type": "zip",
  12363. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12364. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12365. "shasum": "",
  12366. "mirrors": [
  12367. {
  12368. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12369. "preferred": true
  12370. }
  12371. ]
  12372. },
  12373. "require": {
  12374. "php": ">=7.3"
  12375. },
  12376. "require-dev": {
  12377. "phpunit/phpunit": "^9.0"
  12378. },
  12379. "type": "library",
  12380. "extra": {
  12381. "branch-alias": {
  12382. "dev-master": "3.0-dev"
  12383. }
  12384. },
  12385. "autoload": {
  12386. "classmap": [
  12387. "src/"
  12388. ]
  12389. },
  12390. "notification-url": "https://packagist.org/downloads/",
  12391. "license": [
  12392. "BSD-3-Clause"
  12393. ],
  12394. "authors": [
  12395. {
  12396. "name": "Sebastian Bergmann",
  12397. "email": "sebastian@phpunit.de"
  12398. }
  12399. ],
  12400. "description": "Provides a list of PHP built-in functions that operate on resources",
  12401. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  12402. "support": {
  12403. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  12404. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  12405. },
  12406. "funding": [
  12407. {
  12408. "url": "https://github.com/sebastianbergmann",
  12409. "type": "github"
  12410. }
  12411. ],
  12412. "time": "2020-09-28T06:45:17+00:00"
  12413. },
  12414. {
  12415. "name": "sebastian/type",
  12416. "version": "3.2.1",
  12417. "source": {
  12418. "type": "git",
  12419. "url": "https://github.com/sebastianbergmann/type.git",
  12420. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  12421. },
  12422. "dist": {
  12423. "type": "zip",
  12424. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  12425. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  12426. "shasum": "",
  12427. "mirrors": [
  12428. {
  12429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12430. "preferred": true
  12431. }
  12432. ]
  12433. },
  12434. "require": {
  12435. "php": ">=7.3"
  12436. },
  12437. "require-dev": {
  12438. "phpunit/phpunit": "^9.5"
  12439. },
  12440. "type": "library",
  12441. "extra": {
  12442. "branch-alias": {
  12443. "dev-master": "3.2-dev"
  12444. }
  12445. },
  12446. "autoload": {
  12447. "classmap": [
  12448. "src/"
  12449. ]
  12450. },
  12451. "notification-url": "https://packagist.org/downloads/",
  12452. "license": [
  12453. "BSD-3-Clause"
  12454. ],
  12455. "authors": [
  12456. {
  12457. "name": "Sebastian Bergmann",
  12458. "email": "sebastian@phpunit.de",
  12459. "role": "lead"
  12460. }
  12461. ],
  12462. "description": "Collection of value objects that represent the types of the PHP type system",
  12463. "homepage": "https://github.com/sebastianbergmann/type",
  12464. "support": {
  12465. "issues": "https://github.com/sebastianbergmann/type/issues",
  12466. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  12467. },
  12468. "funding": [
  12469. {
  12470. "url": "https://github.com/sebastianbergmann",
  12471. "type": "github"
  12472. }
  12473. ],
  12474. "time": "2023-02-03T06:13:03+00:00"
  12475. },
  12476. {
  12477. "name": "sebastian/version",
  12478. "version": "3.0.2",
  12479. "source": {
  12480. "type": "git",
  12481. "url": "https://github.com/sebastianbergmann/version.git",
  12482. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  12483. },
  12484. "dist": {
  12485. "type": "zip",
  12486. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  12487. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  12488. "shasum": "",
  12489. "mirrors": [
  12490. {
  12491. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12492. "preferred": true
  12493. }
  12494. ]
  12495. },
  12496. "require": {
  12497. "php": ">=7.3"
  12498. },
  12499. "type": "library",
  12500. "extra": {
  12501. "branch-alias": {
  12502. "dev-master": "3.0-dev"
  12503. }
  12504. },
  12505. "autoload": {
  12506. "classmap": [
  12507. "src/"
  12508. ]
  12509. },
  12510. "notification-url": "https://packagist.org/downloads/",
  12511. "license": [
  12512. "BSD-3-Clause"
  12513. ],
  12514. "authors": [
  12515. {
  12516. "name": "Sebastian Bergmann",
  12517. "email": "sebastian@phpunit.de",
  12518. "role": "lead"
  12519. }
  12520. ],
  12521. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12522. "homepage": "https://github.com/sebastianbergmann/version",
  12523. "support": {
  12524. "issues": "https://github.com/sebastianbergmann/version/issues",
  12525. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  12526. },
  12527. "funding": [
  12528. {
  12529. "url": "https://github.com/sebastianbergmann",
  12530. "type": "github"
  12531. }
  12532. ],
  12533. "time": "2020-09-28T06:39:44+00:00"
  12534. },
  12535. {
  12536. "name": "seld/jsonlint",
  12537. "version": "1.9.0",
  12538. "source": {
  12539. "type": "git",
  12540. "url": "https://github.com/Seldaek/jsonlint.git",
  12541. "reference": "4211420d25eba80712bff236a98960ef68b866b7"
  12542. },
  12543. "dist": {
  12544. "type": "zip",
  12545. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/4211420d25eba80712bff236a98960ef68b866b7",
  12546. "reference": "4211420d25eba80712bff236a98960ef68b866b7",
  12547. "shasum": "",
  12548. "mirrors": [
  12549. {
  12550. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12551. "preferred": true
  12552. }
  12553. ]
  12554. },
  12555. "require": {
  12556. "php": "^5.3 || ^7.0 || ^8.0"
  12557. },
  12558. "require-dev": {
  12559. "phpstan/phpstan": "^1.5",
  12560. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13"
  12561. },
  12562. "bin": [
  12563. "bin/jsonlint"
  12564. ],
  12565. "type": "library",
  12566. "autoload": {
  12567. "psr-4": {
  12568. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  12569. }
  12570. },
  12571. "notification-url": "https://packagist.org/downloads/",
  12572. "license": [
  12573. "MIT"
  12574. ],
  12575. "authors": [
  12576. {
  12577. "name": "Jordi Boggiano",
  12578. "email": "j.boggiano@seld.be",
  12579. "homepage": "http://seld.be"
  12580. }
  12581. ],
  12582. "description": "JSON Linter",
  12583. "keywords": [
  12584. "json",
  12585. "linter",
  12586. "parser",
  12587. "validator"
  12588. ],
  12589. "support": {
  12590. "issues": "https://github.com/Seldaek/jsonlint/issues",
  12591. "source": "https://github.com/Seldaek/jsonlint/tree/1.9.0"
  12592. },
  12593. "funding": [
  12594. {
  12595. "url": "https://github.com/Seldaek",
  12596. "type": "github"
  12597. },
  12598. {
  12599. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  12600. "type": "tidelift"
  12601. }
  12602. ],
  12603. "time": "2022-04-01T13:37:23+00:00"
  12604. },
  12605. {
  12606. "name": "seld/phar-utils",
  12607. "version": "1.2.1",
  12608. "source": {
  12609. "type": "git",
  12610. "url": "https://github.com/Seldaek/phar-utils.git",
  12611. "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c"
  12612. },
  12613. "dist": {
  12614. "type": "zip",
  12615. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
  12616. "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
  12617. "shasum": "",
  12618. "mirrors": [
  12619. {
  12620. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12621. "preferred": true
  12622. }
  12623. ]
  12624. },
  12625. "require": {
  12626. "php": ">=5.3"
  12627. },
  12628. "type": "library",
  12629. "extra": {
  12630. "branch-alias": {
  12631. "dev-master": "1.x-dev"
  12632. }
  12633. },
  12634. "autoload": {
  12635. "psr-4": {
  12636. "Seld\\PharUtils\\": "src/"
  12637. }
  12638. },
  12639. "notification-url": "https://packagist.org/downloads/",
  12640. "license": [
  12641. "MIT"
  12642. ],
  12643. "authors": [
  12644. {
  12645. "name": "Jordi Boggiano",
  12646. "email": "j.boggiano@seld.be"
  12647. }
  12648. ],
  12649. "description": "PHAR file format utilities, for when PHP phars you up",
  12650. "keywords": [
  12651. "phar"
  12652. ],
  12653. "support": {
  12654. "issues": "https://github.com/Seldaek/phar-utils/issues",
  12655. "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1"
  12656. },
  12657. "time": "2022-08-31T10:31:18+00:00"
  12658. },
  12659. {
  12660. "name": "seld/signal-handler",
  12661. "version": "2.0.1",
  12662. "source": {
  12663. "type": "git",
  12664. "url": "https://github.com/Seldaek/signal-handler.git",
  12665. "reference": "f69d119511dc0360440cdbdaa71829c149b7be75"
  12666. },
  12667. "dist": {
  12668. "type": "zip",
  12669. "url": "https://api.github.com/repos/Seldaek/signal-handler/zipball/f69d119511dc0360440cdbdaa71829c149b7be75",
  12670. "reference": "f69d119511dc0360440cdbdaa71829c149b7be75",
  12671. "shasum": "",
  12672. "mirrors": [
  12673. {
  12674. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12675. "preferred": true
  12676. }
  12677. ]
  12678. },
  12679. "require": {
  12680. "php": ">=7.2.0"
  12681. },
  12682. "require-dev": {
  12683. "phpstan/phpstan": "^1",
  12684. "phpstan/phpstan-deprecation-rules": "^1.0",
  12685. "phpstan/phpstan-phpunit": "^1",
  12686. "phpstan/phpstan-strict-rules": "^1.3",
  12687. "phpunit/phpunit": "^7.5.20 || ^8.5.23",
  12688. "psr/log": "^1 || ^2 || ^3"
  12689. },
  12690. "type": "library",
  12691. "extra": {
  12692. "branch-alias": {
  12693. "dev-main": "2.x-dev"
  12694. }
  12695. },
  12696. "autoload": {
  12697. "psr-4": {
  12698. "Seld\\Signal\\": "src/"
  12699. }
  12700. },
  12701. "notification-url": "https://packagist.org/downloads/",
  12702. "license": [
  12703. "MIT"
  12704. ],
  12705. "authors": [
  12706. {
  12707. "name": "Jordi Boggiano",
  12708. "email": "j.boggiano@seld.be",
  12709. "homepage": "http://seld.be"
  12710. }
  12711. ],
  12712. "description": "Simple unix signal handler that silently fails where signals are not supported for easy cross-platform development",
  12713. "keywords": [
  12714. "posix",
  12715. "sigint",
  12716. "signal",
  12717. "sigterm",
  12718. "unix"
  12719. ],
  12720. "support": {
  12721. "issues": "https://github.com/Seldaek/signal-handler/issues",
  12722. "source": "https://github.com/Seldaek/signal-handler/tree/2.0.1"
  12723. },
  12724. "time": "2022-07-20T18:31:45+00:00"
  12725. },
  12726. {
  12727. "name": "symfony/filesystem",
  12728. "version": "v5.4.25",
  12729. "source": {
  12730. "type": "git",
  12731. "url": "https://github.com/symfony/filesystem.git",
  12732. "reference": "0ce3a62c9579a53358d3a7eb6b3dfb79789a6364"
  12733. },
  12734. "dist": {
  12735. "type": "zip",
  12736. "url": "https://api.github.com/repos/symfony/filesystem/zipball/0ce3a62c9579a53358d3a7eb6b3dfb79789a6364",
  12737. "reference": "0ce3a62c9579a53358d3a7eb6b3dfb79789a6364",
  12738. "shasum": "",
  12739. "mirrors": [
  12740. {
  12741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12742. "preferred": true
  12743. }
  12744. ]
  12745. },
  12746. "require": {
  12747. "php": ">=7.2.5",
  12748. "symfony/polyfill-ctype": "~1.8",
  12749. "symfony/polyfill-mbstring": "~1.8",
  12750. "symfony/polyfill-php80": "^1.16"
  12751. },
  12752. "type": "library",
  12753. "autoload": {
  12754. "psr-4": {
  12755. "Symfony\\Component\\Filesystem\\": ""
  12756. },
  12757. "exclude-from-classmap": [
  12758. "/Tests/"
  12759. ]
  12760. },
  12761. "notification-url": "https://packagist.org/downloads/",
  12762. "license": [
  12763. "MIT"
  12764. ],
  12765. "authors": [
  12766. {
  12767. "name": "Fabien Potencier",
  12768. "email": "fabien@symfony.com"
  12769. },
  12770. {
  12771. "name": "Symfony Community",
  12772. "homepage": "https://symfony.com/contributors"
  12773. }
  12774. ],
  12775. "description": "Provides basic utilities for the filesystem",
  12776. "homepage": "https://symfony.com",
  12777. "support": {
  12778. "source": "https://github.com/symfony/filesystem/tree/v5.4.25"
  12779. },
  12780. "funding": [
  12781. {
  12782. "url": "https://symfony.com/sponsor",
  12783. "type": "custom"
  12784. },
  12785. {
  12786. "url": "https://github.com/fabpot",
  12787. "type": "github"
  12788. },
  12789. {
  12790. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12791. "type": "tidelift"
  12792. }
  12793. ],
  12794. "time": "2023-05-31T13:04:02+00:00"
  12795. },
  12796. {
  12797. "name": "theseer/tokenizer",
  12798. "version": "1.2.1",
  12799. "source": {
  12800. "type": "git",
  12801. "url": "https://github.com/theseer/tokenizer.git",
  12802. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  12803. },
  12804. "dist": {
  12805. "type": "zip",
  12806. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  12807. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  12808. "shasum": "",
  12809. "mirrors": [
  12810. {
  12811. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12812. "preferred": true
  12813. }
  12814. ]
  12815. },
  12816. "require": {
  12817. "ext-dom": "*",
  12818. "ext-tokenizer": "*",
  12819. "ext-xmlwriter": "*",
  12820. "php": "^7.2 || ^8.0"
  12821. },
  12822. "type": "library",
  12823. "autoload": {
  12824. "classmap": [
  12825. "src/"
  12826. ]
  12827. },
  12828. "notification-url": "https://packagist.org/downloads/",
  12829. "license": [
  12830. "BSD-3-Clause"
  12831. ],
  12832. "authors": [
  12833. {
  12834. "name": "Arne Blankerts",
  12835. "email": "arne@blankerts.de",
  12836. "role": "Developer"
  12837. }
  12838. ],
  12839. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12840. "support": {
  12841. "issues": "https://github.com/theseer/tokenizer/issues",
  12842. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  12843. },
  12844. "funding": [
  12845. {
  12846. "url": "https://github.com/theseer",
  12847. "type": "github"
  12848. }
  12849. ],
  12850. "time": "2021-07-28T10:34:58+00:00"
  12851. }
  12852. ],
  12853. "aliases": [],
  12854. "minimum-stability": "dev",
  12855. "stability-flags": [],
  12856. "prefer-stable": true,
  12857. "prefer-lowest": false,
  12858. "platform": {
  12859. "php": "^7.2.5|^8.0",
  12860. "ext-json": "*",
  12861. "ext-mbstring": "*",
  12862. "ext-openssl": "*",
  12863. "ext-simplexml": "*"
  12864. },
  12865. "platform-dev": [],
  12866. "plugin-api-version": "2.0.0"
  12867. }