composer.lock 259 KB

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