composer.lock 301 KB

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