composer.lock 475 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143
  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": "5e8418f189d235e5ea13534c9a2b7cdf",
  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": "carbonphp/carbon-doctrine-types",
  207. "version": "1.0.0",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  211. "reference": "3c430083d0b41ceed84ecccf9dac613241d7305d"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/3c430083d0b41ceed84ecccf9dac613241d7305d",
  216. "reference": "3c430083d0b41ceed84ecccf9dac613241d7305d",
  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. "php": "^7.1.8 || ^8.0"
  227. },
  228. "conflict": {
  229. "doctrine/dbal": ">=3.7.0"
  230. },
  231. "require-dev": {
  232. "doctrine/dbal": ">=2.0.0",
  233. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  234. "phpunit/phpunit": "^10.3"
  235. },
  236. "type": "library",
  237. "autoload": {
  238. "psr-4": {
  239. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  240. }
  241. },
  242. "notification-url": "https://packagist.org/downloads/",
  243. "license": [
  244. "MIT"
  245. ],
  246. "authors": [
  247. {
  248. "name": "KyleKatarn",
  249. "email": "kylekatarnls@gmail.com"
  250. }
  251. ],
  252. "description": "Types to use Carbon in Doctrine",
  253. "keywords": [
  254. "carbon",
  255. "date",
  256. "datetime",
  257. "doctrine",
  258. "time"
  259. ],
  260. "support": {
  261. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  262. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/1.0.0"
  263. },
  264. "funding": [
  265. {
  266. "url": "https://github.com/kylekatarnls",
  267. "type": "github"
  268. },
  269. {
  270. "url": "https://opencollective.com/Carbon",
  271. "type": "open_collective"
  272. },
  273. {
  274. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  275. "type": "tidelift"
  276. }
  277. ],
  278. "time": "2023-10-01T12:35:29+00:00"
  279. },
  280. {
  281. "name": "composer/ca-bundle",
  282. "version": "1.4.0",
  283. "source": {
  284. "type": "git",
  285. "url": "https://github.com/composer/ca-bundle.git",
  286. "reference": "b66d11b7479109ab547f9405b97205640b17d385"
  287. },
  288. "dist": {
  289. "type": "zip",
  290. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/b66d11b7479109ab547f9405b97205640b17d385",
  291. "reference": "b66d11b7479109ab547f9405b97205640b17d385",
  292. "shasum": "",
  293. "mirrors": [
  294. {
  295. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  296. "preferred": true
  297. }
  298. ]
  299. },
  300. "require": {
  301. "ext-openssl": "*",
  302. "ext-pcre": "*",
  303. "php": "^5.3.2 || ^7.0 || ^8.0"
  304. },
  305. "require-dev": {
  306. "phpstan/phpstan": "^0.12.55",
  307. "psr/log": "^1.0",
  308. "symfony/phpunit-bridge": "^4.2 || ^5",
  309. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  310. },
  311. "type": "library",
  312. "extra": {
  313. "branch-alias": {
  314. "dev-main": "1.x-dev"
  315. }
  316. },
  317. "autoload": {
  318. "psr-4": {
  319. "Composer\\CaBundle\\": "src"
  320. }
  321. },
  322. "notification-url": "https://packagist.org/downloads/",
  323. "license": [
  324. "MIT"
  325. ],
  326. "authors": [
  327. {
  328. "name": "Jordi Boggiano",
  329. "email": "j.boggiano@seld.be",
  330. "homepage": "http://seld.be"
  331. }
  332. ],
  333. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  334. "keywords": [
  335. "cabundle",
  336. "cacert",
  337. "certificate",
  338. "ssl",
  339. "tls"
  340. ],
  341. "support": {
  342. "irc": "irc://irc.freenode.org/composer",
  343. "issues": "https://github.com/composer/ca-bundle/issues",
  344. "source": "https://github.com/composer/ca-bundle/tree/1.4.0"
  345. },
  346. "funding": [
  347. {
  348. "url": "https://packagist.com",
  349. "type": "custom"
  350. },
  351. {
  352. "url": "https://github.com/composer",
  353. "type": "github"
  354. },
  355. {
  356. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  357. "type": "tidelift"
  358. }
  359. ],
  360. "time": "2023-12-18T12:05:55+00:00"
  361. },
  362. {
  363. "name": "doctrine/cache",
  364. "version": "2.2.0",
  365. "source": {
  366. "type": "git",
  367. "url": "https://github.com/doctrine/cache.git",
  368. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  369. },
  370. "dist": {
  371. "type": "zip",
  372. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  373. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  374. "shasum": "",
  375. "mirrors": [
  376. {
  377. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  378. "preferred": true
  379. }
  380. ]
  381. },
  382. "require": {
  383. "php": "~7.1 || ^8.0"
  384. },
  385. "conflict": {
  386. "doctrine/common": ">2.2,<2.4"
  387. },
  388. "require-dev": {
  389. "cache/integration-tests": "dev-master",
  390. "doctrine/coding-standard": "^9",
  391. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  392. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  393. "symfony/cache": "^4.4 || ^5.4 || ^6",
  394. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  395. },
  396. "type": "library",
  397. "autoload": {
  398. "psr-4": {
  399. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  400. }
  401. },
  402. "notification-url": "https://packagist.org/downloads/",
  403. "license": [
  404. "MIT"
  405. ],
  406. "authors": [
  407. {
  408. "name": "Guilherme Blanco",
  409. "email": "guilhermeblanco@gmail.com"
  410. },
  411. {
  412. "name": "Roman Borschel",
  413. "email": "roman@code-factory.org"
  414. },
  415. {
  416. "name": "Benjamin Eberlei",
  417. "email": "kontakt@beberlei.de"
  418. },
  419. {
  420. "name": "Jonathan Wage",
  421. "email": "jonwage@gmail.com"
  422. },
  423. {
  424. "name": "Johannes Schmitt",
  425. "email": "schmittjoh@gmail.com"
  426. }
  427. ],
  428. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  429. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  430. "keywords": [
  431. "abstraction",
  432. "apcu",
  433. "cache",
  434. "caching",
  435. "couchdb",
  436. "memcached",
  437. "php",
  438. "redis",
  439. "xcache"
  440. ],
  441. "support": {
  442. "issues": "https://github.com/doctrine/cache/issues",
  443. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  444. },
  445. "funding": [
  446. {
  447. "url": "https://www.doctrine-project.org/sponsorship.html",
  448. "type": "custom"
  449. },
  450. {
  451. "url": "https://www.patreon.com/phpdoctrine",
  452. "type": "patreon"
  453. },
  454. {
  455. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  456. "type": "tidelift"
  457. }
  458. ],
  459. "time": "2022-05-20T20:07:39+00:00"
  460. },
  461. {
  462. "name": "doctrine/dbal",
  463. "version": "2.13.9",
  464. "source": {
  465. "type": "git",
  466. "url": "https://github.com/doctrine/dbal.git",
  467. "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8"
  468. },
  469. "dist": {
  470. "type": "zip",
  471. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c480849ca3ad6706a39c970cdfe6888fa8a058b8",
  472. "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8",
  473. "shasum": "",
  474. "mirrors": [
  475. {
  476. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  477. "preferred": true
  478. }
  479. ]
  480. },
  481. "require": {
  482. "doctrine/cache": "^1.0|^2.0",
  483. "doctrine/deprecations": "^0.5.3|^1",
  484. "doctrine/event-manager": "^1.0",
  485. "ext-pdo": "*",
  486. "php": "^7.1 || ^8"
  487. },
  488. "require-dev": {
  489. "doctrine/coding-standard": "9.0.0",
  490. "jetbrains/phpstorm-stubs": "2021.1",
  491. "phpstan/phpstan": "1.4.6",
  492. "phpunit/phpunit": "^7.5.20|^8.5|9.5.16",
  493. "psalm/plugin-phpunit": "0.16.1",
  494. "squizlabs/php_codesniffer": "3.6.2",
  495. "symfony/cache": "^4.4",
  496. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  497. "vimeo/psalm": "4.22.0"
  498. },
  499. "suggest": {
  500. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  501. },
  502. "bin": [
  503. "bin/doctrine-dbal"
  504. ],
  505. "type": "library",
  506. "autoload": {
  507. "psr-4": {
  508. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  509. }
  510. },
  511. "notification-url": "https://packagist.org/downloads/",
  512. "license": [
  513. "MIT"
  514. ],
  515. "authors": [
  516. {
  517. "name": "Guilherme Blanco",
  518. "email": "guilhermeblanco@gmail.com"
  519. },
  520. {
  521. "name": "Roman Borschel",
  522. "email": "roman@code-factory.org"
  523. },
  524. {
  525. "name": "Benjamin Eberlei",
  526. "email": "kontakt@beberlei.de"
  527. },
  528. {
  529. "name": "Jonathan Wage",
  530. "email": "jonwage@gmail.com"
  531. }
  532. ],
  533. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  534. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  535. "keywords": [
  536. "abstraction",
  537. "database",
  538. "db2",
  539. "dbal",
  540. "mariadb",
  541. "mssql",
  542. "mysql",
  543. "oci8",
  544. "oracle",
  545. "pdo",
  546. "pgsql",
  547. "postgresql",
  548. "queryobject",
  549. "sasql",
  550. "sql",
  551. "sqlanywhere",
  552. "sqlite",
  553. "sqlserver",
  554. "sqlsrv"
  555. ],
  556. "support": {
  557. "issues": "https://github.com/doctrine/dbal/issues",
  558. "source": "https://github.com/doctrine/dbal/tree/2.13.9"
  559. },
  560. "funding": [
  561. {
  562. "url": "https://www.doctrine-project.org/sponsorship.html",
  563. "type": "custom"
  564. },
  565. {
  566. "url": "https://www.patreon.com/phpdoctrine",
  567. "type": "patreon"
  568. },
  569. {
  570. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  571. "type": "tidelift"
  572. }
  573. ],
  574. "time": "2022-05-02T20:28:55+00:00"
  575. },
  576. {
  577. "name": "doctrine/deprecations",
  578. "version": "1.1.2",
  579. "source": {
  580. "type": "git",
  581. "url": "https://github.com/doctrine/deprecations.git",
  582. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931"
  583. },
  584. "dist": {
  585. "type": "zip",
  586. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  587. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  588. "shasum": "",
  589. "mirrors": [
  590. {
  591. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  592. "preferred": true
  593. }
  594. ]
  595. },
  596. "require": {
  597. "php": "^7.1 || ^8.0"
  598. },
  599. "require-dev": {
  600. "doctrine/coding-standard": "^9",
  601. "phpstan/phpstan": "1.4.10 || 1.10.15",
  602. "phpstan/phpstan-phpunit": "^1.0",
  603. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  604. "psalm/plugin-phpunit": "0.18.4",
  605. "psr/log": "^1 || ^2 || ^3",
  606. "vimeo/psalm": "4.30.0 || 5.12.0"
  607. },
  608. "suggest": {
  609. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  610. },
  611. "type": "library",
  612. "autoload": {
  613. "psr-4": {
  614. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  615. }
  616. },
  617. "notification-url": "https://packagist.org/downloads/",
  618. "license": [
  619. "MIT"
  620. ],
  621. "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.",
  622. "homepage": "https://www.doctrine-project.org/",
  623. "support": {
  624. "issues": "https://github.com/doctrine/deprecations/issues",
  625. "source": "https://github.com/doctrine/deprecations/tree/1.1.2"
  626. },
  627. "time": "2023-09-27T20:04:15+00:00"
  628. },
  629. {
  630. "name": "doctrine/event-manager",
  631. "version": "1.2.0",
  632. "source": {
  633. "type": "git",
  634. "url": "https://github.com/doctrine/event-manager.git",
  635. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520"
  636. },
  637. "dist": {
  638. "type": "zip",
  639. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/95aa4cb529f1e96576f3fda9f5705ada4056a520",
  640. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520",
  641. "shasum": "",
  642. "mirrors": [
  643. {
  644. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  645. "preferred": true
  646. }
  647. ]
  648. },
  649. "require": {
  650. "doctrine/deprecations": "^0.5.3 || ^1",
  651. "php": "^7.1 || ^8.0"
  652. },
  653. "conflict": {
  654. "doctrine/common": "<2.9"
  655. },
  656. "require-dev": {
  657. "doctrine/coding-standard": "^9 || ^10",
  658. "phpstan/phpstan": "~1.4.10 || ^1.8.8",
  659. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  660. "vimeo/psalm": "^4.24"
  661. },
  662. "type": "library",
  663. "autoload": {
  664. "psr-4": {
  665. "Doctrine\\Common\\": "src"
  666. }
  667. },
  668. "notification-url": "https://packagist.org/downloads/",
  669. "license": [
  670. "MIT"
  671. ],
  672. "authors": [
  673. {
  674. "name": "Guilherme Blanco",
  675. "email": "guilhermeblanco@gmail.com"
  676. },
  677. {
  678. "name": "Roman Borschel",
  679. "email": "roman@code-factory.org"
  680. },
  681. {
  682. "name": "Benjamin Eberlei",
  683. "email": "kontakt@beberlei.de"
  684. },
  685. {
  686. "name": "Jonathan Wage",
  687. "email": "jonwage@gmail.com"
  688. },
  689. {
  690. "name": "Johannes Schmitt",
  691. "email": "schmittjoh@gmail.com"
  692. },
  693. {
  694. "name": "Marco Pivetta",
  695. "email": "ocramius@gmail.com"
  696. }
  697. ],
  698. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  699. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  700. "keywords": [
  701. "event",
  702. "event dispatcher",
  703. "event manager",
  704. "event system",
  705. "events"
  706. ],
  707. "support": {
  708. "issues": "https://github.com/doctrine/event-manager/issues",
  709. "source": "https://github.com/doctrine/event-manager/tree/1.2.0"
  710. },
  711. "funding": [
  712. {
  713. "url": "https://www.doctrine-project.org/sponsorship.html",
  714. "type": "custom"
  715. },
  716. {
  717. "url": "https://www.patreon.com/phpdoctrine",
  718. "type": "patreon"
  719. },
  720. {
  721. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  722. "type": "tidelift"
  723. }
  724. ],
  725. "time": "2022-10-12T20:51:15+00:00"
  726. },
  727. {
  728. "name": "doctrine/inflector",
  729. "version": "2.0.10",
  730. "source": {
  731. "type": "git",
  732. "url": "https://github.com/doctrine/inflector.git",
  733. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  734. },
  735. "dist": {
  736. "type": "zip",
  737. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  738. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  739. "shasum": "",
  740. "mirrors": [
  741. {
  742. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  743. "preferred": true
  744. }
  745. ]
  746. },
  747. "require": {
  748. "php": "^7.2 || ^8.0"
  749. },
  750. "require-dev": {
  751. "doctrine/coding-standard": "^11.0",
  752. "phpstan/phpstan": "^1.8",
  753. "phpstan/phpstan-phpunit": "^1.1",
  754. "phpstan/phpstan-strict-rules": "^1.3",
  755. "phpunit/phpunit": "^8.5 || ^9.5",
  756. "vimeo/psalm": "^4.25 || ^5.4"
  757. },
  758. "type": "library",
  759. "autoload": {
  760. "psr-4": {
  761. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  762. }
  763. },
  764. "notification-url": "https://packagist.org/downloads/",
  765. "license": [
  766. "MIT"
  767. ],
  768. "authors": [
  769. {
  770. "name": "Guilherme Blanco",
  771. "email": "guilhermeblanco@gmail.com"
  772. },
  773. {
  774. "name": "Roman Borschel",
  775. "email": "roman@code-factory.org"
  776. },
  777. {
  778. "name": "Benjamin Eberlei",
  779. "email": "kontakt@beberlei.de"
  780. },
  781. {
  782. "name": "Jonathan Wage",
  783. "email": "jonwage@gmail.com"
  784. },
  785. {
  786. "name": "Johannes Schmitt",
  787. "email": "schmittjoh@gmail.com"
  788. }
  789. ],
  790. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  791. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  792. "keywords": [
  793. "inflection",
  794. "inflector",
  795. "lowercase",
  796. "manipulation",
  797. "php",
  798. "plural",
  799. "singular",
  800. "strings",
  801. "uppercase",
  802. "words"
  803. ],
  804. "support": {
  805. "issues": "https://github.com/doctrine/inflector/issues",
  806. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  807. },
  808. "funding": [
  809. {
  810. "url": "https://www.doctrine-project.org/sponsorship.html",
  811. "type": "custom"
  812. },
  813. {
  814. "url": "https://www.patreon.com/phpdoctrine",
  815. "type": "patreon"
  816. },
  817. {
  818. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  819. "type": "tidelift"
  820. }
  821. ],
  822. "time": "2024-02-18T20:23:39+00:00"
  823. },
  824. {
  825. "name": "doctrine/lexer",
  826. "version": "1.2.3",
  827. "source": {
  828. "type": "git",
  829. "url": "https://github.com/doctrine/lexer.git",
  830. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  831. },
  832. "dist": {
  833. "type": "zip",
  834. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  835. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  836. "shasum": "",
  837. "mirrors": [
  838. {
  839. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  840. "preferred": true
  841. }
  842. ]
  843. },
  844. "require": {
  845. "php": "^7.1 || ^8.0"
  846. },
  847. "require-dev": {
  848. "doctrine/coding-standard": "^9.0",
  849. "phpstan/phpstan": "^1.3",
  850. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  851. "vimeo/psalm": "^4.11"
  852. },
  853. "type": "library",
  854. "autoload": {
  855. "psr-4": {
  856. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  857. }
  858. },
  859. "notification-url": "https://packagist.org/downloads/",
  860. "license": [
  861. "MIT"
  862. ],
  863. "authors": [
  864. {
  865. "name": "Guilherme Blanco",
  866. "email": "guilhermeblanco@gmail.com"
  867. },
  868. {
  869. "name": "Roman Borschel",
  870. "email": "roman@code-factory.org"
  871. },
  872. {
  873. "name": "Johannes Schmitt",
  874. "email": "schmittjoh@gmail.com"
  875. }
  876. ],
  877. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  878. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  879. "keywords": [
  880. "annotations",
  881. "docblock",
  882. "lexer",
  883. "parser",
  884. "php"
  885. ],
  886. "support": {
  887. "issues": "https://github.com/doctrine/lexer/issues",
  888. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  889. },
  890. "funding": [
  891. {
  892. "url": "https://www.doctrine-project.org/sponsorship.html",
  893. "type": "custom"
  894. },
  895. {
  896. "url": "https://www.patreon.com/phpdoctrine",
  897. "type": "patreon"
  898. },
  899. {
  900. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  901. "type": "tidelift"
  902. }
  903. ],
  904. "time": "2022-02-28T11:07:21+00:00"
  905. },
  906. {
  907. "name": "dragonmantank/cron-expression",
  908. "version": "v2.3.1",
  909. "source": {
  910. "type": "git",
  911. "url": "https://github.com/dragonmantank/cron-expression.git",
  912. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  913. },
  914. "dist": {
  915. "type": "zip",
  916. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  917. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  918. "shasum": "",
  919. "mirrors": [
  920. {
  921. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  922. "preferred": true
  923. }
  924. ]
  925. },
  926. "require": {
  927. "php": "^7.0|^8.0"
  928. },
  929. "require-dev": {
  930. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  931. },
  932. "type": "library",
  933. "extra": {
  934. "branch-alias": {
  935. "dev-master": "2.3-dev"
  936. }
  937. },
  938. "autoload": {
  939. "psr-4": {
  940. "Cron\\": "src/Cron/"
  941. }
  942. },
  943. "notification-url": "https://packagist.org/downloads/",
  944. "license": [
  945. "MIT"
  946. ],
  947. "authors": [
  948. {
  949. "name": "Michael Dowling",
  950. "email": "mtdowling@gmail.com",
  951. "homepage": "https://github.com/mtdowling"
  952. },
  953. {
  954. "name": "Chris Tankersley",
  955. "email": "chris@ctankersley.com",
  956. "homepage": "https://github.com/dragonmantank"
  957. }
  958. ],
  959. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  960. "keywords": [
  961. "cron",
  962. "schedule"
  963. ],
  964. "support": {
  965. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  966. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  967. },
  968. "funding": [
  969. {
  970. "url": "https://github.com/dragonmantank",
  971. "type": "github"
  972. }
  973. ],
  974. "time": "2020-10-13T00:52:37+00:00"
  975. },
  976. {
  977. "name": "egulias/email-validator",
  978. "version": "2.1.25",
  979. "source": {
  980. "type": "git",
  981. "url": "https://github.com/egulias/EmailValidator.git",
  982. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  983. },
  984. "dist": {
  985. "type": "zip",
  986. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  987. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  988. "shasum": "",
  989. "mirrors": [
  990. {
  991. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  992. "preferred": true
  993. }
  994. ]
  995. },
  996. "require": {
  997. "doctrine/lexer": "^1.0.1",
  998. "php": ">=5.5",
  999. "symfony/polyfill-intl-idn": "^1.10"
  1000. },
  1001. "require-dev": {
  1002. "dominicsayers/isemail": "^3.0.7",
  1003. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1004. "satooshi/php-coveralls": "^1.0.1"
  1005. },
  1006. "suggest": {
  1007. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1008. },
  1009. "type": "library",
  1010. "extra": {
  1011. "branch-alias": {
  1012. "dev-master": "2.1.x-dev"
  1013. }
  1014. },
  1015. "autoload": {
  1016. "psr-4": {
  1017. "Egulias\\EmailValidator\\": "src"
  1018. }
  1019. },
  1020. "notification-url": "https://packagist.org/downloads/",
  1021. "license": [
  1022. "MIT"
  1023. ],
  1024. "authors": [
  1025. {
  1026. "name": "Eduardo Gulias Davis"
  1027. }
  1028. ],
  1029. "description": "A library for validating emails against several RFCs",
  1030. "homepage": "https://github.com/egulias/EmailValidator",
  1031. "keywords": [
  1032. "email",
  1033. "emailvalidation",
  1034. "emailvalidator",
  1035. "validation",
  1036. "validator"
  1037. ],
  1038. "support": {
  1039. "issues": "https://github.com/egulias/EmailValidator/issues",
  1040. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1041. },
  1042. "funding": [
  1043. {
  1044. "url": "https://github.com/egulias",
  1045. "type": "github"
  1046. }
  1047. ],
  1048. "time": "2020-12-29T14:50:06+00:00"
  1049. },
  1050. {
  1051. "name": "elfsundae/bearychat",
  1052. "version": "1.3.1",
  1053. "source": {
  1054. "type": "git",
  1055. "url": "https://github.com/ElfSundae/bearychat.git",
  1056. "reference": "b3c7437d0e24463504679931a482e9b642d93024"
  1057. },
  1058. "dist": {
  1059. "type": "zip",
  1060. "url": "https://api.github.com/repos/ElfSundae/bearychat/zipball/b3c7437d0e24463504679931a482e9b642d93024",
  1061. "reference": "b3c7437d0e24463504679931a482e9b642d93024",
  1062. "shasum": "",
  1063. "mirrors": [
  1064. {
  1065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1066. "preferred": true
  1067. }
  1068. ]
  1069. },
  1070. "require": {
  1071. "ext-mbstring": "*",
  1072. "guzzlehttp/guzzle": "~5.3|~6.0",
  1073. "php": ">=5.4.0"
  1074. },
  1075. "require-dev": {
  1076. "mockery/mockery": "0.9.*",
  1077. "phpunit/phpunit": "~5.7"
  1078. },
  1079. "suggest": {
  1080. "elfsundae/laravel-bearychat": "Required for Laravel integration.",
  1081. "laravel-notification-channels/bearychat": "BearyChat notifications channel for Laravel 5."
  1082. },
  1083. "type": "library",
  1084. "autoload": {
  1085. "psr-4": {
  1086. "ElfSundae\\BearyChat\\": "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": "An elegant way of interacting with BearyChat webhooks.",
  1101. "homepage": "https://github.com/ElfSundae/bearychat",
  1102. "keywords": [
  1103. "bearychat",
  1104. "incoming",
  1105. "outgoing",
  1106. "robot",
  1107. "webhook"
  1108. ],
  1109. "support": {
  1110. "issues": "https://github.com/ElfSundae/bearychat/issues",
  1111. "source": "https://github.com/ElfSundae/bearychat/tree/master"
  1112. },
  1113. "abandoned": true,
  1114. "time": "2017-09-04T05:54:05+00:00"
  1115. },
  1116. {
  1117. "name": "elfsundae/laravel-bearychat",
  1118. "version": "1.6.0",
  1119. "source": {
  1120. "type": "git",
  1121. "url": "https://github.com/ElfSundae/laravel-bearychat.git",
  1122. "reference": "417a15868e46c9d664a437532c5ddd9be3fe9b04"
  1123. },
  1124. "dist": {
  1125. "type": "zip",
  1126. "url": "https://api.github.com/repos/ElfSundae/laravel-bearychat/zipball/417a15868e46c9d664a437532c5ddd9be3fe9b04",
  1127. "reference": "417a15868e46c9d664a437532c5ddd9be3fe9b04",
  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. "elfsundae/bearychat": "^1.3.1",
  1138. "illuminate/support": "~5.0|~6.0|~7.0|~8.0",
  1139. "php": ">=5.6.4"
  1140. },
  1141. "require-dev": {
  1142. "mockery/mockery": "~0.9|~1.0",
  1143. "phpunit/phpunit": "~5.7|~6.0|~7.0|~8.0|~9.0"
  1144. },
  1145. "suggest": {
  1146. "laravel-notification-channels/bearychat": "BearyChat notifications channel for Laravel 5."
  1147. },
  1148. "type": "library",
  1149. "extra": {
  1150. "laravel": {
  1151. "providers": [
  1152. "ElfSundae\\BearyChat\\Laravel\\ServiceProvider"
  1153. ],
  1154. "aliases": {
  1155. "BearyChat": "ElfSundae\\BearyChat\\Laravel\\BearyChat"
  1156. }
  1157. }
  1158. },
  1159. "autoload": {
  1160. "files": [
  1161. "src/helpers.php"
  1162. ],
  1163. "psr-4": {
  1164. "ElfSundae\\BearyChat\\Laravel\\": "src/"
  1165. }
  1166. },
  1167. "notification-url": "https://packagist.org/downloads/",
  1168. "license": [
  1169. "MIT"
  1170. ],
  1171. "authors": [
  1172. {
  1173. "name": "Elf Sundae",
  1174. "email": "elf.sundae@gmail.com",
  1175. "homepage": "https://0x123.com"
  1176. }
  1177. ],
  1178. "description": "Laravel integration for BearyChat.",
  1179. "homepage": "https://github.com/ElfSundae/laravel-bearychat",
  1180. "keywords": [
  1181. "bearychat",
  1182. "incoming",
  1183. "laravel",
  1184. "outgoing",
  1185. "robot",
  1186. "webhook"
  1187. ],
  1188. "support": {
  1189. "issues": "https://github.com/ElfSundae/laravel-bearychat/issues",
  1190. "source": "https://github.com/ElfSundae/laravel-bearychat/tree/1.6.0"
  1191. },
  1192. "abandoned": true,
  1193. "time": "2020-09-13T14:19:31+00:00"
  1194. },
  1195. {
  1196. "name": "ezyang/htmlpurifier",
  1197. "version": "v4.16.0",
  1198. "source": {
  1199. "type": "git",
  1200. "url": "https://github.com/ezyang/htmlpurifier.git",
  1201. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  1202. },
  1203. "dist": {
  1204. "type": "zip",
  1205. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1206. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1207. "shasum": "",
  1208. "mirrors": [
  1209. {
  1210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1211. "preferred": true
  1212. }
  1213. ]
  1214. },
  1215. "require": {
  1216. "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"
  1217. },
  1218. "require-dev": {
  1219. "cerdic/css-tidy": "^1.7 || ^2.0",
  1220. "simpletest/simpletest": "dev-master"
  1221. },
  1222. "suggest": {
  1223. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1224. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1225. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1226. "ext-tidy": "Used for pretty-printing HTML"
  1227. },
  1228. "type": "library",
  1229. "autoload": {
  1230. "files": [
  1231. "library/HTMLPurifier.composer.php"
  1232. ],
  1233. "psr-0": {
  1234. "HTMLPurifier": "library/"
  1235. },
  1236. "exclude-from-classmap": [
  1237. "/library/HTMLPurifier/Language/"
  1238. ]
  1239. },
  1240. "notification-url": "https://packagist.org/downloads/",
  1241. "license": [
  1242. "LGPL-2.1-or-later"
  1243. ],
  1244. "authors": [
  1245. {
  1246. "name": "Edward Z. Yang",
  1247. "email": "admin@htmlpurifier.org",
  1248. "homepage": "http://ezyang.com"
  1249. }
  1250. ],
  1251. "description": "Standards compliant HTML filter written in PHP",
  1252. "homepage": "http://htmlpurifier.org/",
  1253. "keywords": [
  1254. "html"
  1255. ],
  1256. "support": {
  1257. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1258. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  1259. },
  1260. "time": "2022-09-18T07:06:19+00:00"
  1261. },
  1262. {
  1263. "name": "fideloper/proxy",
  1264. "version": "4.4.2",
  1265. "source": {
  1266. "type": "git",
  1267. "url": "https://github.com/fideloper/TrustedProxy.git",
  1268. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  1269. },
  1270. "dist": {
  1271. "type": "zip",
  1272. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1273. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1274. "shasum": "",
  1275. "mirrors": [
  1276. {
  1277. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1278. "preferred": true
  1279. }
  1280. ]
  1281. },
  1282. "require": {
  1283. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1284. "php": ">=5.4.0"
  1285. },
  1286. "require-dev": {
  1287. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1288. "mockery/mockery": "^1.0",
  1289. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1290. },
  1291. "type": "library",
  1292. "extra": {
  1293. "laravel": {
  1294. "providers": [
  1295. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1296. ]
  1297. }
  1298. },
  1299. "autoload": {
  1300. "psr-4": {
  1301. "Fideloper\\Proxy\\": "src/"
  1302. }
  1303. },
  1304. "notification-url": "https://packagist.org/downloads/",
  1305. "license": [
  1306. "MIT"
  1307. ],
  1308. "authors": [
  1309. {
  1310. "name": "Chris Fidao",
  1311. "email": "fideloper@gmail.com"
  1312. }
  1313. ],
  1314. "description": "Set trusted proxies for Laravel",
  1315. "keywords": [
  1316. "load balancing",
  1317. "proxy",
  1318. "trusted proxy"
  1319. ],
  1320. "support": {
  1321. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1322. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1323. },
  1324. "time": "2022-02-09T13:33:34+00:00"
  1325. },
  1326. {
  1327. "name": "fruitcake/laravel-cors",
  1328. "version": "v2.2.0",
  1329. "source": {
  1330. "type": "git",
  1331. "url": "https://github.com/fruitcake/laravel-cors.git",
  1332. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1333. },
  1334. "dist": {
  1335. "type": "zip",
  1336. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1337. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1338. "shasum": "",
  1339. "mirrors": [
  1340. {
  1341. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1342. "preferred": true
  1343. }
  1344. ]
  1345. },
  1346. "require": {
  1347. "asm89/stack-cors": "^2.0.1",
  1348. "illuminate/contracts": "^6|^7|^8|^9",
  1349. "illuminate/support": "^6|^7|^8|^9",
  1350. "php": ">=7.2"
  1351. },
  1352. "require-dev": {
  1353. "laravel/framework": "^6|^7.24|^8",
  1354. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1355. "phpunit/phpunit": "^6|^7|^8|^9",
  1356. "squizlabs/php_codesniffer": "^3.5"
  1357. },
  1358. "type": "library",
  1359. "extra": {
  1360. "branch-alias": {
  1361. "dev-master": "2.1-dev"
  1362. },
  1363. "laravel": {
  1364. "providers": [
  1365. "Fruitcake\\Cors\\CorsServiceProvider"
  1366. ]
  1367. }
  1368. },
  1369. "autoload": {
  1370. "psr-4": {
  1371. "Fruitcake\\Cors\\": "src/"
  1372. }
  1373. },
  1374. "notification-url": "https://packagist.org/downloads/",
  1375. "license": [
  1376. "MIT"
  1377. ],
  1378. "authors": [
  1379. {
  1380. "name": "Fruitcake",
  1381. "homepage": "https://fruitcake.nl"
  1382. },
  1383. {
  1384. "name": "Barry vd. Heuvel",
  1385. "email": "barryvdh@gmail.com"
  1386. }
  1387. ],
  1388. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1389. "keywords": [
  1390. "api",
  1391. "cors",
  1392. "crossdomain",
  1393. "laravel"
  1394. ],
  1395. "support": {
  1396. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1397. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1398. },
  1399. "funding": [
  1400. {
  1401. "url": "https://fruitcake.nl",
  1402. "type": "custom"
  1403. },
  1404. {
  1405. "url": "https://github.com/barryvdh",
  1406. "type": "github"
  1407. }
  1408. ],
  1409. "abandoned": true,
  1410. "time": "2022-02-23T14:25:13+00:00"
  1411. },
  1412. {
  1413. "name": "geoip2/geoip2",
  1414. "version": "v2.13.0",
  1415. "source": {
  1416. "type": "git",
  1417. "url": "git@github.com:maxmind/GeoIP2-php.git",
  1418. "reference": "6a41d8fbd6b90052bc34dff3b4252d0f88067b23"
  1419. },
  1420. "dist": {
  1421. "type": "zip",
  1422. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/6a41d8fbd6b90052bc34dff3b4252d0f88067b23",
  1423. "reference": "6a41d8fbd6b90052bc34dff3b4252d0f88067b23",
  1424. "shasum": "",
  1425. "mirrors": [
  1426. {
  1427. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1428. "preferred": true
  1429. }
  1430. ]
  1431. },
  1432. "require": {
  1433. "ext-json": "*",
  1434. "maxmind-db/reader": "~1.8",
  1435. "maxmind/web-service-common": "~0.8",
  1436. "php": ">=7.2"
  1437. },
  1438. "require-dev": {
  1439. "friendsofphp/php-cs-fixer": "3.*",
  1440. "phpstan/phpstan": "*",
  1441. "phpunit/phpunit": "^8.0 || ^9.0",
  1442. "squizlabs/php_codesniffer": "3.*"
  1443. },
  1444. "type": "library",
  1445. "autoload": {
  1446. "psr-4": {
  1447. "GeoIp2\\": "src"
  1448. }
  1449. },
  1450. "notification-url": "https://packagist.org/downloads/",
  1451. "license": [
  1452. "Apache-2.0"
  1453. ],
  1454. "authors": [
  1455. {
  1456. "name": "Gregory J. Oschwald",
  1457. "email": "goschwald@maxmind.com",
  1458. "homepage": "https://www.maxmind.com/"
  1459. }
  1460. ],
  1461. "description": "MaxMind GeoIP2 PHP API",
  1462. "homepage": "https://github.com/maxmind/GeoIP2-php",
  1463. "keywords": [
  1464. "IP",
  1465. "geoip",
  1466. "geoip2",
  1467. "geolocation",
  1468. "maxmind"
  1469. ],
  1470. "time": "2022-08-05T20:32:58+00:00"
  1471. },
  1472. {
  1473. "name": "guzzlehttp/guzzle",
  1474. "version": "6.5.8",
  1475. "source": {
  1476. "type": "git",
  1477. "url": "https://github.com/guzzle/guzzle.git",
  1478. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  1479. },
  1480. "dist": {
  1481. "type": "zip",
  1482. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  1483. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  1484. "shasum": "",
  1485. "mirrors": [
  1486. {
  1487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1488. "preferred": true
  1489. }
  1490. ]
  1491. },
  1492. "require": {
  1493. "ext-json": "*",
  1494. "guzzlehttp/promises": "^1.0",
  1495. "guzzlehttp/psr7": "^1.9",
  1496. "php": ">=5.5",
  1497. "symfony/polyfill-intl-idn": "^1.17"
  1498. },
  1499. "require-dev": {
  1500. "ext-curl": "*",
  1501. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1502. "psr/log": "^1.1"
  1503. },
  1504. "suggest": {
  1505. "psr/log": "Required for using the Log middleware"
  1506. },
  1507. "type": "library",
  1508. "extra": {
  1509. "branch-alias": {
  1510. "dev-master": "6.5-dev"
  1511. }
  1512. },
  1513. "autoload": {
  1514. "files": [
  1515. "src/functions_include.php"
  1516. ],
  1517. "psr-4": {
  1518. "GuzzleHttp\\": "src/"
  1519. }
  1520. },
  1521. "notification-url": "https://packagist.org/downloads/",
  1522. "license": [
  1523. "MIT"
  1524. ],
  1525. "authors": [
  1526. {
  1527. "name": "Graham Campbell",
  1528. "email": "hello@gjcampbell.co.uk",
  1529. "homepage": "https://github.com/GrahamCampbell"
  1530. },
  1531. {
  1532. "name": "Michael Dowling",
  1533. "email": "mtdowling@gmail.com",
  1534. "homepage": "https://github.com/mtdowling"
  1535. },
  1536. {
  1537. "name": "Jeremy Lindblom",
  1538. "email": "jeremeamia@gmail.com",
  1539. "homepage": "https://github.com/jeremeamia"
  1540. },
  1541. {
  1542. "name": "George Mponos",
  1543. "email": "gmponos@gmail.com",
  1544. "homepage": "https://github.com/gmponos"
  1545. },
  1546. {
  1547. "name": "Tobias Nyholm",
  1548. "email": "tobias.nyholm@gmail.com",
  1549. "homepage": "https://github.com/Nyholm"
  1550. },
  1551. {
  1552. "name": "Márk Sági-Kazár",
  1553. "email": "mark.sagikazar@gmail.com",
  1554. "homepage": "https://github.com/sagikazarmark"
  1555. },
  1556. {
  1557. "name": "Tobias Schultze",
  1558. "email": "webmaster@tubo-world.de",
  1559. "homepage": "https://github.com/Tobion"
  1560. }
  1561. ],
  1562. "description": "Guzzle is a PHP HTTP client library",
  1563. "homepage": "http://guzzlephp.org/",
  1564. "keywords": [
  1565. "client",
  1566. "curl",
  1567. "framework",
  1568. "http",
  1569. "http client",
  1570. "rest",
  1571. "web service"
  1572. ],
  1573. "support": {
  1574. "issues": "https://github.com/guzzle/guzzle/issues",
  1575. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  1576. },
  1577. "funding": [
  1578. {
  1579. "url": "https://github.com/GrahamCampbell",
  1580. "type": "github"
  1581. },
  1582. {
  1583. "url": "https://github.com/Nyholm",
  1584. "type": "github"
  1585. },
  1586. {
  1587. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1588. "type": "tidelift"
  1589. }
  1590. ],
  1591. "time": "2022-06-20T22:16:07+00:00"
  1592. },
  1593. {
  1594. "name": "guzzlehttp/promises",
  1595. "version": "1.5.3",
  1596. "source": {
  1597. "type": "git",
  1598. "url": "https://github.com/guzzle/promises.git",
  1599. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  1600. },
  1601. "dist": {
  1602. "type": "zip",
  1603. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  1604. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  1605. "shasum": "",
  1606. "mirrors": [
  1607. {
  1608. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1609. "preferred": true
  1610. }
  1611. ]
  1612. },
  1613. "require": {
  1614. "php": ">=5.5"
  1615. },
  1616. "require-dev": {
  1617. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1618. },
  1619. "type": "library",
  1620. "autoload": {
  1621. "files": [
  1622. "src/functions_include.php"
  1623. ],
  1624. "psr-4": {
  1625. "GuzzleHttp\\Promise\\": "src/"
  1626. }
  1627. },
  1628. "notification-url": "https://packagist.org/downloads/",
  1629. "license": [
  1630. "MIT"
  1631. ],
  1632. "authors": [
  1633. {
  1634. "name": "Graham Campbell",
  1635. "email": "hello@gjcampbell.co.uk",
  1636. "homepage": "https://github.com/GrahamCampbell"
  1637. },
  1638. {
  1639. "name": "Michael Dowling",
  1640. "email": "mtdowling@gmail.com",
  1641. "homepage": "https://github.com/mtdowling"
  1642. },
  1643. {
  1644. "name": "Tobias Nyholm",
  1645. "email": "tobias.nyholm@gmail.com",
  1646. "homepage": "https://github.com/Nyholm"
  1647. },
  1648. {
  1649. "name": "Tobias Schultze",
  1650. "email": "webmaster@tubo-world.de",
  1651. "homepage": "https://github.com/Tobion"
  1652. }
  1653. ],
  1654. "description": "Guzzle promises library",
  1655. "keywords": [
  1656. "promise"
  1657. ],
  1658. "support": {
  1659. "issues": "https://github.com/guzzle/promises/issues",
  1660. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  1661. },
  1662. "funding": [
  1663. {
  1664. "url": "https://github.com/GrahamCampbell",
  1665. "type": "github"
  1666. },
  1667. {
  1668. "url": "https://github.com/Nyholm",
  1669. "type": "github"
  1670. },
  1671. {
  1672. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1673. "type": "tidelift"
  1674. }
  1675. ],
  1676. "time": "2023-05-21T12:31:43+00:00"
  1677. },
  1678. {
  1679. "name": "guzzlehttp/psr7",
  1680. "version": "1.9.1",
  1681. "source": {
  1682. "type": "git",
  1683. "url": "https://github.com/guzzle/psr7.git",
  1684. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  1685. },
  1686. "dist": {
  1687. "type": "zip",
  1688. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  1689. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  1690. "shasum": "",
  1691. "mirrors": [
  1692. {
  1693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1694. "preferred": true
  1695. }
  1696. ]
  1697. },
  1698. "require": {
  1699. "php": ">=5.4.0",
  1700. "psr/http-message": "~1.0",
  1701. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1702. },
  1703. "provide": {
  1704. "psr/http-message-implementation": "1.0"
  1705. },
  1706. "require-dev": {
  1707. "ext-zlib": "*",
  1708. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1709. },
  1710. "suggest": {
  1711. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1712. },
  1713. "type": "library",
  1714. "autoload": {
  1715. "files": [
  1716. "src/functions_include.php"
  1717. ],
  1718. "psr-4": {
  1719. "GuzzleHttp\\Psr7\\": "src/"
  1720. }
  1721. },
  1722. "notification-url": "https://packagist.org/downloads/",
  1723. "license": [
  1724. "MIT"
  1725. ],
  1726. "authors": [
  1727. {
  1728. "name": "Graham Campbell",
  1729. "email": "hello@gjcampbell.co.uk",
  1730. "homepage": "https://github.com/GrahamCampbell"
  1731. },
  1732. {
  1733. "name": "Michael Dowling",
  1734. "email": "mtdowling@gmail.com",
  1735. "homepage": "https://github.com/mtdowling"
  1736. },
  1737. {
  1738. "name": "George Mponos",
  1739. "email": "gmponos@gmail.com",
  1740. "homepage": "https://github.com/gmponos"
  1741. },
  1742. {
  1743. "name": "Tobias Nyholm",
  1744. "email": "tobias.nyholm@gmail.com",
  1745. "homepage": "https://github.com/Nyholm"
  1746. },
  1747. {
  1748. "name": "Márk Sági-Kazár",
  1749. "email": "mark.sagikazar@gmail.com",
  1750. "homepage": "https://github.com/sagikazarmark"
  1751. },
  1752. {
  1753. "name": "Tobias Schultze",
  1754. "email": "webmaster@tubo-world.de",
  1755. "homepage": "https://github.com/Tobion"
  1756. }
  1757. ],
  1758. "description": "PSR-7 message implementation that also provides common utility methods",
  1759. "keywords": [
  1760. "http",
  1761. "message",
  1762. "psr-7",
  1763. "request",
  1764. "response",
  1765. "stream",
  1766. "uri",
  1767. "url"
  1768. ],
  1769. "support": {
  1770. "issues": "https://github.com/guzzle/psr7/issues",
  1771. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  1772. },
  1773. "funding": [
  1774. {
  1775. "url": "https://github.com/GrahamCampbell",
  1776. "type": "github"
  1777. },
  1778. {
  1779. "url": "https://github.com/Nyholm",
  1780. "type": "github"
  1781. },
  1782. {
  1783. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1784. "type": "tidelift"
  1785. }
  1786. ],
  1787. "time": "2023-04-17T16:00:37+00:00"
  1788. },
  1789. {
  1790. "name": "intervention/image",
  1791. "version": "2.7.2",
  1792. "source": {
  1793. "type": "git",
  1794. "url": "https://github.com/Intervention/image.git",
  1795. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  1796. },
  1797. "dist": {
  1798. "type": "zip",
  1799. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  1800. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  1801. "shasum": "",
  1802. "mirrors": [
  1803. {
  1804. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1805. "preferred": true
  1806. }
  1807. ]
  1808. },
  1809. "require": {
  1810. "ext-fileinfo": "*",
  1811. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1812. "php": ">=5.4.0"
  1813. },
  1814. "require-dev": {
  1815. "mockery/mockery": "~0.9.2",
  1816. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1817. },
  1818. "suggest": {
  1819. "ext-gd": "to use GD library based image processing.",
  1820. "ext-imagick": "to use Imagick based image processing.",
  1821. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1822. },
  1823. "type": "library",
  1824. "extra": {
  1825. "branch-alias": {
  1826. "dev-master": "2.4-dev"
  1827. },
  1828. "laravel": {
  1829. "providers": [
  1830. "Intervention\\Image\\ImageServiceProvider"
  1831. ],
  1832. "aliases": {
  1833. "Image": "Intervention\\Image\\Facades\\Image"
  1834. }
  1835. }
  1836. },
  1837. "autoload": {
  1838. "psr-4": {
  1839. "Intervention\\Image\\": "src/Intervention/Image"
  1840. }
  1841. },
  1842. "notification-url": "https://packagist.org/downloads/",
  1843. "license": [
  1844. "MIT"
  1845. ],
  1846. "authors": [
  1847. {
  1848. "name": "Oliver Vogel",
  1849. "email": "oliver@intervention.io",
  1850. "homepage": "https://intervention.io/"
  1851. }
  1852. ],
  1853. "description": "Image handling and manipulation library with support for Laravel integration",
  1854. "homepage": "http://image.intervention.io/",
  1855. "keywords": [
  1856. "gd",
  1857. "image",
  1858. "imagick",
  1859. "laravel",
  1860. "thumbnail",
  1861. "watermark"
  1862. ],
  1863. "support": {
  1864. "issues": "https://github.com/Intervention/image/issues",
  1865. "source": "https://github.com/Intervention/image/tree/2.7.2"
  1866. },
  1867. "funding": [
  1868. {
  1869. "url": "https://paypal.me/interventionio",
  1870. "type": "custom"
  1871. },
  1872. {
  1873. "url": "https://github.com/Intervention",
  1874. "type": "github"
  1875. }
  1876. ],
  1877. "time": "2022-05-21T17:30:32+00:00"
  1878. },
  1879. {
  1880. "name": "ip2location/ip2location-laravel",
  1881. "version": "1.2.0",
  1882. "source": {
  1883. "type": "git",
  1884. "url": "https://github.com/ip2location/ip2location-laravel.git",
  1885. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b"
  1886. },
  1887. "dist": {
  1888. "type": "zip",
  1889. "url": "https://api.github.com/repos/ip2location/ip2location-laravel/zipball/56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1890. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1891. "shasum": "",
  1892. "mirrors": [
  1893. {
  1894. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1895. "preferred": true
  1896. }
  1897. ]
  1898. },
  1899. "require": {
  1900. "ip2location/ip2location-php": "8.*",
  1901. "php": ">=5.4"
  1902. },
  1903. "type": "library",
  1904. "autoload": {
  1905. "psr-4": {
  1906. "Ip2location\\IP2LocationLaravel\\": "src/"
  1907. }
  1908. },
  1909. "notification-url": "https://packagist.org/downloads/",
  1910. "license": [
  1911. "MIT"
  1912. ],
  1913. "authors": [
  1914. {
  1915. "name": "IP2Location",
  1916. "email": "support@ip2location.com"
  1917. }
  1918. ],
  1919. "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.",
  1920. "keywords": [
  1921. "geolocation",
  1922. "ip2location",
  1923. "laravel",
  1924. "laravel 5",
  1925. "laravel 7"
  1926. ],
  1927. "support": {
  1928. "issues": "https://github.com/ip2location/ip2location-laravel/issues",
  1929. "source": "https://github.com/ip2location/ip2location-laravel/tree/master"
  1930. },
  1931. "time": "2020-08-27T07:47:55+00:00"
  1932. },
  1933. {
  1934. "name": "ip2location/ip2location-php",
  1935. "version": "8.3.0",
  1936. "source": {
  1937. "type": "git",
  1938. "url": "https://github.com/chrislim2888/IP2Location-PHP-Module.git",
  1939. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15"
  1940. },
  1941. "dist": {
  1942. "type": "zip",
  1943. "url": "https://api.github.com/repos/chrislim2888/IP2Location-PHP-Module/zipball/4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1944. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1945. "shasum": "",
  1946. "mirrors": [
  1947. {
  1948. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1949. "preferred": true
  1950. }
  1951. ]
  1952. },
  1953. "type": "library",
  1954. "autoload": {
  1955. "classmap": [
  1956. "IP2Location.php"
  1957. ]
  1958. },
  1959. "notification-url": "https://packagist.org/downloads/",
  1960. "license": [
  1961. "MIT"
  1962. ],
  1963. "authors": [
  1964. {
  1965. "name": "IP2Location",
  1966. "email": "support@ip2location.com",
  1967. "homepage": "http://www.ip2location.com"
  1968. }
  1969. ],
  1970. "description": "[Official Release] IP2Location PHP API to get location info from IPv4 and IPv6 address.",
  1971. "homepage": "http://www.ip2location.com",
  1972. "keywords": [
  1973. "geolocation",
  1974. "ip2location",
  1975. "ip2locationlite"
  1976. ],
  1977. "support": {
  1978. "issues": "https://github.com/chrislim2888/IP2Location-PHP-Module/issues",
  1979. "source": "https://github.com/chrislim2888/IP2Location-PHP-Module/tree/8.3.0"
  1980. },
  1981. "time": "2020-11-23T04:30:39+00:00"
  1982. },
  1983. {
  1984. "name": "ipip/db",
  1985. "version": "v1.0.1",
  1986. "source": {
  1987. "type": "git",
  1988. "url": "https://github.com/ipipdotnet/ipdb-php.git",
  1989. "reference": "9be2e284369c34267487487f4492de26e20a7735"
  1990. },
  1991. "dist": {
  1992. "type": "zip",
  1993. "url": "https://api.github.com/repos/ipipdotnet/ipdb-php/zipball/9be2e284369c34267487487f4492de26e20a7735",
  1994. "reference": "9be2e284369c34267487487f4492de26e20a7735",
  1995. "shasum": "",
  1996. "mirrors": [
  1997. {
  1998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1999. "preferred": true
  2000. }
  2001. ]
  2002. },
  2003. "require": {
  2004. "php": ">=5.4.0"
  2005. },
  2006. "type": "library",
  2007. "autoload": {
  2008. "psr-4": {
  2009. "ipip\\db\\": "src/ipip/db/"
  2010. }
  2011. },
  2012. "notification-url": "https://packagist.org/downloads/",
  2013. "license": [
  2014. "Apache-2.0"
  2015. ],
  2016. "authors": [
  2017. {
  2018. "name": "IPIP.net",
  2019. "email": "frk@ipip.net",
  2020. "homepage": "https://www.ipip.net"
  2021. }
  2022. ],
  2023. "description": "IPIP.net officially supported IP database ipdb format parsing library",
  2024. "homepage": "https://www.ipip.net",
  2025. "keywords": [
  2026. "IP",
  2027. "geo",
  2028. "geoip",
  2029. "geolocation",
  2030. "ipdb",
  2031. "ipip.net"
  2032. ],
  2033. "support": {
  2034. "issues": "https://github.com/ipipdotnet/ipdb-php/issues",
  2035. "source": "https://github.com/ipipdotnet/ipdb-php/tree/v1.0.1"
  2036. },
  2037. "time": "2023-02-09T06:59:46+00:00"
  2038. },
  2039. {
  2040. "name": "jaybizzle/crawler-detect",
  2041. "version": "v1.2.116",
  2042. "source": {
  2043. "type": "git",
  2044. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  2045. "reference": "97e9fe30219e60092e107651abb379a38b342921"
  2046. },
  2047. "dist": {
  2048. "type": "zip",
  2049. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/97e9fe30219e60092e107651abb379a38b342921",
  2050. "reference": "97e9fe30219e60092e107651abb379a38b342921",
  2051. "shasum": "",
  2052. "mirrors": [
  2053. {
  2054. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2055. "preferred": true
  2056. }
  2057. ]
  2058. },
  2059. "require": {
  2060. "php": ">=5.3.0"
  2061. },
  2062. "require-dev": {
  2063. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  2064. },
  2065. "type": "library",
  2066. "autoload": {
  2067. "psr-4": {
  2068. "Jaybizzle\\CrawlerDetect\\": "src/"
  2069. }
  2070. },
  2071. "notification-url": "https://packagist.org/downloads/",
  2072. "license": [
  2073. "MIT"
  2074. ],
  2075. "authors": [
  2076. {
  2077. "name": "Mark Beech",
  2078. "email": "m@rkbee.ch",
  2079. "role": "Developer"
  2080. }
  2081. ],
  2082. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  2083. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  2084. "keywords": [
  2085. "crawler",
  2086. "crawler detect",
  2087. "crawler detector",
  2088. "crawlerdetect",
  2089. "php crawler detect"
  2090. ],
  2091. "support": {
  2092. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  2093. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.116"
  2094. },
  2095. "time": "2023-07-21T15:49:49+00:00"
  2096. },
  2097. {
  2098. "name": "jenssegers/agent",
  2099. "version": "v2.6.4",
  2100. "source": {
  2101. "type": "git",
  2102. "url": "https://github.com/jenssegers/agent.git",
  2103. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  2104. },
  2105. "dist": {
  2106. "type": "zip",
  2107. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  2108. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  2109. "shasum": "",
  2110. "mirrors": [
  2111. {
  2112. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2113. "preferred": true
  2114. }
  2115. ]
  2116. },
  2117. "require": {
  2118. "jaybizzle/crawler-detect": "^1.2",
  2119. "mobiledetect/mobiledetectlib": "^2.7.6",
  2120. "php": ">=5.6"
  2121. },
  2122. "require-dev": {
  2123. "php-coveralls/php-coveralls": "^2.1",
  2124. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  2125. },
  2126. "suggest": {
  2127. "illuminate/support": "Required for laravel service providers"
  2128. },
  2129. "type": "library",
  2130. "extra": {
  2131. "branch-alias": {
  2132. "dev-master": "3.0-dev"
  2133. },
  2134. "laravel": {
  2135. "providers": [
  2136. "Jenssegers\\Agent\\AgentServiceProvider"
  2137. ],
  2138. "aliases": {
  2139. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  2140. }
  2141. }
  2142. },
  2143. "autoload": {
  2144. "psr-4": {
  2145. "Jenssegers\\Agent\\": "src/"
  2146. }
  2147. },
  2148. "notification-url": "https://packagist.org/downloads/",
  2149. "license": [
  2150. "MIT"
  2151. ],
  2152. "authors": [
  2153. {
  2154. "name": "Jens Segers",
  2155. "homepage": "https://jenssegers.com"
  2156. }
  2157. ],
  2158. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  2159. "homepage": "https://github.com/jenssegers/agent",
  2160. "keywords": [
  2161. "Agent",
  2162. "browser",
  2163. "desktop",
  2164. "laravel",
  2165. "mobile",
  2166. "platform",
  2167. "user agent",
  2168. "useragent"
  2169. ],
  2170. "support": {
  2171. "issues": "https://github.com/jenssegers/agent/issues",
  2172. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  2173. },
  2174. "funding": [
  2175. {
  2176. "url": "https://github.com/jenssegers",
  2177. "type": "github"
  2178. },
  2179. {
  2180. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  2181. "type": "tidelift"
  2182. }
  2183. ],
  2184. "time": "2020-06-13T08:05:20+00:00"
  2185. },
  2186. {
  2187. "name": "laravel-lang/lang",
  2188. "version": "5.0.0",
  2189. "source": {
  2190. "type": "git",
  2191. "url": "https://github.com/Laravel-Lang/lang.git",
  2192. "reference": "96d7868069de7823a680710cc09d51fed24a5dbd"
  2193. },
  2194. "dist": {
  2195. "type": "zip",
  2196. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/96d7868069de7823a680710cc09d51fed24a5dbd",
  2197. "reference": "96d7868069de7823a680710cc09d51fed24a5dbd",
  2198. "shasum": "",
  2199. "mirrors": [
  2200. {
  2201. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2202. "preferred": true
  2203. }
  2204. ]
  2205. },
  2206. "require": {
  2207. "ext-json": "*"
  2208. },
  2209. "suggest": {
  2210. "ablunier/laravel-lang-installer": "Command for easily add languages to a Laravel project",
  2211. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  2212. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  2213. "overtrue/laravel-lang": "Command to add languages in your project"
  2214. },
  2215. "type": "library",
  2216. "notification-url": "https://packagist.org/downloads/",
  2217. "license": [
  2218. "MIT"
  2219. ],
  2220. "authors": [
  2221. {
  2222. "name": "caouecs",
  2223. "email": "caouecs@caouecs.net"
  2224. }
  2225. ],
  2226. "description": "Languages for Laravel",
  2227. "keywords": [
  2228. "lang",
  2229. "languages",
  2230. "laravel",
  2231. "lpm"
  2232. ],
  2233. "support": {
  2234. "issues": "https://github.com/Laravel-Lang/lang/issues",
  2235. "source": "https://github.com/Laravel-Lang/lang/tree/5.0.0"
  2236. },
  2237. "time": "2020-03-17T15:25:41+00:00"
  2238. },
  2239. {
  2240. "name": "laravel-notification-channels/bearychat",
  2241. "version": "1.4.0",
  2242. "source": {
  2243. "type": "git",
  2244. "url": "https://github.com/laravel-notification-channels/bearychat.git",
  2245. "reference": "b04ac9bad37cd08cf177a342b3e2b831c87b2a96"
  2246. },
  2247. "dist": {
  2248. "type": "zip",
  2249. "url": "https://api.github.com/repos/laravel-notification-channels/bearychat/zipball/b04ac9bad37cd08cf177a342b3e2b831c87b2a96",
  2250. "reference": "b04ac9bad37cd08cf177a342b3e2b831c87b2a96",
  2251. "shasum": "",
  2252. "mirrors": [
  2253. {
  2254. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2255. "preferred": true
  2256. }
  2257. ]
  2258. },
  2259. "require": {
  2260. "elfsundae/laravel-bearychat": "~1.4",
  2261. "illuminate/notifications": "~5.3|~6.0|~7.0|~8.0",
  2262. "php": ">=5.6.4"
  2263. },
  2264. "require-dev": {
  2265. "mockery/mockery": "~1.0",
  2266. "phpunit/phpunit": "~5.7|~6.0|~7.0|~8.0"
  2267. },
  2268. "type": "library",
  2269. "autoload": {
  2270. "psr-4": {
  2271. "NotificationChannels\\BearyChat\\": "src"
  2272. }
  2273. },
  2274. "notification-url": "https://packagist.org/downloads/",
  2275. "license": [
  2276. "MIT"
  2277. ],
  2278. "authors": [
  2279. {
  2280. "name": "Elf Sundae",
  2281. "email": "elf.sundae@gmail.com",
  2282. "homepage": "https://github.com/ElfSundae",
  2283. "role": "Developer"
  2284. }
  2285. ],
  2286. "description": "BearyChat notifications channel for Laravel.",
  2287. "homepage": "https://github.com/laravel-notification-channels/bearychat",
  2288. "support": {
  2289. "issues": "https://github.com/laravel-notification-channels/bearychat/issues",
  2290. "source": "https://github.com/laravel-notification-channels/bearychat/tree/1.4.0"
  2291. },
  2292. "abandoned": true,
  2293. "time": "2020-09-13T14:32:13+00:00"
  2294. },
  2295. {
  2296. "name": "laravel-notification-channels/telegram",
  2297. "version": "0.5.1",
  2298. "source": {
  2299. "type": "git",
  2300. "url": "https://github.com/laravel-notification-channels/telegram.git",
  2301. "reference": "2cedb10b78219cc91a285eaa5a3de0db405cc207"
  2302. },
  2303. "dist": {
  2304. "type": "zip",
  2305. "url": "https://api.github.com/repos/laravel-notification-channels/telegram/zipball/2cedb10b78219cc91a285eaa5a3de0db405cc207",
  2306. "reference": "2cedb10b78219cc91a285eaa5a3de0db405cc207",
  2307. "shasum": "",
  2308. "mirrors": [
  2309. {
  2310. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2311. "preferred": true
  2312. }
  2313. ]
  2314. },
  2315. "require": {
  2316. "ext-json": "*",
  2317. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  2318. "illuminate/notifications": "^5.5 || ^6.0 || ^7.0 || ^8.0",
  2319. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0",
  2320. "php": "^7.1 || ^8.0"
  2321. },
  2322. "require-dev": {
  2323. "mockery/mockery": "^1.3",
  2324. "phpunit/phpunit": "^7.0 || ^8.0"
  2325. },
  2326. "type": "library",
  2327. "extra": {
  2328. "laravel": {
  2329. "providers": [
  2330. "NotificationChannels\\Telegram\\TelegramServiceProvider"
  2331. ]
  2332. }
  2333. },
  2334. "autoload": {
  2335. "psr-4": {
  2336. "NotificationChannels\\Telegram\\": "src"
  2337. }
  2338. },
  2339. "notification-url": "https://packagist.org/downloads/",
  2340. "license": [
  2341. "MIT"
  2342. ],
  2343. "authors": [
  2344. {
  2345. "name": "Irfaq Syed",
  2346. "email": "syed@lukonet.com",
  2347. "homepage": "https://lukonet.com",
  2348. "role": "Developer"
  2349. }
  2350. ],
  2351. "description": "Telegram Notifications Channel for Laravel",
  2352. "homepage": "https://github.com/laravel-notification-channels/telegram",
  2353. "keywords": [
  2354. "laravel",
  2355. "notification",
  2356. "telegram",
  2357. "telegram notification",
  2358. "telegram notifications channel"
  2359. ],
  2360. "support": {
  2361. "issues": "https://github.com/laravel-notification-channels/telegram/issues",
  2362. "source": "https://github.com/laravel-notification-channels/telegram/tree/0.5.1"
  2363. },
  2364. "time": "2020-12-06T19:00:18+00:00"
  2365. },
  2366. {
  2367. "name": "laravel/framework",
  2368. "version": "v7.30.6",
  2369. "source": {
  2370. "type": "git",
  2371. "url": "https://github.com/laravel/framework.git",
  2372. "reference": "ecdafad1dda3c790af186a6d18479ea4757ef9ee"
  2373. },
  2374. "dist": {
  2375. "type": "zip",
  2376. "url": "https://api.github.com/repos/laravel/framework/zipball/ecdafad1dda3c790af186a6d18479ea4757ef9ee",
  2377. "reference": "ecdafad1dda3c790af186a6d18479ea4757ef9ee",
  2378. "shasum": "",
  2379. "mirrors": [
  2380. {
  2381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2382. "preferred": true
  2383. }
  2384. ]
  2385. },
  2386. "require": {
  2387. "doctrine/inflector": "^1.4|^2.0",
  2388. "dragonmantank/cron-expression": "^2.3.1",
  2389. "egulias/email-validator": "^2.1.10",
  2390. "ext-json": "*",
  2391. "ext-mbstring": "*",
  2392. "ext-openssl": "*",
  2393. "league/commonmark": "^1.3",
  2394. "league/flysystem": "^1.1",
  2395. "monolog/monolog": "^2.0",
  2396. "nesbot/carbon": "^2.31",
  2397. "opis/closure": "^3.6",
  2398. "php": "^7.2.5|^8.0",
  2399. "psr/container": "^1.0",
  2400. "psr/simple-cache": "^1.0",
  2401. "ramsey/uuid": "^3.7|^4.0",
  2402. "swiftmailer/swiftmailer": "^6.0",
  2403. "symfony/console": "^5.0",
  2404. "symfony/error-handler": "^5.0",
  2405. "symfony/finder": "^5.0",
  2406. "symfony/http-foundation": "^5.0",
  2407. "symfony/http-kernel": "^5.0",
  2408. "symfony/mime": "^5.0",
  2409. "symfony/polyfill-php73": "^1.17",
  2410. "symfony/process": "^5.0",
  2411. "symfony/routing": "^5.0",
  2412. "symfony/var-dumper": "^5.0",
  2413. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2414. "vlucas/phpdotenv": "^4.0",
  2415. "voku/portable-ascii": "^1.4.8"
  2416. },
  2417. "conflict": {
  2418. "tightenco/collect": "<5.5.33"
  2419. },
  2420. "provide": {
  2421. "psr/container-implementation": "1.0"
  2422. },
  2423. "replace": {
  2424. "illuminate/auth": "self.version",
  2425. "illuminate/broadcasting": "self.version",
  2426. "illuminate/bus": "self.version",
  2427. "illuminate/cache": "self.version",
  2428. "illuminate/config": "self.version",
  2429. "illuminate/console": "self.version",
  2430. "illuminate/container": "self.version",
  2431. "illuminate/contracts": "self.version",
  2432. "illuminate/cookie": "self.version",
  2433. "illuminate/database": "self.version",
  2434. "illuminate/encryption": "self.version",
  2435. "illuminate/events": "self.version",
  2436. "illuminate/filesystem": "self.version",
  2437. "illuminate/hashing": "self.version",
  2438. "illuminate/http": "self.version",
  2439. "illuminate/log": "self.version",
  2440. "illuminate/mail": "self.version",
  2441. "illuminate/notifications": "self.version",
  2442. "illuminate/pagination": "self.version",
  2443. "illuminate/pipeline": "self.version",
  2444. "illuminate/queue": "self.version",
  2445. "illuminate/redis": "self.version",
  2446. "illuminate/routing": "self.version",
  2447. "illuminate/session": "self.version",
  2448. "illuminate/support": "self.version",
  2449. "illuminate/testing": "self.version",
  2450. "illuminate/translation": "self.version",
  2451. "illuminate/validation": "self.version",
  2452. "illuminate/view": "self.version"
  2453. },
  2454. "require-dev": {
  2455. "aws/aws-sdk-php": "^3.155",
  2456. "doctrine/dbal": "^2.6",
  2457. "filp/whoops": "^2.8",
  2458. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2459. "league/flysystem-cached-adapter": "^1.0",
  2460. "mockery/mockery": "~1.3.3|^1.4.2",
  2461. "moontoast/math": "^1.1",
  2462. "orchestra/testbench-core": "^5.8",
  2463. "pda/pheanstalk": "^4.0",
  2464. "phpunit/phpunit": "^8.4|^9.3.3",
  2465. "predis/predis": "^1.1.1",
  2466. "symfony/cache": "^5.0"
  2467. },
  2468. "suggest": {
  2469. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2470. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2471. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2472. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2473. "ext-memcached": "Required to use the memcache cache driver.",
  2474. "ext-pcntl": "Required to use all features of the queue worker.",
  2475. "ext-posix": "Required to use all features of the queue worker.",
  2476. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2477. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2478. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2479. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2480. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2481. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2482. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2483. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2484. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2485. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2486. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2487. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2488. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2489. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2490. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2491. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2492. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2493. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2494. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2495. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2496. },
  2497. "type": "library",
  2498. "extra": {
  2499. "branch-alias": {
  2500. "dev-master": "7.x-dev"
  2501. }
  2502. },
  2503. "autoload": {
  2504. "files": [
  2505. "src/Illuminate/Foundation/helpers.php",
  2506. "src/Illuminate/Support/helpers.php"
  2507. ],
  2508. "psr-4": {
  2509. "Illuminate\\": "src/Illuminate/"
  2510. }
  2511. },
  2512. "notification-url": "https://packagist.org/downloads/",
  2513. "license": [
  2514. "MIT"
  2515. ],
  2516. "authors": [
  2517. {
  2518. "name": "Taylor Otwell",
  2519. "email": "taylor@laravel.com"
  2520. }
  2521. ],
  2522. "description": "The Laravel Framework.",
  2523. "homepage": "https://laravel.com",
  2524. "keywords": [
  2525. "framework",
  2526. "laravel"
  2527. ],
  2528. "support": {
  2529. "issues": "https://github.com/laravel/framework/issues",
  2530. "source": "https://github.com/laravel/framework"
  2531. },
  2532. "time": "2021-12-07T14:56:47+00:00"
  2533. },
  2534. {
  2535. "name": "laravel/tinker",
  2536. "version": "v2.9.0",
  2537. "source": {
  2538. "type": "git",
  2539. "url": "https://github.com/laravel/tinker.git",
  2540. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  2541. },
  2542. "dist": {
  2543. "type": "zip",
  2544. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  2545. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  2546. "shasum": "",
  2547. "mirrors": [
  2548. {
  2549. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2550. "preferred": true
  2551. }
  2552. ]
  2553. },
  2554. "require": {
  2555. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2556. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2557. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2558. "php": "^7.2.5|^8.0",
  2559. "psy/psysh": "^0.11.1|^0.12.0",
  2560. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2561. },
  2562. "require-dev": {
  2563. "mockery/mockery": "~1.3.3|^1.4.2",
  2564. "phpstan/phpstan": "^1.10",
  2565. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2566. },
  2567. "suggest": {
  2568. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2569. },
  2570. "type": "library",
  2571. "extra": {
  2572. "laravel": {
  2573. "providers": [
  2574. "Laravel\\Tinker\\TinkerServiceProvider"
  2575. ]
  2576. }
  2577. },
  2578. "autoload": {
  2579. "psr-4": {
  2580. "Laravel\\Tinker\\": "src/"
  2581. }
  2582. },
  2583. "notification-url": "https://packagist.org/downloads/",
  2584. "license": [
  2585. "MIT"
  2586. ],
  2587. "authors": [
  2588. {
  2589. "name": "Taylor Otwell",
  2590. "email": "taylor@laravel.com"
  2591. }
  2592. ],
  2593. "description": "Powerful REPL for the Laravel framework.",
  2594. "keywords": [
  2595. "REPL",
  2596. "Tinker",
  2597. "laravel",
  2598. "psysh"
  2599. ],
  2600. "support": {
  2601. "issues": "https://github.com/laravel/tinker/issues",
  2602. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  2603. },
  2604. "time": "2024-01-04T16:10:04+00:00"
  2605. },
  2606. {
  2607. "name": "lcobucci/jwt",
  2608. "version": "3.3.3",
  2609. "source": {
  2610. "type": "git",
  2611. "url": "https://github.com/lcobucci/jwt.git",
  2612. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  2613. },
  2614. "dist": {
  2615. "type": "zip",
  2616. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  2617. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  2618. "shasum": "",
  2619. "mirrors": [
  2620. {
  2621. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2622. "preferred": true
  2623. }
  2624. ]
  2625. },
  2626. "require": {
  2627. "ext-mbstring": "*",
  2628. "ext-openssl": "*",
  2629. "php": "^5.6 || ^7.0"
  2630. },
  2631. "require-dev": {
  2632. "mikey179/vfsstream": "~1.5",
  2633. "phpmd/phpmd": "~2.2",
  2634. "phpunit/php-invoker": "~1.1",
  2635. "phpunit/phpunit": "^5.7 || ^7.3",
  2636. "squizlabs/php_codesniffer": "~2.3"
  2637. },
  2638. "type": "library",
  2639. "extra": {
  2640. "branch-alias": {
  2641. "dev-master": "3.1-dev"
  2642. }
  2643. },
  2644. "autoload": {
  2645. "psr-4": {
  2646. "Lcobucci\\JWT\\": "src"
  2647. }
  2648. },
  2649. "notification-url": "https://packagist.org/downloads/",
  2650. "license": [
  2651. "BSD-3-Clause"
  2652. ],
  2653. "authors": [
  2654. {
  2655. "name": "Luís Otávio Cobucci Oblonczyk",
  2656. "email": "lcobucci@gmail.com",
  2657. "role": "Developer"
  2658. }
  2659. ],
  2660. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2661. "keywords": [
  2662. "JWS",
  2663. "jwt"
  2664. ],
  2665. "support": {
  2666. "issues": "https://github.com/lcobucci/jwt/issues",
  2667. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  2668. },
  2669. "funding": [
  2670. {
  2671. "url": "https://github.com/lcobucci",
  2672. "type": "github"
  2673. },
  2674. {
  2675. "url": "https://www.patreon.com/lcobucci",
  2676. "type": "patreon"
  2677. }
  2678. ],
  2679. "time": "2020-08-20T13:22:28+00:00"
  2680. },
  2681. {
  2682. "name": "league/commonmark",
  2683. "version": "1.6.7",
  2684. "source": {
  2685. "type": "git",
  2686. "url": "https://github.com/thephpleague/commonmark.git",
  2687. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b"
  2688. },
  2689. "dist": {
  2690. "type": "zip",
  2691. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  2692. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  2693. "shasum": "",
  2694. "mirrors": [
  2695. {
  2696. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2697. "preferred": true
  2698. }
  2699. ]
  2700. },
  2701. "require": {
  2702. "ext-mbstring": "*",
  2703. "php": "^7.1 || ^8.0"
  2704. },
  2705. "conflict": {
  2706. "scrutinizer/ocular": "1.7.*"
  2707. },
  2708. "require-dev": {
  2709. "cebe/markdown": "~1.0",
  2710. "commonmark/commonmark.js": "0.29.2",
  2711. "erusev/parsedown": "~1.0",
  2712. "ext-json": "*",
  2713. "github/gfm": "0.29.0",
  2714. "michelf/php-markdown": "~1.4",
  2715. "mikehaertl/php-shellcommand": "^1.4",
  2716. "phpstan/phpstan": "^0.12.90",
  2717. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2718. "scrutinizer/ocular": "^1.5",
  2719. "symfony/finder": "^4.2"
  2720. },
  2721. "bin": [
  2722. "bin/commonmark"
  2723. ],
  2724. "type": "library",
  2725. "autoload": {
  2726. "psr-4": {
  2727. "League\\CommonMark\\": "src"
  2728. }
  2729. },
  2730. "notification-url": "https://packagist.org/downloads/",
  2731. "license": [
  2732. "BSD-3-Clause"
  2733. ],
  2734. "authors": [
  2735. {
  2736. "name": "Colin O'Dell",
  2737. "email": "colinodell@gmail.com",
  2738. "homepage": "https://www.colinodell.com",
  2739. "role": "Lead Developer"
  2740. }
  2741. ],
  2742. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2743. "homepage": "https://commonmark.thephpleague.com",
  2744. "keywords": [
  2745. "commonmark",
  2746. "flavored",
  2747. "gfm",
  2748. "github",
  2749. "github-flavored",
  2750. "markdown",
  2751. "md",
  2752. "parser"
  2753. ],
  2754. "support": {
  2755. "docs": "https://commonmark.thephpleague.com/",
  2756. "issues": "https://github.com/thephpleague/commonmark/issues",
  2757. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2758. "source": "https://github.com/thephpleague/commonmark"
  2759. },
  2760. "funding": [
  2761. {
  2762. "url": "https://www.colinodell.com/sponsor",
  2763. "type": "custom"
  2764. },
  2765. {
  2766. "url": "https://www.paypal.me/colinpodell/10.00",
  2767. "type": "custom"
  2768. },
  2769. {
  2770. "url": "https://github.com/colinodell",
  2771. "type": "github"
  2772. },
  2773. {
  2774. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2775. "type": "tidelift"
  2776. }
  2777. ],
  2778. "time": "2022-01-13T17:18:13+00:00"
  2779. },
  2780. {
  2781. "name": "league/flysystem",
  2782. "version": "1.1.10",
  2783. "source": {
  2784. "type": "git",
  2785. "url": "https://github.com/thephpleague/flysystem.git",
  2786. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2787. },
  2788. "dist": {
  2789. "type": "zip",
  2790. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2791. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2792. "shasum": "",
  2793. "mirrors": [
  2794. {
  2795. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2796. "preferred": true
  2797. }
  2798. ]
  2799. },
  2800. "require": {
  2801. "ext-fileinfo": "*",
  2802. "league/mime-type-detection": "^1.3",
  2803. "php": "^7.2.5 || ^8.0"
  2804. },
  2805. "conflict": {
  2806. "league/flysystem-sftp": "<1.0.6"
  2807. },
  2808. "require-dev": {
  2809. "phpspec/prophecy": "^1.11.1",
  2810. "phpunit/phpunit": "^8.5.8"
  2811. },
  2812. "suggest": {
  2813. "ext-ftp": "Allows you to use FTP server storage",
  2814. "ext-openssl": "Allows you to use FTPS server storage",
  2815. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2816. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2817. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2818. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2819. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2820. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2821. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2822. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2823. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2824. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2825. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2826. },
  2827. "type": "library",
  2828. "extra": {
  2829. "branch-alias": {
  2830. "dev-master": "1.1-dev"
  2831. }
  2832. },
  2833. "autoload": {
  2834. "psr-4": {
  2835. "League\\Flysystem\\": "src/"
  2836. }
  2837. },
  2838. "notification-url": "https://packagist.org/downloads/",
  2839. "license": [
  2840. "MIT"
  2841. ],
  2842. "authors": [
  2843. {
  2844. "name": "Frank de Jonge",
  2845. "email": "info@frenky.net"
  2846. }
  2847. ],
  2848. "description": "Filesystem abstraction: Many filesystems, one API.",
  2849. "keywords": [
  2850. "Cloud Files",
  2851. "WebDAV",
  2852. "abstraction",
  2853. "aws",
  2854. "cloud",
  2855. "copy.com",
  2856. "dropbox",
  2857. "file systems",
  2858. "files",
  2859. "filesystem",
  2860. "filesystems",
  2861. "ftp",
  2862. "rackspace",
  2863. "remote",
  2864. "s3",
  2865. "sftp",
  2866. "storage"
  2867. ],
  2868. "support": {
  2869. "issues": "https://github.com/thephpleague/flysystem/issues",
  2870. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2871. },
  2872. "funding": [
  2873. {
  2874. "url": "https://offset.earth/frankdejonge",
  2875. "type": "other"
  2876. }
  2877. ],
  2878. "time": "2022-10-04T09:16:37+00:00"
  2879. },
  2880. {
  2881. "name": "league/mime-type-detection",
  2882. "version": "1.12.0",
  2883. "source": {
  2884. "type": "git",
  2885. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2886. "reference": "c7f2872fb273bf493811473dafc88d60ae829f48"
  2887. },
  2888. "dist": {
  2889. "type": "zip",
  2890. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/c7f2872fb273bf493811473dafc88d60ae829f48",
  2891. "reference": "c7f2872fb273bf493811473dafc88d60ae829f48",
  2892. "shasum": "",
  2893. "mirrors": [
  2894. {
  2895. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2896. "preferred": true
  2897. }
  2898. ]
  2899. },
  2900. "require": {
  2901. "ext-fileinfo": "*",
  2902. "php": "^7.2 || ^8.0"
  2903. },
  2904. "require-dev": {
  2905. "friendsofphp/php-cs-fixer": "^3.2",
  2906. "phpstan/phpstan": "^0.12.68",
  2907. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2908. },
  2909. "type": "library",
  2910. "autoload": {
  2911. "psr-4": {
  2912. "League\\MimeTypeDetection\\": "src"
  2913. }
  2914. },
  2915. "notification-url": "https://packagist.org/downloads/",
  2916. "license": [
  2917. "MIT"
  2918. ],
  2919. "authors": [
  2920. {
  2921. "name": "Frank de Jonge",
  2922. "email": "info@frankdejonge.nl"
  2923. }
  2924. ],
  2925. "description": "Mime-type detection for Flysystem",
  2926. "support": {
  2927. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2928. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.12.0"
  2929. },
  2930. "funding": [
  2931. {
  2932. "url": "https://github.com/frankdejonge",
  2933. "type": "github"
  2934. },
  2935. {
  2936. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2937. "type": "tidelift"
  2938. }
  2939. ],
  2940. "time": "2023-08-03T07:14:11+00:00"
  2941. },
  2942. {
  2943. "name": "maennchen/zipstream-php",
  2944. "version": "2.1.0",
  2945. "source": {
  2946. "type": "git",
  2947. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2948. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2949. },
  2950. "dist": {
  2951. "type": "zip",
  2952. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2953. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2954. "shasum": "",
  2955. "mirrors": [
  2956. {
  2957. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2958. "preferred": true
  2959. }
  2960. ]
  2961. },
  2962. "require": {
  2963. "myclabs/php-enum": "^1.5",
  2964. "php": ">= 7.1",
  2965. "psr/http-message": "^1.0",
  2966. "symfony/polyfill-mbstring": "^1.0"
  2967. },
  2968. "require-dev": {
  2969. "ext-zip": "*",
  2970. "guzzlehttp/guzzle": ">= 6.3",
  2971. "mikey179/vfsstream": "^1.6",
  2972. "phpunit/phpunit": ">= 7.5"
  2973. },
  2974. "type": "library",
  2975. "autoload": {
  2976. "psr-4": {
  2977. "ZipStream\\": "src/"
  2978. }
  2979. },
  2980. "notification-url": "https://packagist.org/downloads/",
  2981. "license": [
  2982. "MIT"
  2983. ],
  2984. "authors": [
  2985. {
  2986. "name": "Paul Duncan",
  2987. "email": "pabs@pablotron.org"
  2988. },
  2989. {
  2990. "name": "Jonatan Männchen",
  2991. "email": "jonatan@maennchen.ch"
  2992. },
  2993. {
  2994. "name": "Jesse Donat",
  2995. "email": "donatj@gmail.com"
  2996. },
  2997. {
  2998. "name": "András Kolesár",
  2999. "email": "kolesar@kolesar.hu"
  3000. }
  3001. ],
  3002. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  3003. "keywords": [
  3004. "stream",
  3005. "zip"
  3006. ],
  3007. "support": {
  3008. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  3009. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.1.0"
  3010. },
  3011. "funding": [
  3012. {
  3013. "url": "https://github.com/maennchen",
  3014. "type": "github"
  3015. },
  3016. {
  3017. "url": "https://opencollective.com/zipstream",
  3018. "type": "open_collective"
  3019. }
  3020. ],
  3021. "time": "2020-05-30T13:11:16+00:00"
  3022. },
  3023. {
  3024. "name": "markbaker/complex",
  3025. "version": "3.0.2",
  3026. "source": {
  3027. "type": "git",
  3028. "url": "https://github.com/MarkBaker/PHPComplex.git",
  3029. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  3030. },
  3031. "dist": {
  3032. "type": "zip",
  3033. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3034. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3035. "shasum": "",
  3036. "mirrors": [
  3037. {
  3038. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3039. "preferred": true
  3040. }
  3041. ]
  3042. },
  3043. "require": {
  3044. "php": "^7.2 || ^8.0"
  3045. },
  3046. "require-dev": {
  3047. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3048. "phpcompatibility/php-compatibility": "^9.3",
  3049. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3050. "squizlabs/php_codesniffer": "^3.7"
  3051. },
  3052. "type": "library",
  3053. "autoload": {
  3054. "psr-4": {
  3055. "Complex\\": "classes/src/"
  3056. }
  3057. },
  3058. "notification-url": "https://packagist.org/downloads/",
  3059. "license": [
  3060. "MIT"
  3061. ],
  3062. "authors": [
  3063. {
  3064. "name": "Mark Baker",
  3065. "email": "mark@lange.demon.co.uk"
  3066. }
  3067. ],
  3068. "description": "PHP Class for working with complex numbers",
  3069. "homepage": "https://github.com/MarkBaker/PHPComplex",
  3070. "keywords": [
  3071. "complex",
  3072. "mathematics"
  3073. ],
  3074. "support": {
  3075. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3076. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  3077. },
  3078. "time": "2022-12-06T16:21:08+00:00"
  3079. },
  3080. {
  3081. "name": "markbaker/matrix",
  3082. "version": "3.0.1",
  3083. "source": {
  3084. "type": "git",
  3085. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3086. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  3087. },
  3088. "dist": {
  3089. "type": "zip",
  3090. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  3091. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3092. "shasum": "",
  3093. "mirrors": [
  3094. {
  3095. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3096. "preferred": true
  3097. }
  3098. ]
  3099. },
  3100. "require": {
  3101. "php": "^7.1 || ^8.0"
  3102. },
  3103. "require-dev": {
  3104. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3105. "phpcompatibility/php-compatibility": "^9.3",
  3106. "phpdocumentor/phpdocumentor": "2.*",
  3107. "phploc/phploc": "^4.0",
  3108. "phpmd/phpmd": "2.*",
  3109. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3110. "sebastian/phpcpd": "^4.0",
  3111. "squizlabs/php_codesniffer": "^3.7"
  3112. },
  3113. "type": "library",
  3114. "autoload": {
  3115. "psr-4": {
  3116. "Matrix\\": "classes/src/"
  3117. }
  3118. },
  3119. "notification-url": "https://packagist.org/downloads/",
  3120. "license": [
  3121. "MIT"
  3122. ],
  3123. "authors": [
  3124. {
  3125. "name": "Mark Baker",
  3126. "email": "mark@demon-angel.eu"
  3127. }
  3128. ],
  3129. "description": "PHP Class for working with matrices",
  3130. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3131. "keywords": [
  3132. "mathematics",
  3133. "matrix",
  3134. "vector"
  3135. ],
  3136. "support": {
  3137. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3138. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  3139. },
  3140. "time": "2022-12-02T22:17:43+00:00"
  3141. },
  3142. {
  3143. "name": "maxmind-db/reader",
  3144. "version": "v1.11.0",
  3145. "source": {
  3146. "type": "git",
  3147. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  3148. "reference": "b1f3c0699525336d09cc5161a2861268d9f2ae5b"
  3149. },
  3150. "dist": {
  3151. "type": "zip",
  3152. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/b1f3c0699525336d09cc5161a2861268d9f2ae5b",
  3153. "reference": "b1f3c0699525336d09cc5161a2861268d9f2ae5b",
  3154. "shasum": "",
  3155. "mirrors": [
  3156. {
  3157. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3158. "preferred": true
  3159. }
  3160. ]
  3161. },
  3162. "require": {
  3163. "php": ">=7.2"
  3164. },
  3165. "conflict": {
  3166. "ext-maxminddb": "<1.10.1,>=2.0.0"
  3167. },
  3168. "require-dev": {
  3169. "friendsofphp/php-cs-fixer": "3.*",
  3170. "php-coveralls/php-coveralls": "^2.1",
  3171. "phpstan/phpstan": "*",
  3172. "phpunit/phpcov": ">=6.0.0",
  3173. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  3174. "squizlabs/php_codesniffer": "3.*"
  3175. },
  3176. "suggest": {
  3177. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  3178. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  3179. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  3180. },
  3181. "type": "library",
  3182. "autoload": {
  3183. "psr-4": {
  3184. "MaxMind\\Db\\": "src/MaxMind/Db"
  3185. }
  3186. },
  3187. "notification-url": "https://packagist.org/downloads/",
  3188. "license": [
  3189. "Apache-2.0"
  3190. ],
  3191. "authors": [
  3192. {
  3193. "name": "Gregory J. Oschwald",
  3194. "email": "goschwald@maxmind.com",
  3195. "homepage": "https://www.maxmind.com/"
  3196. }
  3197. ],
  3198. "description": "MaxMind DB Reader API",
  3199. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  3200. "keywords": [
  3201. "database",
  3202. "geoip",
  3203. "geoip2",
  3204. "geolocation",
  3205. "maxmind"
  3206. ],
  3207. "support": {
  3208. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  3209. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.11.0"
  3210. },
  3211. "time": "2021-10-18T15:23:10+00:00"
  3212. },
  3213. {
  3214. "name": "maxmind/web-service-common",
  3215. "version": "v0.9.0",
  3216. "source": {
  3217. "type": "git",
  3218. "url": "https://github.com/maxmind/web-service-common-php.git",
  3219. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53"
  3220. },
  3221. "dist": {
  3222. "type": "zip",
  3223. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  3224. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  3225. "shasum": "",
  3226. "mirrors": [
  3227. {
  3228. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3229. "preferred": true
  3230. }
  3231. ]
  3232. },
  3233. "require": {
  3234. "composer/ca-bundle": "^1.0.3",
  3235. "ext-curl": "*",
  3236. "ext-json": "*",
  3237. "php": ">=7.2"
  3238. },
  3239. "require-dev": {
  3240. "friendsofphp/php-cs-fixer": "3.*",
  3241. "phpstan/phpstan": "*",
  3242. "phpunit/phpunit": "^8.0 || ^9.0",
  3243. "squizlabs/php_codesniffer": "3.*"
  3244. },
  3245. "type": "library",
  3246. "autoload": {
  3247. "psr-4": {
  3248. "MaxMind\\Exception\\": "src/Exception",
  3249. "MaxMind\\WebService\\": "src/WebService"
  3250. }
  3251. },
  3252. "notification-url": "https://packagist.org/downloads/",
  3253. "license": [
  3254. "Apache-2.0"
  3255. ],
  3256. "authors": [
  3257. {
  3258. "name": "Gregory Oschwald",
  3259. "email": "goschwald@maxmind.com"
  3260. }
  3261. ],
  3262. "description": "Internal MaxMind Web Service API",
  3263. "homepage": "https://github.com/maxmind/web-service-common-php",
  3264. "support": {
  3265. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  3266. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.9.0"
  3267. },
  3268. "time": "2022-03-28T17:43:20+00:00"
  3269. },
  3270. {
  3271. "name": "mews/captcha",
  3272. "version": "3.3.2",
  3273. "source": {
  3274. "type": "git",
  3275. "url": "https://github.com/mewebstudio/captcha.git",
  3276. "reference": "7aee0e80bcf7eb17fc0d574244e384e56ae2af77"
  3277. },
  3278. "dist": {
  3279. "type": "zip",
  3280. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/7aee0e80bcf7eb17fc0d574244e384e56ae2af77",
  3281. "reference": "7aee0e80bcf7eb17fc0d574244e384e56ae2af77",
  3282. "shasum": "",
  3283. "mirrors": [
  3284. {
  3285. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3286. "preferred": true
  3287. }
  3288. ]
  3289. },
  3290. "require": {
  3291. "ext-gd": "*",
  3292. "illuminate/config": "~5|^6|^7|^8|^9|^10",
  3293. "illuminate/filesystem": "~5|^6|^7|^8|^9|^10",
  3294. "illuminate/hashing": "~5|^6|^7|^8|^9|^10",
  3295. "illuminate/session": "~5|^6|^7|^8|^9|^10",
  3296. "illuminate/support": "~5|^6|^7|^8|^9|^10",
  3297. "intervention/image": "~2.5",
  3298. "php": "^7.2|^8.1"
  3299. },
  3300. "require-dev": {
  3301. "mockery/mockery": "^1.0",
  3302. "phpunit/phpunit": "^8.5|^9.5.10"
  3303. },
  3304. "type": "package",
  3305. "extra": {
  3306. "laravel": {
  3307. "providers": [
  3308. "Mews\\Captcha\\CaptchaServiceProvider"
  3309. ],
  3310. "aliases": {
  3311. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  3312. }
  3313. }
  3314. },
  3315. "autoload": {
  3316. "files": [
  3317. "src/helpers.php"
  3318. ],
  3319. "psr-4": {
  3320. "Mews\\Captcha\\": "src/"
  3321. }
  3322. },
  3323. "notification-url": "https://packagist.org/downloads/",
  3324. "license": [
  3325. "MIT"
  3326. ],
  3327. "authors": [
  3328. {
  3329. "name": "Muharrem ERİN",
  3330. "email": "me@mewebstudio.com",
  3331. "homepage": "https://github.com/mewebstudio",
  3332. "role": "Developer"
  3333. }
  3334. ],
  3335. "description": "Laravel 5/6/7/8/9/10 Captcha Package",
  3336. "homepage": "https://github.com/mewebstudio/captcha",
  3337. "keywords": [
  3338. "captcha",
  3339. "laravel5 Security",
  3340. "laravel6 Captcha",
  3341. "laravel6 Security"
  3342. ],
  3343. "support": {
  3344. "issues": "https://github.com/mewebstudio/captcha/issues",
  3345. "source": "https://github.com/mewebstudio/captcha/tree/3.3.2"
  3346. },
  3347. "time": "2023-07-15T15:07:48+00:00"
  3348. },
  3349. {
  3350. "name": "mews/purifier",
  3351. "version": "3.4.1",
  3352. "source": {
  3353. "type": "git",
  3354. "url": "https://github.com/mewebstudio/Purifier.git",
  3355. "reference": "48e7bddc18140412d7cd815b6eea2fc7a141c432"
  3356. },
  3357. "dist": {
  3358. "type": "zip",
  3359. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/48e7bddc18140412d7cd815b6eea2fc7a141c432",
  3360. "reference": "48e7bddc18140412d7cd815b6eea2fc7a141c432",
  3361. "shasum": "",
  3362. "mirrors": [
  3363. {
  3364. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3365. "preferred": true
  3366. }
  3367. ]
  3368. },
  3369. "require": {
  3370. "ezyang/htmlpurifier": "^4.16.0",
  3371. "illuminate/config": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
  3372. "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
  3373. "illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
  3374. "php": "^7.2|^8.0"
  3375. },
  3376. "require-dev": {
  3377. "graham-campbell/testbench": "^3.2|^5.5.1",
  3378. "mockery/mockery": "^1.3.3",
  3379. "phpunit/phpunit": "^8.0|^9.0|^10.0"
  3380. },
  3381. "suggest": {
  3382. "laravel/framework": "To test the Laravel bindings",
  3383. "laravel/lumen-framework": "To test the Lumen bindings"
  3384. },
  3385. "type": "package",
  3386. "extra": {
  3387. "laravel": {
  3388. "providers": [
  3389. "Mews\\Purifier\\PurifierServiceProvider"
  3390. ],
  3391. "aliases": {
  3392. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  3393. }
  3394. }
  3395. },
  3396. "autoload": {
  3397. "files": [
  3398. "src/helpers.php"
  3399. ],
  3400. "psr-4": {
  3401. "Mews\\Purifier\\": "src/"
  3402. }
  3403. },
  3404. "notification-url": "https://packagist.org/downloads/",
  3405. "license": [
  3406. "MIT"
  3407. ],
  3408. "authors": [
  3409. {
  3410. "name": "Muharrem ERİN",
  3411. "email": "me@mewebstudio.com",
  3412. "homepage": "https://github.com/mewebstudio",
  3413. "role": "Developer"
  3414. }
  3415. ],
  3416. "description": "Laravel 5/6/7/8/9/10 HtmlPurifier Package",
  3417. "homepage": "https://github.com/mewebstudio/purifier",
  3418. "keywords": [
  3419. "Laravel Purifier",
  3420. "Laravel Security",
  3421. "Purifier",
  3422. "htmlpurifier",
  3423. "laravel HtmlPurifier",
  3424. "security",
  3425. "xss"
  3426. ],
  3427. "support": {
  3428. "issues": "https://github.com/mewebstudio/Purifier/issues",
  3429. "source": "https://github.com/mewebstudio/Purifier/tree/3.4.1"
  3430. },
  3431. "time": "2023-03-14T08:28:28+00:00"
  3432. },
  3433. {
  3434. "name": "mobiledetect/mobiledetectlib",
  3435. "version": "2.8.45",
  3436. "source": {
  3437. "type": "git",
  3438. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  3439. "reference": "96aaebcf4f50d3d2692ab81d2c5132e425bca266"
  3440. },
  3441. "dist": {
  3442. "type": "zip",
  3443. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/96aaebcf4f50d3d2692ab81d2c5132e425bca266",
  3444. "reference": "96aaebcf4f50d3d2692ab81d2c5132e425bca266",
  3445. "shasum": "",
  3446. "mirrors": [
  3447. {
  3448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3449. "preferred": true
  3450. }
  3451. ]
  3452. },
  3453. "require": {
  3454. "php": ">=5.0.0"
  3455. },
  3456. "require-dev": {
  3457. "phpunit/phpunit": "~4.8.36"
  3458. },
  3459. "type": "library",
  3460. "autoload": {
  3461. "psr-0": {
  3462. "Detection": "namespaced/"
  3463. },
  3464. "classmap": [
  3465. "Mobile_Detect.php"
  3466. ]
  3467. },
  3468. "notification-url": "https://packagist.org/downloads/",
  3469. "license": [
  3470. "MIT"
  3471. ],
  3472. "authors": [
  3473. {
  3474. "name": "Serban Ghita",
  3475. "email": "serbanghita@gmail.com",
  3476. "homepage": "http://mobiledetect.net",
  3477. "role": "Developer"
  3478. }
  3479. ],
  3480. "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.",
  3481. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  3482. "keywords": [
  3483. "detect mobile devices",
  3484. "mobile",
  3485. "mobile detect",
  3486. "mobile detector",
  3487. "php mobile detect"
  3488. ],
  3489. "support": {
  3490. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  3491. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.45"
  3492. },
  3493. "funding": [
  3494. {
  3495. "url": "https://github.com/serbanghita",
  3496. "type": "github"
  3497. }
  3498. ],
  3499. "time": "2023-11-07T21:57:25+00:00"
  3500. },
  3501. {
  3502. "name": "monolog/monolog",
  3503. "version": "2.9.2",
  3504. "source": {
  3505. "type": "git",
  3506. "url": "https://github.com/Seldaek/monolog.git",
  3507. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  3508. },
  3509. "dist": {
  3510. "type": "zip",
  3511. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3512. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3513. "shasum": "",
  3514. "mirrors": [
  3515. {
  3516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3517. "preferred": true
  3518. }
  3519. ]
  3520. },
  3521. "require": {
  3522. "php": ">=7.2",
  3523. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3524. },
  3525. "provide": {
  3526. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3527. },
  3528. "require-dev": {
  3529. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3530. "doctrine/couchdb": "~1.0@dev",
  3531. "elasticsearch/elasticsearch": "^7 || ^8",
  3532. "ext-json": "*",
  3533. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3534. "guzzlehttp/guzzle": "^7.4",
  3535. "guzzlehttp/psr7": "^2.2",
  3536. "mongodb/mongodb": "^1.8",
  3537. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3538. "phpspec/prophecy": "^1.15",
  3539. "phpstan/phpstan": "^0.12.91",
  3540. "phpunit/phpunit": "^8.5.14",
  3541. "predis/predis": "^1.1 || ^2.0",
  3542. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3543. "ruflin/elastica": "^7",
  3544. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3545. "symfony/mailer": "^5.4 || ^6",
  3546. "symfony/mime": "^5.4 || ^6"
  3547. },
  3548. "suggest": {
  3549. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3550. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3551. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3552. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3553. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3554. "ext-mbstring": "Allow to work properly with unicode symbols",
  3555. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3556. "ext-openssl": "Required to send log messages using SSL",
  3557. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3558. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3559. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3560. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3561. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3562. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3563. },
  3564. "type": "library",
  3565. "extra": {
  3566. "branch-alias": {
  3567. "dev-main": "2.x-dev"
  3568. }
  3569. },
  3570. "autoload": {
  3571. "psr-4": {
  3572. "Monolog\\": "src/Monolog"
  3573. }
  3574. },
  3575. "notification-url": "https://packagist.org/downloads/",
  3576. "license": [
  3577. "MIT"
  3578. ],
  3579. "authors": [
  3580. {
  3581. "name": "Jordi Boggiano",
  3582. "email": "j.boggiano@seld.be",
  3583. "homepage": "https://seld.be"
  3584. }
  3585. ],
  3586. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3587. "homepage": "https://github.com/Seldaek/monolog",
  3588. "keywords": [
  3589. "log",
  3590. "logging",
  3591. "psr-3"
  3592. ],
  3593. "support": {
  3594. "issues": "https://github.com/Seldaek/monolog/issues",
  3595. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  3596. },
  3597. "funding": [
  3598. {
  3599. "url": "https://github.com/Seldaek",
  3600. "type": "github"
  3601. },
  3602. {
  3603. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3604. "type": "tidelift"
  3605. }
  3606. ],
  3607. "time": "2023-10-27T15:25:26+00:00"
  3608. },
  3609. {
  3610. "name": "myclabs/php-enum",
  3611. "version": "1.8.4",
  3612. "source": {
  3613. "type": "git",
  3614. "url": "https://github.com/myclabs/php-enum.git",
  3615. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  3616. },
  3617. "dist": {
  3618. "type": "zip",
  3619. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  3620. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  3621. "shasum": "",
  3622. "mirrors": [
  3623. {
  3624. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3625. "preferred": true
  3626. }
  3627. ]
  3628. },
  3629. "require": {
  3630. "ext-json": "*",
  3631. "php": "^7.3 || ^8.0"
  3632. },
  3633. "require-dev": {
  3634. "phpunit/phpunit": "^9.5",
  3635. "squizlabs/php_codesniffer": "1.*",
  3636. "vimeo/psalm": "^4.6.2"
  3637. },
  3638. "type": "library",
  3639. "autoload": {
  3640. "psr-4": {
  3641. "MyCLabs\\Enum\\": "src/"
  3642. },
  3643. "classmap": [
  3644. "stubs/Stringable.php"
  3645. ]
  3646. },
  3647. "notification-url": "https://packagist.org/downloads/",
  3648. "license": [
  3649. "MIT"
  3650. ],
  3651. "authors": [
  3652. {
  3653. "name": "PHP Enum contributors",
  3654. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3655. }
  3656. ],
  3657. "description": "PHP Enum implementation",
  3658. "homepage": "http://github.com/myclabs/php-enum",
  3659. "keywords": [
  3660. "enum"
  3661. ],
  3662. "support": {
  3663. "issues": "https://github.com/myclabs/php-enum/issues",
  3664. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3665. },
  3666. "funding": [
  3667. {
  3668. "url": "https://github.com/mnapoli",
  3669. "type": "github"
  3670. },
  3671. {
  3672. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3673. "type": "tidelift"
  3674. }
  3675. ],
  3676. "time": "2022-08-04T09:53:51+00:00"
  3677. },
  3678. {
  3679. "name": "namshi/jose",
  3680. "version": "7.2.3",
  3681. "source": {
  3682. "type": "git",
  3683. "url": "https://github.com/namshi/jose.git",
  3684. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  3685. },
  3686. "dist": {
  3687. "type": "zip",
  3688. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  3689. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  3690. "shasum": "",
  3691. "mirrors": [
  3692. {
  3693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3694. "preferred": true
  3695. }
  3696. ]
  3697. },
  3698. "require": {
  3699. "ext-date": "*",
  3700. "ext-hash": "*",
  3701. "ext-json": "*",
  3702. "ext-pcre": "*",
  3703. "ext-spl": "*",
  3704. "php": ">=5.5",
  3705. "symfony/polyfill-php56": "^1.0"
  3706. },
  3707. "require-dev": {
  3708. "phpseclib/phpseclib": "^2.0",
  3709. "phpunit/phpunit": "^4.5|^5.0",
  3710. "satooshi/php-coveralls": "^1.0"
  3711. },
  3712. "suggest": {
  3713. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  3714. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  3715. },
  3716. "type": "library",
  3717. "autoload": {
  3718. "psr-4": {
  3719. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  3720. }
  3721. },
  3722. "notification-url": "https://packagist.org/downloads/",
  3723. "license": [
  3724. "MIT"
  3725. ],
  3726. "authors": [
  3727. {
  3728. "name": "Alessandro Nadalin",
  3729. "email": "alessandro.nadalin@gmail.com"
  3730. },
  3731. {
  3732. "name": "Alessandro Cinelli (cirpo)",
  3733. "email": "alessandro.cinelli@gmail.com"
  3734. }
  3735. ],
  3736. "description": "JSON Object Signing and Encryption library for PHP.",
  3737. "keywords": [
  3738. "JSON Web Signature",
  3739. "JSON Web Token",
  3740. "JWS",
  3741. "json",
  3742. "jwt",
  3743. "token"
  3744. ],
  3745. "support": {
  3746. "issues": "https://github.com/namshi/jose/issues",
  3747. "source": "https://github.com/namshi/jose/tree/master"
  3748. },
  3749. "time": "2016-12-05T07:27:31+00:00"
  3750. },
  3751. {
  3752. "name": "nesbot/carbon",
  3753. "version": "2.72.3",
  3754. "source": {
  3755. "type": "git",
  3756. "url": "https://github.com/briannesbitt/Carbon.git",
  3757. "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83"
  3758. },
  3759. "dist": {
  3760. "type": "zip",
  3761. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/0c6fd108360c562f6e4fd1dedb8233b423e91c83",
  3762. "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83",
  3763. "shasum": "",
  3764. "mirrors": [
  3765. {
  3766. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3767. "preferred": true
  3768. }
  3769. ]
  3770. },
  3771. "require": {
  3772. "carbonphp/carbon-doctrine-types": "*",
  3773. "ext-json": "*",
  3774. "php": "^7.1.8 || ^8.0",
  3775. "psr/clock": "^1.0",
  3776. "symfony/polyfill-mbstring": "^1.0",
  3777. "symfony/polyfill-php80": "^1.16",
  3778. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3779. },
  3780. "provide": {
  3781. "psr/clock-implementation": "1.0"
  3782. },
  3783. "require-dev": {
  3784. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3785. "doctrine/orm": "^2.7 || ^3.0",
  3786. "friendsofphp/php-cs-fixer": "^3.0",
  3787. "kylekatarnls/multi-tester": "^2.0",
  3788. "ondrejmirtes/better-reflection": "*",
  3789. "phpmd/phpmd": "^2.9",
  3790. "phpstan/extension-installer": "^1.0",
  3791. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3792. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3793. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3794. "squizlabs/php_codesniffer": "^3.4"
  3795. },
  3796. "bin": [
  3797. "bin/carbon"
  3798. ],
  3799. "type": "library",
  3800. "extra": {
  3801. "branch-alias": {
  3802. "dev-3.x": "3.x-dev",
  3803. "dev-master": "2.x-dev"
  3804. },
  3805. "laravel": {
  3806. "providers": [
  3807. "Carbon\\Laravel\\ServiceProvider"
  3808. ]
  3809. },
  3810. "phpstan": {
  3811. "includes": [
  3812. "extension.neon"
  3813. ]
  3814. }
  3815. },
  3816. "autoload": {
  3817. "psr-4": {
  3818. "Carbon\\": "src/Carbon/"
  3819. }
  3820. },
  3821. "notification-url": "https://packagist.org/downloads/",
  3822. "license": [
  3823. "MIT"
  3824. ],
  3825. "authors": [
  3826. {
  3827. "name": "Brian Nesbitt",
  3828. "email": "brian@nesbot.com",
  3829. "homepage": "https://markido.com"
  3830. },
  3831. {
  3832. "name": "kylekatarnls",
  3833. "homepage": "https://github.com/kylekatarnls"
  3834. }
  3835. ],
  3836. "description": "An API extension for DateTime that supports 281 different languages.",
  3837. "homepage": "https://carbon.nesbot.com",
  3838. "keywords": [
  3839. "date",
  3840. "datetime",
  3841. "time"
  3842. ],
  3843. "support": {
  3844. "docs": "https://carbon.nesbot.com/docs",
  3845. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3846. "source": "https://github.com/briannesbitt/Carbon"
  3847. },
  3848. "funding": [
  3849. {
  3850. "url": "https://github.com/sponsors/kylekatarnls",
  3851. "type": "github"
  3852. },
  3853. {
  3854. "url": "https://opencollective.com/Carbon#sponsor",
  3855. "type": "opencollective"
  3856. },
  3857. {
  3858. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3859. "type": "tidelift"
  3860. }
  3861. ],
  3862. "time": "2024-01-25T10:35:09+00:00"
  3863. },
  3864. {
  3865. "name": "nikic/php-parser",
  3866. "version": "v4.18.0",
  3867. "source": {
  3868. "type": "git",
  3869. "url": "https://github.com/nikic/PHP-Parser.git",
  3870. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999"
  3871. },
  3872. "dist": {
  3873. "type": "zip",
  3874. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  3875. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  3876. "shasum": "",
  3877. "mirrors": [
  3878. {
  3879. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3880. "preferred": true
  3881. }
  3882. ]
  3883. },
  3884. "require": {
  3885. "ext-tokenizer": "*",
  3886. "php": ">=7.0"
  3887. },
  3888. "require-dev": {
  3889. "ircmaxell/php-yacc": "^0.0.7",
  3890. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3891. },
  3892. "bin": [
  3893. "bin/php-parse"
  3894. ],
  3895. "type": "library",
  3896. "extra": {
  3897. "branch-alias": {
  3898. "dev-master": "4.9-dev"
  3899. }
  3900. },
  3901. "autoload": {
  3902. "psr-4": {
  3903. "PhpParser\\": "lib/PhpParser"
  3904. }
  3905. },
  3906. "notification-url": "https://packagist.org/downloads/",
  3907. "license": [
  3908. "BSD-3-Clause"
  3909. ],
  3910. "authors": [
  3911. {
  3912. "name": "Nikita Popov"
  3913. }
  3914. ],
  3915. "description": "A PHP parser written in PHP",
  3916. "keywords": [
  3917. "parser",
  3918. "php"
  3919. ],
  3920. "support": {
  3921. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3922. "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0"
  3923. },
  3924. "time": "2023-12-10T21:03:43+00:00"
  3925. },
  3926. {
  3927. "name": "opis/closure",
  3928. "version": "3.6.3",
  3929. "source": {
  3930. "type": "git",
  3931. "url": "https://github.com/opis/closure.git",
  3932. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3933. },
  3934. "dist": {
  3935. "type": "zip",
  3936. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3937. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3938. "shasum": "",
  3939. "mirrors": [
  3940. {
  3941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3942. "preferred": true
  3943. }
  3944. ]
  3945. },
  3946. "require": {
  3947. "php": "^5.4 || ^7.0 || ^8.0"
  3948. },
  3949. "require-dev": {
  3950. "jeremeamia/superclosure": "^2.0",
  3951. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3952. },
  3953. "type": "library",
  3954. "extra": {
  3955. "branch-alias": {
  3956. "dev-master": "3.6.x-dev"
  3957. }
  3958. },
  3959. "autoload": {
  3960. "files": [
  3961. "functions.php"
  3962. ],
  3963. "psr-4": {
  3964. "Opis\\Closure\\": "src/"
  3965. }
  3966. },
  3967. "notification-url": "https://packagist.org/downloads/",
  3968. "license": [
  3969. "MIT"
  3970. ],
  3971. "authors": [
  3972. {
  3973. "name": "Marius Sarca",
  3974. "email": "marius.sarca@gmail.com"
  3975. },
  3976. {
  3977. "name": "Sorin Sarca",
  3978. "email": "sarca_sorin@hotmail.com"
  3979. }
  3980. ],
  3981. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3982. "homepage": "https://opis.io/closure",
  3983. "keywords": [
  3984. "anonymous functions",
  3985. "closure",
  3986. "function",
  3987. "serializable",
  3988. "serialization",
  3989. "serialize"
  3990. ],
  3991. "support": {
  3992. "issues": "https://github.com/opis/closure/issues",
  3993. "source": "https://github.com/opis/closure/tree/3.6.3"
  3994. },
  3995. "time": "2022-01-27T09:35:39+00:00"
  3996. },
  3997. {
  3998. "name": "overtrue/laravel-lang",
  3999. "version": "4.2.2",
  4000. "source": {
  4001. "type": "git",
  4002. "url": "https://github.com/overtrue/laravel-lang.git",
  4003. "reference": "d8c35f9c21df83a9f418a80b3be5e131bae29494"
  4004. },
  4005. "dist": {
  4006. "type": "zip",
  4007. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/d8c35f9c21df83a9f418a80b3be5e131bae29494",
  4008. "reference": "d8c35f9c21df83a9f418a80b3be5e131bae29494",
  4009. "shasum": "",
  4010. "mirrors": [
  4011. {
  4012. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4013. "preferred": true
  4014. }
  4015. ]
  4016. },
  4017. "require": {
  4018. "ext-json": "*",
  4019. "laravel-lang/lang": "^5.0",
  4020. "symfony/process": "^4.0|^5.0"
  4021. },
  4022. "require-dev": {
  4023. "laravel/framework": "~8.1"
  4024. },
  4025. "type": "library",
  4026. "extra": {
  4027. "laravel": {
  4028. "providers": [
  4029. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  4030. ]
  4031. }
  4032. },
  4033. "autoload": {
  4034. "psr-4": {
  4035. "Overtrue\\LaravelLang\\": "src/"
  4036. }
  4037. },
  4038. "notification-url": "https://packagist.org/downloads/",
  4039. "license": [
  4040. "MIT"
  4041. ],
  4042. "authors": [
  4043. {
  4044. "name": "overtrue",
  4045. "email": "anzhengchao@gmail.com"
  4046. }
  4047. ],
  4048. "description": "List of 75 languages for Laravel 4, 5, 6 and 7",
  4049. "keywords": [
  4050. "i18n",
  4051. "languages",
  4052. "laravel",
  4053. "locale",
  4054. "overtrue"
  4055. ],
  4056. "support": {
  4057. "issues": "https://github.com/overtrue/laravel-lang/issues",
  4058. "source": "https://github.com/overtrue/laravel-lang/tree/4.2.2"
  4059. },
  4060. "funding": [
  4061. {
  4062. "url": "https://www.patreon.com/overtrue",
  4063. "type": "patreon"
  4064. }
  4065. ],
  4066. "abandoned": true,
  4067. "time": "2021-04-28T03:50:38+00:00"
  4068. },
  4069. {
  4070. "name": "paragonie/constant_time_encoding",
  4071. "version": "v2.6.3",
  4072. "source": {
  4073. "type": "git",
  4074. "url": "https://github.com/paragonie/constant_time_encoding.git",
  4075. "reference": "58c3f47f650c94ec05a151692652a868995d2938"
  4076. },
  4077. "dist": {
  4078. "type": "zip",
  4079. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938",
  4080. "reference": "58c3f47f650c94ec05a151692652a868995d2938",
  4081. "shasum": "",
  4082. "mirrors": [
  4083. {
  4084. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4085. "preferred": true
  4086. }
  4087. ]
  4088. },
  4089. "require": {
  4090. "php": "^7|^8"
  4091. },
  4092. "require-dev": {
  4093. "phpunit/phpunit": "^6|^7|^8|^9",
  4094. "vimeo/psalm": "^1|^2|^3|^4"
  4095. },
  4096. "type": "library",
  4097. "autoload": {
  4098. "psr-4": {
  4099. "ParagonIE\\ConstantTime\\": "src/"
  4100. }
  4101. },
  4102. "notification-url": "https://packagist.org/downloads/",
  4103. "license": [
  4104. "MIT"
  4105. ],
  4106. "authors": [
  4107. {
  4108. "name": "Paragon Initiative Enterprises",
  4109. "email": "security@paragonie.com",
  4110. "homepage": "https://paragonie.com",
  4111. "role": "Maintainer"
  4112. },
  4113. {
  4114. "name": "Steve 'Sc00bz' Thomas",
  4115. "email": "steve@tobtu.com",
  4116. "homepage": "https://www.tobtu.com",
  4117. "role": "Original Developer"
  4118. }
  4119. ],
  4120. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  4121. "keywords": [
  4122. "base16",
  4123. "base32",
  4124. "base32_decode",
  4125. "base32_encode",
  4126. "base64",
  4127. "base64_decode",
  4128. "base64_encode",
  4129. "bin2hex",
  4130. "encoding",
  4131. "hex",
  4132. "hex2bin",
  4133. "rfc4648"
  4134. ],
  4135. "support": {
  4136. "email": "info@paragonie.com",
  4137. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  4138. "source": "https://github.com/paragonie/constant_time_encoding"
  4139. },
  4140. "time": "2022-06-14T06:56:20+00:00"
  4141. },
  4142. {
  4143. "name": "phpoffice/phpspreadsheet",
  4144. "version": "1.25.2",
  4145. "source": {
  4146. "type": "git",
  4147. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  4148. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5"
  4149. },
  4150. "dist": {
  4151. "type": "zip",
  4152. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  4153. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  4154. "shasum": "",
  4155. "mirrors": [
  4156. {
  4157. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4158. "preferred": true
  4159. }
  4160. ]
  4161. },
  4162. "require": {
  4163. "ext-ctype": "*",
  4164. "ext-dom": "*",
  4165. "ext-fileinfo": "*",
  4166. "ext-gd": "*",
  4167. "ext-iconv": "*",
  4168. "ext-libxml": "*",
  4169. "ext-mbstring": "*",
  4170. "ext-simplexml": "*",
  4171. "ext-xml": "*",
  4172. "ext-xmlreader": "*",
  4173. "ext-xmlwriter": "*",
  4174. "ext-zip": "*",
  4175. "ext-zlib": "*",
  4176. "ezyang/htmlpurifier": "^4.15",
  4177. "maennchen/zipstream-php": "^2.1",
  4178. "markbaker/complex": "^3.0",
  4179. "markbaker/matrix": "^3.0",
  4180. "php": "^7.3 || ^8.0",
  4181. "psr/http-client": "^1.0",
  4182. "psr/http-factory": "^1.0",
  4183. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  4184. },
  4185. "require-dev": {
  4186. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4187. "dompdf/dompdf": "^1.0 || ^2.0",
  4188. "friendsofphp/php-cs-fixer": "^3.2",
  4189. "mitoteam/jpgraph": "10.2.4",
  4190. "mpdf/mpdf": "8.1.1",
  4191. "phpcompatibility/php-compatibility": "^9.3",
  4192. "phpstan/phpstan": "^1.1",
  4193. "phpstan/phpstan-phpunit": "^1.0",
  4194. "phpunit/phpunit": "^8.5 || ^9.0",
  4195. "squizlabs/php_codesniffer": "^3.7",
  4196. "tecnickcom/tcpdf": "6.5"
  4197. },
  4198. "suggest": {
  4199. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  4200. "ext-intl": "PHP Internationalization Functions",
  4201. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  4202. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  4203. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  4204. },
  4205. "type": "library",
  4206. "autoload": {
  4207. "psr-4": {
  4208. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  4209. }
  4210. },
  4211. "notification-url": "https://packagist.org/downloads/",
  4212. "license": [
  4213. "MIT"
  4214. ],
  4215. "authors": [
  4216. {
  4217. "name": "Maarten Balliauw",
  4218. "homepage": "https://blog.maartenballiauw.be"
  4219. },
  4220. {
  4221. "name": "Mark Baker",
  4222. "homepage": "https://markbakeruk.net"
  4223. },
  4224. {
  4225. "name": "Franck Lefevre",
  4226. "homepage": "https://rootslabs.net"
  4227. },
  4228. {
  4229. "name": "Erik Tilt"
  4230. },
  4231. {
  4232. "name": "Adrien Crivelli"
  4233. }
  4234. ],
  4235. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  4236. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  4237. "keywords": [
  4238. "OpenXML",
  4239. "excel",
  4240. "gnumeric",
  4241. "ods",
  4242. "php",
  4243. "spreadsheet",
  4244. "xls",
  4245. "xlsx"
  4246. ],
  4247. "support": {
  4248. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  4249. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.25.2"
  4250. },
  4251. "time": "2022-09-25T17:21:01+00:00"
  4252. },
  4253. {
  4254. "name": "phpoption/phpoption",
  4255. "version": "1.9.2",
  4256. "source": {
  4257. "type": "git",
  4258. "url": "https://github.com/schmittjoh/php-option.git",
  4259. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  4260. },
  4261. "dist": {
  4262. "type": "zip",
  4263. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  4264. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  4265. "shasum": "",
  4266. "mirrors": [
  4267. {
  4268. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4269. "preferred": true
  4270. }
  4271. ]
  4272. },
  4273. "require": {
  4274. "php": "^7.2.5 || ^8.0"
  4275. },
  4276. "require-dev": {
  4277. "bamarni/composer-bin-plugin": "^1.8.2",
  4278. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  4279. },
  4280. "type": "library",
  4281. "extra": {
  4282. "bamarni-bin": {
  4283. "bin-links": true,
  4284. "forward-command": true
  4285. },
  4286. "branch-alias": {
  4287. "dev-master": "1.9-dev"
  4288. }
  4289. },
  4290. "autoload": {
  4291. "psr-4": {
  4292. "PhpOption\\": "src/PhpOption/"
  4293. }
  4294. },
  4295. "notification-url": "https://packagist.org/downloads/",
  4296. "license": [
  4297. "Apache-2.0"
  4298. ],
  4299. "authors": [
  4300. {
  4301. "name": "Johannes M. Schmitt",
  4302. "email": "schmittjoh@gmail.com",
  4303. "homepage": "https://github.com/schmittjoh"
  4304. },
  4305. {
  4306. "name": "Graham Campbell",
  4307. "email": "hello@gjcampbell.co.uk",
  4308. "homepage": "https://github.com/GrahamCampbell"
  4309. }
  4310. ],
  4311. "description": "Option Type for PHP",
  4312. "keywords": [
  4313. "language",
  4314. "option",
  4315. "php",
  4316. "type"
  4317. ],
  4318. "support": {
  4319. "issues": "https://github.com/schmittjoh/php-option/issues",
  4320. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  4321. },
  4322. "funding": [
  4323. {
  4324. "url": "https://github.com/GrahamCampbell",
  4325. "type": "github"
  4326. },
  4327. {
  4328. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4329. "type": "tidelift"
  4330. }
  4331. ],
  4332. "time": "2023-11-12T21:59:55+00:00"
  4333. },
  4334. {
  4335. "name": "pragmarx/google2fa",
  4336. "version": "v8.0.1",
  4337. "source": {
  4338. "type": "git",
  4339. "url": "https://github.com/antonioribeiro/google2fa.git",
  4340. "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3"
  4341. },
  4342. "dist": {
  4343. "type": "zip",
  4344. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/80c3d801b31fe165f8fe99ea085e0a37834e1be3",
  4345. "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3",
  4346. "shasum": "",
  4347. "mirrors": [
  4348. {
  4349. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4350. "preferred": true
  4351. }
  4352. ]
  4353. },
  4354. "require": {
  4355. "paragonie/constant_time_encoding": "^1.0|^2.0",
  4356. "php": "^7.1|^8.0"
  4357. },
  4358. "require-dev": {
  4359. "phpstan/phpstan": "^0.12.18",
  4360. "phpunit/phpunit": "^7.5.15|^8.5|^9.0"
  4361. },
  4362. "type": "library",
  4363. "autoload": {
  4364. "psr-4": {
  4365. "PragmaRX\\Google2FA\\": "src/"
  4366. }
  4367. },
  4368. "notification-url": "https://packagist.org/downloads/",
  4369. "license": [
  4370. "MIT"
  4371. ],
  4372. "authors": [
  4373. {
  4374. "name": "Antonio Carlos Ribeiro",
  4375. "email": "acr@antoniocarlosribeiro.com",
  4376. "role": "Creator & Designer"
  4377. }
  4378. ],
  4379. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  4380. "keywords": [
  4381. "2fa",
  4382. "Authentication",
  4383. "Two Factor Authentication",
  4384. "google2fa"
  4385. ],
  4386. "support": {
  4387. "issues": "https://github.com/antonioribeiro/google2fa/issues",
  4388. "source": "https://github.com/antonioribeiro/google2fa/tree/v8.0.1"
  4389. },
  4390. "time": "2022-06-13T21:57:56+00:00"
  4391. },
  4392. {
  4393. "name": "psr/clock",
  4394. "version": "1.0.0",
  4395. "source": {
  4396. "type": "git",
  4397. "url": "https://github.com/php-fig/clock.git",
  4398. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4399. },
  4400. "dist": {
  4401. "type": "zip",
  4402. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4403. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4404. "shasum": "",
  4405. "mirrors": [
  4406. {
  4407. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4408. "preferred": true
  4409. }
  4410. ]
  4411. },
  4412. "require": {
  4413. "php": "^7.0 || ^8.0"
  4414. },
  4415. "type": "library",
  4416. "autoload": {
  4417. "psr-4": {
  4418. "Psr\\Clock\\": "src/"
  4419. }
  4420. },
  4421. "notification-url": "https://packagist.org/downloads/",
  4422. "license": [
  4423. "MIT"
  4424. ],
  4425. "authors": [
  4426. {
  4427. "name": "PHP-FIG",
  4428. "homepage": "https://www.php-fig.org/"
  4429. }
  4430. ],
  4431. "description": "Common interface for reading the clock.",
  4432. "homepage": "https://github.com/php-fig/clock",
  4433. "keywords": [
  4434. "clock",
  4435. "now",
  4436. "psr",
  4437. "psr-20",
  4438. "time"
  4439. ],
  4440. "support": {
  4441. "issues": "https://github.com/php-fig/clock/issues",
  4442. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4443. },
  4444. "time": "2022-11-25T14:36:26+00:00"
  4445. },
  4446. {
  4447. "name": "psr/container",
  4448. "version": "1.1.1",
  4449. "source": {
  4450. "type": "git",
  4451. "url": "https://github.com/php-fig/container.git",
  4452. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  4453. },
  4454. "dist": {
  4455. "type": "zip",
  4456. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  4457. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  4458. "shasum": "",
  4459. "mirrors": [
  4460. {
  4461. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4462. "preferred": true
  4463. }
  4464. ]
  4465. },
  4466. "require": {
  4467. "php": ">=7.2.0"
  4468. },
  4469. "type": "library",
  4470. "autoload": {
  4471. "psr-4": {
  4472. "Psr\\Container\\": "src/"
  4473. }
  4474. },
  4475. "notification-url": "https://packagist.org/downloads/",
  4476. "license": [
  4477. "MIT"
  4478. ],
  4479. "authors": [
  4480. {
  4481. "name": "PHP-FIG",
  4482. "homepage": "https://www.php-fig.org/"
  4483. }
  4484. ],
  4485. "description": "Common Container Interface (PHP FIG PSR-11)",
  4486. "homepage": "https://github.com/php-fig/container",
  4487. "keywords": [
  4488. "PSR-11",
  4489. "container",
  4490. "container-interface",
  4491. "container-interop",
  4492. "psr"
  4493. ],
  4494. "support": {
  4495. "issues": "https://github.com/php-fig/container/issues",
  4496. "source": "https://github.com/php-fig/container/tree/1.1.1"
  4497. },
  4498. "time": "2021-03-05T17:36:06+00:00"
  4499. },
  4500. {
  4501. "name": "psr/event-dispatcher",
  4502. "version": "1.0.0",
  4503. "source": {
  4504. "type": "git",
  4505. "url": "https://github.com/php-fig/event-dispatcher.git",
  4506. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4507. },
  4508. "dist": {
  4509. "type": "zip",
  4510. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4511. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4512. "shasum": "",
  4513. "mirrors": [
  4514. {
  4515. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4516. "preferred": true
  4517. }
  4518. ]
  4519. },
  4520. "require": {
  4521. "php": ">=7.2.0"
  4522. },
  4523. "type": "library",
  4524. "extra": {
  4525. "branch-alias": {
  4526. "dev-master": "1.0.x-dev"
  4527. }
  4528. },
  4529. "autoload": {
  4530. "psr-4": {
  4531. "Psr\\EventDispatcher\\": "src/"
  4532. }
  4533. },
  4534. "notification-url": "https://packagist.org/downloads/",
  4535. "license": [
  4536. "MIT"
  4537. ],
  4538. "authors": [
  4539. {
  4540. "name": "PHP-FIG",
  4541. "homepage": "http://www.php-fig.org/"
  4542. }
  4543. ],
  4544. "description": "Standard interfaces for event handling.",
  4545. "keywords": [
  4546. "events",
  4547. "psr",
  4548. "psr-14"
  4549. ],
  4550. "support": {
  4551. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4552. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4553. },
  4554. "time": "2019-01-08T18:20:26+00:00"
  4555. },
  4556. {
  4557. "name": "psr/http-client",
  4558. "version": "1.0.3",
  4559. "source": {
  4560. "type": "git",
  4561. "url": "https://github.com/php-fig/http-client.git",
  4562. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4563. },
  4564. "dist": {
  4565. "type": "zip",
  4566. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4567. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4568. "shasum": "",
  4569. "mirrors": [
  4570. {
  4571. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4572. "preferred": true
  4573. }
  4574. ]
  4575. },
  4576. "require": {
  4577. "php": "^7.0 || ^8.0",
  4578. "psr/http-message": "^1.0 || ^2.0"
  4579. },
  4580. "type": "library",
  4581. "extra": {
  4582. "branch-alias": {
  4583. "dev-master": "1.0.x-dev"
  4584. }
  4585. },
  4586. "autoload": {
  4587. "psr-4": {
  4588. "Psr\\Http\\Client\\": "src/"
  4589. }
  4590. },
  4591. "notification-url": "https://packagist.org/downloads/",
  4592. "license": [
  4593. "MIT"
  4594. ],
  4595. "authors": [
  4596. {
  4597. "name": "PHP-FIG",
  4598. "homepage": "https://www.php-fig.org/"
  4599. }
  4600. ],
  4601. "description": "Common interface for HTTP clients",
  4602. "homepage": "https://github.com/php-fig/http-client",
  4603. "keywords": [
  4604. "http",
  4605. "http-client",
  4606. "psr",
  4607. "psr-18"
  4608. ],
  4609. "support": {
  4610. "source": "https://github.com/php-fig/http-client"
  4611. },
  4612. "time": "2023-09-23T14:17:50+00:00"
  4613. },
  4614. {
  4615. "name": "psr/http-factory",
  4616. "version": "1.0.2",
  4617. "source": {
  4618. "type": "git",
  4619. "url": "https://github.com/php-fig/http-factory.git",
  4620. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4621. },
  4622. "dist": {
  4623. "type": "zip",
  4624. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4625. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4626. "shasum": "",
  4627. "mirrors": [
  4628. {
  4629. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4630. "preferred": true
  4631. }
  4632. ]
  4633. },
  4634. "require": {
  4635. "php": ">=7.0.0",
  4636. "psr/http-message": "^1.0 || ^2.0"
  4637. },
  4638. "type": "library",
  4639. "extra": {
  4640. "branch-alias": {
  4641. "dev-master": "1.0.x-dev"
  4642. }
  4643. },
  4644. "autoload": {
  4645. "psr-4": {
  4646. "Psr\\Http\\Message\\": "src/"
  4647. }
  4648. },
  4649. "notification-url": "https://packagist.org/downloads/",
  4650. "license": [
  4651. "MIT"
  4652. ],
  4653. "authors": [
  4654. {
  4655. "name": "PHP-FIG",
  4656. "homepage": "https://www.php-fig.org/"
  4657. }
  4658. ],
  4659. "description": "Common interfaces for PSR-7 HTTP message factories",
  4660. "keywords": [
  4661. "factory",
  4662. "http",
  4663. "message",
  4664. "psr",
  4665. "psr-17",
  4666. "psr-7",
  4667. "request",
  4668. "response"
  4669. ],
  4670. "support": {
  4671. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4672. },
  4673. "time": "2023-04-10T20:10:41+00:00"
  4674. },
  4675. {
  4676. "name": "psr/http-message",
  4677. "version": "1.1",
  4678. "source": {
  4679. "type": "git",
  4680. "url": "https://github.com/php-fig/http-message.git",
  4681. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4682. },
  4683. "dist": {
  4684. "type": "zip",
  4685. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4686. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4687. "shasum": "",
  4688. "mirrors": [
  4689. {
  4690. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4691. "preferred": true
  4692. }
  4693. ]
  4694. },
  4695. "require": {
  4696. "php": "^7.2 || ^8.0"
  4697. },
  4698. "type": "library",
  4699. "extra": {
  4700. "branch-alias": {
  4701. "dev-master": "1.1.x-dev"
  4702. }
  4703. },
  4704. "autoload": {
  4705. "psr-4": {
  4706. "Psr\\Http\\Message\\": "src/"
  4707. }
  4708. },
  4709. "notification-url": "https://packagist.org/downloads/",
  4710. "license": [
  4711. "MIT"
  4712. ],
  4713. "authors": [
  4714. {
  4715. "name": "PHP-FIG",
  4716. "homepage": "http://www.php-fig.org/"
  4717. }
  4718. ],
  4719. "description": "Common interface for HTTP messages",
  4720. "homepage": "https://github.com/php-fig/http-message",
  4721. "keywords": [
  4722. "http",
  4723. "http-message",
  4724. "psr",
  4725. "psr-7",
  4726. "request",
  4727. "response"
  4728. ],
  4729. "support": {
  4730. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4731. },
  4732. "time": "2023-04-04T09:50:52+00:00"
  4733. },
  4734. {
  4735. "name": "psr/log",
  4736. "version": "1.1.4",
  4737. "source": {
  4738. "type": "git",
  4739. "url": "https://github.com/php-fig/log.git",
  4740. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4741. },
  4742. "dist": {
  4743. "type": "zip",
  4744. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4745. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4746. "shasum": "",
  4747. "mirrors": [
  4748. {
  4749. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4750. "preferred": true
  4751. }
  4752. ]
  4753. },
  4754. "require": {
  4755. "php": ">=5.3.0"
  4756. },
  4757. "type": "library",
  4758. "extra": {
  4759. "branch-alias": {
  4760. "dev-master": "1.1.x-dev"
  4761. }
  4762. },
  4763. "autoload": {
  4764. "psr-4": {
  4765. "Psr\\Log\\": "Psr/Log/"
  4766. }
  4767. },
  4768. "notification-url": "https://packagist.org/downloads/",
  4769. "license": [
  4770. "MIT"
  4771. ],
  4772. "authors": [
  4773. {
  4774. "name": "PHP-FIG",
  4775. "homepage": "https://www.php-fig.org/"
  4776. }
  4777. ],
  4778. "description": "Common interface for logging libraries",
  4779. "homepage": "https://github.com/php-fig/log",
  4780. "keywords": [
  4781. "log",
  4782. "psr",
  4783. "psr-3"
  4784. ],
  4785. "support": {
  4786. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4787. },
  4788. "time": "2021-05-03T11:20:27+00:00"
  4789. },
  4790. {
  4791. "name": "psr/simple-cache",
  4792. "version": "1.0.1",
  4793. "source": {
  4794. "type": "git",
  4795. "url": "https://github.com/php-fig/simple-cache.git",
  4796. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4797. },
  4798. "dist": {
  4799. "type": "zip",
  4800. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4801. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4802. "shasum": "",
  4803. "mirrors": [
  4804. {
  4805. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4806. "preferred": true
  4807. }
  4808. ]
  4809. },
  4810. "require": {
  4811. "php": ">=5.3.0"
  4812. },
  4813. "type": "library",
  4814. "extra": {
  4815. "branch-alias": {
  4816. "dev-master": "1.0.x-dev"
  4817. }
  4818. },
  4819. "autoload": {
  4820. "psr-4": {
  4821. "Psr\\SimpleCache\\": "src/"
  4822. }
  4823. },
  4824. "notification-url": "https://packagist.org/downloads/",
  4825. "license": [
  4826. "MIT"
  4827. ],
  4828. "authors": [
  4829. {
  4830. "name": "PHP-FIG",
  4831. "homepage": "http://www.php-fig.org/"
  4832. }
  4833. ],
  4834. "description": "Common interfaces for simple caching",
  4835. "keywords": [
  4836. "cache",
  4837. "caching",
  4838. "psr",
  4839. "psr-16",
  4840. "simple-cache"
  4841. ],
  4842. "support": {
  4843. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4844. },
  4845. "time": "2017-10-23T01:57:42+00:00"
  4846. },
  4847. {
  4848. "name": "psy/psysh",
  4849. "version": "v0.11.22",
  4850. "source": {
  4851. "type": "git",
  4852. "url": "https://github.com/bobthecow/psysh.git",
  4853. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  4854. },
  4855. "dist": {
  4856. "type": "zip",
  4857. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  4858. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  4859. "shasum": "",
  4860. "mirrors": [
  4861. {
  4862. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4863. "preferred": true
  4864. }
  4865. ]
  4866. },
  4867. "require": {
  4868. "ext-json": "*",
  4869. "ext-tokenizer": "*",
  4870. "nikic/php-parser": "^4.0 || ^3.1",
  4871. "php": "^8.0 || ^7.0.8",
  4872. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4873. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4874. },
  4875. "conflict": {
  4876. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4877. },
  4878. "require-dev": {
  4879. "bamarni/composer-bin-plugin": "^1.2"
  4880. },
  4881. "suggest": {
  4882. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4883. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4884. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4885. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4886. },
  4887. "bin": [
  4888. "bin/psysh"
  4889. ],
  4890. "type": "library",
  4891. "extra": {
  4892. "branch-alias": {
  4893. "dev-0.11": "0.11.x-dev"
  4894. },
  4895. "bamarni-bin": {
  4896. "bin-links": false,
  4897. "forward-command": false
  4898. }
  4899. },
  4900. "autoload": {
  4901. "files": [
  4902. "src/functions.php"
  4903. ],
  4904. "psr-4": {
  4905. "Psy\\": "src/"
  4906. }
  4907. },
  4908. "notification-url": "https://packagist.org/downloads/",
  4909. "license": [
  4910. "MIT"
  4911. ],
  4912. "authors": [
  4913. {
  4914. "name": "Justin Hileman",
  4915. "email": "justin@justinhileman.info",
  4916. "homepage": "http://justinhileman.com"
  4917. }
  4918. ],
  4919. "description": "An interactive shell for modern PHP.",
  4920. "homepage": "http://psysh.org",
  4921. "keywords": [
  4922. "REPL",
  4923. "console",
  4924. "interactive",
  4925. "shell"
  4926. ],
  4927. "support": {
  4928. "issues": "https://github.com/bobthecow/psysh/issues",
  4929. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  4930. },
  4931. "time": "2023-10-14T21:56:36+00:00"
  4932. },
  4933. {
  4934. "name": "ralouphie/getallheaders",
  4935. "version": "3.0.3",
  4936. "source": {
  4937. "type": "git",
  4938. "url": "https://github.com/ralouphie/getallheaders.git",
  4939. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4940. },
  4941. "dist": {
  4942. "type": "zip",
  4943. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4944. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4945. "shasum": "",
  4946. "mirrors": [
  4947. {
  4948. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4949. "preferred": true
  4950. }
  4951. ]
  4952. },
  4953. "require": {
  4954. "php": ">=5.6"
  4955. },
  4956. "require-dev": {
  4957. "php-coveralls/php-coveralls": "^2.1",
  4958. "phpunit/phpunit": "^5 || ^6.5"
  4959. },
  4960. "type": "library",
  4961. "autoload": {
  4962. "files": [
  4963. "src/getallheaders.php"
  4964. ]
  4965. },
  4966. "notification-url": "https://packagist.org/downloads/",
  4967. "license": [
  4968. "MIT"
  4969. ],
  4970. "authors": [
  4971. {
  4972. "name": "Ralph Khattar",
  4973. "email": "ralph.khattar@gmail.com"
  4974. }
  4975. ],
  4976. "description": "A polyfill for getallheaders.",
  4977. "support": {
  4978. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4979. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4980. },
  4981. "time": "2019-03-08T08:55:37+00:00"
  4982. },
  4983. {
  4984. "name": "ramsey/collection",
  4985. "version": "1.2.2",
  4986. "source": {
  4987. "type": "git",
  4988. "url": "https://github.com/ramsey/collection.git",
  4989. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  4990. },
  4991. "dist": {
  4992. "type": "zip",
  4993. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  4994. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  4995. "shasum": "",
  4996. "mirrors": [
  4997. {
  4998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4999. "preferred": true
  5000. }
  5001. ]
  5002. },
  5003. "require": {
  5004. "php": "^7.3 || ^8",
  5005. "symfony/polyfill-php81": "^1.23"
  5006. },
  5007. "require-dev": {
  5008. "captainhook/captainhook": "^5.3",
  5009. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5010. "ergebnis/composer-normalize": "^2.6",
  5011. "fakerphp/faker": "^1.5",
  5012. "hamcrest/hamcrest-php": "^2",
  5013. "jangregor/phpstan-prophecy": "^0.8",
  5014. "mockery/mockery": "^1.3",
  5015. "phpspec/prophecy-phpunit": "^2.0",
  5016. "phpstan/extension-installer": "^1",
  5017. "phpstan/phpstan": "^0.12.32",
  5018. "phpstan/phpstan-mockery": "^0.12.5",
  5019. "phpstan/phpstan-phpunit": "^0.12.11",
  5020. "phpunit/phpunit": "^8.5 || ^9",
  5021. "psy/psysh": "^0.10.4",
  5022. "slevomat/coding-standard": "^6.3",
  5023. "squizlabs/php_codesniffer": "^3.5",
  5024. "vimeo/psalm": "^4.4"
  5025. },
  5026. "type": "library",
  5027. "autoload": {
  5028. "psr-4": {
  5029. "Ramsey\\Collection\\": "src/"
  5030. }
  5031. },
  5032. "notification-url": "https://packagist.org/downloads/",
  5033. "license": [
  5034. "MIT"
  5035. ],
  5036. "authors": [
  5037. {
  5038. "name": "Ben Ramsey",
  5039. "email": "ben@benramsey.com",
  5040. "homepage": "https://benramsey.com"
  5041. }
  5042. ],
  5043. "description": "A PHP library for representing and manipulating collections.",
  5044. "keywords": [
  5045. "array",
  5046. "collection",
  5047. "hash",
  5048. "map",
  5049. "queue",
  5050. "set"
  5051. ],
  5052. "support": {
  5053. "issues": "https://github.com/ramsey/collection/issues",
  5054. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  5055. },
  5056. "funding": [
  5057. {
  5058. "url": "https://github.com/ramsey",
  5059. "type": "github"
  5060. },
  5061. {
  5062. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  5063. "type": "tidelift"
  5064. }
  5065. ],
  5066. "time": "2021-10-10T03:01:02+00:00"
  5067. },
  5068. {
  5069. "name": "ramsey/uuid",
  5070. "version": "4.2.3",
  5071. "source": {
  5072. "type": "git",
  5073. "url": "https://github.com/ramsey/uuid.git",
  5074. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  5075. },
  5076. "dist": {
  5077. "type": "zip",
  5078. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5079. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5080. "shasum": "",
  5081. "mirrors": [
  5082. {
  5083. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5084. "preferred": true
  5085. }
  5086. ]
  5087. },
  5088. "require": {
  5089. "brick/math": "^0.8 || ^0.9",
  5090. "ext-json": "*",
  5091. "php": "^7.2 || ^8.0",
  5092. "ramsey/collection": "^1.0",
  5093. "symfony/polyfill-ctype": "^1.8",
  5094. "symfony/polyfill-php80": "^1.14"
  5095. },
  5096. "replace": {
  5097. "rhumsaa/uuid": "self.version"
  5098. },
  5099. "require-dev": {
  5100. "captainhook/captainhook": "^5.10",
  5101. "captainhook/plugin-composer": "^5.3",
  5102. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5103. "doctrine/annotations": "^1.8",
  5104. "ergebnis/composer-normalize": "^2.15",
  5105. "mockery/mockery": "^1.3",
  5106. "moontoast/math": "^1.1",
  5107. "paragonie/random-lib": "^2",
  5108. "php-mock/php-mock": "^2.2",
  5109. "php-mock/php-mock-mockery": "^1.3",
  5110. "php-parallel-lint/php-parallel-lint": "^1.1",
  5111. "phpbench/phpbench": "^1.0",
  5112. "phpstan/extension-installer": "^1.0",
  5113. "phpstan/phpstan": "^0.12",
  5114. "phpstan/phpstan-mockery": "^0.12",
  5115. "phpstan/phpstan-phpunit": "^0.12",
  5116. "phpunit/phpunit": "^8.5 || ^9",
  5117. "slevomat/coding-standard": "^7.0",
  5118. "squizlabs/php_codesniffer": "^3.5",
  5119. "vimeo/psalm": "^4.9"
  5120. },
  5121. "suggest": {
  5122. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5123. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  5124. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5125. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5126. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5127. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5128. },
  5129. "type": "library",
  5130. "extra": {
  5131. "branch-alias": {
  5132. "dev-main": "4.x-dev"
  5133. },
  5134. "captainhook": {
  5135. "force-install": true
  5136. }
  5137. },
  5138. "autoload": {
  5139. "files": [
  5140. "src/functions.php"
  5141. ],
  5142. "psr-4": {
  5143. "Ramsey\\Uuid\\": "src/"
  5144. }
  5145. },
  5146. "notification-url": "https://packagist.org/downloads/",
  5147. "license": [
  5148. "MIT"
  5149. ],
  5150. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5151. "keywords": [
  5152. "guid",
  5153. "identifier",
  5154. "uuid"
  5155. ],
  5156. "support": {
  5157. "issues": "https://github.com/ramsey/uuid/issues",
  5158. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  5159. },
  5160. "funding": [
  5161. {
  5162. "url": "https://github.com/ramsey",
  5163. "type": "github"
  5164. },
  5165. {
  5166. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  5167. "type": "tidelift"
  5168. }
  5169. ],
  5170. "time": "2021-09-25T23:10:38+00:00"
  5171. },
  5172. {
  5173. "name": "rap2hpoutre/laravel-log-viewer",
  5174. "version": "v1.7.0",
  5175. "source": {
  5176. "type": "git",
  5177. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  5178. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a"
  5179. },
  5180. "dist": {
  5181. "type": "zip",
  5182. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/27392d29234b6ff38a456454558f4bcc40cc837a",
  5183. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a",
  5184. "shasum": "",
  5185. "mirrors": [
  5186. {
  5187. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5188. "preferred": true
  5189. }
  5190. ]
  5191. },
  5192. "require": {
  5193. "illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0",
  5194. "php": ">=5.4.0"
  5195. },
  5196. "require-dev": {
  5197. "orchestra/testbench": "3.7.*",
  5198. "phpunit/phpunit": "^7"
  5199. },
  5200. "type": "laravel-package",
  5201. "extra": {
  5202. "laravel": {
  5203. "providers": [
  5204. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  5205. ]
  5206. }
  5207. },
  5208. "autoload": {
  5209. "psr-0": {
  5210. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  5211. },
  5212. "classmap": [
  5213. "src/controllers"
  5214. ]
  5215. },
  5216. "notification-url": "https://packagist.org/downloads/",
  5217. "license": [
  5218. "MIT"
  5219. ],
  5220. "authors": [
  5221. {
  5222. "name": "rap2hpoutre",
  5223. "email": "raphaelht@gmail.com"
  5224. }
  5225. ],
  5226. "description": "A Laravel log reader",
  5227. "keywords": [
  5228. "laravel",
  5229. "log",
  5230. "log-reader",
  5231. "log-viewer",
  5232. "logging",
  5233. "lumen"
  5234. ],
  5235. "support": {
  5236. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  5237. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/master"
  5238. },
  5239. "time": "2020-09-08T12:21:27+00:00"
  5240. },
  5241. {
  5242. "name": "riverslei/payment",
  5243. "version": "v5.1.0",
  5244. "source": {
  5245. "type": "git",
  5246. "url": "https://github.com/helei112g/payment.git",
  5247. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  5248. },
  5249. "dist": {
  5250. "type": "zip",
  5251. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  5252. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  5253. "shasum": "",
  5254. "mirrors": [
  5255. {
  5256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5257. "preferred": true
  5258. }
  5259. ]
  5260. },
  5261. "require": {
  5262. "ext-bcmath": "*",
  5263. "ext-json": "*",
  5264. "ext-mbstring": "*",
  5265. "ext-openssl": "*",
  5266. "ext-simplexml": "*",
  5267. "ext-xml": "*",
  5268. "guzzlehttp/guzzle": "~6.0",
  5269. "php": ">=7.0"
  5270. },
  5271. "require-dev": {
  5272. "codeception/codeception": "*"
  5273. },
  5274. "type": "library",
  5275. "autoload": {
  5276. "psr-4": {
  5277. "Payment\\": "src/"
  5278. }
  5279. },
  5280. "notification-url": "https://packagist.org/downloads/",
  5281. "license": [
  5282. "MIT"
  5283. ],
  5284. "authors": [
  5285. {
  5286. "name": "Leo",
  5287. "email": "dayugog@gmail.com",
  5288. "homepage": "https://dayutalk.cn"
  5289. }
  5290. ],
  5291. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  5292. "homepage": "http://helei112g.github.io/payment",
  5293. "keywords": [
  5294. "alipay",
  5295. "weixin",
  5296. "一网通",
  5297. "微信支付",
  5298. "招商一网通",
  5299. "支付宝支付",
  5300. "集成支付接口SDK"
  5301. ],
  5302. "support": {
  5303. "issues": "https://github.com/helei112g/payment/issues",
  5304. "source": "https://github.com/helei112g/payment/tree/v5.x"
  5305. },
  5306. "time": "2020-05-04T03:07:17+00:00"
  5307. },
  5308. {
  5309. "name": "spatie/laravel-permission",
  5310. "version": "3.18.0",
  5311. "source": {
  5312. "type": "git",
  5313. "url": "https://github.com/spatie/laravel-permission.git",
  5314. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a"
  5315. },
  5316. "dist": {
  5317. "type": "zip",
  5318. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/1c51a5fa12131565fe3860705163e53d7a26258a",
  5319. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a",
  5320. "shasum": "",
  5321. "mirrors": [
  5322. {
  5323. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5324. "preferred": true
  5325. }
  5326. ]
  5327. },
  5328. "require": {
  5329. "illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
  5330. "illuminate/container": "^5.8|^6.0|^7.0|^8.0",
  5331. "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
  5332. "illuminate/database": "^5.8|^6.0|^7.0|^8.0",
  5333. "php": "^7.2.5|^8.0"
  5334. },
  5335. "require-dev": {
  5336. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
  5337. "phpunit/phpunit": "^8.0|^9.0",
  5338. "predis/predis": "^1.1"
  5339. },
  5340. "type": "library",
  5341. "extra": {
  5342. "laravel": {
  5343. "providers": [
  5344. "Spatie\\Permission\\PermissionServiceProvider"
  5345. ]
  5346. }
  5347. },
  5348. "autoload": {
  5349. "files": [
  5350. "src/helpers.php"
  5351. ],
  5352. "psr-4": {
  5353. "Spatie\\Permission\\": "src"
  5354. }
  5355. },
  5356. "notification-url": "https://packagist.org/downloads/",
  5357. "license": [
  5358. "MIT"
  5359. ],
  5360. "authors": [
  5361. {
  5362. "name": "Freek Van der Herten",
  5363. "email": "freek@spatie.be",
  5364. "homepage": "https://spatie.be",
  5365. "role": "Developer"
  5366. }
  5367. ],
  5368. "description": "Permission handling for Laravel 5.8 and up",
  5369. "homepage": "https://github.com/spatie/laravel-permission",
  5370. "keywords": [
  5371. "acl",
  5372. "laravel",
  5373. "permission",
  5374. "permissions",
  5375. "rbac",
  5376. "roles",
  5377. "security",
  5378. "spatie"
  5379. ],
  5380. "support": {
  5381. "issues": "https://github.com/spatie/laravel-permission/issues",
  5382. "source": "https://github.com/spatie/laravel-permission/tree/3.18.0"
  5383. },
  5384. "funding": [
  5385. {
  5386. "url": "https://github.com/spatie",
  5387. "type": "github"
  5388. }
  5389. ],
  5390. "time": "2020-11-09T14:08:36+00:00"
  5391. },
  5392. {
  5393. "name": "srmklive/paypal",
  5394. "version": "1.11.0",
  5395. "source": {
  5396. "type": "git",
  5397. "url": "https://github.com/srmklive/laravel-paypal.git",
  5398. "reference": "6591f5431a3e872d04609889c147148413abf493"
  5399. },
  5400. "dist": {
  5401. "type": "zip",
  5402. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/6591f5431a3e872d04609889c147148413abf493",
  5403. "reference": "6591f5431a3e872d04609889c147148413abf493",
  5404. "shasum": "",
  5405. "mirrors": [
  5406. {
  5407. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5408. "preferred": true
  5409. }
  5410. ]
  5411. },
  5412. "require": {
  5413. "guzzlehttp/guzzle": "~6.0|~7.0",
  5414. "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",
  5415. "nesbot/carbon": "~1.0|~2.0"
  5416. },
  5417. "type": "library",
  5418. "extra": {
  5419. "laravel": {
  5420. "providers": [
  5421. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  5422. ],
  5423. "aliases": {
  5424. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  5425. }
  5426. }
  5427. },
  5428. "autoload": {
  5429. "psr-4": {
  5430. "Srmklive\\PayPal\\": "src/"
  5431. }
  5432. },
  5433. "notification-url": "https://packagist.org/downloads/",
  5434. "license": [
  5435. "MIT"
  5436. ],
  5437. "authors": [
  5438. {
  5439. "name": "Raza Mehdi",
  5440. "email": "srmk@outlook.com"
  5441. }
  5442. ],
  5443. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  5444. "keywords": [
  5445. "http",
  5446. "laravel paypal",
  5447. "paypal",
  5448. "rest",
  5449. "web service"
  5450. ],
  5451. "support": {
  5452. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  5453. "source": "https://github.com/srmklive/laravel-paypal/tree/1.11.0"
  5454. },
  5455. "time": "2023-02-24T09:55:50+00:00"
  5456. },
  5457. {
  5458. "name": "stripe/stripe-php",
  5459. "version": "v7.128.0",
  5460. "source": {
  5461. "type": "git",
  5462. "url": "https://github.com/stripe/stripe-php.git",
  5463. "reference": "c704949c49b72985c76cc61063aa26fefbd2724e"
  5464. },
  5465. "dist": {
  5466. "type": "zip",
  5467. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/c704949c49b72985c76cc61063aa26fefbd2724e",
  5468. "reference": "c704949c49b72985c76cc61063aa26fefbd2724e",
  5469. "shasum": "",
  5470. "mirrors": [
  5471. {
  5472. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5473. "preferred": true
  5474. }
  5475. ]
  5476. },
  5477. "require": {
  5478. "ext-curl": "*",
  5479. "ext-json": "*",
  5480. "ext-mbstring": "*",
  5481. "php": ">=5.6.0"
  5482. },
  5483. "require-dev": {
  5484. "friendsofphp/php-cs-fixer": "3.5.0",
  5485. "phpstan/phpstan": "^1.2",
  5486. "phpunit/phpunit": "^5.7 || ^9.0",
  5487. "squizlabs/php_codesniffer": "^3.3"
  5488. },
  5489. "type": "library",
  5490. "extra": {
  5491. "branch-alias": {
  5492. "dev-master": "2.0-dev"
  5493. }
  5494. },
  5495. "autoload": {
  5496. "psr-4": {
  5497. "Stripe\\": "lib/"
  5498. }
  5499. },
  5500. "notification-url": "https://packagist.org/downloads/",
  5501. "license": [
  5502. "MIT"
  5503. ],
  5504. "authors": [
  5505. {
  5506. "name": "Stripe and contributors",
  5507. "homepage": "https://github.com/stripe/stripe-php/contributors"
  5508. }
  5509. ],
  5510. "description": "Stripe PHP Library",
  5511. "homepage": "https://stripe.com/",
  5512. "keywords": [
  5513. "api",
  5514. "payment processing",
  5515. "stripe"
  5516. ],
  5517. "support": {
  5518. "issues": "https://github.com/stripe/stripe-php/issues",
  5519. "source": "https://github.com/stripe/stripe-php/tree/v7.128.0"
  5520. },
  5521. "time": "2022-05-05T17:18:02+00:00"
  5522. },
  5523. {
  5524. "name": "swiftmailer/swiftmailer",
  5525. "version": "v6.3.0",
  5526. "source": {
  5527. "type": "git",
  5528. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5529. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5530. },
  5531. "dist": {
  5532. "type": "zip",
  5533. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5534. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5535. "shasum": "",
  5536. "mirrors": [
  5537. {
  5538. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5539. "preferred": true
  5540. }
  5541. ]
  5542. },
  5543. "require": {
  5544. "egulias/email-validator": "^2.0|^3.1",
  5545. "php": ">=7.0.0",
  5546. "symfony/polyfill-iconv": "^1.0",
  5547. "symfony/polyfill-intl-idn": "^1.10",
  5548. "symfony/polyfill-mbstring": "^1.0"
  5549. },
  5550. "require-dev": {
  5551. "mockery/mockery": "^1.0",
  5552. "symfony/phpunit-bridge": "^4.4|^5.4"
  5553. },
  5554. "suggest": {
  5555. "ext-intl": "Needed to support internationalized email addresses"
  5556. },
  5557. "type": "library",
  5558. "extra": {
  5559. "branch-alias": {
  5560. "dev-master": "6.2-dev"
  5561. }
  5562. },
  5563. "autoload": {
  5564. "files": [
  5565. "lib/swift_required.php"
  5566. ]
  5567. },
  5568. "notification-url": "https://packagist.org/downloads/",
  5569. "license": [
  5570. "MIT"
  5571. ],
  5572. "authors": [
  5573. {
  5574. "name": "Chris Corbyn"
  5575. },
  5576. {
  5577. "name": "Fabien Potencier",
  5578. "email": "fabien@symfony.com"
  5579. }
  5580. ],
  5581. "description": "Swiftmailer, free feature-rich PHP mailer",
  5582. "homepage": "https://swiftmailer.symfony.com",
  5583. "keywords": [
  5584. "email",
  5585. "mail",
  5586. "mailer"
  5587. ],
  5588. "support": {
  5589. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5590. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5591. },
  5592. "funding": [
  5593. {
  5594. "url": "https://github.com/fabpot",
  5595. "type": "github"
  5596. },
  5597. {
  5598. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5599. "type": "tidelift"
  5600. }
  5601. ],
  5602. "abandoned": "symfony/mailer",
  5603. "time": "2021-10-18T15:26:12+00:00"
  5604. },
  5605. {
  5606. "name": "symfony/console",
  5607. "version": "v5.4.35",
  5608. "source": {
  5609. "type": "git",
  5610. "url": "https://github.com/symfony/console.git",
  5611. "reference": "dbdf6adcb88d5f83790e1efb57ef4074309d3931"
  5612. },
  5613. "dist": {
  5614. "type": "zip",
  5615. "url": "https://api.github.com/repos/symfony/console/zipball/dbdf6adcb88d5f83790e1efb57ef4074309d3931",
  5616. "reference": "dbdf6adcb88d5f83790e1efb57ef4074309d3931",
  5617. "shasum": "",
  5618. "mirrors": [
  5619. {
  5620. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5621. "preferred": true
  5622. }
  5623. ]
  5624. },
  5625. "require": {
  5626. "php": ">=7.2.5",
  5627. "symfony/deprecation-contracts": "^2.1|^3",
  5628. "symfony/polyfill-mbstring": "~1.0",
  5629. "symfony/polyfill-php73": "^1.9",
  5630. "symfony/polyfill-php80": "^1.16",
  5631. "symfony/service-contracts": "^1.1|^2|^3",
  5632. "symfony/string": "^5.1|^6.0"
  5633. },
  5634. "conflict": {
  5635. "psr/log": ">=3",
  5636. "symfony/dependency-injection": "<4.4",
  5637. "symfony/dotenv": "<5.1",
  5638. "symfony/event-dispatcher": "<4.4",
  5639. "symfony/lock": "<4.4",
  5640. "symfony/process": "<4.4"
  5641. },
  5642. "provide": {
  5643. "psr/log-implementation": "1.0|2.0"
  5644. },
  5645. "require-dev": {
  5646. "psr/log": "^1|^2",
  5647. "symfony/config": "^4.4|^5.0|^6.0",
  5648. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5649. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5650. "symfony/lock": "^4.4|^5.0|^6.0",
  5651. "symfony/process": "^4.4|^5.0|^6.0",
  5652. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5653. },
  5654. "suggest": {
  5655. "psr/log": "For using the console logger",
  5656. "symfony/event-dispatcher": "",
  5657. "symfony/lock": "",
  5658. "symfony/process": ""
  5659. },
  5660. "type": "library",
  5661. "autoload": {
  5662. "psr-4": {
  5663. "Symfony\\Component\\Console\\": ""
  5664. },
  5665. "exclude-from-classmap": [
  5666. "/Tests/"
  5667. ]
  5668. },
  5669. "notification-url": "https://packagist.org/downloads/",
  5670. "license": [
  5671. "MIT"
  5672. ],
  5673. "authors": [
  5674. {
  5675. "name": "Fabien Potencier",
  5676. "email": "fabien@symfony.com"
  5677. },
  5678. {
  5679. "name": "Symfony Community",
  5680. "homepage": "https://symfony.com/contributors"
  5681. }
  5682. ],
  5683. "description": "Eases the creation of beautiful and testable command line interfaces",
  5684. "homepage": "https://symfony.com",
  5685. "keywords": [
  5686. "cli",
  5687. "command-line",
  5688. "console",
  5689. "terminal"
  5690. ],
  5691. "support": {
  5692. "source": "https://github.com/symfony/console/tree/v5.4.35"
  5693. },
  5694. "funding": [
  5695. {
  5696. "url": "https://symfony.com/sponsor",
  5697. "type": "custom"
  5698. },
  5699. {
  5700. "url": "https://github.com/fabpot",
  5701. "type": "github"
  5702. },
  5703. {
  5704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5705. "type": "tidelift"
  5706. }
  5707. ],
  5708. "time": "2024-01-23T14:28:09+00:00"
  5709. },
  5710. {
  5711. "name": "symfony/css-selector",
  5712. "version": "v5.4.35",
  5713. "source": {
  5714. "type": "git",
  5715. "url": "https://github.com/symfony/css-selector.git",
  5716. "reference": "9e615d367e2bed41f633abb383948c96a2dbbfae"
  5717. },
  5718. "dist": {
  5719. "type": "zip",
  5720. "url": "https://api.github.com/repos/symfony/css-selector/zipball/9e615d367e2bed41f633abb383948c96a2dbbfae",
  5721. "reference": "9e615d367e2bed41f633abb383948c96a2dbbfae",
  5722. "shasum": "",
  5723. "mirrors": [
  5724. {
  5725. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5726. "preferred": true
  5727. }
  5728. ]
  5729. },
  5730. "require": {
  5731. "php": ">=7.2.5",
  5732. "symfony/polyfill-php80": "^1.16"
  5733. },
  5734. "type": "library",
  5735. "autoload": {
  5736. "psr-4": {
  5737. "Symfony\\Component\\CssSelector\\": ""
  5738. },
  5739. "exclude-from-classmap": [
  5740. "/Tests/"
  5741. ]
  5742. },
  5743. "notification-url": "https://packagist.org/downloads/",
  5744. "license": [
  5745. "MIT"
  5746. ],
  5747. "authors": [
  5748. {
  5749. "name": "Fabien Potencier",
  5750. "email": "fabien@symfony.com"
  5751. },
  5752. {
  5753. "name": "Jean-François Simon",
  5754. "email": "jeanfrancois.simon@sensiolabs.com"
  5755. },
  5756. {
  5757. "name": "Symfony Community",
  5758. "homepage": "https://symfony.com/contributors"
  5759. }
  5760. ],
  5761. "description": "Converts CSS selectors to XPath expressions",
  5762. "homepage": "https://symfony.com",
  5763. "support": {
  5764. "source": "https://github.com/symfony/css-selector/tree/v5.4.35"
  5765. },
  5766. "funding": [
  5767. {
  5768. "url": "https://symfony.com/sponsor",
  5769. "type": "custom"
  5770. },
  5771. {
  5772. "url": "https://github.com/fabpot",
  5773. "type": "github"
  5774. },
  5775. {
  5776. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5777. "type": "tidelift"
  5778. }
  5779. ],
  5780. "time": "2024-01-23T13:51:25+00:00"
  5781. },
  5782. {
  5783. "name": "symfony/deprecation-contracts",
  5784. "version": "v2.5.2",
  5785. "source": {
  5786. "type": "git",
  5787. "url": "https://github.com/symfony/deprecation-contracts.git",
  5788. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  5789. },
  5790. "dist": {
  5791. "type": "zip",
  5792. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5793. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5794. "shasum": "",
  5795. "mirrors": [
  5796. {
  5797. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5798. "preferred": true
  5799. }
  5800. ]
  5801. },
  5802. "require": {
  5803. "php": ">=7.1"
  5804. },
  5805. "type": "library",
  5806. "extra": {
  5807. "branch-alias": {
  5808. "dev-main": "2.5-dev"
  5809. },
  5810. "thanks": {
  5811. "name": "symfony/contracts",
  5812. "url": "https://github.com/symfony/contracts"
  5813. }
  5814. },
  5815. "autoload": {
  5816. "files": [
  5817. "function.php"
  5818. ]
  5819. },
  5820. "notification-url": "https://packagist.org/downloads/",
  5821. "license": [
  5822. "MIT"
  5823. ],
  5824. "authors": [
  5825. {
  5826. "name": "Nicolas Grekas",
  5827. "email": "p@tchwork.com"
  5828. },
  5829. {
  5830. "name": "Symfony Community",
  5831. "homepage": "https://symfony.com/contributors"
  5832. }
  5833. ],
  5834. "description": "A generic function and convention to trigger deprecation notices",
  5835. "homepage": "https://symfony.com",
  5836. "support": {
  5837. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  5838. },
  5839. "funding": [
  5840. {
  5841. "url": "https://symfony.com/sponsor",
  5842. "type": "custom"
  5843. },
  5844. {
  5845. "url": "https://github.com/fabpot",
  5846. "type": "github"
  5847. },
  5848. {
  5849. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5850. "type": "tidelift"
  5851. }
  5852. ],
  5853. "time": "2022-01-02T09:53:40+00:00"
  5854. },
  5855. {
  5856. "name": "symfony/error-handler",
  5857. "version": "v5.4.35",
  5858. "source": {
  5859. "type": "git",
  5860. "url": "https://github.com/symfony/error-handler.git",
  5861. "reference": "39225b1e47fdd91a6924b1e7d7a4523da2e1894b"
  5862. },
  5863. "dist": {
  5864. "type": "zip",
  5865. "url": "https://api.github.com/repos/symfony/error-handler/zipball/39225b1e47fdd91a6924b1e7d7a4523da2e1894b",
  5866. "reference": "39225b1e47fdd91a6924b1e7d7a4523da2e1894b",
  5867. "shasum": "",
  5868. "mirrors": [
  5869. {
  5870. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5871. "preferred": true
  5872. }
  5873. ]
  5874. },
  5875. "require": {
  5876. "php": ">=7.2.5",
  5877. "psr/log": "^1|^2|^3",
  5878. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5879. },
  5880. "require-dev": {
  5881. "symfony/deprecation-contracts": "^2.1|^3",
  5882. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5883. "symfony/serializer": "^4.4|^5.0|^6.0"
  5884. },
  5885. "bin": [
  5886. "Resources/bin/patch-type-declarations"
  5887. ],
  5888. "type": "library",
  5889. "autoload": {
  5890. "psr-4": {
  5891. "Symfony\\Component\\ErrorHandler\\": ""
  5892. },
  5893. "exclude-from-classmap": [
  5894. "/Tests/"
  5895. ]
  5896. },
  5897. "notification-url": "https://packagist.org/downloads/",
  5898. "license": [
  5899. "MIT"
  5900. ],
  5901. "authors": [
  5902. {
  5903. "name": "Fabien Potencier",
  5904. "email": "fabien@symfony.com"
  5905. },
  5906. {
  5907. "name": "Symfony Community",
  5908. "homepage": "https://symfony.com/contributors"
  5909. }
  5910. ],
  5911. "description": "Provides tools to manage errors and ease debugging PHP code",
  5912. "homepage": "https://symfony.com",
  5913. "support": {
  5914. "source": "https://github.com/symfony/error-handler/tree/v5.4.35"
  5915. },
  5916. "funding": [
  5917. {
  5918. "url": "https://symfony.com/sponsor",
  5919. "type": "custom"
  5920. },
  5921. {
  5922. "url": "https://github.com/fabpot",
  5923. "type": "github"
  5924. },
  5925. {
  5926. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5927. "type": "tidelift"
  5928. }
  5929. ],
  5930. "time": "2024-01-23T13:51:25+00:00"
  5931. },
  5932. {
  5933. "name": "symfony/event-dispatcher",
  5934. "version": "v5.4.35",
  5935. "source": {
  5936. "type": "git",
  5937. "url": "https://github.com/symfony/event-dispatcher.git",
  5938. "reference": "7a69a85c7ea5bdd1e875806a99c51a87d3a74b38"
  5939. },
  5940. "dist": {
  5941. "type": "zip",
  5942. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/7a69a85c7ea5bdd1e875806a99c51a87d3a74b38",
  5943. "reference": "7a69a85c7ea5bdd1e875806a99c51a87d3a74b38",
  5944. "shasum": "",
  5945. "mirrors": [
  5946. {
  5947. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5948. "preferred": true
  5949. }
  5950. ]
  5951. },
  5952. "require": {
  5953. "php": ">=7.2.5",
  5954. "symfony/deprecation-contracts": "^2.1|^3",
  5955. "symfony/event-dispatcher-contracts": "^2|^3",
  5956. "symfony/polyfill-php80": "^1.16"
  5957. },
  5958. "conflict": {
  5959. "symfony/dependency-injection": "<4.4"
  5960. },
  5961. "provide": {
  5962. "psr/event-dispatcher-implementation": "1.0",
  5963. "symfony/event-dispatcher-implementation": "2.0"
  5964. },
  5965. "require-dev": {
  5966. "psr/log": "^1|^2|^3",
  5967. "symfony/config": "^4.4|^5.0|^6.0",
  5968. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5969. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5970. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5971. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5972. "symfony/service-contracts": "^1.1|^2|^3",
  5973. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  5974. },
  5975. "suggest": {
  5976. "symfony/dependency-injection": "",
  5977. "symfony/http-kernel": ""
  5978. },
  5979. "type": "library",
  5980. "autoload": {
  5981. "psr-4": {
  5982. "Symfony\\Component\\EventDispatcher\\": ""
  5983. },
  5984. "exclude-from-classmap": [
  5985. "/Tests/"
  5986. ]
  5987. },
  5988. "notification-url": "https://packagist.org/downloads/",
  5989. "license": [
  5990. "MIT"
  5991. ],
  5992. "authors": [
  5993. {
  5994. "name": "Fabien Potencier",
  5995. "email": "fabien@symfony.com"
  5996. },
  5997. {
  5998. "name": "Symfony Community",
  5999. "homepage": "https://symfony.com/contributors"
  6000. }
  6001. ],
  6002. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6003. "homepage": "https://symfony.com",
  6004. "support": {
  6005. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.35"
  6006. },
  6007. "funding": [
  6008. {
  6009. "url": "https://symfony.com/sponsor",
  6010. "type": "custom"
  6011. },
  6012. {
  6013. "url": "https://github.com/fabpot",
  6014. "type": "github"
  6015. },
  6016. {
  6017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6018. "type": "tidelift"
  6019. }
  6020. ],
  6021. "time": "2024-01-23T13:51:25+00:00"
  6022. },
  6023. {
  6024. "name": "symfony/event-dispatcher-contracts",
  6025. "version": "v2.5.2",
  6026. "source": {
  6027. "type": "git",
  6028. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6029. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  6030. },
  6031. "dist": {
  6032. "type": "zip",
  6033. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  6034. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  6035. "shasum": "",
  6036. "mirrors": [
  6037. {
  6038. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6039. "preferred": true
  6040. }
  6041. ]
  6042. },
  6043. "require": {
  6044. "php": ">=7.2.5",
  6045. "psr/event-dispatcher": "^1"
  6046. },
  6047. "suggest": {
  6048. "symfony/event-dispatcher-implementation": ""
  6049. },
  6050. "type": "library",
  6051. "extra": {
  6052. "branch-alias": {
  6053. "dev-main": "2.5-dev"
  6054. },
  6055. "thanks": {
  6056. "name": "symfony/contracts",
  6057. "url": "https://github.com/symfony/contracts"
  6058. }
  6059. },
  6060. "autoload": {
  6061. "psr-4": {
  6062. "Symfony\\Contracts\\EventDispatcher\\": ""
  6063. }
  6064. },
  6065. "notification-url": "https://packagist.org/downloads/",
  6066. "license": [
  6067. "MIT"
  6068. ],
  6069. "authors": [
  6070. {
  6071. "name": "Nicolas Grekas",
  6072. "email": "p@tchwork.com"
  6073. },
  6074. {
  6075. "name": "Symfony Community",
  6076. "homepage": "https://symfony.com/contributors"
  6077. }
  6078. ],
  6079. "description": "Generic abstractions related to dispatching event",
  6080. "homepage": "https://symfony.com",
  6081. "keywords": [
  6082. "abstractions",
  6083. "contracts",
  6084. "decoupling",
  6085. "interfaces",
  6086. "interoperability",
  6087. "standards"
  6088. ],
  6089. "support": {
  6090. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  6091. },
  6092. "funding": [
  6093. {
  6094. "url": "https://symfony.com/sponsor",
  6095. "type": "custom"
  6096. },
  6097. {
  6098. "url": "https://github.com/fabpot",
  6099. "type": "github"
  6100. },
  6101. {
  6102. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6103. "type": "tidelift"
  6104. }
  6105. ],
  6106. "time": "2022-01-02T09:53:40+00:00"
  6107. },
  6108. {
  6109. "name": "symfony/finder",
  6110. "version": "v5.4.27",
  6111. "source": {
  6112. "type": "git",
  6113. "url": "https://github.com/symfony/finder.git",
  6114. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d"
  6115. },
  6116. "dist": {
  6117. "type": "zip",
  6118. "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  6119. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  6120. "shasum": "",
  6121. "mirrors": [
  6122. {
  6123. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6124. "preferred": true
  6125. }
  6126. ]
  6127. },
  6128. "require": {
  6129. "php": ">=7.2.5",
  6130. "symfony/deprecation-contracts": "^2.1|^3",
  6131. "symfony/polyfill-php80": "^1.16"
  6132. },
  6133. "type": "library",
  6134. "autoload": {
  6135. "psr-4": {
  6136. "Symfony\\Component\\Finder\\": ""
  6137. },
  6138. "exclude-from-classmap": [
  6139. "/Tests/"
  6140. ]
  6141. },
  6142. "notification-url": "https://packagist.org/downloads/",
  6143. "license": [
  6144. "MIT"
  6145. ],
  6146. "authors": [
  6147. {
  6148. "name": "Fabien Potencier",
  6149. "email": "fabien@symfony.com"
  6150. },
  6151. {
  6152. "name": "Symfony Community",
  6153. "homepage": "https://symfony.com/contributors"
  6154. }
  6155. ],
  6156. "description": "Finds files and directories via an intuitive fluent interface",
  6157. "homepage": "https://symfony.com",
  6158. "support": {
  6159. "source": "https://github.com/symfony/finder/tree/v5.4.27"
  6160. },
  6161. "funding": [
  6162. {
  6163. "url": "https://symfony.com/sponsor",
  6164. "type": "custom"
  6165. },
  6166. {
  6167. "url": "https://github.com/fabpot",
  6168. "type": "github"
  6169. },
  6170. {
  6171. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6172. "type": "tidelift"
  6173. }
  6174. ],
  6175. "time": "2023-07-31T08:02:31+00:00"
  6176. },
  6177. {
  6178. "name": "symfony/http-foundation",
  6179. "version": "v5.4.35",
  6180. "source": {
  6181. "type": "git",
  6182. "url": "https://github.com/symfony/http-foundation.git",
  6183. "reference": "f2ab692a22aef1cd54beb893aa0068bdfb093928"
  6184. },
  6185. "dist": {
  6186. "type": "zip",
  6187. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f2ab692a22aef1cd54beb893aa0068bdfb093928",
  6188. "reference": "f2ab692a22aef1cd54beb893aa0068bdfb093928",
  6189. "shasum": "",
  6190. "mirrors": [
  6191. {
  6192. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6193. "preferred": true
  6194. }
  6195. ]
  6196. },
  6197. "require": {
  6198. "php": ">=7.2.5",
  6199. "symfony/deprecation-contracts": "^2.1|^3",
  6200. "symfony/polyfill-mbstring": "~1.1",
  6201. "symfony/polyfill-php80": "^1.16"
  6202. },
  6203. "require-dev": {
  6204. "predis/predis": "~1.0",
  6205. "symfony/cache": "^4.4|^5.0|^6.0",
  6206. "symfony/dependency-injection": "^5.4|^6.0",
  6207. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6208. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6209. "symfony/mime": "^4.4|^5.0|^6.0",
  6210. "symfony/rate-limiter": "^5.2|^6.0"
  6211. },
  6212. "suggest": {
  6213. "symfony/mime": "To use the file extension guesser"
  6214. },
  6215. "type": "library",
  6216. "autoload": {
  6217. "psr-4": {
  6218. "Symfony\\Component\\HttpFoundation\\": ""
  6219. },
  6220. "exclude-from-classmap": [
  6221. "/Tests/"
  6222. ]
  6223. },
  6224. "notification-url": "https://packagist.org/downloads/",
  6225. "license": [
  6226. "MIT"
  6227. ],
  6228. "authors": [
  6229. {
  6230. "name": "Fabien Potencier",
  6231. "email": "fabien@symfony.com"
  6232. },
  6233. {
  6234. "name": "Symfony Community",
  6235. "homepage": "https://symfony.com/contributors"
  6236. }
  6237. ],
  6238. "description": "Defines an object-oriented layer for the HTTP specification",
  6239. "homepage": "https://symfony.com",
  6240. "support": {
  6241. "source": "https://github.com/symfony/http-foundation/tree/v5.4.35"
  6242. },
  6243. "funding": [
  6244. {
  6245. "url": "https://symfony.com/sponsor",
  6246. "type": "custom"
  6247. },
  6248. {
  6249. "url": "https://github.com/fabpot",
  6250. "type": "github"
  6251. },
  6252. {
  6253. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6254. "type": "tidelift"
  6255. }
  6256. ],
  6257. "time": "2024-01-23T13:51:25+00:00"
  6258. },
  6259. {
  6260. "name": "symfony/http-kernel",
  6261. "version": "v5.4.35",
  6262. "source": {
  6263. "type": "git",
  6264. "url": "https://github.com/symfony/http-kernel.git",
  6265. "reference": "949bc7721c83fa9f81fc6c9697db0aa340c64f4d"
  6266. },
  6267. "dist": {
  6268. "type": "zip",
  6269. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/949bc7721c83fa9f81fc6c9697db0aa340c64f4d",
  6270. "reference": "949bc7721c83fa9f81fc6c9697db0aa340c64f4d",
  6271. "shasum": "",
  6272. "mirrors": [
  6273. {
  6274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6275. "preferred": true
  6276. }
  6277. ]
  6278. },
  6279. "require": {
  6280. "php": ">=7.2.5",
  6281. "psr/log": "^1|^2",
  6282. "symfony/deprecation-contracts": "^2.1|^3",
  6283. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6284. "symfony/event-dispatcher": "^5.0|^6.0",
  6285. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6286. "symfony/polyfill-ctype": "^1.8",
  6287. "symfony/polyfill-php73": "^1.9",
  6288. "symfony/polyfill-php80": "^1.16"
  6289. },
  6290. "conflict": {
  6291. "symfony/browser-kit": "<5.4",
  6292. "symfony/cache": "<5.0",
  6293. "symfony/config": "<5.0",
  6294. "symfony/console": "<4.4",
  6295. "symfony/dependency-injection": "<5.3",
  6296. "symfony/doctrine-bridge": "<5.0",
  6297. "symfony/form": "<5.0",
  6298. "symfony/http-client": "<5.0",
  6299. "symfony/mailer": "<5.0",
  6300. "symfony/messenger": "<5.0",
  6301. "symfony/translation": "<5.0",
  6302. "symfony/twig-bridge": "<5.0",
  6303. "symfony/validator": "<5.0",
  6304. "twig/twig": "<2.13"
  6305. },
  6306. "provide": {
  6307. "psr/log-implementation": "1.0|2.0"
  6308. },
  6309. "require-dev": {
  6310. "psr/cache": "^1.0|^2.0|^3.0",
  6311. "symfony/browser-kit": "^5.4|^6.0",
  6312. "symfony/config": "^5.0|^6.0",
  6313. "symfony/console": "^4.4|^5.0|^6.0",
  6314. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6315. "symfony/dependency-injection": "^5.3|^6.0",
  6316. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6317. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6318. "symfony/finder": "^4.4|^5.0|^6.0",
  6319. "symfony/http-client-contracts": "^1.1|^2|^3",
  6320. "symfony/process": "^4.4|^5.0|^6.0",
  6321. "symfony/routing": "^4.4|^5.0|^6.0",
  6322. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6323. "symfony/translation": "^4.4|^5.0|^6.0",
  6324. "symfony/translation-contracts": "^1.1|^2|^3",
  6325. "twig/twig": "^2.13|^3.0.4"
  6326. },
  6327. "suggest": {
  6328. "symfony/browser-kit": "",
  6329. "symfony/config": "",
  6330. "symfony/console": "",
  6331. "symfony/dependency-injection": ""
  6332. },
  6333. "type": "library",
  6334. "autoload": {
  6335. "psr-4": {
  6336. "Symfony\\Component\\HttpKernel\\": ""
  6337. },
  6338. "exclude-from-classmap": [
  6339. "/Tests/"
  6340. ]
  6341. },
  6342. "notification-url": "https://packagist.org/downloads/",
  6343. "license": [
  6344. "MIT"
  6345. ],
  6346. "authors": [
  6347. {
  6348. "name": "Fabien Potencier",
  6349. "email": "fabien@symfony.com"
  6350. },
  6351. {
  6352. "name": "Symfony Community",
  6353. "homepage": "https://symfony.com/contributors"
  6354. }
  6355. ],
  6356. "description": "Provides a structured process for converting a Request into a Response",
  6357. "homepage": "https://symfony.com",
  6358. "support": {
  6359. "source": "https://github.com/symfony/http-kernel/tree/v5.4.35"
  6360. },
  6361. "funding": [
  6362. {
  6363. "url": "https://symfony.com/sponsor",
  6364. "type": "custom"
  6365. },
  6366. {
  6367. "url": "https://github.com/fabpot",
  6368. "type": "github"
  6369. },
  6370. {
  6371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6372. "type": "tidelift"
  6373. }
  6374. ],
  6375. "time": "2024-01-30T20:00:46+00:00"
  6376. },
  6377. {
  6378. "name": "symfony/mime",
  6379. "version": "v5.4.35",
  6380. "source": {
  6381. "type": "git",
  6382. "url": "https://github.com/symfony/mime.git",
  6383. "reference": "ee94d9b538f93abbbc1ee4ccff374593117b04a9"
  6384. },
  6385. "dist": {
  6386. "type": "zip",
  6387. "url": "https://api.github.com/repos/symfony/mime/zipball/ee94d9b538f93abbbc1ee4ccff374593117b04a9",
  6388. "reference": "ee94d9b538f93abbbc1ee4ccff374593117b04a9",
  6389. "shasum": "",
  6390. "mirrors": [
  6391. {
  6392. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6393. "preferred": true
  6394. }
  6395. ]
  6396. },
  6397. "require": {
  6398. "php": ">=7.2.5",
  6399. "symfony/deprecation-contracts": "^2.1|^3",
  6400. "symfony/polyfill-intl-idn": "^1.10",
  6401. "symfony/polyfill-mbstring": "^1.0",
  6402. "symfony/polyfill-php80": "^1.16"
  6403. },
  6404. "conflict": {
  6405. "egulias/email-validator": "~3.0.0",
  6406. "phpdocumentor/reflection-docblock": "<3.2.2",
  6407. "phpdocumentor/type-resolver": "<1.4.0",
  6408. "symfony/mailer": "<4.4",
  6409. "symfony/serializer": "<5.4.35|>=6,<6.3.12|>=6.4,<6.4.3"
  6410. },
  6411. "require-dev": {
  6412. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6413. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6414. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6415. "symfony/property-access": "^4.4|^5.1|^6.0",
  6416. "symfony/property-info": "^4.4|^5.1|^6.0",
  6417. "symfony/serializer": "^5.4.35|~6.3.12|^6.4.3"
  6418. },
  6419. "type": "library",
  6420. "autoload": {
  6421. "psr-4": {
  6422. "Symfony\\Component\\Mime\\": ""
  6423. },
  6424. "exclude-from-classmap": [
  6425. "/Tests/"
  6426. ]
  6427. },
  6428. "notification-url": "https://packagist.org/downloads/",
  6429. "license": [
  6430. "MIT"
  6431. ],
  6432. "authors": [
  6433. {
  6434. "name": "Fabien Potencier",
  6435. "email": "fabien@symfony.com"
  6436. },
  6437. {
  6438. "name": "Symfony Community",
  6439. "homepage": "https://symfony.com/contributors"
  6440. }
  6441. ],
  6442. "description": "Allows manipulating MIME messages",
  6443. "homepage": "https://symfony.com",
  6444. "keywords": [
  6445. "mime",
  6446. "mime-type"
  6447. ],
  6448. "support": {
  6449. "source": "https://github.com/symfony/mime/tree/v5.4.35"
  6450. },
  6451. "funding": [
  6452. {
  6453. "url": "https://symfony.com/sponsor",
  6454. "type": "custom"
  6455. },
  6456. {
  6457. "url": "https://github.com/fabpot",
  6458. "type": "github"
  6459. },
  6460. {
  6461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6462. "type": "tidelift"
  6463. }
  6464. ],
  6465. "time": "2024-01-30T08:00:51+00:00"
  6466. },
  6467. {
  6468. "name": "symfony/polyfill-ctype",
  6469. "version": "v1.28.0",
  6470. "source": {
  6471. "type": "git",
  6472. "url": "https://github.com/symfony/polyfill-ctype.git",
  6473. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  6474. },
  6475. "dist": {
  6476. "type": "zip",
  6477. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6478. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6479. "shasum": "",
  6480. "mirrors": [
  6481. {
  6482. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6483. "preferred": true
  6484. }
  6485. ]
  6486. },
  6487. "require": {
  6488. "php": ">=7.1"
  6489. },
  6490. "provide": {
  6491. "ext-ctype": "*"
  6492. },
  6493. "suggest": {
  6494. "ext-ctype": "For best performance"
  6495. },
  6496. "type": "library",
  6497. "extra": {
  6498. "branch-alias": {
  6499. "dev-main": "1.28-dev"
  6500. },
  6501. "thanks": {
  6502. "name": "symfony/polyfill",
  6503. "url": "https://github.com/symfony/polyfill"
  6504. }
  6505. },
  6506. "autoload": {
  6507. "files": [
  6508. "bootstrap.php"
  6509. ],
  6510. "psr-4": {
  6511. "Symfony\\Polyfill\\Ctype\\": ""
  6512. }
  6513. },
  6514. "notification-url": "https://packagist.org/downloads/",
  6515. "license": [
  6516. "MIT"
  6517. ],
  6518. "authors": [
  6519. {
  6520. "name": "Gert de Pagter",
  6521. "email": "BackEndTea@gmail.com"
  6522. },
  6523. {
  6524. "name": "Symfony Community",
  6525. "homepage": "https://symfony.com/contributors"
  6526. }
  6527. ],
  6528. "description": "Symfony polyfill for ctype functions",
  6529. "homepage": "https://symfony.com",
  6530. "keywords": [
  6531. "compatibility",
  6532. "ctype",
  6533. "polyfill",
  6534. "portable"
  6535. ],
  6536. "support": {
  6537. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  6538. },
  6539. "funding": [
  6540. {
  6541. "url": "https://symfony.com/sponsor",
  6542. "type": "custom"
  6543. },
  6544. {
  6545. "url": "https://github.com/fabpot",
  6546. "type": "github"
  6547. },
  6548. {
  6549. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6550. "type": "tidelift"
  6551. }
  6552. ],
  6553. "time": "2023-01-26T09:26:14+00:00"
  6554. },
  6555. {
  6556. "name": "symfony/polyfill-iconv",
  6557. "version": "v1.29.0",
  6558. "source": {
  6559. "type": "git",
  6560. "url": "https://github.com/symfony/polyfill-iconv.git",
  6561. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f"
  6562. },
  6563. "dist": {
  6564. "type": "zip",
  6565. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  6566. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  6567. "shasum": "",
  6568. "mirrors": [
  6569. {
  6570. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6571. "preferred": true
  6572. }
  6573. ]
  6574. },
  6575. "require": {
  6576. "php": ">=7.1"
  6577. },
  6578. "provide": {
  6579. "ext-iconv": "*"
  6580. },
  6581. "suggest": {
  6582. "ext-iconv": "For best performance"
  6583. },
  6584. "type": "library",
  6585. "extra": {
  6586. "thanks": {
  6587. "name": "symfony/polyfill",
  6588. "url": "https://github.com/symfony/polyfill"
  6589. }
  6590. },
  6591. "autoload": {
  6592. "files": [
  6593. "bootstrap.php"
  6594. ],
  6595. "psr-4": {
  6596. "Symfony\\Polyfill\\Iconv\\": ""
  6597. }
  6598. },
  6599. "notification-url": "https://packagist.org/downloads/",
  6600. "license": [
  6601. "MIT"
  6602. ],
  6603. "authors": [
  6604. {
  6605. "name": "Nicolas Grekas",
  6606. "email": "p@tchwork.com"
  6607. },
  6608. {
  6609. "name": "Symfony Community",
  6610. "homepage": "https://symfony.com/contributors"
  6611. }
  6612. ],
  6613. "description": "Symfony polyfill for the Iconv extension",
  6614. "homepage": "https://symfony.com",
  6615. "keywords": [
  6616. "compatibility",
  6617. "iconv",
  6618. "polyfill",
  6619. "portable",
  6620. "shim"
  6621. ],
  6622. "support": {
  6623. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.29.0"
  6624. },
  6625. "funding": [
  6626. {
  6627. "url": "https://symfony.com/sponsor",
  6628. "type": "custom"
  6629. },
  6630. {
  6631. "url": "https://github.com/fabpot",
  6632. "type": "github"
  6633. },
  6634. {
  6635. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6636. "type": "tidelift"
  6637. }
  6638. ],
  6639. "time": "2024-01-29T20:11:03+00:00"
  6640. },
  6641. {
  6642. "name": "symfony/polyfill-intl-grapheme",
  6643. "version": "v1.29.0",
  6644. "source": {
  6645. "type": "git",
  6646. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6647. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  6648. },
  6649. "dist": {
  6650. "type": "zip",
  6651. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6652. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6653. "shasum": "",
  6654. "mirrors": [
  6655. {
  6656. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6657. "preferred": true
  6658. }
  6659. ]
  6660. },
  6661. "require": {
  6662. "php": ">=7.1"
  6663. },
  6664. "suggest": {
  6665. "ext-intl": "For best performance"
  6666. },
  6667. "type": "library",
  6668. "extra": {
  6669. "thanks": {
  6670. "name": "symfony/polyfill",
  6671. "url": "https://github.com/symfony/polyfill"
  6672. }
  6673. },
  6674. "autoload": {
  6675. "files": [
  6676. "bootstrap.php"
  6677. ],
  6678. "psr-4": {
  6679. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6680. }
  6681. },
  6682. "notification-url": "https://packagist.org/downloads/",
  6683. "license": [
  6684. "MIT"
  6685. ],
  6686. "authors": [
  6687. {
  6688. "name": "Nicolas Grekas",
  6689. "email": "p@tchwork.com"
  6690. },
  6691. {
  6692. "name": "Symfony Community",
  6693. "homepage": "https://symfony.com/contributors"
  6694. }
  6695. ],
  6696. "description": "Symfony polyfill for intl's grapheme_* functions",
  6697. "homepage": "https://symfony.com",
  6698. "keywords": [
  6699. "compatibility",
  6700. "grapheme",
  6701. "intl",
  6702. "polyfill",
  6703. "portable",
  6704. "shim"
  6705. ],
  6706. "support": {
  6707. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  6708. },
  6709. "funding": [
  6710. {
  6711. "url": "https://symfony.com/sponsor",
  6712. "type": "custom"
  6713. },
  6714. {
  6715. "url": "https://github.com/fabpot",
  6716. "type": "github"
  6717. },
  6718. {
  6719. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6720. "type": "tidelift"
  6721. }
  6722. ],
  6723. "time": "2024-01-29T20:11:03+00:00"
  6724. },
  6725. {
  6726. "name": "symfony/polyfill-intl-idn",
  6727. "version": "v1.29.0",
  6728. "source": {
  6729. "type": "git",
  6730. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6731. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919"
  6732. },
  6733. "dist": {
  6734. "type": "zip",
  6735. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919",
  6736. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919",
  6737. "shasum": "",
  6738. "mirrors": [
  6739. {
  6740. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6741. "preferred": true
  6742. }
  6743. ]
  6744. },
  6745. "require": {
  6746. "php": ">=7.1",
  6747. "symfony/polyfill-intl-normalizer": "^1.10",
  6748. "symfony/polyfill-php72": "^1.10"
  6749. },
  6750. "suggest": {
  6751. "ext-intl": "For best performance"
  6752. },
  6753. "type": "library",
  6754. "extra": {
  6755. "thanks": {
  6756. "name": "symfony/polyfill",
  6757. "url": "https://github.com/symfony/polyfill"
  6758. }
  6759. },
  6760. "autoload": {
  6761. "files": [
  6762. "bootstrap.php"
  6763. ],
  6764. "psr-4": {
  6765. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6766. }
  6767. },
  6768. "notification-url": "https://packagist.org/downloads/",
  6769. "license": [
  6770. "MIT"
  6771. ],
  6772. "authors": [
  6773. {
  6774. "name": "Laurent Bassin",
  6775. "email": "laurent@bassin.info"
  6776. },
  6777. {
  6778. "name": "Trevor Rowbotham",
  6779. "email": "trevor.rowbotham@pm.me"
  6780. },
  6781. {
  6782. "name": "Symfony Community",
  6783. "homepage": "https://symfony.com/contributors"
  6784. }
  6785. ],
  6786. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6787. "homepage": "https://symfony.com",
  6788. "keywords": [
  6789. "compatibility",
  6790. "idn",
  6791. "intl",
  6792. "polyfill",
  6793. "portable",
  6794. "shim"
  6795. ],
  6796. "support": {
  6797. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0"
  6798. },
  6799. "funding": [
  6800. {
  6801. "url": "https://symfony.com/sponsor",
  6802. "type": "custom"
  6803. },
  6804. {
  6805. "url": "https://github.com/fabpot",
  6806. "type": "github"
  6807. },
  6808. {
  6809. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6810. "type": "tidelift"
  6811. }
  6812. ],
  6813. "time": "2024-01-29T20:11:03+00:00"
  6814. },
  6815. {
  6816. "name": "symfony/polyfill-intl-normalizer",
  6817. "version": "v1.28.0",
  6818. "source": {
  6819. "type": "git",
  6820. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6821. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  6822. },
  6823. "dist": {
  6824. "type": "zip",
  6825. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  6826. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  6827. "shasum": "",
  6828. "mirrors": [
  6829. {
  6830. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6831. "preferred": true
  6832. }
  6833. ]
  6834. },
  6835. "require": {
  6836. "php": ">=7.1"
  6837. },
  6838. "suggest": {
  6839. "ext-intl": "For best performance"
  6840. },
  6841. "type": "library",
  6842. "extra": {
  6843. "branch-alias": {
  6844. "dev-main": "1.28-dev"
  6845. },
  6846. "thanks": {
  6847. "name": "symfony/polyfill",
  6848. "url": "https://github.com/symfony/polyfill"
  6849. }
  6850. },
  6851. "autoload": {
  6852. "files": [
  6853. "bootstrap.php"
  6854. ],
  6855. "psr-4": {
  6856. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6857. },
  6858. "classmap": [
  6859. "Resources/stubs"
  6860. ]
  6861. },
  6862. "notification-url": "https://packagist.org/downloads/",
  6863. "license": [
  6864. "MIT"
  6865. ],
  6866. "authors": [
  6867. {
  6868. "name": "Nicolas Grekas",
  6869. "email": "p@tchwork.com"
  6870. },
  6871. {
  6872. "name": "Symfony Community",
  6873. "homepage": "https://symfony.com/contributors"
  6874. }
  6875. ],
  6876. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6877. "homepage": "https://symfony.com",
  6878. "keywords": [
  6879. "compatibility",
  6880. "intl",
  6881. "normalizer",
  6882. "polyfill",
  6883. "portable",
  6884. "shim"
  6885. ],
  6886. "support": {
  6887. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  6888. },
  6889. "funding": [
  6890. {
  6891. "url": "https://symfony.com/sponsor",
  6892. "type": "custom"
  6893. },
  6894. {
  6895. "url": "https://github.com/fabpot",
  6896. "type": "github"
  6897. },
  6898. {
  6899. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6900. "type": "tidelift"
  6901. }
  6902. ],
  6903. "time": "2023-01-26T09:26:14+00:00"
  6904. },
  6905. {
  6906. "name": "symfony/polyfill-mbstring",
  6907. "version": "v1.28.0",
  6908. "source": {
  6909. "type": "git",
  6910. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6911. "reference": "42292d99c55abe617799667f454222c54c60e229"
  6912. },
  6913. "dist": {
  6914. "type": "zip",
  6915. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  6916. "reference": "42292d99c55abe617799667f454222c54c60e229",
  6917. "shasum": "",
  6918. "mirrors": [
  6919. {
  6920. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6921. "preferred": true
  6922. }
  6923. ]
  6924. },
  6925. "require": {
  6926. "php": ">=7.1"
  6927. },
  6928. "provide": {
  6929. "ext-mbstring": "*"
  6930. },
  6931. "suggest": {
  6932. "ext-mbstring": "For best performance"
  6933. },
  6934. "type": "library",
  6935. "extra": {
  6936. "branch-alias": {
  6937. "dev-main": "1.28-dev"
  6938. },
  6939. "thanks": {
  6940. "name": "symfony/polyfill",
  6941. "url": "https://github.com/symfony/polyfill"
  6942. }
  6943. },
  6944. "autoload": {
  6945. "files": [
  6946. "bootstrap.php"
  6947. ],
  6948. "psr-4": {
  6949. "Symfony\\Polyfill\\Mbstring\\": ""
  6950. }
  6951. },
  6952. "notification-url": "https://packagist.org/downloads/",
  6953. "license": [
  6954. "MIT"
  6955. ],
  6956. "authors": [
  6957. {
  6958. "name": "Nicolas Grekas",
  6959. "email": "p@tchwork.com"
  6960. },
  6961. {
  6962. "name": "Symfony Community",
  6963. "homepage": "https://symfony.com/contributors"
  6964. }
  6965. ],
  6966. "description": "Symfony polyfill for the Mbstring extension",
  6967. "homepage": "https://symfony.com",
  6968. "keywords": [
  6969. "compatibility",
  6970. "mbstring",
  6971. "polyfill",
  6972. "portable",
  6973. "shim"
  6974. ],
  6975. "support": {
  6976. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  6977. },
  6978. "funding": [
  6979. {
  6980. "url": "https://symfony.com/sponsor",
  6981. "type": "custom"
  6982. },
  6983. {
  6984. "url": "https://github.com/fabpot",
  6985. "type": "github"
  6986. },
  6987. {
  6988. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6989. "type": "tidelift"
  6990. }
  6991. ],
  6992. "time": "2023-07-28T09:04:16+00:00"
  6993. },
  6994. {
  6995. "name": "symfony/polyfill-php56",
  6996. "version": "v1.20.0",
  6997. "source": {
  6998. "type": "git",
  6999. "url": "https://github.com/symfony/polyfill-php56.git",
  7000. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  7001. },
  7002. "dist": {
  7003. "type": "zip",
  7004. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  7005. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  7006. "shasum": "",
  7007. "mirrors": [
  7008. {
  7009. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7010. "preferred": true
  7011. }
  7012. ]
  7013. },
  7014. "require": {
  7015. "php": ">=7.1"
  7016. },
  7017. "type": "metapackage",
  7018. "extra": {
  7019. "branch-alias": {
  7020. "dev-main": "1.20-dev"
  7021. },
  7022. "thanks": {
  7023. "name": "symfony/polyfill",
  7024. "url": "https://github.com/symfony/polyfill"
  7025. }
  7026. },
  7027. "notification-url": "https://packagist.org/downloads/",
  7028. "license": [
  7029. "MIT"
  7030. ],
  7031. "authors": [
  7032. {
  7033. "name": "Nicolas Grekas",
  7034. "email": "p@tchwork.com"
  7035. },
  7036. {
  7037. "name": "Symfony Community",
  7038. "homepage": "https://symfony.com/contributors"
  7039. }
  7040. ],
  7041. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  7042. "homepage": "https://symfony.com",
  7043. "keywords": [
  7044. "compatibility",
  7045. "polyfill",
  7046. "portable",
  7047. "shim"
  7048. ],
  7049. "support": {
  7050. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  7051. },
  7052. "funding": [
  7053. {
  7054. "url": "https://symfony.com/sponsor",
  7055. "type": "custom"
  7056. },
  7057. {
  7058. "url": "https://github.com/fabpot",
  7059. "type": "github"
  7060. },
  7061. {
  7062. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7063. "type": "tidelift"
  7064. }
  7065. ],
  7066. "time": "2020-10-23T14:02:19+00:00"
  7067. },
  7068. {
  7069. "name": "symfony/polyfill-php72",
  7070. "version": "v1.29.0",
  7071. "source": {
  7072. "type": "git",
  7073. "url": "https://github.com/symfony/polyfill-php72.git",
  7074. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  7075. },
  7076. "dist": {
  7077. "type": "zip",
  7078. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7079. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7080. "shasum": "",
  7081. "mirrors": [
  7082. {
  7083. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7084. "preferred": true
  7085. }
  7086. ]
  7087. },
  7088. "require": {
  7089. "php": ">=7.1"
  7090. },
  7091. "type": "library",
  7092. "extra": {
  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\\Php72\\": ""
  7104. }
  7105. },
  7106. "notification-url": "https://packagist.org/downloads/",
  7107. "license": [
  7108. "MIT"
  7109. ],
  7110. "authors": [
  7111. {
  7112. "name": "Nicolas Grekas",
  7113. "email": "p@tchwork.com"
  7114. },
  7115. {
  7116. "name": "Symfony Community",
  7117. "homepage": "https://symfony.com/contributors"
  7118. }
  7119. ],
  7120. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7121. "homepage": "https://symfony.com",
  7122. "keywords": [
  7123. "compatibility",
  7124. "polyfill",
  7125. "portable",
  7126. "shim"
  7127. ],
  7128. "support": {
  7129. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  7130. },
  7131. "funding": [
  7132. {
  7133. "url": "https://symfony.com/sponsor",
  7134. "type": "custom"
  7135. },
  7136. {
  7137. "url": "https://github.com/fabpot",
  7138. "type": "github"
  7139. },
  7140. {
  7141. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7142. "type": "tidelift"
  7143. }
  7144. ],
  7145. "time": "2024-01-29T20:11:03+00:00"
  7146. },
  7147. {
  7148. "name": "symfony/polyfill-php73",
  7149. "version": "v1.28.0",
  7150. "source": {
  7151. "type": "git",
  7152. "url": "https://github.com/symfony/polyfill-php73.git",
  7153. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  7154. },
  7155. "dist": {
  7156. "type": "zip",
  7157. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  7158. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  7159. "shasum": "",
  7160. "mirrors": [
  7161. {
  7162. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7163. "preferred": true
  7164. }
  7165. ]
  7166. },
  7167. "require": {
  7168. "php": ">=7.1"
  7169. },
  7170. "type": "library",
  7171. "extra": {
  7172. "branch-alias": {
  7173. "dev-main": "1.28-dev"
  7174. },
  7175. "thanks": {
  7176. "name": "symfony/polyfill",
  7177. "url": "https://github.com/symfony/polyfill"
  7178. }
  7179. },
  7180. "autoload": {
  7181. "files": [
  7182. "bootstrap.php"
  7183. ],
  7184. "psr-4": {
  7185. "Symfony\\Polyfill\\Php73\\": ""
  7186. },
  7187. "classmap": [
  7188. "Resources/stubs"
  7189. ]
  7190. },
  7191. "notification-url": "https://packagist.org/downloads/",
  7192. "license": [
  7193. "MIT"
  7194. ],
  7195. "authors": [
  7196. {
  7197. "name": "Nicolas Grekas",
  7198. "email": "p@tchwork.com"
  7199. },
  7200. {
  7201. "name": "Symfony Community",
  7202. "homepage": "https://symfony.com/contributors"
  7203. }
  7204. ],
  7205. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  7206. "homepage": "https://symfony.com",
  7207. "keywords": [
  7208. "compatibility",
  7209. "polyfill",
  7210. "portable",
  7211. "shim"
  7212. ],
  7213. "support": {
  7214. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  7215. },
  7216. "funding": [
  7217. {
  7218. "url": "https://symfony.com/sponsor",
  7219. "type": "custom"
  7220. },
  7221. {
  7222. "url": "https://github.com/fabpot",
  7223. "type": "github"
  7224. },
  7225. {
  7226. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7227. "type": "tidelift"
  7228. }
  7229. ],
  7230. "time": "2023-01-26T09:26:14+00:00"
  7231. },
  7232. {
  7233. "name": "symfony/polyfill-php80",
  7234. "version": "v1.29.0",
  7235. "source": {
  7236. "type": "git",
  7237. "url": "https://github.com/symfony/polyfill-php80.git",
  7238. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  7239. },
  7240. "dist": {
  7241. "type": "zip",
  7242. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7243. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7244. "shasum": "",
  7245. "mirrors": [
  7246. {
  7247. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7248. "preferred": true
  7249. }
  7250. ]
  7251. },
  7252. "require": {
  7253. "php": ">=7.1"
  7254. },
  7255. "type": "library",
  7256. "extra": {
  7257. "thanks": {
  7258. "name": "symfony/polyfill",
  7259. "url": "https://github.com/symfony/polyfill"
  7260. }
  7261. },
  7262. "autoload": {
  7263. "files": [
  7264. "bootstrap.php"
  7265. ],
  7266. "psr-4": {
  7267. "Symfony\\Polyfill\\Php80\\": ""
  7268. },
  7269. "classmap": [
  7270. "Resources/stubs"
  7271. ]
  7272. },
  7273. "notification-url": "https://packagist.org/downloads/",
  7274. "license": [
  7275. "MIT"
  7276. ],
  7277. "authors": [
  7278. {
  7279. "name": "Ion Bazan",
  7280. "email": "ion.bazan@gmail.com"
  7281. },
  7282. {
  7283. "name": "Nicolas Grekas",
  7284. "email": "p@tchwork.com"
  7285. },
  7286. {
  7287. "name": "Symfony Community",
  7288. "homepage": "https://symfony.com/contributors"
  7289. }
  7290. ],
  7291. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7292. "homepage": "https://symfony.com",
  7293. "keywords": [
  7294. "compatibility",
  7295. "polyfill",
  7296. "portable",
  7297. "shim"
  7298. ],
  7299. "support": {
  7300. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  7301. },
  7302. "funding": [
  7303. {
  7304. "url": "https://symfony.com/sponsor",
  7305. "type": "custom"
  7306. },
  7307. {
  7308. "url": "https://github.com/fabpot",
  7309. "type": "github"
  7310. },
  7311. {
  7312. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7313. "type": "tidelift"
  7314. }
  7315. ],
  7316. "time": "2024-01-29T20:11:03+00:00"
  7317. },
  7318. {
  7319. "name": "symfony/polyfill-php81",
  7320. "version": "v1.28.0",
  7321. "source": {
  7322. "type": "git",
  7323. "url": "https://github.com/symfony/polyfill-php81.git",
  7324. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  7325. },
  7326. "dist": {
  7327. "type": "zip",
  7328. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  7329. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  7330. "shasum": "",
  7331. "mirrors": [
  7332. {
  7333. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7334. "preferred": true
  7335. }
  7336. ]
  7337. },
  7338. "require": {
  7339. "php": ">=7.1"
  7340. },
  7341. "type": "library",
  7342. "extra": {
  7343. "branch-alias": {
  7344. "dev-main": "1.28-dev"
  7345. },
  7346. "thanks": {
  7347. "name": "symfony/polyfill",
  7348. "url": "https://github.com/symfony/polyfill"
  7349. }
  7350. },
  7351. "autoload": {
  7352. "files": [
  7353. "bootstrap.php"
  7354. ],
  7355. "psr-4": {
  7356. "Symfony\\Polyfill\\Php81\\": ""
  7357. },
  7358. "classmap": [
  7359. "Resources/stubs"
  7360. ]
  7361. },
  7362. "notification-url": "https://packagist.org/downloads/",
  7363. "license": [
  7364. "MIT"
  7365. ],
  7366. "authors": [
  7367. {
  7368. "name": "Nicolas Grekas",
  7369. "email": "p@tchwork.com"
  7370. },
  7371. {
  7372. "name": "Symfony Community",
  7373. "homepage": "https://symfony.com/contributors"
  7374. }
  7375. ],
  7376. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7377. "homepage": "https://symfony.com",
  7378. "keywords": [
  7379. "compatibility",
  7380. "polyfill",
  7381. "portable",
  7382. "shim"
  7383. ],
  7384. "support": {
  7385. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  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": "2023-01-26T09:26:14+00:00"
  7402. },
  7403. {
  7404. "name": "symfony/process",
  7405. "version": "v5.4.35",
  7406. "source": {
  7407. "type": "git",
  7408. "url": "https://github.com/symfony/process.git",
  7409. "reference": "cbc28e34015ad50166fc2f9c8962d28d0fe861eb"
  7410. },
  7411. "dist": {
  7412. "type": "zip",
  7413. "url": "https://api.github.com/repos/symfony/process/zipball/cbc28e34015ad50166fc2f9c8962d28d0fe861eb",
  7414. "reference": "cbc28e34015ad50166fc2f9c8962d28d0fe861eb",
  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-php80": "^1.16"
  7426. },
  7427. "type": "library",
  7428. "autoload": {
  7429. "psr-4": {
  7430. "Symfony\\Component\\Process\\": ""
  7431. },
  7432. "exclude-from-classmap": [
  7433. "/Tests/"
  7434. ]
  7435. },
  7436. "notification-url": "https://packagist.org/downloads/",
  7437. "license": [
  7438. "MIT"
  7439. ],
  7440. "authors": [
  7441. {
  7442. "name": "Fabien Potencier",
  7443. "email": "fabien@symfony.com"
  7444. },
  7445. {
  7446. "name": "Symfony Community",
  7447. "homepage": "https://symfony.com/contributors"
  7448. }
  7449. ],
  7450. "description": "Executes commands in sub-processes",
  7451. "homepage": "https://symfony.com",
  7452. "support": {
  7453. "source": "https://github.com/symfony/process/tree/v5.4.35"
  7454. },
  7455. "funding": [
  7456. {
  7457. "url": "https://symfony.com/sponsor",
  7458. "type": "custom"
  7459. },
  7460. {
  7461. "url": "https://github.com/fabpot",
  7462. "type": "github"
  7463. },
  7464. {
  7465. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7466. "type": "tidelift"
  7467. }
  7468. ],
  7469. "time": "2024-01-23T13:51:25+00:00"
  7470. },
  7471. {
  7472. "name": "symfony/routing",
  7473. "version": "v5.4.35",
  7474. "source": {
  7475. "type": "git",
  7476. "url": "https://github.com/symfony/routing.git",
  7477. "reference": "86c5a06a61ddaf17efa1403542e3d7146af96203"
  7478. },
  7479. "dist": {
  7480. "type": "zip",
  7481. "url": "https://api.github.com/repos/symfony/routing/zipball/86c5a06a61ddaf17efa1403542e3d7146af96203",
  7482. "reference": "86c5a06a61ddaf17efa1403542e3d7146af96203",
  7483. "shasum": "",
  7484. "mirrors": [
  7485. {
  7486. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7487. "preferred": true
  7488. }
  7489. ]
  7490. },
  7491. "require": {
  7492. "php": ">=7.2.5",
  7493. "symfony/deprecation-contracts": "^2.1|^3",
  7494. "symfony/polyfill-php80": "^1.16"
  7495. },
  7496. "conflict": {
  7497. "doctrine/annotations": "<1.12",
  7498. "symfony/config": "<5.3",
  7499. "symfony/dependency-injection": "<4.4",
  7500. "symfony/yaml": "<4.4"
  7501. },
  7502. "require-dev": {
  7503. "doctrine/annotations": "^1.12|^2",
  7504. "psr/log": "^1|^2|^3",
  7505. "symfony/config": "^5.3|^6.0",
  7506. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7507. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7508. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7509. "symfony/yaml": "^4.4|^5.0|^6.0"
  7510. },
  7511. "suggest": {
  7512. "symfony/config": "For using the all-in-one router or any loader",
  7513. "symfony/expression-language": "For using expression matching",
  7514. "symfony/http-foundation": "For using a Symfony Request object",
  7515. "symfony/yaml": "For using the YAML loader"
  7516. },
  7517. "type": "library",
  7518. "autoload": {
  7519. "psr-4": {
  7520. "Symfony\\Component\\Routing\\": ""
  7521. },
  7522. "exclude-from-classmap": [
  7523. "/Tests/"
  7524. ]
  7525. },
  7526. "notification-url": "https://packagist.org/downloads/",
  7527. "license": [
  7528. "MIT"
  7529. ],
  7530. "authors": [
  7531. {
  7532. "name": "Fabien Potencier",
  7533. "email": "fabien@symfony.com"
  7534. },
  7535. {
  7536. "name": "Symfony Community",
  7537. "homepage": "https://symfony.com/contributors"
  7538. }
  7539. ],
  7540. "description": "Maps an HTTP request to a set of configuration variables",
  7541. "homepage": "https://symfony.com",
  7542. "keywords": [
  7543. "router",
  7544. "routing",
  7545. "uri",
  7546. "url"
  7547. ],
  7548. "support": {
  7549. "source": "https://github.com/symfony/routing/tree/v5.4.35"
  7550. },
  7551. "funding": [
  7552. {
  7553. "url": "https://symfony.com/sponsor",
  7554. "type": "custom"
  7555. },
  7556. {
  7557. "url": "https://github.com/fabpot",
  7558. "type": "github"
  7559. },
  7560. {
  7561. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7562. "type": "tidelift"
  7563. }
  7564. ],
  7565. "time": "2024-01-30T13:10:15+00:00"
  7566. },
  7567. {
  7568. "name": "symfony/service-contracts",
  7569. "version": "v2.5.2",
  7570. "source": {
  7571. "type": "git",
  7572. "url": "https://github.com/symfony/service-contracts.git",
  7573. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  7574. },
  7575. "dist": {
  7576. "type": "zip",
  7577. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7578. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7579. "shasum": "",
  7580. "mirrors": [
  7581. {
  7582. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7583. "preferred": true
  7584. }
  7585. ]
  7586. },
  7587. "require": {
  7588. "php": ">=7.2.5",
  7589. "psr/container": "^1.1",
  7590. "symfony/deprecation-contracts": "^2.1|^3"
  7591. },
  7592. "conflict": {
  7593. "ext-psr": "<1.1|>=2"
  7594. },
  7595. "suggest": {
  7596. "symfony/service-implementation": ""
  7597. },
  7598. "type": "library",
  7599. "extra": {
  7600. "branch-alias": {
  7601. "dev-main": "2.5-dev"
  7602. },
  7603. "thanks": {
  7604. "name": "symfony/contracts",
  7605. "url": "https://github.com/symfony/contracts"
  7606. }
  7607. },
  7608. "autoload": {
  7609. "psr-4": {
  7610. "Symfony\\Contracts\\Service\\": ""
  7611. }
  7612. },
  7613. "notification-url": "https://packagist.org/downloads/",
  7614. "license": [
  7615. "MIT"
  7616. ],
  7617. "authors": [
  7618. {
  7619. "name": "Nicolas Grekas",
  7620. "email": "p@tchwork.com"
  7621. },
  7622. {
  7623. "name": "Symfony Community",
  7624. "homepage": "https://symfony.com/contributors"
  7625. }
  7626. ],
  7627. "description": "Generic abstractions related to writing services",
  7628. "homepage": "https://symfony.com",
  7629. "keywords": [
  7630. "abstractions",
  7631. "contracts",
  7632. "decoupling",
  7633. "interfaces",
  7634. "interoperability",
  7635. "standards"
  7636. ],
  7637. "support": {
  7638. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  7639. },
  7640. "funding": [
  7641. {
  7642. "url": "https://symfony.com/sponsor",
  7643. "type": "custom"
  7644. },
  7645. {
  7646. "url": "https://github.com/fabpot",
  7647. "type": "github"
  7648. },
  7649. {
  7650. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7651. "type": "tidelift"
  7652. }
  7653. ],
  7654. "time": "2022-05-30T19:17:29+00:00"
  7655. },
  7656. {
  7657. "name": "symfony/string",
  7658. "version": "v5.4.35",
  7659. "source": {
  7660. "type": "git",
  7661. "url": "https://github.com/symfony/string.git",
  7662. "reference": "c209c4d0559acce1c9a2067612cfb5d35756edc2"
  7663. },
  7664. "dist": {
  7665. "type": "zip",
  7666. "url": "https://api.github.com/repos/symfony/string/zipball/c209c4d0559acce1c9a2067612cfb5d35756edc2",
  7667. "reference": "c209c4d0559acce1c9a2067612cfb5d35756edc2",
  7668. "shasum": "",
  7669. "mirrors": [
  7670. {
  7671. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7672. "preferred": true
  7673. }
  7674. ]
  7675. },
  7676. "require": {
  7677. "php": ">=7.2.5",
  7678. "symfony/polyfill-ctype": "~1.8",
  7679. "symfony/polyfill-intl-grapheme": "~1.0",
  7680. "symfony/polyfill-intl-normalizer": "~1.0",
  7681. "symfony/polyfill-mbstring": "~1.0",
  7682. "symfony/polyfill-php80": "~1.15"
  7683. },
  7684. "conflict": {
  7685. "symfony/translation-contracts": ">=3.0"
  7686. },
  7687. "require-dev": {
  7688. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7689. "symfony/http-client": "^4.4|^5.0|^6.0",
  7690. "symfony/translation-contracts": "^1.1|^2",
  7691. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  7692. },
  7693. "type": "library",
  7694. "autoload": {
  7695. "files": [
  7696. "Resources/functions.php"
  7697. ],
  7698. "psr-4": {
  7699. "Symfony\\Component\\String\\": ""
  7700. },
  7701. "exclude-from-classmap": [
  7702. "/Tests/"
  7703. ]
  7704. },
  7705. "notification-url": "https://packagist.org/downloads/",
  7706. "license": [
  7707. "MIT"
  7708. ],
  7709. "authors": [
  7710. {
  7711. "name": "Nicolas Grekas",
  7712. "email": "p@tchwork.com"
  7713. },
  7714. {
  7715. "name": "Symfony Community",
  7716. "homepage": "https://symfony.com/contributors"
  7717. }
  7718. ],
  7719. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7720. "homepage": "https://symfony.com",
  7721. "keywords": [
  7722. "grapheme",
  7723. "i18n",
  7724. "string",
  7725. "unicode",
  7726. "utf-8",
  7727. "utf8"
  7728. ],
  7729. "support": {
  7730. "source": "https://github.com/symfony/string/tree/v5.4.35"
  7731. },
  7732. "funding": [
  7733. {
  7734. "url": "https://symfony.com/sponsor",
  7735. "type": "custom"
  7736. },
  7737. {
  7738. "url": "https://github.com/fabpot",
  7739. "type": "github"
  7740. },
  7741. {
  7742. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7743. "type": "tidelift"
  7744. }
  7745. ],
  7746. "time": "2024-01-23T13:51:25+00:00"
  7747. },
  7748. {
  7749. "name": "symfony/translation",
  7750. "version": "v5.4.35",
  7751. "source": {
  7752. "type": "git",
  7753. "url": "https://github.com/symfony/translation.git",
  7754. "reference": "77d7d1e46f52827585e65e6cd6f52a2542e59c72"
  7755. },
  7756. "dist": {
  7757. "type": "zip",
  7758. "url": "https://api.github.com/repos/symfony/translation/zipball/77d7d1e46f52827585e65e6cd6f52a2542e59c72",
  7759. "reference": "77d7d1e46f52827585e65e6cd6f52a2542e59c72",
  7760. "shasum": "",
  7761. "mirrors": [
  7762. {
  7763. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7764. "preferred": true
  7765. }
  7766. ]
  7767. },
  7768. "require": {
  7769. "php": ">=7.2.5",
  7770. "symfony/deprecation-contracts": "^2.1|^3",
  7771. "symfony/polyfill-mbstring": "~1.0",
  7772. "symfony/polyfill-php80": "^1.16",
  7773. "symfony/translation-contracts": "^2.3"
  7774. },
  7775. "conflict": {
  7776. "symfony/config": "<4.4",
  7777. "symfony/console": "<5.3",
  7778. "symfony/dependency-injection": "<5.0",
  7779. "symfony/http-kernel": "<5.0",
  7780. "symfony/twig-bundle": "<5.0",
  7781. "symfony/yaml": "<4.4"
  7782. },
  7783. "provide": {
  7784. "symfony/translation-implementation": "2.3"
  7785. },
  7786. "require-dev": {
  7787. "psr/log": "^1|^2|^3",
  7788. "symfony/config": "^4.4|^5.0|^6.0",
  7789. "symfony/console": "^5.4|^6.0",
  7790. "symfony/dependency-injection": "^5.0|^6.0",
  7791. "symfony/finder": "^4.4|^5.0|^6.0",
  7792. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7793. "symfony/http-kernel": "^5.0|^6.0",
  7794. "symfony/intl": "^4.4|^5.0|^6.0",
  7795. "symfony/polyfill-intl-icu": "^1.21",
  7796. "symfony/service-contracts": "^1.1.2|^2|^3",
  7797. "symfony/yaml": "^4.4|^5.0|^6.0"
  7798. },
  7799. "suggest": {
  7800. "psr/log-implementation": "To use logging capability in translator",
  7801. "symfony/config": "",
  7802. "symfony/yaml": ""
  7803. },
  7804. "type": "library",
  7805. "autoload": {
  7806. "files": [
  7807. "Resources/functions.php"
  7808. ],
  7809. "psr-4": {
  7810. "Symfony\\Component\\Translation\\": ""
  7811. },
  7812. "exclude-from-classmap": [
  7813. "/Tests/"
  7814. ]
  7815. },
  7816. "notification-url": "https://packagist.org/downloads/",
  7817. "license": [
  7818. "MIT"
  7819. ],
  7820. "authors": [
  7821. {
  7822. "name": "Fabien Potencier",
  7823. "email": "fabien@symfony.com"
  7824. },
  7825. {
  7826. "name": "Symfony Community",
  7827. "homepage": "https://symfony.com/contributors"
  7828. }
  7829. ],
  7830. "description": "Provides tools to internationalize your application",
  7831. "homepage": "https://symfony.com",
  7832. "support": {
  7833. "source": "https://github.com/symfony/translation/tree/v5.4.35"
  7834. },
  7835. "funding": [
  7836. {
  7837. "url": "https://symfony.com/sponsor",
  7838. "type": "custom"
  7839. },
  7840. {
  7841. "url": "https://github.com/fabpot",
  7842. "type": "github"
  7843. },
  7844. {
  7845. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7846. "type": "tidelift"
  7847. }
  7848. ],
  7849. "time": "2024-01-23T13:51:25+00:00"
  7850. },
  7851. {
  7852. "name": "symfony/translation-contracts",
  7853. "version": "v2.5.2",
  7854. "source": {
  7855. "type": "git",
  7856. "url": "https://github.com/symfony/translation-contracts.git",
  7857. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  7858. },
  7859. "dist": {
  7860. "type": "zip",
  7861. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7862. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7863. "shasum": "",
  7864. "mirrors": [
  7865. {
  7866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7867. "preferred": true
  7868. }
  7869. ]
  7870. },
  7871. "require": {
  7872. "php": ">=7.2.5"
  7873. },
  7874. "suggest": {
  7875. "symfony/translation-implementation": ""
  7876. },
  7877. "type": "library",
  7878. "extra": {
  7879. "branch-alias": {
  7880. "dev-main": "2.5-dev"
  7881. },
  7882. "thanks": {
  7883. "name": "symfony/contracts",
  7884. "url": "https://github.com/symfony/contracts"
  7885. }
  7886. },
  7887. "autoload": {
  7888. "psr-4": {
  7889. "Symfony\\Contracts\\Translation\\": ""
  7890. }
  7891. },
  7892. "notification-url": "https://packagist.org/downloads/",
  7893. "license": [
  7894. "MIT"
  7895. ],
  7896. "authors": [
  7897. {
  7898. "name": "Nicolas Grekas",
  7899. "email": "p@tchwork.com"
  7900. },
  7901. {
  7902. "name": "Symfony Community",
  7903. "homepage": "https://symfony.com/contributors"
  7904. }
  7905. ],
  7906. "description": "Generic abstractions related to translation",
  7907. "homepage": "https://symfony.com",
  7908. "keywords": [
  7909. "abstractions",
  7910. "contracts",
  7911. "decoupling",
  7912. "interfaces",
  7913. "interoperability",
  7914. "standards"
  7915. ],
  7916. "support": {
  7917. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  7918. },
  7919. "funding": [
  7920. {
  7921. "url": "https://symfony.com/sponsor",
  7922. "type": "custom"
  7923. },
  7924. {
  7925. "url": "https://github.com/fabpot",
  7926. "type": "github"
  7927. },
  7928. {
  7929. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7930. "type": "tidelift"
  7931. }
  7932. ],
  7933. "time": "2022-06-27T16:58:25+00:00"
  7934. },
  7935. {
  7936. "name": "symfony/var-dumper",
  7937. "version": "v5.4.35",
  7938. "source": {
  7939. "type": "git",
  7940. "url": "https://github.com/symfony/var-dumper.git",
  7941. "reference": "ce4685b30e47d94dfc990c5566285ff99ddf012b"
  7942. },
  7943. "dist": {
  7944. "type": "zip",
  7945. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ce4685b30e47d94dfc990c5566285ff99ddf012b",
  7946. "reference": "ce4685b30e47d94dfc990c5566285ff99ddf012b",
  7947. "shasum": "",
  7948. "mirrors": [
  7949. {
  7950. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7951. "preferred": true
  7952. }
  7953. ]
  7954. },
  7955. "require": {
  7956. "php": ">=7.2.5",
  7957. "symfony/polyfill-mbstring": "~1.0",
  7958. "symfony/polyfill-php80": "^1.16"
  7959. },
  7960. "conflict": {
  7961. "symfony/console": "<4.4"
  7962. },
  7963. "require-dev": {
  7964. "ext-iconv": "*",
  7965. "symfony/console": "^4.4|^5.0|^6.0",
  7966. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7967. "symfony/process": "^4.4|^5.0|^6.0",
  7968. "symfony/uid": "^5.1|^6.0",
  7969. "twig/twig": "^2.13|^3.0.4"
  7970. },
  7971. "suggest": {
  7972. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7973. "ext-intl": "To show region name in time zone dump",
  7974. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7975. },
  7976. "bin": [
  7977. "Resources/bin/var-dump-server"
  7978. ],
  7979. "type": "library",
  7980. "autoload": {
  7981. "files": [
  7982. "Resources/functions/dump.php"
  7983. ],
  7984. "psr-4": {
  7985. "Symfony\\Component\\VarDumper\\": ""
  7986. },
  7987. "exclude-from-classmap": [
  7988. "/Tests/"
  7989. ]
  7990. },
  7991. "notification-url": "https://packagist.org/downloads/",
  7992. "license": [
  7993. "MIT"
  7994. ],
  7995. "authors": [
  7996. {
  7997. "name": "Nicolas Grekas",
  7998. "email": "p@tchwork.com"
  7999. },
  8000. {
  8001. "name": "Symfony Community",
  8002. "homepage": "https://symfony.com/contributors"
  8003. }
  8004. ],
  8005. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8006. "homepage": "https://symfony.com",
  8007. "keywords": [
  8008. "debug",
  8009. "dump"
  8010. ],
  8011. "support": {
  8012. "source": "https://github.com/symfony/var-dumper/tree/v5.4.35"
  8013. },
  8014. "funding": [
  8015. {
  8016. "url": "https://symfony.com/sponsor",
  8017. "type": "custom"
  8018. },
  8019. {
  8020. "url": "https://github.com/fabpot",
  8021. "type": "github"
  8022. },
  8023. {
  8024. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8025. "type": "tidelift"
  8026. }
  8027. ],
  8028. "time": "2024-01-23T14:28:09+00:00"
  8029. },
  8030. {
  8031. "name": "symfony/yaml",
  8032. "version": "v5.4.35",
  8033. "source": {
  8034. "type": "git",
  8035. "url": "https://github.com/symfony/yaml.git",
  8036. "reference": "e78db7f5c70a21f0417a31f414c4a95fe76c07e4"
  8037. },
  8038. "dist": {
  8039. "type": "zip",
  8040. "url": "https://api.github.com/repos/symfony/yaml/zipball/e78db7f5c70a21f0417a31f414c4a95fe76c07e4",
  8041. "reference": "e78db7f5c70a21f0417a31f414c4a95fe76c07e4",
  8042. "shasum": "",
  8043. "mirrors": [
  8044. {
  8045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8046. "preferred": true
  8047. }
  8048. ]
  8049. },
  8050. "require": {
  8051. "php": ">=7.2.5",
  8052. "symfony/deprecation-contracts": "^2.1|^3",
  8053. "symfony/polyfill-ctype": "^1.8"
  8054. },
  8055. "conflict": {
  8056. "symfony/console": "<5.3"
  8057. },
  8058. "require-dev": {
  8059. "symfony/console": "^5.3|^6.0"
  8060. },
  8061. "suggest": {
  8062. "symfony/console": "For validating YAML files using the lint command"
  8063. },
  8064. "bin": [
  8065. "Resources/bin/yaml-lint"
  8066. ],
  8067. "type": "library",
  8068. "autoload": {
  8069. "psr-4": {
  8070. "Symfony\\Component\\Yaml\\": ""
  8071. },
  8072. "exclude-from-classmap": [
  8073. "/Tests/"
  8074. ]
  8075. },
  8076. "notification-url": "https://packagist.org/downloads/",
  8077. "license": [
  8078. "MIT"
  8079. ],
  8080. "authors": [
  8081. {
  8082. "name": "Fabien Potencier",
  8083. "email": "fabien@symfony.com"
  8084. },
  8085. {
  8086. "name": "Symfony Community",
  8087. "homepage": "https://symfony.com/contributors"
  8088. }
  8089. ],
  8090. "description": "Loads and dumps YAML files",
  8091. "homepage": "https://symfony.com",
  8092. "support": {
  8093. "source": "https://github.com/symfony/yaml/tree/v5.4.35"
  8094. },
  8095. "funding": [
  8096. {
  8097. "url": "https://symfony.com/sponsor",
  8098. "type": "custom"
  8099. },
  8100. {
  8101. "url": "https://github.com/fabpot",
  8102. "type": "github"
  8103. },
  8104. {
  8105. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8106. "type": "tidelift"
  8107. }
  8108. ],
  8109. "time": "2024-01-23T13:51:25+00:00"
  8110. },
  8111. {
  8112. "name": "tijsverkoyen/css-to-inline-styles",
  8113. "version": "v2.2.7",
  8114. "source": {
  8115. "type": "git",
  8116. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8117. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  8118. },
  8119. "dist": {
  8120. "type": "zip",
  8121. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8122. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8123. "shasum": "",
  8124. "mirrors": [
  8125. {
  8126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8127. "preferred": true
  8128. }
  8129. ]
  8130. },
  8131. "require": {
  8132. "ext-dom": "*",
  8133. "ext-libxml": "*",
  8134. "php": "^5.5 || ^7.0 || ^8.0",
  8135. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  8136. },
  8137. "require-dev": {
  8138. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8139. },
  8140. "type": "library",
  8141. "extra": {
  8142. "branch-alias": {
  8143. "dev-master": "2.2.x-dev"
  8144. }
  8145. },
  8146. "autoload": {
  8147. "psr-4": {
  8148. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8149. }
  8150. },
  8151. "notification-url": "https://packagist.org/downloads/",
  8152. "license": [
  8153. "BSD-3-Clause"
  8154. ],
  8155. "authors": [
  8156. {
  8157. "name": "Tijs Verkoyen",
  8158. "email": "css_to_inline_styles@verkoyen.eu",
  8159. "role": "Developer"
  8160. }
  8161. ],
  8162. "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.",
  8163. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8164. "support": {
  8165. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8166. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  8167. },
  8168. "time": "2023-12-08T13:03:43+00:00"
  8169. },
  8170. {
  8171. "name": "tymon/jwt-auth",
  8172. "version": "1.0.2",
  8173. "source": {
  8174. "type": "git",
  8175. "url": "https://github.com/tymondesigns/jwt-auth.git",
  8176. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  8177. },
  8178. "dist": {
  8179. "type": "zip",
  8180. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  8181. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  8182. "shasum": "",
  8183. "mirrors": [
  8184. {
  8185. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8186. "preferred": true
  8187. }
  8188. ]
  8189. },
  8190. "require": {
  8191. "illuminate/auth": "^5.2|^6|^7|^8",
  8192. "illuminate/contracts": "^5.2|^6|^7|^8",
  8193. "illuminate/http": "^5.2|^6|^7|^8",
  8194. "illuminate/support": "^5.2|^6|^7|^8",
  8195. "lcobucci/jwt": "<3.4",
  8196. "namshi/jose": "^7.0",
  8197. "nesbot/carbon": "^1.0|^2.0",
  8198. "php": "^5.5.9|^7.0"
  8199. },
  8200. "require-dev": {
  8201. "illuminate/console": "^5.2|^6|^7|^8",
  8202. "illuminate/database": "^5.2|^6|^7|^8",
  8203. "illuminate/routing": "^5.2|^6|^7|^8",
  8204. "mockery/mockery": ">=0.9.9",
  8205. "phpunit/phpunit": "~4.8|~6.0"
  8206. },
  8207. "type": "library",
  8208. "extra": {
  8209. "branch-alias": {
  8210. "dev-develop": "1.0-dev"
  8211. },
  8212. "laravel": {
  8213. "aliases": {
  8214. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  8215. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  8216. },
  8217. "providers": [
  8218. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  8219. ]
  8220. }
  8221. },
  8222. "autoload": {
  8223. "psr-4": {
  8224. "Tymon\\JWTAuth\\": "src/"
  8225. }
  8226. },
  8227. "notification-url": "https://packagist.org/downloads/",
  8228. "license": [
  8229. "MIT"
  8230. ],
  8231. "authors": [
  8232. {
  8233. "name": "Sean Tymon",
  8234. "email": "tymon148@gmail.com",
  8235. "homepage": "https://tymon.xyz",
  8236. "role": "Developer"
  8237. }
  8238. ],
  8239. "description": "JSON Web Token Authentication for Laravel and Lumen",
  8240. "homepage": "https://github.com/tymondesigns/jwt-auth",
  8241. "keywords": [
  8242. "Authentication",
  8243. "JSON Web Token",
  8244. "auth",
  8245. "jwt",
  8246. "laravel"
  8247. ],
  8248. "support": {
  8249. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  8250. "source": "https://github.com/tymondesigns/jwt-auth"
  8251. },
  8252. "funding": [
  8253. {
  8254. "url": "https://www.patreon.com/seantymon",
  8255. "type": "patreon"
  8256. }
  8257. ],
  8258. "time": "2020-11-27T12:32:42+00:00"
  8259. },
  8260. {
  8261. "name": "vlucas/phpdotenv",
  8262. "version": "v4.3.0",
  8263. "source": {
  8264. "type": "git",
  8265. "url": "https://github.com/vlucas/phpdotenv.git",
  8266. "reference": "67a491df68208bef8c37092db11fa3885008efcf"
  8267. },
  8268. "dist": {
  8269. "type": "zip",
  8270. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67a491df68208bef8c37092db11fa3885008efcf",
  8271. "reference": "67a491df68208bef8c37092db11fa3885008efcf",
  8272. "shasum": "",
  8273. "mirrors": [
  8274. {
  8275. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8276. "preferred": true
  8277. }
  8278. ]
  8279. },
  8280. "require": {
  8281. "php": "^5.5.9 || ^7.0 || ^8.0",
  8282. "phpoption/phpoption": "^1.7.3",
  8283. "symfony/polyfill-ctype": "^1.17"
  8284. },
  8285. "require-dev": {
  8286. "bamarni/composer-bin-plugin": "^1.4.1",
  8287. "ext-filter": "*",
  8288. "ext-pcre": "*",
  8289. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.30"
  8290. },
  8291. "suggest": {
  8292. "ext-filter": "Required to use the boolean validator.",
  8293. "ext-pcre": "Required to use most of the library."
  8294. },
  8295. "type": "library",
  8296. "extra": {
  8297. "bamarni-bin": {
  8298. "bin-links": true,
  8299. "forward-command": true
  8300. },
  8301. "branch-alias": {
  8302. "dev-master": "4.3-dev"
  8303. }
  8304. },
  8305. "autoload": {
  8306. "psr-4": {
  8307. "Dotenv\\": "src/"
  8308. }
  8309. },
  8310. "notification-url": "https://packagist.org/downloads/",
  8311. "license": [
  8312. "BSD-3-Clause"
  8313. ],
  8314. "authors": [
  8315. {
  8316. "name": "Graham Campbell",
  8317. "email": "hello@gjcampbell.co.uk",
  8318. "homepage": "https://github.com/GrahamCampbell"
  8319. },
  8320. {
  8321. "name": "Vance Lucas",
  8322. "email": "vance@vancelucas.com",
  8323. "homepage": "https://github.com/vlucas"
  8324. }
  8325. ],
  8326. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8327. "keywords": [
  8328. "dotenv",
  8329. "env",
  8330. "environment"
  8331. ],
  8332. "support": {
  8333. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8334. "source": "https://github.com/vlucas/phpdotenv/tree/v4.3.0"
  8335. },
  8336. "funding": [
  8337. {
  8338. "url": "https://github.com/GrahamCampbell",
  8339. "type": "github"
  8340. },
  8341. {
  8342. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8343. "type": "tidelift"
  8344. }
  8345. ],
  8346. "time": "2022-10-16T00:51:09+00:00"
  8347. },
  8348. {
  8349. "name": "voku/portable-ascii",
  8350. "version": "1.6.1",
  8351. "source": {
  8352. "type": "git",
  8353. "url": "https://github.com/voku/portable-ascii.git",
  8354. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  8355. },
  8356. "dist": {
  8357. "type": "zip",
  8358. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  8359. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  8360. "shasum": "",
  8361. "mirrors": [
  8362. {
  8363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8364. "preferred": true
  8365. }
  8366. ]
  8367. },
  8368. "require": {
  8369. "php": ">=7.0.0"
  8370. },
  8371. "require-dev": {
  8372. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8373. },
  8374. "suggest": {
  8375. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8376. },
  8377. "type": "library",
  8378. "autoload": {
  8379. "psr-4": {
  8380. "voku\\": "src/voku/"
  8381. }
  8382. },
  8383. "notification-url": "https://packagist.org/downloads/",
  8384. "license": [
  8385. "MIT"
  8386. ],
  8387. "authors": [
  8388. {
  8389. "name": "Lars Moelleken",
  8390. "homepage": "http://www.moelleken.org/"
  8391. }
  8392. ],
  8393. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8394. "homepage": "https://github.com/voku/portable-ascii",
  8395. "keywords": [
  8396. "ascii",
  8397. "clean",
  8398. "php"
  8399. ],
  8400. "support": {
  8401. "issues": "https://github.com/voku/portable-ascii/issues",
  8402. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  8403. },
  8404. "funding": [
  8405. {
  8406. "url": "https://www.paypal.me/moelleken",
  8407. "type": "custom"
  8408. },
  8409. {
  8410. "url": "https://github.com/voku",
  8411. "type": "github"
  8412. },
  8413. {
  8414. "url": "https://opencollective.com/portable-ascii",
  8415. "type": "open_collective"
  8416. },
  8417. {
  8418. "url": "https://www.patreon.com/voku",
  8419. "type": "patreon"
  8420. },
  8421. {
  8422. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8423. "type": "tidelift"
  8424. }
  8425. ],
  8426. "time": "2022-01-24T18:55:24+00:00"
  8427. },
  8428. {
  8429. "name": "xhat/payjs",
  8430. "version": "1.5.0",
  8431. "source": {
  8432. "type": "git",
  8433. "url": "https://github.com/xhat/payjs.git",
  8434. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  8435. },
  8436. "dist": {
  8437. "type": "zip",
  8438. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  8439. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  8440. "shasum": "",
  8441. "mirrors": [
  8442. {
  8443. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8444. "preferred": true
  8445. }
  8446. ]
  8447. },
  8448. "type": "library",
  8449. "autoload": {
  8450. "psr-4": {
  8451. "Xhat\\Payjs\\": "src/"
  8452. }
  8453. },
  8454. "notification-url": "https://packagist.org/downloads/",
  8455. "license": [
  8456. "MIT"
  8457. ],
  8458. "authors": [
  8459. {
  8460. "name": "andy",
  8461. "email": "andy@popfeng.com"
  8462. }
  8463. ],
  8464. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  8465. "support": {
  8466. "issues": "https://github.com/xhat/payjs/issues",
  8467. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  8468. },
  8469. "funding": [
  8470. {
  8471. "url": "https://payjs.cn/sponsor/dajjxz",
  8472. "type": "custom"
  8473. }
  8474. ],
  8475. "time": "2020-09-11T06:02:42+00:00"
  8476. },
  8477. {
  8478. "name": "zbrettonye/geetest",
  8479. "version": "v1.3.1",
  8480. "source": {
  8481. "type": "git",
  8482. "url": "https://github.com/ZBrettonYe/geetest.git",
  8483. "reference": "2d3594527725d4ef3db3e5438dc7c1156730d001"
  8484. },
  8485. "dist": {
  8486. "type": "zip",
  8487. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/2d3594527725d4ef3db3e5438dc7c1156730d001",
  8488. "reference": "2d3594527725d4ef3db3e5438dc7c1156730d001",
  8489. "shasum": "",
  8490. "mirrors": [
  8491. {
  8492. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8493. "preferred": true
  8494. }
  8495. ]
  8496. },
  8497. "require": {
  8498. "ext-json": "*",
  8499. "illuminate/routing": ">=6",
  8500. "illuminate/support": ">=6",
  8501. "php": ">=7.2"
  8502. },
  8503. "require-dev": {
  8504. "mockery/mockery": "^1.4",
  8505. "phpunit/phpunit": "^9.0"
  8506. },
  8507. "type": "library",
  8508. "extra": {
  8509. "laravel": {
  8510. "providers": [
  8511. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  8512. ],
  8513. "aliases": {
  8514. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  8515. }
  8516. }
  8517. },
  8518. "autoload": {
  8519. "psr-4": {
  8520. "ZBrettonYe\\Geetest\\": "src/"
  8521. }
  8522. },
  8523. "notification-url": "https://packagist.org/downloads/",
  8524. "license": [
  8525. "MIT"
  8526. ],
  8527. "authors": [
  8528. {
  8529. "name": "zbrettonye",
  8530. "email": "monkeyblacktech97@gmail.com"
  8531. }
  8532. ],
  8533. "description": "Geetest Package for Laravel6-10",
  8534. "keywords": [
  8535. "geetest",
  8536. "laravel"
  8537. ],
  8538. "support": {
  8539. "source": "https://github.com/ZBrettonYe/geetest/tree/v1.3.1"
  8540. },
  8541. "time": "2023-05-10T03:51:42+00:00"
  8542. },
  8543. {
  8544. "name": "zbrettonye/hcaptcha",
  8545. "version": "v1.3.0",
  8546. "source": {
  8547. "type": "git",
  8548. "url": "https://github.com/ZBrettonYe/hCaptcha.git",
  8549. "reference": "979b8df0876862b2fb2fe8e93db5a83f138e68ac"
  8550. },
  8551. "dist": {
  8552. "type": "zip",
  8553. "url": "https://api.github.com/repos/ZBrettonYe/hCaptcha/zipball/979b8df0876862b2fb2fe8e93db5a83f138e68ac",
  8554. "reference": "979b8df0876862b2fb2fe8e93db5a83f138e68ac",
  8555. "shasum": "",
  8556. "mirrors": [
  8557. {
  8558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8559. "preferred": true
  8560. }
  8561. ]
  8562. },
  8563. "require": {
  8564. "ext-json": "*",
  8565. "guzzlehttp/guzzle": ">=6.2",
  8566. "illuminate/support": ">=6",
  8567. "php": ">=7.2"
  8568. },
  8569. "require-dev": {
  8570. "phpunit/phpunit": ">=6"
  8571. },
  8572. "type": "library",
  8573. "extra": {
  8574. "laravel": {
  8575. "providers": [
  8576. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  8577. ],
  8578. "aliases": {
  8579. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  8580. }
  8581. }
  8582. },
  8583. "autoload": {
  8584. "psr-4": {
  8585. "ZBrettonYe\\HCaptcha\\": "src/"
  8586. }
  8587. },
  8588. "notification-url": "https://packagist.org/downloads/",
  8589. "license": [
  8590. "MIT"
  8591. ],
  8592. "authors": [
  8593. {
  8594. "name": "zbrettonye",
  8595. "email": "monkeyblacktech97@gmail.com"
  8596. }
  8597. ],
  8598. "description": "hCaptcha For Laravel6~10",
  8599. "keywords": [
  8600. "captcha",
  8601. "hcaptcha",
  8602. "laravel"
  8603. ],
  8604. "support": {
  8605. "source": "https://github.com/ZBrettonYe/hCaptcha/tree/v1.3.0"
  8606. },
  8607. "time": "2023-08-12T15:48:59+00:00"
  8608. },
  8609. {
  8610. "name": "zbrettonye/no-captcha",
  8611. "version": "v1.3.0",
  8612. "source": {
  8613. "type": "git",
  8614. "url": "https://github.com/ZBrettonYe/reCAPTCHA.git",
  8615. "reference": "e580f8f091c6f9f7d0d7ba0c5b5a34a62a35067c"
  8616. },
  8617. "dist": {
  8618. "type": "zip",
  8619. "url": "https://api.github.com/repos/ZBrettonYe/reCAPTCHA/zipball/e580f8f091c6f9f7d0d7ba0c5b5a34a62a35067c",
  8620. "reference": "e580f8f091c6f9f7d0d7ba0c5b5a34a62a35067c",
  8621. "shasum": "",
  8622. "mirrors": [
  8623. {
  8624. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8625. "preferred": true
  8626. }
  8627. ]
  8628. },
  8629. "require": {
  8630. "ext-json": "*",
  8631. "guzzlehttp/guzzle": ">=6.2",
  8632. "illuminate/support": ">=6",
  8633. "php": ">=7.2"
  8634. },
  8635. "require-dev": {
  8636. "phpunit/phpunit": ">=4.8"
  8637. },
  8638. "type": "library",
  8639. "extra": {
  8640. "laravel": {
  8641. "providers": [
  8642. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  8643. ],
  8644. "aliases": {
  8645. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  8646. }
  8647. }
  8648. },
  8649. "autoload": {
  8650. "psr-4": {
  8651. "ZBrettonYe\\NoCaptcha\\": "src/"
  8652. }
  8653. },
  8654. "notification-url": "https://packagist.org/downloads/",
  8655. "license": [
  8656. "MIT"
  8657. ],
  8658. "authors": [
  8659. {
  8660. "name": "zbrettonye",
  8661. "email": "monkeyblacktech97@gmail.com"
  8662. }
  8663. ],
  8664. "description": "No CAPTCHA reCAPTCHA For Laravel6~8",
  8665. "keywords": [
  8666. "captcha",
  8667. "laravel",
  8668. "no-captcha",
  8669. "recaptcha"
  8670. ],
  8671. "support": {
  8672. "source": "https://github.com/ZBrettonYe/reCAPTCHA/tree/v1.3.0"
  8673. },
  8674. "time": "2023-08-12T16:42:12+00:00"
  8675. },
  8676. {
  8677. "name": "zoujingli/ip2region",
  8678. "version": "v1.0.13",
  8679. "source": {
  8680. "type": "git",
  8681. "url": "https://github.com/zoujingli/ip2region.git",
  8682. "reference": "c02c74571ad665745e57db5d04efa165e543fade"
  8683. },
  8684. "dist": {
  8685. "type": "zip",
  8686. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/c02c74571ad665745e57db5d04efa165e543fade",
  8687. "reference": "c02c74571ad665745e57db5d04efa165e543fade",
  8688. "shasum": "",
  8689. "mirrors": [
  8690. {
  8691. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8692. "preferred": true
  8693. }
  8694. ]
  8695. },
  8696. "require": {
  8697. "php": ">=5.3"
  8698. },
  8699. "type": "library",
  8700. "autoload": {
  8701. "classmap": [
  8702. "Ip2Region.php"
  8703. ]
  8704. },
  8705. "notification-url": "https://packagist.org/downloads/",
  8706. "license": [
  8707. "Apache-2.0"
  8708. ],
  8709. "authors": [
  8710. {
  8711. "name": "Anyon",
  8712. "email": "zoujingli@qq.com",
  8713. "homepage": "http://ctolog.com"
  8714. }
  8715. ],
  8716. "description": "Ip2Region for PHP",
  8717. "homepage": "https://github.com/zoujingli/Ip2Region",
  8718. "keywords": [
  8719. "Ip2Region"
  8720. ],
  8721. "support": {
  8722. "issues": "https://github.com/zoujingli/ip2region/issues",
  8723. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.13"
  8724. },
  8725. "time": "2023-03-13T05:18:05+00:00"
  8726. }
  8727. ],
  8728. "packages-dev": [
  8729. {
  8730. "name": "barryvdh/laravel-debugbar",
  8731. "version": "v3.7.0",
  8732. "source": {
  8733. "type": "git",
  8734. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  8735. "reference": "3372ed65e6d2039d663ed19aa699956f9d346271"
  8736. },
  8737. "dist": {
  8738. "type": "zip",
  8739. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/3372ed65e6d2039d663ed19aa699956f9d346271",
  8740. "reference": "3372ed65e6d2039d663ed19aa699956f9d346271",
  8741. "shasum": "",
  8742. "mirrors": [
  8743. {
  8744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8745. "preferred": true
  8746. }
  8747. ]
  8748. },
  8749. "require": {
  8750. "illuminate/routing": "^7|^8|^9",
  8751. "illuminate/session": "^7|^8|^9",
  8752. "illuminate/support": "^7|^8|^9",
  8753. "maximebf/debugbar": "^1.17.2",
  8754. "php": ">=7.2.5",
  8755. "symfony/finder": "^5|^6"
  8756. },
  8757. "require-dev": {
  8758. "mockery/mockery": "^1.3.3",
  8759. "orchestra/testbench-dusk": "^5|^6|^7",
  8760. "phpunit/phpunit": "^8.5|^9.0",
  8761. "squizlabs/php_codesniffer": "^3.5"
  8762. },
  8763. "type": "library",
  8764. "extra": {
  8765. "branch-alias": {
  8766. "dev-master": "3.6-dev"
  8767. },
  8768. "laravel": {
  8769. "providers": [
  8770. "Barryvdh\\Debugbar\\ServiceProvider"
  8771. ],
  8772. "aliases": {
  8773. "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
  8774. }
  8775. }
  8776. },
  8777. "autoload": {
  8778. "files": [
  8779. "src/helpers.php"
  8780. ],
  8781. "psr-4": {
  8782. "Barryvdh\\Debugbar\\": "src/"
  8783. }
  8784. },
  8785. "notification-url": "https://packagist.org/downloads/",
  8786. "license": [
  8787. "MIT"
  8788. ],
  8789. "authors": [
  8790. {
  8791. "name": "Barry vd. Heuvel",
  8792. "email": "barryvdh@gmail.com"
  8793. }
  8794. ],
  8795. "description": "PHP Debugbar integration for Laravel",
  8796. "keywords": [
  8797. "debug",
  8798. "debugbar",
  8799. "laravel",
  8800. "profiler",
  8801. "webprofiler"
  8802. ],
  8803. "support": {
  8804. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8805. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.7.0"
  8806. },
  8807. "funding": [
  8808. {
  8809. "url": "https://fruitcake.nl",
  8810. "type": "custom"
  8811. },
  8812. {
  8813. "url": "https://github.com/barryvdh",
  8814. "type": "github"
  8815. }
  8816. ],
  8817. "time": "2022-07-11T09:26:42+00:00"
  8818. },
  8819. {
  8820. "name": "barryvdh/laravel-ide-helper",
  8821. "version": "v2.8.2",
  8822. "source": {
  8823. "type": "git",
  8824. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  8825. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  8826. },
  8827. "dist": {
  8828. "type": "zip",
  8829. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  8830. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  8831. "shasum": "",
  8832. "mirrors": [
  8833. {
  8834. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8835. "preferred": true
  8836. }
  8837. ]
  8838. },
  8839. "require": {
  8840. "barryvdh/reflection-docblock": "^2.0.6",
  8841. "composer/composer": "^1.6 || ^2",
  8842. "doctrine/dbal": "~2.3",
  8843. "ext-json": "*",
  8844. "illuminate/console": "^6 || ^7 || ^8",
  8845. "illuminate/filesystem": "^6 || ^7 || ^8",
  8846. "illuminate/support": "^6 || ^7 || ^8",
  8847. "php": ">=7.2",
  8848. "phpdocumentor/type-resolver": "^1.1.0"
  8849. },
  8850. "require-dev": {
  8851. "ext-pdo_sqlite": "*",
  8852. "friendsofphp/php-cs-fixer": "^2",
  8853. "illuminate/config": "^6 || ^7 || ^8",
  8854. "illuminate/view": "^6 || ^7 || ^8",
  8855. "mockery/mockery": "^1.3.3",
  8856. "orchestra/testbench": "^4 || ^5 || ^6",
  8857. "phpunit/phpunit": "^8.5 || ^9",
  8858. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  8859. "vimeo/psalm": "^3.12"
  8860. },
  8861. "type": "library",
  8862. "extra": {
  8863. "branch-alias": {
  8864. "dev-master": "2.8-dev"
  8865. },
  8866. "laravel": {
  8867. "providers": [
  8868. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  8869. ]
  8870. }
  8871. },
  8872. "autoload": {
  8873. "psr-4": {
  8874. "Barryvdh\\LaravelIdeHelper\\": "src"
  8875. }
  8876. },
  8877. "notification-url": "https://packagist.org/downloads/",
  8878. "license": [
  8879. "MIT"
  8880. ],
  8881. "authors": [
  8882. {
  8883. "name": "Barry vd. Heuvel",
  8884. "email": "barryvdh@gmail.com"
  8885. }
  8886. ],
  8887. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  8888. "keywords": [
  8889. "autocomplete",
  8890. "codeintel",
  8891. "helper",
  8892. "ide",
  8893. "laravel",
  8894. "netbeans",
  8895. "phpdoc",
  8896. "phpstorm",
  8897. "sublime"
  8898. ],
  8899. "support": {
  8900. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  8901. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.2"
  8902. },
  8903. "funding": [
  8904. {
  8905. "url": "https://github.com/barryvdh",
  8906. "type": "github"
  8907. }
  8908. ],
  8909. "time": "2020-12-06T08:55:05+00:00"
  8910. },
  8911. {
  8912. "name": "barryvdh/reflection-docblock",
  8913. "version": "v2.1.1",
  8914. "source": {
  8915. "type": "git",
  8916. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  8917. "reference": "e6811e927f0ecc37cc4deaa6627033150343e597"
  8918. },
  8919. "dist": {
  8920. "type": "zip",
  8921. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/e6811e927f0ecc37cc4deaa6627033150343e597",
  8922. "reference": "e6811e927f0ecc37cc4deaa6627033150343e597",
  8923. "shasum": "",
  8924. "mirrors": [
  8925. {
  8926. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8927. "preferred": true
  8928. }
  8929. ]
  8930. },
  8931. "require": {
  8932. "php": ">=5.3.3"
  8933. },
  8934. "require-dev": {
  8935. "phpunit/phpunit": "^8.5.14|^9"
  8936. },
  8937. "suggest": {
  8938. "dflydev/markdown": "~1.0",
  8939. "erusev/parsedown": "~1.0"
  8940. },
  8941. "type": "library",
  8942. "extra": {
  8943. "branch-alias": {
  8944. "dev-master": "2.0.x-dev"
  8945. }
  8946. },
  8947. "autoload": {
  8948. "psr-0": {
  8949. "Barryvdh": [
  8950. "src/"
  8951. ]
  8952. }
  8953. },
  8954. "notification-url": "https://packagist.org/downloads/",
  8955. "license": [
  8956. "MIT"
  8957. ],
  8958. "authors": [
  8959. {
  8960. "name": "Mike van Riel",
  8961. "email": "mike.vanriel@naenius.com"
  8962. }
  8963. ],
  8964. "support": {
  8965. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.1.1"
  8966. },
  8967. "time": "2023-06-14T05:06:27+00:00"
  8968. },
  8969. {
  8970. "name": "composer/class-map-generator",
  8971. "version": "1.1.0",
  8972. "source": {
  8973. "type": "git",
  8974. "url": "https://github.com/composer/class-map-generator.git",
  8975. "reference": "953cc4ea32e0c31f2185549c7d216d7921f03da9"
  8976. },
  8977. "dist": {
  8978. "type": "zip",
  8979. "url": "https://api.github.com/repos/composer/class-map-generator/zipball/953cc4ea32e0c31f2185549c7d216d7921f03da9",
  8980. "reference": "953cc4ea32e0c31f2185549c7d216d7921f03da9",
  8981. "shasum": "",
  8982. "mirrors": [
  8983. {
  8984. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8985. "preferred": true
  8986. }
  8987. ]
  8988. },
  8989. "require": {
  8990. "composer/pcre": "^2.1 || ^3.1",
  8991. "php": "^7.2 || ^8.0",
  8992. "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
  8993. },
  8994. "require-dev": {
  8995. "phpstan/phpstan": "^1.6",
  8996. "phpstan/phpstan-deprecation-rules": "^1",
  8997. "phpstan/phpstan-phpunit": "^1",
  8998. "phpstan/phpstan-strict-rules": "^1.1",
  8999. "symfony/filesystem": "^5.4 || ^6",
  9000. "symfony/phpunit-bridge": "^5"
  9001. },
  9002. "type": "library",
  9003. "extra": {
  9004. "branch-alias": {
  9005. "dev-main": "1.x-dev"
  9006. }
  9007. },
  9008. "autoload": {
  9009. "psr-4": {
  9010. "Composer\\ClassMapGenerator\\": "src"
  9011. }
  9012. },
  9013. "notification-url": "https://packagist.org/downloads/",
  9014. "license": [
  9015. "MIT"
  9016. ],
  9017. "authors": [
  9018. {
  9019. "name": "Jordi Boggiano",
  9020. "email": "j.boggiano@seld.be",
  9021. "homepage": "https://seld.be"
  9022. }
  9023. ],
  9024. "description": "Utilities to scan PHP code and generate class maps.",
  9025. "keywords": [
  9026. "classmap"
  9027. ],
  9028. "support": {
  9029. "issues": "https://github.com/composer/class-map-generator/issues",
  9030. "source": "https://github.com/composer/class-map-generator/tree/1.1.0"
  9031. },
  9032. "funding": [
  9033. {
  9034. "url": "https://packagist.com",
  9035. "type": "custom"
  9036. },
  9037. {
  9038. "url": "https://github.com/composer",
  9039. "type": "github"
  9040. },
  9041. {
  9042. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9043. "type": "tidelift"
  9044. }
  9045. ],
  9046. "time": "2023-06-30T13:58:57+00:00"
  9047. },
  9048. {
  9049. "name": "composer/composer",
  9050. "version": "2.7.0",
  9051. "source": {
  9052. "type": "git",
  9053. "url": "https://github.com/composer/composer.git",
  9054. "reference": "96d107e2bfe61bb9eafe55a9d45bd7faed1dd461"
  9055. },
  9056. "dist": {
  9057. "type": "zip",
  9058. "url": "https://api.github.com/repos/composer/composer/zipball/96d107e2bfe61bb9eafe55a9d45bd7faed1dd461",
  9059. "reference": "96d107e2bfe61bb9eafe55a9d45bd7faed1dd461",
  9060. "shasum": "",
  9061. "mirrors": [
  9062. {
  9063. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9064. "preferred": true
  9065. }
  9066. ]
  9067. },
  9068. "require": {
  9069. "composer/ca-bundle": "^1.0",
  9070. "composer/class-map-generator": "^1.0",
  9071. "composer/metadata-minifier": "^1.0",
  9072. "composer/pcre": "^2.1 || ^3.1",
  9073. "composer/semver": "^3.2.5",
  9074. "composer/spdx-licenses": "^1.5.7",
  9075. "composer/xdebug-handler": "^2.0.2 || ^3.0.3",
  9076. "justinrainbow/json-schema": "^5.2.11",
  9077. "php": "^7.2.5 || ^8.0",
  9078. "psr/log": "^1.0 || ^2.0 || ^3.0",
  9079. "react/promise": "^2.8 || ^3",
  9080. "seld/jsonlint": "^1.4",
  9081. "seld/phar-utils": "^1.2",
  9082. "seld/signal-handler": "^2.0",
  9083. "symfony/console": "^5.4.11 || ^6.0.11 || ^7",
  9084. "symfony/filesystem": "^5.4 || ^6.0 || ^7",
  9085. "symfony/finder": "^5.4 || ^6.0 || ^7",
  9086. "symfony/polyfill-php73": "^1.24",
  9087. "symfony/polyfill-php80": "^1.24",
  9088. "symfony/polyfill-php81": "^1.24",
  9089. "symfony/process": "^5.4 || ^6.0 || ^7"
  9090. },
  9091. "require-dev": {
  9092. "phpstan/phpstan": "^1.9.3",
  9093. "phpstan/phpstan-deprecation-rules": "^1",
  9094. "phpstan/phpstan-phpunit": "^1.0",
  9095. "phpstan/phpstan-strict-rules": "^1",
  9096. "phpstan/phpstan-symfony": "^1.2.10",
  9097. "symfony/phpunit-bridge": "^6.4.1 || ^7.0.1"
  9098. },
  9099. "suggest": {
  9100. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  9101. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  9102. "ext-zlib": "Allow gzip compression of HTTP requests"
  9103. },
  9104. "bin": [
  9105. "bin/composer"
  9106. ],
  9107. "type": "library",
  9108. "extra": {
  9109. "branch-alias": {
  9110. "dev-main": "2.7-dev"
  9111. },
  9112. "phpstan": {
  9113. "includes": [
  9114. "phpstan/rules.neon"
  9115. ]
  9116. }
  9117. },
  9118. "autoload": {
  9119. "psr-4": {
  9120. "Composer\\": "src/Composer/"
  9121. }
  9122. },
  9123. "notification-url": "https://packagist.org/downloads/",
  9124. "license": [
  9125. "MIT"
  9126. ],
  9127. "authors": [
  9128. {
  9129. "name": "Nils Adermann",
  9130. "email": "naderman@naderman.de",
  9131. "homepage": "https://www.naderman.de"
  9132. },
  9133. {
  9134. "name": "Jordi Boggiano",
  9135. "email": "j.boggiano@seld.be",
  9136. "homepage": "https://seld.be"
  9137. }
  9138. ],
  9139. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  9140. "homepage": "https://getcomposer.org/",
  9141. "keywords": [
  9142. "autoload",
  9143. "dependency",
  9144. "package"
  9145. ],
  9146. "support": {
  9147. "irc": "ircs://irc.libera.chat:6697/composer",
  9148. "issues": "https://github.com/composer/composer/issues",
  9149. "security": "https://github.com/composer/composer/security/policy",
  9150. "source": "https://github.com/composer/composer/tree/2.7.0"
  9151. },
  9152. "funding": [
  9153. {
  9154. "url": "https://packagist.com",
  9155. "type": "custom"
  9156. },
  9157. {
  9158. "url": "https://github.com/composer",
  9159. "type": "github"
  9160. },
  9161. {
  9162. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9163. "type": "tidelift"
  9164. }
  9165. ],
  9166. "time": "2024-02-08T14:09:19+00:00"
  9167. },
  9168. {
  9169. "name": "composer/metadata-minifier",
  9170. "version": "1.0.0",
  9171. "source": {
  9172. "type": "git",
  9173. "url": "https://github.com/composer/metadata-minifier.git",
  9174. "reference": "c549d23829536f0d0e984aaabbf02af91f443207"
  9175. },
  9176. "dist": {
  9177. "type": "zip",
  9178. "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207",
  9179. "reference": "c549d23829536f0d0e984aaabbf02af91f443207",
  9180. "shasum": "",
  9181. "mirrors": [
  9182. {
  9183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9184. "preferred": true
  9185. }
  9186. ]
  9187. },
  9188. "require": {
  9189. "php": "^5.3.2 || ^7.0 || ^8.0"
  9190. },
  9191. "require-dev": {
  9192. "composer/composer": "^2",
  9193. "phpstan/phpstan": "^0.12.55",
  9194. "symfony/phpunit-bridge": "^4.2 || ^5"
  9195. },
  9196. "type": "library",
  9197. "extra": {
  9198. "branch-alias": {
  9199. "dev-main": "1.x-dev"
  9200. }
  9201. },
  9202. "autoload": {
  9203. "psr-4": {
  9204. "Composer\\MetadataMinifier\\": "src"
  9205. }
  9206. },
  9207. "notification-url": "https://packagist.org/downloads/",
  9208. "license": [
  9209. "MIT"
  9210. ],
  9211. "authors": [
  9212. {
  9213. "name": "Jordi Boggiano",
  9214. "email": "j.boggiano@seld.be",
  9215. "homepage": "http://seld.be"
  9216. }
  9217. ],
  9218. "description": "Small utility library that handles metadata minification and expansion.",
  9219. "keywords": [
  9220. "composer",
  9221. "compression"
  9222. ],
  9223. "support": {
  9224. "issues": "https://github.com/composer/metadata-minifier/issues",
  9225. "source": "https://github.com/composer/metadata-minifier/tree/1.0.0"
  9226. },
  9227. "funding": [
  9228. {
  9229. "url": "https://packagist.com",
  9230. "type": "custom"
  9231. },
  9232. {
  9233. "url": "https://github.com/composer",
  9234. "type": "github"
  9235. },
  9236. {
  9237. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9238. "type": "tidelift"
  9239. }
  9240. ],
  9241. "time": "2021-04-07T13:37:33+00:00"
  9242. },
  9243. {
  9244. "name": "composer/pcre",
  9245. "version": "2.1.1",
  9246. "source": {
  9247. "type": "git",
  9248. "url": "https://github.com/composer/pcre.git",
  9249. "reference": "b439557066cd445732fa57cbc8d905394b4db8a0"
  9250. },
  9251. "dist": {
  9252. "type": "zip",
  9253. "url": "https://api.github.com/repos/composer/pcre/zipball/b439557066cd445732fa57cbc8d905394b4db8a0",
  9254. "reference": "b439557066cd445732fa57cbc8d905394b4db8a0",
  9255. "shasum": "",
  9256. "mirrors": [
  9257. {
  9258. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9259. "preferred": true
  9260. }
  9261. ]
  9262. },
  9263. "require": {
  9264. "php": "^7.2 || ^8.0"
  9265. },
  9266. "require-dev": {
  9267. "phpstan/phpstan": "^1.3",
  9268. "phpstan/phpstan-strict-rules": "^1.1",
  9269. "symfony/phpunit-bridge": "^5"
  9270. },
  9271. "type": "library",
  9272. "extra": {
  9273. "branch-alias": {
  9274. "dev-main": "2.x-dev"
  9275. }
  9276. },
  9277. "autoload": {
  9278. "psr-4": {
  9279. "Composer\\Pcre\\": "src"
  9280. }
  9281. },
  9282. "notification-url": "https://packagist.org/downloads/",
  9283. "license": [
  9284. "MIT"
  9285. ],
  9286. "authors": [
  9287. {
  9288. "name": "Jordi Boggiano",
  9289. "email": "j.boggiano@seld.be",
  9290. "homepage": "http://seld.be"
  9291. }
  9292. ],
  9293. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  9294. "keywords": [
  9295. "PCRE",
  9296. "preg",
  9297. "regex",
  9298. "regular expression"
  9299. ],
  9300. "support": {
  9301. "issues": "https://github.com/composer/pcre/issues",
  9302. "source": "https://github.com/composer/pcre/tree/2.1.1"
  9303. },
  9304. "funding": [
  9305. {
  9306. "url": "https://packagist.com",
  9307. "type": "custom"
  9308. },
  9309. {
  9310. "url": "https://github.com/composer",
  9311. "type": "github"
  9312. },
  9313. {
  9314. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9315. "type": "tidelift"
  9316. }
  9317. ],
  9318. "time": "2023-10-11T07:10:55+00:00"
  9319. },
  9320. {
  9321. "name": "composer/semver",
  9322. "version": "3.4.0",
  9323. "source": {
  9324. "type": "git",
  9325. "url": "https://github.com/composer/semver.git",
  9326. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  9327. },
  9328. "dist": {
  9329. "type": "zip",
  9330. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  9331. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  9332. "shasum": "",
  9333. "mirrors": [
  9334. {
  9335. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9336. "preferred": true
  9337. }
  9338. ]
  9339. },
  9340. "require": {
  9341. "php": "^5.3.2 || ^7.0 || ^8.0"
  9342. },
  9343. "require-dev": {
  9344. "phpstan/phpstan": "^1.4",
  9345. "symfony/phpunit-bridge": "^4.2 || ^5"
  9346. },
  9347. "type": "library",
  9348. "extra": {
  9349. "branch-alias": {
  9350. "dev-main": "3.x-dev"
  9351. }
  9352. },
  9353. "autoload": {
  9354. "psr-4": {
  9355. "Composer\\Semver\\": "src"
  9356. }
  9357. },
  9358. "notification-url": "https://packagist.org/downloads/",
  9359. "license": [
  9360. "MIT"
  9361. ],
  9362. "authors": [
  9363. {
  9364. "name": "Nils Adermann",
  9365. "email": "naderman@naderman.de",
  9366. "homepage": "http://www.naderman.de"
  9367. },
  9368. {
  9369. "name": "Jordi Boggiano",
  9370. "email": "j.boggiano@seld.be",
  9371. "homepage": "http://seld.be"
  9372. },
  9373. {
  9374. "name": "Rob Bast",
  9375. "email": "rob.bast@gmail.com",
  9376. "homepage": "http://robbast.nl"
  9377. }
  9378. ],
  9379. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  9380. "keywords": [
  9381. "semantic",
  9382. "semver",
  9383. "validation",
  9384. "versioning"
  9385. ],
  9386. "support": {
  9387. "irc": "ircs://irc.libera.chat:6697/composer",
  9388. "issues": "https://github.com/composer/semver/issues",
  9389. "source": "https://github.com/composer/semver/tree/3.4.0"
  9390. },
  9391. "funding": [
  9392. {
  9393. "url": "https://packagist.com",
  9394. "type": "custom"
  9395. },
  9396. {
  9397. "url": "https://github.com/composer",
  9398. "type": "github"
  9399. },
  9400. {
  9401. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9402. "type": "tidelift"
  9403. }
  9404. ],
  9405. "time": "2023-08-31T09:50:34+00:00"
  9406. },
  9407. {
  9408. "name": "composer/spdx-licenses",
  9409. "version": "1.5.8",
  9410. "source": {
  9411. "type": "git",
  9412. "url": "https://github.com/composer/spdx-licenses.git",
  9413. "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a"
  9414. },
  9415. "dist": {
  9416. "type": "zip",
  9417. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a",
  9418. "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a",
  9419. "shasum": "",
  9420. "mirrors": [
  9421. {
  9422. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9423. "preferred": true
  9424. }
  9425. ]
  9426. },
  9427. "require": {
  9428. "php": "^5.3.2 || ^7.0 || ^8.0"
  9429. },
  9430. "require-dev": {
  9431. "phpstan/phpstan": "^0.12.55",
  9432. "symfony/phpunit-bridge": "^4.2 || ^5"
  9433. },
  9434. "type": "library",
  9435. "extra": {
  9436. "branch-alias": {
  9437. "dev-main": "1.x-dev"
  9438. }
  9439. },
  9440. "autoload": {
  9441. "psr-4": {
  9442. "Composer\\Spdx\\": "src"
  9443. }
  9444. },
  9445. "notification-url": "https://packagist.org/downloads/",
  9446. "license": [
  9447. "MIT"
  9448. ],
  9449. "authors": [
  9450. {
  9451. "name": "Nils Adermann",
  9452. "email": "naderman@naderman.de",
  9453. "homepage": "http://www.naderman.de"
  9454. },
  9455. {
  9456. "name": "Jordi Boggiano",
  9457. "email": "j.boggiano@seld.be",
  9458. "homepage": "http://seld.be"
  9459. },
  9460. {
  9461. "name": "Rob Bast",
  9462. "email": "rob.bast@gmail.com",
  9463. "homepage": "http://robbast.nl"
  9464. }
  9465. ],
  9466. "description": "SPDX licenses list and validation library.",
  9467. "keywords": [
  9468. "license",
  9469. "spdx",
  9470. "validator"
  9471. ],
  9472. "support": {
  9473. "irc": "ircs://irc.libera.chat:6697/composer",
  9474. "issues": "https://github.com/composer/spdx-licenses/issues",
  9475. "source": "https://github.com/composer/spdx-licenses/tree/1.5.8"
  9476. },
  9477. "funding": [
  9478. {
  9479. "url": "https://packagist.com",
  9480. "type": "custom"
  9481. },
  9482. {
  9483. "url": "https://github.com/composer",
  9484. "type": "github"
  9485. },
  9486. {
  9487. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9488. "type": "tidelift"
  9489. }
  9490. ],
  9491. "time": "2023-11-20T07:44:33+00:00"
  9492. },
  9493. {
  9494. "name": "composer/xdebug-handler",
  9495. "version": "3.0.3",
  9496. "source": {
  9497. "type": "git",
  9498. "url": "https://github.com/composer/xdebug-handler.git",
  9499. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  9500. },
  9501. "dist": {
  9502. "type": "zip",
  9503. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  9504. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  9505. "shasum": "",
  9506. "mirrors": [
  9507. {
  9508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9509. "preferred": true
  9510. }
  9511. ]
  9512. },
  9513. "require": {
  9514. "composer/pcre": "^1 || ^2 || ^3",
  9515. "php": "^7.2.5 || ^8.0",
  9516. "psr/log": "^1 || ^2 || ^3"
  9517. },
  9518. "require-dev": {
  9519. "phpstan/phpstan": "^1.0",
  9520. "phpstan/phpstan-strict-rules": "^1.1",
  9521. "symfony/phpunit-bridge": "^6.0"
  9522. },
  9523. "type": "library",
  9524. "autoload": {
  9525. "psr-4": {
  9526. "Composer\\XdebugHandler\\": "src"
  9527. }
  9528. },
  9529. "notification-url": "https://packagist.org/downloads/",
  9530. "license": [
  9531. "MIT"
  9532. ],
  9533. "authors": [
  9534. {
  9535. "name": "John Stevenson",
  9536. "email": "john-stevenson@blueyonder.co.uk"
  9537. }
  9538. ],
  9539. "description": "Restarts a process without Xdebug.",
  9540. "keywords": [
  9541. "Xdebug",
  9542. "performance"
  9543. ],
  9544. "support": {
  9545. "irc": "irc://irc.freenode.org/composer",
  9546. "issues": "https://github.com/composer/xdebug-handler/issues",
  9547. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  9548. },
  9549. "funding": [
  9550. {
  9551. "url": "https://packagist.com",
  9552. "type": "custom"
  9553. },
  9554. {
  9555. "url": "https://github.com/composer",
  9556. "type": "github"
  9557. },
  9558. {
  9559. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9560. "type": "tidelift"
  9561. }
  9562. ],
  9563. "time": "2022-02-25T21:32:43+00:00"
  9564. },
  9565. {
  9566. "name": "doctrine/instantiator",
  9567. "version": "1.5.0",
  9568. "source": {
  9569. "type": "git",
  9570. "url": "https://github.com/doctrine/instantiator.git",
  9571. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  9572. },
  9573. "dist": {
  9574. "type": "zip",
  9575. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  9576. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  9577. "shasum": "",
  9578. "mirrors": [
  9579. {
  9580. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9581. "preferred": true
  9582. }
  9583. ]
  9584. },
  9585. "require": {
  9586. "php": "^7.1 || ^8.0"
  9587. },
  9588. "require-dev": {
  9589. "doctrine/coding-standard": "^9 || ^11",
  9590. "ext-pdo": "*",
  9591. "ext-phar": "*",
  9592. "phpbench/phpbench": "^0.16 || ^1",
  9593. "phpstan/phpstan": "^1.4",
  9594. "phpstan/phpstan-phpunit": "^1",
  9595. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  9596. "vimeo/psalm": "^4.30 || ^5.4"
  9597. },
  9598. "type": "library",
  9599. "autoload": {
  9600. "psr-4": {
  9601. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  9602. }
  9603. },
  9604. "notification-url": "https://packagist.org/downloads/",
  9605. "license": [
  9606. "MIT"
  9607. ],
  9608. "authors": [
  9609. {
  9610. "name": "Marco Pivetta",
  9611. "email": "ocramius@gmail.com",
  9612. "homepage": "https://ocramius.github.io/"
  9613. }
  9614. ],
  9615. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  9616. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  9617. "keywords": [
  9618. "constructor",
  9619. "instantiate"
  9620. ],
  9621. "support": {
  9622. "issues": "https://github.com/doctrine/instantiator/issues",
  9623. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  9624. },
  9625. "funding": [
  9626. {
  9627. "url": "https://www.doctrine-project.org/sponsorship.html",
  9628. "type": "custom"
  9629. },
  9630. {
  9631. "url": "https://www.patreon.com/phpdoctrine",
  9632. "type": "patreon"
  9633. },
  9634. {
  9635. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  9636. "type": "tidelift"
  9637. }
  9638. ],
  9639. "time": "2022-12-30T00:15:36+00:00"
  9640. },
  9641. {
  9642. "name": "facade/flare-client-php",
  9643. "version": "1.10.0",
  9644. "source": {
  9645. "type": "git",
  9646. "url": "https://github.com/facade/flare-client-php.git",
  9647. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  9648. },
  9649. "dist": {
  9650. "type": "zip",
  9651. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  9652. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  9653. "shasum": "",
  9654. "mirrors": [
  9655. {
  9656. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9657. "preferred": true
  9658. }
  9659. ]
  9660. },
  9661. "require": {
  9662. "facade/ignition-contracts": "~1.0",
  9663. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  9664. "php": "^7.1|^8.0",
  9665. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  9666. "symfony/mime": "^3.4|^4.0|^5.1",
  9667. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  9668. },
  9669. "require-dev": {
  9670. "friendsofphp/php-cs-fixer": "^2.14",
  9671. "phpunit/phpunit": "^7.5",
  9672. "spatie/phpunit-snapshot-assertions": "^2.0"
  9673. },
  9674. "type": "library",
  9675. "extra": {
  9676. "branch-alias": {
  9677. "dev-master": "1.0-dev"
  9678. }
  9679. },
  9680. "autoload": {
  9681. "files": [
  9682. "src/helpers.php"
  9683. ],
  9684. "psr-4": {
  9685. "Facade\\FlareClient\\": "src"
  9686. }
  9687. },
  9688. "notification-url": "https://packagist.org/downloads/",
  9689. "license": [
  9690. "MIT"
  9691. ],
  9692. "description": "Send PHP errors to Flare",
  9693. "homepage": "https://github.com/facade/flare-client-php",
  9694. "keywords": [
  9695. "exception",
  9696. "facade",
  9697. "flare",
  9698. "reporting"
  9699. ],
  9700. "support": {
  9701. "issues": "https://github.com/facade/flare-client-php/issues",
  9702. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  9703. },
  9704. "funding": [
  9705. {
  9706. "url": "https://github.com/spatie",
  9707. "type": "github"
  9708. }
  9709. ],
  9710. "time": "2022-08-09T11:23:57+00:00"
  9711. },
  9712. {
  9713. "name": "facade/ignition",
  9714. "version": "2.17.7",
  9715. "source": {
  9716. "type": "git",
  9717. "url": "https://github.com/facade/ignition.git",
  9718. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  9719. },
  9720. "dist": {
  9721. "type": "zip",
  9722. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  9723. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  9724. "shasum": "",
  9725. "mirrors": [
  9726. {
  9727. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9728. "preferred": true
  9729. }
  9730. ]
  9731. },
  9732. "require": {
  9733. "ext-curl": "*",
  9734. "ext-json": "*",
  9735. "ext-mbstring": "*",
  9736. "facade/flare-client-php": "^1.9.1",
  9737. "facade/ignition-contracts": "^1.0.2",
  9738. "illuminate/support": "^7.0|^8.0",
  9739. "monolog/monolog": "^2.0",
  9740. "php": "^7.2.5|^8.0",
  9741. "symfony/console": "^5.0",
  9742. "symfony/var-dumper": "^5.0"
  9743. },
  9744. "require-dev": {
  9745. "friendsofphp/php-cs-fixer": "^2.14",
  9746. "livewire/livewire": "^2.4",
  9747. "mockery/mockery": "^1.3",
  9748. "orchestra/testbench": "^5.0|^6.0",
  9749. "psalm/plugin-laravel": "^1.2"
  9750. },
  9751. "suggest": {
  9752. "laravel/telescope": "^3.1"
  9753. },
  9754. "type": "library",
  9755. "extra": {
  9756. "branch-alias": {
  9757. "dev-master": "2.x-dev"
  9758. },
  9759. "laravel": {
  9760. "providers": [
  9761. "Facade\\Ignition\\IgnitionServiceProvider"
  9762. ],
  9763. "aliases": {
  9764. "Flare": "Facade\\Ignition\\Facades\\Flare"
  9765. }
  9766. }
  9767. },
  9768. "autoload": {
  9769. "files": [
  9770. "src/helpers.php"
  9771. ],
  9772. "psr-4": {
  9773. "Facade\\Ignition\\": "src"
  9774. }
  9775. },
  9776. "notification-url": "https://packagist.org/downloads/",
  9777. "license": [
  9778. "MIT"
  9779. ],
  9780. "description": "A beautiful error page for Laravel applications.",
  9781. "homepage": "https://github.com/facade/ignition",
  9782. "keywords": [
  9783. "error",
  9784. "flare",
  9785. "laravel",
  9786. "page"
  9787. ],
  9788. "support": {
  9789. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  9790. "forum": "https://twitter.com/flareappio",
  9791. "issues": "https://github.com/facade/ignition/issues",
  9792. "source": "https://github.com/facade/ignition"
  9793. },
  9794. "time": "2023-01-26T12:34:59+00:00"
  9795. },
  9796. {
  9797. "name": "facade/ignition-contracts",
  9798. "version": "1.0.2",
  9799. "source": {
  9800. "type": "git",
  9801. "url": "https://github.com/facade/ignition-contracts.git",
  9802. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  9803. },
  9804. "dist": {
  9805. "type": "zip",
  9806. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  9807. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  9808. "shasum": "",
  9809. "mirrors": [
  9810. {
  9811. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9812. "preferred": true
  9813. }
  9814. ]
  9815. },
  9816. "require": {
  9817. "php": "^7.3|^8.0"
  9818. },
  9819. "require-dev": {
  9820. "friendsofphp/php-cs-fixer": "^v2.15.8",
  9821. "phpunit/phpunit": "^9.3.11",
  9822. "vimeo/psalm": "^3.17.1"
  9823. },
  9824. "type": "library",
  9825. "autoload": {
  9826. "psr-4": {
  9827. "Facade\\IgnitionContracts\\": "src"
  9828. }
  9829. },
  9830. "notification-url": "https://packagist.org/downloads/",
  9831. "license": [
  9832. "MIT"
  9833. ],
  9834. "authors": [
  9835. {
  9836. "name": "Freek Van der Herten",
  9837. "email": "freek@spatie.be",
  9838. "homepage": "https://flareapp.io",
  9839. "role": "Developer"
  9840. }
  9841. ],
  9842. "description": "Solution contracts for Ignition",
  9843. "homepage": "https://github.com/facade/ignition-contracts",
  9844. "keywords": [
  9845. "contracts",
  9846. "flare",
  9847. "ignition"
  9848. ],
  9849. "support": {
  9850. "issues": "https://github.com/facade/ignition-contracts/issues",
  9851. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  9852. },
  9853. "time": "2020-10-16T08:27:54+00:00"
  9854. },
  9855. {
  9856. "name": "fakerphp/faker",
  9857. "version": "v1.20.0",
  9858. "source": {
  9859. "type": "git",
  9860. "url": "https://github.com/FakerPHP/Faker.git",
  9861. "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b"
  9862. },
  9863. "dist": {
  9864. "type": "zip",
  9865. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/37f751c67a5372d4e26353bd9384bc03744ec77b",
  9866. "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b",
  9867. "shasum": "",
  9868. "mirrors": [
  9869. {
  9870. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9871. "preferred": true
  9872. }
  9873. ]
  9874. },
  9875. "require": {
  9876. "php": "^7.1 || ^8.0",
  9877. "psr/container": "^1.0 || ^2.0",
  9878. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9879. },
  9880. "conflict": {
  9881. "fzaninotto/faker": "*"
  9882. },
  9883. "require-dev": {
  9884. "bamarni/composer-bin-plugin": "^1.4.1",
  9885. "doctrine/persistence": "^1.3 || ^2.0",
  9886. "ext-intl": "*",
  9887. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  9888. },
  9889. "suggest": {
  9890. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9891. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9892. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9893. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9894. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9895. },
  9896. "type": "library",
  9897. "extra": {
  9898. "branch-alias": {
  9899. "dev-main": "v1.20-dev"
  9900. }
  9901. },
  9902. "autoload": {
  9903. "psr-4": {
  9904. "Faker\\": "src/Faker/"
  9905. }
  9906. },
  9907. "notification-url": "https://packagist.org/downloads/",
  9908. "license": [
  9909. "MIT"
  9910. ],
  9911. "authors": [
  9912. {
  9913. "name": "François Zaninotto"
  9914. }
  9915. ],
  9916. "description": "Faker is a PHP library that generates fake data for you.",
  9917. "keywords": [
  9918. "data",
  9919. "faker",
  9920. "fixtures"
  9921. ],
  9922. "support": {
  9923. "issues": "https://github.com/FakerPHP/Faker/issues",
  9924. "source": "https://github.com/FakerPHP/Faker/tree/v1.20.0"
  9925. },
  9926. "time": "2022-07-20T13:12:54+00:00"
  9927. },
  9928. {
  9929. "name": "filp/whoops",
  9930. "version": "2.15.4",
  9931. "source": {
  9932. "type": "git",
  9933. "url": "https://github.com/filp/whoops.git",
  9934. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  9935. },
  9936. "dist": {
  9937. "type": "zip",
  9938. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9939. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9940. "shasum": "",
  9941. "mirrors": [
  9942. {
  9943. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9944. "preferred": true
  9945. }
  9946. ]
  9947. },
  9948. "require": {
  9949. "php": "^5.5.9 || ^7.0 || ^8.0",
  9950. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9951. },
  9952. "require-dev": {
  9953. "mockery/mockery": "^0.9 || ^1.0",
  9954. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  9955. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  9956. },
  9957. "suggest": {
  9958. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9959. "whoops/soap": "Formats errors as SOAP responses"
  9960. },
  9961. "type": "library",
  9962. "extra": {
  9963. "branch-alias": {
  9964. "dev-master": "2.7-dev"
  9965. }
  9966. },
  9967. "autoload": {
  9968. "psr-4": {
  9969. "Whoops\\": "src/Whoops/"
  9970. }
  9971. },
  9972. "notification-url": "https://packagist.org/downloads/",
  9973. "license": [
  9974. "MIT"
  9975. ],
  9976. "authors": [
  9977. {
  9978. "name": "Filipe Dobreira",
  9979. "homepage": "https://github.com/filp",
  9980. "role": "Developer"
  9981. }
  9982. ],
  9983. "description": "php error handling for cool kids",
  9984. "homepage": "https://filp.github.io/whoops/",
  9985. "keywords": [
  9986. "error",
  9987. "exception",
  9988. "handling",
  9989. "library",
  9990. "throwable",
  9991. "whoops"
  9992. ],
  9993. "support": {
  9994. "issues": "https://github.com/filp/whoops/issues",
  9995. "source": "https://github.com/filp/whoops/tree/2.15.4"
  9996. },
  9997. "funding": [
  9998. {
  9999. "url": "https://github.com/denis-sokolov",
  10000. "type": "github"
  10001. }
  10002. ],
  10003. "time": "2023-11-03T12:00:00+00:00"
  10004. },
  10005. {
  10006. "name": "hamcrest/hamcrest-php",
  10007. "version": "v2.0.1",
  10008. "source": {
  10009. "type": "git",
  10010. "url": "https://github.com/hamcrest/hamcrest-php.git",
  10011. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  10012. },
  10013. "dist": {
  10014. "type": "zip",
  10015. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10016. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10017. "shasum": "",
  10018. "mirrors": [
  10019. {
  10020. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10021. "preferred": true
  10022. }
  10023. ]
  10024. },
  10025. "require": {
  10026. "php": "^5.3|^7.0|^8.0"
  10027. },
  10028. "replace": {
  10029. "cordoval/hamcrest-php": "*",
  10030. "davedevelopment/hamcrest-php": "*",
  10031. "kodova/hamcrest-php": "*"
  10032. },
  10033. "require-dev": {
  10034. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  10035. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  10036. },
  10037. "type": "library",
  10038. "extra": {
  10039. "branch-alias": {
  10040. "dev-master": "2.1-dev"
  10041. }
  10042. },
  10043. "autoload": {
  10044. "classmap": [
  10045. "hamcrest"
  10046. ]
  10047. },
  10048. "notification-url": "https://packagist.org/downloads/",
  10049. "license": [
  10050. "BSD-3-Clause"
  10051. ],
  10052. "description": "This is the PHP port of Hamcrest Matchers",
  10053. "keywords": [
  10054. "test"
  10055. ],
  10056. "support": {
  10057. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  10058. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  10059. },
  10060. "time": "2020-07-09T08:09:16+00:00"
  10061. },
  10062. {
  10063. "name": "justinrainbow/json-schema",
  10064. "version": "v5.2.13",
  10065. "source": {
  10066. "type": "git",
  10067. "url": "https://github.com/justinrainbow/json-schema.git",
  10068. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793"
  10069. },
  10070. "dist": {
  10071. "type": "zip",
  10072. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793",
  10073. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793",
  10074. "shasum": "",
  10075. "mirrors": [
  10076. {
  10077. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10078. "preferred": true
  10079. }
  10080. ]
  10081. },
  10082. "require": {
  10083. "php": ">=5.3.3"
  10084. },
  10085. "require-dev": {
  10086. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  10087. "json-schema/json-schema-test-suite": "1.2.0",
  10088. "phpunit/phpunit": "^4.8.35"
  10089. },
  10090. "bin": [
  10091. "bin/validate-json"
  10092. ],
  10093. "type": "library",
  10094. "extra": {
  10095. "branch-alias": {
  10096. "dev-master": "5.0.x-dev"
  10097. }
  10098. },
  10099. "autoload": {
  10100. "psr-4": {
  10101. "JsonSchema\\": "src/JsonSchema/"
  10102. }
  10103. },
  10104. "notification-url": "https://packagist.org/downloads/",
  10105. "license": [
  10106. "MIT"
  10107. ],
  10108. "authors": [
  10109. {
  10110. "name": "Bruno Prieto Reis",
  10111. "email": "bruno.p.reis@gmail.com"
  10112. },
  10113. {
  10114. "name": "Justin Rainbow",
  10115. "email": "justin.rainbow@gmail.com"
  10116. },
  10117. {
  10118. "name": "Igor Wiedler",
  10119. "email": "igor@wiedler.ch"
  10120. },
  10121. {
  10122. "name": "Robert Schönthal",
  10123. "email": "seroscho@googlemail.com"
  10124. }
  10125. ],
  10126. "description": "A library to validate a json schema.",
  10127. "homepage": "https://github.com/justinrainbow/json-schema",
  10128. "keywords": [
  10129. "json",
  10130. "schema"
  10131. ],
  10132. "support": {
  10133. "issues": "https://github.com/justinrainbow/json-schema/issues",
  10134. "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13"
  10135. },
  10136. "time": "2023-09-26T02:20:38+00:00"
  10137. },
  10138. {
  10139. "name": "kitloong/laravel-migrations-generator",
  10140. "version": "v6.11.0",
  10141. "source": {
  10142. "type": "git",
  10143. "url": "https://github.com/kitloong/laravel-migrations-generator.git",
  10144. "reference": "220b5f17fcb16610a3e9757d68c197319c0f7444"
  10145. },
  10146. "dist": {
  10147. "type": "zip",
  10148. "url": "https://api.github.com/repos/kitloong/laravel-migrations-generator/zipball/220b5f17fcb16610a3e9757d68c197319c0f7444",
  10149. "reference": "220b5f17fcb16610a3e9757d68c197319c0f7444",
  10150. "shasum": "",
  10151. "mirrors": [
  10152. {
  10153. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10154. "preferred": true
  10155. }
  10156. ]
  10157. },
  10158. "require": {
  10159. "doctrine/dbal": "^2.4|^3.0",
  10160. "ext-pdo": "*",
  10161. "illuminate/support": "^5.6|^6.0|^7.0|^8.0|^9.0|^10.0",
  10162. "myclabs/php-enum": "^1.6|^1.7|^1.8",
  10163. "php": ">=7.1.3"
  10164. },
  10165. "require-dev": {
  10166. "barryvdh/laravel-ide-helper": "^2.5",
  10167. "friendsofphp/php-cs-fixer": "^2.19.0|^3.1",
  10168. "mockery/mockery": "^1.0",
  10169. "nunomaduro/larastan": "^0.4|^0.5|^0.6|^0.7|^1.0|^2.0",
  10170. "orchestra/testbench": "^3.6|^4.0|^5.0|^6.0|^7.0|^8.0",
  10171. "phpmd/phpmd": "^2.10",
  10172. "slevomat/coding-standard": "^6.0|^7.0|^8.5",
  10173. "squizlabs/php_codesniffer": "^3.5"
  10174. },
  10175. "type": "library",
  10176. "extra": {
  10177. "laravel": {
  10178. "providers": [
  10179. "KitLoong\\MigrationsGenerator\\MigrationsGeneratorServiceProvider"
  10180. ]
  10181. }
  10182. },
  10183. "autoload": {
  10184. "psr-4": {
  10185. "KitLoong\\MigrationsGenerator\\": "src"
  10186. }
  10187. },
  10188. "notification-url": "https://packagist.org/downloads/",
  10189. "license": [
  10190. "MIT"
  10191. ],
  10192. "authors": [
  10193. {
  10194. "name": "Kit Loong",
  10195. "email": "kitloong1008@gmail.com"
  10196. }
  10197. ],
  10198. "description": "Generates Laravel Migrations from an existing database",
  10199. "keywords": [
  10200. "artisan",
  10201. "generator",
  10202. "laravel",
  10203. "lumen",
  10204. "migration",
  10205. "migrations"
  10206. ],
  10207. "support": {
  10208. "issues": "https://github.com/kitloong/laravel-migrations-generator/issues",
  10209. "source": "https://github.com/kitloong/laravel-migrations-generator/tree/v6.11.0"
  10210. },
  10211. "funding": [
  10212. {
  10213. "url": "https://www.buymeacoffee.com/kitloong",
  10214. "type": "custom"
  10215. }
  10216. ],
  10217. "time": "2023-10-10T13:55:26+00:00"
  10218. },
  10219. {
  10220. "name": "laravel/telescope",
  10221. "version": "v3.5.1",
  10222. "source": {
  10223. "type": "git",
  10224. "url": "https://github.com/laravel/telescope.git",
  10225. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  10226. },
  10227. "dist": {
  10228. "type": "zip",
  10229. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  10230. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  10231. "shasum": "",
  10232. "mirrors": [
  10233. {
  10234. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10235. "preferred": true
  10236. }
  10237. ]
  10238. },
  10239. "require": {
  10240. "ext-json": "*",
  10241. "laravel/framework": "^6.0|^7.0",
  10242. "moontoast/math": "^1.1",
  10243. "php": "^7.2",
  10244. "symfony/var-dumper": "^4.4|^5.0"
  10245. },
  10246. "require-dev": {
  10247. "ext-gd": "*",
  10248. "orchestra/testbench": "^4.0|^5.0"
  10249. },
  10250. "type": "library",
  10251. "extra": {
  10252. "branch-alias": {
  10253. "dev-master": "3.x-dev"
  10254. },
  10255. "laravel": {
  10256. "providers": [
  10257. "Laravel\\Telescope\\TelescopeServiceProvider"
  10258. ]
  10259. }
  10260. },
  10261. "autoload": {
  10262. "psr-4": {
  10263. "Laravel\\Telescope\\": "src/"
  10264. }
  10265. },
  10266. "notification-url": "https://packagist.org/downloads/",
  10267. "license": [
  10268. "MIT"
  10269. ],
  10270. "authors": [
  10271. {
  10272. "name": "Taylor Otwell",
  10273. "email": "taylor@laravel.com"
  10274. },
  10275. {
  10276. "name": "Mohamed Said",
  10277. "email": "mohamed@laravel.com"
  10278. }
  10279. ],
  10280. "description": "An elegant debug assistant for the Laravel framework.",
  10281. "keywords": [
  10282. "debugging",
  10283. "laravel",
  10284. "monitoring"
  10285. ],
  10286. "support": {
  10287. "issues": "https://github.com/laravel/telescope/issues",
  10288. "source": "https://github.com/laravel/telescope/tree/v3.5.1"
  10289. },
  10290. "time": "2020-07-28T19:12:33+00:00"
  10291. },
  10292. {
  10293. "name": "maximebf/debugbar",
  10294. "version": "v1.20.1",
  10295. "source": {
  10296. "type": "git",
  10297. "url": "https://github.com/maximebf/php-debugbar.git",
  10298. "reference": "06ebf922ccedfa4cc43015825697ee8c1fb80f7e"
  10299. },
  10300. "dist": {
  10301. "type": "zip",
  10302. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/06ebf922ccedfa4cc43015825697ee8c1fb80f7e",
  10303. "reference": "06ebf922ccedfa4cc43015825697ee8c1fb80f7e",
  10304. "shasum": "",
  10305. "mirrors": [
  10306. {
  10307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10308. "preferred": true
  10309. }
  10310. ]
  10311. },
  10312. "require": {
  10313. "php": "^7.1|^8",
  10314. "psr/log": "^1|^2|^3",
  10315. "symfony/var-dumper": "^4|^5|^6|^7"
  10316. },
  10317. "require-dev": {
  10318. "phpunit/phpunit": ">=7.5.20 <10.0",
  10319. "twig/twig": "^1.38|^2.7|^3.0"
  10320. },
  10321. "suggest": {
  10322. "kriswallsmith/assetic": "The best way to manage assets",
  10323. "monolog/monolog": "Log using Monolog",
  10324. "predis/predis": "Redis storage"
  10325. },
  10326. "type": "library",
  10327. "extra": {
  10328. "branch-alias": {
  10329. "dev-master": "1.20-dev"
  10330. }
  10331. },
  10332. "autoload": {
  10333. "psr-4": {
  10334. "DebugBar\\": "src/DebugBar/"
  10335. }
  10336. },
  10337. "notification-url": "https://packagist.org/downloads/",
  10338. "license": [
  10339. "MIT"
  10340. ],
  10341. "authors": [
  10342. {
  10343. "name": "Maxime Bouroumeau-Fuseau",
  10344. "email": "maxime.bouroumeau@gmail.com",
  10345. "homepage": "http://maximebf.com"
  10346. },
  10347. {
  10348. "name": "Barry vd. Heuvel",
  10349. "email": "barryvdh@gmail.com"
  10350. }
  10351. ],
  10352. "description": "Debug bar in the browser for php application",
  10353. "homepage": "https://github.com/maximebf/php-debugbar",
  10354. "keywords": [
  10355. "debug",
  10356. "debugbar"
  10357. ],
  10358. "support": {
  10359. "issues": "https://github.com/maximebf/php-debugbar/issues",
  10360. "source": "https://github.com/maximebf/php-debugbar/tree/v1.20.1"
  10361. },
  10362. "time": "2024-02-13T19:03:14+00:00"
  10363. },
  10364. {
  10365. "name": "mockery/mockery",
  10366. "version": "1.6.6",
  10367. "source": {
  10368. "type": "git",
  10369. "url": "https://github.com/mockery/mockery.git",
  10370. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e"
  10371. },
  10372. "dist": {
  10373. "type": "zip",
  10374. "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e",
  10375. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e",
  10376. "shasum": "",
  10377. "mirrors": [
  10378. {
  10379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10380. "preferred": true
  10381. }
  10382. ]
  10383. },
  10384. "require": {
  10385. "hamcrest/hamcrest-php": "^2.0.1",
  10386. "lib-pcre": ">=7.0",
  10387. "php": ">=7.3"
  10388. },
  10389. "conflict": {
  10390. "phpunit/phpunit": "<8.0"
  10391. },
  10392. "require-dev": {
  10393. "phpunit/phpunit": "^8.5 || ^9.6.10",
  10394. "psalm/plugin-phpunit": "^0.18.4",
  10395. "symplify/easy-coding-standard": "^11.5.0",
  10396. "vimeo/psalm": "^4.30"
  10397. },
  10398. "type": "library",
  10399. "autoload": {
  10400. "files": [
  10401. "library/helpers.php",
  10402. "library/Mockery.php"
  10403. ],
  10404. "psr-4": {
  10405. "Mockery\\": "library/Mockery"
  10406. }
  10407. },
  10408. "notification-url": "https://packagist.org/downloads/",
  10409. "license": [
  10410. "BSD-3-Clause"
  10411. ],
  10412. "authors": [
  10413. {
  10414. "name": "Pádraic Brady",
  10415. "email": "padraic.brady@gmail.com",
  10416. "homepage": "https://github.com/padraic",
  10417. "role": "Author"
  10418. },
  10419. {
  10420. "name": "Dave Marshall",
  10421. "email": "dave.marshall@atstsolutions.co.uk",
  10422. "homepage": "https://davedevelopment.co.uk",
  10423. "role": "Developer"
  10424. },
  10425. {
  10426. "name": "Nathanael Esayeas",
  10427. "email": "nathanael.esayeas@protonmail.com",
  10428. "homepage": "https://github.com/ghostwriter",
  10429. "role": "Lead Developer"
  10430. }
  10431. ],
  10432. "description": "Mockery is a simple yet flexible PHP mock object framework",
  10433. "homepage": "https://github.com/mockery/mockery",
  10434. "keywords": [
  10435. "BDD",
  10436. "TDD",
  10437. "library",
  10438. "mock",
  10439. "mock objects",
  10440. "mockery",
  10441. "stub",
  10442. "test",
  10443. "test double",
  10444. "testing"
  10445. ],
  10446. "support": {
  10447. "docs": "https://docs.mockery.io/",
  10448. "issues": "https://github.com/mockery/mockery/issues",
  10449. "rss": "https://github.com/mockery/mockery/releases.atom",
  10450. "security": "https://github.com/mockery/mockery/security/advisories",
  10451. "source": "https://github.com/mockery/mockery"
  10452. },
  10453. "time": "2023-08-09T00:03:52+00:00"
  10454. },
  10455. {
  10456. "name": "moontoast/math",
  10457. "version": "1.2.1",
  10458. "source": {
  10459. "type": "git",
  10460. "url": "https://github.com/ramsey/moontoast-math.git",
  10461. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  10462. },
  10463. "dist": {
  10464. "type": "zip",
  10465. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  10466. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  10467. "shasum": "",
  10468. "mirrors": [
  10469. {
  10470. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10471. "preferred": true
  10472. }
  10473. ]
  10474. },
  10475. "require": {
  10476. "php": ">=5.3.3",
  10477. "phpseclib/bcmath_compat": ">=1.0.3"
  10478. },
  10479. "require-dev": {
  10480. "jakub-onderka/php-parallel-lint": "^0.9.0",
  10481. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  10482. "satooshi/php-coveralls": "^0.6.1",
  10483. "squizlabs/php_codesniffer": "^2.3"
  10484. },
  10485. "type": "library",
  10486. "autoload": {
  10487. "psr-4": {
  10488. "Moontoast\\Math\\": "src/Moontoast/Math",
  10489. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  10490. }
  10491. },
  10492. "notification-url": "https://packagist.org/downloads/",
  10493. "license": [
  10494. "Apache-2.0"
  10495. ],
  10496. "authors": [
  10497. {
  10498. "name": "Ben Ramsey",
  10499. "email": "ben@benramsey.com",
  10500. "homepage": "https://benramsey.com"
  10501. }
  10502. ],
  10503. "description": "A mathematics library, providing functionality for large numbers",
  10504. "homepage": "https://github.com/ramsey/moontoast-math",
  10505. "keywords": [
  10506. "bcmath",
  10507. "math"
  10508. ],
  10509. "support": {
  10510. "issues": "https://github.com/ramsey/moontoast-math/issues",
  10511. "source": "https://github.com/ramsey/moontoast-math"
  10512. },
  10513. "abandoned": "brick/math",
  10514. "time": "2020-01-05T04:49:34+00:00"
  10515. },
  10516. {
  10517. "name": "myclabs/deep-copy",
  10518. "version": "1.11.1",
  10519. "source": {
  10520. "type": "git",
  10521. "url": "https://github.com/myclabs/DeepCopy.git",
  10522. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  10523. },
  10524. "dist": {
  10525. "type": "zip",
  10526. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  10527. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  10528. "shasum": "",
  10529. "mirrors": [
  10530. {
  10531. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10532. "preferred": true
  10533. }
  10534. ]
  10535. },
  10536. "require": {
  10537. "php": "^7.1 || ^8.0"
  10538. },
  10539. "conflict": {
  10540. "doctrine/collections": "<1.6.8",
  10541. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  10542. },
  10543. "require-dev": {
  10544. "doctrine/collections": "^1.6.8",
  10545. "doctrine/common": "^2.13.3 || ^3.2.2",
  10546. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10547. },
  10548. "type": "library",
  10549. "autoload": {
  10550. "files": [
  10551. "src/DeepCopy/deep_copy.php"
  10552. ],
  10553. "psr-4": {
  10554. "DeepCopy\\": "src/DeepCopy/"
  10555. }
  10556. },
  10557. "notification-url": "https://packagist.org/downloads/",
  10558. "license": [
  10559. "MIT"
  10560. ],
  10561. "description": "Create deep copies (clones) of your objects",
  10562. "keywords": [
  10563. "clone",
  10564. "copy",
  10565. "duplicate",
  10566. "object",
  10567. "object graph"
  10568. ],
  10569. "support": {
  10570. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10571. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  10572. },
  10573. "funding": [
  10574. {
  10575. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10576. "type": "tidelift"
  10577. }
  10578. ],
  10579. "time": "2023-03-08T13:26:56+00:00"
  10580. },
  10581. {
  10582. "name": "nunomaduro/collision",
  10583. "version": "v4.3.0",
  10584. "source": {
  10585. "type": "git",
  10586. "url": "https://github.com/nunomaduro/collision.git",
  10587. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  10588. },
  10589. "dist": {
  10590. "type": "zip",
  10591. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  10592. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  10593. "shasum": "",
  10594. "mirrors": [
  10595. {
  10596. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10597. "preferred": true
  10598. }
  10599. ]
  10600. },
  10601. "require": {
  10602. "facade/ignition-contracts": "^1.0",
  10603. "filp/whoops": "^2.4",
  10604. "php": "^7.2.5 || ^8.0",
  10605. "symfony/console": "^5.0"
  10606. },
  10607. "require-dev": {
  10608. "facade/ignition": "^2.0",
  10609. "fideloper/proxy": "^4.2",
  10610. "friendsofphp/php-cs-fixer": "^2.16",
  10611. "fruitcake/laravel-cors": "^1.0",
  10612. "laravel/framework": "^7.0",
  10613. "laravel/tinker": "^2.0",
  10614. "nunomaduro/larastan": "^0.6",
  10615. "orchestra/testbench": "^5.0",
  10616. "phpstan/phpstan": "^0.12.3",
  10617. "phpunit/phpunit": "^8.5.1 || ^9.0"
  10618. },
  10619. "type": "library",
  10620. "extra": {
  10621. "laravel": {
  10622. "providers": [
  10623. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10624. ]
  10625. }
  10626. },
  10627. "autoload": {
  10628. "psr-4": {
  10629. "NunoMaduro\\Collision\\": "src/"
  10630. }
  10631. },
  10632. "notification-url": "https://packagist.org/downloads/",
  10633. "license": [
  10634. "MIT"
  10635. ],
  10636. "authors": [
  10637. {
  10638. "name": "Nuno Maduro",
  10639. "email": "enunomaduro@gmail.com"
  10640. }
  10641. ],
  10642. "description": "Cli error handling for console/command-line PHP applications.",
  10643. "keywords": [
  10644. "artisan",
  10645. "cli",
  10646. "command-line",
  10647. "console",
  10648. "error",
  10649. "handling",
  10650. "laravel",
  10651. "laravel-zero",
  10652. "php",
  10653. "symfony"
  10654. ],
  10655. "support": {
  10656. "issues": "https://github.com/nunomaduro/collision/issues",
  10657. "source": "https://github.com/nunomaduro/collision"
  10658. },
  10659. "funding": [
  10660. {
  10661. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10662. "type": "custom"
  10663. },
  10664. {
  10665. "url": "https://github.com/nunomaduro",
  10666. "type": "github"
  10667. },
  10668. {
  10669. "url": "https://www.patreon.com/nunomaduro",
  10670. "type": "patreon"
  10671. }
  10672. ],
  10673. "time": "2020-10-29T15:12:23+00:00"
  10674. },
  10675. {
  10676. "name": "paragonie/random_compat",
  10677. "version": "v9.99.100",
  10678. "source": {
  10679. "type": "git",
  10680. "url": "https://github.com/paragonie/random_compat.git",
  10681. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  10682. },
  10683. "dist": {
  10684. "type": "zip",
  10685. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  10686. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  10687. "shasum": "",
  10688. "mirrors": [
  10689. {
  10690. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10691. "preferred": true
  10692. }
  10693. ]
  10694. },
  10695. "require": {
  10696. "php": ">= 7"
  10697. },
  10698. "require-dev": {
  10699. "phpunit/phpunit": "4.*|5.*",
  10700. "vimeo/psalm": "^1"
  10701. },
  10702. "suggest": {
  10703. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  10704. },
  10705. "type": "library",
  10706. "notification-url": "https://packagist.org/downloads/",
  10707. "license": [
  10708. "MIT"
  10709. ],
  10710. "authors": [
  10711. {
  10712. "name": "Paragon Initiative Enterprises",
  10713. "email": "security@paragonie.com",
  10714. "homepage": "https://paragonie.com"
  10715. }
  10716. ],
  10717. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  10718. "keywords": [
  10719. "csprng",
  10720. "polyfill",
  10721. "pseudorandom",
  10722. "random"
  10723. ],
  10724. "support": {
  10725. "email": "info@paragonie.com",
  10726. "issues": "https://github.com/paragonie/random_compat/issues",
  10727. "source": "https://github.com/paragonie/random_compat"
  10728. },
  10729. "time": "2020-10-15T08:29:30+00:00"
  10730. },
  10731. {
  10732. "name": "phar-io/manifest",
  10733. "version": "2.0.3",
  10734. "source": {
  10735. "type": "git",
  10736. "url": "https://github.com/phar-io/manifest.git",
  10737. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  10738. },
  10739. "dist": {
  10740. "type": "zip",
  10741. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  10742. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  10743. "shasum": "",
  10744. "mirrors": [
  10745. {
  10746. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10747. "preferred": true
  10748. }
  10749. ]
  10750. },
  10751. "require": {
  10752. "ext-dom": "*",
  10753. "ext-phar": "*",
  10754. "ext-xmlwriter": "*",
  10755. "phar-io/version": "^3.0.1",
  10756. "php": "^7.2 || ^8.0"
  10757. },
  10758. "type": "library",
  10759. "extra": {
  10760. "branch-alias": {
  10761. "dev-master": "2.0.x-dev"
  10762. }
  10763. },
  10764. "autoload": {
  10765. "classmap": [
  10766. "src/"
  10767. ]
  10768. },
  10769. "notification-url": "https://packagist.org/downloads/",
  10770. "license": [
  10771. "BSD-3-Clause"
  10772. ],
  10773. "authors": [
  10774. {
  10775. "name": "Arne Blankerts",
  10776. "email": "arne@blankerts.de",
  10777. "role": "Developer"
  10778. },
  10779. {
  10780. "name": "Sebastian Heuer",
  10781. "email": "sebastian@phpeople.de",
  10782. "role": "Developer"
  10783. },
  10784. {
  10785. "name": "Sebastian Bergmann",
  10786. "email": "sebastian@phpunit.de",
  10787. "role": "Developer"
  10788. }
  10789. ],
  10790. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10791. "support": {
  10792. "issues": "https://github.com/phar-io/manifest/issues",
  10793. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  10794. },
  10795. "time": "2021-07-20T11:28:43+00:00"
  10796. },
  10797. {
  10798. "name": "phar-io/version",
  10799. "version": "3.2.1",
  10800. "source": {
  10801. "type": "git",
  10802. "url": "https://github.com/phar-io/version.git",
  10803. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10804. },
  10805. "dist": {
  10806. "type": "zip",
  10807. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10808. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10809. "shasum": "",
  10810. "mirrors": [
  10811. {
  10812. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10813. "preferred": true
  10814. }
  10815. ]
  10816. },
  10817. "require": {
  10818. "php": "^7.2 || ^8.0"
  10819. },
  10820. "type": "library",
  10821. "autoload": {
  10822. "classmap": [
  10823. "src/"
  10824. ]
  10825. },
  10826. "notification-url": "https://packagist.org/downloads/",
  10827. "license": [
  10828. "BSD-3-Clause"
  10829. ],
  10830. "authors": [
  10831. {
  10832. "name": "Arne Blankerts",
  10833. "email": "arne@blankerts.de",
  10834. "role": "Developer"
  10835. },
  10836. {
  10837. "name": "Sebastian Heuer",
  10838. "email": "sebastian@phpeople.de",
  10839. "role": "Developer"
  10840. },
  10841. {
  10842. "name": "Sebastian Bergmann",
  10843. "email": "sebastian@phpunit.de",
  10844. "role": "Developer"
  10845. }
  10846. ],
  10847. "description": "Library for handling version information and constraints",
  10848. "support": {
  10849. "issues": "https://github.com/phar-io/version/issues",
  10850. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10851. },
  10852. "time": "2022-02-21T01:04:05+00:00"
  10853. },
  10854. {
  10855. "name": "phpdocumentor/reflection-common",
  10856. "version": "2.2.0",
  10857. "source": {
  10858. "type": "git",
  10859. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  10860. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  10861. },
  10862. "dist": {
  10863. "type": "zip",
  10864. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10865. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10866. "shasum": "",
  10867. "mirrors": [
  10868. {
  10869. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10870. "preferred": true
  10871. }
  10872. ]
  10873. },
  10874. "require": {
  10875. "php": "^7.2 || ^8.0"
  10876. },
  10877. "type": "library",
  10878. "extra": {
  10879. "branch-alias": {
  10880. "dev-2.x": "2.x-dev"
  10881. }
  10882. },
  10883. "autoload": {
  10884. "psr-4": {
  10885. "phpDocumentor\\Reflection\\": "src/"
  10886. }
  10887. },
  10888. "notification-url": "https://packagist.org/downloads/",
  10889. "license": [
  10890. "MIT"
  10891. ],
  10892. "authors": [
  10893. {
  10894. "name": "Jaap van Otterdijk",
  10895. "email": "opensource@ijaap.nl"
  10896. }
  10897. ],
  10898. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  10899. "homepage": "http://www.phpdoc.org",
  10900. "keywords": [
  10901. "FQSEN",
  10902. "phpDocumentor",
  10903. "phpdoc",
  10904. "reflection",
  10905. "static analysis"
  10906. ],
  10907. "support": {
  10908. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  10909. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  10910. },
  10911. "time": "2020-06-27T09:03:43+00:00"
  10912. },
  10913. {
  10914. "name": "phpdocumentor/type-resolver",
  10915. "version": "1.8.2",
  10916. "source": {
  10917. "type": "git",
  10918. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  10919. "reference": "153ae662783729388a584b4361f2545e4d841e3c"
  10920. },
  10921. "dist": {
  10922. "type": "zip",
  10923. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
  10924. "reference": "153ae662783729388a584b4361f2545e4d841e3c",
  10925. "shasum": "",
  10926. "mirrors": [
  10927. {
  10928. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10929. "preferred": true
  10930. }
  10931. ]
  10932. },
  10933. "require": {
  10934. "doctrine/deprecations": "^1.0",
  10935. "php": "^7.3 || ^8.0",
  10936. "phpdocumentor/reflection-common": "^2.0",
  10937. "phpstan/phpdoc-parser": "^1.13"
  10938. },
  10939. "require-dev": {
  10940. "ext-tokenizer": "*",
  10941. "phpbench/phpbench": "^1.2",
  10942. "phpstan/extension-installer": "^1.1",
  10943. "phpstan/phpstan": "^1.8",
  10944. "phpstan/phpstan-phpunit": "^1.1",
  10945. "phpunit/phpunit": "^9.5",
  10946. "rector/rector": "^0.13.9",
  10947. "vimeo/psalm": "^4.25"
  10948. },
  10949. "type": "library",
  10950. "extra": {
  10951. "branch-alias": {
  10952. "dev-1.x": "1.x-dev"
  10953. }
  10954. },
  10955. "autoload": {
  10956. "psr-4": {
  10957. "phpDocumentor\\Reflection\\": "src"
  10958. }
  10959. },
  10960. "notification-url": "https://packagist.org/downloads/",
  10961. "license": [
  10962. "MIT"
  10963. ],
  10964. "authors": [
  10965. {
  10966. "name": "Mike van Riel",
  10967. "email": "me@mikevanriel.com"
  10968. }
  10969. ],
  10970. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  10971. "support": {
  10972. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  10973. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
  10974. },
  10975. "time": "2024-02-23T11:10:43+00:00"
  10976. },
  10977. {
  10978. "name": "phpseclib/bcmath_compat",
  10979. "version": "2.0.1",
  10980. "source": {
  10981. "type": "git",
  10982. "url": "https://github.com/phpseclib/bcmath_compat.git",
  10983. "reference": "2ffea8bfe1702b4535a7b3c2649c4301968e9a3c"
  10984. },
  10985. "dist": {
  10986. "type": "zip",
  10987. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/2ffea8bfe1702b4535a7b3c2649c4301968e9a3c",
  10988. "reference": "2ffea8bfe1702b4535a7b3c2649c4301968e9a3c",
  10989. "shasum": "",
  10990. "mirrors": [
  10991. {
  10992. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10993. "preferred": true
  10994. }
  10995. ]
  10996. },
  10997. "require": {
  10998. "phpseclib/phpseclib": "^3.0"
  10999. },
  11000. "provide": {
  11001. "ext-bcmath": "8.1.0"
  11002. },
  11003. "require-dev": {
  11004. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  11005. "squizlabs/php_codesniffer": "^3.0"
  11006. },
  11007. "suggest": {
  11008. "ext-gmp": "Will enable faster math operations"
  11009. },
  11010. "type": "library",
  11011. "autoload": {
  11012. "files": [
  11013. "lib/bcmath.php"
  11014. ],
  11015. "psr-4": {
  11016. "bcmath_compat\\": "src"
  11017. }
  11018. },
  11019. "notification-url": "https://packagist.org/downloads/",
  11020. "license": [
  11021. "MIT"
  11022. ],
  11023. "authors": [
  11024. {
  11025. "name": "Jim Wigginton",
  11026. "email": "terrafrost@php.net",
  11027. "homepage": "http://phpseclib.sourceforge.net"
  11028. }
  11029. ],
  11030. "description": "PHP 5.x-8.x polyfill for bcmath extension",
  11031. "keywords": [
  11032. "BigInteger",
  11033. "bcmath",
  11034. "bigdecimal",
  11035. "math",
  11036. "polyfill"
  11037. ],
  11038. "support": {
  11039. "email": "terrafrost@php.net",
  11040. "issues": "https://github.com/phpseclib/bcmath_compat/issues",
  11041. "source": "https://github.com/phpseclib/bcmath_compat"
  11042. },
  11043. "time": "2021-12-16T02:35:52+00:00"
  11044. },
  11045. {
  11046. "name": "phpseclib/phpseclib",
  11047. "version": "3.0.36",
  11048. "source": {
  11049. "type": "git",
  11050. "url": "https://github.com/phpseclib/phpseclib.git",
  11051. "reference": "c2fb5136162d4be18fdd4da9980696f3aee96d7b"
  11052. },
  11053. "dist": {
  11054. "type": "zip",
  11055. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/c2fb5136162d4be18fdd4da9980696f3aee96d7b",
  11056. "reference": "c2fb5136162d4be18fdd4da9980696f3aee96d7b",
  11057. "shasum": "",
  11058. "mirrors": [
  11059. {
  11060. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11061. "preferred": true
  11062. }
  11063. ]
  11064. },
  11065. "require": {
  11066. "paragonie/constant_time_encoding": "^1|^2",
  11067. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  11068. "php": ">=5.6.1"
  11069. },
  11070. "require-dev": {
  11071. "phpunit/phpunit": "*"
  11072. },
  11073. "suggest": {
  11074. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  11075. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  11076. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  11077. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  11078. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  11079. },
  11080. "type": "library",
  11081. "autoload": {
  11082. "files": [
  11083. "phpseclib/bootstrap.php"
  11084. ],
  11085. "psr-4": {
  11086. "phpseclib3\\": "phpseclib/"
  11087. }
  11088. },
  11089. "notification-url": "https://packagist.org/downloads/",
  11090. "license": [
  11091. "MIT"
  11092. ],
  11093. "authors": [
  11094. {
  11095. "name": "Jim Wigginton",
  11096. "email": "terrafrost@php.net",
  11097. "role": "Lead Developer"
  11098. },
  11099. {
  11100. "name": "Patrick Monnerat",
  11101. "email": "pm@datasphere.ch",
  11102. "role": "Developer"
  11103. },
  11104. {
  11105. "name": "Andreas Fischer",
  11106. "email": "bantu@phpbb.com",
  11107. "role": "Developer"
  11108. },
  11109. {
  11110. "name": "Hans-Jürgen Petrich",
  11111. "email": "petrich@tronic-media.com",
  11112. "role": "Developer"
  11113. },
  11114. {
  11115. "name": "Graham Campbell",
  11116. "email": "graham@alt-three.com",
  11117. "role": "Developer"
  11118. }
  11119. ],
  11120. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  11121. "homepage": "http://phpseclib.sourceforge.net",
  11122. "keywords": [
  11123. "BigInteger",
  11124. "aes",
  11125. "asn.1",
  11126. "asn1",
  11127. "blowfish",
  11128. "crypto",
  11129. "cryptography",
  11130. "encryption",
  11131. "rsa",
  11132. "security",
  11133. "sftp",
  11134. "signature",
  11135. "signing",
  11136. "ssh",
  11137. "twofish",
  11138. "x.509",
  11139. "x509"
  11140. ],
  11141. "support": {
  11142. "issues": "https://github.com/phpseclib/phpseclib/issues",
  11143. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.36"
  11144. },
  11145. "funding": [
  11146. {
  11147. "url": "https://github.com/terrafrost",
  11148. "type": "github"
  11149. },
  11150. {
  11151. "url": "https://www.patreon.com/phpseclib",
  11152. "type": "patreon"
  11153. },
  11154. {
  11155. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  11156. "type": "tidelift"
  11157. }
  11158. ],
  11159. "time": "2024-02-26T05:13:14+00:00"
  11160. },
  11161. {
  11162. "name": "phpstan/phpdoc-parser",
  11163. "version": "1.25.0",
  11164. "source": {
  11165. "type": "git",
  11166. "url": "https://github.com/phpstan/phpdoc-parser.git",
  11167. "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240"
  11168. },
  11169. "dist": {
  11170. "type": "zip",
  11171. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/bd84b629c8de41aa2ae82c067c955e06f1b00240",
  11172. "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240",
  11173. "shasum": "",
  11174. "mirrors": [
  11175. {
  11176. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11177. "preferred": true
  11178. }
  11179. ]
  11180. },
  11181. "require": {
  11182. "php": "^7.2 || ^8.0"
  11183. },
  11184. "require-dev": {
  11185. "doctrine/annotations": "^2.0",
  11186. "nikic/php-parser": "^4.15",
  11187. "php-parallel-lint/php-parallel-lint": "^1.2",
  11188. "phpstan/extension-installer": "^1.0",
  11189. "phpstan/phpstan": "^1.5",
  11190. "phpstan/phpstan-phpunit": "^1.1",
  11191. "phpstan/phpstan-strict-rules": "^1.0",
  11192. "phpunit/phpunit": "^9.5",
  11193. "symfony/process": "^5.2"
  11194. },
  11195. "type": "library",
  11196. "autoload": {
  11197. "psr-4": {
  11198. "PHPStan\\PhpDocParser\\": [
  11199. "src/"
  11200. ]
  11201. }
  11202. },
  11203. "notification-url": "https://packagist.org/downloads/",
  11204. "license": [
  11205. "MIT"
  11206. ],
  11207. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  11208. "support": {
  11209. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  11210. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.25.0"
  11211. },
  11212. "time": "2024-01-04T17:06:16+00:00"
  11213. },
  11214. {
  11215. "name": "phpunit/php-code-coverage",
  11216. "version": "9.2.30",
  11217. "source": {
  11218. "type": "git",
  11219. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11220. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  11221. },
  11222. "dist": {
  11223. "type": "zip",
  11224. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  11225. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  11226. "shasum": "",
  11227. "mirrors": [
  11228. {
  11229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11230. "preferred": true
  11231. }
  11232. ]
  11233. },
  11234. "require": {
  11235. "ext-dom": "*",
  11236. "ext-libxml": "*",
  11237. "ext-xmlwriter": "*",
  11238. "nikic/php-parser": "^4.18 || ^5.0",
  11239. "php": ">=7.3",
  11240. "phpunit/php-file-iterator": "^3.0.3",
  11241. "phpunit/php-text-template": "^2.0.2",
  11242. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  11243. "sebastian/complexity": "^2.0",
  11244. "sebastian/environment": "^5.1.2",
  11245. "sebastian/lines-of-code": "^1.0.3",
  11246. "sebastian/version": "^3.0.1",
  11247. "theseer/tokenizer": "^1.2.0"
  11248. },
  11249. "require-dev": {
  11250. "phpunit/phpunit": "^9.3"
  11251. },
  11252. "suggest": {
  11253. "ext-pcov": "PHP extension that provides line coverage",
  11254. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  11255. },
  11256. "type": "library",
  11257. "extra": {
  11258. "branch-alias": {
  11259. "dev-master": "9.2-dev"
  11260. }
  11261. },
  11262. "autoload": {
  11263. "classmap": [
  11264. "src/"
  11265. ]
  11266. },
  11267. "notification-url": "https://packagist.org/downloads/",
  11268. "license": [
  11269. "BSD-3-Clause"
  11270. ],
  11271. "authors": [
  11272. {
  11273. "name": "Sebastian Bergmann",
  11274. "email": "sebastian@phpunit.de",
  11275. "role": "lead"
  11276. }
  11277. ],
  11278. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11279. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11280. "keywords": [
  11281. "coverage",
  11282. "testing",
  11283. "xunit"
  11284. ],
  11285. "support": {
  11286. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11287. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  11288. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  11289. },
  11290. "funding": [
  11291. {
  11292. "url": "https://github.com/sebastianbergmann",
  11293. "type": "github"
  11294. }
  11295. ],
  11296. "time": "2023-12-22T06:47:57+00:00"
  11297. },
  11298. {
  11299. "name": "phpunit/php-file-iterator",
  11300. "version": "3.0.6",
  11301. "source": {
  11302. "type": "git",
  11303. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11304. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  11305. },
  11306. "dist": {
  11307. "type": "zip",
  11308. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11309. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11310. "shasum": "",
  11311. "mirrors": [
  11312. {
  11313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11314. "preferred": true
  11315. }
  11316. ]
  11317. },
  11318. "require": {
  11319. "php": ">=7.3"
  11320. },
  11321. "require-dev": {
  11322. "phpunit/phpunit": "^9.3"
  11323. },
  11324. "type": "library",
  11325. "extra": {
  11326. "branch-alias": {
  11327. "dev-master": "3.0-dev"
  11328. }
  11329. },
  11330. "autoload": {
  11331. "classmap": [
  11332. "src/"
  11333. ]
  11334. },
  11335. "notification-url": "https://packagist.org/downloads/",
  11336. "license": [
  11337. "BSD-3-Clause"
  11338. ],
  11339. "authors": [
  11340. {
  11341. "name": "Sebastian Bergmann",
  11342. "email": "sebastian@phpunit.de",
  11343. "role": "lead"
  11344. }
  11345. ],
  11346. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11347. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11348. "keywords": [
  11349. "filesystem",
  11350. "iterator"
  11351. ],
  11352. "support": {
  11353. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11354. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  11355. },
  11356. "funding": [
  11357. {
  11358. "url": "https://github.com/sebastianbergmann",
  11359. "type": "github"
  11360. }
  11361. ],
  11362. "time": "2021-12-02T12:48:52+00:00"
  11363. },
  11364. {
  11365. "name": "phpunit/php-invoker",
  11366. "version": "3.1.1",
  11367. "source": {
  11368. "type": "git",
  11369. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11370. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  11371. },
  11372. "dist": {
  11373. "type": "zip",
  11374. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11375. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11376. "shasum": "",
  11377. "mirrors": [
  11378. {
  11379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11380. "preferred": true
  11381. }
  11382. ]
  11383. },
  11384. "require": {
  11385. "php": ">=7.3"
  11386. },
  11387. "require-dev": {
  11388. "ext-pcntl": "*",
  11389. "phpunit/phpunit": "^9.3"
  11390. },
  11391. "suggest": {
  11392. "ext-pcntl": "*"
  11393. },
  11394. "type": "library",
  11395. "extra": {
  11396. "branch-alias": {
  11397. "dev-master": "3.1-dev"
  11398. }
  11399. },
  11400. "autoload": {
  11401. "classmap": [
  11402. "src/"
  11403. ]
  11404. },
  11405. "notification-url": "https://packagist.org/downloads/",
  11406. "license": [
  11407. "BSD-3-Clause"
  11408. ],
  11409. "authors": [
  11410. {
  11411. "name": "Sebastian Bergmann",
  11412. "email": "sebastian@phpunit.de",
  11413. "role": "lead"
  11414. }
  11415. ],
  11416. "description": "Invoke callables with a timeout",
  11417. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11418. "keywords": [
  11419. "process"
  11420. ],
  11421. "support": {
  11422. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11423. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  11424. },
  11425. "funding": [
  11426. {
  11427. "url": "https://github.com/sebastianbergmann",
  11428. "type": "github"
  11429. }
  11430. ],
  11431. "time": "2020-09-28T05:58:55+00:00"
  11432. },
  11433. {
  11434. "name": "phpunit/php-text-template",
  11435. "version": "2.0.4",
  11436. "source": {
  11437. "type": "git",
  11438. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11439. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  11440. },
  11441. "dist": {
  11442. "type": "zip",
  11443. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11444. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11445. "shasum": "",
  11446. "mirrors": [
  11447. {
  11448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11449. "preferred": true
  11450. }
  11451. ]
  11452. },
  11453. "require": {
  11454. "php": ">=7.3"
  11455. },
  11456. "require-dev": {
  11457. "phpunit/phpunit": "^9.3"
  11458. },
  11459. "type": "library",
  11460. "extra": {
  11461. "branch-alias": {
  11462. "dev-master": "2.0-dev"
  11463. }
  11464. },
  11465. "autoload": {
  11466. "classmap": [
  11467. "src/"
  11468. ]
  11469. },
  11470. "notification-url": "https://packagist.org/downloads/",
  11471. "license": [
  11472. "BSD-3-Clause"
  11473. ],
  11474. "authors": [
  11475. {
  11476. "name": "Sebastian Bergmann",
  11477. "email": "sebastian@phpunit.de",
  11478. "role": "lead"
  11479. }
  11480. ],
  11481. "description": "Simple template engine.",
  11482. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11483. "keywords": [
  11484. "template"
  11485. ],
  11486. "support": {
  11487. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11488. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  11489. },
  11490. "funding": [
  11491. {
  11492. "url": "https://github.com/sebastianbergmann",
  11493. "type": "github"
  11494. }
  11495. ],
  11496. "time": "2020-10-26T05:33:50+00:00"
  11497. },
  11498. {
  11499. "name": "phpunit/php-timer",
  11500. "version": "5.0.3",
  11501. "source": {
  11502. "type": "git",
  11503. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11504. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  11505. },
  11506. "dist": {
  11507. "type": "zip",
  11508. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11509. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11510. "shasum": "",
  11511. "mirrors": [
  11512. {
  11513. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11514. "preferred": true
  11515. }
  11516. ]
  11517. },
  11518. "require": {
  11519. "php": ">=7.3"
  11520. },
  11521. "require-dev": {
  11522. "phpunit/phpunit": "^9.3"
  11523. },
  11524. "type": "library",
  11525. "extra": {
  11526. "branch-alias": {
  11527. "dev-master": "5.0-dev"
  11528. }
  11529. },
  11530. "autoload": {
  11531. "classmap": [
  11532. "src/"
  11533. ]
  11534. },
  11535. "notification-url": "https://packagist.org/downloads/",
  11536. "license": [
  11537. "BSD-3-Clause"
  11538. ],
  11539. "authors": [
  11540. {
  11541. "name": "Sebastian Bergmann",
  11542. "email": "sebastian@phpunit.de",
  11543. "role": "lead"
  11544. }
  11545. ],
  11546. "description": "Utility class for timing",
  11547. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11548. "keywords": [
  11549. "timer"
  11550. ],
  11551. "support": {
  11552. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11553. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  11554. },
  11555. "funding": [
  11556. {
  11557. "url": "https://github.com/sebastianbergmann",
  11558. "type": "github"
  11559. }
  11560. ],
  11561. "time": "2020-10-26T13:16:10+00:00"
  11562. },
  11563. {
  11564. "name": "phpunit/phpunit",
  11565. "version": "9.6.17",
  11566. "source": {
  11567. "type": "git",
  11568. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11569. "reference": "1a156980d78a6666721b7e8e8502fe210b587fcd"
  11570. },
  11571. "dist": {
  11572. "type": "zip",
  11573. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/1a156980d78a6666721b7e8e8502fe210b587fcd",
  11574. "reference": "1a156980d78a6666721b7e8e8502fe210b587fcd",
  11575. "shasum": "",
  11576. "mirrors": [
  11577. {
  11578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11579. "preferred": true
  11580. }
  11581. ]
  11582. },
  11583. "require": {
  11584. "doctrine/instantiator": "^1.3.1 || ^2",
  11585. "ext-dom": "*",
  11586. "ext-json": "*",
  11587. "ext-libxml": "*",
  11588. "ext-mbstring": "*",
  11589. "ext-xml": "*",
  11590. "ext-xmlwriter": "*",
  11591. "myclabs/deep-copy": "^1.10.1",
  11592. "phar-io/manifest": "^2.0.3",
  11593. "phar-io/version": "^3.0.2",
  11594. "php": ">=7.3",
  11595. "phpunit/php-code-coverage": "^9.2.28",
  11596. "phpunit/php-file-iterator": "^3.0.5",
  11597. "phpunit/php-invoker": "^3.1.1",
  11598. "phpunit/php-text-template": "^2.0.3",
  11599. "phpunit/php-timer": "^5.0.2",
  11600. "sebastian/cli-parser": "^1.0.1",
  11601. "sebastian/code-unit": "^1.0.6",
  11602. "sebastian/comparator": "^4.0.8",
  11603. "sebastian/diff": "^4.0.3",
  11604. "sebastian/environment": "^5.1.3",
  11605. "sebastian/exporter": "^4.0.5",
  11606. "sebastian/global-state": "^5.0.1",
  11607. "sebastian/object-enumerator": "^4.0.3",
  11608. "sebastian/resource-operations": "^3.0.3",
  11609. "sebastian/type": "^3.2",
  11610. "sebastian/version": "^3.0.2"
  11611. },
  11612. "suggest": {
  11613. "ext-soap": "To be able to generate mocks based on WSDL files",
  11614. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  11615. },
  11616. "bin": [
  11617. "phpunit"
  11618. ],
  11619. "type": "library",
  11620. "extra": {
  11621. "branch-alias": {
  11622. "dev-master": "9.6-dev"
  11623. }
  11624. },
  11625. "autoload": {
  11626. "files": [
  11627. "src/Framework/Assert/Functions.php"
  11628. ],
  11629. "classmap": [
  11630. "src/"
  11631. ]
  11632. },
  11633. "notification-url": "https://packagist.org/downloads/",
  11634. "license": [
  11635. "BSD-3-Clause"
  11636. ],
  11637. "authors": [
  11638. {
  11639. "name": "Sebastian Bergmann",
  11640. "email": "sebastian@phpunit.de",
  11641. "role": "lead"
  11642. }
  11643. ],
  11644. "description": "The PHP Unit Testing framework.",
  11645. "homepage": "https://phpunit.de/",
  11646. "keywords": [
  11647. "phpunit",
  11648. "testing",
  11649. "xunit"
  11650. ],
  11651. "support": {
  11652. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11653. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  11654. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.17"
  11655. },
  11656. "funding": [
  11657. {
  11658. "url": "https://phpunit.de/sponsors.html",
  11659. "type": "custom"
  11660. },
  11661. {
  11662. "url": "https://github.com/sebastianbergmann",
  11663. "type": "github"
  11664. },
  11665. {
  11666. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  11667. "type": "tidelift"
  11668. }
  11669. ],
  11670. "time": "2024-02-23T13:14:51+00:00"
  11671. },
  11672. {
  11673. "name": "react/promise",
  11674. "version": "v3.0.0",
  11675. "source": {
  11676. "type": "git",
  11677. "url": "https://github.com/reactphp/promise.git",
  11678. "reference": "c86753c76fd3be465d93b308f18d189f01a22be4"
  11679. },
  11680. "dist": {
  11681. "type": "zip",
  11682. "url": "https://api.github.com/repos/reactphp/promise/zipball/c86753c76fd3be465d93b308f18d189f01a22be4",
  11683. "reference": "c86753c76fd3be465d93b308f18d189f01a22be4",
  11684. "shasum": "",
  11685. "mirrors": [
  11686. {
  11687. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11688. "preferred": true
  11689. }
  11690. ]
  11691. },
  11692. "require": {
  11693. "php": ">=7.1.0"
  11694. },
  11695. "require-dev": {
  11696. "phpstan/phpstan": "1.10.20 || 1.4.10",
  11697. "phpunit/phpunit": "^9.5 || ^7.5"
  11698. },
  11699. "type": "library",
  11700. "autoload": {
  11701. "files": [
  11702. "src/functions_include.php"
  11703. ],
  11704. "psr-4": {
  11705. "React\\Promise\\": "src/"
  11706. }
  11707. },
  11708. "notification-url": "https://packagist.org/downloads/",
  11709. "license": [
  11710. "MIT"
  11711. ],
  11712. "authors": [
  11713. {
  11714. "name": "Jan Sorgalla",
  11715. "email": "jsorgalla@gmail.com",
  11716. "homepage": "https://sorgalla.com/"
  11717. },
  11718. {
  11719. "name": "Christian Lück",
  11720. "email": "christian@clue.engineering",
  11721. "homepage": "https://clue.engineering/"
  11722. },
  11723. {
  11724. "name": "Cees-Jan Kiewiet",
  11725. "email": "reactphp@ceesjankiewiet.nl",
  11726. "homepage": "https://wyrihaximus.net/"
  11727. },
  11728. {
  11729. "name": "Chris Boden",
  11730. "email": "cboden@gmail.com",
  11731. "homepage": "https://cboden.dev/"
  11732. }
  11733. ],
  11734. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  11735. "keywords": [
  11736. "promise",
  11737. "promises"
  11738. ],
  11739. "support": {
  11740. "issues": "https://github.com/reactphp/promise/issues",
  11741. "source": "https://github.com/reactphp/promise/tree/v3.0.0"
  11742. },
  11743. "funding": [
  11744. {
  11745. "url": "https://opencollective.com/reactphp",
  11746. "type": "open_collective"
  11747. }
  11748. ],
  11749. "time": "2023-07-11T16:12:49+00:00"
  11750. },
  11751. {
  11752. "name": "sebastian/cli-parser",
  11753. "version": "1.0.1",
  11754. "source": {
  11755. "type": "git",
  11756. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11757. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  11758. },
  11759. "dist": {
  11760. "type": "zip",
  11761. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11762. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11763. "shasum": "",
  11764. "mirrors": [
  11765. {
  11766. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11767. "preferred": true
  11768. }
  11769. ]
  11770. },
  11771. "require": {
  11772. "php": ">=7.3"
  11773. },
  11774. "require-dev": {
  11775. "phpunit/phpunit": "^9.3"
  11776. },
  11777. "type": "library",
  11778. "extra": {
  11779. "branch-alias": {
  11780. "dev-master": "1.0-dev"
  11781. }
  11782. },
  11783. "autoload": {
  11784. "classmap": [
  11785. "src/"
  11786. ]
  11787. },
  11788. "notification-url": "https://packagist.org/downloads/",
  11789. "license": [
  11790. "BSD-3-Clause"
  11791. ],
  11792. "authors": [
  11793. {
  11794. "name": "Sebastian Bergmann",
  11795. "email": "sebastian@phpunit.de",
  11796. "role": "lead"
  11797. }
  11798. ],
  11799. "description": "Library for parsing CLI options",
  11800. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11801. "support": {
  11802. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11803. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  11804. },
  11805. "funding": [
  11806. {
  11807. "url": "https://github.com/sebastianbergmann",
  11808. "type": "github"
  11809. }
  11810. ],
  11811. "time": "2020-09-28T06:08:49+00:00"
  11812. },
  11813. {
  11814. "name": "sebastian/code-unit",
  11815. "version": "1.0.8",
  11816. "source": {
  11817. "type": "git",
  11818. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11819. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  11820. },
  11821. "dist": {
  11822. "type": "zip",
  11823. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  11824. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  11825. "shasum": "",
  11826. "mirrors": [
  11827. {
  11828. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11829. "preferred": true
  11830. }
  11831. ]
  11832. },
  11833. "require": {
  11834. "php": ">=7.3"
  11835. },
  11836. "require-dev": {
  11837. "phpunit/phpunit": "^9.3"
  11838. },
  11839. "type": "library",
  11840. "extra": {
  11841. "branch-alias": {
  11842. "dev-master": "1.0-dev"
  11843. }
  11844. },
  11845. "autoload": {
  11846. "classmap": [
  11847. "src/"
  11848. ]
  11849. },
  11850. "notification-url": "https://packagist.org/downloads/",
  11851. "license": [
  11852. "BSD-3-Clause"
  11853. ],
  11854. "authors": [
  11855. {
  11856. "name": "Sebastian Bergmann",
  11857. "email": "sebastian@phpunit.de",
  11858. "role": "lead"
  11859. }
  11860. ],
  11861. "description": "Collection of value objects that represent the PHP code units",
  11862. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11863. "support": {
  11864. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11865. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  11866. },
  11867. "funding": [
  11868. {
  11869. "url": "https://github.com/sebastianbergmann",
  11870. "type": "github"
  11871. }
  11872. ],
  11873. "time": "2020-10-26T13:08:54+00:00"
  11874. },
  11875. {
  11876. "name": "sebastian/code-unit-reverse-lookup",
  11877. "version": "2.0.3",
  11878. "source": {
  11879. "type": "git",
  11880. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11881. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  11882. },
  11883. "dist": {
  11884. "type": "zip",
  11885. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  11886. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  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. "type": "library",
  11902. "extra": {
  11903. "branch-alias": {
  11904. "dev-master": "2.0-dev"
  11905. }
  11906. },
  11907. "autoload": {
  11908. "classmap": [
  11909. "src/"
  11910. ]
  11911. },
  11912. "notification-url": "https://packagist.org/downloads/",
  11913. "license": [
  11914. "BSD-3-Clause"
  11915. ],
  11916. "authors": [
  11917. {
  11918. "name": "Sebastian Bergmann",
  11919. "email": "sebastian@phpunit.de"
  11920. }
  11921. ],
  11922. "description": "Looks up which function or method a line of code belongs to",
  11923. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11924. "support": {
  11925. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11926. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  11927. },
  11928. "funding": [
  11929. {
  11930. "url": "https://github.com/sebastianbergmann",
  11931. "type": "github"
  11932. }
  11933. ],
  11934. "time": "2020-09-28T05:30:19+00:00"
  11935. },
  11936. {
  11937. "name": "sebastian/comparator",
  11938. "version": "4.0.8",
  11939. "source": {
  11940. "type": "git",
  11941. "url": "https://github.com/sebastianbergmann/comparator.git",
  11942. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  11943. },
  11944. "dist": {
  11945. "type": "zip",
  11946. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  11947. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  11948. "shasum": "",
  11949. "mirrors": [
  11950. {
  11951. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11952. "preferred": true
  11953. }
  11954. ]
  11955. },
  11956. "require": {
  11957. "php": ">=7.3",
  11958. "sebastian/diff": "^4.0",
  11959. "sebastian/exporter": "^4.0"
  11960. },
  11961. "require-dev": {
  11962. "phpunit/phpunit": "^9.3"
  11963. },
  11964. "type": "library",
  11965. "extra": {
  11966. "branch-alias": {
  11967. "dev-master": "4.0-dev"
  11968. }
  11969. },
  11970. "autoload": {
  11971. "classmap": [
  11972. "src/"
  11973. ]
  11974. },
  11975. "notification-url": "https://packagist.org/downloads/",
  11976. "license": [
  11977. "BSD-3-Clause"
  11978. ],
  11979. "authors": [
  11980. {
  11981. "name": "Sebastian Bergmann",
  11982. "email": "sebastian@phpunit.de"
  11983. },
  11984. {
  11985. "name": "Jeff Welch",
  11986. "email": "whatthejeff@gmail.com"
  11987. },
  11988. {
  11989. "name": "Volker Dusch",
  11990. "email": "github@wallbash.com"
  11991. },
  11992. {
  11993. "name": "Bernhard Schussek",
  11994. "email": "bschussek@2bepublished.at"
  11995. }
  11996. ],
  11997. "description": "Provides the functionality to compare PHP values for equality",
  11998. "homepage": "https://github.com/sebastianbergmann/comparator",
  11999. "keywords": [
  12000. "comparator",
  12001. "compare",
  12002. "equality"
  12003. ],
  12004. "support": {
  12005. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  12006. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  12007. },
  12008. "funding": [
  12009. {
  12010. "url": "https://github.com/sebastianbergmann",
  12011. "type": "github"
  12012. }
  12013. ],
  12014. "time": "2022-09-14T12:41:17+00:00"
  12015. },
  12016. {
  12017. "name": "sebastian/complexity",
  12018. "version": "2.0.3",
  12019. "source": {
  12020. "type": "git",
  12021. "url": "https://github.com/sebastianbergmann/complexity.git",
  12022. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  12023. },
  12024. "dist": {
  12025. "type": "zip",
  12026. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  12027. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  12028. "shasum": "",
  12029. "mirrors": [
  12030. {
  12031. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12032. "preferred": true
  12033. }
  12034. ]
  12035. },
  12036. "require": {
  12037. "nikic/php-parser": "^4.18 || ^5.0",
  12038. "php": ">=7.3"
  12039. },
  12040. "require-dev": {
  12041. "phpunit/phpunit": "^9.3"
  12042. },
  12043. "type": "library",
  12044. "extra": {
  12045. "branch-alias": {
  12046. "dev-master": "2.0-dev"
  12047. }
  12048. },
  12049. "autoload": {
  12050. "classmap": [
  12051. "src/"
  12052. ]
  12053. },
  12054. "notification-url": "https://packagist.org/downloads/",
  12055. "license": [
  12056. "BSD-3-Clause"
  12057. ],
  12058. "authors": [
  12059. {
  12060. "name": "Sebastian Bergmann",
  12061. "email": "sebastian@phpunit.de",
  12062. "role": "lead"
  12063. }
  12064. ],
  12065. "description": "Library for calculating the complexity of PHP code units",
  12066. "homepage": "https://github.com/sebastianbergmann/complexity",
  12067. "support": {
  12068. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  12069. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  12070. },
  12071. "funding": [
  12072. {
  12073. "url": "https://github.com/sebastianbergmann",
  12074. "type": "github"
  12075. }
  12076. ],
  12077. "time": "2023-12-22T06:19:30+00:00"
  12078. },
  12079. {
  12080. "name": "sebastian/diff",
  12081. "version": "4.0.5",
  12082. "source": {
  12083. "type": "git",
  12084. "url": "https://github.com/sebastianbergmann/diff.git",
  12085. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  12086. },
  12087. "dist": {
  12088. "type": "zip",
  12089. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  12090. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  12091. "shasum": "",
  12092. "mirrors": [
  12093. {
  12094. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12095. "preferred": true
  12096. }
  12097. ]
  12098. },
  12099. "require": {
  12100. "php": ">=7.3"
  12101. },
  12102. "require-dev": {
  12103. "phpunit/phpunit": "^9.3",
  12104. "symfony/process": "^4.2 || ^5"
  12105. },
  12106. "type": "library",
  12107. "extra": {
  12108. "branch-alias": {
  12109. "dev-master": "4.0-dev"
  12110. }
  12111. },
  12112. "autoload": {
  12113. "classmap": [
  12114. "src/"
  12115. ]
  12116. },
  12117. "notification-url": "https://packagist.org/downloads/",
  12118. "license": [
  12119. "BSD-3-Clause"
  12120. ],
  12121. "authors": [
  12122. {
  12123. "name": "Sebastian Bergmann",
  12124. "email": "sebastian@phpunit.de"
  12125. },
  12126. {
  12127. "name": "Kore Nordmann",
  12128. "email": "mail@kore-nordmann.de"
  12129. }
  12130. ],
  12131. "description": "Diff implementation",
  12132. "homepage": "https://github.com/sebastianbergmann/diff",
  12133. "keywords": [
  12134. "diff",
  12135. "udiff",
  12136. "unidiff",
  12137. "unified diff"
  12138. ],
  12139. "support": {
  12140. "issues": "https://github.com/sebastianbergmann/diff/issues",
  12141. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  12142. },
  12143. "funding": [
  12144. {
  12145. "url": "https://github.com/sebastianbergmann",
  12146. "type": "github"
  12147. }
  12148. ],
  12149. "time": "2023-05-07T05:35:17+00:00"
  12150. },
  12151. {
  12152. "name": "sebastian/environment",
  12153. "version": "5.1.5",
  12154. "source": {
  12155. "type": "git",
  12156. "url": "https://github.com/sebastianbergmann/environment.git",
  12157. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  12158. },
  12159. "dist": {
  12160. "type": "zip",
  12161. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  12162. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  12163. "shasum": "",
  12164. "mirrors": [
  12165. {
  12166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12167. "preferred": true
  12168. }
  12169. ]
  12170. },
  12171. "require": {
  12172. "php": ">=7.3"
  12173. },
  12174. "require-dev": {
  12175. "phpunit/phpunit": "^9.3"
  12176. },
  12177. "suggest": {
  12178. "ext-posix": "*"
  12179. },
  12180. "type": "library",
  12181. "extra": {
  12182. "branch-alias": {
  12183. "dev-master": "5.1-dev"
  12184. }
  12185. },
  12186. "autoload": {
  12187. "classmap": [
  12188. "src/"
  12189. ]
  12190. },
  12191. "notification-url": "https://packagist.org/downloads/",
  12192. "license": [
  12193. "BSD-3-Clause"
  12194. ],
  12195. "authors": [
  12196. {
  12197. "name": "Sebastian Bergmann",
  12198. "email": "sebastian@phpunit.de"
  12199. }
  12200. ],
  12201. "description": "Provides functionality to handle HHVM/PHP environments",
  12202. "homepage": "http://www.github.com/sebastianbergmann/environment",
  12203. "keywords": [
  12204. "Xdebug",
  12205. "environment",
  12206. "hhvm"
  12207. ],
  12208. "support": {
  12209. "issues": "https://github.com/sebastianbergmann/environment/issues",
  12210. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  12211. },
  12212. "funding": [
  12213. {
  12214. "url": "https://github.com/sebastianbergmann",
  12215. "type": "github"
  12216. }
  12217. ],
  12218. "time": "2023-02-03T06:03:51+00:00"
  12219. },
  12220. {
  12221. "name": "sebastian/exporter",
  12222. "version": "4.0.5",
  12223. "source": {
  12224. "type": "git",
  12225. "url": "https://github.com/sebastianbergmann/exporter.git",
  12226. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  12227. },
  12228. "dist": {
  12229. "type": "zip",
  12230. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  12231. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  12232. "shasum": "",
  12233. "mirrors": [
  12234. {
  12235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12236. "preferred": true
  12237. }
  12238. ]
  12239. },
  12240. "require": {
  12241. "php": ">=7.3",
  12242. "sebastian/recursion-context": "^4.0"
  12243. },
  12244. "require-dev": {
  12245. "ext-mbstring": "*",
  12246. "phpunit/phpunit": "^9.3"
  12247. },
  12248. "type": "library",
  12249. "extra": {
  12250. "branch-alias": {
  12251. "dev-master": "4.0-dev"
  12252. }
  12253. },
  12254. "autoload": {
  12255. "classmap": [
  12256. "src/"
  12257. ]
  12258. },
  12259. "notification-url": "https://packagist.org/downloads/",
  12260. "license": [
  12261. "BSD-3-Clause"
  12262. ],
  12263. "authors": [
  12264. {
  12265. "name": "Sebastian Bergmann",
  12266. "email": "sebastian@phpunit.de"
  12267. },
  12268. {
  12269. "name": "Jeff Welch",
  12270. "email": "whatthejeff@gmail.com"
  12271. },
  12272. {
  12273. "name": "Volker Dusch",
  12274. "email": "github@wallbash.com"
  12275. },
  12276. {
  12277. "name": "Adam Harvey",
  12278. "email": "aharvey@php.net"
  12279. },
  12280. {
  12281. "name": "Bernhard Schussek",
  12282. "email": "bschussek@gmail.com"
  12283. }
  12284. ],
  12285. "description": "Provides the functionality to export PHP variables for visualization",
  12286. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12287. "keywords": [
  12288. "export",
  12289. "exporter"
  12290. ],
  12291. "support": {
  12292. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12293. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  12294. },
  12295. "funding": [
  12296. {
  12297. "url": "https://github.com/sebastianbergmann",
  12298. "type": "github"
  12299. }
  12300. ],
  12301. "time": "2022-09-14T06:03:37+00:00"
  12302. },
  12303. {
  12304. "name": "sebastian/global-state",
  12305. "version": "5.0.6",
  12306. "source": {
  12307. "type": "git",
  12308. "url": "https://github.com/sebastianbergmann/global-state.git",
  12309. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  12310. },
  12311. "dist": {
  12312. "type": "zip",
  12313. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  12314. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  12315. "shasum": "",
  12316. "mirrors": [
  12317. {
  12318. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12319. "preferred": true
  12320. }
  12321. ]
  12322. },
  12323. "require": {
  12324. "php": ">=7.3",
  12325. "sebastian/object-reflector": "^2.0",
  12326. "sebastian/recursion-context": "^4.0"
  12327. },
  12328. "require-dev": {
  12329. "ext-dom": "*",
  12330. "phpunit/phpunit": "^9.3"
  12331. },
  12332. "suggest": {
  12333. "ext-uopz": "*"
  12334. },
  12335. "type": "library",
  12336. "extra": {
  12337. "branch-alias": {
  12338. "dev-master": "5.0-dev"
  12339. }
  12340. },
  12341. "autoload": {
  12342. "classmap": [
  12343. "src/"
  12344. ]
  12345. },
  12346. "notification-url": "https://packagist.org/downloads/",
  12347. "license": [
  12348. "BSD-3-Clause"
  12349. ],
  12350. "authors": [
  12351. {
  12352. "name": "Sebastian Bergmann",
  12353. "email": "sebastian@phpunit.de"
  12354. }
  12355. ],
  12356. "description": "Snapshotting of global state",
  12357. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  12358. "keywords": [
  12359. "global state"
  12360. ],
  12361. "support": {
  12362. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12363. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  12364. },
  12365. "funding": [
  12366. {
  12367. "url": "https://github.com/sebastianbergmann",
  12368. "type": "github"
  12369. }
  12370. ],
  12371. "time": "2023-08-02T09:26:13+00:00"
  12372. },
  12373. {
  12374. "name": "sebastian/lines-of-code",
  12375. "version": "1.0.4",
  12376. "source": {
  12377. "type": "git",
  12378. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12379. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  12380. },
  12381. "dist": {
  12382. "type": "zip",
  12383. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  12384. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  12385. "shasum": "",
  12386. "mirrors": [
  12387. {
  12388. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12389. "preferred": true
  12390. }
  12391. ]
  12392. },
  12393. "require": {
  12394. "nikic/php-parser": "^4.18 || ^5.0",
  12395. "php": ">=7.3"
  12396. },
  12397. "require-dev": {
  12398. "phpunit/phpunit": "^9.3"
  12399. },
  12400. "type": "library",
  12401. "extra": {
  12402. "branch-alias": {
  12403. "dev-master": "1.0-dev"
  12404. }
  12405. },
  12406. "autoload": {
  12407. "classmap": [
  12408. "src/"
  12409. ]
  12410. },
  12411. "notification-url": "https://packagist.org/downloads/",
  12412. "license": [
  12413. "BSD-3-Clause"
  12414. ],
  12415. "authors": [
  12416. {
  12417. "name": "Sebastian Bergmann",
  12418. "email": "sebastian@phpunit.de",
  12419. "role": "lead"
  12420. }
  12421. ],
  12422. "description": "Library for counting the lines of code in PHP source code",
  12423. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12424. "support": {
  12425. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12426. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  12427. },
  12428. "funding": [
  12429. {
  12430. "url": "https://github.com/sebastianbergmann",
  12431. "type": "github"
  12432. }
  12433. ],
  12434. "time": "2023-12-22T06:20:34+00:00"
  12435. },
  12436. {
  12437. "name": "sebastian/object-enumerator",
  12438. "version": "4.0.4",
  12439. "source": {
  12440. "type": "git",
  12441. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12442. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  12443. },
  12444. "dist": {
  12445. "type": "zip",
  12446. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  12447. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  12448. "shasum": "",
  12449. "mirrors": [
  12450. {
  12451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12452. "preferred": true
  12453. }
  12454. ]
  12455. },
  12456. "require": {
  12457. "php": ">=7.3",
  12458. "sebastian/object-reflector": "^2.0",
  12459. "sebastian/recursion-context": "^4.0"
  12460. },
  12461. "require-dev": {
  12462. "phpunit/phpunit": "^9.3"
  12463. },
  12464. "type": "library",
  12465. "extra": {
  12466. "branch-alias": {
  12467. "dev-master": "4.0-dev"
  12468. }
  12469. },
  12470. "autoload": {
  12471. "classmap": [
  12472. "src/"
  12473. ]
  12474. },
  12475. "notification-url": "https://packagist.org/downloads/",
  12476. "license": [
  12477. "BSD-3-Clause"
  12478. ],
  12479. "authors": [
  12480. {
  12481. "name": "Sebastian Bergmann",
  12482. "email": "sebastian@phpunit.de"
  12483. }
  12484. ],
  12485. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12486. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12487. "support": {
  12488. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12489. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  12490. },
  12491. "funding": [
  12492. {
  12493. "url": "https://github.com/sebastianbergmann",
  12494. "type": "github"
  12495. }
  12496. ],
  12497. "time": "2020-10-26T13:12:34+00:00"
  12498. },
  12499. {
  12500. "name": "sebastian/object-reflector",
  12501. "version": "2.0.4",
  12502. "source": {
  12503. "type": "git",
  12504. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12505. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  12506. },
  12507. "dist": {
  12508. "type": "zip",
  12509. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12510. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12511. "shasum": "",
  12512. "mirrors": [
  12513. {
  12514. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12515. "preferred": true
  12516. }
  12517. ]
  12518. },
  12519. "require": {
  12520. "php": ">=7.3"
  12521. },
  12522. "require-dev": {
  12523. "phpunit/phpunit": "^9.3"
  12524. },
  12525. "type": "library",
  12526. "extra": {
  12527. "branch-alias": {
  12528. "dev-master": "2.0-dev"
  12529. }
  12530. },
  12531. "autoload": {
  12532. "classmap": [
  12533. "src/"
  12534. ]
  12535. },
  12536. "notification-url": "https://packagist.org/downloads/",
  12537. "license": [
  12538. "BSD-3-Clause"
  12539. ],
  12540. "authors": [
  12541. {
  12542. "name": "Sebastian Bergmann",
  12543. "email": "sebastian@phpunit.de"
  12544. }
  12545. ],
  12546. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12547. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12548. "support": {
  12549. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12550. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  12551. },
  12552. "funding": [
  12553. {
  12554. "url": "https://github.com/sebastianbergmann",
  12555. "type": "github"
  12556. }
  12557. ],
  12558. "time": "2020-10-26T13:14:26+00:00"
  12559. },
  12560. {
  12561. "name": "sebastian/recursion-context",
  12562. "version": "4.0.5",
  12563. "source": {
  12564. "type": "git",
  12565. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12566. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  12567. },
  12568. "dist": {
  12569. "type": "zip",
  12570. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  12571. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  12572. "shasum": "",
  12573. "mirrors": [
  12574. {
  12575. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12576. "preferred": true
  12577. }
  12578. ]
  12579. },
  12580. "require": {
  12581. "php": ">=7.3"
  12582. },
  12583. "require-dev": {
  12584. "phpunit/phpunit": "^9.3"
  12585. },
  12586. "type": "library",
  12587. "extra": {
  12588. "branch-alias": {
  12589. "dev-master": "4.0-dev"
  12590. }
  12591. },
  12592. "autoload": {
  12593. "classmap": [
  12594. "src/"
  12595. ]
  12596. },
  12597. "notification-url": "https://packagist.org/downloads/",
  12598. "license": [
  12599. "BSD-3-Clause"
  12600. ],
  12601. "authors": [
  12602. {
  12603. "name": "Sebastian Bergmann",
  12604. "email": "sebastian@phpunit.de"
  12605. },
  12606. {
  12607. "name": "Jeff Welch",
  12608. "email": "whatthejeff@gmail.com"
  12609. },
  12610. {
  12611. "name": "Adam Harvey",
  12612. "email": "aharvey@php.net"
  12613. }
  12614. ],
  12615. "description": "Provides functionality to recursively process PHP variables",
  12616. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12617. "support": {
  12618. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12619. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  12620. },
  12621. "funding": [
  12622. {
  12623. "url": "https://github.com/sebastianbergmann",
  12624. "type": "github"
  12625. }
  12626. ],
  12627. "time": "2023-02-03T06:07:39+00:00"
  12628. },
  12629. {
  12630. "name": "sebastian/resource-operations",
  12631. "version": "3.0.3",
  12632. "source": {
  12633. "type": "git",
  12634. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  12635. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  12636. },
  12637. "dist": {
  12638. "type": "zip",
  12639. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12640. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12641. "shasum": "",
  12642. "mirrors": [
  12643. {
  12644. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12645. "preferred": true
  12646. }
  12647. ]
  12648. },
  12649. "require": {
  12650. "php": ">=7.3"
  12651. },
  12652. "require-dev": {
  12653. "phpunit/phpunit": "^9.0"
  12654. },
  12655. "type": "library",
  12656. "extra": {
  12657. "branch-alias": {
  12658. "dev-master": "3.0-dev"
  12659. }
  12660. },
  12661. "autoload": {
  12662. "classmap": [
  12663. "src/"
  12664. ]
  12665. },
  12666. "notification-url": "https://packagist.org/downloads/",
  12667. "license": [
  12668. "BSD-3-Clause"
  12669. ],
  12670. "authors": [
  12671. {
  12672. "name": "Sebastian Bergmann",
  12673. "email": "sebastian@phpunit.de"
  12674. }
  12675. ],
  12676. "description": "Provides a list of PHP built-in functions that operate on resources",
  12677. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  12678. "support": {
  12679. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  12680. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  12681. },
  12682. "funding": [
  12683. {
  12684. "url": "https://github.com/sebastianbergmann",
  12685. "type": "github"
  12686. }
  12687. ],
  12688. "time": "2020-09-28T06:45:17+00:00"
  12689. },
  12690. {
  12691. "name": "sebastian/type",
  12692. "version": "3.2.1",
  12693. "source": {
  12694. "type": "git",
  12695. "url": "https://github.com/sebastianbergmann/type.git",
  12696. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  12697. },
  12698. "dist": {
  12699. "type": "zip",
  12700. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  12701. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  12702. "shasum": "",
  12703. "mirrors": [
  12704. {
  12705. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12706. "preferred": true
  12707. }
  12708. ]
  12709. },
  12710. "require": {
  12711. "php": ">=7.3"
  12712. },
  12713. "require-dev": {
  12714. "phpunit/phpunit": "^9.5"
  12715. },
  12716. "type": "library",
  12717. "extra": {
  12718. "branch-alias": {
  12719. "dev-master": "3.2-dev"
  12720. }
  12721. },
  12722. "autoload": {
  12723. "classmap": [
  12724. "src/"
  12725. ]
  12726. },
  12727. "notification-url": "https://packagist.org/downloads/",
  12728. "license": [
  12729. "BSD-3-Clause"
  12730. ],
  12731. "authors": [
  12732. {
  12733. "name": "Sebastian Bergmann",
  12734. "email": "sebastian@phpunit.de",
  12735. "role": "lead"
  12736. }
  12737. ],
  12738. "description": "Collection of value objects that represent the types of the PHP type system",
  12739. "homepage": "https://github.com/sebastianbergmann/type",
  12740. "support": {
  12741. "issues": "https://github.com/sebastianbergmann/type/issues",
  12742. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  12743. },
  12744. "funding": [
  12745. {
  12746. "url": "https://github.com/sebastianbergmann",
  12747. "type": "github"
  12748. }
  12749. ],
  12750. "time": "2023-02-03T06:13:03+00:00"
  12751. },
  12752. {
  12753. "name": "sebastian/version",
  12754. "version": "3.0.2",
  12755. "source": {
  12756. "type": "git",
  12757. "url": "https://github.com/sebastianbergmann/version.git",
  12758. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  12759. },
  12760. "dist": {
  12761. "type": "zip",
  12762. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  12763. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  12764. "shasum": "",
  12765. "mirrors": [
  12766. {
  12767. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12768. "preferred": true
  12769. }
  12770. ]
  12771. },
  12772. "require": {
  12773. "php": ">=7.3"
  12774. },
  12775. "type": "library",
  12776. "extra": {
  12777. "branch-alias": {
  12778. "dev-master": "3.0-dev"
  12779. }
  12780. },
  12781. "autoload": {
  12782. "classmap": [
  12783. "src/"
  12784. ]
  12785. },
  12786. "notification-url": "https://packagist.org/downloads/",
  12787. "license": [
  12788. "BSD-3-Clause"
  12789. ],
  12790. "authors": [
  12791. {
  12792. "name": "Sebastian Bergmann",
  12793. "email": "sebastian@phpunit.de",
  12794. "role": "lead"
  12795. }
  12796. ],
  12797. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12798. "homepage": "https://github.com/sebastianbergmann/version",
  12799. "support": {
  12800. "issues": "https://github.com/sebastianbergmann/version/issues",
  12801. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  12802. },
  12803. "funding": [
  12804. {
  12805. "url": "https://github.com/sebastianbergmann",
  12806. "type": "github"
  12807. }
  12808. ],
  12809. "time": "2020-09-28T06:39:44+00:00"
  12810. },
  12811. {
  12812. "name": "seld/jsonlint",
  12813. "version": "1.10.1",
  12814. "source": {
  12815. "type": "git",
  12816. "url": "https://github.com/Seldaek/jsonlint.git",
  12817. "reference": "76d449a358ece77d6f1d6331c68453e657172202"
  12818. },
  12819. "dist": {
  12820. "type": "zip",
  12821. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/76d449a358ece77d6f1d6331c68453e657172202",
  12822. "reference": "76d449a358ece77d6f1d6331c68453e657172202",
  12823. "shasum": "",
  12824. "mirrors": [
  12825. {
  12826. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12827. "preferred": true
  12828. }
  12829. ]
  12830. },
  12831. "require": {
  12832. "php": "^5.3 || ^7.0 || ^8.0"
  12833. },
  12834. "require-dev": {
  12835. "phpstan/phpstan": "^1.5",
  12836. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13"
  12837. },
  12838. "bin": [
  12839. "bin/jsonlint"
  12840. ],
  12841. "type": "library",
  12842. "autoload": {
  12843. "psr-4": {
  12844. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  12845. }
  12846. },
  12847. "notification-url": "https://packagist.org/downloads/",
  12848. "license": [
  12849. "MIT"
  12850. ],
  12851. "authors": [
  12852. {
  12853. "name": "Jordi Boggiano",
  12854. "email": "j.boggiano@seld.be",
  12855. "homepage": "https://seld.be"
  12856. }
  12857. ],
  12858. "description": "JSON Linter",
  12859. "keywords": [
  12860. "json",
  12861. "linter",
  12862. "parser",
  12863. "validator"
  12864. ],
  12865. "support": {
  12866. "issues": "https://github.com/Seldaek/jsonlint/issues",
  12867. "source": "https://github.com/Seldaek/jsonlint/tree/1.10.1"
  12868. },
  12869. "funding": [
  12870. {
  12871. "url": "https://github.com/Seldaek",
  12872. "type": "github"
  12873. },
  12874. {
  12875. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  12876. "type": "tidelift"
  12877. }
  12878. ],
  12879. "time": "2023-12-18T13:03:25+00:00"
  12880. },
  12881. {
  12882. "name": "seld/phar-utils",
  12883. "version": "1.2.1",
  12884. "source": {
  12885. "type": "git",
  12886. "url": "https://github.com/Seldaek/phar-utils.git",
  12887. "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c"
  12888. },
  12889. "dist": {
  12890. "type": "zip",
  12891. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
  12892. "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
  12893. "shasum": "",
  12894. "mirrors": [
  12895. {
  12896. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12897. "preferred": true
  12898. }
  12899. ]
  12900. },
  12901. "require": {
  12902. "php": ">=5.3"
  12903. },
  12904. "type": "library",
  12905. "extra": {
  12906. "branch-alias": {
  12907. "dev-master": "1.x-dev"
  12908. }
  12909. },
  12910. "autoload": {
  12911. "psr-4": {
  12912. "Seld\\PharUtils\\": "src/"
  12913. }
  12914. },
  12915. "notification-url": "https://packagist.org/downloads/",
  12916. "license": [
  12917. "MIT"
  12918. ],
  12919. "authors": [
  12920. {
  12921. "name": "Jordi Boggiano",
  12922. "email": "j.boggiano@seld.be"
  12923. }
  12924. ],
  12925. "description": "PHAR file format utilities, for when PHP phars you up",
  12926. "keywords": [
  12927. "phar"
  12928. ],
  12929. "support": {
  12930. "issues": "https://github.com/Seldaek/phar-utils/issues",
  12931. "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1"
  12932. },
  12933. "time": "2022-08-31T10:31:18+00:00"
  12934. },
  12935. {
  12936. "name": "seld/signal-handler",
  12937. "version": "2.0.2",
  12938. "source": {
  12939. "type": "git",
  12940. "url": "https://github.com/Seldaek/signal-handler.git",
  12941. "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98"
  12942. },
  12943. "dist": {
  12944. "type": "zip",
  12945. "url": "https://api.github.com/repos/Seldaek/signal-handler/zipball/04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98",
  12946. "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98",
  12947. "shasum": "",
  12948. "mirrors": [
  12949. {
  12950. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12951. "preferred": true
  12952. }
  12953. ]
  12954. },
  12955. "require": {
  12956. "php": ">=7.2.0"
  12957. },
  12958. "require-dev": {
  12959. "phpstan/phpstan": "^1",
  12960. "phpstan/phpstan-deprecation-rules": "^1.0",
  12961. "phpstan/phpstan-phpunit": "^1",
  12962. "phpstan/phpstan-strict-rules": "^1.3",
  12963. "phpunit/phpunit": "^7.5.20 || ^8.5.23",
  12964. "psr/log": "^1 || ^2 || ^3"
  12965. },
  12966. "type": "library",
  12967. "extra": {
  12968. "branch-alias": {
  12969. "dev-main": "2.x-dev"
  12970. }
  12971. },
  12972. "autoload": {
  12973. "psr-4": {
  12974. "Seld\\Signal\\": "src/"
  12975. }
  12976. },
  12977. "notification-url": "https://packagist.org/downloads/",
  12978. "license": [
  12979. "MIT"
  12980. ],
  12981. "authors": [
  12982. {
  12983. "name": "Jordi Boggiano",
  12984. "email": "j.boggiano@seld.be",
  12985. "homepage": "http://seld.be"
  12986. }
  12987. ],
  12988. "description": "Simple unix signal handler that silently fails where signals are not supported for easy cross-platform development",
  12989. "keywords": [
  12990. "posix",
  12991. "sigint",
  12992. "signal",
  12993. "sigterm",
  12994. "unix"
  12995. ],
  12996. "support": {
  12997. "issues": "https://github.com/Seldaek/signal-handler/issues",
  12998. "source": "https://github.com/Seldaek/signal-handler/tree/2.0.2"
  12999. },
  13000. "time": "2023-09-03T09:24:00+00:00"
  13001. },
  13002. {
  13003. "name": "symfony/filesystem",
  13004. "version": "v5.4.35",
  13005. "source": {
  13006. "type": "git",
  13007. "url": "https://github.com/symfony/filesystem.git",
  13008. "reference": "5a553607d4ffbfa9c0ab62facadea296c9db7086"
  13009. },
  13010. "dist": {
  13011. "type": "zip",
  13012. "url": "https://api.github.com/repos/symfony/filesystem/zipball/5a553607d4ffbfa9c0ab62facadea296c9db7086",
  13013. "reference": "5a553607d4ffbfa9c0ab62facadea296c9db7086",
  13014. "shasum": "",
  13015. "mirrors": [
  13016. {
  13017. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13018. "preferred": true
  13019. }
  13020. ]
  13021. },
  13022. "require": {
  13023. "php": ">=7.2.5",
  13024. "symfony/polyfill-ctype": "~1.8",
  13025. "symfony/polyfill-mbstring": "~1.8",
  13026. "symfony/polyfill-php80": "^1.16"
  13027. },
  13028. "type": "library",
  13029. "autoload": {
  13030. "psr-4": {
  13031. "Symfony\\Component\\Filesystem\\": ""
  13032. },
  13033. "exclude-from-classmap": [
  13034. "/Tests/"
  13035. ]
  13036. },
  13037. "notification-url": "https://packagist.org/downloads/",
  13038. "license": [
  13039. "MIT"
  13040. ],
  13041. "authors": [
  13042. {
  13043. "name": "Fabien Potencier",
  13044. "email": "fabien@symfony.com"
  13045. },
  13046. {
  13047. "name": "Symfony Community",
  13048. "homepage": "https://symfony.com/contributors"
  13049. }
  13050. ],
  13051. "description": "Provides basic utilities for the filesystem",
  13052. "homepage": "https://symfony.com",
  13053. "support": {
  13054. "source": "https://github.com/symfony/filesystem/tree/v5.4.35"
  13055. },
  13056. "funding": [
  13057. {
  13058. "url": "https://symfony.com/sponsor",
  13059. "type": "custom"
  13060. },
  13061. {
  13062. "url": "https://github.com/fabpot",
  13063. "type": "github"
  13064. },
  13065. {
  13066. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13067. "type": "tidelift"
  13068. }
  13069. ],
  13070. "time": "2024-01-23T13:51:25+00:00"
  13071. },
  13072. {
  13073. "name": "theseer/tokenizer",
  13074. "version": "1.2.1",
  13075. "source": {
  13076. "type": "git",
  13077. "url": "https://github.com/theseer/tokenizer.git",
  13078. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  13079. },
  13080. "dist": {
  13081. "type": "zip",
  13082. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  13083. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  13084. "shasum": "",
  13085. "mirrors": [
  13086. {
  13087. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13088. "preferred": true
  13089. }
  13090. ]
  13091. },
  13092. "require": {
  13093. "ext-dom": "*",
  13094. "ext-tokenizer": "*",
  13095. "ext-xmlwriter": "*",
  13096. "php": "^7.2 || ^8.0"
  13097. },
  13098. "type": "library",
  13099. "autoload": {
  13100. "classmap": [
  13101. "src/"
  13102. ]
  13103. },
  13104. "notification-url": "https://packagist.org/downloads/",
  13105. "license": [
  13106. "BSD-3-Clause"
  13107. ],
  13108. "authors": [
  13109. {
  13110. "name": "Arne Blankerts",
  13111. "email": "arne@blankerts.de",
  13112. "role": "Developer"
  13113. }
  13114. ],
  13115. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13116. "support": {
  13117. "issues": "https://github.com/theseer/tokenizer/issues",
  13118. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  13119. },
  13120. "funding": [
  13121. {
  13122. "url": "https://github.com/theseer",
  13123. "type": "github"
  13124. }
  13125. ],
  13126. "time": "2021-07-28T10:34:58+00:00"
  13127. }
  13128. ],
  13129. "aliases": [],
  13130. "minimum-stability": "dev",
  13131. "stability-flags": [],
  13132. "prefer-stable": true,
  13133. "prefer-lowest": false,
  13134. "platform": {
  13135. "php": "^7.2.5|^8.0",
  13136. "ext-json": "*",
  13137. "ext-mbstring": "*",
  13138. "ext-openssl": "*",
  13139. "ext-simplexml": "*"
  13140. },
  13141. "platform-dev": [],
  13142. "plugin-api-version": "2.0.0"
  13143. }