composer.lock 273 KB

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