composer.lock 236 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798
  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": "f1659e6e5d527eed0e1b72a291eba18d",
  8. "packages": [
  9. {
  10. "name": "aliyuncs/oss-sdk-php",
  11. "version": "v2.4.3",
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/aliyuncs/oss-sdk-php/v2.4.3/aliyuncs-oss-sdk-php-v2.4.3.zip",
  15. "reference": "4ccead614915ee6685bf30016afb01aabd347e46",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "php": ">=5.3"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "*",
  23. "satooshi/php-coveralls": "*"
  24. },
  25. "type": "library",
  26. "autoload": {
  27. "psr-4": {
  28. "OSS\\": "src/OSS"
  29. }
  30. },
  31. "license": [
  32. "MIT"
  33. ],
  34. "authors": [
  35. {
  36. "name": "Aliyuncs",
  37. "homepage": "http://www.aliyun.com"
  38. }
  39. ],
  40. "description": "Aliyun OSS SDK for PHP",
  41. "homepage": "http://www.aliyun.com/product/oss/",
  42. "time": "2021-08-25T13:03:58+00:00"
  43. },
  44. {
  45. "name": "box/spout",
  46. "version": "v3.3.0",
  47. "dist": {
  48. "type": "zip",
  49. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/box/spout/v3.3.0/box-spout-v3.3.0.zip",
  50. "reference": "9bdb027d312b732515b884a341c0ad70372c6295",
  51. "shasum": ""
  52. },
  53. "require": {
  54. "ext-dom": "*",
  55. "ext-xmlreader": "*",
  56. "ext-zip": "*",
  57. "php": ">=7.2.0"
  58. },
  59. "require-dev": {
  60. "friendsofphp/php-cs-fixer": "^2",
  61. "phpunit/phpunit": "^8"
  62. },
  63. "suggest": {
  64. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-intl\" is not already installed or is too limited)",
  65. "ext-intl": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  66. },
  67. "type": "library",
  68. "extra": {
  69. "branch-alias": {
  70. "dev-master": "3.1.x-dev"
  71. }
  72. },
  73. "autoload": {
  74. "psr-4": {
  75. "Box\\Spout\\": "src/Spout"
  76. }
  77. },
  78. "license": [
  79. "Apache-2.0"
  80. ],
  81. "authors": [
  82. {
  83. "name": "Adrien Loison",
  84. "email": "adrien@box.com"
  85. }
  86. ],
  87. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  88. "homepage": "https://www.github.com/box/spout",
  89. "keywords": [
  90. "OOXML",
  91. "csv",
  92. "excel",
  93. "memory",
  94. "odf",
  95. "ods",
  96. "office",
  97. "open",
  98. "php",
  99. "read",
  100. "scale",
  101. "spreadsheet",
  102. "stream",
  103. "write",
  104. "xlsx"
  105. ],
  106. "time": "2021-05-14T21:18:09+00:00"
  107. },
  108. {
  109. "name": "defuse/php-encryption",
  110. "version": "v2.3.1",
  111. "dist": {
  112. "type": "zip",
  113. "url": "https://api.github.com/repos/defuse/php-encryption/zipball/77880488b9954b7884c25555c2a0ea9e7053f9d2",
  114. "reference": "77880488b9954b7884c25555c2a0ea9e7053f9d2",
  115. "shasum": ""
  116. },
  117. "require": {
  118. "ext-openssl": "*",
  119. "paragonie/random_compat": ">= 2",
  120. "php": ">=5.6.0"
  121. },
  122. "require-dev": {
  123. "phpunit/phpunit": "^4|^5|^6|^7|^8|^9"
  124. },
  125. "bin": [
  126. "bin/generate-defuse-key"
  127. ],
  128. "type": "library",
  129. "autoload": {
  130. "psr-4": {
  131. "Defuse\\Crypto\\": "src"
  132. }
  133. },
  134. "notification-url": "https://packagist.org/downloads/",
  135. "license": [
  136. "MIT"
  137. ],
  138. "authors": [
  139. {
  140. "name": "Taylor Hornby",
  141. "email": "taylor@defuse.ca",
  142. "homepage": "https://defuse.ca/"
  143. },
  144. {
  145. "name": "Scott Arciszewski",
  146. "email": "info@paragonie.com",
  147. "homepage": "https://paragonie.com"
  148. }
  149. ],
  150. "description": "Secure PHP Encryption Library",
  151. "keywords": [
  152. "aes",
  153. "authenticated encryption",
  154. "cipher",
  155. "crypto",
  156. "cryptography",
  157. "encrypt",
  158. "encryption",
  159. "openssl",
  160. "security",
  161. "symmetric key cryptography"
  162. ],
  163. "time": "2021-04-09T23:57:26+00:00"
  164. },
  165. {
  166. "name": "dnoegel/php-xdg-base-dir",
  167. "version": "v0.1.1",
  168. "dist": {
  169. "type": "zip",
  170. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  171. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  172. "shasum": ""
  173. },
  174. "require": {
  175. "php": ">=5.3.2"
  176. },
  177. "require-dev": {
  178. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  179. },
  180. "type": "library",
  181. "autoload": {
  182. "psr-4": {
  183. "XdgBaseDir\\": "src/"
  184. }
  185. },
  186. "notification-url": "https://packagist.org/downloads/",
  187. "license": [
  188. "MIT"
  189. ],
  190. "description": "implementation of xdg base directory specification for php",
  191. "time": "2019-12-04T15:06:13+00:00"
  192. },
  193. {
  194. "name": "doctrine/cache",
  195. "version": "2.1.1",
  196. "dist": {
  197. "type": "zip",
  198. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/doctrine/cache/2.1.1/doctrine-cache-2.1.1.zip",
  199. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce",
  200. "shasum": ""
  201. },
  202. "require": {
  203. "php": "~7.1 || ^8.0"
  204. },
  205. "conflict": {
  206. "doctrine/common": ">2.2,<2.4"
  207. },
  208. "require-dev": {
  209. "alcaeus/mongo-php-adapter": "^1.1",
  210. "cache/integration-tests": "dev-master",
  211. "doctrine/coding-standard": "^8.0",
  212. "mongodb/mongodb": "^1.1",
  213. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  214. "predis/predis": "~1.0",
  215. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  216. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  217. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  218. },
  219. "suggest": {
  220. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  221. },
  222. "type": "library",
  223. "autoload": {
  224. "psr-4": {
  225. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  226. }
  227. },
  228. "license": [
  229. "MIT"
  230. ],
  231. "authors": [
  232. {
  233. "name": "Guilherme Blanco",
  234. "email": "guilhermeblanco@gmail.com"
  235. },
  236. {
  237. "name": "Roman Borschel",
  238. "email": "roman@code-factory.org"
  239. },
  240. {
  241. "name": "Benjamin Eberlei",
  242. "email": "kontakt@beberlei.de"
  243. },
  244. {
  245. "name": "Jonathan Wage",
  246. "email": "jonwage@gmail.com"
  247. },
  248. {
  249. "name": "Johannes Schmitt",
  250. "email": "schmittjoh@gmail.com"
  251. }
  252. ],
  253. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  254. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  255. "keywords": [
  256. "abstraction",
  257. "apcu",
  258. "cache",
  259. "caching",
  260. "couchdb",
  261. "memcached",
  262. "php",
  263. "redis",
  264. "xcache"
  265. ],
  266. "funding": [
  267. {
  268. "url": "https://www.doctrine-project.org/sponsorship.html",
  269. "type": "custom"
  270. },
  271. {
  272. "url": "https://www.patreon.com/phpdoctrine",
  273. "type": "patreon"
  274. },
  275. {
  276. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  277. "type": "tidelift"
  278. }
  279. ],
  280. "time": "2021-07-17T14:49:29+00:00"
  281. },
  282. {
  283. "name": "doctrine/dbal",
  284. "version": "2.13.7",
  285. "dist": {
  286. "type": "zip",
  287. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/doctrine/dbal/2.13.7/doctrine-dbal-2.13.7.zip",
  288. "reference": "6e22f6012b42d7932674857989fcf184e9e9b1c3",
  289. "shasum": ""
  290. },
  291. "require": {
  292. "doctrine/cache": "^1.0|^2.0",
  293. "doctrine/deprecations": "^0.5.3",
  294. "doctrine/event-manager": "^1.0",
  295. "ext-pdo": "*",
  296. "php": "^7.1 || ^8"
  297. },
  298. "require-dev": {
  299. "doctrine/coding-standard": "9.0.0",
  300. "jetbrains/phpstorm-stubs": "2021.1",
  301. "phpstan/phpstan": "1.3.0",
  302. "phpunit/phpunit": "^7.5.20|^8.5|9.5.11",
  303. "psalm/plugin-phpunit": "0.16.1",
  304. "squizlabs/php_codesniffer": "3.6.2",
  305. "symfony/cache": "^4.4",
  306. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  307. "vimeo/psalm": "4.16.1"
  308. },
  309. "suggest": {
  310. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  311. },
  312. "bin": [
  313. "bin/doctrine-dbal"
  314. ],
  315. "type": "library",
  316. "autoload": {
  317. "psr-4": {
  318. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  319. }
  320. },
  321. "license": [
  322. "MIT"
  323. ],
  324. "authors": [
  325. {
  326. "name": "Guilherme Blanco",
  327. "email": "guilhermeblanco@gmail.com"
  328. },
  329. {
  330. "name": "Roman Borschel",
  331. "email": "roman@code-factory.org"
  332. },
  333. {
  334. "name": "Benjamin Eberlei",
  335. "email": "kontakt@beberlei.de"
  336. },
  337. {
  338. "name": "Jonathan Wage",
  339. "email": "jonwage@gmail.com"
  340. }
  341. ],
  342. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  343. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  344. "keywords": [
  345. "abstraction",
  346. "database",
  347. "db2",
  348. "dbal",
  349. "mariadb",
  350. "mssql",
  351. "mysql",
  352. "oci8",
  353. "oracle",
  354. "pdo",
  355. "pgsql",
  356. "postgresql",
  357. "queryobject",
  358. "sasql",
  359. "sql",
  360. "sqlanywhere",
  361. "sqlite",
  362. "sqlserver",
  363. "sqlsrv"
  364. ],
  365. "funding": [
  366. {
  367. "url": "https://www.doctrine-project.org/sponsorship.html",
  368. "type": "custom"
  369. },
  370. {
  371. "url": "https://www.patreon.com/phpdoctrine",
  372. "type": "patreon"
  373. },
  374. {
  375. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  376. "type": "tidelift"
  377. }
  378. ],
  379. "time": "2022-01-06T09:08:04+00:00"
  380. },
  381. {
  382. "name": "doctrine/deprecations",
  383. "version": "v0.5.3",
  384. "dist": {
  385. "type": "zip",
  386. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  387. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  388. "shasum": ""
  389. },
  390. "require": {
  391. "php": "^7.1|^8.0"
  392. },
  393. "require-dev": {
  394. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  395. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  396. "psr/log": "^1.0"
  397. },
  398. "suggest": {
  399. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  400. },
  401. "type": "library",
  402. "autoload": {
  403. "psr-4": {
  404. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  405. }
  406. },
  407. "notification-url": "https://packagist.org/downloads/",
  408. "license": [
  409. "MIT"
  410. ],
  411. "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.",
  412. "homepage": "https://www.doctrine-project.org/",
  413. "time": "2021-03-21T12:59:47+00:00"
  414. },
  415. {
  416. "name": "doctrine/event-manager",
  417. "version": "1.1.1",
  418. "dist": {
  419. "type": "zip",
  420. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  421. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  422. "shasum": ""
  423. },
  424. "require": {
  425. "php": "^7.1 || ^8.0"
  426. },
  427. "conflict": {
  428. "doctrine/common": "<2.9@dev"
  429. },
  430. "require-dev": {
  431. "doctrine/coding-standard": "^6.0",
  432. "phpunit/phpunit": "^7.0"
  433. },
  434. "type": "library",
  435. "extra": {
  436. "branch-alias": {
  437. "dev-master": "1.0.x-dev"
  438. }
  439. },
  440. "autoload": {
  441. "psr-4": {
  442. "Doctrine\\Common\\": "lib/Doctrine/Common"
  443. }
  444. },
  445. "notification-url": "https://packagist.org/downloads/",
  446. "license": [
  447. "MIT"
  448. ],
  449. "authors": [
  450. {
  451. "name": "Guilherme Blanco",
  452. "email": "guilhermeblanco@gmail.com"
  453. },
  454. {
  455. "name": "Roman Borschel",
  456. "email": "roman@code-factory.org"
  457. },
  458. {
  459. "name": "Benjamin Eberlei",
  460. "email": "kontakt@beberlei.de"
  461. },
  462. {
  463. "name": "Jonathan Wage",
  464. "email": "jonwage@gmail.com"
  465. },
  466. {
  467. "name": "Johannes Schmitt",
  468. "email": "schmittjoh@gmail.com"
  469. },
  470. {
  471. "name": "Marco Pivetta",
  472. "email": "ocramius@gmail.com"
  473. }
  474. ],
  475. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  476. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  477. "keywords": [
  478. "event",
  479. "event dispatcher",
  480. "event manager",
  481. "event system",
  482. "events"
  483. ],
  484. "time": "2020-05-29T18:28:51+00:00"
  485. },
  486. {
  487. "name": "doctrine/inflector",
  488. "version": "1.4.4",
  489. "dist": {
  490. "type": "zip",
  491. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/doctrine/inflector/1.4.4/doctrine-inflector-1.4.4.zip",
  492. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  493. "shasum": ""
  494. },
  495. "require": {
  496. "php": "^7.1 || ^8.0"
  497. },
  498. "require-dev": {
  499. "doctrine/coding-standard": "^8.0",
  500. "phpstan/phpstan": "^0.12",
  501. "phpstan/phpstan-phpunit": "^0.12",
  502. "phpstan/phpstan-strict-rules": "^0.12",
  503. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  504. },
  505. "type": "library",
  506. "extra": {
  507. "branch-alias": {
  508. "dev-master": "2.0.x-dev"
  509. }
  510. },
  511. "autoload": {
  512. "psr-4": {
  513. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  514. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  515. }
  516. },
  517. "license": [
  518. "MIT"
  519. ],
  520. "authors": [
  521. {
  522. "name": "Guilherme Blanco",
  523. "email": "guilhermeblanco@gmail.com"
  524. },
  525. {
  526. "name": "Roman Borschel",
  527. "email": "roman@code-factory.org"
  528. },
  529. {
  530. "name": "Benjamin Eberlei",
  531. "email": "kontakt@beberlei.de"
  532. },
  533. {
  534. "name": "Jonathan Wage",
  535. "email": "jonwage@gmail.com"
  536. },
  537. {
  538. "name": "Johannes Schmitt",
  539. "email": "schmittjoh@gmail.com"
  540. }
  541. ],
  542. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  543. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  544. "keywords": [
  545. "inflection",
  546. "inflector",
  547. "lowercase",
  548. "manipulation",
  549. "php",
  550. "plural",
  551. "singular",
  552. "strings",
  553. "uppercase",
  554. "words"
  555. ],
  556. "funding": [
  557. {
  558. "url": "https://www.doctrine-project.org/sponsorship.html",
  559. "type": "custom"
  560. },
  561. {
  562. "url": "https://www.patreon.com/phpdoctrine",
  563. "type": "patreon"
  564. },
  565. {
  566. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  567. "type": "tidelift"
  568. }
  569. ],
  570. "time": "2021-04-16T17:34:40+00:00"
  571. },
  572. {
  573. "name": "doctrine/lexer",
  574. "version": "1.2.3",
  575. "dist": {
  576. "type": "zip",
  577. "url": "https://mirrors.tencent.com/repository/composer/doctrine/lexer/1.2.3/doctrine-lexer-1.2.3.zip",
  578. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  579. "shasum": ""
  580. },
  581. "require": {
  582. "php": "^7.1 || ^8.0"
  583. },
  584. "require-dev": {
  585. "doctrine/coding-standard": "^9.0",
  586. "phpstan/phpstan": "^1.3",
  587. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  588. "vimeo/psalm": "^4.11"
  589. },
  590. "type": "library",
  591. "autoload": {
  592. "psr-4": {
  593. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  594. }
  595. },
  596. "license": [
  597. "MIT"
  598. ],
  599. "authors": [
  600. {
  601. "name": "Guilherme Blanco",
  602. "email": "guilhermeblanco@gmail.com"
  603. },
  604. {
  605. "name": "Roman Borschel",
  606. "email": "roman@code-factory.org"
  607. },
  608. {
  609. "name": "Johannes Schmitt",
  610. "email": "schmittjoh@gmail.com"
  611. }
  612. ],
  613. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  614. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  615. "keywords": [
  616. "annotations",
  617. "docblock",
  618. "lexer",
  619. "parser",
  620. "php"
  621. ],
  622. "time": "2022-02-28T11:07:21+00:00"
  623. },
  624. {
  625. "name": "dragonmantank/cron-expression",
  626. "version": "v2.3.1",
  627. "dist": {
  628. "type": "zip",
  629. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  630. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  631. "shasum": ""
  632. },
  633. "require": {
  634. "php": "^7.0|^8.0"
  635. },
  636. "require-dev": {
  637. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  638. },
  639. "type": "library",
  640. "extra": {
  641. "branch-alias": {
  642. "dev-master": "2.3-dev"
  643. }
  644. },
  645. "autoload": {
  646. "psr-4": {
  647. "Cron\\": "src/Cron/"
  648. }
  649. },
  650. "notification-url": "https://packagist.org/downloads/",
  651. "license": [
  652. "MIT"
  653. ],
  654. "authors": [
  655. {
  656. "name": "Michael Dowling",
  657. "email": "mtdowling@gmail.com",
  658. "homepage": "https://github.com/mtdowling"
  659. },
  660. {
  661. "name": "Chris Tankersley",
  662. "email": "chris@ctankersley.com",
  663. "homepage": "https://github.com/dragonmantank"
  664. }
  665. ],
  666. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  667. "keywords": [
  668. "cron",
  669. "schedule"
  670. ],
  671. "time": "2020-10-13T00:52:37+00:00"
  672. },
  673. {
  674. "name": "egulias/email-validator",
  675. "version": "2.1.25",
  676. "dist": {
  677. "type": "zip",
  678. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  679. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  680. "shasum": ""
  681. },
  682. "require": {
  683. "doctrine/lexer": "^1.0.1",
  684. "php": ">=5.5",
  685. "symfony/polyfill-intl-idn": "^1.10"
  686. },
  687. "require-dev": {
  688. "dominicsayers/isemail": "^3.0.7",
  689. "phpunit/phpunit": "^4.8.36|^7.5.15",
  690. "satooshi/php-coveralls": "^1.0.1"
  691. },
  692. "suggest": {
  693. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  694. },
  695. "type": "library",
  696. "extra": {
  697. "branch-alias": {
  698. "dev-master": "2.1.x-dev"
  699. }
  700. },
  701. "autoload": {
  702. "psr-4": {
  703. "Egulias\\EmailValidator\\": "src"
  704. }
  705. },
  706. "notification-url": "https://packagist.org/downloads/",
  707. "license": [
  708. "MIT"
  709. ],
  710. "authors": [
  711. {
  712. "name": "Eduardo Gulias Davis"
  713. }
  714. ],
  715. "description": "A library for validating emails against several RFCs",
  716. "homepage": "https://github.com/egulias/EmailValidator",
  717. "keywords": [
  718. "email",
  719. "emailvalidation",
  720. "emailvalidator",
  721. "validation",
  722. "validator"
  723. ],
  724. "time": "2020-12-29T14:50:06+00:00"
  725. },
  726. {
  727. "name": "erusev/parsedown",
  728. "version": "1.7.4",
  729. "dist": {
  730. "type": "zip",
  731. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  732. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  733. "shasum": ""
  734. },
  735. "require": {
  736. "ext-mbstring": "*",
  737. "php": ">=5.3.0"
  738. },
  739. "require-dev": {
  740. "phpunit/phpunit": "^4.8.35"
  741. },
  742. "type": "library",
  743. "autoload": {
  744. "psr-0": {
  745. "Parsedown": ""
  746. }
  747. },
  748. "notification-url": "https://packagist.org/downloads/",
  749. "license": [
  750. "MIT"
  751. ],
  752. "authors": [
  753. {
  754. "name": "Emanuil Rusev",
  755. "email": "hello@erusev.com",
  756. "homepage": "http://erusev.com"
  757. }
  758. ],
  759. "description": "Parser for Markdown.",
  760. "homepage": "http://parsedown.org",
  761. "keywords": [
  762. "markdown",
  763. "parser"
  764. ],
  765. "time": "2019-12-30T22:54:17+00:00"
  766. },
  767. {
  768. "name": "ezyang/htmlpurifier",
  769. "version": "v4.14.0",
  770. "dist": {
  771. "type": "zip",
  772. "url": "https://mirrors.tencent.com/repository/composer/ezyang/htmlpurifier/v4.14.0/ezyang-htmlpurifier-v4.14.0.zip",
  773. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  774. "shasum": ""
  775. },
  776. "require": {
  777. "php": ">=5.2"
  778. },
  779. "type": "library",
  780. "autoload": {
  781. "files": [
  782. "library/HTMLPurifier.composer.php"
  783. ],
  784. "psr-0": {
  785. "HTMLPurifier": "library/"
  786. },
  787. "exclude-from-classmap": [
  788. "/library/HTMLPurifier/Language/"
  789. ]
  790. },
  791. "license": [
  792. "LGPL-2.1-or-later"
  793. ],
  794. "authors": [
  795. {
  796. "name": "Edward Z. Yang",
  797. "email": "admin@htmlpurifier.org",
  798. "homepage": "http://ezyang.com"
  799. }
  800. ],
  801. "description": "Standards compliant HTML filter written in PHP",
  802. "homepage": "http://htmlpurifier.org/",
  803. "keywords": [
  804. "html"
  805. ],
  806. "time": "2021-12-25T01:21:49+00:00"
  807. },
  808. {
  809. "name": "fideloper/proxy",
  810. "version": "4.4.1",
  811. "dist": {
  812. "type": "zip",
  813. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  814. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  815. "shasum": ""
  816. },
  817. "require": {
  818. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  819. "php": ">=5.4.0"
  820. },
  821. "require-dev": {
  822. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  823. "mockery/mockery": "^1.0",
  824. "phpunit/phpunit": "^6.0"
  825. },
  826. "type": "library",
  827. "extra": {
  828. "laravel": {
  829. "providers": [
  830. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  831. ]
  832. }
  833. },
  834. "autoload": {
  835. "psr-4": {
  836. "Fideloper\\Proxy\\": "src/"
  837. }
  838. },
  839. "notification-url": "https://packagist.org/downloads/",
  840. "license": [
  841. "MIT"
  842. ],
  843. "authors": [
  844. {
  845. "name": "Chris Fidao",
  846. "email": "fideloper@gmail.com"
  847. }
  848. ],
  849. "description": "Set trusted proxies for Laravel",
  850. "keywords": [
  851. "load balancing",
  852. "proxy",
  853. "trusted proxy"
  854. ],
  855. "time": "2020-10-22T13:48:01+00:00"
  856. },
  857. {
  858. "name": "firebase/php-jwt",
  859. "version": "v5.5.1",
  860. "dist": {
  861. "type": "zip",
  862. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/firebase/php-jwt/v5.5.1/firebase-php-jwt-v5.5.1.zip",
  863. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6",
  864. "shasum": ""
  865. },
  866. "require": {
  867. "php": ">=5.3.0"
  868. },
  869. "require-dev": {
  870. "phpunit/phpunit": ">=4.8 <=9"
  871. },
  872. "suggest": {
  873. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  874. },
  875. "type": "library",
  876. "autoload": {
  877. "psr-4": {
  878. "Firebase\\JWT\\": "src"
  879. }
  880. },
  881. "license": [
  882. "BSD-3-Clause"
  883. ],
  884. "authors": [
  885. {
  886. "name": "Neuman Vong",
  887. "email": "neuman+pear@twilio.com",
  888. "role": "Developer"
  889. },
  890. {
  891. "name": "Anant Narayanan",
  892. "email": "anant@php.net",
  893. "role": "Developer"
  894. }
  895. ],
  896. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  897. "homepage": "https://github.com/firebase/php-jwt",
  898. "keywords": [
  899. "jwt",
  900. "php"
  901. ],
  902. "time": "2021-11-08T20:18:51+00:00"
  903. },
  904. {
  905. "name": "guzzlehttp/guzzle",
  906. "version": "6.5.5",
  907. "dist": {
  908. "type": "zip",
  909. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  910. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  911. "shasum": ""
  912. },
  913. "require": {
  914. "ext-json": "*",
  915. "guzzlehttp/promises": "^1.0",
  916. "guzzlehttp/psr7": "^1.6.1",
  917. "php": ">=5.5",
  918. "symfony/polyfill-intl-idn": "^1.17.0"
  919. },
  920. "require-dev": {
  921. "ext-curl": "*",
  922. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  923. "psr/log": "^1.1"
  924. },
  925. "suggest": {
  926. "psr/log": "Required for using the Log middleware"
  927. },
  928. "type": "library",
  929. "extra": {
  930. "branch-alias": {
  931. "dev-master": "6.5-dev"
  932. }
  933. },
  934. "autoload": {
  935. "psr-4": {
  936. "GuzzleHttp\\": "src/"
  937. },
  938. "files": [
  939. "src/functions_include.php"
  940. ]
  941. },
  942. "notification-url": "https://packagist.org/downloads/",
  943. "license": [
  944. "MIT"
  945. ],
  946. "authors": [
  947. {
  948. "name": "Michael Dowling",
  949. "email": "mtdowling@gmail.com",
  950. "homepage": "https://github.com/mtdowling"
  951. }
  952. ],
  953. "description": "Guzzle is a PHP HTTP client library",
  954. "homepage": "http://guzzlephp.org/",
  955. "keywords": [
  956. "client",
  957. "curl",
  958. "framework",
  959. "http",
  960. "http client",
  961. "rest",
  962. "web service"
  963. ],
  964. "time": "2020-06-16T21:01:06+00:00"
  965. },
  966. {
  967. "name": "guzzlehttp/promises",
  968. "version": "1.5.1",
  969. "dist": {
  970. "type": "zip",
  971. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/guzzlehttp/promises/1.5.1/guzzlehttp-promises-1.5.1.zip",
  972. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  973. "shasum": ""
  974. },
  975. "require": {
  976. "php": ">=5.5"
  977. },
  978. "require-dev": {
  979. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  980. },
  981. "type": "library",
  982. "extra": {
  983. "branch-alias": {
  984. "dev-master": "1.5-dev"
  985. }
  986. },
  987. "autoload": {
  988. "psr-4": {
  989. "GuzzleHttp\\Promise\\": "src/"
  990. },
  991. "files": [
  992. "src/functions_include.php"
  993. ]
  994. },
  995. "license": [
  996. "MIT"
  997. ],
  998. "authors": [
  999. {
  1000. "name": "Graham Campbell",
  1001. "email": "hello@gjcampbell.co.uk",
  1002. "homepage": "https://github.com/GrahamCampbell"
  1003. },
  1004. {
  1005. "name": "Michael Dowling",
  1006. "email": "mtdowling@gmail.com",
  1007. "homepage": "https://github.com/mtdowling"
  1008. },
  1009. {
  1010. "name": "Tobias Nyholm",
  1011. "email": "tobias.nyholm@gmail.com",
  1012. "homepage": "https://github.com/Nyholm"
  1013. },
  1014. {
  1015. "name": "Tobias Schultze",
  1016. "email": "webmaster@tubo-world.de",
  1017. "homepage": "https://github.com/Tobion"
  1018. }
  1019. ],
  1020. "description": "Guzzle promises library",
  1021. "keywords": [
  1022. "promise"
  1023. ],
  1024. "funding": [
  1025. {
  1026. "url": "https://github.com/GrahamCampbell",
  1027. "type": "github"
  1028. },
  1029. {
  1030. "url": "https://github.com/Nyholm",
  1031. "type": "github"
  1032. },
  1033. {
  1034. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1035. "type": "tidelift"
  1036. }
  1037. ],
  1038. "time": "2021-10-22T20:56:57+00:00"
  1039. },
  1040. {
  1041. "name": "guzzlehttp/psr7",
  1042. "version": "1.8.3",
  1043. "dist": {
  1044. "type": "zip",
  1045. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/guzzlehttp/psr7/1.8.3/guzzlehttp-psr7-1.8.3.zip",
  1046. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  1047. "shasum": ""
  1048. },
  1049. "require": {
  1050. "php": ">=5.4.0",
  1051. "psr/http-message": "~1.0",
  1052. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1053. },
  1054. "provide": {
  1055. "psr/http-message-implementation": "1.0"
  1056. },
  1057. "require-dev": {
  1058. "ext-zlib": "*",
  1059. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1060. },
  1061. "suggest": {
  1062. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1063. },
  1064. "type": "library",
  1065. "extra": {
  1066. "branch-alias": {
  1067. "dev-master": "1.7-dev"
  1068. }
  1069. },
  1070. "autoload": {
  1071. "files": [
  1072. "src/functions_include.php"
  1073. ],
  1074. "psr-4": {
  1075. "GuzzleHttp\\Psr7\\": "src/"
  1076. }
  1077. },
  1078. "license": [
  1079. "MIT"
  1080. ],
  1081. "authors": [
  1082. {
  1083. "name": "Graham Campbell",
  1084. "email": "hello@gjcampbell.co.uk",
  1085. "homepage": "https://github.com/GrahamCampbell"
  1086. },
  1087. {
  1088. "name": "Michael Dowling",
  1089. "email": "mtdowling@gmail.com",
  1090. "homepage": "https://github.com/mtdowling"
  1091. },
  1092. {
  1093. "name": "George Mponos",
  1094. "email": "gmponos@gmail.com",
  1095. "homepage": "https://github.com/gmponos"
  1096. },
  1097. {
  1098. "name": "Tobias Nyholm",
  1099. "email": "tobias.nyholm@gmail.com",
  1100. "homepage": "https://github.com/Nyholm"
  1101. },
  1102. {
  1103. "name": "Márk Sági-Kazár",
  1104. "email": "mark.sagikazar@gmail.com",
  1105. "homepage": "https://github.com/sagikazarmark"
  1106. },
  1107. {
  1108. "name": "Tobias Schultze",
  1109. "email": "webmaster@tubo-world.de",
  1110. "homepage": "https://github.com/Tobion"
  1111. }
  1112. ],
  1113. "description": "PSR-7 message implementation that also provides common utility methods",
  1114. "keywords": [
  1115. "http",
  1116. "message",
  1117. "psr-7",
  1118. "request",
  1119. "response",
  1120. "stream",
  1121. "uri",
  1122. "url"
  1123. ],
  1124. "funding": [
  1125. {
  1126. "url": "https://github.com/GrahamCampbell",
  1127. "type": "github"
  1128. },
  1129. {
  1130. "url": "https://github.com/Nyholm",
  1131. "type": "github"
  1132. },
  1133. {
  1134. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1135. "type": "tidelift"
  1136. }
  1137. ],
  1138. "time": "2021-10-05T13:56:00+00:00"
  1139. },
  1140. {
  1141. "name": "jacobcyl/ali-oss-storage",
  1142. "version": "2.1.0",
  1143. "dist": {
  1144. "type": "zip",
  1145. "url": "https://api.github.com/repos/jacobcyl/Aliyun-oss-storage/zipball/c0cb9ba1d3faf22a1e04a03602aac90a187b5959",
  1146. "reference": "c0cb9ba1d3faf22a1e04a03602aac90a187b5959",
  1147. "shasum": ""
  1148. },
  1149. "require": {
  1150. "aliyuncs/oss-sdk-php": "~2.0"
  1151. },
  1152. "type": "library",
  1153. "extra": {
  1154. "laravel": {
  1155. "providers": [
  1156. "Jacobcyl\\AliOSS\\AliOssServiceProvider"
  1157. ]
  1158. }
  1159. },
  1160. "autoload": {
  1161. "psr-4": {
  1162. "Jacobcyl\\AliOSS\\": "src/"
  1163. }
  1164. },
  1165. "notification-url": "https://packagist.org/downloads/",
  1166. "license": [
  1167. "MIT"
  1168. ],
  1169. "authors": [
  1170. {
  1171. "name": "jacobcyl",
  1172. "email": "cyl.jacob@gmail.com"
  1173. }
  1174. ],
  1175. "description": "aliyun oss filesystem storage for laravel 5+",
  1176. "homepage": "http://jacobcyl.github.io/Aliyun-oss-storage/",
  1177. "keywords": [
  1178. "aliyun",
  1179. "filesystems",
  1180. "laravel",
  1181. "oss",
  1182. "storage"
  1183. ],
  1184. "time": "2018-04-02T03:44:01+00:00"
  1185. },
  1186. {
  1187. "name": "laravel/framework",
  1188. "version": "v5.8.38",
  1189. "dist": {
  1190. "type": "zip",
  1191. "url": "https://api.github.com/repos/laravel/framework/zipball/78eb4dabcc03e189620c16f436358d41d31ae11f",
  1192. "reference": "78eb4dabcc03e189620c16f436358d41d31ae11f",
  1193. "shasum": ""
  1194. },
  1195. "require": {
  1196. "doctrine/inflector": "^1.1",
  1197. "dragonmantank/cron-expression": "^2.0",
  1198. "egulias/email-validator": "^2.0",
  1199. "erusev/parsedown": "^1.7",
  1200. "ext-json": "*",
  1201. "ext-mbstring": "*",
  1202. "ext-openssl": "*",
  1203. "league/flysystem": "^1.0.8",
  1204. "monolog/monolog": "^1.12",
  1205. "nesbot/carbon": "^1.26.3 || ^2.0",
  1206. "opis/closure": "^3.1",
  1207. "php": "^7.1.3",
  1208. "psr/container": "^1.0",
  1209. "psr/simple-cache": "^1.0",
  1210. "ramsey/uuid": "^3.7",
  1211. "swiftmailer/swiftmailer": "^6.0",
  1212. "symfony/console": "^4.2",
  1213. "symfony/debug": "^4.2",
  1214. "symfony/finder": "^4.2",
  1215. "symfony/http-foundation": "^4.2",
  1216. "symfony/http-kernel": "^4.2",
  1217. "symfony/process": "^4.2",
  1218. "symfony/routing": "^4.2",
  1219. "symfony/var-dumper": "^4.2",
  1220. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  1221. "vlucas/phpdotenv": "^3.3"
  1222. },
  1223. "conflict": {
  1224. "tightenco/collect": "<5.5.33"
  1225. },
  1226. "replace": {
  1227. "illuminate/auth": "self.version",
  1228. "illuminate/broadcasting": "self.version",
  1229. "illuminate/bus": "self.version",
  1230. "illuminate/cache": "self.version",
  1231. "illuminate/config": "self.version",
  1232. "illuminate/console": "self.version",
  1233. "illuminate/container": "self.version",
  1234. "illuminate/contracts": "self.version",
  1235. "illuminate/cookie": "self.version",
  1236. "illuminate/database": "self.version",
  1237. "illuminate/encryption": "self.version",
  1238. "illuminate/events": "self.version",
  1239. "illuminate/filesystem": "self.version",
  1240. "illuminate/hashing": "self.version",
  1241. "illuminate/http": "self.version",
  1242. "illuminate/log": "self.version",
  1243. "illuminate/mail": "self.version",
  1244. "illuminate/notifications": "self.version",
  1245. "illuminate/pagination": "self.version",
  1246. "illuminate/pipeline": "self.version",
  1247. "illuminate/queue": "self.version",
  1248. "illuminate/redis": "self.version",
  1249. "illuminate/routing": "self.version",
  1250. "illuminate/session": "self.version",
  1251. "illuminate/support": "self.version",
  1252. "illuminate/translation": "self.version",
  1253. "illuminate/validation": "self.version",
  1254. "illuminate/view": "self.version"
  1255. },
  1256. "require-dev": {
  1257. "aws/aws-sdk-php": "^3.0",
  1258. "doctrine/dbal": "^2.6",
  1259. "filp/whoops": "^2.1.4",
  1260. "guzzlehttp/guzzle": "^6.3",
  1261. "league/flysystem-cached-adapter": "^1.0",
  1262. "mockery/mockery": "^1.0",
  1263. "moontoast/math": "^1.1",
  1264. "orchestra/testbench-core": "3.8.*",
  1265. "pda/pheanstalk": "^4.0",
  1266. "phpunit/phpunit": "^7.5|^8.0",
  1267. "predis/predis": "^1.1.1",
  1268. "symfony/css-selector": "^4.2",
  1269. "symfony/dom-crawler": "^4.2",
  1270. "true/punycode": "^2.1"
  1271. },
  1272. "suggest": {
  1273. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (^3.0).",
  1274. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1275. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1276. "ext-pcntl": "Required to use all features of the queue worker.",
  1277. "ext-posix": "Required to use all features of the queue worker.",
  1278. "filp/whoops": "Required for friendly error pages in development (^2.1.4).",
  1279. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).",
  1280. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (^6.0).",
  1281. "laravel/tinker": "Required to use the tinker console command (^1.0).",
  1282. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1283. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1284. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (^1.0).",
  1285. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1286. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1287. "nexmo/client": "Required to use the Nexmo transport (^1.0).",
  1288. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1289. "predis/predis": "Required to use the redis cache and queue drivers (^1.0).",
  1290. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^3.0).",
  1291. "symfony/css-selector": "Required to use some of the crawler integration testing tools (^4.2).",
  1292. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (^4.2).",
  1293. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.1).",
  1294. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1295. },
  1296. "type": "library",
  1297. "extra": {
  1298. "branch-alias": {
  1299. "dev-master": "5.8-dev"
  1300. }
  1301. },
  1302. "autoload": {
  1303. "files": [
  1304. "src/Illuminate/Foundation/helpers.php",
  1305. "src/Illuminate/Support/helpers.php"
  1306. ],
  1307. "psr-4": {
  1308. "Illuminate\\": "src/Illuminate/"
  1309. }
  1310. },
  1311. "notification-url": "https://packagist.org/downloads/",
  1312. "license": [
  1313. "MIT"
  1314. ],
  1315. "authors": [
  1316. {
  1317. "name": "Taylor Otwell",
  1318. "email": "taylor@laravel.com"
  1319. }
  1320. ],
  1321. "description": "The Laravel Framework.",
  1322. "homepage": "https://laravel.com",
  1323. "keywords": [
  1324. "framework",
  1325. "laravel"
  1326. ],
  1327. "time": "2020-04-14T14:14:36+00:00"
  1328. },
  1329. {
  1330. "name": "laravel/passport",
  1331. "version": "v7.5.1",
  1332. "dist": {
  1333. "type": "zip",
  1334. "url": "https://api.github.com/repos/laravel/passport/zipball/d63cdd672c3d65b3c35b73d0ef13a9dbfcb71c08",
  1335. "reference": "d63cdd672c3d65b3c35b73d0ef13a9dbfcb71c08",
  1336. "shasum": ""
  1337. },
  1338. "require": {
  1339. "ext-json": "*",
  1340. "firebase/php-jwt": "~3.0|~4.0|~5.0",
  1341. "guzzlehttp/guzzle": "~6.0",
  1342. "illuminate/auth": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1343. "illuminate/console": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1344. "illuminate/container": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1345. "illuminate/contracts": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1346. "illuminate/cookie": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1347. "illuminate/database": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1348. "illuminate/encryption": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1349. "illuminate/http": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1350. "illuminate/support": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
  1351. "league/oauth2-server": "^7.0",
  1352. "php": ">=7.1",
  1353. "phpseclib/phpseclib": "^2.0",
  1354. "symfony/psr-http-message-bridge": "~1.0",
  1355. "zendframework/zend-diactoros": "~1.0|~2.0"
  1356. },
  1357. "require-dev": {
  1358. "mockery/mockery": "^1.0",
  1359. "phpunit/phpunit": "^7.4|^8.0"
  1360. },
  1361. "type": "library",
  1362. "extra": {
  1363. "branch-alias": {
  1364. "dev-master": "7.0-dev"
  1365. },
  1366. "laravel": {
  1367. "providers": [
  1368. "Laravel\\Passport\\PassportServiceProvider"
  1369. ]
  1370. }
  1371. },
  1372. "autoload": {
  1373. "psr-4": {
  1374. "Laravel\\Passport\\": "src/"
  1375. }
  1376. },
  1377. "notification-url": "https://packagist.org/downloads/",
  1378. "license": [
  1379. "MIT"
  1380. ],
  1381. "authors": [
  1382. {
  1383. "name": "Taylor Otwell",
  1384. "email": "taylor@laravel.com"
  1385. }
  1386. ],
  1387. "description": "Laravel Passport provides OAuth2 server support to Laravel.",
  1388. "keywords": [
  1389. "laravel",
  1390. "oauth",
  1391. "passport"
  1392. ],
  1393. "time": "2019-10-08T16:45:24+00:00"
  1394. },
  1395. {
  1396. "name": "laravel/tinker",
  1397. "version": "v1.0.10",
  1398. "dist": {
  1399. "type": "zip",
  1400. "url": "https://api.github.com/repos/laravel/tinker/zipball/ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  1401. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  1402. "shasum": ""
  1403. },
  1404. "require": {
  1405. "illuminate/console": "~5.1|^6.0",
  1406. "illuminate/contracts": "~5.1|^6.0",
  1407. "illuminate/support": "~5.1|^6.0",
  1408. "php": ">=5.5.9",
  1409. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  1410. "symfony/var-dumper": "~3.0|~4.0"
  1411. },
  1412. "require-dev": {
  1413. "phpunit/phpunit": "~4.0|~5.0"
  1414. },
  1415. "suggest": {
  1416. "illuminate/database": "The Illuminate Database package (~5.1)."
  1417. },
  1418. "type": "library",
  1419. "extra": {
  1420. "branch-alias": {
  1421. "dev-master": "1.0-dev"
  1422. },
  1423. "laravel": {
  1424. "providers": [
  1425. "Laravel\\Tinker\\TinkerServiceProvider"
  1426. ]
  1427. }
  1428. },
  1429. "autoload": {
  1430. "psr-4": {
  1431. "Laravel\\Tinker\\": "src/"
  1432. }
  1433. },
  1434. "notification-url": "https://packagist.org/downloads/",
  1435. "license": [
  1436. "MIT"
  1437. ],
  1438. "authors": [
  1439. {
  1440. "name": "Taylor Otwell",
  1441. "email": "taylor@laravel.com"
  1442. }
  1443. ],
  1444. "description": "Powerful REPL for the Laravel framework.",
  1445. "keywords": [
  1446. "REPL",
  1447. "Tinker",
  1448. "laravel",
  1449. "psysh"
  1450. ],
  1451. "time": "2019-08-07T15:10:45+00:00"
  1452. },
  1453. {
  1454. "name": "lcobucci/jwt",
  1455. "version": "3.3.3",
  1456. "dist": {
  1457. "type": "zip",
  1458. "url": "https://mirrors.tencent.com/repository/composer/lcobucci/jwt/3.3.3/lcobucci-jwt-3.3.3.zip",
  1459. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  1460. "shasum": ""
  1461. },
  1462. "require": {
  1463. "ext-mbstring": "*",
  1464. "ext-openssl": "*",
  1465. "php": "^5.6 || ^7.0"
  1466. },
  1467. "require-dev": {
  1468. "mikey179/vfsstream": "~1.5",
  1469. "phpmd/phpmd": "~2.2",
  1470. "phpunit/php-invoker": "~1.1",
  1471. "phpunit/phpunit": "^5.7 || ^7.3",
  1472. "squizlabs/php_codesniffer": "~2.3"
  1473. },
  1474. "type": "library",
  1475. "extra": {
  1476. "branch-alias": {
  1477. "dev-master": "3.1-dev"
  1478. }
  1479. },
  1480. "autoload": {
  1481. "psr-4": {
  1482. "Lcobucci\\JWT\\": "src"
  1483. }
  1484. },
  1485. "license": [
  1486. "BSD-3-Clause"
  1487. ],
  1488. "authors": [
  1489. {
  1490. "name": "Luís Otávio Cobucci Oblonczyk",
  1491. "email": "lcobucci@gmail.com",
  1492. "role": "Developer"
  1493. }
  1494. ],
  1495. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1496. "keywords": [
  1497. "JWS",
  1498. "jwt"
  1499. ],
  1500. "time": "2020-08-20T13:22:28+00:00"
  1501. },
  1502. {
  1503. "name": "league/event",
  1504. "version": "2.2.0",
  1505. "dist": {
  1506. "type": "zip",
  1507. "url": "https://api.github.com/repos/thephpleague/event/zipball/d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  1508. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  1509. "shasum": ""
  1510. },
  1511. "require": {
  1512. "php": ">=5.4.0"
  1513. },
  1514. "require-dev": {
  1515. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  1516. "phpspec/phpspec": "^2.2"
  1517. },
  1518. "type": "library",
  1519. "extra": {
  1520. "branch-alias": {
  1521. "dev-master": "2.2-dev"
  1522. }
  1523. },
  1524. "autoload": {
  1525. "psr-4": {
  1526. "League\\Event\\": "src/"
  1527. }
  1528. },
  1529. "notification-url": "https://packagist.org/downloads/",
  1530. "license": [
  1531. "MIT"
  1532. ],
  1533. "authors": [
  1534. {
  1535. "name": "Frank de Jonge",
  1536. "email": "info@frenky.net"
  1537. }
  1538. ],
  1539. "description": "Event package",
  1540. "keywords": [
  1541. "emitter",
  1542. "event",
  1543. "listener"
  1544. ],
  1545. "time": "2018-11-26T11:52:41+00:00"
  1546. },
  1547. {
  1548. "name": "league/flysystem",
  1549. "version": "1.0.46",
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://mirrors.tencent.com/repository/composer/league/flysystem/1.0.46/league-flysystem-1.0.46.zip",
  1553. "reference": "f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "php": ">=5.5.9"
  1558. },
  1559. "conflict": {
  1560. "league/flysystem-sftp": "<1.0.6"
  1561. },
  1562. "require-dev": {
  1563. "ext-fileinfo": "*",
  1564. "phpspec/phpspec": "^3.4",
  1565. "phpunit/phpunit": "^5.7.10"
  1566. },
  1567. "suggest": {
  1568. "ext-fileinfo": "Required for MimeType",
  1569. "ext-ftp": "Allows you to use FTP server storage",
  1570. "ext-openssl": "Allows you to use FTPS server storage",
  1571. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1572. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1573. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1574. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1575. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1576. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1577. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1578. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1579. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1580. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1581. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1582. },
  1583. "type": "library",
  1584. "extra": {
  1585. "branch-alias": {
  1586. "dev-master": "1.1-dev"
  1587. }
  1588. },
  1589. "autoload": {
  1590. "psr-4": {
  1591. "League\\Flysystem\\": "src/"
  1592. }
  1593. },
  1594. "license": [
  1595. "MIT"
  1596. ],
  1597. "authors": [
  1598. {
  1599. "name": "Frank de Jonge",
  1600. "email": "info@frenky.net"
  1601. }
  1602. ],
  1603. "description": "Filesystem abstraction: Many filesystems, one API.",
  1604. "keywords": [
  1605. "Cloud Files",
  1606. "WebDAV",
  1607. "abstraction",
  1608. "aws",
  1609. "cloud",
  1610. "copy.com",
  1611. "dropbox",
  1612. "file systems",
  1613. "files",
  1614. "filesystem",
  1615. "filesystems",
  1616. "ftp",
  1617. "rackspace",
  1618. "remote",
  1619. "s3",
  1620. "sftp",
  1621. "storage"
  1622. ],
  1623. "time": "2018-08-22T07:45:22+00:00"
  1624. },
  1625. {
  1626. "name": "league/oauth2-server",
  1627. "version": "7.4.0",
  1628. "dist": {
  1629. "type": "zip",
  1630. "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/2eb1cf79e59d807d89c256e7ac5e2bf8bdbd4acf",
  1631. "reference": "2eb1cf79e59d807d89c256e7ac5e2bf8bdbd4acf",
  1632. "shasum": ""
  1633. },
  1634. "require": {
  1635. "defuse/php-encryption": "^2.1",
  1636. "ext-openssl": "*",
  1637. "lcobucci/jwt": "^3.2.2",
  1638. "league/event": "^2.1",
  1639. "php": ">=7.0.0",
  1640. "psr/http-message": "^1.0.1"
  1641. },
  1642. "replace": {
  1643. "league/oauth2server": "*",
  1644. "lncd/oauth2": "*"
  1645. },
  1646. "require-dev": {
  1647. "phpstan/phpstan": "^0.9.2",
  1648. "phpstan/phpstan-phpunit": "^0.9.4",
  1649. "phpstan/phpstan-strict-rules": "^0.9.0",
  1650. "phpunit/phpunit": "^6.3 || ^7.0",
  1651. "roave/security-advisories": "dev-master",
  1652. "zendframework/zend-diactoros": "^1.3.2"
  1653. },
  1654. "type": "library",
  1655. "autoload": {
  1656. "psr-4": {
  1657. "League\\OAuth2\\Server\\": "src/"
  1658. }
  1659. },
  1660. "notification-url": "https://packagist.org/downloads/",
  1661. "license": [
  1662. "MIT"
  1663. ],
  1664. "authors": [
  1665. {
  1666. "name": "Alex Bilbie",
  1667. "email": "hello@alexbilbie.com",
  1668. "homepage": "http://www.alexbilbie.com",
  1669. "role": "Developer"
  1670. },
  1671. {
  1672. "name": "Andy Millington",
  1673. "email": "andrew@noexceptions.io",
  1674. "homepage": "https://www.noexceptions.io",
  1675. "role": "Developer"
  1676. }
  1677. ],
  1678. "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.",
  1679. "homepage": "https://oauth2.thephpleague.com/",
  1680. "keywords": [
  1681. "Authentication",
  1682. "api",
  1683. "auth",
  1684. "authorisation",
  1685. "authorization",
  1686. "oauth",
  1687. "oauth 2",
  1688. "oauth 2.0",
  1689. "oauth2",
  1690. "protect",
  1691. "resource",
  1692. "secure",
  1693. "server"
  1694. ],
  1695. "time": "2019-05-05T09:22:01+00:00"
  1696. },
  1697. {
  1698. "name": "maatwebsite/excel",
  1699. "version": "3.1.40",
  1700. "dist": {
  1701. "type": "zip",
  1702. "url": "https://mirrors.tencent.com/repository/composer/maatwebsite/excel/3.1.40/maatwebsite-excel-3.1.40.zip",
  1703. "reference": "8a54972e3d616c74687c3cbff15765555761885c",
  1704. "shasum": ""
  1705. },
  1706. "require": {
  1707. "ext-json": "*",
  1708. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0",
  1709. "php": "^7.0|^8.0",
  1710. "phpoffice/phpspreadsheet": "^1.18"
  1711. },
  1712. "require-dev": {
  1713. "orchestra/testbench": "^6.0|^7.0",
  1714. "predis/predis": "^1.1"
  1715. },
  1716. "type": "library",
  1717. "extra": {
  1718. "laravel": {
  1719. "providers": [
  1720. "Maatwebsite\\Excel\\ExcelServiceProvider"
  1721. ],
  1722. "aliases": {
  1723. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  1724. }
  1725. }
  1726. },
  1727. "autoload": {
  1728. "psr-4": {
  1729. "Maatwebsite\\Excel\\": "src/"
  1730. }
  1731. },
  1732. "license": [
  1733. "MIT"
  1734. ],
  1735. "authors": [
  1736. {
  1737. "name": "Patrick Brouwers",
  1738. "email": "patrick@spartner.nl"
  1739. }
  1740. ],
  1741. "description": "Supercharged Excel exports and imports in Laravel",
  1742. "keywords": [
  1743. "PHPExcel",
  1744. "batch",
  1745. "csv",
  1746. "excel",
  1747. "export",
  1748. "import",
  1749. "laravel",
  1750. "php",
  1751. "phpspreadsheet"
  1752. ],
  1753. "time": "2022-05-02T13:50:01+00:00"
  1754. },
  1755. {
  1756. "name": "maennchen/zipstream-php",
  1757. "version": "2.1.0",
  1758. "dist": {
  1759. "type": "zip",
  1760. "url": "https://mirrors.tencent.com/repository/composer/maennchen/zipstream-php/2.1.0/maennchen-zipstream-php-2.1.0.zip",
  1761. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1762. "shasum": ""
  1763. },
  1764. "require": {
  1765. "myclabs/php-enum": "^1.5",
  1766. "php": ">= 7.1",
  1767. "psr/http-message": "^1.0",
  1768. "symfony/polyfill-mbstring": "^1.0"
  1769. },
  1770. "require-dev": {
  1771. "ext-zip": "*",
  1772. "guzzlehttp/guzzle": ">= 6.3",
  1773. "mikey179/vfsstream": "^1.6",
  1774. "phpunit/phpunit": ">= 7.5"
  1775. },
  1776. "type": "library",
  1777. "autoload": {
  1778. "psr-4": {
  1779. "ZipStream\\": "src/"
  1780. }
  1781. },
  1782. "license": [
  1783. "MIT"
  1784. ],
  1785. "authors": [
  1786. {
  1787. "name": "Paul Duncan",
  1788. "email": "pabs@pablotron.org"
  1789. },
  1790. {
  1791. "name": "Jonatan Männchen",
  1792. "email": "jonatan@maennchen.ch"
  1793. },
  1794. {
  1795. "name": "Jesse Donat",
  1796. "email": "donatj@gmail.com"
  1797. },
  1798. {
  1799. "name": "András Kolesár",
  1800. "email": "kolesar@kolesar.hu"
  1801. }
  1802. ],
  1803. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1804. "keywords": [
  1805. "stream",
  1806. "zip"
  1807. ],
  1808. "time": "2020-05-30T13:11:16+00:00"
  1809. },
  1810. {
  1811. "name": "markbaker/complex",
  1812. "version": "3.0.1",
  1813. "dist": {
  1814. "type": "zip",
  1815. "url": "https://mirrors.tencent.com/repository/composer/markbaker/complex/3.0.1/markbaker-complex-3.0.1.zip",
  1816. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  1817. "shasum": ""
  1818. },
  1819. "require": {
  1820. "php": "^7.2 || ^8.0"
  1821. },
  1822. "require-dev": {
  1823. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  1824. "phpcompatibility/php-compatibility": "^9.0",
  1825. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  1826. "squizlabs/php_codesniffer": "^3.4"
  1827. },
  1828. "type": "library",
  1829. "autoload": {
  1830. "psr-4": {
  1831. "Complex\\": "classes/src/"
  1832. }
  1833. },
  1834. "license": [
  1835. "MIT"
  1836. ],
  1837. "authors": [
  1838. {
  1839. "name": "Mark Baker",
  1840. "email": "mark@lange.demon.co.uk"
  1841. }
  1842. ],
  1843. "description": "PHP Class for working with complex numbers",
  1844. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1845. "keywords": [
  1846. "complex",
  1847. "mathematics"
  1848. ],
  1849. "time": "2021-06-29T15:32:53+00:00"
  1850. },
  1851. {
  1852. "name": "markbaker/matrix",
  1853. "version": "3.0.0",
  1854. "dist": {
  1855. "type": "zip",
  1856. "url": "https://mirrors.tencent.com/repository/composer/markbaker/matrix/3.0.0/markbaker-matrix-3.0.0.zip",
  1857. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576",
  1858. "shasum": ""
  1859. },
  1860. "require": {
  1861. "php": "^7.1 || ^8.0"
  1862. },
  1863. "require-dev": {
  1864. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  1865. "phpcompatibility/php-compatibility": "^9.0",
  1866. "phpdocumentor/phpdocumentor": "2.*",
  1867. "phploc/phploc": "^4.0",
  1868. "phpmd/phpmd": "2.*",
  1869. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  1870. "sebastian/phpcpd": "^4.0",
  1871. "squizlabs/php_codesniffer": "^3.4"
  1872. },
  1873. "type": "library",
  1874. "autoload": {
  1875. "psr-4": {
  1876. "Matrix\\": "classes/src/"
  1877. }
  1878. },
  1879. "license": [
  1880. "MIT"
  1881. ],
  1882. "authors": [
  1883. {
  1884. "name": "Mark Baker",
  1885. "email": "mark@demon-angel.eu"
  1886. }
  1887. ],
  1888. "description": "PHP Class for working with matrices",
  1889. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1890. "keywords": [
  1891. "mathematics",
  1892. "matrix",
  1893. "vector"
  1894. ],
  1895. "time": "2021-07-01T19:01:15+00:00"
  1896. },
  1897. {
  1898. "name": "monolog/monolog",
  1899. "version": "1.26.1",
  1900. "dist": {
  1901. "type": "zip",
  1902. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/monolog/monolog/1.26.1/monolog-monolog-1.26.1.zip",
  1903. "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5",
  1904. "shasum": ""
  1905. },
  1906. "require": {
  1907. "php": ">=5.3.0",
  1908. "psr/log": "~1.0"
  1909. },
  1910. "provide": {
  1911. "psr/log-implementation": "1.0.0"
  1912. },
  1913. "require-dev": {
  1914. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1915. "doctrine/couchdb": "~1.0@dev",
  1916. "graylog2/gelf-php": "~1.0",
  1917. "php-amqplib/php-amqplib": "~2.4",
  1918. "php-console/php-console": "^3.1.3",
  1919. "phpstan/phpstan": "^0.12.59",
  1920. "phpunit/phpunit": "~4.5",
  1921. "ruflin/elastica": ">=0.90 <3.0",
  1922. "sentry/sentry": "^0.13",
  1923. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1924. },
  1925. "suggest": {
  1926. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1927. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1928. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1929. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1930. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1931. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1932. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1933. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1934. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1935. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1936. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1937. },
  1938. "type": "library",
  1939. "autoload": {
  1940. "psr-4": {
  1941. "Monolog\\": "src/Monolog"
  1942. }
  1943. },
  1944. "license": [
  1945. "MIT"
  1946. ],
  1947. "authors": [
  1948. {
  1949. "name": "Jordi Boggiano",
  1950. "email": "j.boggiano@seld.be",
  1951. "homepage": "http://seld.be"
  1952. }
  1953. ],
  1954. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1955. "homepage": "http://github.com/Seldaek/monolog",
  1956. "keywords": [
  1957. "log",
  1958. "logging",
  1959. "psr-3"
  1960. ],
  1961. "funding": [
  1962. {
  1963. "url": "https://github.com/Seldaek",
  1964. "type": "github"
  1965. },
  1966. {
  1967. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1968. "type": "tidelift"
  1969. }
  1970. ],
  1971. "time": "2021-05-28T08:32:12+00:00"
  1972. },
  1973. {
  1974. "name": "myclabs/php-enum",
  1975. "version": "1.8.3",
  1976. "dist": {
  1977. "type": "zip",
  1978. "url": "https://mirrors.tencent.com/repository/composer/myclabs/php-enum/1.8.3/myclabs-php-enum-1.8.3.zip",
  1979. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  1980. "shasum": ""
  1981. },
  1982. "require": {
  1983. "ext-json": "*",
  1984. "php": "^7.3 || ^8.0"
  1985. },
  1986. "require-dev": {
  1987. "phpunit/phpunit": "^9.5",
  1988. "squizlabs/php_codesniffer": "1.*",
  1989. "vimeo/psalm": "^4.6.2"
  1990. },
  1991. "type": "library",
  1992. "autoload": {
  1993. "psr-4": {
  1994. "MyCLabs\\Enum\\": "src/"
  1995. }
  1996. },
  1997. "license": [
  1998. "MIT"
  1999. ],
  2000. "authors": [
  2001. {
  2002. "name": "PHP Enum contributors",
  2003. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2004. }
  2005. ],
  2006. "description": "PHP Enum implementation",
  2007. "homepage": "http://github.com/myclabs/php-enum",
  2008. "keywords": [
  2009. "enum"
  2010. ],
  2011. "time": "2021-07-05T08:18:36+00:00"
  2012. },
  2013. {
  2014. "name": "nesbot/carbon",
  2015. "version": "2.57.0",
  2016. "dist": {
  2017. "type": "zip",
  2018. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/nesbot/carbon/2.57.0/nesbot-carbon-2.57.0.zip",
  2019. "reference": "4a54375c21eea4811dbd1149fe6b246517554e78",
  2020. "shasum": ""
  2021. },
  2022. "require": {
  2023. "ext-json": "*",
  2024. "php": "^7.1.8 || ^8.0",
  2025. "symfony/polyfill-mbstring": "^1.0",
  2026. "symfony/polyfill-php80": "^1.16",
  2027. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2028. },
  2029. "require-dev": {
  2030. "doctrine/dbal": "^2.0 || ^3.0",
  2031. "doctrine/orm": "^2.7",
  2032. "friendsofphp/php-cs-fixer": "^3.0",
  2033. "kylekatarnls/multi-tester": "^2.0",
  2034. "phpmd/phpmd": "^2.9",
  2035. "phpstan/extension-installer": "^1.0",
  2036. "phpstan/phpstan": "^0.12.54 || ^1.0",
  2037. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  2038. "squizlabs/php_codesniffer": "^3.4"
  2039. },
  2040. "bin": [
  2041. "bin/carbon"
  2042. ],
  2043. "type": "library",
  2044. "extra": {
  2045. "branch-alias": {
  2046. "dev-3.x": "3.x-dev",
  2047. "dev-master": "2.x-dev"
  2048. },
  2049. "laravel": {
  2050. "providers": [
  2051. "Carbon\\Laravel\\ServiceProvider"
  2052. ]
  2053. },
  2054. "phpstan": {
  2055. "includes": [
  2056. "extension.neon"
  2057. ]
  2058. }
  2059. },
  2060. "autoload": {
  2061. "psr-4": {
  2062. "Carbon\\": "src/Carbon/"
  2063. }
  2064. },
  2065. "license": [
  2066. "MIT"
  2067. ],
  2068. "authors": [
  2069. {
  2070. "name": "Brian Nesbitt",
  2071. "email": "brian@nesbot.com",
  2072. "homepage": "https://markido.com"
  2073. },
  2074. {
  2075. "name": "kylekatarnls",
  2076. "homepage": "https://github.com/kylekatarnls"
  2077. }
  2078. ],
  2079. "description": "An API extension for DateTime that supports 281 different languages.",
  2080. "homepage": "https://carbon.nesbot.com",
  2081. "keywords": [
  2082. "date",
  2083. "datetime",
  2084. "time"
  2085. ],
  2086. "funding": [
  2087. {
  2088. "url": "https://opencollective.com/Carbon",
  2089. "type": "open_collective"
  2090. },
  2091. {
  2092. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  2093. "type": "tidelift"
  2094. }
  2095. ],
  2096. "time": "2022-02-13T18:13:33+00:00"
  2097. },
  2098. {
  2099. "name": "nikic/php-parser",
  2100. "version": "v4.13.2",
  2101. "dist": {
  2102. "type": "zip",
  2103. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/nikic/php-parser/v4.13.2/nikic-php-parser-v4.13.2.zip",
  2104. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  2105. "shasum": ""
  2106. },
  2107. "require": {
  2108. "ext-tokenizer": "*",
  2109. "php": ">=7.0"
  2110. },
  2111. "require-dev": {
  2112. "ircmaxell/php-yacc": "^0.0.7",
  2113. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2114. },
  2115. "bin": [
  2116. "bin/php-parse"
  2117. ],
  2118. "type": "library",
  2119. "extra": {
  2120. "branch-alias": {
  2121. "dev-master": "4.9-dev"
  2122. }
  2123. },
  2124. "autoload": {
  2125. "psr-4": {
  2126. "PhpParser\\": "lib/PhpParser"
  2127. }
  2128. },
  2129. "license": [
  2130. "BSD-3-Clause"
  2131. ],
  2132. "authors": [
  2133. {
  2134. "name": "Nikita Popov"
  2135. }
  2136. ],
  2137. "description": "A PHP parser written in PHP",
  2138. "keywords": [
  2139. "parser",
  2140. "php"
  2141. ],
  2142. "time": "2021-11-30T19:35:32+00:00"
  2143. },
  2144. {
  2145. "name": "nwidart/laravel-modules",
  2146. "version": "7.3.0",
  2147. "dist": {
  2148. "type": "zip",
  2149. "url": "https://api.github.com/repos/nWidart/laravel-modules/zipball/5194d3c1941518f6131238745aff916453afc727",
  2150. "reference": "5194d3c1941518f6131238745aff916453afc727",
  2151. "shasum": ""
  2152. },
  2153. "require": {
  2154. "ext-json": "*",
  2155. "php": ">=7.2.5"
  2156. },
  2157. "require-dev": {
  2158. "friendsofphp/php-cs-fixer": "^2.16",
  2159. "laravel/framework": "^7.0",
  2160. "mockery/mockery": "~1.0",
  2161. "orchestra/testbench": "^5.0",
  2162. "phpstan/phpstan": "^0.12.14",
  2163. "phpunit/phpunit": "^8.5",
  2164. "spatie/phpunit-snapshot-assertions": "^2.1.0"
  2165. },
  2166. "type": "library",
  2167. "extra": {
  2168. "laravel": {
  2169. "providers": [
  2170. "Nwidart\\Modules\\LaravelModulesServiceProvider"
  2171. ],
  2172. "aliases": {
  2173. "Module": "Nwidart\\Modules\\Facades\\Module"
  2174. }
  2175. },
  2176. "branch-alias": {
  2177. "dev-master": "7.0-dev"
  2178. }
  2179. },
  2180. "autoload": {
  2181. "psr-4": {
  2182. "Nwidart\\Modules\\": "src"
  2183. },
  2184. "files": [
  2185. "src/helpers.php"
  2186. ]
  2187. },
  2188. "notification-url": "https://packagist.org/downloads/",
  2189. "license": [
  2190. "MIT"
  2191. ],
  2192. "authors": [
  2193. {
  2194. "name": "Nicolas Widart",
  2195. "email": "n.widart@gmail.com",
  2196. "homepage": "https://nicolaswidart.com",
  2197. "role": "Developer"
  2198. }
  2199. ],
  2200. "description": "Laravel Module management",
  2201. "keywords": [
  2202. "laravel",
  2203. "module",
  2204. "modules",
  2205. "nwidart",
  2206. "rad"
  2207. ],
  2208. "time": "2020-09-10T08:40:16+00:00"
  2209. },
  2210. {
  2211. "name": "opis/closure",
  2212. "version": "3.6.3",
  2213. "dist": {
  2214. "type": "zip",
  2215. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/opis/closure/3.6.3/opis-closure-3.6.3.zip",
  2216. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  2217. "shasum": ""
  2218. },
  2219. "require": {
  2220. "php": "^5.4 || ^7.0 || ^8.0"
  2221. },
  2222. "require-dev": {
  2223. "jeremeamia/superclosure": "^2.0",
  2224. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  2225. },
  2226. "type": "library",
  2227. "extra": {
  2228. "branch-alias": {
  2229. "dev-master": "3.6.x-dev"
  2230. }
  2231. },
  2232. "autoload": {
  2233. "psr-4": {
  2234. "Opis\\Closure\\": "src/"
  2235. },
  2236. "files": [
  2237. "functions.php"
  2238. ]
  2239. },
  2240. "license": [
  2241. "MIT"
  2242. ],
  2243. "authors": [
  2244. {
  2245. "name": "Marius Sarca",
  2246. "email": "marius.sarca@gmail.com"
  2247. },
  2248. {
  2249. "name": "Sorin Sarca",
  2250. "email": "sarca_sorin@hotmail.com"
  2251. }
  2252. ],
  2253. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2254. "homepage": "https://opis.io/closure",
  2255. "keywords": [
  2256. "anonymous functions",
  2257. "closure",
  2258. "function",
  2259. "serializable",
  2260. "serialization",
  2261. "serialize"
  2262. ],
  2263. "time": "2022-01-27T09:35:39+00:00"
  2264. },
  2265. {
  2266. "name": "overtrue/pinyin",
  2267. "version": "4.0.8",
  2268. "dist": {
  2269. "type": "zip",
  2270. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/overtrue/pinyin/4.0.8/overtrue-pinyin-4.0.8.zip",
  2271. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  2272. "shasum": ""
  2273. },
  2274. "require": {
  2275. "php": ">=7.1"
  2276. },
  2277. "require-dev": {
  2278. "brainmaestro/composer-git-hooks": "^2.7",
  2279. "friendsofphp/php-cs-fixer": "^2.16",
  2280. "phpunit/phpunit": "~8.0"
  2281. },
  2282. "type": "library",
  2283. "extra": {
  2284. "hooks": {
  2285. "pre-commit": [
  2286. "composer test",
  2287. "composer fix-style"
  2288. ],
  2289. "pre-push": [
  2290. "composer test",
  2291. "composer check-style"
  2292. ]
  2293. }
  2294. },
  2295. "autoload": {
  2296. "files": [
  2297. "src/const.php"
  2298. ],
  2299. "psr-4": {
  2300. "Overtrue\\Pinyin\\": "src/"
  2301. }
  2302. },
  2303. "license": [
  2304. "MIT"
  2305. ],
  2306. "authors": [
  2307. {
  2308. "name": "overtrue",
  2309. "email": "anzhengchao@gmail.com",
  2310. "homepage": "http://github.com/overtrue"
  2311. }
  2312. ],
  2313. "description": "Chinese to pinyin translator.",
  2314. "homepage": "https://github.com/overtrue/pinyin",
  2315. "keywords": [
  2316. "Chinese",
  2317. "Pinyin",
  2318. "cn2pinyin"
  2319. ],
  2320. "funding": [
  2321. {
  2322. "url": "https://www.patreon.com/overtrue",
  2323. "type": "patreon"
  2324. }
  2325. ],
  2326. "time": "2021-07-19T03:43:32+00:00"
  2327. },
  2328. {
  2329. "name": "paragonie/random_compat",
  2330. "version": "v9.99.100",
  2331. "dist": {
  2332. "type": "zip",
  2333. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/paragonie/random_compat/v9.99.100/paragonie-random_compat-v9.99.100.zip",
  2334. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2335. "shasum": ""
  2336. },
  2337. "require": {
  2338. "php": ">= 7"
  2339. },
  2340. "require-dev": {
  2341. "phpunit/phpunit": "4.*|5.*",
  2342. "vimeo/psalm": "^1"
  2343. },
  2344. "suggest": {
  2345. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2346. },
  2347. "type": "library",
  2348. "license": [
  2349. "MIT"
  2350. ],
  2351. "authors": [
  2352. {
  2353. "name": "Paragon Initiative Enterprises",
  2354. "email": "security@paragonie.com",
  2355. "homepage": "https://paragonie.com"
  2356. }
  2357. ],
  2358. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2359. "keywords": [
  2360. "csprng",
  2361. "polyfill",
  2362. "pseudorandom",
  2363. "random"
  2364. ],
  2365. "time": "2020-10-15T08:29:30+00:00"
  2366. },
  2367. {
  2368. "name": "php-parallel-lint/php-console-color",
  2369. "version": "v0.3",
  2370. "dist": {
  2371. "type": "zip",
  2372. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Color/zipball/b6af326b2088f1ad3b264696c9fd590ec395b49e",
  2373. "reference": "b6af326b2088f1ad3b264696c9fd590ec395b49e",
  2374. "shasum": ""
  2375. },
  2376. "require": {
  2377. "php": ">=5.4.0"
  2378. },
  2379. "replace": {
  2380. "jakub-onderka/php-console-color": "*"
  2381. },
  2382. "require-dev": {
  2383. "php-parallel-lint/php-code-style": "1.0",
  2384. "php-parallel-lint/php-parallel-lint": "1.0",
  2385. "php-parallel-lint/php-var-dump-check": "0.*",
  2386. "phpunit/phpunit": "~4.3",
  2387. "squizlabs/php_codesniffer": "1.*"
  2388. },
  2389. "type": "library",
  2390. "autoload": {
  2391. "psr-4": {
  2392. "JakubOnderka\\PhpConsoleColor\\": "src/"
  2393. }
  2394. },
  2395. "notification-url": "https://packagist.org/downloads/",
  2396. "license": [
  2397. "BSD-2-Clause"
  2398. ],
  2399. "authors": [
  2400. {
  2401. "name": "Jakub Onderka",
  2402. "email": "jakub.onderka@gmail.com"
  2403. }
  2404. ],
  2405. "time": "2020-05-14T05:47:14+00:00"
  2406. },
  2407. {
  2408. "name": "php-parallel-lint/php-console-highlighter",
  2409. "version": "v0.5",
  2410. "dist": {
  2411. "type": "zip",
  2412. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Highlighter/zipball/21bf002f077b177f056d8cb455c5ed573adfdbb8",
  2413. "reference": "21bf002f077b177f056d8cb455c5ed573adfdbb8",
  2414. "shasum": ""
  2415. },
  2416. "require": {
  2417. "ext-tokenizer": "*",
  2418. "php": ">=5.4.0",
  2419. "php-parallel-lint/php-console-color": "~0.2"
  2420. },
  2421. "replace": {
  2422. "jakub-onderka/php-console-highlighter": "*"
  2423. },
  2424. "require-dev": {
  2425. "php-parallel-lint/php-code-style": "~1.0",
  2426. "php-parallel-lint/php-parallel-lint": "~1.0",
  2427. "php-parallel-lint/php-var-dump-check": "~0.1",
  2428. "phpunit/phpunit": "~4.0",
  2429. "squizlabs/php_codesniffer": "~1.5"
  2430. },
  2431. "type": "library",
  2432. "autoload": {
  2433. "psr-4": {
  2434. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  2435. }
  2436. },
  2437. "notification-url": "https://packagist.org/downloads/",
  2438. "license": [
  2439. "MIT"
  2440. ],
  2441. "authors": [
  2442. {
  2443. "name": "Jakub Onderka",
  2444. "email": "acci@acci.cz",
  2445. "homepage": "http://www.acci.cz/"
  2446. }
  2447. ],
  2448. "description": "Highlight PHP code in terminal",
  2449. "time": "2020-05-13T07:37:49+00:00"
  2450. },
  2451. {
  2452. "name": "phpoffice/phpspreadsheet",
  2453. "version": "1.23.0",
  2454. "dist": {
  2455. "type": "zip",
  2456. "url": "https://mirrors.tencent.com/repository/composer/phpoffice/phpspreadsheet/1.23.0/phpoffice-phpspreadsheet-1.23.0.zip",
  2457. "reference": "21e4cf62699eebf007db28775f7d1554e612ed9e",
  2458. "shasum": ""
  2459. },
  2460. "require": {
  2461. "ext-ctype": "*",
  2462. "ext-dom": "*",
  2463. "ext-fileinfo": "*",
  2464. "ext-gd": "*",
  2465. "ext-iconv": "*",
  2466. "ext-libxml": "*",
  2467. "ext-mbstring": "*",
  2468. "ext-simplexml": "*",
  2469. "ext-xml": "*",
  2470. "ext-xmlreader": "*",
  2471. "ext-xmlwriter": "*",
  2472. "ext-zip": "*",
  2473. "ext-zlib": "*",
  2474. "ezyang/htmlpurifier": "^4.13",
  2475. "maennchen/zipstream-php": "^2.1",
  2476. "markbaker/complex": "^3.0",
  2477. "markbaker/matrix": "^3.0",
  2478. "php": "^7.3 || ^8.0",
  2479. "psr/http-client": "^1.0",
  2480. "psr/http-factory": "^1.0",
  2481. "psr/simple-cache": "^1.0 || ^2.0"
  2482. },
  2483. "require-dev": {
  2484. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2485. "dompdf/dompdf": "^1.0",
  2486. "friendsofphp/php-cs-fixer": "^3.2",
  2487. "jpgraph/jpgraph": "^4.0",
  2488. "mpdf/mpdf": "8.0.17",
  2489. "phpcompatibility/php-compatibility": "^9.3",
  2490. "phpstan/phpstan": "^1.1",
  2491. "phpstan/phpstan-phpunit": "^1.0",
  2492. "phpunit/phpunit": "^8.5 || ^9.0",
  2493. "squizlabs/php_codesniffer": "^3.6",
  2494. "tecnickcom/tcpdf": "^6.4"
  2495. },
  2496. "suggest": {
  2497. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  2498. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2499. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2500. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  2501. },
  2502. "type": "library",
  2503. "autoload": {
  2504. "psr-4": {
  2505. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2506. }
  2507. },
  2508. "license": [
  2509. "MIT"
  2510. ],
  2511. "authors": [
  2512. {
  2513. "name": "Maarten Balliauw",
  2514. "homepage": "https://blog.maartenballiauw.be"
  2515. },
  2516. {
  2517. "name": "Mark Baker",
  2518. "homepage": "https://markbakeruk.net"
  2519. },
  2520. {
  2521. "name": "Franck Lefevre",
  2522. "homepage": "https://rootslabs.net"
  2523. },
  2524. {
  2525. "name": "Erik Tilt"
  2526. },
  2527. {
  2528. "name": "Adrien Crivelli"
  2529. }
  2530. ],
  2531. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2532. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2533. "keywords": [
  2534. "OpenXML",
  2535. "excel",
  2536. "gnumeric",
  2537. "ods",
  2538. "php",
  2539. "spreadsheet",
  2540. "xls",
  2541. "xlsx"
  2542. ],
  2543. "time": "2022-04-24T13:53:10+00:00"
  2544. },
  2545. {
  2546. "name": "phpoption/phpoption",
  2547. "version": "1.8.1",
  2548. "dist": {
  2549. "type": "zip",
  2550. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/phpoption/phpoption/1.8.1/phpoption-phpoption-1.8.1.zip",
  2551. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  2552. "shasum": ""
  2553. },
  2554. "require": {
  2555. "php": "^7.0 || ^8.0"
  2556. },
  2557. "require-dev": {
  2558. "bamarni/composer-bin-plugin": "^1.4.1",
  2559. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  2560. },
  2561. "type": "library",
  2562. "extra": {
  2563. "branch-alias": {
  2564. "dev-master": "1.8-dev"
  2565. }
  2566. },
  2567. "autoload": {
  2568. "psr-4": {
  2569. "PhpOption\\": "src/PhpOption/"
  2570. }
  2571. },
  2572. "license": [
  2573. "Apache-2.0"
  2574. ],
  2575. "authors": [
  2576. {
  2577. "name": "Johannes M. Schmitt",
  2578. "email": "schmittjoh@gmail.com",
  2579. "homepage": "https://github.com/schmittjoh"
  2580. },
  2581. {
  2582. "name": "Graham Campbell",
  2583. "email": "hello@gjcampbell.co.uk",
  2584. "homepage": "https://github.com/GrahamCampbell"
  2585. }
  2586. ],
  2587. "description": "Option Type for PHP",
  2588. "keywords": [
  2589. "language",
  2590. "option",
  2591. "php",
  2592. "type"
  2593. ],
  2594. "funding": [
  2595. {
  2596. "url": "https://github.com/GrahamCampbell",
  2597. "type": "github"
  2598. },
  2599. {
  2600. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2601. "type": "tidelift"
  2602. }
  2603. ],
  2604. "time": "2021-12-04T23:24:31+00:00"
  2605. },
  2606. {
  2607. "name": "phpseclib/phpseclib",
  2608. "version": "2.0.36",
  2609. "dist": {
  2610. "type": "zip",
  2611. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/phpseclib/phpseclib/2.0.36/phpseclib-phpseclib-2.0.36.zip",
  2612. "reference": "a97547126396548c224703a267a30af1592be146",
  2613. "shasum": ""
  2614. },
  2615. "require": {
  2616. "php": ">=5.3.3"
  2617. },
  2618. "require-dev": {
  2619. "phing/phing": "~2.7",
  2620. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  2621. "squizlabs/php_codesniffer": "~2.0"
  2622. },
  2623. "suggest": {
  2624. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  2625. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  2626. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  2627. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  2628. },
  2629. "type": "library",
  2630. "autoload": {
  2631. "files": [
  2632. "phpseclib/bootstrap.php"
  2633. ],
  2634. "psr-4": {
  2635. "phpseclib\\": "phpseclib/"
  2636. }
  2637. },
  2638. "license": [
  2639. "MIT"
  2640. ],
  2641. "authors": [
  2642. {
  2643. "name": "Jim Wigginton",
  2644. "email": "terrafrost@php.net",
  2645. "role": "Lead Developer"
  2646. },
  2647. {
  2648. "name": "Patrick Monnerat",
  2649. "email": "pm@datasphere.ch",
  2650. "role": "Developer"
  2651. },
  2652. {
  2653. "name": "Andreas Fischer",
  2654. "email": "bantu@phpbb.com",
  2655. "role": "Developer"
  2656. },
  2657. {
  2658. "name": "Hans-Jürgen Petrich",
  2659. "email": "petrich@tronic-media.com",
  2660. "role": "Developer"
  2661. },
  2662. {
  2663. "name": "Graham Campbell",
  2664. "email": "graham@alt-three.com",
  2665. "role": "Developer"
  2666. }
  2667. ],
  2668. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  2669. "homepage": "http://phpseclib.sourceforge.net",
  2670. "keywords": [
  2671. "BigInteger",
  2672. "aes",
  2673. "asn.1",
  2674. "asn1",
  2675. "blowfish",
  2676. "crypto",
  2677. "cryptography",
  2678. "encryption",
  2679. "rsa",
  2680. "security",
  2681. "sftp",
  2682. "signature",
  2683. "signing",
  2684. "ssh",
  2685. "twofish",
  2686. "x.509",
  2687. "x509"
  2688. ],
  2689. "funding": [
  2690. {
  2691. "url": "https://github.com/terrafrost",
  2692. "type": "github"
  2693. },
  2694. {
  2695. "url": "https://www.patreon.com/phpseclib",
  2696. "type": "patreon"
  2697. },
  2698. {
  2699. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  2700. "type": "tidelift"
  2701. }
  2702. ],
  2703. "time": "2022-01-30T08:48:36+00:00"
  2704. },
  2705. {
  2706. "name": "predis/predis",
  2707. "version": "v1.1.10",
  2708. "dist": {
  2709. "type": "zip",
  2710. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/predis/predis/v1.1.10/predis-predis-v1.1.10.zip",
  2711. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  2712. "shasum": ""
  2713. },
  2714. "require": {
  2715. "php": ">=5.3.9"
  2716. },
  2717. "require-dev": {
  2718. "phpunit/phpunit": "~4.8"
  2719. },
  2720. "suggest": {
  2721. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  2722. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  2723. },
  2724. "type": "library",
  2725. "autoload": {
  2726. "psr-4": {
  2727. "Predis\\": "src/"
  2728. }
  2729. },
  2730. "license": [
  2731. "MIT"
  2732. ],
  2733. "authors": [
  2734. {
  2735. "name": "Daniele Alessandri",
  2736. "email": "suppakilla@gmail.com",
  2737. "homepage": "http://clorophilla.net",
  2738. "role": "Creator & Maintainer"
  2739. },
  2740. {
  2741. "name": "Till Krüss",
  2742. "homepage": "https://till.im",
  2743. "role": "Maintainer"
  2744. }
  2745. ],
  2746. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  2747. "homepage": "http://github.com/predis/predis",
  2748. "keywords": [
  2749. "nosql",
  2750. "predis",
  2751. "redis"
  2752. ],
  2753. "funding": [
  2754. {
  2755. "url": "https://github.com/sponsors/tillkruss",
  2756. "type": "github"
  2757. }
  2758. ],
  2759. "time": "2022-01-05T17:46:08+00:00"
  2760. },
  2761. {
  2762. "name": "psr/container",
  2763. "version": "1.1.1",
  2764. "dist": {
  2765. "type": "zip",
  2766. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  2767. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  2768. "shasum": ""
  2769. },
  2770. "require": {
  2771. "php": ">=7.2.0"
  2772. },
  2773. "type": "library",
  2774. "autoload": {
  2775. "psr-4": {
  2776. "Psr\\Container\\": "src/"
  2777. }
  2778. },
  2779. "notification-url": "https://packagist.org/downloads/",
  2780. "license": [
  2781. "MIT"
  2782. ],
  2783. "authors": [
  2784. {
  2785. "name": "PHP-FIG",
  2786. "homepage": "https://www.php-fig.org/"
  2787. }
  2788. ],
  2789. "description": "Common Container Interface (PHP FIG PSR-11)",
  2790. "homepage": "https://github.com/php-fig/container",
  2791. "keywords": [
  2792. "PSR-11",
  2793. "container",
  2794. "container-interface",
  2795. "container-interop",
  2796. "psr"
  2797. ],
  2798. "time": "2021-03-05T17:36:06+00:00"
  2799. },
  2800. {
  2801. "name": "psr/http-client",
  2802. "version": "1.0.1",
  2803. "dist": {
  2804. "type": "zip",
  2805. "url": "https://mirrors.tencent.com/repository/composer/psr/http-client/1.0.1/psr-http-client-1.0.1.zip",
  2806. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2807. "shasum": ""
  2808. },
  2809. "require": {
  2810. "php": "^7.0 || ^8.0",
  2811. "psr/http-message": "^1.0"
  2812. },
  2813. "type": "library",
  2814. "extra": {
  2815. "branch-alias": {
  2816. "dev-master": "1.0.x-dev"
  2817. }
  2818. },
  2819. "autoload": {
  2820. "psr-4": {
  2821. "Psr\\Http\\Client\\": "src/"
  2822. }
  2823. },
  2824. "license": [
  2825. "MIT"
  2826. ],
  2827. "authors": [
  2828. {
  2829. "name": "PHP-FIG",
  2830. "homepage": "http://www.php-fig.org/"
  2831. }
  2832. ],
  2833. "description": "Common interface for HTTP clients",
  2834. "homepage": "https://github.com/php-fig/http-client",
  2835. "keywords": [
  2836. "http",
  2837. "http-client",
  2838. "psr",
  2839. "psr-18"
  2840. ],
  2841. "time": "2020-06-29T06:28:15+00:00"
  2842. },
  2843. {
  2844. "name": "psr/http-factory",
  2845. "version": "1.0.1",
  2846. "dist": {
  2847. "type": "zip",
  2848. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2849. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2850. "shasum": ""
  2851. },
  2852. "require": {
  2853. "php": ">=7.0.0",
  2854. "psr/http-message": "^1.0"
  2855. },
  2856. "type": "library",
  2857. "extra": {
  2858. "branch-alias": {
  2859. "dev-master": "1.0.x-dev"
  2860. }
  2861. },
  2862. "autoload": {
  2863. "psr-4": {
  2864. "Psr\\Http\\Message\\": "src/"
  2865. }
  2866. },
  2867. "notification-url": "https://packagist.org/downloads/",
  2868. "license": [
  2869. "MIT"
  2870. ],
  2871. "authors": [
  2872. {
  2873. "name": "PHP-FIG",
  2874. "homepage": "http://www.php-fig.org/"
  2875. }
  2876. ],
  2877. "description": "Common interfaces for PSR-7 HTTP message factories",
  2878. "keywords": [
  2879. "factory",
  2880. "http",
  2881. "message",
  2882. "psr",
  2883. "psr-17",
  2884. "psr-7",
  2885. "request",
  2886. "response"
  2887. ],
  2888. "time": "2019-04-30T12:38:16+00:00"
  2889. },
  2890. {
  2891. "name": "psr/http-message",
  2892. "version": "1.0.1",
  2893. "dist": {
  2894. "type": "zip",
  2895. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2896. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2897. "shasum": ""
  2898. },
  2899. "require": {
  2900. "php": ">=5.3.0"
  2901. },
  2902. "type": "library",
  2903. "extra": {
  2904. "branch-alias": {
  2905. "dev-master": "1.0.x-dev"
  2906. }
  2907. },
  2908. "autoload": {
  2909. "psr-4": {
  2910. "Psr\\Http\\Message\\": "src/"
  2911. }
  2912. },
  2913. "notification-url": "https://packagist.org/downloads/",
  2914. "license": [
  2915. "MIT"
  2916. ],
  2917. "authors": [
  2918. {
  2919. "name": "PHP-FIG",
  2920. "homepage": "http://www.php-fig.org/"
  2921. }
  2922. ],
  2923. "description": "Common interface for HTTP messages",
  2924. "homepage": "https://github.com/php-fig/http-message",
  2925. "keywords": [
  2926. "http",
  2927. "http-message",
  2928. "psr",
  2929. "psr-7",
  2930. "request",
  2931. "response"
  2932. ],
  2933. "time": "2016-08-06T14:39:51+00:00"
  2934. },
  2935. {
  2936. "name": "psr/log",
  2937. "version": "1.1.4",
  2938. "dist": {
  2939. "type": "zip",
  2940. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/psr/log/1.1.4/psr-log-1.1.4.zip",
  2941. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2942. "shasum": ""
  2943. },
  2944. "require": {
  2945. "php": ">=5.3.0"
  2946. },
  2947. "type": "library",
  2948. "extra": {
  2949. "branch-alias": {
  2950. "dev-master": "1.1.x-dev"
  2951. }
  2952. },
  2953. "autoload": {
  2954. "psr-4": {
  2955. "Psr\\Log\\": "Psr/Log/"
  2956. }
  2957. },
  2958. "license": [
  2959. "MIT"
  2960. ],
  2961. "authors": [
  2962. {
  2963. "name": "PHP-FIG",
  2964. "homepage": "https://www.php-fig.org/"
  2965. }
  2966. ],
  2967. "description": "Common interface for logging libraries",
  2968. "homepage": "https://github.com/php-fig/log",
  2969. "keywords": [
  2970. "log",
  2971. "psr",
  2972. "psr-3"
  2973. ],
  2974. "time": "2021-05-03T11:20:27+00:00"
  2975. },
  2976. {
  2977. "name": "psr/simple-cache",
  2978. "version": "1.0.1",
  2979. "dist": {
  2980. "type": "zip",
  2981. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2982. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2983. "shasum": ""
  2984. },
  2985. "require": {
  2986. "php": ">=5.3.0"
  2987. },
  2988. "type": "library",
  2989. "extra": {
  2990. "branch-alias": {
  2991. "dev-master": "1.0.x-dev"
  2992. }
  2993. },
  2994. "autoload": {
  2995. "psr-4": {
  2996. "Psr\\SimpleCache\\": "src/"
  2997. }
  2998. },
  2999. "notification-url": "https://packagist.org/downloads/",
  3000. "license": [
  3001. "MIT"
  3002. ],
  3003. "authors": [
  3004. {
  3005. "name": "PHP-FIG",
  3006. "homepage": "http://www.php-fig.org/"
  3007. }
  3008. ],
  3009. "description": "Common interfaces for simple caching",
  3010. "keywords": [
  3011. "cache",
  3012. "caching",
  3013. "psr",
  3014. "psr-16",
  3015. "simple-cache"
  3016. ],
  3017. "time": "2017-10-23T01:57:42+00:00"
  3018. },
  3019. {
  3020. "name": "psy/psysh",
  3021. "version": "v0.9.12",
  3022. "dist": {
  3023. "type": "zip",
  3024. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/90da7f37568aee36b116a030c5f99c915267edd4",
  3025. "reference": "90da7f37568aee36b116a030c5f99c915267edd4",
  3026. "shasum": ""
  3027. },
  3028. "require": {
  3029. "dnoegel/php-xdg-base-dir": "0.1.*",
  3030. "ext-json": "*",
  3031. "ext-tokenizer": "*",
  3032. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  3033. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  3034. "php": ">=5.4.0",
  3035. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0|~5.0",
  3036. "symfony/var-dumper": "~2.7|~3.0|~4.0|~5.0"
  3037. },
  3038. "require-dev": {
  3039. "bamarni/composer-bin-plugin": "^1.2",
  3040. "hoa/console": "~2.15|~3.16",
  3041. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  3042. },
  3043. "suggest": {
  3044. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3045. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3046. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3047. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3048. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3049. },
  3050. "bin": [
  3051. "bin/psysh"
  3052. ],
  3053. "type": "library",
  3054. "extra": {
  3055. "branch-alias": {
  3056. "dev-develop": "0.9.x-dev"
  3057. }
  3058. },
  3059. "autoload": {
  3060. "files": [
  3061. "src/functions.php"
  3062. ],
  3063. "psr-4": {
  3064. "Psy\\": "src/"
  3065. }
  3066. },
  3067. "notification-url": "https://packagist.org/downloads/",
  3068. "license": [
  3069. "MIT"
  3070. ],
  3071. "authors": [
  3072. {
  3073. "name": "Justin Hileman",
  3074. "email": "justin@justinhileman.info",
  3075. "homepage": "http://justinhileman.com"
  3076. }
  3077. ],
  3078. "description": "An interactive shell for modern PHP.",
  3079. "homepage": "http://psysh.org",
  3080. "keywords": [
  3081. "REPL",
  3082. "console",
  3083. "interactive",
  3084. "shell"
  3085. ],
  3086. "time": "2019-12-06T14:19:43+00:00"
  3087. },
  3088. {
  3089. "name": "ralouphie/getallheaders",
  3090. "version": "3.0.3",
  3091. "dist": {
  3092. "type": "zip",
  3093. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3094. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3095. "shasum": ""
  3096. },
  3097. "require": {
  3098. "php": ">=5.6"
  3099. },
  3100. "require-dev": {
  3101. "php-coveralls/php-coveralls": "^2.1",
  3102. "phpunit/phpunit": "^5 || ^6.5"
  3103. },
  3104. "type": "library",
  3105. "autoload": {
  3106. "files": [
  3107. "src/getallheaders.php"
  3108. ]
  3109. },
  3110. "notification-url": "https://packagist.org/downloads/",
  3111. "license": [
  3112. "MIT"
  3113. ],
  3114. "authors": [
  3115. {
  3116. "name": "Ralph Khattar",
  3117. "email": "ralph.khattar@gmail.com"
  3118. }
  3119. ],
  3120. "description": "A polyfill for getallheaders.",
  3121. "time": "2019-03-08T08:55:37+00:00"
  3122. },
  3123. {
  3124. "name": "ramsey/uuid",
  3125. "version": "3.9.6",
  3126. "dist": {
  3127. "type": "zip",
  3128. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/ramsey/uuid/3.9.6/ramsey-uuid-3.9.6.zip",
  3129. "reference": "ffa80ab953edd85d5b6c004f96181a538aad35a3",
  3130. "shasum": ""
  3131. },
  3132. "require": {
  3133. "ext-json": "*",
  3134. "paragonie/random_compat": "^1 | ^2 | ^9.99.99",
  3135. "php": "^5.4 | ^7.0 | ^8.0",
  3136. "symfony/polyfill-ctype": "^1.8"
  3137. },
  3138. "replace": {
  3139. "rhumsaa/uuid": "self.version"
  3140. },
  3141. "require-dev": {
  3142. "codeception/aspect-mock": "^1 | ^2",
  3143. "doctrine/annotations": "^1.2",
  3144. "goaop/framework": "1.0.0-alpha.2 | ^1 | >=2.1.0 <=2.3.2",
  3145. "mockery/mockery": "^0.9.11 | ^1",
  3146. "moontoast/math": "^1.1",
  3147. "nikic/php-parser": "<=4.5.0",
  3148. "paragonie/random-lib": "^2",
  3149. "php-mock/php-mock-phpunit": "^0.3 | ^1.1 | ^2.6",
  3150. "php-parallel-lint/php-parallel-lint": "^1.3",
  3151. "phpunit/phpunit": ">=4.8.36 <9.0.0 | >=9.3.0",
  3152. "squizlabs/php_codesniffer": "^3.5",
  3153. "yoast/phpunit-polyfills": "^1.0"
  3154. },
  3155. "suggest": {
  3156. "ext-ctype": "Provides support for PHP Ctype functions",
  3157. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  3158. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  3159. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  3160. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  3161. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3162. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  3163. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3164. },
  3165. "type": "library",
  3166. "extra": {
  3167. "branch-alias": {
  3168. "dev-master": "3.x-dev"
  3169. }
  3170. },
  3171. "autoload": {
  3172. "psr-4": {
  3173. "Ramsey\\Uuid\\": "src/"
  3174. },
  3175. "files": [
  3176. "src/functions.php"
  3177. ]
  3178. },
  3179. "license": [
  3180. "MIT"
  3181. ],
  3182. "authors": [
  3183. {
  3184. "name": "Ben Ramsey",
  3185. "email": "ben@benramsey.com",
  3186. "homepage": "https://benramsey.com"
  3187. },
  3188. {
  3189. "name": "Marijn Huizendveld",
  3190. "email": "marijn.huizendveld@gmail.com"
  3191. },
  3192. {
  3193. "name": "Thibaud Fabre",
  3194. "email": "thibaud@aztech.io"
  3195. }
  3196. ],
  3197. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  3198. "homepage": "https://github.com/ramsey/uuid",
  3199. "keywords": [
  3200. "guid",
  3201. "identifier",
  3202. "uuid"
  3203. ],
  3204. "funding": [
  3205. {
  3206. "url": "https://github.com/ramsey",
  3207. "type": "github"
  3208. },
  3209. {
  3210. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  3211. "type": "tidelift"
  3212. }
  3213. ],
  3214. "time": "2021-09-25T23:07:42+00:00"
  3215. },
  3216. {
  3217. "name": "swiftmailer/swiftmailer",
  3218. "version": "v6.3.0",
  3219. "dist": {
  3220. "type": "zip",
  3221. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/swiftmailer/swiftmailer/v6.3.0/swiftmailer-swiftmailer-v6.3.0.zip",
  3222. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  3223. "shasum": ""
  3224. },
  3225. "require": {
  3226. "egulias/email-validator": "^2.0|^3.1",
  3227. "php": ">=7.0.0",
  3228. "symfony/polyfill-iconv": "^1.0",
  3229. "symfony/polyfill-intl-idn": "^1.10",
  3230. "symfony/polyfill-mbstring": "^1.0"
  3231. },
  3232. "require-dev": {
  3233. "mockery/mockery": "^1.0",
  3234. "symfony/phpunit-bridge": "^4.4|^5.4"
  3235. },
  3236. "suggest": {
  3237. "ext-intl": "Needed to support internationalized email addresses"
  3238. },
  3239. "type": "library",
  3240. "extra": {
  3241. "branch-alias": {
  3242. "dev-master": "6.2-dev"
  3243. }
  3244. },
  3245. "autoload": {
  3246. "files": [
  3247. "lib/swift_required.php"
  3248. ]
  3249. },
  3250. "license": [
  3251. "MIT"
  3252. ],
  3253. "authors": [
  3254. {
  3255. "name": "Chris Corbyn"
  3256. },
  3257. {
  3258. "name": "Fabien Potencier",
  3259. "email": "fabien@symfony.com"
  3260. }
  3261. ],
  3262. "description": "Swiftmailer, free feature-rich PHP mailer",
  3263. "homepage": "https://swiftmailer.symfony.com",
  3264. "keywords": [
  3265. "email",
  3266. "mail",
  3267. "mailer"
  3268. ],
  3269. "funding": [
  3270. {
  3271. "url": "https://github.com/fabpot",
  3272. "type": "github"
  3273. },
  3274. {
  3275. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  3276. "type": "tidelift"
  3277. }
  3278. ],
  3279. "time": "2021-10-18T15:26:12+00:00"
  3280. },
  3281. {
  3282. "name": "symfony/console",
  3283. "version": "v4.4.38",
  3284. "dist": {
  3285. "type": "zip",
  3286. "url": "https://mirrors.tencent.com/repository/composer/symfony/console/v4.4.38/symfony-console-v4.4.38.zip",
  3287. "reference": "5a50085bf5460f0c0d60a50b58388c1249826b8a",
  3288. "shasum": ""
  3289. },
  3290. "require": {
  3291. "php": ">=7.1.3",
  3292. "symfony/polyfill-mbstring": "~1.0",
  3293. "symfony/polyfill-php73": "^1.8",
  3294. "symfony/polyfill-php80": "^1.16",
  3295. "symfony/service-contracts": "^1.1|^2"
  3296. },
  3297. "conflict": {
  3298. "psr/log": ">=3",
  3299. "symfony/dependency-injection": "<3.4",
  3300. "symfony/event-dispatcher": "<4.3|>=5",
  3301. "symfony/lock": "<4.4",
  3302. "symfony/process": "<3.3"
  3303. },
  3304. "provide": {
  3305. "psr/log-implementation": "1.0|2.0"
  3306. },
  3307. "require-dev": {
  3308. "psr/log": "^1|^2",
  3309. "symfony/config": "^3.4|^4.0|^5.0",
  3310. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  3311. "symfony/event-dispatcher": "^4.3",
  3312. "symfony/lock": "^4.4|^5.0",
  3313. "symfony/process": "^3.4|^4.0|^5.0",
  3314. "symfony/var-dumper": "^4.3|^5.0"
  3315. },
  3316. "suggest": {
  3317. "psr/log": "For using the console logger",
  3318. "symfony/event-dispatcher": "",
  3319. "symfony/lock": "",
  3320. "symfony/process": ""
  3321. },
  3322. "type": "library",
  3323. "autoload": {
  3324. "psr-4": {
  3325. "Symfony\\Component\\Console\\": ""
  3326. },
  3327. "exclude-from-classmap": [
  3328. "/Tests/"
  3329. ]
  3330. },
  3331. "license": [
  3332. "MIT"
  3333. ],
  3334. "authors": [
  3335. {
  3336. "name": "Fabien Potencier",
  3337. "email": "fabien@symfony.com"
  3338. },
  3339. {
  3340. "name": "Symfony Community",
  3341. "homepage": "https://symfony.com/contributors"
  3342. }
  3343. ],
  3344. "description": "Eases the creation of beautiful and testable command line interfaces",
  3345. "homepage": "https://symfony.com",
  3346. "time": "2022-01-30T21:23:57+00:00"
  3347. },
  3348. {
  3349. "name": "symfony/css-selector",
  3350. "version": "v5.4.3",
  3351. "dist": {
  3352. "type": "zip",
  3353. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/symfony/css-selector/v5.4.3/symfony-css-selector-v5.4.3.zip",
  3354. "reference": "b0a190285cd95cb019237851205b8140ef6e368e",
  3355. "shasum": ""
  3356. },
  3357. "require": {
  3358. "php": ">=7.2.5",
  3359. "symfony/polyfill-php80": "^1.16"
  3360. },
  3361. "type": "library",
  3362. "autoload": {
  3363. "psr-4": {
  3364. "Symfony\\Component\\CssSelector\\": ""
  3365. },
  3366. "exclude-from-classmap": [
  3367. "/Tests/"
  3368. ]
  3369. },
  3370. "license": [
  3371. "MIT"
  3372. ],
  3373. "authors": [
  3374. {
  3375. "name": "Fabien Potencier",
  3376. "email": "fabien@symfony.com"
  3377. },
  3378. {
  3379. "name": "Jean-François Simon",
  3380. "email": "jeanfrancois.simon@sensiolabs.com"
  3381. },
  3382. {
  3383. "name": "Symfony Community",
  3384. "homepage": "https://symfony.com/contributors"
  3385. }
  3386. ],
  3387. "description": "Converts CSS selectors to XPath expressions",
  3388. "homepage": "https://symfony.com",
  3389. "funding": [
  3390. {
  3391. "url": "https://symfony.com/sponsor",
  3392. "type": "custom"
  3393. },
  3394. {
  3395. "url": "https://github.com/fabpot",
  3396. "type": "github"
  3397. },
  3398. {
  3399. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3400. "type": "tidelift"
  3401. }
  3402. ],
  3403. "time": "2022-01-02T09:53:40+00:00"
  3404. },
  3405. {
  3406. "name": "symfony/debug",
  3407. "version": "v4.4.37",
  3408. "dist": {
  3409. "type": "zip",
  3410. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/symfony/debug/v4.4.37/symfony-debug-v4.4.37.zip",
  3411. "reference": "5de6c6e7f52b364840e53851c126be4d71e60470",
  3412. "shasum": ""
  3413. },
  3414. "require": {
  3415. "php": ">=7.1.3",
  3416. "psr/log": "^1|^2|^3"
  3417. },
  3418. "conflict": {
  3419. "symfony/http-kernel": "<3.4"
  3420. },
  3421. "require-dev": {
  3422. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  3423. },
  3424. "type": "library",
  3425. "autoload": {
  3426. "psr-4": {
  3427. "Symfony\\Component\\Debug\\": ""
  3428. },
  3429. "exclude-from-classmap": [
  3430. "/Tests/"
  3431. ]
  3432. },
  3433. "license": [
  3434. "MIT"
  3435. ],
  3436. "authors": [
  3437. {
  3438. "name": "Fabien Potencier",
  3439. "email": "fabien@symfony.com"
  3440. },
  3441. {
  3442. "name": "Symfony Community",
  3443. "homepage": "https://symfony.com/contributors"
  3444. }
  3445. ],
  3446. "description": "Provides tools to ease debugging PHP code",
  3447. "homepage": "https://symfony.com",
  3448. "funding": [
  3449. {
  3450. "url": "https://symfony.com/sponsor",
  3451. "type": "custom"
  3452. },
  3453. {
  3454. "url": "https://github.com/fabpot",
  3455. "type": "github"
  3456. },
  3457. {
  3458. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3459. "type": "tidelift"
  3460. }
  3461. ],
  3462. "time": "2022-01-02T09:41:36+00:00"
  3463. },
  3464. {
  3465. "name": "symfony/deprecation-contracts",
  3466. "version": "v2.5.0",
  3467. "dist": {
  3468. "type": "zip",
  3469. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/symfony/deprecation-contracts/v2.5.0/symfony-deprecation-contracts-v2.5.0.zip",
  3470. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  3471. "shasum": ""
  3472. },
  3473. "require": {
  3474. "php": ">=7.1"
  3475. },
  3476. "type": "library",
  3477. "extra": {
  3478. "branch-alias": {
  3479. "dev-main": "2.5-dev"
  3480. },
  3481. "thanks": {
  3482. "name": "symfony/contracts",
  3483. "url": "https://github.com/symfony/contracts"
  3484. }
  3485. },
  3486. "autoload": {
  3487. "files": [
  3488. "function.php"
  3489. ]
  3490. },
  3491. "license": [
  3492. "MIT"
  3493. ],
  3494. "authors": [
  3495. {
  3496. "name": "Nicolas Grekas",
  3497. "email": "p@tchwork.com"
  3498. },
  3499. {
  3500. "name": "Symfony Community",
  3501. "homepage": "https://symfony.com/contributors"
  3502. }
  3503. ],
  3504. "description": "A generic function and convention to trigger deprecation notices",
  3505. "homepage": "https://symfony.com",
  3506. "funding": [
  3507. {
  3508. "url": "https://symfony.com/sponsor",
  3509. "type": "custom"
  3510. },
  3511. {
  3512. "url": "https://github.com/fabpot",
  3513. "type": "github"
  3514. },
  3515. {
  3516. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3517. "type": "tidelift"
  3518. }
  3519. ],
  3520. "time": "2021-07-12T14:48:14+00:00"
  3521. },
  3522. {
  3523. "name": "symfony/error-handler",
  3524. "version": "v4.4.37",
  3525. "dist": {
  3526. "type": "zip",
  3527. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/symfony/error-handler/v4.4.37/symfony-error-handler-v4.4.37.zip",
  3528. "reference": "8d80ad881e1ce17979547873d093e3c987a6a629",
  3529. "shasum": ""
  3530. },
  3531. "require": {
  3532. "php": ">=7.1.3",
  3533. "psr/log": "^1|^2|^3",
  3534. "symfony/debug": "^4.4.5",
  3535. "symfony/var-dumper": "^4.4|^5.0"
  3536. },
  3537. "require-dev": {
  3538. "symfony/http-kernel": "^4.4|^5.0",
  3539. "symfony/serializer": "^4.4|^5.0"
  3540. },
  3541. "type": "library",
  3542. "autoload": {
  3543. "psr-4": {
  3544. "Symfony\\Component\\ErrorHandler\\": ""
  3545. },
  3546. "exclude-from-classmap": [
  3547. "/Tests/"
  3548. ]
  3549. },
  3550. "license": [
  3551. "MIT"
  3552. ],
  3553. "authors": [
  3554. {
  3555. "name": "Fabien Potencier",
  3556. "email": "fabien@symfony.com"
  3557. },
  3558. {
  3559. "name": "Symfony Community",
  3560. "homepage": "https://symfony.com/contributors"
  3561. }
  3562. ],
  3563. "description": "Provides tools to manage errors and ease debugging PHP code",
  3564. "homepage": "https://symfony.com",
  3565. "funding": [
  3566. {
  3567. "url": "https://symfony.com/sponsor",
  3568. "type": "custom"
  3569. },
  3570. {
  3571. "url": "https://github.com/fabpot",
  3572. "type": "github"
  3573. },
  3574. {
  3575. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3576. "type": "tidelift"
  3577. }
  3578. ],
  3579. "time": "2022-01-02T09:41:36+00:00"
  3580. },
  3581. {
  3582. "name": "symfony/event-dispatcher",
  3583. "version": "v4.4.37",
  3584. "dist": {
  3585. "type": "zip",
  3586. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/symfony/event-dispatcher/v4.4.37/symfony-event-dispatcher-v4.4.37.zip",
  3587. "reference": "3ccfcfb96ecce1217d7b0875a0736976bc6e63dc",
  3588. "shasum": ""
  3589. },
  3590. "require": {
  3591. "php": ">=7.1.3",
  3592. "symfony/event-dispatcher-contracts": "^1.1",
  3593. "symfony/polyfill-php80": "^1.16"
  3594. },
  3595. "conflict": {
  3596. "symfony/dependency-injection": "<3.4"
  3597. },
  3598. "provide": {
  3599. "psr/event-dispatcher-implementation": "1.0",
  3600. "symfony/event-dispatcher-implementation": "1.1"
  3601. },
  3602. "require-dev": {
  3603. "psr/log": "^1|^2|^3",
  3604. "symfony/config": "^3.4|^4.0|^5.0",
  3605. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  3606. "symfony/error-handler": "~3.4|~4.4",
  3607. "symfony/expression-language": "^3.4|^4.0|^5.0",
  3608. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  3609. "symfony/service-contracts": "^1.1|^2",
  3610. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  3611. },
  3612. "suggest": {
  3613. "symfony/dependency-injection": "",
  3614. "symfony/http-kernel": ""
  3615. },
  3616. "type": "library",
  3617. "autoload": {
  3618. "psr-4": {
  3619. "Symfony\\Component\\EventDispatcher\\": ""
  3620. },
  3621. "exclude-from-classmap": [
  3622. "/Tests/"
  3623. ]
  3624. },
  3625. "license": [
  3626. "MIT"
  3627. ],
  3628. "authors": [
  3629. {
  3630. "name": "Fabien Potencier",
  3631. "email": "fabien@symfony.com"
  3632. },
  3633. {
  3634. "name": "Symfony Community",
  3635. "homepage": "https://symfony.com/contributors"
  3636. }
  3637. ],
  3638. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3639. "homepage": "https://symfony.com",
  3640. "funding": [
  3641. {
  3642. "url": "https://symfony.com/sponsor",
  3643. "type": "custom"
  3644. },
  3645. {
  3646. "url": "https://github.com/fabpot",
  3647. "type": "github"
  3648. },
  3649. {
  3650. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3651. "type": "tidelift"
  3652. }
  3653. ],
  3654. "time": "2022-01-02T09:41:36+00:00"
  3655. },
  3656. {
  3657. "name": "symfony/event-dispatcher-contracts",
  3658. "version": "v1.1.11",
  3659. "dist": {
  3660. "type": "zip",
  3661. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/symfony/event-dispatcher-contracts/v1.1.11/symfony-event-dispatcher-contracts-v1.1.11.zip",
  3662. "reference": "01e9a4efac0ee33a05dfdf93b346f62e7d0e998c",
  3663. "shasum": ""
  3664. },
  3665. "require": {
  3666. "php": ">=7.1.3"
  3667. },
  3668. "suggest": {
  3669. "psr/event-dispatcher": "",
  3670. "symfony/event-dispatcher-implementation": ""
  3671. },
  3672. "type": "library",
  3673. "extra": {
  3674. "branch-alias": {
  3675. "dev-main": "1.1-dev"
  3676. },
  3677. "thanks": {
  3678. "name": "symfony/contracts",
  3679. "url": "https://github.com/symfony/contracts"
  3680. }
  3681. },
  3682. "autoload": {
  3683. "psr-4": {
  3684. "Symfony\\Contracts\\EventDispatcher\\": ""
  3685. }
  3686. },
  3687. "license": [
  3688. "MIT"
  3689. ],
  3690. "authors": [
  3691. {
  3692. "name": "Nicolas Grekas",
  3693. "email": "p@tchwork.com"
  3694. },
  3695. {
  3696. "name": "Symfony Community",
  3697. "homepage": "https://symfony.com/contributors"
  3698. }
  3699. ],
  3700. "description": "Generic abstractions related to dispatching event",
  3701. "homepage": "https://symfony.com",
  3702. "keywords": [
  3703. "abstractions",
  3704. "contracts",
  3705. "decoupling",
  3706. "interfaces",
  3707. "interoperability",
  3708. "standards"
  3709. ],
  3710. "funding": [
  3711. {
  3712. "url": "https://symfony.com/sponsor",
  3713. "type": "custom"
  3714. },
  3715. {
  3716. "url": "https://github.com/fabpot",
  3717. "type": "github"
  3718. },
  3719. {
  3720. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3721. "type": "tidelift"
  3722. }
  3723. ],
  3724. "time": "2021-03-23T15:25:38+00:00"
  3725. },
  3726. {
  3727. "name": "symfony/finder",
  3728. "version": "v4.4.37",
  3729. "dist": {
  3730. "type": "zip",
  3731. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/symfony/finder/v4.4.37/symfony-finder-v4.4.37.zip",
  3732. "reference": "b17d76d7ed179f017aad646e858c90a2771af15d",
  3733. "shasum": ""
  3734. },
  3735. "require": {
  3736. "php": ">=7.1.3",
  3737. "symfony/polyfill-php80": "^1.16"
  3738. },
  3739. "type": "library",
  3740. "autoload": {
  3741. "psr-4": {
  3742. "Symfony\\Component\\Finder\\": ""
  3743. },
  3744. "exclude-from-classmap": [
  3745. "/Tests/"
  3746. ]
  3747. },
  3748. "license": [
  3749. "MIT"
  3750. ],
  3751. "authors": [
  3752. {
  3753. "name": "Fabien Potencier",
  3754. "email": "fabien@symfony.com"
  3755. },
  3756. {
  3757. "name": "Symfony Community",
  3758. "homepage": "https://symfony.com/contributors"
  3759. }
  3760. ],
  3761. "description": "Finds files and directories via an intuitive fluent interface",
  3762. "homepage": "https://symfony.com",
  3763. "funding": [
  3764. {
  3765. "url": "https://symfony.com/sponsor",
  3766. "type": "custom"
  3767. },
  3768. {
  3769. "url": "https://github.com/fabpot",
  3770. "type": "github"
  3771. },
  3772. {
  3773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3774. "type": "tidelift"
  3775. }
  3776. ],
  3777. "time": "2022-01-02T09:41:36+00:00"
  3778. },
  3779. {
  3780. "name": "symfony/http-client-contracts",
  3781. "version": "v2.5.0",
  3782. "dist": {
  3783. "type": "zip",
  3784. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/symfony/http-client-contracts/v2.5.0/symfony-http-client-contracts-v2.5.0.zip",
  3785. "reference": "ec82e57b5b714dbb69300d348bd840b345e24166",
  3786. "shasum": ""
  3787. },
  3788. "require": {
  3789. "php": ">=7.2.5"
  3790. },
  3791. "suggest": {
  3792. "symfony/http-client-implementation": ""
  3793. },
  3794. "type": "library",
  3795. "extra": {
  3796. "branch-alias": {
  3797. "dev-main": "2.5-dev"
  3798. },
  3799. "thanks": {
  3800. "name": "symfony/contracts",
  3801. "url": "https://github.com/symfony/contracts"
  3802. }
  3803. },
  3804. "autoload": {
  3805. "psr-4": {
  3806. "Symfony\\Contracts\\HttpClient\\": ""
  3807. }
  3808. },
  3809. "license": [
  3810. "MIT"
  3811. ],
  3812. "authors": [
  3813. {
  3814. "name": "Nicolas Grekas",
  3815. "email": "p@tchwork.com"
  3816. },
  3817. {
  3818. "name": "Symfony Community",
  3819. "homepage": "https://symfony.com/contributors"
  3820. }
  3821. ],
  3822. "description": "Generic abstractions related to HTTP clients",
  3823. "homepage": "https://symfony.com",
  3824. "keywords": [
  3825. "abstractions",
  3826. "contracts",
  3827. "decoupling",
  3828. "interfaces",
  3829. "interoperability",
  3830. "standards"
  3831. ],
  3832. "funding": [
  3833. {
  3834. "url": "https://symfony.com/sponsor",
  3835. "type": "custom"
  3836. },
  3837. {
  3838. "url": "https://github.com/fabpot",
  3839. "type": "github"
  3840. },
  3841. {
  3842. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3843. "type": "tidelift"
  3844. }
  3845. ],
  3846. "time": "2021-11-03T09:24:47+00:00"
  3847. },
  3848. {
  3849. "name": "symfony/http-foundation",
  3850. "version": "v4.4.39",
  3851. "dist": {
  3852. "type": "zip",
  3853. "url": "https://mirrors.tencent.com/repository/composer/symfony/http-foundation/v4.4.39/symfony-http-foundation-v4.4.39.zip",
  3854. "reference": "60e8e42a4579551e5ec887d04380e2ab9e4cc314",
  3855. "shasum": ""
  3856. },
  3857. "require": {
  3858. "php": ">=7.1.3",
  3859. "symfony/mime": "^4.3|^5.0",
  3860. "symfony/polyfill-mbstring": "~1.1",
  3861. "symfony/polyfill-php80": "^1.16"
  3862. },
  3863. "require-dev": {
  3864. "predis/predis": "~1.0",
  3865. "symfony/expression-language": "^3.4|^4.0|^5.0"
  3866. },
  3867. "type": "library",
  3868. "autoload": {
  3869. "psr-4": {
  3870. "Symfony\\Component\\HttpFoundation\\": ""
  3871. },
  3872. "exclude-from-classmap": [
  3873. "/Tests/"
  3874. ]
  3875. },
  3876. "license": [
  3877. "MIT"
  3878. ],
  3879. "authors": [
  3880. {
  3881. "name": "Fabien Potencier",
  3882. "email": "fabien@symfony.com"
  3883. },
  3884. {
  3885. "name": "Symfony Community",
  3886. "homepage": "https://symfony.com/contributors"
  3887. }
  3888. ],
  3889. "description": "Defines an object-oriented layer for the HTTP specification",
  3890. "homepage": "https://symfony.com",
  3891. "time": "2022-03-04T07:06:13+00:00"
  3892. },
  3893. {
  3894. "name": "symfony/http-kernel",
  3895. "version": "v4.4.39",
  3896. "dist": {
  3897. "type": "zip",
  3898. "url": "https://mirrors.tencent.com/repository/composer/symfony/http-kernel/v4.4.39/symfony-http-kernel-v4.4.39.zip",
  3899. "reference": "19d1cacefe81cb448227cc4d5909fb36e2e23081",
  3900. "shasum": ""
  3901. },
  3902. "require": {
  3903. "php": ">=7.1.3",
  3904. "psr/log": "^1|^2",
  3905. "symfony/error-handler": "^4.4",
  3906. "symfony/event-dispatcher": "^4.4",
  3907. "symfony/http-client-contracts": "^1.1|^2",
  3908. "symfony/http-foundation": "^4.4.30|^5.3.7",
  3909. "symfony/polyfill-ctype": "^1.8",
  3910. "symfony/polyfill-php73": "^1.9",
  3911. "symfony/polyfill-php80": "^1.16"
  3912. },
  3913. "conflict": {
  3914. "symfony/browser-kit": "<4.3",
  3915. "symfony/config": "<3.4",
  3916. "symfony/console": ">=5",
  3917. "symfony/dependency-injection": "<4.3",
  3918. "symfony/translation": "<4.2",
  3919. "twig/twig": "<1.43|<2.13,>=2"
  3920. },
  3921. "provide": {
  3922. "psr/log-implementation": "1.0|2.0"
  3923. },
  3924. "require-dev": {
  3925. "psr/cache": "^1.0|^2.0|^3.0",
  3926. "symfony/browser-kit": "^4.3|^5.0",
  3927. "symfony/config": "^3.4|^4.0|^5.0",
  3928. "symfony/console": "^3.4|^4.0",
  3929. "symfony/css-selector": "^3.4|^4.0|^5.0",
  3930. "symfony/dependency-injection": "^4.3|^5.0",
  3931. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  3932. "symfony/expression-language": "^3.4|^4.0|^5.0",
  3933. "symfony/finder": "^3.4|^4.0|^5.0",
  3934. "symfony/process": "^3.4|^4.0|^5.0",
  3935. "symfony/routing": "^3.4|^4.0|^5.0",
  3936. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  3937. "symfony/templating": "^3.4|^4.0|^5.0",
  3938. "symfony/translation": "^4.2|^5.0",
  3939. "symfony/translation-contracts": "^1.1|^2",
  3940. "twig/twig": "^1.43|^2.13|^3.0.4"
  3941. },
  3942. "suggest": {
  3943. "symfony/browser-kit": "",
  3944. "symfony/config": "",
  3945. "symfony/console": "",
  3946. "symfony/dependency-injection": ""
  3947. },
  3948. "type": "library",
  3949. "autoload": {
  3950. "psr-4": {
  3951. "Symfony\\Component\\HttpKernel\\": ""
  3952. },
  3953. "exclude-from-classmap": [
  3954. "/Tests/"
  3955. ]
  3956. },
  3957. "license": [
  3958. "MIT"
  3959. ],
  3960. "authors": [
  3961. {
  3962. "name": "Fabien Potencier",
  3963. "email": "fabien@symfony.com"
  3964. },
  3965. {
  3966. "name": "Symfony Community",
  3967. "homepage": "https://symfony.com/contributors"
  3968. }
  3969. ],
  3970. "description": "Provides a structured process for converting a Request into a Response",
  3971. "homepage": "https://symfony.com",
  3972. "time": "2022-03-05T21:04:55+00:00"
  3973. },
  3974. {
  3975. "name": "symfony/mime",
  3976. "version": "v5.4.3",
  3977. "dist": {
  3978. "type": "zip",
  3979. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/symfony/mime/v5.4.3/symfony-mime-v5.4.3.zip",
  3980. "reference": "e1503cfb5c9a225350f549d3bb99296f4abfb80f",
  3981. "shasum": ""
  3982. },
  3983. "require": {
  3984. "php": ">=7.2.5",
  3985. "symfony/deprecation-contracts": "^2.1|^3",
  3986. "symfony/polyfill-intl-idn": "^1.10",
  3987. "symfony/polyfill-mbstring": "^1.0",
  3988. "symfony/polyfill-php80": "^1.16"
  3989. },
  3990. "conflict": {
  3991. "egulias/email-validator": "~3.0.0",
  3992. "phpdocumentor/reflection-docblock": "<3.2.2",
  3993. "phpdocumentor/type-resolver": "<1.4.0",
  3994. "symfony/mailer": "<4.4"
  3995. },
  3996. "require-dev": {
  3997. "egulias/email-validator": "^2.1.10|^3.1",
  3998. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3999. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4000. "symfony/property-access": "^4.4|^5.1|^6.0",
  4001. "symfony/property-info": "^4.4|^5.1|^6.0",
  4002. "symfony/serializer": "^5.2|^6.0"
  4003. },
  4004. "type": "library",
  4005. "autoload": {
  4006. "psr-4": {
  4007. "Symfony\\Component\\Mime\\": ""
  4008. },
  4009. "exclude-from-classmap": [
  4010. "/Tests/"
  4011. ]
  4012. },
  4013. "license": [
  4014. "MIT"
  4015. ],
  4016. "authors": [
  4017. {
  4018. "name": "Fabien Potencier",
  4019. "email": "fabien@symfony.com"
  4020. },
  4021. {
  4022. "name": "Symfony Community",
  4023. "homepage": "https://symfony.com/contributors"
  4024. }
  4025. ],
  4026. "description": "Allows manipulating MIME messages",
  4027. "homepage": "https://symfony.com",
  4028. "keywords": [
  4029. "mime",
  4030. "mime-type"
  4031. ],
  4032. "funding": [
  4033. {
  4034. "url": "https://symfony.com/sponsor",
  4035. "type": "custom"
  4036. },
  4037. {
  4038. "url": "https://github.com/fabpot",
  4039. "type": "github"
  4040. },
  4041. {
  4042. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4043. "type": "tidelift"
  4044. }
  4045. ],
  4046. "time": "2022-01-02T09:53:40+00:00"
  4047. },
  4048. {
  4049. "name": "symfony/polyfill-ctype",
  4050. "version": "v1.25.0",
  4051. "dist": {
  4052. "type": "zip",
  4053. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-ctype/v1.25.0/symfony-polyfill-ctype-v1.25.0.zip",
  4054. "reference": "30885182c981ab175d4d034db0f6f469898070ab",
  4055. "shasum": ""
  4056. },
  4057. "require": {
  4058. "php": ">=7.1"
  4059. },
  4060. "provide": {
  4061. "ext-ctype": "*"
  4062. },
  4063. "suggest": {
  4064. "ext-ctype": "For best performance"
  4065. },
  4066. "type": "library",
  4067. "extra": {
  4068. "branch-alias": {
  4069. "dev-main": "1.23-dev"
  4070. },
  4071. "thanks": {
  4072. "name": "symfony/polyfill",
  4073. "url": "https://github.com/symfony/polyfill"
  4074. }
  4075. },
  4076. "autoload": {
  4077. "files": [
  4078. "bootstrap.php"
  4079. ],
  4080. "psr-4": {
  4081. "Symfony\\Polyfill\\Ctype\\": ""
  4082. }
  4083. },
  4084. "license": [
  4085. "MIT"
  4086. ],
  4087. "authors": [
  4088. {
  4089. "name": "Gert de Pagter",
  4090. "email": "BackEndTea@gmail.com"
  4091. },
  4092. {
  4093. "name": "Symfony Community",
  4094. "homepage": "https://symfony.com/contributors"
  4095. }
  4096. ],
  4097. "description": "Symfony polyfill for ctype functions",
  4098. "homepage": "https://symfony.com",
  4099. "keywords": [
  4100. "compatibility",
  4101. "ctype",
  4102. "polyfill",
  4103. "portable"
  4104. ],
  4105. "time": "2021-10-20T20:35:02+00:00"
  4106. },
  4107. {
  4108. "name": "symfony/polyfill-iconv",
  4109. "version": "v1.25.0",
  4110. "dist": {
  4111. "type": "zip",
  4112. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-iconv/v1.25.0/symfony-polyfill-iconv-v1.25.0.zip",
  4113. "reference": "f1aed619e28cb077fc83fac8c4c0383578356e40",
  4114. "shasum": ""
  4115. },
  4116. "require": {
  4117. "php": ">=7.1"
  4118. },
  4119. "provide": {
  4120. "ext-iconv": "*"
  4121. },
  4122. "suggest": {
  4123. "ext-iconv": "For best performance"
  4124. },
  4125. "type": "library",
  4126. "extra": {
  4127. "branch-alias": {
  4128. "dev-main": "1.23-dev"
  4129. },
  4130. "thanks": {
  4131. "name": "symfony/polyfill",
  4132. "url": "https://github.com/symfony/polyfill"
  4133. }
  4134. },
  4135. "autoload": {
  4136. "files": [
  4137. "bootstrap.php"
  4138. ],
  4139. "psr-4": {
  4140. "Symfony\\Polyfill\\Iconv\\": ""
  4141. }
  4142. },
  4143. "license": [
  4144. "MIT"
  4145. ],
  4146. "authors": [
  4147. {
  4148. "name": "Nicolas Grekas",
  4149. "email": "p@tchwork.com"
  4150. },
  4151. {
  4152. "name": "Symfony Community",
  4153. "homepage": "https://symfony.com/contributors"
  4154. }
  4155. ],
  4156. "description": "Symfony polyfill for the Iconv extension",
  4157. "homepage": "https://symfony.com",
  4158. "keywords": [
  4159. "compatibility",
  4160. "iconv",
  4161. "polyfill",
  4162. "portable",
  4163. "shim"
  4164. ],
  4165. "time": "2022-01-04T09:04:05+00:00"
  4166. },
  4167. {
  4168. "name": "symfony/polyfill-intl-idn",
  4169. "version": "v1.25.0",
  4170. "dist": {
  4171. "type": "zip",
  4172. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-intl-idn/v1.25.0/symfony-polyfill-intl-idn-v1.25.0.zip",
  4173. "reference": "749045c69efb97c70d25d7463abba812e91f3a44",
  4174. "shasum": ""
  4175. },
  4176. "require": {
  4177. "php": ">=7.1",
  4178. "symfony/polyfill-intl-normalizer": "^1.10",
  4179. "symfony/polyfill-php72": "^1.10"
  4180. },
  4181. "suggest": {
  4182. "ext-intl": "For best performance"
  4183. },
  4184. "type": "library",
  4185. "extra": {
  4186. "branch-alias": {
  4187. "dev-main": "1.23-dev"
  4188. },
  4189. "thanks": {
  4190. "name": "symfony/polyfill",
  4191. "url": "https://github.com/symfony/polyfill"
  4192. }
  4193. },
  4194. "autoload": {
  4195. "files": [
  4196. "bootstrap.php"
  4197. ],
  4198. "psr-4": {
  4199. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4200. }
  4201. },
  4202. "license": [
  4203. "MIT"
  4204. ],
  4205. "authors": [
  4206. {
  4207. "name": "Laurent Bassin",
  4208. "email": "laurent@bassin.info"
  4209. },
  4210. {
  4211. "name": "Trevor Rowbotham",
  4212. "email": "trevor.rowbotham@pm.me"
  4213. },
  4214. {
  4215. "name": "Symfony Community",
  4216. "homepage": "https://symfony.com/contributors"
  4217. }
  4218. ],
  4219. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4220. "homepage": "https://symfony.com",
  4221. "keywords": [
  4222. "compatibility",
  4223. "idn",
  4224. "intl",
  4225. "polyfill",
  4226. "portable",
  4227. "shim"
  4228. ],
  4229. "time": "2021-09-14T14:02:44+00:00"
  4230. },
  4231. {
  4232. "name": "symfony/polyfill-intl-normalizer",
  4233. "version": "v1.25.0",
  4234. "dist": {
  4235. "type": "zip",
  4236. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-intl-normalizer/v1.25.0/symfony-polyfill-intl-normalizer-v1.25.0.zip",
  4237. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  4238. "shasum": ""
  4239. },
  4240. "require": {
  4241. "php": ">=7.1"
  4242. },
  4243. "suggest": {
  4244. "ext-intl": "For best performance"
  4245. },
  4246. "type": "library",
  4247. "extra": {
  4248. "branch-alias": {
  4249. "dev-main": "1.23-dev"
  4250. },
  4251. "thanks": {
  4252. "name": "symfony/polyfill",
  4253. "url": "https://github.com/symfony/polyfill"
  4254. }
  4255. },
  4256. "autoload": {
  4257. "files": [
  4258. "bootstrap.php"
  4259. ],
  4260. "psr-4": {
  4261. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4262. },
  4263. "classmap": [
  4264. "Resources/stubs"
  4265. ]
  4266. },
  4267. "license": [
  4268. "MIT"
  4269. ],
  4270. "authors": [
  4271. {
  4272. "name": "Nicolas Grekas",
  4273. "email": "p@tchwork.com"
  4274. },
  4275. {
  4276. "name": "Symfony Community",
  4277. "homepage": "https://symfony.com/contributors"
  4278. }
  4279. ],
  4280. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4281. "homepage": "https://symfony.com",
  4282. "keywords": [
  4283. "compatibility",
  4284. "intl",
  4285. "normalizer",
  4286. "polyfill",
  4287. "portable",
  4288. "shim"
  4289. ],
  4290. "time": "2021-02-19T12:13:01+00:00"
  4291. },
  4292. {
  4293. "name": "symfony/polyfill-mbstring",
  4294. "version": "v1.25.0",
  4295. "dist": {
  4296. "type": "zip",
  4297. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-mbstring/v1.25.0/symfony-polyfill-mbstring-v1.25.0.zip",
  4298. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  4299. "shasum": ""
  4300. },
  4301. "require": {
  4302. "php": ">=7.1"
  4303. },
  4304. "provide": {
  4305. "ext-mbstring": "*"
  4306. },
  4307. "suggest": {
  4308. "ext-mbstring": "For best performance"
  4309. },
  4310. "type": "library",
  4311. "extra": {
  4312. "branch-alias": {
  4313. "dev-main": "1.23-dev"
  4314. },
  4315. "thanks": {
  4316. "name": "symfony/polyfill",
  4317. "url": "https://github.com/symfony/polyfill"
  4318. }
  4319. },
  4320. "autoload": {
  4321. "files": [
  4322. "bootstrap.php"
  4323. ],
  4324. "psr-4": {
  4325. "Symfony\\Polyfill\\Mbstring\\": ""
  4326. }
  4327. },
  4328. "license": [
  4329. "MIT"
  4330. ],
  4331. "authors": [
  4332. {
  4333. "name": "Nicolas Grekas",
  4334. "email": "p@tchwork.com"
  4335. },
  4336. {
  4337. "name": "Symfony Community",
  4338. "homepage": "https://symfony.com/contributors"
  4339. }
  4340. ],
  4341. "description": "Symfony polyfill for the Mbstring extension",
  4342. "homepage": "https://symfony.com",
  4343. "keywords": [
  4344. "compatibility",
  4345. "mbstring",
  4346. "polyfill",
  4347. "portable",
  4348. "shim"
  4349. ],
  4350. "time": "2021-11-30T18:21:41+00:00"
  4351. },
  4352. {
  4353. "name": "symfony/polyfill-php72",
  4354. "version": "v1.25.0",
  4355. "dist": {
  4356. "type": "zip",
  4357. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-php72/v1.25.0/symfony-polyfill-php72-v1.25.0.zip",
  4358. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  4359. "shasum": ""
  4360. },
  4361. "require": {
  4362. "php": ">=7.1"
  4363. },
  4364. "type": "library",
  4365. "extra": {
  4366. "branch-alias": {
  4367. "dev-main": "1.23-dev"
  4368. },
  4369. "thanks": {
  4370. "name": "symfony/polyfill",
  4371. "url": "https://github.com/symfony/polyfill"
  4372. }
  4373. },
  4374. "autoload": {
  4375. "files": [
  4376. "bootstrap.php"
  4377. ],
  4378. "psr-4": {
  4379. "Symfony\\Polyfill\\Php72\\": ""
  4380. }
  4381. },
  4382. "license": [
  4383. "MIT"
  4384. ],
  4385. "authors": [
  4386. {
  4387. "name": "Nicolas Grekas",
  4388. "email": "p@tchwork.com"
  4389. },
  4390. {
  4391. "name": "Symfony Community",
  4392. "homepage": "https://symfony.com/contributors"
  4393. }
  4394. ],
  4395. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4396. "homepage": "https://symfony.com",
  4397. "keywords": [
  4398. "compatibility",
  4399. "polyfill",
  4400. "portable",
  4401. "shim"
  4402. ],
  4403. "time": "2021-05-27T09:17:38+00:00"
  4404. },
  4405. {
  4406. "name": "symfony/polyfill-php73",
  4407. "version": "v1.25.0",
  4408. "dist": {
  4409. "type": "zip",
  4410. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-php73/v1.25.0/symfony-polyfill-php73-v1.25.0.zip",
  4411. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5",
  4412. "shasum": ""
  4413. },
  4414. "require": {
  4415. "php": ">=7.1"
  4416. },
  4417. "type": "library",
  4418. "extra": {
  4419. "branch-alias": {
  4420. "dev-main": "1.23-dev"
  4421. },
  4422. "thanks": {
  4423. "name": "symfony/polyfill",
  4424. "url": "https://github.com/symfony/polyfill"
  4425. }
  4426. },
  4427. "autoload": {
  4428. "files": [
  4429. "bootstrap.php"
  4430. ],
  4431. "psr-4": {
  4432. "Symfony\\Polyfill\\Php73\\": ""
  4433. },
  4434. "classmap": [
  4435. "Resources/stubs"
  4436. ]
  4437. },
  4438. "license": [
  4439. "MIT"
  4440. ],
  4441. "authors": [
  4442. {
  4443. "name": "Nicolas Grekas",
  4444. "email": "p@tchwork.com"
  4445. },
  4446. {
  4447. "name": "Symfony Community",
  4448. "homepage": "https://symfony.com/contributors"
  4449. }
  4450. ],
  4451. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4452. "homepage": "https://symfony.com",
  4453. "keywords": [
  4454. "compatibility",
  4455. "polyfill",
  4456. "portable",
  4457. "shim"
  4458. ],
  4459. "time": "2021-06-05T21:20:04+00:00"
  4460. },
  4461. {
  4462. "name": "symfony/polyfill-php80",
  4463. "version": "v1.25.0",
  4464. "dist": {
  4465. "type": "zip",
  4466. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-php80/v1.25.0/symfony-polyfill-php80-v1.25.0.zip",
  4467. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  4468. "shasum": ""
  4469. },
  4470. "require": {
  4471. "php": ">=7.1"
  4472. },
  4473. "type": "library",
  4474. "extra": {
  4475. "branch-alias": {
  4476. "dev-main": "1.23-dev"
  4477. },
  4478. "thanks": {
  4479. "name": "symfony/polyfill",
  4480. "url": "https://github.com/symfony/polyfill"
  4481. }
  4482. },
  4483. "autoload": {
  4484. "files": [
  4485. "bootstrap.php"
  4486. ],
  4487. "psr-4": {
  4488. "Symfony\\Polyfill\\Php80\\": ""
  4489. },
  4490. "classmap": [
  4491. "Resources/stubs"
  4492. ]
  4493. },
  4494. "license": [
  4495. "MIT"
  4496. ],
  4497. "authors": [
  4498. {
  4499. "name": "Ion Bazan",
  4500. "email": "ion.bazan@gmail.com"
  4501. },
  4502. {
  4503. "name": "Nicolas Grekas",
  4504. "email": "p@tchwork.com"
  4505. },
  4506. {
  4507. "name": "Symfony Community",
  4508. "homepage": "https://symfony.com/contributors"
  4509. }
  4510. ],
  4511. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4512. "homepage": "https://symfony.com",
  4513. "keywords": [
  4514. "compatibility",
  4515. "polyfill",
  4516. "portable",
  4517. "shim"
  4518. ],
  4519. "time": "2022-03-04T08:16:47+00:00"
  4520. },
  4521. {
  4522. "name": "symfony/process",
  4523. "version": "v4.4.37",
  4524. "dist": {
  4525. "type": "zip",
  4526. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/symfony/process/v4.4.37/symfony-process-v4.4.37.zip",
  4527. "reference": "b2d924e5a4cb284f293d5092b1dbf0d364cb8b67",
  4528. "shasum": ""
  4529. },
  4530. "require": {
  4531. "php": ">=7.1.3",
  4532. "symfony/polyfill-php80": "^1.16"
  4533. },
  4534. "type": "library",
  4535. "autoload": {
  4536. "psr-4": {
  4537. "Symfony\\Component\\Process\\": ""
  4538. },
  4539. "exclude-from-classmap": [
  4540. "/Tests/"
  4541. ]
  4542. },
  4543. "license": [
  4544. "MIT"
  4545. ],
  4546. "authors": [
  4547. {
  4548. "name": "Fabien Potencier",
  4549. "email": "fabien@symfony.com"
  4550. },
  4551. {
  4552. "name": "Symfony Community",
  4553. "homepage": "https://symfony.com/contributors"
  4554. }
  4555. ],
  4556. "description": "Executes commands in sub-processes",
  4557. "homepage": "https://symfony.com",
  4558. "funding": [
  4559. {
  4560. "url": "https://symfony.com/sponsor",
  4561. "type": "custom"
  4562. },
  4563. {
  4564. "url": "https://github.com/fabpot",
  4565. "type": "github"
  4566. },
  4567. {
  4568. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4569. "type": "tidelift"
  4570. }
  4571. ],
  4572. "time": "2022-01-27T17:14:04+00:00"
  4573. },
  4574. {
  4575. "name": "symfony/psr-http-message-bridge",
  4576. "version": "v1.3.0",
  4577. "dist": {
  4578. "type": "zip",
  4579. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9d3e80d54d9ae747ad573cad796e8e247df7b796",
  4580. "reference": "9d3e80d54d9ae747ad573cad796e8e247df7b796",
  4581. "shasum": ""
  4582. },
  4583. "require": {
  4584. "php": "^7.1",
  4585. "psr/http-message": "^1.0",
  4586. "symfony/http-foundation": "^4.4 || ^5.0"
  4587. },
  4588. "require-dev": {
  4589. "nyholm/psr7": "^1.1",
  4590. "symfony/phpunit-bridge": "^4.4 || ^5.0",
  4591. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  4592. },
  4593. "suggest": {
  4594. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  4595. },
  4596. "type": "symfony-bridge",
  4597. "extra": {
  4598. "branch-alias": {
  4599. "dev-master": "1.3-dev"
  4600. }
  4601. },
  4602. "autoload": {
  4603. "psr-4": {
  4604. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  4605. },
  4606. "exclude-from-classmap": [
  4607. "/Tests/"
  4608. ]
  4609. },
  4610. "notification-url": "https://packagist.org/downloads/",
  4611. "license": [
  4612. "MIT"
  4613. ],
  4614. "authors": [
  4615. {
  4616. "name": "Fabien Potencier",
  4617. "email": "fabien@symfony.com"
  4618. },
  4619. {
  4620. "name": "Symfony Community",
  4621. "homepage": "http://symfony.com/contributors"
  4622. }
  4623. ],
  4624. "description": "PSR HTTP message bridge",
  4625. "homepage": "http://symfony.com",
  4626. "keywords": [
  4627. "http",
  4628. "http-message",
  4629. "psr-17",
  4630. "psr-7"
  4631. ],
  4632. "time": "2019-11-25T19:33:50+00:00"
  4633. },
  4634. {
  4635. "name": "symfony/routing",
  4636. "version": "v4.4.37",
  4637. "dist": {
  4638. "type": "zip",
  4639. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/symfony/routing/v4.4.37/symfony-routing-v4.4.37.zip",
  4640. "reference": "324f7f73b89cd30012575119430ccfb1dfbc24be",
  4641. "shasum": ""
  4642. },
  4643. "require": {
  4644. "php": ">=7.1.3",
  4645. "symfony/polyfill-php80": "^1.16"
  4646. },
  4647. "conflict": {
  4648. "symfony/config": "<4.2",
  4649. "symfony/dependency-injection": "<3.4",
  4650. "symfony/yaml": "<3.4"
  4651. },
  4652. "require-dev": {
  4653. "doctrine/annotations": "^1.10.4",
  4654. "psr/log": "^1|^2|^3",
  4655. "symfony/config": "^4.2|^5.0",
  4656. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4657. "symfony/expression-language": "^3.4|^4.0|^5.0",
  4658. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  4659. "symfony/yaml": "^3.4|^4.0|^5.0"
  4660. },
  4661. "suggest": {
  4662. "doctrine/annotations": "For using the annotation loader",
  4663. "symfony/config": "For using the all-in-one router or any loader",
  4664. "symfony/expression-language": "For using expression matching",
  4665. "symfony/http-foundation": "For using a Symfony Request object",
  4666. "symfony/yaml": "For using the YAML loader"
  4667. },
  4668. "type": "library",
  4669. "autoload": {
  4670. "psr-4": {
  4671. "Symfony\\Component\\Routing\\": ""
  4672. },
  4673. "exclude-from-classmap": [
  4674. "/Tests/"
  4675. ]
  4676. },
  4677. "license": [
  4678. "MIT"
  4679. ],
  4680. "authors": [
  4681. {
  4682. "name": "Fabien Potencier",
  4683. "email": "fabien@symfony.com"
  4684. },
  4685. {
  4686. "name": "Symfony Community",
  4687. "homepage": "https://symfony.com/contributors"
  4688. }
  4689. ],
  4690. "description": "Maps an HTTP request to a set of configuration variables",
  4691. "homepage": "https://symfony.com",
  4692. "keywords": [
  4693. "router",
  4694. "routing",
  4695. "uri",
  4696. "url"
  4697. ],
  4698. "funding": [
  4699. {
  4700. "url": "https://symfony.com/sponsor",
  4701. "type": "custom"
  4702. },
  4703. {
  4704. "url": "https://github.com/fabpot",
  4705. "type": "github"
  4706. },
  4707. {
  4708. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4709. "type": "tidelift"
  4710. }
  4711. ],
  4712. "time": "2022-01-02T09:41:36+00:00"
  4713. },
  4714. {
  4715. "name": "symfony/service-contracts",
  4716. "version": "v2.5.0",
  4717. "dist": {
  4718. "type": "zip",
  4719. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/symfony/service-contracts/v2.5.0/symfony-service-contracts-v2.5.0.zip",
  4720. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  4721. "shasum": ""
  4722. },
  4723. "require": {
  4724. "php": ">=7.2.5",
  4725. "psr/container": "^1.1",
  4726. "symfony/deprecation-contracts": "^2.1"
  4727. },
  4728. "conflict": {
  4729. "ext-psr": "<1.1|>=2"
  4730. },
  4731. "suggest": {
  4732. "symfony/service-implementation": ""
  4733. },
  4734. "type": "library",
  4735. "extra": {
  4736. "branch-alias": {
  4737. "dev-main": "2.5-dev"
  4738. },
  4739. "thanks": {
  4740. "name": "symfony/contracts",
  4741. "url": "https://github.com/symfony/contracts"
  4742. }
  4743. },
  4744. "autoload": {
  4745. "psr-4": {
  4746. "Symfony\\Contracts\\Service\\": ""
  4747. }
  4748. },
  4749. "license": [
  4750. "MIT"
  4751. ],
  4752. "authors": [
  4753. {
  4754. "name": "Nicolas Grekas",
  4755. "email": "p@tchwork.com"
  4756. },
  4757. {
  4758. "name": "Symfony Community",
  4759. "homepage": "https://symfony.com/contributors"
  4760. }
  4761. ],
  4762. "description": "Generic abstractions related to writing services",
  4763. "homepage": "https://symfony.com",
  4764. "keywords": [
  4765. "abstractions",
  4766. "contracts",
  4767. "decoupling",
  4768. "interfaces",
  4769. "interoperability",
  4770. "standards"
  4771. ],
  4772. "funding": [
  4773. {
  4774. "url": "https://symfony.com/sponsor",
  4775. "type": "custom"
  4776. },
  4777. {
  4778. "url": "https://github.com/fabpot",
  4779. "type": "github"
  4780. },
  4781. {
  4782. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4783. "type": "tidelift"
  4784. }
  4785. ],
  4786. "time": "2021-11-04T16:48:04+00:00"
  4787. },
  4788. {
  4789. "name": "symfony/translation",
  4790. "version": "v4.4.37",
  4791. "dist": {
  4792. "type": "zip",
  4793. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/symfony/translation/v4.4.37/symfony-translation-v4.4.37.zip",
  4794. "reference": "4ce00d6875230b839f5feef82e51971f6c886e00",
  4795. "shasum": ""
  4796. },
  4797. "require": {
  4798. "php": ">=7.1.3",
  4799. "symfony/polyfill-mbstring": "~1.0",
  4800. "symfony/polyfill-php80": "^1.16",
  4801. "symfony/translation-contracts": "^1.1.6|^2"
  4802. },
  4803. "conflict": {
  4804. "symfony/config": "<3.4",
  4805. "symfony/dependency-injection": "<3.4",
  4806. "symfony/http-kernel": "<4.4",
  4807. "symfony/yaml": "<3.4"
  4808. },
  4809. "provide": {
  4810. "symfony/translation-implementation": "1.0|2.0"
  4811. },
  4812. "require-dev": {
  4813. "psr/log": "^1|^2|^3",
  4814. "symfony/config": "^3.4|^4.0|^5.0",
  4815. "symfony/console": "^3.4|^4.0|^5.0",
  4816. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4817. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  4818. "symfony/http-kernel": "^4.4",
  4819. "symfony/intl": "^3.4|^4.0|^5.0",
  4820. "symfony/service-contracts": "^1.1.2|^2",
  4821. "symfony/yaml": "^3.4|^4.0|^5.0"
  4822. },
  4823. "suggest": {
  4824. "psr/log-implementation": "To use logging capability in translator",
  4825. "symfony/config": "",
  4826. "symfony/yaml": ""
  4827. },
  4828. "type": "library",
  4829. "autoload": {
  4830. "psr-4": {
  4831. "Symfony\\Component\\Translation\\": ""
  4832. },
  4833. "exclude-from-classmap": [
  4834. "/Tests/"
  4835. ]
  4836. },
  4837. "license": [
  4838. "MIT"
  4839. ],
  4840. "authors": [
  4841. {
  4842. "name": "Fabien Potencier",
  4843. "email": "fabien@symfony.com"
  4844. },
  4845. {
  4846. "name": "Symfony Community",
  4847. "homepage": "https://symfony.com/contributors"
  4848. }
  4849. ],
  4850. "description": "Provides tools to internationalize your application",
  4851. "homepage": "https://symfony.com",
  4852. "funding": [
  4853. {
  4854. "url": "https://symfony.com/sponsor",
  4855. "type": "custom"
  4856. },
  4857. {
  4858. "url": "https://github.com/fabpot",
  4859. "type": "github"
  4860. },
  4861. {
  4862. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4863. "type": "tidelift"
  4864. }
  4865. ],
  4866. "time": "2022-01-02T09:41:36+00:00"
  4867. },
  4868. {
  4869. "name": "symfony/translation-contracts",
  4870. "version": "v2.5.0",
  4871. "dist": {
  4872. "type": "zip",
  4873. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/symfony/translation-contracts/v2.5.0/symfony-translation-contracts-v2.5.0.zip",
  4874. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e",
  4875. "shasum": ""
  4876. },
  4877. "require": {
  4878. "php": ">=7.2.5"
  4879. },
  4880. "suggest": {
  4881. "symfony/translation-implementation": ""
  4882. },
  4883. "type": "library",
  4884. "extra": {
  4885. "branch-alias": {
  4886. "dev-main": "2.5-dev"
  4887. },
  4888. "thanks": {
  4889. "name": "symfony/contracts",
  4890. "url": "https://github.com/symfony/contracts"
  4891. }
  4892. },
  4893. "autoload": {
  4894. "psr-4": {
  4895. "Symfony\\Contracts\\Translation\\": ""
  4896. }
  4897. },
  4898. "license": [
  4899. "MIT"
  4900. ],
  4901. "authors": [
  4902. {
  4903. "name": "Nicolas Grekas",
  4904. "email": "p@tchwork.com"
  4905. },
  4906. {
  4907. "name": "Symfony Community",
  4908. "homepage": "https://symfony.com/contributors"
  4909. }
  4910. ],
  4911. "description": "Generic abstractions related to translation",
  4912. "homepage": "https://symfony.com",
  4913. "keywords": [
  4914. "abstractions",
  4915. "contracts",
  4916. "decoupling",
  4917. "interfaces",
  4918. "interoperability",
  4919. "standards"
  4920. ],
  4921. "funding": [
  4922. {
  4923. "url": "https://symfony.com/sponsor",
  4924. "type": "custom"
  4925. },
  4926. {
  4927. "url": "https://github.com/fabpot",
  4928. "type": "github"
  4929. },
  4930. {
  4931. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4932. "type": "tidelift"
  4933. }
  4934. ],
  4935. "time": "2021-08-17T14:20:01+00:00"
  4936. },
  4937. {
  4938. "name": "symfony/var-dumper",
  4939. "version": "v4.4.39",
  4940. "dist": {
  4941. "type": "zip",
  4942. "url": "https://mirrors.tencent.com/repository/composer/symfony/var-dumper/v4.4.39/symfony-var-dumper-v4.4.39.zip",
  4943. "reference": "35237c5e5dcb6593a46a860ba5b29c1d4683d80e",
  4944. "shasum": ""
  4945. },
  4946. "require": {
  4947. "php": ">=7.1.3",
  4948. "symfony/polyfill-mbstring": "~1.0",
  4949. "symfony/polyfill-php72": "~1.5",
  4950. "symfony/polyfill-php80": "^1.16"
  4951. },
  4952. "conflict": {
  4953. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4954. "symfony/console": "<3.4"
  4955. },
  4956. "require-dev": {
  4957. "ext-iconv": "*",
  4958. "symfony/console": "^3.4|^4.0|^5.0",
  4959. "symfony/process": "^4.4|^5.0",
  4960. "twig/twig": "^1.43|^2.13|^3.0.4"
  4961. },
  4962. "suggest": {
  4963. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4964. "ext-intl": "To show region name in time zone dump",
  4965. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4966. },
  4967. "bin": [
  4968. "Resources/bin/var-dump-server"
  4969. ],
  4970. "type": "library",
  4971. "autoload": {
  4972. "files": [
  4973. "Resources/functions/dump.php"
  4974. ],
  4975. "psr-4": {
  4976. "Symfony\\Component\\VarDumper\\": ""
  4977. },
  4978. "exclude-from-classmap": [
  4979. "/Tests/"
  4980. ]
  4981. },
  4982. "license": [
  4983. "MIT"
  4984. ],
  4985. "authors": [
  4986. {
  4987. "name": "Nicolas Grekas",
  4988. "email": "p@tchwork.com"
  4989. },
  4990. {
  4991. "name": "Symfony Community",
  4992. "homepage": "https://symfony.com/contributors"
  4993. }
  4994. ],
  4995. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4996. "homepage": "https://symfony.com",
  4997. "keywords": [
  4998. "debug",
  4999. "dump"
  5000. ],
  5001. "time": "2022-02-25T10:38:15+00:00"
  5002. },
  5003. {
  5004. "name": "tijsverkoyen/css-to-inline-styles",
  5005. "version": "2.2.4",
  5006. "dist": {
  5007. "type": "zip",
  5008. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/tijsverkoyen/css-to-inline-styles/2.2.4/tijsverkoyen-css-to-inline-styles-2.2.4.zip",
  5009. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  5010. "shasum": ""
  5011. },
  5012. "require": {
  5013. "ext-dom": "*",
  5014. "ext-libxml": "*",
  5015. "php": "^5.5 || ^7.0 || ^8.0",
  5016. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  5017. },
  5018. "require-dev": {
  5019. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  5020. },
  5021. "type": "library",
  5022. "extra": {
  5023. "branch-alias": {
  5024. "dev-master": "2.2.x-dev"
  5025. }
  5026. },
  5027. "autoload": {
  5028. "psr-4": {
  5029. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5030. }
  5031. },
  5032. "license": [
  5033. "BSD-3-Clause"
  5034. ],
  5035. "authors": [
  5036. {
  5037. "name": "Tijs Verkoyen",
  5038. "email": "css_to_inline_styles@verkoyen.eu",
  5039. "role": "Developer"
  5040. }
  5041. ],
  5042. "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.",
  5043. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5044. "time": "2021-12-08T09:12:39+00:00"
  5045. },
  5046. {
  5047. "name": "vlucas/phpdotenv",
  5048. "version": "v3.6.10",
  5049. "dist": {
  5050. "type": "zip",
  5051. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/vlucas/phpdotenv/v3.6.10/vlucas-phpdotenv-v3.6.10.zip",
  5052. "reference": "5b547cdb25825f10251370f57ba5d9d924e6f68e",
  5053. "shasum": ""
  5054. },
  5055. "require": {
  5056. "php": "^5.4 || ^7.0 || ^8.0",
  5057. "phpoption/phpoption": "^1.5.2",
  5058. "symfony/polyfill-ctype": "^1.17"
  5059. },
  5060. "require-dev": {
  5061. "ext-filter": "*",
  5062. "ext-pcre": "*",
  5063. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  5064. },
  5065. "suggest": {
  5066. "ext-filter": "Required to use the boolean validator.",
  5067. "ext-pcre": "Required to use most of the library."
  5068. },
  5069. "type": "library",
  5070. "extra": {
  5071. "branch-alias": {
  5072. "dev-master": "3.6-dev"
  5073. }
  5074. },
  5075. "autoload": {
  5076. "psr-4": {
  5077. "Dotenv\\": "src/"
  5078. }
  5079. },
  5080. "license": [
  5081. "BSD-3-Clause"
  5082. ],
  5083. "authors": [
  5084. {
  5085. "name": "Graham Campbell",
  5086. "email": "hello@gjcampbell.co.uk",
  5087. "homepage": "https://github.com/GrahamCampbell"
  5088. },
  5089. {
  5090. "name": "Vance Lucas",
  5091. "email": "vance@vancelucas.com",
  5092. "homepage": "https://github.com/vlucas"
  5093. }
  5094. ],
  5095. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5096. "keywords": [
  5097. "dotenv",
  5098. "env",
  5099. "environment"
  5100. ],
  5101. "funding": [
  5102. {
  5103. "url": "https://github.com/GrahamCampbell",
  5104. "type": "github"
  5105. },
  5106. {
  5107. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  5108. "type": "tidelift"
  5109. }
  5110. ],
  5111. "time": "2021-12-12T23:02:06+00:00"
  5112. },
  5113. {
  5114. "name": "zendframework/zend-diactoros",
  5115. "version": "2.2.1",
  5116. "dist": {
  5117. "type": "zip",
  5118. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/de5847b068362a88684a55b0dbb40d85986cfa52",
  5119. "reference": "de5847b068362a88684a55b0dbb40d85986cfa52",
  5120. "shasum": ""
  5121. },
  5122. "require": {
  5123. "php": "^7.1",
  5124. "psr/http-factory": "^1.0",
  5125. "psr/http-message": "^1.0"
  5126. },
  5127. "provide": {
  5128. "psr/http-factory-implementation": "1.0",
  5129. "psr/http-message-implementation": "1.0"
  5130. },
  5131. "require-dev": {
  5132. "ext-curl": "*",
  5133. "ext-dom": "*",
  5134. "ext-libxml": "*",
  5135. "http-interop/http-factory-tests": "^0.5.0",
  5136. "php-http/psr7-integration-tests": "dev-master",
  5137. "phpunit/phpunit": "^7.0.2",
  5138. "zendframework/zend-coding-standard": "~1.0.0"
  5139. },
  5140. "type": "library",
  5141. "extra": {
  5142. "branch-alias": {
  5143. "dev-master": "2.1.x-dev",
  5144. "dev-develop": "2.2.x-dev",
  5145. "dev-release-1.8": "1.8.x-dev"
  5146. }
  5147. },
  5148. "autoload": {
  5149. "files": [
  5150. "src/functions/create_uploaded_file.php",
  5151. "src/functions/marshal_headers_from_sapi.php",
  5152. "src/functions/marshal_method_from_sapi.php",
  5153. "src/functions/marshal_protocol_version_from_sapi.php",
  5154. "src/functions/marshal_uri_from_sapi.php",
  5155. "src/functions/normalize_server.php",
  5156. "src/functions/normalize_uploaded_files.php",
  5157. "src/functions/parse_cookie_header.php"
  5158. ],
  5159. "psr-4": {
  5160. "Zend\\Diactoros\\": "src/"
  5161. }
  5162. },
  5163. "notification-url": "https://packagist.org/downloads/",
  5164. "license": [
  5165. "BSD-3-Clause"
  5166. ],
  5167. "description": "PSR HTTP Message implementations",
  5168. "keywords": [
  5169. "http",
  5170. "psr",
  5171. "psr-7"
  5172. ],
  5173. "time": "2019-11-13T19:16:13+00:00"
  5174. }
  5175. ],
  5176. "packages-dev": [
  5177. {
  5178. "name": "beyondcode/laravel-dump-server",
  5179. "version": "1.3.0",
  5180. "dist": {
  5181. "type": "zip",
  5182. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a",
  5183. "reference": "fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a",
  5184. "shasum": ""
  5185. },
  5186. "require": {
  5187. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0",
  5188. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0",
  5189. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0",
  5190. "php": "^7.1",
  5191. "symfony/var-dumper": "^4.1.1"
  5192. },
  5193. "require-dev": {
  5194. "larapack/dd": "^1.0",
  5195. "phpunit/phpunit": "^7.0"
  5196. },
  5197. "type": "library",
  5198. "extra": {
  5199. "laravel": {
  5200. "providers": [
  5201. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  5202. ]
  5203. }
  5204. },
  5205. "autoload": {
  5206. "psr-4": {
  5207. "BeyondCode\\DumpServer\\": "src"
  5208. },
  5209. "files": [
  5210. "helpers.php"
  5211. ]
  5212. },
  5213. "notification-url": "https://packagist.org/downloads/",
  5214. "license": [
  5215. "MIT"
  5216. ],
  5217. "authors": [
  5218. {
  5219. "name": "Marcel Pociot",
  5220. "email": "marcel@beyondco.de",
  5221. "homepage": "https://beyondco.de",
  5222. "role": "Developer"
  5223. }
  5224. ],
  5225. "description": "Symfony Var-Dump Server for Laravel",
  5226. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  5227. "keywords": [
  5228. "beyondcode",
  5229. "laravel-dump-server"
  5230. ],
  5231. "time": "2019-08-11T13:17:40+00:00"
  5232. },
  5233. {
  5234. "name": "doctrine/instantiator",
  5235. "version": "1.4.1",
  5236. "dist": {
  5237. "type": "zip",
  5238. "url": "https://mirrors.tencent.com/repository/composer/doctrine/instantiator/1.4.1/doctrine-instantiator-1.4.1.zip",
  5239. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  5240. "shasum": ""
  5241. },
  5242. "require": {
  5243. "php": "^7.1 || ^8.0"
  5244. },
  5245. "require-dev": {
  5246. "doctrine/coding-standard": "^9",
  5247. "ext-pdo": "*",
  5248. "ext-phar": "*",
  5249. "phpbench/phpbench": "^0.16 || ^1",
  5250. "phpstan/phpstan": "^1.4",
  5251. "phpstan/phpstan-phpunit": "^1",
  5252. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  5253. "vimeo/psalm": "^4.22"
  5254. },
  5255. "type": "library",
  5256. "autoload": {
  5257. "psr-4": {
  5258. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5259. }
  5260. },
  5261. "license": [
  5262. "MIT"
  5263. ],
  5264. "authors": [
  5265. {
  5266. "name": "Marco Pivetta",
  5267. "email": "ocramius@gmail.com",
  5268. "homepage": "https://ocramius.github.io/"
  5269. }
  5270. ],
  5271. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  5272. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  5273. "keywords": [
  5274. "constructor",
  5275. "instantiate"
  5276. ],
  5277. "time": "2022-03-03T08:28:38+00:00"
  5278. },
  5279. {
  5280. "name": "filp/whoops",
  5281. "version": "2.14.5",
  5282. "dist": {
  5283. "type": "zip",
  5284. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/filp/whoops/2.14.5/filp-whoops-2.14.5.zip",
  5285. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  5286. "shasum": ""
  5287. },
  5288. "require": {
  5289. "php": "^5.5.9 || ^7.0 || ^8.0",
  5290. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  5291. },
  5292. "require-dev": {
  5293. "mockery/mockery": "^0.9 || ^1.0",
  5294. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  5295. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  5296. },
  5297. "suggest": {
  5298. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  5299. "whoops/soap": "Formats errors as SOAP responses"
  5300. },
  5301. "type": "library",
  5302. "extra": {
  5303. "branch-alias": {
  5304. "dev-master": "2.7-dev"
  5305. }
  5306. },
  5307. "autoload": {
  5308. "psr-4": {
  5309. "Whoops\\": "src/Whoops/"
  5310. }
  5311. },
  5312. "license": [
  5313. "MIT"
  5314. ],
  5315. "authors": [
  5316. {
  5317. "name": "Filipe Dobreira",
  5318. "homepage": "https://github.com/filp",
  5319. "role": "Developer"
  5320. }
  5321. ],
  5322. "description": "php error handling for cool kids",
  5323. "homepage": "https://filp.github.io/whoops/",
  5324. "keywords": [
  5325. "error",
  5326. "exception",
  5327. "handling",
  5328. "library",
  5329. "throwable",
  5330. "whoops"
  5331. ],
  5332. "funding": [
  5333. {
  5334. "url": "https://github.com/denis-sokolov",
  5335. "type": "github"
  5336. }
  5337. ],
  5338. "time": "2022-01-07T12:00:00+00:00"
  5339. },
  5340. {
  5341. "name": "fzaninotto/faker",
  5342. "version": "v1.9.2",
  5343. "dist": {
  5344. "type": "zip",
  5345. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  5346. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  5347. "shasum": ""
  5348. },
  5349. "require": {
  5350. "php": "^5.3.3 || ^7.0"
  5351. },
  5352. "require-dev": {
  5353. "ext-intl": "*",
  5354. "phpunit/phpunit": "^4.8.35 || ^5.7",
  5355. "squizlabs/php_codesniffer": "^2.9.2"
  5356. },
  5357. "type": "library",
  5358. "extra": {
  5359. "branch-alias": {
  5360. "dev-master": "1.9-dev"
  5361. }
  5362. },
  5363. "autoload": {
  5364. "psr-4": {
  5365. "Faker\\": "src/Faker/"
  5366. }
  5367. },
  5368. "notification-url": "https://packagist.org/downloads/",
  5369. "license": [
  5370. "MIT"
  5371. ],
  5372. "authors": [
  5373. {
  5374. "name": "François Zaninotto"
  5375. }
  5376. ],
  5377. "description": "Faker is a PHP library that generates fake data for you.",
  5378. "keywords": [
  5379. "data",
  5380. "faker",
  5381. "fixtures"
  5382. ],
  5383. "time": "2020-12-11T09:56:16+00:00"
  5384. },
  5385. {
  5386. "name": "hamcrest/hamcrest-php",
  5387. "version": "v2.0.1",
  5388. "dist": {
  5389. "type": "zip",
  5390. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5391. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5392. "shasum": ""
  5393. },
  5394. "require": {
  5395. "php": "^5.3|^7.0|^8.0"
  5396. },
  5397. "replace": {
  5398. "cordoval/hamcrest-php": "*",
  5399. "davedevelopment/hamcrest-php": "*",
  5400. "kodova/hamcrest-php": "*"
  5401. },
  5402. "require-dev": {
  5403. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  5404. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  5405. },
  5406. "type": "library",
  5407. "extra": {
  5408. "branch-alias": {
  5409. "dev-master": "2.1-dev"
  5410. }
  5411. },
  5412. "autoload": {
  5413. "classmap": [
  5414. "hamcrest"
  5415. ]
  5416. },
  5417. "notification-url": "https://packagist.org/downloads/",
  5418. "license": [
  5419. "BSD-3-Clause"
  5420. ],
  5421. "description": "This is the PHP port of Hamcrest Matchers",
  5422. "keywords": [
  5423. "test"
  5424. ],
  5425. "time": "2020-07-09T08:09:16+00:00"
  5426. },
  5427. {
  5428. "name": "mockery/mockery",
  5429. "version": "1.3.5",
  5430. "dist": {
  5431. "type": "zip",
  5432. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/mockery/mockery/1.3.5/mockery-mockery-1.3.5.zip",
  5433. "reference": "472fa8ca4e55483d55ee1e73c963718c4393791d",
  5434. "shasum": ""
  5435. },
  5436. "require": {
  5437. "hamcrest/hamcrest-php": "^2.0.1",
  5438. "lib-pcre": ">=7.0",
  5439. "php": ">=5.6.0"
  5440. },
  5441. "require-dev": {
  5442. "phpunit/phpunit": "^5.7.10|^6.5|^7.5|^8.5|^9.3"
  5443. },
  5444. "type": "library",
  5445. "extra": {
  5446. "branch-alias": {
  5447. "dev-master": "1.3.x-dev"
  5448. }
  5449. },
  5450. "autoload": {
  5451. "psr-0": {
  5452. "Mockery": "library/"
  5453. }
  5454. },
  5455. "license": [
  5456. "BSD-3-Clause"
  5457. ],
  5458. "authors": [
  5459. {
  5460. "name": "Pádraic Brady",
  5461. "email": "padraic.brady@gmail.com",
  5462. "homepage": "http://blog.astrumfutura.com"
  5463. },
  5464. {
  5465. "name": "Dave Marshall",
  5466. "email": "dave.marshall@atstsolutions.co.uk",
  5467. "homepage": "http://davedevelopment.co.uk"
  5468. }
  5469. ],
  5470. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5471. "homepage": "https://github.com/mockery/mockery",
  5472. "keywords": [
  5473. "BDD",
  5474. "TDD",
  5475. "library",
  5476. "mock",
  5477. "mock objects",
  5478. "mockery",
  5479. "stub",
  5480. "test",
  5481. "test double",
  5482. "testing"
  5483. ],
  5484. "time": "2021-09-13T15:33:03+00:00"
  5485. },
  5486. {
  5487. "name": "myclabs/deep-copy",
  5488. "version": "1.11.0",
  5489. "dist": {
  5490. "type": "zip",
  5491. "url": "https://mirrors.tencent.com/repository/composer/myclabs/deep-copy/1.11.0/myclabs-deep-copy-1.11.0.zip",
  5492. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  5493. "shasum": ""
  5494. },
  5495. "require": {
  5496. "php": "^7.1 || ^8.0"
  5497. },
  5498. "conflict": {
  5499. "doctrine/collections": "<1.6.8",
  5500. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  5501. },
  5502. "require-dev": {
  5503. "doctrine/collections": "^1.6.8",
  5504. "doctrine/common": "^2.13.3 || ^3.2.2",
  5505. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  5506. },
  5507. "type": "library",
  5508. "autoload": {
  5509. "files": [
  5510. "src/DeepCopy/deep_copy.php"
  5511. ],
  5512. "psr-4": {
  5513. "DeepCopy\\": "src/DeepCopy/"
  5514. }
  5515. },
  5516. "license": [
  5517. "MIT"
  5518. ],
  5519. "description": "Create deep copies (clones) of your objects",
  5520. "keywords": [
  5521. "clone",
  5522. "copy",
  5523. "duplicate",
  5524. "object",
  5525. "object graph"
  5526. ],
  5527. "time": "2022-03-03T13:19:32+00:00"
  5528. },
  5529. {
  5530. "name": "nunomaduro/collision",
  5531. "version": "v3.2.0",
  5532. "dist": {
  5533. "type": "zip",
  5534. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f7c45764dfe4ba5f2618d265a6f1f9c72732e01d",
  5535. "reference": "f7c45764dfe4ba5f2618d265a6f1f9c72732e01d",
  5536. "shasum": ""
  5537. },
  5538. "require": {
  5539. "filp/whoops": "^2.1.4",
  5540. "php": "^7.2.5 || ^8.0",
  5541. "php-parallel-lint/php-console-highlighter": "0.5.*",
  5542. "symfony/console": "~2.8|~3.3|~4.0"
  5543. },
  5544. "require-dev": {
  5545. "laravel/framework": "^6.0",
  5546. "phpunit/phpunit": "^8.0 || ^9.0"
  5547. },
  5548. "type": "library",
  5549. "extra": {
  5550. "laravel": {
  5551. "providers": [
  5552. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  5553. ]
  5554. }
  5555. },
  5556. "autoload": {
  5557. "psr-4": {
  5558. "NunoMaduro\\Collision\\": "src/"
  5559. }
  5560. },
  5561. "notification-url": "https://packagist.org/downloads/",
  5562. "license": [
  5563. "MIT"
  5564. ],
  5565. "authors": [
  5566. {
  5567. "name": "Nuno Maduro",
  5568. "email": "enunomaduro@gmail.com"
  5569. }
  5570. ],
  5571. "description": "Cli error handling for console/command-line PHP applications.",
  5572. "keywords": [
  5573. "artisan",
  5574. "cli",
  5575. "command-line",
  5576. "console",
  5577. "error",
  5578. "handling",
  5579. "laravel",
  5580. "laravel-zero",
  5581. "php",
  5582. "symfony"
  5583. ],
  5584. "time": "2021-02-11T09:01:42+00:00"
  5585. },
  5586. {
  5587. "name": "phar-io/manifest",
  5588. "version": "1.0.3",
  5589. "dist": {
  5590. "type": "zip",
  5591. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  5592. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  5593. "shasum": ""
  5594. },
  5595. "require": {
  5596. "ext-dom": "*",
  5597. "ext-phar": "*",
  5598. "phar-io/version": "^2.0",
  5599. "php": "^5.6 || ^7.0"
  5600. },
  5601. "type": "library",
  5602. "extra": {
  5603. "branch-alias": {
  5604. "dev-master": "1.0.x-dev"
  5605. }
  5606. },
  5607. "autoload": {
  5608. "classmap": [
  5609. "src/"
  5610. ]
  5611. },
  5612. "notification-url": "https://packagist.org/downloads/",
  5613. "license": [
  5614. "BSD-3-Clause"
  5615. ],
  5616. "authors": [
  5617. {
  5618. "name": "Arne Blankerts",
  5619. "email": "arne@blankerts.de",
  5620. "role": "Developer"
  5621. },
  5622. {
  5623. "name": "Sebastian Heuer",
  5624. "email": "sebastian@phpeople.de",
  5625. "role": "Developer"
  5626. },
  5627. {
  5628. "name": "Sebastian Bergmann",
  5629. "email": "sebastian@phpunit.de",
  5630. "role": "Developer"
  5631. }
  5632. ],
  5633. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5634. "time": "2018-07-08T19:23:20+00:00"
  5635. },
  5636. {
  5637. "name": "phar-io/version",
  5638. "version": "2.0.1",
  5639. "dist": {
  5640. "type": "zip",
  5641. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  5642. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  5643. "shasum": ""
  5644. },
  5645. "require": {
  5646. "php": "^5.6 || ^7.0"
  5647. },
  5648. "type": "library",
  5649. "autoload": {
  5650. "classmap": [
  5651. "src/"
  5652. ]
  5653. },
  5654. "notification-url": "https://packagist.org/downloads/",
  5655. "license": [
  5656. "BSD-3-Clause"
  5657. ],
  5658. "authors": [
  5659. {
  5660. "name": "Arne Blankerts",
  5661. "email": "arne@blankerts.de",
  5662. "role": "Developer"
  5663. },
  5664. {
  5665. "name": "Sebastian Heuer",
  5666. "email": "sebastian@phpeople.de",
  5667. "role": "Developer"
  5668. },
  5669. {
  5670. "name": "Sebastian Bergmann",
  5671. "email": "sebastian@phpunit.de",
  5672. "role": "Developer"
  5673. }
  5674. ],
  5675. "description": "Library for handling version information and constraints",
  5676. "time": "2018-07-08T19:19:57+00:00"
  5677. },
  5678. {
  5679. "name": "phpdocumentor/reflection-common",
  5680. "version": "2.2.0",
  5681. "dist": {
  5682. "type": "zip",
  5683. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5684. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5685. "shasum": ""
  5686. },
  5687. "require": {
  5688. "php": "^7.2 || ^8.0"
  5689. },
  5690. "type": "library",
  5691. "extra": {
  5692. "branch-alias": {
  5693. "dev-2.x": "2.x-dev"
  5694. }
  5695. },
  5696. "autoload": {
  5697. "psr-4": {
  5698. "phpDocumentor\\Reflection\\": "src/"
  5699. }
  5700. },
  5701. "notification-url": "https://packagist.org/downloads/",
  5702. "license": [
  5703. "MIT"
  5704. ],
  5705. "authors": [
  5706. {
  5707. "name": "Jaap van Otterdijk",
  5708. "email": "opensource@ijaap.nl"
  5709. }
  5710. ],
  5711. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5712. "homepage": "http://www.phpdoc.org",
  5713. "keywords": [
  5714. "FQSEN",
  5715. "phpDocumentor",
  5716. "phpdoc",
  5717. "reflection",
  5718. "static analysis"
  5719. ],
  5720. "time": "2020-06-27T09:03:43+00:00"
  5721. },
  5722. {
  5723. "name": "phpdocumentor/reflection-docblock",
  5724. "version": "5.3.0",
  5725. "dist": {
  5726. "type": "zip",
  5727. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/phpdocumentor/reflection-docblock/5.3.0/phpdocumentor-reflection-docblock-5.3.0.zip",
  5728. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  5729. "shasum": ""
  5730. },
  5731. "require": {
  5732. "ext-filter": "*",
  5733. "php": "^7.2 || ^8.0",
  5734. "phpdocumentor/reflection-common": "^2.2",
  5735. "phpdocumentor/type-resolver": "^1.3",
  5736. "webmozart/assert": "^1.9.1"
  5737. },
  5738. "require-dev": {
  5739. "mockery/mockery": "~1.3.2",
  5740. "psalm/phar": "^4.8"
  5741. },
  5742. "type": "library",
  5743. "extra": {
  5744. "branch-alias": {
  5745. "dev-master": "5.x-dev"
  5746. }
  5747. },
  5748. "autoload": {
  5749. "psr-4": {
  5750. "phpDocumentor\\Reflection\\": "src"
  5751. }
  5752. },
  5753. "license": [
  5754. "MIT"
  5755. ],
  5756. "authors": [
  5757. {
  5758. "name": "Mike van Riel",
  5759. "email": "me@mikevanriel.com"
  5760. },
  5761. {
  5762. "name": "Jaap van Otterdijk",
  5763. "email": "account@ijaap.nl"
  5764. }
  5765. ],
  5766. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5767. "time": "2021-10-19T17:43:47+00:00"
  5768. },
  5769. {
  5770. "name": "phpdocumentor/type-resolver",
  5771. "version": "1.6.1",
  5772. "dist": {
  5773. "type": "zip",
  5774. "url": "https://mirrors.tencent.com/repository/composer/phpdocumentor/type-resolver/1.6.1/phpdocumentor-type-resolver-1.6.1.zip",
  5775. "reference": "77a32518733312af16a44300404e945338981de3",
  5776. "shasum": ""
  5777. },
  5778. "require": {
  5779. "php": "^7.2 || ^8.0",
  5780. "phpdocumentor/reflection-common": "^2.0"
  5781. },
  5782. "require-dev": {
  5783. "ext-tokenizer": "*",
  5784. "psalm/phar": "^4.8"
  5785. },
  5786. "type": "library",
  5787. "extra": {
  5788. "branch-alias": {
  5789. "dev-1.x": "1.x-dev"
  5790. }
  5791. },
  5792. "autoload": {
  5793. "psr-4": {
  5794. "phpDocumentor\\Reflection\\": "src"
  5795. }
  5796. },
  5797. "license": [
  5798. "MIT"
  5799. ],
  5800. "authors": [
  5801. {
  5802. "name": "Mike van Riel",
  5803. "email": "me@mikevanriel.com"
  5804. }
  5805. ],
  5806. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  5807. "time": "2022-03-15T21:29:03+00:00"
  5808. },
  5809. {
  5810. "name": "phpspec/prophecy",
  5811. "version": "v1.15.0",
  5812. "dist": {
  5813. "type": "zip",
  5814. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/phpspec/prophecy/v1.15.0/phpspec-prophecy-v1.15.0.zip",
  5815. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  5816. "shasum": ""
  5817. },
  5818. "require": {
  5819. "doctrine/instantiator": "^1.2",
  5820. "php": "^7.2 || ~8.0, <8.2",
  5821. "phpdocumentor/reflection-docblock": "^5.2",
  5822. "sebastian/comparator": "^3.0 || ^4.0",
  5823. "sebastian/recursion-context": "^3.0 || ^4.0"
  5824. },
  5825. "require-dev": {
  5826. "phpspec/phpspec": "^6.0 || ^7.0",
  5827. "phpunit/phpunit": "^8.0 || ^9.0"
  5828. },
  5829. "type": "library",
  5830. "extra": {
  5831. "branch-alias": {
  5832. "dev-master": "1.x-dev"
  5833. }
  5834. },
  5835. "autoload": {
  5836. "psr-4": {
  5837. "Prophecy\\": "src/Prophecy"
  5838. }
  5839. },
  5840. "license": [
  5841. "MIT"
  5842. ],
  5843. "authors": [
  5844. {
  5845. "name": "Konstantin Kudryashov",
  5846. "email": "ever.zet@gmail.com",
  5847. "homepage": "http://everzet.com"
  5848. },
  5849. {
  5850. "name": "Marcello Duarte",
  5851. "email": "marcello.duarte@gmail.com"
  5852. }
  5853. ],
  5854. "description": "Highly opinionated mocking framework for PHP 5.3+",
  5855. "homepage": "https://github.com/phpspec/prophecy",
  5856. "keywords": [
  5857. "Double",
  5858. "Dummy",
  5859. "fake",
  5860. "mock",
  5861. "spy",
  5862. "stub"
  5863. ],
  5864. "time": "2021-12-08T12:19:24+00:00"
  5865. },
  5866. {
  5867. "name": "phpunit/php-code-coverage",
  5868. "version": "6.1.4",
  5869. "dist": {
  5870. "type": "zip",
  5871. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  5872. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  5873. "shasum": ""
  5874. },
  5875. "require": {
  5876. "ext-dom": "*",
  5877. "ext-xmlwriter": "*",
  5878. "php": "^7.1",
  5879. "phpunit/php-file-iterator": "^2.0",
  5880. "phpunit/php-text-template": "^1.2.1",
  5881. "phpunit/php-token-stream": "^3.0",
  5882. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  5883. "sebastian/environment": "^3.1 || ^4.0",
  5884. "sebastian/version": "^2.0.1",
  5885. "theseer/tokenizer": "^1.1"
  5886. },
  5887. "require-dev": {
  5888. "phpunit/phpunit": "^7.0"
  5889. },
  5890. "suggest": {
  5891. "ext-xdebug": "^2.6.0"
  5892. },
  5893. "type": "library",
  5894. "extra": {
  5895. "branch-alias": {
  5896. "dev-master": "6.1-dev"
  5897. }
  5898. },
  5899. "autoload": {
  5900. "classmap": [
  5901. "src/"
  5902. ]
  5903. },
  5904. "notification-url": "https://packagist.org/downloads/",
  5905. "license": [
  5906. "BSD-3-Clause"
  5907. ],
  5908. "authors": [
  5909. {
  5910. "name": "Sebastian Bergmann",
  5911. "email": "sebastian@phpunit.de",
  5912. "role": "lead"
  5913. }
  5914. ],
  5915. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5916. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5917. "keywords": [
  5918. "coverage",
  5919. "testing",
  5920. "xunit"
  5921. ],
  5922. "time": "2018-10-31T16:06:48+00:00"
  5923. },
  5924. {
  5925. "name": "phpunit/php-file-iterator",
  5926. "version": "2.0.5",
  5927. "dist": {
  5928. "type": "zip",
  5929. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/phpunit/php-file-iterator/2.0.5/phpunit-php-file-iterator-2.0.5.zip",
  5930. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  5931. "shasum": ""
  5932. },
  5933. "require": {
  5934. "php": ">=7.1"
  5935. },
  5936. "require-dev": {
  5937. "phpunit/phpunit": "^8.5"
  5938. },
  5939. "type": "library",
  5940. "extra": {
  5941. "branch-alias": {
  5942. "dev-master": "2.0.x-dev"
  5943. }
  5944. },
  5945. "autoload": {
  5946. "classmap": [
  5947. "src/"
  5948. ]
  5949. },
  5950. "license": [
  5951. "BSD-3-Clause"
  5952. ],
  5953. "authors": [
  5954. {
  5955. "name": "Sebastian Bergmann",
  5956. "email": "sebastian@phpunit.de",
  5957. "role": "lead"
  5958. }
  5959. ],
  5960. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5961. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5962. "keywords": [
  5963. "filesystem",
  5964. "iterator"
  5965. ],
  5966. "funding": [
  5967. {
  5968. "url": "https://github.com/sebastianbergmann",
  5969. "type": "github"
  5970. }
  5971. ],
  5972. "time": "2021-12-02T12:42:26+00:00"
  5973. },
  5974. {
  5975. "name": "phpunit/php-text-template",
  5976. "version": "1.2.1",
  5977. "dist": {
  5978. "type": "zip",
  5979. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5980. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5981. "shasum": ""
  5982. },
  5983. "require": {
  5984. "php": ">=5.3.3"
  5985. },
  5986. "type": "library",
  5987. "autoload": {
  5988. "classmap": [
  5989. "src/"
  5990. ]
  5991. },
  5992. "notification-url": "https://packagist.org/downloads/",
  5993. "license": [
  5994. "BSD-3-Clause"
  5995. ],
  5996. "authors": [
  5997. {
  5998. "name": "Sebastian Bergmann",
  5999. "email": "sebastian@phpunit.de",
  6000. "role": "lead"
  6001. }
  6002. ],
  6003. "description": "Simple template engine.",
  6004. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6005. "keywords": [
  6006. "template"
  6007. ],
  6008. "time": "2015-06-21T13:50:34+00:00"
  6009. },
  6010. {
  6011. "name": "phpunit/php-timer",
  6012. "version": "2.1.3",
  6013. "dist": {
  6014. "type": "zip",
  6015. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  6016. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  6017. "shasum": ""
  6018. },
  6019. "require": {
  6020. "php": ">=7.1"
  6021. },
  6022. "require-dev": {
  6023. "phpunit/phpunit": "^8.5"
  6024. },
  6025. "type": "library",
  6026. "extra": {
  6027. "branch-alias": {
  6028. "dev-master": "2.1-dev"
  6029. }
  6030. },
  6031. "autoload": {
  6032. "classmap": [
  6033. "src/"
  6034. ]
  6035. },
  6036. "notification-url": "https://packagist.org/downloads/",
  6037. "license": [
  6038. "BSD-3-Clause"
  6039. ],
  6040. "authors": [
  6041. {
  6042. "name": "Sebastian Bergmann",
  6043. "email": "sebastian@phpunit.de",
  6044. "role": "lead"
  6045. }
  6046. ],
  6047. "description": "Utility class for timing",
  6048. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6049. "keywords": [
  6050. "timer"
  6051. ],
  6052. "time": "2020-11-30T08:20:02+00:00"
  6053. },
  6054. {
  6055. "name": "phpunit/php-token-stream",
  6056. "version": "3.1.3",
  6057. "dist": {
  6058. "type": "zip",
  6059. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/phpunit/php-token-stream/3.1.3/phpunit-php-token-stream-3.1.3.zip",
  6060. "reference": "9c1da83261628cb24b6a6df371b6e312b3954768",
  6061. "shasum": ""
  6062. },
  6063. "require": {
  6064. "ext-tokenizer": "*",
  6065. "php": ">=7.1"
  6066. },
  6067. "require-dev": {
  6068. "phpunit/phpunit": "^7.0"
  6069. },
  6070. "type": "library",
  6071. "extra": {
  6072. "branch-alias": {
  6073. "dev-master": "3.1-dev"
  6074. }
  6075. },
  6076. "autoload": {
  6077. "classmap": [
  6078. "src/"
  6079. ]
  6080. },
  6081. "license": [
  6082. "BSD-3-Clause"
  6083. ],
  6084. "authors": [
  6085. {
  6086. "name": "Sebastian Bergmann",
  6087. "email": "sebastian@phpunit.de"
  6088. }
  6089. ],
  6090. "description": "Wrapper around PHP's tokenizer extension.",
  6091. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  6092. "keywords": [
  6093. "tokenizer"
  6094. ],
  6095. "funding": [
  6096. {
  6097. "url": "https://github.com/sebastianbergmann",
  6098. "type": "github"
  6099. }
  6100. ],
  6101. "time": "2021-07-26T12:15:06+00:00"
  6102. },
  6103. {
  6104. "name": "phpunit/phpunit",
  6105. "version": "7.5.20",
  6106. "dist": {
  6107. "type": "zip",
  6108. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
  6109. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
  6110. "shasum": ""
  6111. },
  6112. "require": {
  6113. "doctrine/instantiator": "^1.1",
  6114. "ext-dom": "*",
  6115. "ext-json": "*",
  6116. "ext-libxml": "*",
  6117. "ext-mbstring": "*",
  6118. "ext-xml": "*",
  6119. "myclabs/deep-copy": "^1.7",
  6120. "phar-io/manifest": "^1.0.2",
  6121. "phar-io/version": "^2.0",
  6122. "php": "^7.1",
  6123. "phpspec/prophecy": "^1.7",
  6124. "phpunit/php-code-coverage": "^6.0.7",
  6125. "phpunit/php-file-iterator": "^2.0.1",
  6126. "phpunit/php-text-template": "^1.2.1",
  6127. "phpunit/php-timer": "^2.1",
  6128. "sebastian/comparator": "^3.0",
  6129. "sebastian/diff": "^3.0",
  6130. "sebastian/environment": "^4.0",
  6131. "sebastian/exporter": "^3.1",
  6132. "sebastian/global-state": "^2.0",
  6133. "sebastian/object-enumerator": "^3.0.3",
  6134. "sebastian/resource-operations": "^2.0",
  6135. "sebastian/version": "^2.0.1"
  6136. },
  6137. "conflict": {
  6138. "phpunit/phpunit-mock-objects": "*"
  6139. },
  6140. "require-dev": {
  6141. "ext-pdo": "*"
  6142. },
  6143. "suggest": {
  6144. "ext-soap": "*",
  6145. "ext-xdebug": "*",
  6146. "phpunit/php-invoker": "^2.0"
  6147. },
  6148. "bin": [
  6149. "phpunit"
  6150. ],
  6151. "type": "library",
  6152. "extra": {
  6153. "branch-alias": {
  6154. "dev-master": "7.5-dev"
  6155. }
  6156. },
  6157. "autoload": {
  6158. "classmap": [
  6159. "src/"
  6160. ]
  6161. },
  6162. "notification-url": "https://packagist.org/downloads/",
  6163. "license": [
  6164. "BSD-3-Clause"
  6165. ],
  6166. "authors": [
  6167. {
  6168. "name": "Sebastian Bergmann",
  6169. "email": "sebastian@phpunit.de",
  6170. "role": "lead"
  6171. }
  6172. ],
  6173. "description": "The PHP Unit Testing framework.",
  6174. "homepage": "https://phpunit.de/",
  6175. "keywords": [
  6176. "phpunit",
  6177. "testing",
  6178. "xunit"
  6179. ],
  6180. "time": "2020-01-08T08:45:45+00:00"
  6181. },
  6182. {
  6183. "name": "sebastian/code-unit-reverse-lookup",
  6184. "version": "1.0.2",
  6185. "dist": {
  6186. "type": "zip",
  6187. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  6188. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  6189. "shasum": ""
  6190. },
  6191. "require": {
  6192. "php": ">=5.6"
  6193. },
  6194. "require-dev": {
  6195. "phpunit/phpunit": "^8.5"
  6196. },
  6197. "type": "library",
  6198. "extra": {
  6199. "branch-alias": {
  6200. "dev-master": "1.0.x-dev"
  6201. }
  6202. },
  6203. "autoload": {
  6204. "classmap": [
  6205. "src/"
  6206. ]
  6207. },
  6208. "notification-url": "https://packagist.org/downloads/",
  6209. "license": [
  6210. "BSD-3-Clause"
  6211. ],
  6212. "authors": [
  6213. {
  6214. "name": "Sebastian Bergmann",
  6215. "email": "sebastian@phpunit.de"
  6216. }
  6217. ],
  6218. "description": "Looks up which function or method a line of code belongs to",
  6219. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6220. "time": "2020-11-30T08:15:22+00:00"
  6221. },
  6222. {
  6223. "name": "sebastian/comparator",
  6224. "version": "3.0.3",
  6225. "dist": {
  6226. "type": "zip",
  6227. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  6228. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  6229. "shasum": ""
  6230. },
  6231. "require": {
  6232. "php": ">=7.1",
  6233. "sebastian/diff": "^3.0",
  6234. "sebastian/exporter": "^3.1"
  6235. },
  6236. "require-dev": {
  6237. "phpunit/phpunit": "^8.5"
  6238. },
  6239. "type": "library",
  6240. "extra": {
  6241. "branch-alias": {
  6242. "dev-master": "3.0-dev"
  6243. }
  6244. },
  6245. "autoload": {
  6246. "classmap": [
  6247. "src/"
  6248. ]
  6249. },
  6250. "notification-url": "https://packagist.org/downloads/",
  6251. "license": [
  6252. "BSD-3-Clause"
  6253. ],
  6254. "authors": [
  6255. {
  6256. "name": "Sebastian Bergmann",
  6257. "email": "sebastian@phpunit.de"
  6258. },
  6259. {
  6260. "name": "Jeff Welch",
  6261. "email": "whatthejeff@gmail.com"
  6262. },
  6263. {
  6264. "name": "Volker Dusch",
  6265. "email": "github@wallbash.com"
  6266. },
  6267. {
  6268. "name": "Bernhard Schussek",
  6269. "email": "bschussek@2bepublished.at"
  6270. }
  6271. ],
  6272. "description": "Provides the functionality to compare PHP values for equality",
  6273. "homepage": "https://github.com/sebastianbergmann/comparator",
  6274. "keywords": [
  6275. "comparator",
  6276. "compare",
  6277. "equality"
  6278. ],
  6279. "time": "2020-11-30T08:04:30+00:00"
  6280. },
  6281. {
  6282. "name": "sebastian/diff",
  6283. "version": "3.0.3",
  6284. "dist": {
  6285. "type": "zip",
  6286. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  6287. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  6288. "shasum": ""
  6289. },
  6290. "require": {
  6291. "php": ">=7.1"
  6292. },
  6293. "require-dev": {
  6294. "phpunit/phpunit": "^7.5 || ^8.0",
  6295. "symfony/process": "^2 || ^3.3 || ^4"
  6296. },
  6297. "type": "library",
  6298. "extra": {
  6299. "branch-alias": {
  6300. "dev-master": "3.0-dev"
  6301. }
  6302. },
  6303. "autoload": {
  6304. "classmap": [
  6305. "src/"
  6306. ]
  6307. },
  6308. "notification-url": "https://packagist.org/downloads/",
  6309. "license": [
  6310. "BSD-3-Clause"
  6311. ],
  6312. "authors": [
  6313. {
  6314. "name": "Sebastian Bergmann",
  6315. "email": "sebastian@phpunit.de"
  6316. },
  6317. {
  6318. "name": "Kore Nordmann",
  6319. "email": "mail@kore-nordmann.de"
  6320. }
  6321. ],
  6322. "description": "Diff implementation",
  6323. "homepage": "https://github.com/sebastianbergmann/diff",
  6324. "keywords": [
  6325. "diff",
  6326. "udiff",
  6327. "unidiff",
  6328. "unified diff"
  6329. ],
  6330. "time": "2020-11-30T07:59:04+00:00"
  6331. },
  6332. {
  6333. "name": "sebastian/environment",
  6334. "version": "4.2.4",
  6335. "dist": {
  6336. "type": "zip",
  6337. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  6338. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  6339. "shasum": ""
  6340. },
  6341. "require": {
  6342. "php": ">=7.1"
  6343. },
  6344. "require-dev": {
  6345. "phpunit/phpunit": "^7.5"
  6346. },
  6347. "suggest": {
  6348. "ext-posix": "*"
  6349. },
  6350. "type": "library",
  6351. "extra": {
  6352. "branch-alias": {
  6353. "dev-master": "4.2-dev"
  6354. }
  6355. },
  6356. "autoload": {
  6357. "classmap": [
  6358. "src/"
  6359. ]
  6360. },
  6361. "notification-url": "https://packagist.org/downloads/",
  6362. "license": [
  6363. "BSD-3-Clause"
  6364. ],
  6365. "authors": [
  6366. {
  6367. "name": "Sebastian Bergmann",
  6368. "email": "sebastian@phpunit.de"
  6369. }
  6370. ],
  6371. "description": "Provides functionality to handle HHVM/PHP environments",
  6372. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6373. "keywords": [
  6374. "Xdebug",
  6375. "environment",
  6376. "hhvm"
  6377. ],
  6378. "time": "2020-11-30T07:53:42+00:00"
  6379. },
  6380. {
  6381. "name": "sebastian/exporter",
  6382. "version": "3.1.4",
  6383. "dist": {
  6384. "type": "zip",
  6385. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/sebastian/exporter/3.1.4/sebastian-exporter-3.1.4.zip",
  6386. "reference": "0c32ea2e40dbf59de29f3b49bf375176ce7dd8db",
  6387. "shasum": ""
  6388. },
  6389. "require": {
  6390. "php": ">=7.0",
  6391. "sebastian/recursion-context": "^3.0"
  6392. },
  6393. "require-dev": {
  6394. "ext-mbstring": "*",
  6395. "phpunit/phpunit": "^8.5"
  6396. },
  6397. "type": "library",
  6398. "extra": {
  6399. "branch-alias": {
  6400. "dev-master": "3.1.x-dev"
  6401. }
  6402. },
  6403. "autoload": {
  6404. "classmap": [
  6405. "src/"
  6406. ]
  6407. },
  6408. "license": [
  6409. "BSD-3-Clause"
  6410. ],
  6411. "authors": [
  6412. {
  6413. "name": "Sebastian Bergmann",
  6414. "email": "sebastian@phpunit.de"
  6415. },
  6416. {
  6417. "name": "Jeff Welch",
  6418. "email": "whatthejeff@gmail.com"
  6419. },
  6420. {
  6421. "name": "Volker Dusch",
  6422. "email": "github@wallbash.com"
  6423. },
  6424. {
  6425. "name": "Adam Harvey",
  6426. "email": "aharvey@php.net"
  6427. },
  6428. {
  6429. "name": "Bernhard Schussek",
  6430. "email": "bschussek@gmail.com"
  6431. }
  6432. ],
  6433. "description": "Provides the functionality to export PHP variables for visualization",
  6434. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  6435. "keywords": [
  6436. "export",
  6437. "exporter"
  6438. ],
  6439. "funding": [
  6440. {
  6441. "url": "https://github.com/sebastianbergmann",
  6442. "type": "github"
  6443. }
  6444. ],
  6445. "time": "2021-11-11T13:51:24+00:00"
  6446. },
  6447. {
  6448. "name": "sebastian/global-state",
  6449. "version": "2.0.0",
  6450. "dist": {
  6451. "type": "zip",
  6452. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6453. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6454. "shasum": ""
  6455. },
  6456. "require": {
  6457. "php": "^7.0"
  6458. },
  6459. "require-dev": {
  6460. "phpunit/phpunit": "^6.0"
  6461. },
  6462. "suggest": {
  6463. "ext-uopz": "*"
  6464. },
  6465. "type": "library",
  6466. "extra": {
  6467. "branch-alias": {
  6468. "dev-master": "2.0-dev"
  6469. }
  6470. },
  6471. "autoload": {
  6472. "classmap": [
  6473. "src/"
  6474. ]
  6475. },
  6476. "notification-url": "https://packagist.org/downloads/",
  6477. "license": [
  6478. "BSD-3-Clause"
  6479. ],
  6480. "authors": [
  6481. {
  6482. "name": "Sebastian Bergmann",
  6483. "email": "sebastian@phpunit.de"
  6484. }
  6485. ],
  6486. "description": "Snapshotting of global state",
  6487. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6488. "keywords": [
  6489. "global state"
  6490. ],
  6491. "time": "2017-04-27T15:39:26+00:00"
  6492. },
  6493. {
  6494. "name": "sebastian/object-enumerator",
  6495. "version": "3.0.4",
  6496. "dist": {
  6497. "type": "zip",
  6498. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  6499. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  6500. "shasum": ""
  6501. },
  6502. "require": {
  6503. "php": ">=7.0",
  6504. "sebastian/object-reflector": "^1.1.1",
  6505. "sebastian/recursion-context": "^3.0"
  6506. },
  6507. "require-dev": {
  6508. "phpunit/phpunit": "^6.0"
  6509. },
  6510. "type": "library",
  6511. "extra": {
  6512. "branch-alias": {
  6513. "dev-master": "3.0.x-dev"
  6514. }
  6515. },
  6516. "autoload": {
  6517. "classmap": [
  6518. "src/"
  6519. ]
  6520. },
  6521. "notification-url": "https://packagist.org/downloads/",
  6522. "license": [
  6523. "BSD-3-Clause"
  6524. ],
  6525. "authors": [
  6526. {
  6527. "name": "Sebastian Bergmann",
  6528. "email": "sebastian@phpunit.de"
  6529. }
  6530. ],
  6531. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6532. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6533. "time": "2020-11-30T07:40:27+00:00"
  6534. },
  6535. {
  6536. "name": "sebastian/object-reflector",
  6537. "version": "1.1.2",
  6538. "dist": {
  6539. "type": "zip",
  6540. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  6541. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  6542. "shasum": ""
  6543. },
  6544. "require": {
  6545. "php": ">=7.0"
  6546. },
  6547. "require-dev": {
  6548. "phpunit/phpunit": "^6.0"
  6549. },
  6550. "type": "library",
  6551. "extra": {
  6552. "branch-alias": {
  6553. "dev-master": "1.1-dev"
  6554. }
  6555. },
  6556. "autoload": {
  6557. "classmap": [
  6558. "src/"
  6559. ]
  6560. },
  6561. "notification-url": "https://packagist.org/downloads/",
  6562. "license": [
  6563. "BSD-3-Clause"
  6564. ],
  6565. "authors": [
  6566. {
  6567. "name": "Sebastian Bergmann",
  6568. "email": "sebastian@phpunit.de"
  6569. }
  6570. ],
  6571. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6572. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6573. "time": "2020-11-30T07:37:18+00:00"
  6574. },
  6575. {
  6576. "name": "sebastian/recursion-context",
  6577. "version": "3.0.1",
  6578. "dist": {
  6579. "type": "zip",
  6580. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  6581. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  6582. "shasum": ""
  6583. },
  6584. "require": {
  6585. "php": ">=7.0"
  6586. },
  6587. "require-dev": {
  6588. "phpunit/phpunit": "^6.0"
  6589. },
  6590. "type": "library",
  6591. "extra": {
  6592. "branch-alias": {
  6593. "dev-master": "3.0.x-dev"
  6594. }
  6595. },
  6596. "autoload": {
  6597. "classmap": [
  6598. "src/"
  6599. ]
  6600. },
  6601. "notification-url": "https://packagist.org/downloads/",
  6602. "license": [
  6603. "BSD-3-Clause"
  6604. ],
  6605. "authors": [
  6606. {
  6607. "name": "Sebastian Bergmann",
  6608. "email": "sebastian@phpunit.de"
  6609. },
  6610. {
  6611. "name": "Jeff Welch",
  6612. "email": "whatthejeff@gmail.com"
  6613. },
  6614. {
  6615. "name": "Adam Harvey",
  6616. "email": "aharvey@php.net"
  6617. }
  6618. ],
  6619. "description": "Provides functionality to recursively process PHP variables",
  6620. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  6621. "time": "2020-11-30T07:34:24+00:00"
  6622. },
  6623. {
  6624. "name": "sebastian/resource-operations",
  6625. "version": "2.0.2",
  6626. "dist": {
  6627. "type": "zip",
  6628. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  6629. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  6630. "shasum": ""
  6631. },
  6632. "require": {
  6633. "php": ">=7.1"
  6634. },
  6635. "type": "library",
  6636. "extra": {
  6637. "branch-alias": {
  6638. "dev-master": "2.0-dev"
  6639. }
  6640. },
  6641. "autoload": {
  6642. "classmap": [
  6643. "src/"
  6644. ]
  6645. },
  6646. "notification-url": "https://packagist.org/downloads/",
  6647. "license": [
  6648. "BSD-3-Clause"
  6649. ],
  6650. "authors": [
  6651. {
  6652. "name": "Sebastian Bergmann",
  6653. "email": "sebastian@phpunit.de"
  6654. }
  6655. ],
  6656. "description": "Provides a list of PHP built-in functions that operate on resources",
  6657. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  6658. "time": "2020-11-30T07:30:19+00:00"
  6659. },
  6660. {
  6661. "name": "sebastian/version",
  6662. "version": "2.0.1",
  6663. "dist": {
  6664. "type": "zip",
  6665. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  6666. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  6667. "shasum": ""
  6668. },
  6669. "require": {
  6670. "php": ">=5.6"
  6671. },
  6672. "type": "library",
  6673. "extra": {
  6674. "branch-alias": {
  6675. "dev-master": "2.0.x-dev"
  6676. }
  6677. },
  6678. "autoload": {
  6679. "classmap": [
  6680. "src/"
  6681. ]
  6682. },
  6683. "notification-url": "https://packagist.org/downloads/",
  6684. "license": [
  6685. "BSD-3-Clause"
  6686. ],
  6687. "authors": [
  6688. {
  6689. "name": "Sebastian Bergmann",
  6690. "email": "sebastian@phpunit.de",
  6691. "role": "lead"
  6692. }
  6693. ],
  6694. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6695. "homepage": "https://github.com/sebastianbergmann/version",
  6696. "time": "2016-10-03T07:35:21+00:00"
  6697. },
  6698. {
  6699. "name": "theseer/tokenizer",
  6700. "version": "1.2.1",
  6701. "dist": {
  6702. "type": "zip",
  6703. "url": "https://mirrors.huaweicloud.com/artifactory/api/composer/remote-php-composer/theseer/tokenizer/1.2.1/theseer-tokenizer-1.2.1.zip",
  6704. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  6705. "shasum": ""
  6706. },
  6707. "require": {
  6708. "ext-dom": "*",
  6709. "ext-tokenizer": "*",
  6710. "ext-xmlwriter": "*",
  6711. "php": "^7.2 || ^8.0"
  6712. },
  6713. "type": "library",
  6714. "autoload": {
  6715. "classmap": [
  6716. "src/"
  6717. ]
  6718. },
  6719. "license": [
  6720. "BSD-3-Clause"
  6721. ],
  6722. "authors": [
  6723. {
  6724. "name": "Arne Blankerts",
  6725. "email": "arne@blankerts.de",
  6726. "role": "Developer"
  6727. }
  6728. ],
  6729. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6730. "funding": [
  6731. {
  6732. "url": "https://github.com/theseer",
  6733. "type": "github"
  6734. }
  6735. ],
  6736. "time": "2021-07-28T10:34:58+00:00"
  6737. },
  6738. {
  6739. "name": "webmozart/assert",
  6740. "version": "1.10.0",
  6741. "dist": {
  6742. "type": "zip",
  6743. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  6744. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  6745. "shasum": ""
  6746. },
  6747. "require": {
  6748. "php": "^7.2 || ^8.0",
  6749. "symfony/polyfill-ctype": "^1.8"
  6750. },
  6751. "conflict": {
  6752. "phpstan/phpstan": "<0.12.20",
  6753. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6754. },
  6755. "require-dev": {
  6756. "phpunit/phpunit": "^8.5.13"
  6757. },
  6758. "type": "library",
  6759. "extra": {
  6760. "branch-alias": {
  6761. "dev-master": "1.10-dev"
  6762. }
  6763. },
  6764. "autoload": {
  6765. "psr-4": {
  6766. "Webmozart\\Assert\\": "src/"
  6767. }
  6768. },
  6769. "notification-url": "https://packagist.org/downloads/",
  6770. "license": [
  6771. "MIT"
  6772. ],
  6773. "authors": [
  6774. {
  6775. "name": "Bernhard Schussek",
  6776. "email": "bschussek@gmail.com"
  6777. }
  6778. ],
  6779. "description": "Assertions to validate method input/output with nice error messages.",
  6780. "keywords": [
  6781. "assert",
  6782. "check",
  6783. "validate"
  6784. ],
  6785. "time": "2021-03-09T10:59:23+00:00"
  6786. }
  6787. ],
  6788. "aliases": [],
  6789. "minimum-stability": "dev",
  6790. "stability-flags": [],
  6791. "prefer-stable": true,
  6792. "prefer-lowest": false,
  6793. "platform": {
  6794. "php": "^7.1.3"
  6795. },
  6796. "platform-dev": [],
  6797. "plugin-api-version": "1.1.0"
  6798. }