composer.lock 255 KB

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