composer.lock 305 KB

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