composer.lock 404 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244
  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": "cf86716e70be4f036e98137775d22e5a",
  8. "packages": [
  9. {
  10. "name": "0.0.0/composer-include-files",
  11. "version": "1.6.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/hopeseekr-contribs/composer-include-files.git",
  15. "reference": "0e77aa7a723ac7a32a6b4f4ce4666872a642e845"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/hopeseekr-contribs/composer-include-files/zipball/0e77aa7a723ac7a32a6b4f4ce4666872a642e845",
  20. "reference": "0e77aa7a723ac7a32a6b4f4ce4666872a642e845",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "composer-plugin-api": "^1.0 || ^2.0"
  25. },
  26. "require-dev": {
  27. "composer/composer": "^2.0"
  28. },
  29. "type": "composer-plugin",
  30. "extra": {
  31. "class": "ComposerIncludeFiles\\Plugin"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "ComposerIncludeFiles\\": "src"
  36. }
  37. },
  38. "notification-url": "https://packagist.org/downloads/",
  39. "license": [
  40. "MIT"
  41. ],
  42. "authors": [
  43. {
  44. "name": "Tim Robertson",
  45. "email": "funkjedi@gmail.com"
  46. },
  47. {
  48. "name": "Theodore R. Smith",
  49. "email": "theodore@phpexperts.pro"
  50. }
  51. ],
  52. "description": "Include files at a higher priority than autoload files. Useful for overriding Laravel helpers.",
  53. "homepage": "https://github.com/funkjedi/composer-include-files",
  54. "keywords": [
  55. "autoload",
  56. "composer"
  57. ],
  58. "support": {
  59. "source": "https://github.com/hopeseekr-contribs/composer-include-files/tree/1.6.1"
  60. },
  61. "time": "2022-06-18T07:04:13+00:00"
  62. },
  63. {
  64. "name": "appslabke/lara-izitoast",
  65. "version": "v1.1.1",
  66. "source": {
  67. "type": "git",
  68. "url": "https://github.com/AppsLab-KE/lara-izitoast.git",
  69. "reference": "9636c4c3b28855c5d9c6169a10499f6b59568e0a"
  70. },
  71. "dist": {
  72. "type": "zip",
  73. "url": "https://api.github.com/repos/AppsLab-KE/lara-izitoast/zipball/9636c4c3b28855c5d9c6169a10499f6b59568e0a",
  74. "reference": "9636c4c3b28855c5d9c6169a10499f6b59568e0a",
  75. "shasum": ""
  76. },
  77. "require": {
  78. "php": ">=5.6"
  79. },
  80. "type": "library",
  81. "extra": {
  82. "laravel": {
  83. "providers": [
  84. "LaraIzitoast\\LaraIzitoastServiceProvider"
  85. ]
  86. }
  87. },
  88. "autoload": {
  89. "files": [
  90. "lara-izitoast/src/helpers.php"
  91. ],
  92. "psr-4": {
  93. "LaraIzitoast\\": "lara-izitoast/src/"
  94. }
  95. },
  96. "notification-url": "https://packagist.org/downloads/",
  97. "license": [
  98. "MIT"
  99. ],
  100. "authors": [
  101. {
  102. "name": "MARVIN COLLINS",
  103. "email": "marvin@appslab.co.ke"
  104. }
  105. ],
  106. "description": "Simplified wrapper for izitoast javascript notification library",
  107. "support": {
  108. "issues": "https://github.com/AppsLab-KE/lara-izitoast/issues",
  109. "source": "https://github.com/AppsLab-KE/lara-izitoast/tree/v1.1.1"
  110. },
  111. "time": "2019-01-31T12:43:02+00:00"
  112. },
  113. {
  114. "name": "asm89/stack-cors",
  115. "version": "v2.1.1",
  116. "source": {
  117. "type": "git",
  118. "url": "https://github.com/asm89/stack-cors.git",
  119. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  120. },
  121. "dist": {
  122. "type": "zip",
  123. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  124. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  125. "shasum": ""
  126. },
  127. "require": {
  128. "php": "^7.2|^8.0",
  129. "symfony/http-foundation": "^4|^5|^6",
  130. "symfony/http-kernel": "^4|^5|^6"
  131. },
  132. "require-dev": {
  133. "phpunit/phpunit": "^7|^9",
  134. "squizlabs/php_codesniffer": "^3.5"
  135. },
  136. "type": "library",
  137. "extra": {
  138. "branch-alias": {
  139. "dev-master": "2.1-dev"
  140. }
  141. },
  142. "autoload": {
  143. "psr-4": {
  144. "Asm89\\Stack\\": "src/"
  145. }
  146. },
  147. "notification-url": "https://packagist.org/downloads/",
  148. "license": [
  149. "MIT"
  150. ],
  151. "authors": [
  152. {
  153. "name": "Alexander",
  154. "email": "iam.asm89@gmail.com"
  155. }
  156. ],
  157. "description": "Cross-origin resource sharing library and stack middleware",
  158. "homepage": "https://github.com/asm89/stack-cors",
  159. "keywords": [
  160. "cors",
  161. "stack"
  162. ],
  163. "support": {
  164. "issues": "https://github.com/asm89/stack-cors/issues",
  165. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  166. },
  167. "time": "2022-01-18T09:12:03+00:00"
  168. },
  169. {
  170. "name": "aws/aws-crt-php",
  171. "version": "v1.2.2",
  172. "source": {
  173. "type": "git",
  174. "url": "https://github.com/awslabs/aws-crt-php.git",
  175. "reference": "2f1dc7b7eda080498be96a4a6d683a41583030e9"
  176. },
  177. "dist": {
  178. "type": "zip",
  179. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/2f1dc7b7eda080498be96a4a6d683a41583030e9",
  180. "reference": "2f1dc7b7eda080498be96a4a6d683a41583030e9",
  181. "shasum": ""
  182. },
  183. "require": {
  184. "php": ">=5.5"
  185. },
  186. "require-dev": {
  187. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  188. "yoast/phpunit-polyfills": "^1.0"
  189. },
  190. "suggest": {
  191. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  192. },
  193. "type": "library",
  194. "autoload": {
  195. "classmap": [
  196. "src/"
  197. ]
  198. },
  199. "notification-url": "https://packagist.org/downloads/",
  200. "license": [
  201. "Apache-2.0"
  202. ],
  203. "authors": [
  204. {
  205. "name": "AWS SDK Common Runtime Team",
  206. "email": "aws-sdk-common-runtime@amazon.com"
  207. }
  208. ],
  209. "description": "AWS Common Runtime for PHP",
  210. "homepage": "https://github.com/awslabs/aws-crt-php",
  211. "keywords": [
  212. "amazon",
  213. "aws",
  214. "crt",
  215. "sdk"
  216. ],
  217. "support": {
  218. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  219. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.2"
  220. },
  221. "time": "2023-07-20T16:49:55+00:00"
  222. },
  223. {
  224. "name": "aws/aws-sdk-php",
  225. "version": "3.281.4",
  226. "source": {
  227. "type": "git",
  228. "url": "https://github.com/aws/aws-sdk-php.git",
  229. "reference": "c37035bcfb67a9d54f91dae303b3fe8f98ea59f4"
  230. },
  231. "dist": {
  232. "type": "zip",
  233. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/c37035bcfb67a9d54f91dae303b3fe8f98ea59f4",
  234. "reference": "c37035bcfb67a9d54f91dae303b3fe8f98ea59f4",
  235. "shasum": ""
  236. },
  237. "require": {
  238. "aws/aws-crt-php": "^1.0.4",
  239. "ext-json": "*",
  240. "ext-pcre": "*",
  241. "ext-simplexml": "*",
  242. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  243. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  244. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  245. "mtdowling/jmespath.php": "^2.6",
  246. "php": ">=7.2.5",
  247. "psr/http-message": "^1.0 || ^2.0"
  248. },
  249. "require-dev": {
  250. "andrewsville/php-token-reflection": "^1.4",
  251. "aws/aws-php-sns-message-validator": "~1.0",
  252. "behat/behat": "~3.0",
  253. "composer/composer": "^1.10.22",
  254. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  255. "doctrine/cache": "~1.4",
  256. "ext-dom": "*",
  257. "ext-openssl": "*",
  258. "ext-pcntl": "*",
  259. "ext-sockets": "*",
  260. "nette/neon": "^2.3",
  261. "paragonie/random_compat": ">= 2",
  262. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  263. "psr/cache": "^1.0",
  264. "psr/simple-cache": "^1.0",
  265. "sebastian/comparator": "^1.2.3 || ^4.0",
  266. "yoast/phpunit-polyfills": "^1.0"
  267. },
  268. "suggest": {
  269. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  270. "doctrine/cache": "To use the DoctrineCacheAdapter",
  271. "ext-curl": "To send requests using cURL",
  272. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  273. "ext-sockets": "To use client-side monitoring"
  274. },
  275. "type": "library",
  276. "extra": {
  277. "branch-alias": {
  278. "dev-master": "3.0-dev"
  279. }
  280. },
  281. "autoload": {
  282. "files": [
  283. "src/functions.php"
  284. ],
  285. "psr-4": {
  286. "Aws\\": "src/"
  287. }
  288. },
  289. "notification-url": "https://packagist.org/downloads/",
  290. "license": [
  291. "Apache-2.0"
  292. ],
  293. "authors": [
  294. {
  295. "name": "Amazon Web Services",
  296. "homepage": "http://aws.amazon.com"
  297. }
  298. ],
  299. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  300. "homepage": "http://aws.amazon.com/sdkforphp",
  301. "keywords": [
  302. "amazon",
  303. "aws",
  304. "cloud",
  305. "dynamodb",
  306. "ec2",
  307. "glacier",
  308. "s3",
  309. "sdk"
  310. ],
  311. "support": {
  312. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  313. "issues": "https://github.com/aws/aws-sdk-php/issues",
  314. "source": "https://github.com/aws/aws-sdk-php/tree/3.281.4"
  315. },
  316. "time": "2023-09-11T18:07:49+00:00"
  317. },
  318. {
  319. "name": "bacon/bacon-qr-code",
  320. "version": "2.0.8",
  321. "source": {
  322. "type": "git",
  323. "url": "https://github.com/Bacon/BaconQrCode.git",
  324. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  325. },
  326. "dist": {
  327. "type": "zip",
  328. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  329. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  330. "shasum": ""
  331. },
  332. "require": {
  333. "dasprid/enum": "^1.0.3",
  334. "ext-iconv": "*",
  335. "php": "^7.1 || ^8.0"
  336. },
  337. "require-dev": {
  338. "phly/keep-a-changelog": "^2.1",
  339. "phpunit/phpunit": "^7 | ^8 | ^9",
  340. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  341. "squizlabs/php_codesniffer": "^3.4"
  342. },
  343. "suggest": {
  344. "ext-imagick": "to generate QR code images"
  345. },
  346. "type": "library",
  347. "autoload": {
  348. "psr-4": {
  349. "BaconQrCode\\": "src/"
  350. }
  351. },
  352. "notification-url": "https://packagist.org/downloads/",
  353. "license": [
  354. "BSD-2-Clause"
  355. ],
  356. "authors": [
  357. {
  358. "name": "Ben Scholzen 'DASPRiD'",
  359. "email": "mail@dasprids.de",
  360. "homepage": "https://dasprids.de/",
  361. "role": "Developer"
  362. }
  363. ],
  364. "description": "BaconQrCode is a QR code generator for PHP.",
  365. "homepage": "https://github.com/Bacon/BaconQrCode",
  366. "support": {
  367. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  368. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  369. },
  370. "time": "2022-12-07T17:46:57+00:00"
  371. },
  372. {
  373. "name": "barryvdh/laravel-dompdf",
  374. "version": "v0.9.0",
  375. "source": {
  376. "type": "git",
  377. "url": "https://github.com/barryvdh/laravel-dompdf.git",
  378. "reference": "5b99e1f94157d74e450f4c97e8444fcaffa2144b"
  379. },
  380. "dist": {
  381. "type": "zip",
  382. "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/5b99e1f94157d74e450f4c97e8444fcaffa2144b",
  383. "reference": "5b99e1f94157d74e450f4c97e8444fcaffa2144b",
  384. "shasum": ""
  385. },
  386. "require": {
  387. "dompdf/dompdf": "^1",
  388. "illuminate/support": "^5.5|^6|^7|^8",
  389. "php": "^7.1 || ^8.0"
  390. },
  391. "type": "library",
  392. "extra": {
  393. "branch-alias": {
  394. "dev-master": "0.9-dev"
  395. },
  396. "laravel": {
  397. "providers": [
  398. "Barryvdh\\DomPDF\\ServiceProvider"
  399. ],
  400. "aliases": {
  401. "PDF": "Barryvdh\\DomPDF\\Facade"
  402. }
  403. }
  404. },
  405. "autoload": {
  406. "psr-4": {
  407. "Barryvdh\\DomPDF\\": "src"
  408. }
  409. },
  410. "notification-url": "https://packagist.org/downloads/",
  411. "license": [
  412. "MIT"
  413. ],
  414. "authors": [
  415. {
  416. "name": "Barry vd. Heuvel",
  417. "email": "barryvdh@gmail.com"
  418. }
  419. ],
  420. "description": "A DOMPDF Wrapper for Laravel",
  421. "keywords": [
  422. "dompdf",
  423. "laravel",
  424. "pdf"
  425. ],
  426. "support": {
  427. "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
  428. "source": "https://github.com/barryvdh/laravel-dompdf/tree/v0.9.0"
  429. },
  430. "funding": [
  431. {
  432. "url": "https://github.com/barryvdh",
  433. "type": "github"
  434. }
  435. ],
  436. "time": "2020-12-27T12:05:53+00:00"
  437. },
  438. {
  439. "name": "brick/math",
  440. "version": "0.9.3",
  441. "source": {
  442. "type": "git",
  443. "url": "https://github.com/brick/math.git",
  444. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  445. },
  446. "dist": {
  447. "type": "zip",
  448. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  449. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  450. "shasum": ""
  451. },
  452. "require": {
  453. "ext-json": "*",
  454. "php": "^7.1 || ^8.0"
  455. },
  456. "require-dev": {
  457. "php-coveralls/php-coveralls": "^2.2",
  458. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  459. "vimeo/psalm": "4.9.2"
  460. },
  461. "type": "library",
  462. "autoload": {
  463. "psr-4": {
  464. "Brick\\Math\\": "src/"
  465. }
  466. },
  467. "notification-url": "https://packagist.org/downloads/",
  468. "license": [
  469. "MIT"
  470. ],
  471. "description": "Arbitrary-precision arithmetic library",
  472. "keywords": [
  473. "Arbitrary-precision",
  474. "BigInteger",
  475. "BigRational",
  476. "arithmetic",
  477. "bigdecimal",
  478. "bignum",
  479. "brick",
  480. "math"
  481. ],
  482. "support": {
  483. "issues": "https://github.com/brick/math/issues",
  484. "source": "https://github.com/brick/math/tree/0.9.3"
  485. },
  486. "funding": [
  487. {
  488. "url": "https://github.com/BenMorel",
  489. "type": "github"
  490. },
  491. {
  492. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  493. "type": "tidelift"
  494. }
  495. ],
  496. "time": "2021-08-15T20:50:18+00:00"
  497. },
  498. {
  499. "name": "codezero/browser-locale",
  500. "version": "3.3.0",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/codezero-be/browser-locale.git",
  504. "reference": "5dc1b89c8dcaece285b2ebb69ebdc783144e4cab"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/codezero-be/browser-locale/zipball/5dc1b89c8dcaece285b2ebb69ebdc783144e4cab",
  509. "reference": "5dc1b89c8dcaece285b2ebb69ebdc783144e4cab",
  510. "shasum": ""
  511. },
  512. "require": {
  513. "php": "^7.0|^8.0"
  514. },
  515. "require-dev": {
  516. "illuminate/support": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0",
  517. "mockery/mockery": "^1.3.3",
  518. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  519. },
  520. "type": "library",
  521. "extra": {
  522. "laravel": {
  523. "providers": [
  524. "CodeZero\\BrowserLocale\\Laravel\\BrowserLocaleServiceProvider"
  525. ]
  526. }
  527. },
  528. "autoload": {
  529. "psr-4": {
  530. "CodeZero\\BrowserLocale\\": "src/"
  531. }
  532. },
  533. "notification-url": "https://packagist.org/downloads/",
  534. "license": [
  535. "MIT"
  536. ],
  537. "authors": [
  538. {
  539. "name": "Ivan Vermeyen",
  540. "email": "ivan@codezero.be"
  541. }
  542. ],
  543. "description": "Get the most preferred locales from your visitor's browser.",
  544. "keywords": [
  545. "browser",
  546. "country",
  547. "detect",
  548. "language",
  549. "locale",
  550. "php",
  551. "website"
  552. ],
  553. "support": {
  554. "issues": "https://github.com/codezero-be/browser-locale/issues",
  555. "source": "https://github.com/codezero-be/browser-locale/tree/3.3.0"
  556. },
  557. "funding": [
  558. {
  559. "url": "https://paypal.me/ivanvermeyen",
  560. "type": "custom"
  561. },
  562. {
  563. "url": "https://ko-fi.com/ivanvermeyen",
  564. "type": "ko_fi"
  565. }
  566. ],
  567. "time": "2023-02-03T13:33:21+00:00"
  568. },
  569. {
  570. "name": "codezero/laravel-localized-routes",
  571. "version": "2.10.2",
  572. "source": {
  573. "type": "git",
  574. "url": "https://github.com/codezero-be/laravel-localized-routes.git",
  575. "reference": "2fbc95f0c5283b5cf6d35414a80318f38f0ce527"
  576. },
  577. "dist": {
  578. "type": "zip",
  579. "url": "https://api.github.com/repos/codezero-be/laravel-localized-routes/zipball/2fbc95f0c5283b5cf6d35414a80318f38f0ce527",
  580. "reference": "2fbc95f0c5283b5cf6d35414a80318f38f0ce527",
  581. "shasum": ""
  582. },
  583. "require": {
  584. "0.0.0/composer-include-files": "^1.5",
  585. "codezero/laravel-localizer": "^1.1",
  586. "illuminate/support": "^5.6|^6.0|^7.0|^8.0|^9.0|^10.0",
  587. "php": "^7.1|^8.0"
  588. },
  589. "require-dev": {
  590. "mockery/mockery": "^1.3.3",
  591. "orchestra/testbench": "^3.6|^4.0|^5.0|^6.0|^7.0|^8.0",
  592. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  593. },
  594. "type": "library",
  595. "extra": {
  596. "laravel": {
  597. "providers": [
  598. "CodeZero\\LocalizedRoutes\\LocalizedRoutesServiceProvider"
  599. ]
  600. },
  601. "include_files": [
  602. "src/helpers.php"
  603. ]
  604. },
  605. "autoload": {
  606. "psr-4": {
  607. "CodeZero\\LocalizedRoutes\\": "src"
  608. }
  609. },
  610. "notification-url": "https://packagist.org/downloads/",
  611. "license": [
  612. "MIT"
  613. ],
  614. "authors": [
  615. {
  616. "name": "Ivan Vermeyen",
  617. "email": "ivan@codezero.be"
  618. }
  619. ],
  620. "description": "A convenient way to set up, manage and use localized routes in a Laravel app.",
  621. "keywords": [
  622. "country",
  623. "language",
  624. "laravel",
  625. "locale",
  626. "localization",
  627. "php",
  628. "routes",
  629. "routing",
  630. "translation"
  631. ],
  632. "support": {
  633. "issues": "https://github.com/codezero-be/laravel-localized-routes/issues",
  634. "source": "https://github.com/codezero-be/laravel-localized-routes/tree/2.10.2"
  635. },
  636. "funding": [
  637. {
  638. "url": "https://paypal.me/ivanvermeyen",
  639. "type": "custom"
  640. },
  641. {
  642. "url": "https://ko-fi.com/ivanvermeyen",
  643. "type": "ko_fi"
  644. }
  645. ],
  646. "time": "2023-04-06T21:16:42+00:00"
  647. },
  648. {
  649. "name": "codezero/laravel-localizer",
  650. "version": "1.8.1",
  651. "source": {
  652. "type": "git",
  653. "url": "https://github.com/codezero-be/laravel-localizer.git",
  654. "reference": "7c03cc0aea0a0047a2d40e4dc39547f4a198555e"
  655. },
  656. "dist": {
  657. "type": "zip",
  658. "url": "https://api.github.com/repos/codezero-be/laravel-localizer/zipball/7c03cc0aea0a0047a2d40e4dc39547f4a198555e",
  659. "reference": "7c03cc0aea0a0047a2d40e4dc39547f4a198555e",
  660. "shasum": ""
  661. },
  662. "require": {
  663. "codezero/browser-locale": "^3.0",
  664. "illuminate/support": "^5.6|^6.0|^7.0|^8.0|^9.0|^10.0",
  665. "php": "^7.1|^8.0"
  666. },
  667. "require-dev": {
  668. "mockery/mockery": "^1.3.3",
  669. "orchestra/testbench": "^3.6|^4.0|^5.0|^6.0|^7.0|^8.0",
  670. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  671. },
  672. "type": "library",
  673. "extra": {
  674. "laravel": {
  675. "providers": [
  676. "CodeZero\\Localizer\\LocalizerServiceProvider"
  677. ]
  678. }
  679. },
  680. "autoload": {
  681. "psr-4": {
  682. "CodeZero\\Localizer\\": "src"
  683. }
  684. },
  685. "notification-url": "https://packagist.org/downloads/",
  686. "license": [
  687. "MIT"
  688. ],
  689. "authors": [
  690. {
  691. "name": "Ivan Vermeyen",
  692. "email": "ivan@codezero.be"
  693. }
  694. ],
  695. "description": "Automatically detect and set an app locale that matches your visitor's preference.",
  696. "keywords": [
  697. "browser",
  698. "cookie",
  699. "country",
  700. "detect",
  701. "language",
  702. "laravel",
  703. "locale",
  704. "localization",
  705. "php",
  706. "session"
  707. ],
  708. "support": {
  709. "issues": "https://github.com/codezero-be/laravel-localizer/issues",
  710. "source": "https://github.com/codezero-be/laravel-localizer/tree/1.8.1"
  711. },
  712. "funding": [
  713. {
  714. "url": "https://paypal.me/ivanvermeyen",
  715. "type": "custom"
  716. },
  717. {
  718. "url": "https://ko-fi.com/ivanvermeyen",
  719. "type": "ko_fi"
  720. }
  721. ],
  722. "time": "2023-03-11T22:28:31+00:00"
  723. },
  724. {
  725. "name": "composer/semver",
  726. "version": "3.4.0",
  727. "source": {
  728. "type": "git",
  729. "url": "https://github.com/composer/semver.git",
  730. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  731. },
  732. "dist": {
  733. "type": "zip",
  734. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  735. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  736. "shasum": ""
  737. },
  738. "require": {
  739. "php": "^5.3.2 || ^7.0 || ^8.0"
  740. },
  741. "require-dev": {
  742. "phpstan/phpstan": "^1.4",
  743. "symfony/phpunit-bridge": "^4.2 || ^5"
  744. },
  745. "type": "library",
  746. "extra": {
  747. "branch-alias": {
  748. "dev-main": "3.x-dev"
  749. }
  750. },
  751. "autoload": {
  752. "psr-4": {
  753. "Composer\\Semver\\": "src"
  754. }
  755. },
  756. "notification-url": "https://packagist.org/downloads/",
  757. "license": [
  758. "MIT"
  759. ],
  760. "authors": [
  761. {
  762. "name": "Nils Adermann",
  763. "email": "naderman@naderman.de",
  764. "homepage": "http://www.naderman.de"
  765. },
  766. {
  767. "name": "Jordi Boggiano",
  768. "email": "j.boggiano@seld.be",
  769. "homepage": "http://seld.be"
  770. },
  771. {
  772. "name": "Rob Bast",
  773. "email": "rob.bast@gmail.com",
  774. "homepage": "http://robbast.nl"
  775. }
  776. ],
  777. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  778. "keywords": [
  779. "semantic",
  780. "semver",
  781. "validation",
  782. "versioning"
  783. ],
  784. "support": {
  785. "irc": "ircs://irc.libera.chat:6697/composer",
  786. "issues": "https://github.com/composer/semver/issues",
  787. "source": "https://github.com/composer/semver/tree/3.4.0"
  788. },
  789. "funding": [
  790. {
  791. "url": "https://packagist.com",
  792. "type": "custom"
  793. },
  794. {
  795. "url": "https://github.com/composer",
  796. "type": "github"
  797. },
  798. {
  799. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  800. "type": "tidelift"
  801. }
  802. ],
  803. "time": "2023-08-31T09:50:34+00:00"
  804. },
  805. {
  806. "name": "dasprid/enum",
  807. "version": "1.0.5",
  808. "source": {
  809. "type": "git",
  810. "url": "https://github.com/DASPRiD/Enum.git",
  811. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016"
  812. },
  813. "dist": {
  814. "type": "zip",
  815. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6faf451159fb8ba4126b925ed2d78acfce0dc016",
  816. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016",
  817. "shasum": ""
  818. },
  819. "require": {
  820. "php": ">=7.1 <9.0"
  821. },
  822. "require-dev": {
  823. "phpunit/phpunit": "^7 | ^8 | ^9",
  824. "squizlabs/php_codesniffer": "*"
  825. },
  826. "type": "library",
  827. "autoload": {
  828. "psr-4": {
  829. "DASPRiD\\Enum\\": "src/"
  830. }
  831. },
  832. "notification-url": "https://packagist.org/downloads/",
  833. "license": [
  834. "BSD-2-Clause"
  835. ],
  836. "authors": [
  837. {
  838. "name": "Ben Scholzen 'DASPRiD'",
  839. "email": "mail@dasprids.de",
  840. "homepage": "https://dasprids.de/",
  841. "role": "Developer"
  842. }
  843. ],
  844. "description": "PHP 7.1 enum implementation",
  845. "keywords": [
  846. "enum",
  847. "map"
  848. ],
  849. "support": {
  850. "issues": "https://github.com/DASPRiD/Enum/issues",
  851. "source": "https://github.com/DASPRiD/Enum/tree/1.0.5"
  852. },
  853. "time": "2023-08-25T16:18:39+00:00"
  854. },
  855. {
  856. "name": "doctrine/inflector",
  857. "version": "2.0.8",
  858. "source": {
  859. "type": "git",
  860. "url": "https://github.com/doctrine/inflector.git",
  861. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  862. },
  863. "dist": {
  864. "type": "zip",
  865. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  866. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  867. "shasum": ""
  868. },
  869. "require": {
  870. "php": "^7.2 || ^8.0"
  871. },
  872. "require-dev": {
  873. "doctrine/coding-standard": "^11.0",
  874. "phpstan/phpstan": "^1.8",
  875. "phpstan/phpstan-phpunit": "^1.1",
  876. "phpstan/phpstan-strict-rules": "^1.3",
  877. "phpunit/phpunit": "^8.5 || ^9.5",
  878. "vimeo/psalm": "^4.25 || ^5.4"
  879. },
  880. "type": "library",
  881. "autoload": {
  882. "psr-4": {
  883. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  884. }
  885. },
  886. "notification-url": "https://packagist.org/downloads/",
  887. "license": [
  888. "MIT"
  889. ],
  890. "authors": [
  891. {
  892. "name": "Guilherme Blanco",
  893. "email": "guilhermeblanco@gmail.com"
  894. },
  895. {
  896. "name": "Roman Borschel",
  897. "email": "roman@code-factory.org"
  898. },
  899. {
  900. "name": "Benjamin Eberlei",
  901. "email": "kontakt@beberlei.de"
  902. },
  903. {
  904. "name": "Jonathan Wage",
  905. "email": "jonwage@gmail.com"
  906. },
  907. {
  908. "name": "Johannes Schmitt",
  909. "email": "schmittjoh@gmail.com"
  910. }
  911. ],
  912. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  913. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  914. "keywords": [
  915. "inflection",
  916. "inflector",
  917. "lowercase",
  918. "manipulation",
  919. "php",
  920. "plural",
  921. "singular",
  922. "strings",
  923. "uppercase",
  924. "words"
  925. ],
  926. "support": {
  927. "issues": "https://github.com/doctrine/inflector/issues",
  928. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  929. },
  930. "funding": [
  931. {
  932. "url": "https://www.doctrine-project.org/sponsorship.html",
  933. "type": "custom"
  934. },
  935. {
  936. "url": "https://www.patreon.com/phpdoctrine",
  937. "type": "patreon"
  938. },
  939. {
  940. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  941. "type": "tidelift"
  942. }
  943. ],
  944. "time": "2023-06-16T13:40:37+00:00"
  945. },
  946. {
  947. "name": "doctrine/lexer",
  948. "version": "1.2.3",
  949. "source": {
  950. "type": "git",
  951. "url": "https://github.com/doctrine/lexer.git",
  952. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  953. },
  954. "dist": {
  955. "type": "zip",
  956. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  957. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  958. "shasum": ""
  959. },
  960. "require": {
  961. "php": "^7.1 || ^8.0"
  962. },
  963. "require-dev": {
  964. "doctrine/coding-standard": "^9.0",
  965. "phpstan/phpstan": "^1.3",
  966. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  967. "vimeo/psalm": "^4.11"
  968. },
  969. "type": "library",
  970. "autoload": {
  971. "psr-4": {
  972. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  973. }
  974. },
  975. "notification-url": "https://packagist.org/downloads/",
  976. "license": [
  977. "MIT"
  978. ],
  979. "authors": [
  980. {
  981. "name": "Guilherme Blanco",
  982. "email": "guilhermeblanco@gmail.com"
  983. },
  984. {
  985. "name": "Roman Borschel",
  986. "email": "roman@code-factory.org"
  987. },
  988. {
  989. "name": "Johannes Schmitt",
  990. "email": "schmittjoh@gmail.com"
  991. }
  992. ],
  993. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  994. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  995. "keywords": [
  996. "annotations",
  997. "docblock",
  998. "lexer",
  999. "parser",
  1000. "php"
  1001. ],
  1002. "support": {
  1003. "issues": "https://github.com/doctrine/lexer/issues",
  1004. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1005. },
  1006. "funding": [
  1007. {
  1008. "url": "https://www.doctrine-project.org/sponsorship.html",
  1009. "type": "custom"
  1010. },
  1011. {
  1012. "url": "https://www.patreon.com/phpdoctrine",
  1013. "type": "patreon"
  1014. },
  1015. {
  1016. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1017. "type": "tidelift"
  1018. }
  1019. ],
  1020. "time": "2022-02-28T11:07:21+00:00"
  1021. },
  1022. {
  1023. "name": "dompdf/dompdf",
  1024. "version": "v1.2.2",
  1025. "source": {
  1026. "type": "git",
  1027. "url": "https://github.com/dompdf/dompdf.git",
  1028. "reference": "5031045d9640b38cfc14aac9667470df09c9e090"
  1029. },
  1030. "dist": {
  1031. "type": "zip",
  1032. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/5031045d9640b38cfc14aac9667470df09c9e090",
  1033. "reference": "5031045d9640b38cfc14aac9667470df09c9e090",
  1034. "shasum": ""
  1035. },
  1036. "require": {
  1037. "ext-dom": "*",
  1038. "ext-mbstring": "*",
  1039. "phenx/php-font-lib": "^0.5.4",
  1040. "phenx/php-svg-lib": "^0.3.3 || ^0.4.0",
  1041. "php": "^7.1 || ^8.0"
  1042. },
  1043. "require-dev": {
  1044. "ext-json": "*",
  1045. "ext-zip": "*",
  1046. "mockery/mockery": "^1.3",
  1047. "phpunit/phpunit": "^7.5 || ^8 || ^9",
  1048. "squizlabs/php_codesniffer": "^3.5"
  1049. },
  1050. "suggest": {
  1051. "ext-gd": "Needed to process images",
  1052. "ext-gmagick": "Improves image processing performance",
  1053. "ext-imagick": "Improves image processing performance",
  1054. "ext-zlib": "Needed for pdf stream compression"
  1055. },
  1056. "type": "library",
  1057. "autoload": {
  1058. "psr-4": {
  1059. "Dompdf\\": "src/"
  1060. },
  1061. "classmap": [
  1062. "lib/"
  1063. ]
  1064. },
  1065. "notification-url": "https://packagist.org/downloads/",
  1066. "license": [
  1067. "LGPL-2.1"
  1068. ],
  1069. "authors": [
  1070. {
  1071. "name": "Fabien Ménager",
  1072. "email": "fabien.menager@gmail.com"
  1073. },
  1074. {
  1075. "name": "Brian Sweeney",
  1076. "email": "eclecticgeek@gmail.com"
  1077. },
  1078. {
  1079. "name": "Gabriel Bull",
  1080. "email": "me@gabrielbull.com"
  1081. }
  1082. ],
  1083. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  1084. "homepage": "https://github.com/dompdf/dompdf",
  1085. "support": {
  1086. "issues": "https://github.com/dompdf/dompdf/issues",
  1087. "source": "https://github.com/dompdf/dompdf/tree/v1.2.2"
  1088. },
  1089. "time": "2022-04-27T13:50:54+00:00"
  1090. },
  1091. {
  1092. "name": "dragonmantank/cron-expression",
  1093. "version": "v3.3.3",
  1094. "source": {
  1095. "type": "git",
  1096. "url": "https://github.com/dragonmantank/cron-expression.git",
  1097. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1098. },
  1099. "dist": {
  1100. "type": "zip",
  1101. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1102. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1103. "shasum": ""
  1104. },
  1105. "require": {
  1106. "php": "^7.2|^8.0",
  1107. "webmozart/assert": "^1.0"
  1108. },
  1109. "replace": {
  1110. "mtdowling/cron-expression": "^1.0"
  1111. },
  1112. "require-dev": {
  1113. "phpstan/extension-installer": "^1.0",
  1114. "phpstan/phpstan": "^1.0",
  1115. "phpstan/phpstan-webmozart-assert": "^1.0",
  1116. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1117. },
  1118. "type": "library",
  1119. "autoload": {
  1120. "psr-4": {
  1121. "Cron\\": "src/Cron/"
  1122. }
  1123. },
  1124. "notification-url": "https://packagist.org/downloads/",
  1125. "license": [
  1126. "MIT"
  1127. ],
  1128. "authors": [
  1129. {
  1130. "name": "Chris Tankersley",
  1131. "email": "chris@ctankersley.com",
  1132. "homepage": "https://github.com/dragonmantank"
  1133. }
  1134. ],
  1135. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1136. "keywords": [
  1137. "cron",
  1138. "schedule"
  1139. ],
  1140. "support": {
  1141. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1142. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1143. },
  1144. "funding": [
  1145. {
  1146. "url": "https://github.com/dragonmantank",
  1147. "type": "github"
  1148. }
  1149. ],
  1150. "time": "2023-08-10T19:36:49+00:00"
  1151. },
  1152. {
  1153. "name": "egulias/email-validator",
  1154. "version": "2.1.25",
  1155. "source": {
  1156. "type": "git",
  1157. "url": "https://github.com/egulias/EmailValidator.git",
  1158. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1159. },
  1160. "dist": {
  1161. "type": "zip",
  1162. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1163. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1164. "shasum": ""
  1165. },
  1166. "require": {
  1167. "doctrine/lexer": "^1.0.1",
  1168. "php": ">=5.5",
  1169. "symfony/polyfill-intl-idn": "^1.10"
  1170. },
  1171. "require-dev": {
  1172. "dominicsayers/isemail": "^3.0.7",
  1173. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1174. "satooshi/php-coveralls": "^1.0.1"
  1175. },
  1176. "suggest": {
  1177. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1178. },
  1179. "type": "library",
  1180. "extra": {
  1181. "branch-alias": {
  1182. "dev-master": "2.1.x-dev"
  1183. }
  1184. },
  1185. "autoload": {
  1186. "psr-4": {
  1187. "Egulias\\EmailValidator\\": "src"
  1188. }
  1189. },
  1190. "notification-url": "https://packagist.org/downloads/",
  1191. "license": [
  1192. "MIT"
  1193. ],
  1194. "authors": [
  1195. {
  1196. "name": "Eduardo Gulias Davis"
  1197. }
  1198. ],
  1199. "description": "A library for validating emails against several RFCs",
  1200. "homepage": "https://github.com/egulias/EmailValidator",
  1201. "keywords": [
  1202. "email",
  1203. "emailvalidation",
  1204. "emailvalidator",
  1205. "validation",
  1206. "validator"
  1207. ],
  1208. "support": {
  1209. "issues": "https://github.com/egulias/EmailValidator/issues",
  1210. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1211. },
  1212. "funding": [
  1213. {
  1214. "url": "https://github.com/egulias",
  1215. "type": "github"
  1216. }
  1217. ],
  1218. "time": "2020-12-29T14:50:06+00:00"
  1219. },
  1220. {
  1221. "name": "elasticsearch/elasticsearch",
  1222. "version": "v7.17.2",
  1223. "source": {
  1224. "type": "git",
  1225. "url": "git@github.com:elastic/elasticsearch-php.git",
  1226. "reference": "2d302233f2bb0926812d82823bb820d405e130fc"
  1227. },
  1228. "dist": {
  1229. "type": "zip",
  1230. "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/2d302233f2bb0926812d82823bb820d405e130fc",
  1231. "reference": "2d302233f2bb0926812d82823bb820d405e130fc",
  1232. "shasum": ""
  1233. },
  1234. "require": {
  1235. "ext-json": ">=1.3.7",
  1236. "ezimuel/ringphp": "^1.1.2",
  1237. "php": "^7.3 || ^8.0",
  1238. "psr/log": "^1|^2|^3"
  1239. },
  1240. "require-dev": {
  1241. "ext-yaml": "*",
  1242. "ext-zip": "*",
  1243. "mockery/mockery": "^1.2",
  1244. "phpstan/phpstan": "^1.10",
  1245. "phpunit/phpunit": "^9.3",
  1246. "squizlabs/php_codesniffer": "^3.4",
  1247. "symfony/finder": "~4.0"
  1248. },
  1249. "suggest": {
  1250. "ext-curl": "*",
  1251. "monolog/monolog": "Allows for client-level logging and tracing"
  1252. },
  1253. "type": "library",
  1254. "autoload": {
  1255. "files": [
  1256. "src/autoload.php"
  1257. ],
  1258. "psr-4": {
  1259. "Elasticsearch\\": "src/Elasticsearch/"
  1260. }
  1261. },
  1262. "notification-url": "https://packagist.org/downloads/",
  1263. "license": [
  1264. "Apache-2.0",
  1265. "LGPL-2.1-only"
  1266. ],
  1267. "authors": [
  1268. {
  1269. "name": "Zachary Tong"
  1270. },
  1271. {
  1272. "name": "Enrico Zimuel"
  1273. }
  1274. ],
  1275. "description": "PHP Client for Elasticsearch",
  1276. "keywords": [
  1277. "client",
  1278. "elasticsearch",
  1279. "search"
  1280. ],
  1281. "time": "2023-04-21T15:31:12+00:00"
  1282. },
  1283. {
  1284. "name": "eusonlito/laravel-meta",
  1285. "version": "v3.3.0",
  1286. "source": {
  1287. "type": "git",
  1288. "url": "https://github.com/eusonlito/laravel-Meta.git",
  1289. "reference": "00f5f3e58b3d3bd381ebbd3f3e1e1df02f0a9367"
  1290. },
  1291. "dist": {
  1292. "type": "zip",
  1293. "url": "https://api.github.com/repos/eusonlito/laravel-Meta/zipball/00f5f3e58b3d3bd381ebbd3f3e1e1df02f0a9367",
  1294. "reference": "00f5f3e58b3d3bd381ebbd3f3e1e1df02f0a9367",
  1295. "shasum": ""
  1296. },
  1297. "require": {
  1298. "php": ">=5.6"
  1299. },
  1300. "require-dev": {
  1301. "phpunit/phpunit": "^9.3"
  1302. },
  1303. "type": "library",
  1304. "extra": {
  1305. "laravel": {
  1306. "providers": [
  1307. "Eusonlito\\LaravelMeta\\MetaServiceProvider"
  1308. ],
  1309. "aliases": {
  1310. "Meta": "Eusonlito\\LaravelMeta\\Facade"
  1311. }
  1312. }
  1313. },
  1314. "autoload": {
  1315. "psr-4": {
  1316. "Eusonlito\\LaravelMeta\\": "src/Eusonlito/LaravelMeta/"
  1317. }
  1318. },
  1319. "notification-url": "https://packagist.org/downloads/",
  1320. "license": [
  1321. "MIT"
  1322. ],
  1323. "authors": [
  1324. {
  1325. "name": "Lito",
  1326. "email": "lito@eordes.com"
  1327. }
  1328. ],
  1329. "description": "A package to manage Header Meta Tags",
  1330. "keywords": [
  1331. "head",
  1332. "laravel",
  1333. "meta",
  1334. "tags"
  1335. ],
  1336. "support": {
  1337. "issues": "https://github.com/eusonlito/laravel-Meta/issues",
  1338. "source": "https://github.com/eusonlito/laravel-Meta/tree/v3.3.0"
  1339. },
  1340. "time": "2023-09-03T12:07:38+00:00"
  1341. },
  1342. {
  1343. "name": "ezimuel/guzzlestreams",
  1344. "version": "3.1.0",
  1345. "source": {
  1346. "type": "git",
  1347. "url": "https://github.com/ezimuel/guzzlestreams.git",
  1348. "reference": "b4b5a025dfee70d6cd34c780e07330eb93d5b997"
  1349. },
  1350. "dist": {
  1351. "type": "zip",
  1352. "url": "https://api.github.com/repos/ezimuel/guzzlestreams/zipball/b4b5a025dfee70d6cd34c780e07330eb93d5b997",
  1353. "reference": "b4b5a025dfee70d6cd34c780e07330eb93d5b997",
  1354. "shasum": ""
  1355. },
  1356. "require": {
  1357. "php": ">=5.4.0"
  1358. },
  1359. "require-dev": {
  1360. "phpunit/phpunit": "~9.0"
  1361. },
  1362. "type": "library",
  1363. "extra": {
  1364. "branch-alias": {
  1365. "dev-master": "3.0-dev"
  1366. }
  1367. },
  1368. "autoload": {
  1369. "psr-4": {
  1370. "GuzzleHttp\\Stream\\": "src/"
  1371. }
  1372. },
  1373. "notification-url": "https://packagist.org/downloads/",
  1374. "license": [
  1375. "MIT"
  1376. ],
  1377. "authors": [
  1378. {
  1379. "name": "Michael Dowling",
  1380. "email": "mtdowling@gmail.com",
  1381. "homepage": "https://github.com/mtdowling"
  1382. }
  1383. ],
  1384. "description": "Fork of guzzle/streams (abandoned) to be used with elasticsearch-php",
  1385. "homepage": "http://guzzlephp.org/",
  1386. "keywords": [
  1387. "Guzzle",
  1388. "stream"
  1389. ],
  1390. "support": {
  1391. "source": "https://github.com/ezimuel/guzzlestreams/tree/3.1.0"
  1392. },
  1393. "time": "2022-10-24T12:58:50+00:00"
  1394. },
  1395. {
  1396. "name": "ezimuel/ringphp",
  1397. "version": "1.2.2",
  1398. "source": {
  1399. "type": "git",
  1400. "url": "https://github.com/ezimuel/ringphp.git",
  1401. "reference": "7887fc8488013065f72f977dcb281994f5fde9f4"
  1402. },
  1403. "dist": {
  1404. "type": "zip",
  1405. "url": "https://api.github.com/repos/ezimuel/ringphp/zipball/7887fc8488013065f72f977dcb281994f5fde9f4",
  1406. "reference": "7887fc8488013065f72f977dcb281994f5fde9f4",
  1407. "shasum": ""
  1408. },
  1409. "require": {
  1410. "ezimuel/guzzlestreams": "^3.0.1",
  1411. "php": ">=5.4.0",
  1412. "react/promise": "~2.0"
  1413. },
  1414. "replace": {
  1415. "guzzlehttp/ringphp": "self.version"
  1416. },
  1417. "require-dev": {
  1418. "ext-curl": "*",
  1419. "phpunit/phpunit": "~9.0"
  1420. },
  1421. "suggest": {
  1422. "ext-curl": "Guzzle will use specific adapters if cURL is present"
  1423. },
  1424. "type": "library",
  1425. "extra": {
  1426. "branch-alias": {
  1427. "dev-master": "1.1-dev"
  1428. }
  1429. },
  1430. "autoload": {
  1431. "psr-4": {
  1432. "GuzzleHttp\\Ring\\": "src/"
  1433. }
  1434. },
  1435. "notification-url": "https://packagist.org/downloads/",
  1436. "license": [
  1437. "MIT"
  1438. ],
  1439. "authors": [
  1440. {
  1441. "name": "Michael Dowling",
  1442. "email": "mtdowling@gmail.com",
  1443. "homepage": "https://github.com/mtdowling"
  1444. }
  1445. ],
  1446. "description": "Fork of guzzle/RingPHP (abandoned) to be used with elasticsearch-php",
  1447. "support": {
  1448. "source": "https://github.com/ezimuel/ringphp/tree/1.2.2"
  1449. },
  1450. "time": "2022-12-07T11:28:53+00:00"
  1451. },
  1452. {
  1453. "name": "ezyang/htmlpurifier",
  1454. "version": "v4.16.0",
  1455. "source": {
  1456. "type": "git",
  1457. "url": "https://github.com/ezyang/htmlpurifier.git",
  1458. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  1459. },
  1460. "dist": {
  1461. "type": "zip",
  1462. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1463. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1464. "shasum": ""
  1465. },
  1466. "require": {
  1467. "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"
  1468. },
  1469. "require-dev": {
  1470. "cerdic/css-tidy": "^1.7 || ^2.0",
  1471. "simpletest/simpletest": "dev-master"
  1472. },
  1473. "suggest": {
  1474. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1475. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1476. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1477. "ext-tidy": "Used for pretty-printing HTML"
  1478. },
  1479. "type": "library",
  1480. "autoload": {
  1481. "files": [
  1482. "library/HTMLPurifier.composer.php"
  1483. ],
  1484. "psr-0": {
  1485. "HTMLPurifier": "library/"
  1486. },
  1487. "exclude-from-classmap": [
  1488. "/library/HTMLPurifier/Language/"
  1489. ]
  1490. },
  1491. "notification-url": "https://packagist.org/downloads/",
  1492. "license": [
  1493. "LGPL-2.1-or-later"
  1494. ],
  1495. "authors": [
  1496. {
  1497. "name": "Edward Z. Yang",
  1498. "email": "admin@htmlpurifier.org",
  1499. "homepage": "http://ezyang.com"
  1500. }
  1501. ],
  1502. "description": "Standards compliant HTML filter written in PHP",
  1503. "homepage": "http://htmlpurifier.org/",
  1504. "keywords": [
  1505. "html"
  1506. ],
  1507. "support": {
  1508. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1509. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  1510. },
  1511. "time": "2022-09-18T07:06:19+00:00"
  1512. },
  1513. {
  1514. "name": "fideloper/proxy",
  1515. "version": "4.4.2",
  1516. "source": {
  1517. "type": "git",
  1518. "url": "https://github.com/fideloper/TrustedProxy.git",
  1519. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  1520. },
  1521. "dist": {
  1522. "type": "zip",
  1523. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1524. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1525. "shasum": ""
  1526. },
  1527. "require": {
  1528. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1529. "php": ">=5.4.0"
  1530. },
  1531. "require-dev": {
  1532. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1533. "mockery/mockery": "^1.0",
  1534. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1535. },
  1536. "type": "library",
  1537. "extra": {
  1538. "laravel": {
  1539. "providers": [
  1540. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1541. ]
  1542. }
  1543. },
  1544. "autoload": {
  1545. "psr-4": {
  1546. "Fideloper\\Proxy\\": "src/"
  1547. }
  1548. },
  1549. "notification-url": "https://packagist.org/downloads/",
  1550. "license": [
  1551. "MIT"
  1552. ],
  1553. "authors": [
  1554. {
  1555. "name": "Chris Fidao",
  1556. "email": "fideloper@gmail.com"
  1557. }
  1558. ],
  1559. "description": "Set trusted proxies for Laravel",
  1560. "keywords": [
  1561. "load balancing",
  1562. "proxy",
  1563. "trusted proxy"
  1564. ],
  1565. "support": {
  1566. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1567. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1568. },
  1569. "time": "2022-02-09T13:33:34+00:00"
  1570. },
  1571. {
  1572. "name": "firebase/php-jwt",
  1573. "version": "v5.5.1",
  1574. "source": {
  1575. "type": "git",
  1576. "url": "https://github.com/firebase/php-jwt.git",
  1577. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6"
  1578. },
  1579. "dist": {
  1580. "type": "zip",
  1581. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6",
  1582. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6",
  1583. "shasum": ""
  1584. },
  1585. "require": {
  1586. "php": ">=5.3.0"
  1587. },
  1588. "require-dev": {
  1589. "phpunit/phpunit": ">=4.8 <=9"
  1590. },
  1591. "suggest": {
  1592. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1593. },
  1594. "type": "library",
  1595. "autoload": {
  1596. "psr-4": {
  1597. "Firebase\\JWT\\": "src"
  1598. }
  1599. },
  1600. "notification-url": "https://packagist.org/downloads/",
  1601. "license": [
  1602. "BSD-3-Clause"
  1603. ],
  1604. "authors": [
  1605. {
  1606. "name": "Neuman Vong",
  1607. "email": "neuman+pear@twilio.com",
  1608. "role": "Developer"
  1609. },
  1610. {
  1611. "name": "Anant Narayanan",
  1612. "email": "anant@php.net",
  1613. "role": "Developer"
  1614. }
  1615. ],
  1616. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1617. "homepage": "https://github.com/firebase/php-jwt",
  1618. "keywords": [
  1619. "jwt",
  1620. "php"
  1621. ],
  1622. "support": {
  1623. "issues": "https://github.com/firebase/php-jwt/issues",
  1624. "source": "https://github.com/firebase/php-jwt/tree/v5.5.1"
  1625. },
  1626. "time": "2021-11-08T20:18:51+00:00"
  1627. },
  1628. {
  1629. "name": "fruitcake/laravel-cors",
  1630. "version": "v2.2.0",
  1631. "source": {
  1632. "type": "git",
  1633. "url": "https://github.com/fruitcake/laravel-cors.git",
  1634. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1635. },
  1636. "dist": {
  1637. "type": "zip",
  1638. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1639. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1640. "shasum": ""
  1641. },
  1642. "require": {
  1643. "asm89/stack-cors": "^2.0.1",
  1644. "illuminate/contracts": "^6|^7|^8|^9",
  1645. "illuminate/support": "^6|^7|^8|^9",
  1646. "php": ">=7.2"
  1647. },
  1648. "require-dev": {
  1649. "laravel/framework": "^6|^7.24|^8",
  1650. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1651. "phpunit/phpunit": "^6|^7|^8|^9",
  1652. "squizlabs/php_codesniffer": "^3.5"
  1653. },
  1654. "type": "library",
  1655. "extra": {
  1656. "branch-alias": {
  1657. "dev-master": "2.1-dev"
  1658. },
  1659. "laravel": {
  1660. "providers": [
  1661. "Fruitcake\\Cors\\CorsServiceProvider"
  1662. ]
  1663. }
  1664. },
  1665. "autoload": {
  1666. "psr-4": {
  1667. "Fruitcake\\Cors\\": "src/"
  1668. }
  1669. },
  1670. "notification-url": "https://packagist.org/downloads/",
  1671. "license": [
  1672. "MIT"
  1673. ],
  1674. "authors": [
  1675. {
  1676. "name": "Fruitcake",
  1677. "homepage": "https://fruitcake.nl"
  1678. },
  1679. {
  1680. "name": "Barry vd. Heuvel",
  1681. "email": "barryvdh@gmail.com"
  1682. }
  1683. ],
  1684. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1685. "keywords": [
  1686. "api",
  1687. "cors",
  1688. "crossdomain",
  1689. "laravel"
  1690. ],
  1691. "support": {
  1692. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1693. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1694. },
  1695. "funding": [
  1696. {
  1697. "url": "https://fruitcake.nl",
  1698. "type": "custom"
  1699. },
  1700. {
  1701. "url": "https://github.com/barryvdh",
  1702. "type": "github"
  1703. }
  1704. ],
  1705. "abandoned": true,
  1706. "time": "2022-02-23T14:25:13+00:00"
  1707. },
  1708. {
  1709. "name": "gettext/gettext",
  1710. "version": "v3.6.1",
  1711. "source": {
  1712. "type": "git",
  1713. "url": "https://github.com/php-gettext/Gettext.git",
  1714. "reference": "cd3be64443551e3a693117c4bccbe53e36282456"
  1715. },
  1716. "dist": {
  1717. "type": "zip",
  1718. "url": "https://api.github.com/repos/php-gettext/Gettext/zipball/cd3be64443551e3a693117c4bccbe53e36282456",
  1719. "reference": "cd3be64443551e3a693117c4bccbe53e36282456",
  1720. "shasum": ""
  1721. },
  1722. "require": {
  1723. "gettext/languages": "2.*",
  1724. "php": ">=5.3.0"
  1725. },
  1726. "require-dev": {
  1727. "illuminate/view": "*",
  1728. "symfony/yaml": "~2",
  1729. "twig/extensions": "*",
  1730. "twig/twig": "*"
  1731. },
  1732. "suggest": {
  1733. "illuminate/view": "Is necessary if you want to use the Blade extractor",
  1734. "symfony/yaml": "Is necessary if you want to use the Yaml extractor/generator",
  1735. "twig/extensions": "Is necessary if you want to use the Twig extractor",
  1736. "twig/twig": "Is necessary if you want to use the Twig extractor"
  1737. },
  1738. "type": "library",
  1739. "autoload": {
  1740. "psr-4": {
  1741. "Gettext\\": "src"
  1742. }
  1743. },
  1744. "notification-url": "https://packagist.org/downloads/",
  1745. "license": [
  1746. "MIT"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "Oscar Otero",
  1751. "email": "oom@oscarotero.com",
  1752. "homepage": "http://oscarotero.com",
  1753. "role": "Developer"
  1754. }
  1755. ],
  1756. "description": "PHP gettext manager",
  1757. "homepage": "https://github.com/oscarotero/Gettext",
  1758. "keywords": [
  1759. "JS",
  1760. "gettext",
  1761. "i18n",
  1762. "mo",
  1763. "po",
  1764. "translation"
  1765. ],
  1766. "support": {
  1767. "email": "oom@oscarotero.com",
  1768. "issues": "https://github.com/oscarotero/Gettext/issues",
  1769. "source": "https://github.com/php-gettext/Gettext/tree/v3.6.1"
  1770. },
  1771. "time": "2016-08-01T18:09:57+00:00"
  1772. },
  1773. {
  1774. "name": "gettext/languages",
  1775. "version": "2.10.0",
  1776. "source": {
  1777. "type": "git",
  1778. "url": "https://github.com/php-gettext/Languages.git",
  1779. "reference": "4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab"
  1780. },
  1781. "dist": {
  1782. "type": "zip",
  1783. "url": "https://api.github.com/repos/php-gettext/Languages/zipball/4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab",
  1784. "reference": "4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab",
  1785. "shasum": ""
  1786. },
  1787. "require": {
  1788. "php": ">=5.3"
  1789. },
  1790. "require-dev": {
  1791. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4"
  1792. },
  1793. "bin": [
  1794. "bin/export-plural-rules"
  1795. ],
  1796. "type": "library",
  1797. "autoload": {
  1798. "psr-4": {
  1799. "Gettext\\Languages\\": "src/"
  1800. }
  1801. },
  1802. "notification-url": "https://packagist.org/downloads/",
  1803. "license": [
  1804. "MIT"
  1805. ],
  1806. "authors": [
  1807. {
  1808. "name": "Michele Locati",
  1809. "email": "mlocati@gmail.com",
  1810. "role": "Developer"
  1811. }
  1812. ],
  1813. "description": "gettext languages with plural rules",
  1814. "homepage": "https://github.com/php-gettext/Languages",
  1815. "keywords": [
  1816. "cldr",
  1817. "i18n",
  1818. "internationalization",
  1819. "l10n",
  1820. "language",
  1821. "languages",
  1822. "localization",
  1823. "php",
  1824. "plural",
  1825. "plural rules",
  1826. "plurals",
  1827. "translate",
  1828. "translations",
  1829. "unicode"
  1830. ],
  1831. "support": {
  1832. "issues": "https://github.com/php-gettext/Languages/issues",
  1833. "source": "https://github.com/php-gettext/Languages/tree/2.10.0"
  1834. },
  1835. "funding": [
  1836. {
  1837. "url": "https://paypal.me/mlocati",
  1838. "type": "custom"
  1839. },
  1840. {
  1841. "url": "https://github.com/mlocati",
  1842. "type": "github"
  1843. }
  1844. ],
  1845. "time": "2022-10-18T15:00:10+00:00"
  1846. },
  1847. {
  1848. "name": "google/auth",
  1849. "version": "v1.26.0",
  1850. "source": {
  1851. "type": "git",
  1852. "url": "https://github.com/googleapis/google-auth-library-php.git",
  1853. "reference": "f1f0d0319e2e7750ebfaa523c78819792a9ed9f7"
  1854. },
  1855. "dist": {
  1856. "type": "zip",
  1857. "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/f1f0d0319e2e7750ebfaa523c78819792a9ed9f7",
  1858. "reference": "f1f0d0319e2e7750ebfaa523c78819792a9ed9f7",
  1859. "shasum": ""
  1860. },
  1861. "require": {
  1862. "firebase/php-jwt": "^5.5||^6.0",
  1863. "guzzlehttp/guzzle": "^6.2.1|^7.0",
  1864. "guzzlehttp/psr7": "^1.7|^2.0",
  1865. "php": "^7.1||^8.0",
  1866. "psr/cache": "^1.0|^2.0|^3.0",
  1867. "psr/http-message": "^1.0"
  1868. },
  1869. "require-dev": {
  1870. "guzzlehttp/promises": "0.1.1|^1.3",
  1871. "kelvinmo/simplejwt": "0.7.0",
  1872. "phpseclib/phpseclib": "^2.0.31||^3.0",
  1873. "phpspec/prophecy-phpunit": "^1.1||^2.0",
  1874. "phpunit/phpunit": "^7.5||^9.0.0",
  1875. "sebastian/comparator": ">=1.2.3",
  1876. "squizlabs/php_codesniffer": "^3.5"
  1877. },
  1878. "suggest": {
  1879. "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
  1880. },
  1881. "type": "library",
  1882. "autoload": {
  1883. "psr-4": {
  1884. "Google\\Auth\\": "src"
  1885. }
  1886. },
  1887. "notification-url": "https://packagist.org/downloads/",
  1888. "license": [
  1889. "Apache-2.0"
  1890. ],
  1891. "description": "Google Auth Library for PHP",
  1892. "homepage": "http://github.com/google/google-auth-library-php",
  1893. "keywords": [
  1894. "Authentication",
  1895. "google",
  1896. "oauth2"
  1897. ],
  1898. "support": {
  1899. "docs": "https://googleapis.github.io/google-auth-library-php/main/",
  1900. "issues": "https://github.com/googleapis/google-auth-library-php/issues",
  1901. "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.26.0"
  1902. },
  1903. "time": "2023-04-05T15:11:57+00:00"
  1904. },
  1905. {
  1906. "name": "google/cloud-core",
  1907. "version": "v1.49.4",
  1908. "source": {
  1909. "type": "git",
  1910. "url": "https://github.com/googleapis/google-cloud-php-core.git",
  1911. "reference": "6723a3fde6cc7a307a21ddbf7fce9cf6fab61833"
  1912. },
  1913. "dist": {
  1914. "type": "zip",
  1915. "url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/6723a3fde6cc7a307a21ddbf7fce9cf6fab61833",
  1916. "reference": "6723a3fde6cc7a307a21ddbf7fce9cf6fab61833",
  1917. "shasum": ""
  1918. },
  1919. "require": {
  1920. "google/auth": "^1.18",
  1921. "guzzlehttp/guzzle": "^5.3|^6.5.7|^7.4.4",
  1922. "guzzlehttp/promises": "^1.3",
  1923. "guzzlehttp/psr7": "^1.7|^2.0",
  1924. "monolog/monolog": "^1.1|^2.0|^3.0",
  1925. "php": ">=5.6",
  1926. "psr/http-message": "^1.0",
  1927. "rize/uri-template": "~0.3"
  1928. },
  1929. "require-dev": {
  1930. "erusev/parsedown": "^1.6",
  1931. "google/cloud-common-protos": "^0.3",
  1932. "google/gax": "^1.9",
  1933. "opis/closure": "^3",
  1934. "phpdocumentor/reflection": "^3.0||^4.0||^5.3",
  1935. "phpspec/prophecy": "^1.10.3",
  1936. "phpunit/phpunit": "^4.8|^5.0|^8.0",
  1937. "squizlabs/php_codesniffer": "2.*",
  1938. "yoast/phpunit-polyfills": "^1.0"
  1939. },
  1940. "suggest": {
  1941. "opis/closure": "May be used to serialize closures to process jobs in the batch daemon. Please require version ^3.",
  1942. "symfony/lock": "Required for the Spanner cached based session pool. Please require the following commit: 3.3.x-dev#1ba6ac9"
  1943. },
  1944. "bin": [
  1945. "bin/google-cloud-batch"
  1946. ],
  1947. "type": "library",
  1948. "extra": {
  1949. "component": {
  1950. "id": "cloud-core",
  1951. "target": "googleapis/google-cloud-php-core.git",
  1952. "path": "Core",
  1953. "entry": "src/ServiceBuilder.php"
  1954. }
  1955. },
  1956. "autoload": {
  1957. "psr-4": {
  1958. "Google\\Cloud\\Core\\": "src"
  1959. }
  1960. },
  1961. "notification-url": "https://packagist.org/downloads/",
  1962. "license": [
  1963. "Apache-2.0"
  1964. ],
  1965. "description": "Google Cloud PHP shared dependency, providing functionality useful to all components.",
  1966. "support": {
  1967. "source": "https://github.com/googleapis/google-cloud-php-core/tree/v1.49.4"
  1968. },
  1969. "time": "2023-04-07T21:48:59+00:00"
  1970. },
  1971. {
  1972. "name": "google/cloud-vision",
  1973. "version": "v1.6.5",
  1974. "source": {
  1975. "type": "git",
  1976. "url": "https://github.com/googleapis/google-cloud-php-vision.git",
  1977. "reference": "e49b477a21c112382f985ee061235b029defd996"
  1978. },
  1979. "dist": {
  1980. "type": "zip",
  1981. "url": "https://api.github.com/repos/googleapis/google-cloud-php-vision/zipball/e49b477a21c112382f985ee061235b029defd996",
  1982. "reference": "e49b477a21c112382f985ee061235b029defd996",
  1983. "shasum": ""
  1984. },
  1985. "require": {
  1986. "google/cloud-core": "^1.43",
  1987. "google/gax": "^1.1"
  1988. },
  1989. "require-dev": {
  1990. "erusev/parsedown": "^1.6",
  1991. "google/cloud-storage": "^1.12",
  1992. "phpdocumentor/reflection": "^3.0||^4.0",
  1993. "phpspec/prophecy": "^1.10.3",
  1994. "phpunit/phpunit": "^4.8|^5.0|^8.0",
  1995. "squizlabs/php_codesniffer": "2.*",
  1996. "yoast/phpunit-polyfills": "^1.0"
  1997. },
  1998. "suggest": {
  1999. "ext-grpc": "The gRPC extension enables use of the performant gRPC transport",
  2000. "ext-protobuf": "Provides a significant increase in throughput over the pure PHP protobuf implementation. See https://cloud.google.com/php/grpc for installation instructions.",
  2001. "google/cloud-storage": "Annotate images stored in Google Cloud Storage"
  2002. },
  2003. "type": "library",
  2004. "extra": {
  2005. "component": {
  2006. "id": "cloud-vision",
  2007. "target": "googleapis/google-cloud-php-vision.git",
  2008. "path": "Vision",
  2009. "entry": "src/VisionClient.php"
  2010. }
  2011. },
  2012. "autoload": {
  2013. "psr-4": {
  2014. "Google\\Cloud\\Vision\\": "src",
  2015. "GPBMetadata\\Google\\Cloud\\Vision\\": "metadata"
  2016. }
  2017. },
  2018. "notification-url": "https://packagist.org/downloads/",
  2019. "license": [
  2020. "Apache-2.0"
  2021. ],
  2022. "description": "Cloud Vision Client for PHP",
  2023. "support": {
  2024. "source": "https://github.com/googleapis/google-cloud-php-vision/tree/v1.6.5"
  2025. },
  2026. "time": "2023-03-25T14:54:11+00:00"
  2027. },
  2028. {
  2029. "name": "google/common-protos",
  2030. "version": "v3.2.0",
  2031. "source": {
  2032. "type": "git",
  2033. "url": "https://github.com/googleapis/common-protos-php.git",
  2034. "reference": "57d4ad36cc48cc0369123042908013ef2a86bb98"
  2035. },
  2036. "dist": {
  2037. "type": "zip",
  2038. "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/57d4ad36cc48cc0369123042908013ef2a86bb98",
  2039. "reference": "57d4ad36cc48cc0369123042908013ef2a86bb98",
  2040. "shasum": ""
  2041. },
  2042. "require": {
  2043. "google/protobuf": "^3.6.1"
  2044. },
  2045. "require-dev": {
  2046. "phpunit/phpunit": "^4.8.36||^8.5",
  2047. "sami/sami": "*"
  2048. },
  2049. "type": "library",
  2050. "autoload": {
  2051. "psr-4": {
  2052. "Google\\Api\\": "src/Api",
  2053. "Google\\Iam\\": "src/Iam",
  2054. "Google\\Rpc\\": "src/Rpc",
  2055. "Google\\Type\\": "src/Type",
  2056. "Google\\Cloud\\": "src/Cloud",
  2057. "GPBMetadata\\Google\\Api\\": "metadata/Api",
  2058. "GPBMetadata\\Google\\Iam\\": "metadata/Iam",
  2059. "GPBMetadata\\Google\\Rpc\\": "metadata/Rpc",
  2060. "GPBMetadata\\Google\\Type\\": "metadata/Type",
  2061. "GPBMetadata\\Google\\Cloud\\": "metadata/Cloud",
  2062. "GPBMetadata\\Google\\Logging\\": "metadata/Logging"
  2063. }
  2064. },
  2065. "notification-url": "https://packagist.org/downloads/",
  2066. "license": [
  2067. "Apache-2.0"
  2068. ],
  2069. "description": "Google API Common Protos for PHP",
  2070. "homepage": "https://github.com/googleapis/common-protos-php",
  2071. "keywords": [
  2072. "google"
  2073. ],
  2074. "support": {
  2075. "issues": "https://github.com/googleapis/common-protos-php/issues",
  2076. "source": "https://github.com/googleapis/common-protos-php/tree/v3.2.0"
  2077. },
  2078. "time": "2023-01-12T16:51:46+00:00"
  2079. },
  2080. {
  2081. "name": "google/gax",
  2082. "version": "v1.19.1",
  2083. "source": {
  2084. "type": "git",
  2085. "url": "https://github.com/googleapis/gax-php.git",
  2086. "reference": "30f6b307faa9858bf58d967664467098dbbc354f"
  2087. },
  2088. "dist": {
  2089. "type": "zip",
  2090. "url": "https://api.github.com/repos/googleapis/gax-php/zipball/30f6b307faa9858bf58d967664467098dbbc354f",
  2091. "reference": "30f6b307faa9858bf58d967664467098dbbc354f",
  2092. "shasum": ""
  2093. },
  2094. "require": {
  2095. "google/auth": "1.19.1||^1.25.0",
  2096. "google/common-protos": "^1.3.1||^2.0||^3.0",
  2097. "google/grpc-gcp": "^0.2",
  2098. "google/longrunning": "^0.2",
  2099. "google/protobuf": "^3.21.4",
  2100. "grpc/grpc": "^1.13",
  2101. "guzzlehttp/promises": "^1.3",
  2102. "guzzlehttp/psr7": "^1.7.0||^2",
  2103. "php": ">=7.0"
  2104. },
  2105. "conflict": {
  2106. "ext-protobuf": "<3.7.0"
  2107. },
  2108. "require-dev": {
  2109. "phpspec/prophecy": "^1.10",
  2110. "phpunit/phpunit": "^5.5||^8.5",
  2111. "squizlabs/php_codesniffer": "3.*",
  2112. "yoast/phpunit-polyfills": "^1.0"
  2113. },
  2114. "type": "library",
  2115. "autoload": {
  2116. "psr-4": {
  2117. "Google\\ApiCore\\": "src",
  2118. "GPBMetadata\\ApiCore\\": "metadata/ApiCore"
  2119. }
  2120. },
  2121. "notification-url": "https://packagist.org/downloads/",
  2122. "license": [
  2123. "BSD-3-Clause"
  2124. ],
  2125. "description": "Google API Core for PHP",
  2126. "homepage": "https://github.com/googleapis/gax-php",
  2127. "keywords": [
  2128. "google"
  2129. ],
  2130. "support": {
  2131. "issues": "https://github.com/googleapis/gax-php/issues",
  2132. "source": "https://github.com/googleapis/gax-php/tree/v1.19.1"
  2133. },
  2134. "time": "2023-03-16T19:58:19+00:00"
  2135. },
  2136. {
  2137. "name": "google/grpc-gcp",
  2138. "version": "v0.2.1",
  2139. "source": {
  2140. "type": "git",
  2141. "url": "https://github.com/GoogleCloudPlatform/grpc-gcp-php.git",
  2142. "reference": "899d0112812a812df7692617a59f4076f0d01719"
  2143. },
  2144. "dist": {
  2145. "type": "zip",
  2146. "url": "https://api.github.com/repos/GoogleCloudPlatform/grpc-gcp-php/zipball/899d0112812a812df7692617a59f4076f0d01719",
  2147. "reference": "899d0112812a812df7692617a59f4076f0d01719",
  2148. "shasum": ""
  2149. },
  2150. "require": {
  2151. "google/auth": "^1.3",
  2152. "google/protobuf": "^v3.3.0",
  2153. "grpc/grpc": "^v1.13.0",
  2154. "php": ">=5.5.0",
  2155. "psr/cache": "^1.0.1||^2.0.0||^3.0.0"
  2156. },
  2157. "require-dev": {
  2158. "google/cloud-spanner": "^1.7",
  2159. "phpunit/phpunit": "4.8.36"
  2160. },
  2161. "type": "library",
  2162. "autoload": {
  2163. "psr-4": {
  2164. "Grpc\\Gcp\\": "src/"
  2165. },
  2166. "classmap": [
  2167. "src/generated/"
  2168. ]
  2169. },
  2170. "notification-url": "https://packagist.org/downloads/",
  2171. "license": [
  2172. "Apache-2.0"
  2173. ],
  2174. "description": "gRPC GCP library for channel management",
  2175. "support": {
  2176. "issues": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/issues",
  2177. "source": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/tree/v0.2.1"
  2178. },
  2179. "time": "2022-10-11T15:54:47+00:00"
  2180. },
  2181. {
  2182. "name": "google/longrunning",
  2183. "version": "v0.2.6",
  2184. "source": {
  2185. "type": "git",
  2186. "url": "https://github.com/googleapis/php-longrunning.git",
  2187. "reference": "9689b4db54cf4cf8186118d9d59aa9ba35bb5842"
  2188. },
  2189. "dist": {
  2190. "type": "zip",
  2191. "url": "https://api.github.com/repos/googleapis/php-longrunning/zipball/9689b4db54cf4cf8186118d9d59aa9ba35bb5842",
  2192. "reference": "9689b4db54cf4cf8186118d9d59aa9ba35bb5842",
  2193. "shasum": ""
  2194. },
  2195. "require-dev": {
  2196. "google/gax": "^1.13.0",
  2197. "phpunit/phpunit": "^9.0"
  2198. },
  2199. "type": "library",
  2200. "extra": {
  2201. "component": {
  2202. "id": "longrunning",
  2203. "path": "LongRunning",
  2204. "entry": null,
  2205. "target": "googleapis/php-longrunning"
  2206. }
  2207. },
  2208. "autoload": {
  2209. "psr-4": {
  2210. "Google\\LongRunning\\": "src/LongRunning",
  2211. "Google\\ApiCore\\LongRunning\\": "src/ApiCore/LongRunning",
  2212. "GPBMetadata\\Google\\Longrunning\\": "metadata/Longrunning"
  2213. }
  2214. },
  2215. "notification-url": "https://packagist.org/downloads/",
  2216. "license": [
  2217. "Apache-2.0"
  2218. ],
  2219. "description": "Google LongRunning Client for PHP",
  2220. "support": {
  2221. "source": "https://github.com/googleapis/php-longrunning/tree/v0.2.6"
  2222. },
  2223. "time": "2023-04-21T14:12:59+00:00"
  2224. },
  2225. {
  2226. "name": "google/protobuf",
  2227. "version": "v3.24.3",
  2228. "source": {
  2229. "type": "git",
  2230. "url": "https://github.com/protocolbuffers/protobuf-php.git",
  2231. "reference": "2fc191fc5e137829081b8700086ac6ed7003b925"
  2232. },
  2233. "dist": {
  2234. "type": "zip",
  2235. "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/2fc191fc5e137829081b8700086ac6ed7003b925",
  2236. "reference": "2fc191fc5e137829081b8700086ac6ed7003b925",
  2237. "shasum": ""
  2238. },
  2239. "require": {
  2240. "php": ">=7.0.0"
  2241. },
  2242. "require-dev": {
  2243. "phpunit/phpunit": ">=5.0.0"
  2244. },
  2245. "suggest": {
  2246. "ext-bcmath": "Need to support JSON deserialization"
  2247. },
  2248. "type": "library",
  2249. "autoload": {
  2250. "psr-4": {
  2251. "Google\\Protobuf\\": "src/Google/Protobuf",
  2252. "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf"
  2253. }
  2254. },
  2255. "notification-url": "https://packagist.org/downloads/",
  2256. "license": [
  2257. "BSD-3-Clause"
  2258. ],
  2259. "description": "proto library for PHP",
  2260. "homepage": "https://developers.google.com/protocol-buffers/",
  2261. "keywords": [
  2262. "proto"
  2263. ],
  2264. "support": {
  2265. "source": "https://github.com/protocolbuffers/protobuf-php/tree/v3.24.3"
  2266. },
  2267. "time": "2023-09-07T15:39:13+00:00"
  2268. },
  2269. {
  2270. "name": "graham-campbell/result-type",
  2271. "version": "v1.1.1",
  2272. "source": {
  2273. "type": "git",
  2274. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2275. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
  2276. },
  2277. "dist": {
  2278. "type": "zip",
  2279. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  2280. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  2281. "shasum": ""
  2282. },
  2283. "require": {
  2284. "php": "^7.2.5 || ^8.0",
  2285. "phpoption/phpoption": "^1.9.1"
  2286. },
  2287. "require-dev": {
  2288. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  2289. },
  2290. "type": "library",
  2291. "autoload": {
  2292. "psr-4": {
  2293. "GrahamCampbell\\ResultType\\": "src/"
  2294. }
  2295. },
  2296. "notification-url": "https://packagist.org/downloads/",
  2297. "license": [
  2298. "MIT"
  2299. ],
  2300. "authors": [
  2301. {
  2302. "name": "Graham Campbell",
  2303. "email": "hello@gjcampbell.co.uk",
  2304. "homepage": "https://github.com/GrahamCampbell"
  2305. }
  2306. ],
  2307. "description": "An Implementation Of The Result Type",
  2308. "keywords": [
  2309. "Graham Campbell",
  2310. "GrahamCampbell",
  2311. "Result Type",
  2312. "Result-Type",
  2313. "result"
  2314. ],
  2315. "support": {
  2316. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2317. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1"
  2318. },
  2319. "funding": [
  2320. {
  2321. "url": "https://github.com/GrahamCampbell",
  2322. "type": "github"
  2323. },
  2324. {
  2325. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2326. "type": "tidelift"
  2327. }
  2328. ],
  2329. "time": "2023-02-25T20:23:15+00:00"
  2330. },
  2331. {
  2332. "name": "grpc/grpc",
  2333. "version": "1.57.0",
  2334. "source": {
  2335. "type": "git",
  2336. "url": "https://github.com/grpc/grpc-php.git",
  2337. "reference": "b610c42022ed3a22f831439cb93802f2a4502fdf"
  2338. },
  2339. "dist": {
  2340. "type": "zip",
  2341. "url": "https://api.github.com/repos/grpc/grpc-php/zipball/b610c42022ed3a22f831439cb93802f2a4502fdf",
  2342. "reference": "b610c42022ed3a22f831439cb93802f2a4502fdf",
  2343. "shasum": ""
  2344. },
  2345. "require": {
  2346. "php": ">=7.0.0"
  2347. },
  2348. "require-dev": {
  2349. "google/auth": "^v1.3.0"
  2350. },
  2351. "suggest": {
  2352. "ext-protobuf": "For better performance, install the protobuf C extension.",
  2353. "google/protobuf": "To get started using grpc quickly, install the native protobuf library."
  2354. },
  2355. "type": "library",
  2356. "autoload": {
  2357. "psr-4": {
  2358. "Grpc\\": "src/lib/"
  2359. }
  2360. },
  2361. "notification-url": "https://packagist.org/downloads/",
  2362. "license": [
  2363. "Apache-2.0"
  2364. ],
  2365. "description": "gRPC library for PHP",
  2366. "homepage": "https://grpc.io",
  2367. "keywords": [
  2368. "rpc"
  2369. ],
  2370. "support": {
  2371. "source": "https://github.com/grpc/grpc-php/tree/v1.57.0"
  2372. },
  2373. "time": "2023-08-14T23:57:54+00:00"
  2374. },
  2375. {
  2376. "name": "guzzlehttp/guzzle",
  2377. "version": "7.8.0",
  2378. "source": {
  2379. "type": "git",
  2380. "url": "https://github.com/guzzle/guzzle.git",
  2381. "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9"
  2382. },
  2383. "dist": {
  2384. "type": "zip",
  2385. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1110f66a6530a40fe7aea0378fe608ee2b2248f9",
  2386. "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9",
  2387. "shasum": ""
  2388. },
  2389. "require": {
  2390. "ext-json": "*",
  2391. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  2392. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  2393. "php": "^7.2.5 || ^8.0",
  2394. "psr/http-client": "^1.0",
  2395. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2396. },
  2397. "provide": {
  2398. "psr/http-client-implementation": "1.0"
  2399. },
  2400. "require-dev": {
  2401. "bamarni/composer-bin-plugin": "^1.8.1",
  2402. "ext-curl": "*",
  2403. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  2404. "php-http/message-factory": "^1.1",
  2405. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  2406. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2407. },
  2408. "suggest": {
  2409. "ext-curl": "Required for CURL handler support",
  2410. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2411. "psr/log": "Required for using the Log middleware"
  2412. },
  2413. "type": "library",
  2414. "extra": {
  2415. "bamarni-bin": {
  2416. "bin-links": true,
  2417. "forward-command": false
  2418. }
  2419. },
  2420. "autoload": {
  2421. "files": [
  2422. "src/functions_include.php"
  2423. ],
  2424. "psr-4": {
  2425. "GuzzleHttp\\": "src/"
  2426. }
  2427. },
  2428. "notification-url": "https://packagist.org/downloads/",
  2429. "license": [
  2430. "MIT"
  2431. ],
  2432. "authors": [
  2433. {
  2434. "name": "Graham Campbell",
  2435. "email": "hello@gjcampbell.co.uk",
  2436. "homepage": "https://github.com/GrahamCampbell"
  2437. },
  2438. {
  2439. "name": "Michael Dowling",
  2440. "email": "mtdowling@gmail.com",
  2441. "homepage": "https://github.com/mtdowling"
  2442. },
  2443. {
  2444. "name": "Jeremy Lindblom",
  2445. "email": "jeremeamia@gmail.com",
  2446. "homepage": "https://github.com/jeremeamia"
  2447. },
  2448. {
  2449. "name": "George Mponos",
  2450. "email": "gmponos@gmail.com",
  2451. "homepage": "https://github.com/gmponos"
  2452. },
  2453. {
  2454. "name": "Tobias Nyholm",
  2455. "email": "tobias.nyholm@gmail.com",
  2456. "homepage": "https://github.com/Nyholm"
  2457. },
  2458. {
  2459. "name": "Márk Sági-Kazár",
  2460. "email": "mark.sagikazar@gmail.com",
  2461. "homepage": "https://github.com/sagikazarmark"
  2462. },
  2463. {
  2464. "name": "Tobias Schultze",
  2465. "email": "webmaster@tubo-world.de",
  2466. "homepage": "https://github.com/Tobion"
  2467. }
  2468. ],
  2469. "description": "Guzzle is a PHP HTTP client library",
  2470. "keywords": [
  2471. "client",
  2472. "curl",
  2473. "framework",
  2474. "http",
  2475. "http client",
  2476. "psr-18",
  2477. "psr-7",
  2478. "rest",
  2479. "web service"
  2480. ],
  2481. "support": {
  2482. "issues": "https://github.com/guzzle/guzzle/issues",
  2483. "source": "https://github.com/guzzle/guzzle/tree/7.8.0"
  2484. },
  2485. "funding": [
  2486. {
  2487. "url": "https://github.com/GrahamCampbell",
  2488. "type": "github"
  2489. },
  2490. {
  2491. "url": "https://github.com/Nyholm",
  2492. "type": "github"
  2493. },
  2494. {
  2495. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2496. "type": "tidelift"
  2497. }
  2498. ],
  2499. "time": "2023-08-27T10:20:53+00:00"
  2500. },
  2501. {
  2502. "name": "guzzlehttp/promises",
  2503. "version": "1.5.3",
  2504. "source": {
  2505. "type": "git",
  2506. "url": "https://github.com/guzzle/promises.git",
  2507. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  2508. },
  2509. "dist": {
  2510. "type": "zip",
  2511. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  2512. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  2513. "shasum": ""
  2514. },
  2515. "require": {
  2516. "php": ">=5.5"
  2517. },
  2518. "require-dev": {
  2519. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  2520. },
  2521. "type": "library",
  2522. "autoload": {
  2523. "files": [
  2524. "src/functions_include.php"
  2525. ],
  2526. "psr-4": {
  2527. "GuzzleHttp\\Promise\\": "src/"
  2528. }
  2529. },
  2530. "notification-url": "https://packagist.org/downloads/",
  2531. "license": [
  2532. "MIT"
  2533. ],
  2534. "authors": [
  2535. {
  2536. "name": "Graham Campbell",
  2537. "email": "hello@gjcampbell.co.uk",
  2538. "homepage": "https://github.com/GrahamCampbell"
  2539. },
  2540. {
  2541. "name": "Michael Dowling",
  2542. "email": "mtdowling@gmail.com",
  2543. "homepage": "https://github.com/mtdowling"
  2544. },
  2545. {
  2546. "name": "Tobias Nyholm",
  2547. "email": "tobias.nyholm@gmail.com",
  2548. "homepage": "https://github.com/Nyholm"
  2549. },
  2550. {
  2551. "name": "Tobias Schultze",
  2552. "email": "webmaster@tubo-world.de",
  2553. "homepage": "https://github.com/Tobion"
  2554. }
  2555. ],
  2556. "description": "Guzzle promises library",
  2557. "keywords": [
  2558. "promise"
  2559. ],
  2560. "support": {
  2561. "issues": "https://github.com/guzzle/promises/issues",
  2562. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  2563. },
  2564. "funding": [
  2565. {
  2566. "url": "https://github.com/GrahamCampbell",
  2567. "type": "github"
  2568. },
  2569. {
  2570. "url": "https://github.com/Nyholm",
  2571. "type": "github"
  2572. },
  2573. {
  2574. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2575. "type": "tidelift"
  2576. }
  2577. ],
  2578. "time": "2023-05-21T12:31:43+00:00"
  2579. },
  2580. {
  2581. "name": "guzzlehttp/psr7",
  2582. "version": "2.6.1",
  2583. "source": {
  2584. "type": "git",
  2585. "url": "https://github.com/guzzle/psr7.git",
  2586. "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727"
  2587. },
  2588. "dist": {
  2589. "type": "zip",
  2590. "url": "https://api.github.com/repos/guzzle/psr7/zipball/be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
  2591. "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
  2592. "shasum": ""
  2593. },
  2594. "require": {
  2595. "php": "^7.2.5 || ^8.0",
  2596. "psr/http-factory": "^1.0",
  2597. "psr/http-message": "^1.1 || ^2.0",
  2598. "ralouphie/getallheaders": "^3.0"
  2599. },
  2600. "provide": {
  2601. "psr/http-factory-implementation": "1.0",
  2602. "psr/http-message-implementation": "1.0"
  2603. },
  2604. "require-dev": {
  2605. "bamarni/composer-bin-plugin": "^1.8.1",
  2606. "http-interop/http-factory-tests": "^0.9",
  2607. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  2608. },
  2609. "suggest": {
  2610. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2611. },
  2612. "type": "library",
  2613. "extra": {
  2614. "bamarni-bin": {
  2615. "bin-links": true,
  2616. "forward-command": false
  2617. }
  2618. },
  2619. "autoload": {
  2620. "psr-4": {
  2621. "GuzzleHttp\\Psr7\\": "src/"
  2622. }
  2623. },
  2624. "notification-url": "https://packagist.org/downloads/",
  2625. "license": [
  2626. "MIT"
  2627. ],
  2628. "authors": [
  2629. {
  2630. "name": "Graham Campbell",
  2631. "email": "hello@gjcampbell.co.uk",
  2632. "homepage": "https://github.com/GrahamCampbell"
  2633. },
  2634. {
  2635. "name": "Michael Dowling",
  2636. "email": "mtdowling@gmail.com",
  2637. "homepage": "https://github.com/mtdowling"
  2638. },
  2639. {
  2640. "name": "George Mponos",
  2641. "email": "gmponos@gmail.com",
  2642. "homepage": "https://github.com/gmponos"
  2643. },
  2644. {
  2645. "name": "Tobias Nyholm",
  2646. "email": "tobias.nyholm@gmail.com",
  2647. "homepage": "https://github.com/Nyholm"
  2648. },
  2649. {
  2650. "name": "Márk Sági-Kazár",
  2651. "email": "mark.sagikazar@gmail.com",
  2652. "homepage": "https://github.com/sagikazarmark"
  2653. },
  2654. {
  2655. "name": "Tobias Schultze",
  2656. "email": "webmaster@tubo-world.de",
  2657. "homepage": "https://github.com/Tobion"
  2658. },
  2659. {
  2660. "name": "Márk Sági-Kazár",
  2661. "email": "mark.sagikazar@gmail.com",
  2662. "homepage": "https://sagikazarmark.hu"
  2663. }
  2664. ],
  2665. "description": "PSR-7 message implementation that also provides common utility methods",
  2666. "keywords": [
  2667. "http",
  2668. "message",
  2669. "psr-7",
  2670. "request",
  2671. "response",
  2672. "stream",
  2673. "uri",
  2674. "url"
  2675. ],
  2676. "support": {
  2677. "issues": "https://github.com/guzzle/psr7/issues",
  2678. "source": "https://github.com/guzzle/psr7/tree/2.6.1"
  2679. },
  2680. "funding": [
  2681. {
  2682. "url": "https://github.com/GrahamCampbell",
  2683. "type": "github"
  2684. },
  2685. {
  2686. "url": "https://github.com/Nyholm",
  2687. "type": "github"
  2688. },
  2689. {
  2690. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2691. "type": "tidelift"
  2692. }
  2693. ],
  2694. "time": "2023-08-27T10:13:57+00:00"
  2695. },
  2696. {
  2697. "name": "intervention/image",
  2698. "version": "2.7.2",
  2699. "source": {
  2700. "type": "git",
  2701. "url": "https://github.com/Intervention/image.git",
  2702. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  2703. },
  2704. "dist": {
  2705. "type": "zip",
  2706. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  2707. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  2708. "shasum": ""
  2709. },
  2710. "require": {
  2711. "ext-fileinfo": "*",
  2712. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2713. "php": ">=5.4.0"
  2714. },
  2715. "require-dev": {
  2716. "mockery/mockery": "~0.9.2",
  2717. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2718. },
  2719. "suggest": {
  2720. "ext-gd": "to use GD library based image processing.",
  2721. "ext-imagick": "to use Imagick based image processing.",
  2722. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2723. },
  2724. "type": "library",
  2725. "extra": {
  2726. "branch-alias": {
  2727. "dev-master": "2.4-dev"
  2728. },
  2729. "laravel": {
  2730. "providers": [
  2731. "Intervention\\Image\\ImageServiceProvider"
  2732. ],
  2733. "aliases": {
  2734. "Image": "Intervention\\Image\\Facades\\Image"
  2735. }
  2736. }
  2737. },
  2738. "autoload": {
  2739. "psr-4": {
  2740. "Intervention\\Image\\": "src/Intervention/Image"
  2741. }
  2742. },
  2743. "notification-url": "https://packagist.org/downloads/",
  2744. "license": [
  2745. "MIT"
  2746. ],
  2747. "authors": [
  2748. {
  2749. "name": "Oliver Vogel",
  2750. "email": "oliver@intervention.io",
  2751. "homepage": "https://intervention.io/"
  2752. }
  2753. ],
  2754. "description": "Image handling and manipulation library with support for Laravel integration",
  2755. "homepage": "http://image.intervention.io/",
  2756. "keywords": [
  2757. "gd",
  2758. "image",
  2759. "imagick",
  2760. "laravel",
  2761. "thumbnail",
  2762. "watermark"
  2763. ],
  2764. "support": {
  2765. "issues": "https://github.com/Intervention/image/issues",
  2766. "source": "https://github.com/Intervention/image/tree/2.7.2"
  2767. },
  2768. "funding": [
  2769. {
  2770. "url": "https://paypal.me/interventionio",
  2771. "type": "custom"
  2772. },
  2773. {
  2774. "url": "https://github.com/Intervention",
  2775. "type": "github"
  2776. }
  2777. ],
  2778. "time": "2022-05-21T17:30:32+00:00"
  2779. },
  2780. {
  2781. "name": "jaybizzle/crawler-detect",
  2782. "version": "v1.2.116",
  2783. "source": {
  2784. "type": "git",
  2785. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  2786. "reference": "97e9fe30219e60092e107651abb379a38b342921"
  2787. },
  2788. "dist": {
  2789. "type": "zip",
  2790. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/97e9fe30219e60092e107651abb379a38b342921",
  2791. "reference": "97e9fe30219e60092e107651abb379a38b342921",
  2792. "shasum": ""
  2793. },
  2794. "require": {
  2795. "php": ">=5.3.0"
  2796. },
  2797. "require-dev": {
  2798. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  2799. },
  2800. "type": "library",
  2801. "autoload": {
  2802. "psr-4": {
  2803. "Jaybizzle\\CrawlerDetect\\": "src/"
  2804. }
  2805. },
  2806. "notification-url": "https://packagist.org/downloads/",
  2807. "license": [
  2808. "MIT"
  2809. ],
  2810. "authors": [
  2811. {
  2812. "name": "Mark Beech",
  2813. "email": "m@rkbee.ch",
  2814. "role": "Developer"
  2815. }
  2816. ],
  2817. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  2818. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  2819. "keywords": [
  2820. "crawler",
  2821. "crawler detect",
  2822. "crawler detector",
  2823. "crawlerdetect",
  2824. "php crawler detect"
  2825. ],
  2826. "support": {
  2827. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  2828. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.116"
  2829. },
  2830. "time": "2023-07-21T15:49:49+00:00"
  2831. },
  2832. {
  2833. "name": "jenssegers/agent",
  2834. "version": "v2.6.4",
  2835. "source": {
  2836. "type": "git",
  2837. "url": "https://github.com/jenssegers/agent.git",
  2838. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  2839. },
  2840. "dist": {
  2841. "type": "zip",
  2842. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  2843. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  2844. "shasum": ""
  2845. },
  2846. "require": {
  2847. "jaybizzle/crawler-detect": "^1.2",
  2848. "mobiledetect/mobiledetectlib": "^2.7.6",
  2849. "php": ">=5.6"
  2850. },
  2851. "require-dev": {
  2852. "php-coveralls/php-coveralls": "^2.1",
  2853. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  2854. },
  2855. "suggest": {
  2856. "illuminate/support": "Required for laravel service providers"
  2857. },
  2858. "type": "library",
  2859. "extra": {
  2860. "branch-alias": {
  2861. "dev-master": "3.0-dev"
  2862. },
  2863. "laravel": {
  2864. "providers": [
  2865. "Jenssegers\\Agent\\AgentServiceProvider"
  2866. ],
  2867. "aliases": {
  2868. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  2869. }
  2870. }
  2871. },
  2872. "autoload": {
  2873. "psr-4": {
  2874. "Jenssegers\\Agent\\": "src/"
  2875. }
  2876. },
  2877. "notification-url": "https://packagist.org/downloads/",
  2878. "license": [
  2879. "MIT"
  2880. ],
  2881. "authors": [
  2882. {
  2883. "name": "Jens Segers",
  2884. "homepage": "https://jenssegers.com"
  2885. }
  2886. ],
  2887. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  2888. "homepage": "https://github.com/jenssegers/agent",
  2889. "keywords": [
  2890. "Agent",
  2891. "browser",
  2892. "desktop",
  2893. "laravel",
  2894. "mobile",
  2895. "platform",
  2896. "user agent",
  2897. "useragent"
  2898. ],
  2899. "support": {
  2900. "issues": "https://github.com/jenssegers/agent/issues",
  2901. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  2902. },
  2903. "funding": [
  2904. {
  2905. "url": "https://github.com/jenssegers",
  2906. "type": "github"
  2907. },
  2908. {
  2909. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  2910. "type": "tidelift"
  2911. }
  2912. ],
  2913. "time": "2020-06-13T08:05:20+00:00"
  2914. },
  2915. {
  2916. "name": "laravel/framework",
  2917. "version": "v8.83.27",
  2918. "source": {
  2919. "type": "git",
  2920. "url": "https://github.com/laravel/framework.git",
  2921. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  2922. },
  2923. "dist": {
  2924. "type": "zip",
  2925. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2926. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2927. "shasum": ""
  2928. },
  2929. "require": {
  2930. "doctrine/inflector": "^1.4|^2.0",
  2931. "dragonmantank/cron-expression": "^3.0.2",
  2932. "egulias/email-validator": "^2.1.10",
  2933. "ext-json": "*",
  2934. "ext-mbstring": "*",
  2935. "ext-openssl": "*",
  2936. "laravel/serializable-closure": "^1.0",
  2937. "league/commonmark": "^1.3|^2.0.2",
  2938. "league/flysystem": "^1.1",
  2939. "monolog/monolog": "^2.0",
  2940. "nesbot/carbon": "^2.53.1",
  2941. "opis/closure": "^3.6",
  2942. "php": "^7.3|^8.0",
  2943. "psr/container": "^1.0",
  2944. "psr/log": "^1.0|^2.0",
  2945. "psr/simple-cache": "^1.0",
  2946. "ramsey/uuid": "^4.2.2",
  2947. "swiftmailer/swiftmailer": "^6.3",
  2948. "symfony/console": "^5.4",
  2949. "symfony/error-handler": "^5.4",
  2950. "symfony/finder": "^5.4",
  2951. "symfony/http-foundation": "^5.4",
  2952. "symfony/http-kernel": "^5.4",
  2953. "symfony/mime": "^5.4",
  2954. "symfony/process": "^5.4",
  2955. "symfony/routing": "^5.4",
  2956. "symfony/var-dumper": "^5.4",
  2957. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2958. "vlucas/phpdotenv": "^5.4.1",
  2959. "voku/portable-ascii": "^1.6.1"
  2960. },
  2961. "conflict": {
  2962. "tightenco/collect": "<5.5.33"
  2963. },
  2964. "provide": {
  2965. "psr/container-implementation": "1.0",
  2966. "psr/simple-cache-implementation": "1.0"
  2967. },
  2968. "replace": {
  2969. "illuminate/auth": "self.version",
  2970. "illuminate/broadcasting": "self.version",
  2971. "illuminate/bus": "self.version",
  2972. "illuminate/cache": "self.version",
  2973. "illuminate/collections": "self.version",
  2974. "illuminate/config": "self.version",
  2975. "illuminate/console": "self.version",
  2976. "illuminate/container": "self.version",
  2977. "illuminate/contracts": "self.version",
  2978. "illuminate/cookie": "self.version",
  2979. "illuminate/database": "self.version",
  2980. "illuminate/encryption": "self.version",
  2981. "illuminate/events": "self.version",
  2982. "illuminate/filesystem": "self.version",
  2983. "illuminate/hashing": "self.version",
  2984. "illuminate/http": "self.version",
  2985. "illuminate/log": "self.version",
  2986. "illuminate/macroable": "self.version",
  2987. "illuminate/mail": "self.version",
  2988. "illuminate/notifications": "self.version",
  2989. "illuminate/pagination": "self.version",
  2990. "illuminate/pipeline": "self.version",
  2991. "illuminate/queue": "self.version",
  2992. "illuminate/redis": "self.version",
  2993. "illuminate/routing": "self.version",
  2994. "illuminate/session": "self.version",
  2995. "illuminate/support": "self.version",
  2996. "illuminate/testing": "self.version",
  2997. "illuminate/translation": "self.version",
  2998. "illuminate/validation": "self.version",
  2999. "illuminate/view": "self.version"
  3000. },
  3001. "require-dev": {
  3002. "aws/aws-sdk-php": "^3.198.1",
  3003. "doctrine/dbal": "^2.13.3|^3.1.4",
  3004. "filp/whoops": "^2.14.3",
  3005. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  3006. "league/flysystem-cached-adapter": "^1.0",
  3007. "mockery/mockery": "^1.4.4",
  3008. "orchestra/testbench-core": "^6.27",
  3009. "pda/pheanstalk": "^4.0",
  3010. "phpunit/phpunit": "^8.5.19|^9.5.8",
  3011. "predis/predis": "^1.1.9",
  3012. "symfony/cache": "^5.4"
  3013. },
  3014. "suggest": {
  3015. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3016. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  3017. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  3018. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  3019. "ext-bcmath": "Required to use the multiple_of validation rule.",
  3020. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3021. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3022. "ext-memcached": "Required to use the memcache cache driver.",
  3023. "ext-pcntl": "Required to use all features of the queue worker.",
  3024. "ext-posix": "Required to use all features of the queue worker.",
  3025. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  3026. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3027. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3028. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  3029. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3030. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  3031. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  3032. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  3033. "mockery/mockery": "Required to use mocking (^1.4.4).",
  3034. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3035. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  3036. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  3037. "predis/predis": "Required to use the predis connector (^1.1.9).",
  3038. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3039. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  3040. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  3041. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  3042. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  3043. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  3044. },
  3045. "type": "library",
  3046. "extra": {
  3047. "branch-alias": {
  3048. "dev-master": "8.x-dev"
  3049. }
  3050. },
  3051. "autoload": {
  3052. "files": [
  3053. "src/Illuminate/Collections/helpers.php",
  3054. "src/Illuminate/Events/functions.php",
  3055. "src/Illuminate/Foundation/helpers.php",
  3056. "src/Illuminate/Support/helpers.php"
  3057. ],
  3058. "psr-4": {
  3059. "Illuminate\\": "src/Illuminate/",
  3060. "Illuminate\\Support\\": [
  3061. "src/Illuminate/Macroable/",
  3062. "src/Illuminate/Collections/"
  3063. ]
  3064. }
  3065. },
  3066. "notification-url": "https://packagist.org/downloads/",
  3067. "license": [
  3068. "MIT"
  3069. ],
  3070. "authors": [
  3071. {
  3072. "name": "Taylor Otwell",
  3073. "email": "taylor@laravel.com"
  3074. }
  3075. ],
  3076. "description": "The Laravel Framework.",
  3077. "homepage": "https://laravel.com",
  3078. "keywords": [
  3079. "framework",
  3080. "laravel"
  3081. ],
  3082. "support": {
  3083. "issues": "https://github.com/laravel/framework/issues",
  3084. "source": "https://github.com/laravel/framework"
  3085. },
  3086. "time": "2022-12-08T15:28:55+00:00"
  3087. },
  3088. {
  3089. "name": "laravel/serializable-closure",
  3090. "version": "v1.3.1",
  3091. "source": {
  3092. "type": "git",
  3093. "url": "https://github.com/laravel/serializable-closure.git",
  3094. "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902"
  3095. },
  3096. "dist": {
  3097. "type": "zip",
  3098. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/e5a3057a5591e1cfe8183034b0203921abe2c902",
  3099. "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902",
  3100. "shasum": ""
  3101. },
  3102. "require": {
  3103. "php": "^7.3|^8.0"
  3104. },
  3105. "require-dev": {
  3106. "nesbot/carbon": "^2.61",
  3107. "pestphp/pest": "^1.21.3",
  3108. "phpstan/phpstan": "^1.8.2",
  3109. "symfony/var-dumper": "^5.4.11"
  3110. },
  3111. "type": "library",
  3112. "extra": {
  3113. "branch-alias": {
  3114. "dev-master": "1.x-dev"
  3115. }
  3116. },
  3117. "autoload": {
  3118. "psr-4": {
  3119. "Laravel\\SerializableClosure\\": "src/"
  3120. }
  3121. },
  3122. "notification-url": "https://packagist.org/downloads/",
  3123. "license": [
  3124. "MIT"
  3125. ],
  3126. "authors": [
  3127. {
  3128. "name": "Taylor Otwell",
  3129. "email": "taylor@laravel.com"
  3130. },
  3131. {
  3132. "name": "Nuno Maduro",
  3133. "email": "nuno@laravel.com"
  3134. }
  3135. ],
  3136. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3137. "keywords": [
  3138. "closure",
  3139. "laravel",
  3140. "serializable"
  3141. ],
  3142. "support": {
  3143. "issues": "https://github.com/laravel/serializable-closure/issues",
  3144. "source": "https://github.com/laravel/serializable-closure"
  3145. },
  3146. "time": "2023-07-14T13:56:28+00:00"
  3147. },
  3148. {
  3149. "name": "laravel/socialite",
  3150. "version": "v5.9.0",
  3151. "source": {
  3152. "type": "git",
  3153. "url": "https://github.com/laravel/socialite.git",
  3154. "reference": "14acfa3262875f180fba51efe3c7aaa089a9ef24"
  3155. },
  3156. "dist": {
  3157. "type": "zip",
  3158. "url": "https://api.github.com/repos/laravel/socialite/zipball/14acfa3262875f180fba51efe3c7aaa089a9ef24",
  3159. "reference": "14acfa3262875f180fba51efe3c7aaa089a9ef24",
  3160. "shasum": ""
  3161. },
  3162. "require": {
  3163. "ext-json": "*",
  3164. "guzzlehttp/guzzle": "^6.0|^7.0",
  3165. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  3166. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
  3167. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  3168. "league/oauth1-client": "^1.10.1",
  3169. "php": "^7.2|^8.0"
  3170. },
  3171. "require-dev": {
  3172. "mockery/mockery": "^1.0",
  3173. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
  3174. "phpstan/phpstan": "^1.10",
  3175. "phpunit/phpunit": "^8.0|^9.3"
  3176. },
  3177. "type": "library",
  3178. "extra": {
  3179. "branch-alias": {
  3180. "dev-master": "5.x-dev"
  3181. },
  3182. "laravel": {
  3183. "providers": [
  3184. "Laravel\\Socialite\\SocialiteServiceProvider"
  3185. ],
  3186. "aliases": {
  3187. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3188. }
  3189. }
  3190. },
  3191. "autoload": {
  3192. "psr-4": {
  3193. "Laravel\\Socialite\\": "src/"
  3194. }
  3195. },
  3196. "notification-url": "https://packagist.org/downloads/",
  3197. "license": [
  3198. "MIT"
  3199. ],
  3200. "authors": [
  3201. {
  3202. "name": "Taylor Otwell",
  3203. "email": "taylor@laravel.com"
  3204. }
  3205. ],
  3206. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3207. "homepage": "https://laravel.com",
  3208. "keywords": [
  3209. "laravel",
  3210. "oauth"
  3211. ],
  3212. "support": {
  3213. "issues": "https://github.com/laravel/socialite/issues",
  3214. "source": "https://github.com/laravel/socialite"
  3215. },
  3216. "time": "2023-09-05T15:20:21+00:00"
  3217. },
  3218. {
  3219. "name": "laravel/tinker",
  3220. "version": "v2.8.2",
  3221. "source": {
  3222. "type": "git",
  3223. "url": "https://github.com/laravel/tinker.git",
  3224. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3"
  3225. },
  3226. "dist": {
  3227. "type": "zip",
  3228. "url": "https://api.github.com/repos/laravel/tinker/zipball/b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  3229. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  3230. "shasum": ""
  3231. },
  3232. "require": {
  3233. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  3234. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  3235. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  3236. "php": "^7.2.5|^8.0",
  3237. "psy/psysh": "^0.10.4|^0.11.1",
  3238. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  3239. },
  3240. "require-dev": {
  3241. "mockery/mockery": "~1.3.3|^1.4.2",
  3242. "phpstan/phpstan": "^1.10",
  3243. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3244. },
  3245. "suggest": {
  3246. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  3247. },
  3248. "type": "library",
  3249. "extra": {
  3250. "branch-alias": {
  3251. "dev-master": "2.x-dev"
  3252. },
  3253. "laravel": {
  3254. "providers": [
  3255. "Laravel\\Tinker\\TinkerServiceProvider"
  3256. ]
  3257. }
  3258. },
  3259. "autoload": {
  3260. "psr-4": {
  3261. "Laravel\\Tinker\\": "src/"
  3262. }
  3263. },
  3264. "notification-url": "https://packagist.org/downloads/",
  3265. "license": [
  3266. "MIT"
  3267. ],
  3268. "authors": [
  3269. {
  3270. "name": "Taylor Otwell",
  3271. "email": "taylor@laravel.com"
  3272. }
  3273. ],
  3274. "description": "Powerful REPL for the Laravel framework.",
  3275. "keywords": [
  3276. "REPL",
  3277. "Tinker",
  3278. "laravel",
  3279. "psysh"
  3280. ],
  3281. "support": {
  3282. "issues": "https://github.com/laravel/tinker/issues",
  3283. "source": "https://github.com/laravel/tinker/tree/v2.8.2"
  3284. },
  3285. "time": "2023-08-15T14:27:00+00:00"
  3286. },
  3287. {
  3288. "name": "laravel/ui",
  3289. "version": "v3.4.6",
  3290. "source": {
  3291. "type": "git",
  3292. "url": "https://github.com/laravel/ui.git",
  3293. "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c"
  3294. },
  3295. "dist": {
  3296. "type": "zip",
  3297. "url": "https://api.github.com/repos/laravel/ui/zipball/65ec5c03f7fee2c8ecae785795b829a15be48c2c",
  3298. "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c",
  3299. "shasum": ""
  3300. },
  3301. "require": {
  3302. "illuminate/console": "^8.42|^9.0",
  3303. "illuminate/filesystem": "^8.42|^9.0",
  3304. "illuminate/support": "^8.82|^9.0",
  3305. "illuminate/validation": "^8.42|^9.0",
  3306. "php": "^7.3|^8.0"
  3307. },
  3308. "require-dev": {
  3309. "orchestra/testbench": "^6.23|^7.0"
  3310. },
  3311. "type": "library",
  3312. "extra": {
  3313. "branch-alias": {
  3314. "dev-master": "3.x-dev"
  3315. },
  3316. "laravel": {
  3317. "providers": [
  3318. "Laravel\\Ui\\UiServiceProvider"
  3319. ]
  3320. }
  3321. },
  3322. "autoload": {
  3323. "psr-4": {
  3324. "Laravel\\Ui\\": "src/",
  3325. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  3326. }
  3327. },
  3328. "notification-url": "https://packagist.org/downloads/",
  3329. "license": [
  3330. "MIT"
  3331. ],
  3332. "authors": [
  3333. {
  3334. "name": "Taylor Otwell",
  3335. "email": "taylor@laravel.com"
  3336. }
  3337. ],
  3338. "description": "Laravel UI utilities and presets.",
  3339. "keywords": [
  3340. "laravel",
  3341. "ui"
  3342. ],
  3343. "support": {
  3344. "source": "https://github.com/laravel/ui/tree/v3.4.6"
  3345. },
  3346. "time": "2022-05-20T13:38:08+00:00"
  3347. },
  3348. {
  3349. "name": "lcobucci/jwt",
  3350. "version": "3.4.6",
  3351. "source": {
  3352. "type": "git",
  3353. "url": "https://github.com/lcobucci/jwt.git",
  3354. "reference": "3ef8657a78278dfeae7707d51747251db4176240"
  3355. },
  3356. "dist": {
  3357. "type": "zip",
  3358. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/3ef8657a78278dfeae7707d51747251db4176240",
  3359. "reference": "3ef8657a78278dfeae7707d51747251db4176240",
  3360. "shasum": ""
  3361. },
  3362. "require": {
  3363. "ext-mbstring": "*",
  3364. "ext-openssl": "*",
  3365. "php": "^5.6 || ^7.0"
  3366. },
  3367. "require-dev": {
  3368. "mikey179/vfsstream": "~1.5",
  3369. "phpmd/phpmd": "~2.2",
  3370. "phpunit/php-invoker": "~1.1",
  3371. "phpunit/phpunit": "^5.7 || ^7.3",
  3372. "squizlabs/php_codesniffer": "~2.3"
  3373. },
  3374. "suggest": {
  3375. "lcobucci/clock": "*"
  3376. },
  3377. "type": "library",
  3378. "extra": {
  3379. "branch-alias": {
  3380. "dev-master": "3.1-dev"
  3381. }
  3382. },
  3383. "autoload": {
  3384. "files": [
  3385. "compat/class-aliases.php",
  3386. "compat/json-exception-polyfill.php",
  3387. "compat/lcobucci-clock-polyfill.php"
  3388. ],
  3389. "psr-4": {
  3390. "Lcobucci\\JWT\\": "src"
  3391. }
  3392. },
  3393. "notification-url": "https://packagist.org/downloads/",
  3394. "license": [
  3395. "BSD-3-Clause"
  3396. ],
  3397. "authors": [
  3398. {
  3399. "name": "Luís Otávio Cobucci Oblonczyk",
  3400. "email": "lcobucci@gmail.com",
  3401. "role": "Developer"
  3402. }
  3403. ],
  3404. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3405. "keywords": [
  3406. "JWS",
  3407. "jwt"
  3408. ],
  3409. "support": {
  3410. "issues": "https://github.com/lcobucci/jwt/issues",
  3411. "source": "https://github.com/lcobucci/jwt/tree/3.4.6"
  3412. },
  3413. "funding": [
  3414. {
  3415. "url": "https://github.com/lcobucci",
  3416. "type": "github"
  3417. },
  3418. {
  3419. "url": "https://www.patreon.com/lcobucci",
  3420. "type": "patreon"
  3421. }
  3422. ],
  3423. "time": "2021-09-28T19:18:28+00:00"
  3424. },
  3425. {
  3426. "name": "league/commonmark",
  3427. "version": "1.6.7",
  3428. "source": {
  3429. "type": "git",
  3430. "url": "https://github.com/thephpleague/commonmark.git",
  3431. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b"
  3432. },
  3433. "dist": {
  3434. "type": "zip",
  3435. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  3436. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  3437. "shasum": ""
  3438. },
  3439. "require": {
  3440. "ext-mbstring": "*",
  3441. "php": "^7.1 || ^8.0"
  3442. },
  3443. "conflict": {
  3444. "scrutinizer/ocular": "1.7.*"
  3445. },
  3446. "require-dev": {
  3447. "cebe/markdown": "~1.0",
  3448. "commonmark/commonmark.js": "0.29.2",
  3449. "erusev/parsedown": "~1.0",
  3450. "ext-json": "*",
  3451. "github/gfm": "0.29.0",
  3452. "michelf/php-markdown": "~1.4",
  3453. "mikehaertl/php-shellcommand": "^1.4",
  3454. "phpstan/phpstan": "^0.12.90",
  3455. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  3456. "scrutinizer/ocular": "^1.5",
  3457. "symfony/finder": "^4.2"
  3458. },
  3459. "bin": [
  3460. "bin/commonmark"
  3461. ],
  3462. "type": "library",
  3463. "autoload": {
  3464. "psr-4": {
  3465. "League\\CommonMark\\": "src"
  3466. }
  3467. },
  3468. "notification-url": "https://packagist.org/downloads/",
  3469. "license": [
  3470. "BSD-3-Clause"
  3471. ],
  3472. "authors": [
  3473. {
  3474. "name": "Colin O'Dell",
  3475. "email": "colinodell@gmail.com",
  3476. "homepage": "https://www.colinodell.com",
  3477. "role": "Lead Developer"
  3478. }
  3479. ],
  3480. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  3481. "homepage": "https://commonmark.thephpleague.com",
  3482. "keywords": [
  3483. "commonmark",
  3484. "flavored",
  3485. "gfm",
  3486. "github",
  3487. "github-flavored",
  3488. "markdown",
  3489. "md",
  3490. "parser"
  3491. ],
  3492. "support": {
  3493. "docs": "https://commonmark.thephpleague.com/",
  3494. "issues": "https://github.com/thephpleague/commonmark/issues",
  3495. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3496. "source": "https://github.com/thephpleague/commonmark"
  3497. },
  3498. "funding": [
  3499. {
  3500. "url": "https://www.colinodell.com/sponsor",
  3501. "type": "custom"
  3502. },
  3503. {
  3504. "url": "https://www.paypal.me/colinpodell/10.00",
  3505. "type": "custom"
  3506. },
  3507. {
  3508. "url": "https://github.com/colinodell",
  3509. "type": "github"
  3510. },
  3511. {
  3512. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3513. "type": "tidelift"
  3514. }
  3515. ],
  3516. "time": "2022-01-13T17:18:13+00:00"
  3517. },
  3518. {
  3519. "name": "league/flysystem",
  3520. "version": "1.1.10",
  3521. "source": {
  3522. "type": "git",
  3523. "url": "https://github.com/thephpleague/flysystem.git",
  3524. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  3525. },
  3526. "dist": {
  3527. "type": "zip",
  3528. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  3529. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  3530. "shasum": ""
  3531. },
  3532. "require": {
  3533. "ext-fileinfo": "*",
  3534. "league/mime-type-detection": "^1.3",
  3535. "php": "^7.2.5 || ^8.0"
  3536. },
  3537. "conflict": {
  3538. "league/flysystem-sftp": "<1.0.6"
  3539. },
  3540. "require-dev": {
  3541. "phpspec/prophecy": "^1.11.1",
  3542. "phpunit/phpunit": "^8.5.8"
  3543. },
  3544. "suggest": {
  3545. "ext-ftp": "Allows you to use FTP server storage",
  3546. "ext-openssl": "Allows you to use FTPS server storage",
  3547. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3548. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3549. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3550. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3551. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3552. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3553. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3554. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3555. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3556. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3557. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3558. },
  3559. "type": "library",
  3560. "extra": {
  3561. "branch-alias": {
  3562. "dev-master": "1.1-dev"
  3563. }
  3564. },
  3565. "autoload": {
  3566. "psr-4": {
  3567. "League\\Flysystem\\": "src/"
  3568. }
  3569. },
  3570. "notification-url": "https://packagist.org/downloads/",
  3571. "license": [
  3572. "MIT"
  3573. ],
  3574. "authors": [
  3575. {
  3576. "name": "Frank de Jonge",
  3577. "email": "info@frenky.net"
  3578. }
  3579. ],
  3580. "description": "Filesystem abstraction: Many filesystems, one API.",
  3581. "keywords": [
  3582. "Cloud Files",
  3583. "WebDAV",
  3584. "abstraction",
  3585. "aws",
  3586. "cloud",
  3587. "copy.com",
  3588. "dropbox",
  3589. "file systems",
  3590. "files",
  3591. "filesystem",
  3592. "filesystems",
  3593. "ftp",
  3594. "rackspace",
  3595. "remote",
  3596. "s3",
  3597. "sftp",
  3598. "storage"
  3599. ],
  3600. "support": {
  3601. "issues": "https://github.com/thephpleague/flysystem/issues",
  3602. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  3603. },
  3604. "funding": [
  3605. {
  3606. "url": "https://offset.earth/frankdejonge",
  3607. "type": "other"
  3608. }
  3609. ],
  3610. "time": "2022-10-04T09:16:37+00:00"
  3611. },
  3612. {
  3613. "name": "league/flysystem-aws-s3-v3",
  3614. "version": "1.0.30",
  3615. "source": {
  3616. "type": "git",
  3617. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  3618. "reference": "af286f291ebab6877bac0c359c6c2cb017eb061d"
  3619. },
  3620. "dist": {
  3621. "type": "zip",
  3622. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/af286f291ebab6877bac0c359c6c2cb017eb061d",
  3623. "reference": "af286f291ebab6877bac0c359c6c2cb017eb061d",
  3624. "shasum": ""
  3625. },
  3626. "require": {
  3627. "aws/aws-sdk-php": "^3.20.0",
  3628. "league/flysystem": "^1.0.40",
  3629. "php": ">=5.5.0"
  3630. },
  3631. "require-dev": {
  3632. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  3633. "phpspec/phpspec": "^2.0.0"
  3634. },
  3635. "type": "library",
  3636. "extra": {
  3637. "branch-alias": {
  3638. "dev-master": "1.0-dev"
  3639. }
  3640. },
  3641. "autoload": {
  3642. "psr-4": {
  3643. "League\\Flysystem\\AwsS3v3\\": "src/"
  3644. }
  3645. },
  3646. "notification-url": "https://packagist.org/downloads/",
  3647. "license": [
  3648. "MIT"
  3649. ],
  3650. "authors": [
  3651. {
  3652. "name": "Frank de Jonge",
  3653. "email": "info@frenky.net"
  3654. }
  3655. ],
  3656. "description": "Flysystem adapter for the AWS S3 SDK v3.x",
  3657. "support": {
  3658. "issues": "https://github.com/thephpleague/flysystem-aws-s3-v3/issues",
  3659. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/1.0.30"
  3660. },
  3661. "funding": [
  3662. {
  3663. "url": "https://offset.earth/frankdejonge",
  3664. "type": "custom"
  3665. },
  3666. {
  3667. "url": "https://github.com/frankdejonge",
  3668. "type": "github"
  3669. },
  3670. {
  3671. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3672. "type": "tidelift"
  3673. }
  3674. ],
  3675. "time": "2022-07-02T13:51:38+00:00"
  3676. },
  3677. {
  3678. "name": "league/mime-type-detection",
  3679. "version": "1.12.0",
  3680. "source": {
  3681. "type": "git",
  3682. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3683. "reference": "c7f2872fb273bf493811473dafc88d60ae829f48"
  3684. },
  3685. "dist": {
  3686. "type": "zip",
  3687. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/c7f2872fb273bf493811473dafc88d60ae829f48",
  3688. "reference": "c7f2872fb273bf493811473dafc88d60ae829f48",
  3689. "shasum": ""
  3690. },
  3691. "require": {
  3692. "ext-fileinfo": "*",
  3693. "php": "^7.2 || ^8.0"
  3694. },
  3695. "require-dev": {
  3696. "friendsofphp/php-cs-fixer": "^3.2",
  3697. "phpstan/phpstan": "^0.12.68",
  3698. "phpunit/phpunit": "^8.5.8 || ^9.3"
  3699. },
  3700. "type": "library",
  3701. "autoload": {
  3702. "psr-4": {
  3703. "League\\MimeTypeDetection\\": "src"
  3704. }
  3705. },
  3706. "notification-url": "https://packagist.org/downloads/",
  3707. "license": [
  3708. "MIT"
  3709. ],
  3710. "authors": [
  3711. {
  3712. "name": "Frank de Jonge",
  3713. "email": "info@frankdejonge.nl"
  3714. }
  3715. ],
  3716. "description": "Mime-type detection for Flysystem",
  3717. "support": {
  3718. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3719. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.12.0"
  3720. },
  3721. "funding": [
  3722. {
  3723. "url": "https://github.com/frankdejonge",
  3724. "type": "github"
  3725. },
  3726. {
  3727. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3728. "type": "tidelift"
  3729. }
  3730. ],
  3731. "time": "2023-08-03T07:14:11+00:00"
  3732. },
  3733. {
  3734. "name": "league/oauth1-client",
  3735. "version": "v1.10.1",
  3736. "source": {
  3737. "type": "git",
  3738. "url": "https://github.com/thephpleague/oauth1-client.git",
  3739. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  3740. },
  3741. "dist": {
  3742. "type": "zip",
  3743. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  3744. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  3745. "shasum": ""
  3746. },
  3747. "require": {
  3748. "ext-json": "*",
  3749. "ext-openssl": "*",
  3750. "guzzlehttp/guzzle": "^6.0|^7.0",
  3751. "guzzlehttp/psr7": "^1.7|^2.0",
  3752. "php": ">=7.1||>=8.0"
  3753. },
  3754. "require-dev": {
  3755. "ext-simplexml": "*",
  3756. "friendsofphp/php-cs-fixer": "^2.17",
  3757. "mockery/mockery": "^1.3.3",
  3758. "phpstan/phpstan": "^0.12.42",
  3759. "phpunit/phpunit": "^7.5||9.5"
  3760. },
  3761. "suggest": {
  3762. "ext-simplexml": "For decoding XML-based responses."
  3763. },
  3764. "type": "library",
  3765. "extra": {
  3766. "branch-alias": {
  3767. "dev-master": "1.0-dev",
  3768. "dev-develop": "2.0-dev"
  3769. }
  3770. },
  3771. "autoload": {
  3772. "psr-4": {
  3773. "League\\OAuth1\\Client\\": "src/"
  3774. }
  3775. },
  3776. "notification-url": "https://packagist.org/downloads/",
  3777. "license": [
  3778. "MIT"
  3779. ],
  3780. "authors": [
  3781. {
  3782. "name": "Ben Corlett",
  3783. "email": "bencorlett@me.com",
  3784. "homepage": "http://www.webcomm.com.au",
  3785. "role": "Developer"
  3786. }
  3787. ],
  3788. "description": "OAuth 1.0 Client Library",
  3789. "keywords": [
  3790. "Authentication",
  3791. "SSO",
  3792. "authorization",
  3793. "bitbucket",
  3794. "identity",
  3795. "idp",
  3796. "oauth",
  3797. "oauth1",
  3798. "single sign on",
  3799. "trello",
  3800. "tumblr",
  3801. "twitter"
  3802. ],
  3803. "support": {
  3804. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  3805. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  3806. },
  3807. "time": "2022-04-15T14:02:14+00:00"
  3808. },
  3809. {
  3810. "name": "maatwebsite/excel",
  3811. "version": "3.1.48",
  3812. "source": {
  3813. "type": "git",
  3814. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  3815. "reference": "6d0fe2a1d195960c7af7bf0de760582da02a34b9"
  3816. },
  3817. "dist": {
  3818. "type": "zip",
  3819. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/6d0fe2a1d195960c7af7bf0de760582da02a34b9",
  3820. "reference": "6d0fe2a1d195960c7af7bf0de760582da02a34b9",
  3821. "shasum": ""
  3822. },
  3823. "require": {
  3824. "composer/semver": "^3.3",
  3825. "ext-json": "*",
  3826. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0",
  3827. "php": "^7.0|^8.0",
  3828. "phpoffice/phpspreadsheet": "^1.18",
  3829. "psr/simple-cache": "^1.0|^2.0|^3.0"
  3830. },
  3831. "require-dev": {
  3832. "orchestra/testbench": "^6.0|^7.0|^8.0",
  3833. "predis/predis": "^1.1"
  3834. },
  3835. "type": "library",
  3836. "extra": {
  3837. "laravel": {
  3838. "providers": [
  3839. "Maatwebsite\\Excel\\ExcelServiceProvider"
  3840. ],
  3841. "aliases": {
  3842. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  3843. }
  3844. }
  3845. },
  3846. "autoload": {
  3847. "psr-4": {
  3848. "Maatwebsite\\Excel\\": "src/"
  3849. }
  3850. },
  3851. "notification-url": "https://packagist.org/downloads/",
  3852. "license": [
  3853. "MIT"
  3854. ],
  3855. "authors": [
  3856. {
  3857. "name": "Patrick Brouwers",
  3858. "email": "patrick@spartner.nl"
  3859. }
  3860. ],
  3861. "description": "Supercharged Excel exports and imports in Laravel",
  3862. "keywords": [
  3863. "PHPExcel",
  3864. "batch",
  3865. "csv",
  3866. "excel",
  3867. "export",
  3868. "import",
  3869. "laravel",
  3870. "php",
  3871. "phpspreadsheet"
  3872. ],
  3873. "support": {
  3874. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  3875. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.48"
  3876. },
  3877. "funding": [
  3878. {
  3879. "url": "https://laravel-excel.com/commercial-support",
  3880. "type": "custom"
  3881. },
  3882. {
  3883. "url": "https://github.com/patrickbrouwers",
  3884. "type": "github"
  3885. }
  3886. ],
  3887. "time": "2023-02-22T21:01:38+00:00"
  3888. },
  3889. {
  3890. "name": "maennchen/zipstream-php",
  3891. "version": "2.1.0",
  3892. "source": {
  3893. "type": "git",
  3894. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  3895. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  3896. },
  3897. "dist": {
  3898. "type": "zip",
  3899. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  3900. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  3901. "shasum": ""
  3902. },
  3903. "require": {
  3904. "myclabs/php-enum": "^1.5",
  3905. "php": ">= 7.1",
  3906. "psr/http-message": "^1.0",
  3907. "symfony/polyfill-mbstring": "^1.0"
  3908. },
  3909. "require-dev": {
  3910. "ext-zip": "*",
  3911. "guzzlehttp/guzzle": ">= 6.3",
  3912. "mikey179/vfsstream": "^1.6",
  3913. "phpunit/phpunit": ">= 7.5"
  3914. },
  3915. "type": "library",
  3916. "autoload": {
  3917. "psr-4": {
  3918. "ZipStream\\": "src/"
  3919. }
  3920. },
  3921. "notification-url": "https://packagist.org/downloads/",
  3922. "license": [
  3923. "MIT"
  3924. ],
  3925. "authors": [
  3926. {
  3927. "name": "Paul Duncan",
  3928. "email": "pabs@pablotron.org"
  3929. },
  3930. {
  3931. "name": "Jonatan Männchen",
  3932. "email": "jonatan@maennchen.ch"
  3933. },
  3934. {
  3935. "name": "Jesse Donat",
  3936. "email": "donatj@gmail.com"
  3937. },
  3938. {
  3939. "name": "András Kolesár",
  3940. "email": "kolesar@kolesar.hu"
  3941. }
  3942. ],
  3943. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  3944. "keywords": [
  3945. "stream",
  3946. "zip"
  3947. ],
  3948. "support": {
  3949. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  3950. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.1.0"
  3951. },
  3952. "funding": [
  3953. {
  3954. "url": "https://github.com/maennchen",
  3955. "type": "github"
  3956. },
  3957. {
  3958. "url": "https://opencollective.com/zipstream",
  3959. "type": "open_collective"
  3960. }
  3961. ],
  3962. "time": "2020-05-30T13:11:16+00:00"
  3963. },
  3964. {
  3965. "name": "markbaker/complex",
  3966. "version": "3.0.2",
  3967. "source": {
  3968. "type": "git",
  3969. "url": "https://github.com/MarkBaker/PHPComplex.git",
  3970. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  3971. },
  3972. "dist": {
  3973. "type": "zip",
  3974. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3975. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3976. "shasum": ""
  3977. },
  3978. "require": {
  3979. "php": "^7.2 || ^8.0"
  3980. },
  3981. "require-dev": {
  3982. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3983. "phpcompatibility/php-compatibility": "^9.3",
  3984. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3985. "squizlabs/php_codesniffer": "^3.7"
  3986. },
  3987. "type": "library",
  3988. "autoload": {
  3989. "psr-4": {
  3990. "Complex\\": "classes/src/"
  3991. }
  3992. },
  3993. "notification-url": "https://packagist.org/downloads/",
  3994. "license": [
  3995. "MIT"
  3996. ],
  3997. "authors": [
  3998. {
  3999. "name": "Mark Baker",
  4000. "email": "mark@lange.demon.co.uk"
  4001. }
  4002. ],
  4003. "description": "PHP Class for working with complex numbers",
  4004. "homepage": "https://github.com/MarkBaker/PHPComplex",
  4005. "keywords": [
  4006. "complex",
  4007. "mathematics"
  4008. ],
  4009. "support": {
  4010. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  4011. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  4012. },
  4013. "time": "2022-12-06T16:21:08+00:00"
  4014. },
  4015. {
  4016. "name": "markbaker/matrix",
  4017. "version": "3.0.1",
  4018. "source": {
  4019. "type": "git",
  4020. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  4021. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  4022. },
  4023. "dist": {
  4024. "type": "zip",
  4025. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  4026. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  4027. "shasum": ""
  4028. },
  4029. "require": {
  4030. "php": "^7.1 || ^8.0"
  4031. },
  4032. "require-dev": {
  4033. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4034. "phpcompatibility/php-compatibility": "^9.3",
  4035. "phpdocumentor/phpdocumentor": "2.*",
  4036. "phploc/phploc": "^4.0",
  4037. "phpmd/phpmd": "2.*",
  4038. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  4039. "sebastian/phpcpd": "^4.0",
  4040. "squizlabs/php_codesniffer": "^3.7"
  4041. },
  4042. "type": "library",
  4043. "autoload": {
  4044. "psr-4": {
  4045. "Matrix\\": "classes/src/"
  4046. }
  4047. },
  4048. "notification-url": "https://packagist.org/downloads/",
  4049. "license": [
  4050. "MIT"
  4051. ],
  4052. "authors": [
  4053. {
  4054. "name": "Mark Baker",
  4055. "email": "mark@demon-angel.eu"
  4056. }
  4057. ],
  4058. "description": "PHP Class for working with matrices",
  4059. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  4060. "keywords": [
  4061. "mathematics",
  4062. "matrix",
  4063. "vector"
  4064. ],
  4065. "support": {
  4066. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  4067. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  4068. },
  4069. "time": "2022-12-02T22:17:43+00:00"
  4070. },
  4071. {
  4072. "name": "mews/captcha",
  4073. "version": "3.3.2",
  4074. "source": {
  4075. "type": "git",
  4076. "url": "https://github.com/mewebstudio/captcha.git",
  4077. "reference": "7aee0e80bcf7eb17fc0d574244e384e56ae2af77"
  4078. },
  4079. "dist": {
  4080. "type": "zip",
  4081. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/7aee0e80bcf7eb17fc0d574244e384e56ae2af77",
  4082. "reference": "7aee0e80bcf7eb17fc0d574244e384e56ae2af77",
  4083. "shasum": ""
  4084. },
  4085. "require": {
  4086. "ext-gd": "*",
  4087. "illuminate/config": "~5|^6|^7|^8|^9|^10",
  4088. "illuminate/filesystem": "~5|^6|^7|^8|^9|^10",
  4089. "illuminate/hashing": "~5|^6|^7|^8|^9|^10",
  4090. "illuminate/session": "~5|^6|^7|^8|^9|^10",
  4091. "illuminate/support": "~5|^6|^7|^8|^9|^10",
  4092. "intervention/image": "~2.5",
  4093. "php": "^7.2|^8.1"
  4094. },
  4095. "require-dev": {
  4096. "mockery/mockery": "^1.0",
  4097. "phpunit/phpunit": "^8.5|^9.5.10"
  4098. },
  4099. "type": "package",
  4100. "extra": {
  4101. "laravel": {
  4102. "providers": [
  4103. "Mews\\Captcha\\CaptchaServiceProvider"
  4104. ],
  4105. "aliases": {
  4106. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  4107. }
  4108. }
  4109. },
  4110. "autoload": {
  4111. "files": [
  4112. "src/helpers.php"
  4113. ],
  4114. "psr-4": {
  4115. "Mews\\Captcha\\": "src/"
  4116. }
  4117. },
  4118. "notification-url": "https://packagist.org/downloads/",
  4119. "license": [
  4120. "MIT"
  4121. ],
  4122. "authors": [
  4123. {
  4124. "name": "Muharrem ERİN",
  4125. "email": "me@mewebstudio.com",
  4126. "homepage": "https://github.com/mewebstudio",
  4127. "role": "Developer"
  4128. }
  4129. ],
  4130. "description": "Laravel 5/6/7/8/9/10 Captcha Package",
  4131. "homepage": "https://github.com/mewebstudio/captcha",
  4132. "keywords": [
  4133. "captcha",
  4134. "laravel5 Security",
  4135. "laravel6 Captcha",
  4136. "laravel6 Security"
  4137. ],
  4138. "support": {
  4139. "issues": "https://github.com/mewebstudio/captcha/issues",
  4140. "source": "https://github.com/mewebstudio/captcha/tree/3.3.2"
  4141. },
  4142. "time": "2023-07-15T15:07:48+00:00"
  4143. },
  4144. {
  4145. "name": "mguinea/laravel-robots",
  4146. "version": "3.1.1",
  4147. "source": {
  4148. "type": "git",
  4149. "url": "https://github.com/mguinea/laravel-robots.git",
  4150. "reference": "a8ef40462ca1585d70b1d51648067c15bb6071cf"
  4151. },
  4152. "dist": {
  4153. "type": "zip",
  4154. "url": "https://api.github.com/repos/mguinea/laravel-robots/zipball/a8ef40462ca1585d70b1d51648067c15bb6071cf",
  4155. "reference": "a8ef40462ca1585d70b1d51648067c15bb6071cf",
  4156. "shasum": ""
  4157. },
  4158. "require": {
  4159. "illuminate/database": "^6.0|^7.0|^8.0",
  4160. "php": ">=7.3"
  4161. },
  4162. "require-dev": {
  4163. "orchestra/testbench": "^4.0|^5.0|^6.0",
  4164. "phpunit/phpunit": "^8.0|^9.0"
  4165. },
  4166. "type": "laravel-package",
  4167. "extra": {
  4168. "laravel": {
  4169. "providers": [
  4170. "Mguinea\\Robots\\RobotsServiceProvider"
  4171. ]
  4172. }
  4173. },
  4174. "autoload": {
  4175. "psr-4": {
  4176. "Mguinea\\Robots\\": "src"
  4177. }
  4178. },
  4179. "notification-url": "https://packagist.org/downloads/",
  4180. "license": [
  4181. "MIT"
  4182. ],
  4183. "authors": [
  4184. {
  4185. "name": "Marc Guinea",
  4186. "email": "develop.marcguinea@gmail.com"
  4187. }
  4188. ],
  4189. "description": "Laravel package to manage robots in an easy way",
  4190. "homepage": "https://github.com/mguinea/laravel-robots",
  4191. "keywords": [
  4192. "laravel",
  4193. "robots"
  4194. ],
  4195. "support": {
  4196. "issues": "https://github.com/mguinea/laravel-robots/issues",
  4197. "source": "https://github.com/mguinea/laravel-robots/tree/3.1.1"
  4198. },
  4199. "time": "2021-02-22T21:06:44+00:00"
  4200. },
  4201. {
  4202. "name": "milon/barcode",
  4203. "version": "v10.0.1",
  4204. "source": {
  4205. "type": "git",
  4206. "url": "https://github.com/milon/barcode.git",
  4207. "reference": "e643a713466f0109aa3ad7d29dae4900444187a5"
  4208. },
  4209. "dist": {
  4210. "type": "zip",
  4211. "url": "https://api.github.com/repos/milon/barcode/zipball/e643a713466f0109aa3ad7d29dae4900444187a5",
  4212. "reference": "e643a713466f0109aa3ad7d29dae4900444187a5",
  4213. "shasum": ""
  4214. },
  4215. "require": {
  4216. "illuminate/support": "^7.0|^8.0|^9.0|^10.0",
  4217. "php": "^7.3 | ^8.0"
  4218. },
  4219. "type": "library",
  4220. "extra": {
  4221. "laravel": {
  4222. "providers": [
  4223. "Milon\\Barcode\\BarcodeServiceProvider"
  4224. ],
  4225. "aliases": {
  4226. "DNS1D": "Milon\\Barcode\\Facades\\DNS1DFacade",
  4227. "DNS2D": "Milon\\Barcode\\Facades\\DNS2DFacade"
  4228. }
  4229. }
  4230. },
  4231. "autoload": {
  4232. "psr-0": {
  4233. "Milon\\Barcode": "src/"
  4234. }
  4235. },
  4236. "notification-url": "https://packagist.org/downloads/",
  4237. "license": [
  4238. "LGPL-3.0"
  4239. ],
  4240. "authors": [
  4241. {
  4242. "name": "Nuruzzaman Milon",
  4243. "email": "contact@milon.im"
  4244. }
  4245. ],
  4246. "description": "Barcode generator like Qr Code, PDF417, C39, C39+, C39E, C39E+, C93, S25, S25+, I25, I25+, C128, C128A, C128B, C128C, 2-Digits UPC-Based Extention, 5-Digits UPC-Based Extention, EAN 8, EAN 13, UPC-A, UPC-E, MSI (Variation of Plessey code)",
  4247. "keywords": [
  4248. "CODABAR",
  4249. "CODE 128",
  4250. "CODE 39",
  4251. "barcode",
  4252. "datamatrix",
  4253. "ean",
  4254. "laravel",
  4255. "pdf417",
  4256. "qr code",
  4257. "qrcode"
  4258. ],
  4259. "support": {
  4260. "issues": "https://github.com/milon/barcode/issues",
  4261. "source": "https://github.com/milon/barcode/tree/v10.0.1"
  4262. },
  4263. "funding": [
  4264. {
  4265. "url": "https://paypal.me/nuruzzamanmilon",
  4266. "type": "custom"
  4267. },
  4268. {
  4269. "url": "https://github.com/milon",
  4270. "type": "github"
  4271. }
  4272. ],
  4273. "time": "2023-06-16T13:03:37+00:00"
  4274. },
  4275. {
  4276. "name": "mobiledetect/mobiledetectlib",
  4277. "version": "2.8.41",
  4278. "source": {
  4279. "type": "git",
  4280. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  4281. "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1"
  4282. },
  4283. "dist": {
  4284. "type": "zip",
  4285. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1",
  4286. "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1",
  4287. "shasum": ""
  4288. },
  4289. "require": {
  4290. "php": ">=5.0.0"
  4291. },
  4292. "require-dev": {
  4293. "phpunit/phpunit": "~4.8.35||~5.7"
  4294. },
  4295. "type": "library",
  4296. "autoload": {
  4297. "psr-0": {
  4298. "Detection": "namespaced/"
  4299. },
  4300. "classmap": [
  4301. "Mobile_Detect.php"
  4302. ]
  4303. },
  4304. "notification-url": "https://packagist.org/downloads/",
  4305. "license": [
  4306. "MIT"
  4307. ],
  4308. "authors": [
  4309. {
  4310. "name": "Serban Ghita",
  4311. "email": "serbanghita@gmail.com",
  4312. "homepage": "http://mobiledetect.net",
  4313. "role": "Developer"
  4314. }
  4315. ],
  4316. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  4317. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  4318. "keywords": [
  4319. "detect mobile devices",
  4320. "mobile",
  4321. "mobile detect",
  4322. "mobile detector",
  4323. "php mobile detect"
  4324. ],
  4325. "support": {
  4326. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  4327. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.41"
  4328. },
  4329. "time": "2022-11-08T18:31:26+00:00"
  4330. },
  4331. {
  4332. "name": "monolog/monolog",
  4333. "version": "2.9.1",
  4334. "source": {
  4335. "type": "git",
  4336. "url": "https://github.com/Seldaek/monolog.git",
  4337. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
  4338. },
  4339. "dist": {
  4340. "type": "zip",
  4341. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  4342. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  4343. "shasum": ""
  4344. },
  4345. "require": {
  4346. "php": ">=7.2",
  4347. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  4348. },
  4349. "provide": {
  4350. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  4351. },
  4352. "require-dev": {
  4353. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  4354. "doctrine/couchdb": "~1.0@dev",
  4355. "elasticsearch/elasticsearch": "^7 || ^8",
  4356. "ext-json": "*",
  4357. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  4358. "guzzlehttp/guzzle": "^7.4",
  4359. "guzzlehttp/psr7": "^2.2",
  4360. "mongodb/mongodb": "^1.8",
  4361. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4362. "phpspec/prophecy": "^1.15",
  4363. "phpstan/phpstan": "^0.12.91",
  4364. "phpunit/phpunit": "^8.5.14",
  4365. "predis/predis": "^1.1 || ^2.0",
  4366. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  4367. "ruflin/elastica": "^7",
  4368. "swiftmailer/swiftmailer": "^5.3|^6.0",
  4369. "symfony/mailer": "^5.4 || ^6",
  4370. "symfony/mime": "^5.4 || ^6"
  4371. },
  4372. "suggest": {
  4373. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4374. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4375. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4376. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4377. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4378. "ext-mbstring": "Allow to work properly with unicode symbols",
  4379. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4380. "ext-openssl": "Required to send log messages using SSL",
  4381. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4382. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4383. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4384. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4385. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4386. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4387. },
  4388. "type": "library",
  4389. "extra": {
  4390. "branch-alias": {
  4391. "dev-main": "2.x-dev"
  4392. }
  4393. },
  4394. "autoload": {
  4395. "psr-4": {
  4396. "Monolog\\": "src/Monolog"
  4397. }
  4398. },
  4399. "notification-url": "https://packagist.org/downloads/",
  4400. "license": [
  4401. "MIT"
  4402. ],
  4403. "authors": [
  4404. {
  4405. "name": "Jordi Boggiano",
  4406. "email": "j.boggiano@seld.be",
  4407. "homepage": "https://seld.be"
  4408. }
  4409. ],
  4410. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4411. "homepage": "https://github.com/Seldaek/monolog",
  4412. "keywords": [
  4413. "log",
  4414. "logging",
  4415. "psr-3"
  4416. ],
  4417. "support": {
  4418. "issues": "https://github.com/Seldaek/monolog/issues",
  4419. "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
  4420. },
  4421. "funding": [
  4422. {
  4423. "url": "https://github.com/Seldaek",
  4424. "type": "github"
  4425. },
  4426. {
  4427. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4428. "type": "tidelift"
  4429. }
  4430. ],
  4431. "time": "2023-02-06T13:44:46+00:00"
  4432. },
  4433. {
  4434. "name": "mtdowling/jmespath.php",
  4435. "version": "2.7.0",
  4436. "source": {
  4437. "type": "git",
  4438. "url": "https://github.com/jmespath/jmespath.php.git",
  4439. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  4440. },
  4441. "dist": {
  4442. "type": "zip",
  4443. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  4444. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  4445. "shasum": ""
  4446. },
  4447. "require": {
  4448. "php": "^7.2.5 || ^8.0",
  4449. "symfony/polyfill-mbstring": "^1.17"
  4450. },
  4451. "require-dev": {
  4452. "composer/xdebug-handler": "^3.0.3",
  4453. "phpunit/phpunit": "^8.5.33"
  4454. },
  4455. "bin": [
  4456. "bin/jp.php"
  4457. ],
  4458. "type": "library",
  4459. "extra": {
  4460. "branch-alias": {
  4461. "dev-master": "2.7-dev"
  4462. }
  4463. },
  4464. "autoload": {
  4465. "files": [
  4466. "src/JmesPath.php"
  4467. ],
  4468. "psr-4": {
  4469. "JmesPath\\": "src/"
  4470. }
  4471. },
  4472. "notification-url": "https://packagist.org/downloads/",
  4473. "license": [
  4474. "MIT"
  4475. ],
  4476. "authors": [
  4477. {
  4478. "name": "Graham Campbell",
  4479. "email": "hello@gjcampbell.co.uk",
  4480. "homepage": "https://github.com/GrahamCampbell"
  4481. },
  4482. {
  4483. "name": "Michael Dowling",
  4484. "email": "mtdowling@gmail.com",
  4485. "homepage": "https://github.com/mtdowling"
  4486. }
  4487. ],
  4488. "description": "Declaratively specify how to extract elements from a JSON document",
  4489. "keywords": [
  4490. "json",
  4491. "jsonpath"
  4492. ],
  4493. "support": {
  4494. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4495. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  4496. },
  4497. "time": "2023-08-25T10:54:48+00:00"
  4498. },
  4499. {
  4500. "name": "myclabs/php-enum",
  4501. "version": "1.8.4",
  4502. "source": {
  4503. "type": "git",
  4504. "url": "https://github.com/myclabs/php-enum.git",
  4505. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  4506. },
  4507. "dist": {
  4508. "type": "zip",
  4509. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  4510. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  4511. "shasum": ""
  4512. },
  4513. "require": {
  4514. "ext-json": "*",
  4515. "php": "^7.3 || ^8.0"
  4516. },
  4517. "require-dev": {
  4518. "phpunit/phpunit": "^9.5",
  4519. "squizlabs/php_codesniffer": "1.*",
  4520. "vimeo/psalm": "^4.6.2"
  4521. },
  4522. "type": "library",
  4523. "autoload": {
  4524. "psr-4": {
  4525. "MyCLabs\\Enum\\": "src/"
  4526. },
  4527. "classmap": [
  4528. "stubs/Stringable.php"
  4529. ]
  4530. },
  4531. "notification-url": "https://packagist.org/downloads/",
  4532. "license": [
  4533. "MIT"
  4534. ],
  4535. "authors": [
  4536. {
  4537. "name": "PHP Enum contributors",
  4538. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  4539. }
  4540. ],
  4541. "description": "PHP Enum implementation",
  4542. "homepage": "http://github.com/myclabs/php-enum",
  4543. "keywords": [
  4544. "enum"
  4545. ],
  4546. "support": {
  4547. "issues": "https://github.com/myclabs/php-enum/issues",
  4548. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  4549. },
  4550. "funding": [
  4551. {
  4552. "url": "https://github.com/mnapoli",
  4553. "type": "github"
  4554. },
  4555. {
  4556. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  4557. "type": "tidelift"
  4558. }
  4559. ],
  4560. "time": "2022-08-04T09:53:51+00:00"
  4561. },
  4562. {
  4563. "name": "nesbot/carbon",
  4564. "version": "2.70.0",
  4565. "source": {
  4566. "type": "git",
  4567. "url": "https://github.com/briannesbitt/Carbon.git",
  4568. "reference": "d3298b38ea8612e5f77d38d1a99438e42f70341d"
  4569. },
  4570. "dist": {
  4571. "type": "zip",
  4572. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d3298b38ea8612e5f77d38d1a99438e42f70341d",
  4573. "reference": "d3298b38ea8612e5f77d38d1a99438e42f70341d",
  4574. "shasum": ""
  4575. },
  4576. "require": {
  4577. "ext-json": "*",
  4578. "php": "^7.1.8 || ^8.0",
  4579. "psr/clock": "^1.0",
  4580. "symfony/polyfill-mbstring": "^1.0",
  4581. "symfony/polyfill-php80": "^1.16",
  4582. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4583. },
  4584. "provide": {
  4585. "psr/clock-implementation": "1.0"
  4586. },
  4587. "require-dev": {
  4588. "doctrine/dbal": "^2.0 || ^3.1.4",
  4589. "doctrine/orm": "^2.7",
  4590. "friendsofphp/php-cs-fixer": "^3.0",
  4591. "kylekatarnls/multi-tester": "^2.0",
  4592. "ondrejmirtes/better-reflection": "*",
  4593. "phpmd/phpmd": "^2.9",
  4594. "phpstan/extension-installer": "^1.0",
  4595. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4596. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4597. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4598. "squizlabs/php_codesniffer": "^3.4"
  4599. },
  4600. "bin": [
  4601. "bin/carbon"
  4602. ],
  4603. "type": "library",
  4604. "extra": {
  4605. "branch-alias": {
  4606. "dev-3.x": "3.x-dev",
  4607. "dev-master": "2.x-dev"
  4608. },
  4609. "laravel": {
  4610. "providers": [
  4611. "Carbon\\Laravel\\ServiceProvider"
  4612. ]
  4613. },
  4614. "phpstan": {
  4615. "includes": [
  4616. "extension.neon"
  4617. ]
  4618. }
  4619. },
  4620. "autoload": {
  4621. "psr-4": {
  4622. "Carbon\\": "src/Carbon/"
  4623. }
  4624. },
  4625. "notification-url": "https://packagist.org/downloads/",
  4626. "license": [
  4627. "MIT"
  4628. ],
  4629. "authors": [
  4630. {
  4631. "name": "Brian Nesbitt",
  4632. "email": "brian@nesbot.com",
  4633. "homepage": "https://markido.com"
  4634. },
  4635. {
  4636. "name": "kylekatarnls",
  4637. "homepage": "https://github.com/kylekatarnls"
  4638. }
  4639. ],
  4640. "description": "An API extension for DateTime that supports 281 different languages.",
  4641. "homepage": "https://carbon.nesbot.com",
  4642. "keywords": [
  4643. "date",
  4644. "datetime",
  4645. "time"
  4646. ],
  4647. "support": {
  4648. "docs": "https://carbon.nesbot.com/docs",
  4649. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4650. "source": "https://github.com/briannesbitt/Carbon"
  4651. },
  4652. "funding": [
  4653. {
  4654. "url": "https://github.com/sponsors/kylekatarnls",
  4655. "type": "github"
  4656. },
  4657. {
  4658. "url": "https://opencollective.com/Carbon#sponsor",
  4659. "type": "opencollective"
  4660. },
  4661. {
  4662. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4663. "type": "tidelift"
  4664. }
  4665. ],
  4666. "time": "2023-09-07T16:43:50+00:00"
  4667. },
  4668. {
  4669. "name": "nikic/php-parser",
  4670. "version": "v4.17.1",
  4671. "source": {
  4672. "type": "git",
  4673. "url": "https://github.com/nikic/PHP-Parser.git",
  4674. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
  4675. },
  4676. "dist": {
  4677. "type": "zip",
  4678. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  4679. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  4680. "shasum": ""
  4681. },
  4682. "require": {
  4683. "ext-tokenizer": "*",
  4684. "php": ">=7.0"
  4685. },
  4686. "require-dev": {
  4687. "ircmaxell/php-yacc": "^0.0.7",
  4688. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4689. },
  4690. "bin": [
  4691. "bin/php-parse"
  4692. ],
  4693. "type": "library",
  4694. "extra": {
  4695. "branch-alias": {
  4696. "dev-master": "4.9-dev"
  4697. }
  4698. },
  4699. "autoload": {
  4700. "psr-4": {
  4701. "PhpParser\\": "lib/PhpParser"
  4702. }
  4703. },
  4704. "notification-url": "https://packagist.org/downloads/",
  4705. "license": [
  4706. "BSD-3-Clause"
  4707. ],
  4708. "authors": [
  4709. {
  4710. "name": "Nikita Popov"
  4711. }
  4712. ],
  4713. "description": "A PHP parser written in PHP",
  4714. "keywords": [
  4715. "parser",
  4716. "php"
  4717. ],
  4718. "support": {
  4719. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4720. "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
  4721. },
  4722. "time": "2023-08-13T19:53:39+00:00"
  4723. },
  4724. {
  4725. "name": "opis/closure",
  4726. "version": "3.6.3",
  4727. "source": {
  4728. "type": "git",
  4729. "url": "https://github.com/opis/closure.git",
  4730. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  4731. },
  4732. "dist": {
  4733. "type": "zip",
  4734. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  4735. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  4736. "shasum": ""
  4737. },
  4738. "require": {
  4739. "php": "^5.4 || ^7.0 || ^8.0"
  4740. },
  4741. "require-dev": {
  4742. "jeremeamia/superclosure": "^2.0",
  4743. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4744. },
  4745. "type": "library",
  4746. "extra": {
  4747. "branch-alias": {
  4748. "dev-master": "3.6.x-dev"
  4749. }
  4750. },
  4751. "autoload": {
  4752. "files": [
  4753. "functions.php"
  4754. ],
  4755. "psr-4": {
  4756. "Opis\\Closure\\": "src/"
  4757. }
  4758. },
  4759. "notification-url": "https://packagist.org/downloads/",
  4760. "license": [
  4761. "MIT"
  4762. ],
  4763. "authors": [
  4764. {
  4765. "name": "Marius Sarca",
  4766. "email": "marius.sarca@gmail.com"
  4767. },
  4768. {
  4769. "name": "Sorin Sarca",
  4770. "email": "sarca_sorin@hotmail.com"
  4771. }
  4772. ],
  4773. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4774. "homepage": "https://opis.io/closure",
  4775. "keywords": [
  4776. "anonymous functions",
  4777. "closure",
  4778. "function",
  4779. "serializable",
  4780. "serialization",
  4781. "serialize"
  4782. ],
  4783. "support": {
  4784. "issues": "https://github.com/opis/closure/issues",
  4785. "source": "https://github.com/opis/closure/tree/3.6.3"
  4786. },
  4787. "time": "2022-01-27T09:35:39+00:00"
  4788. },
  4789. {
  4790. "name": "phenx/php-font-lib",
  4791. "version": "0.5.4",
  4792. "source": {
  4793. "type": "git",
  4794. "url": "https://github.com/dompdf/php-font-lib.git",
  4795. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  4796. },
  4797. "dist": {
  4798. "type": "zip",
  4799. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  4800. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  4801. "shasum": ""
  4802. },
  4803. "require": {
  4804. "ext-mbstring": "*"
  4805. },
  4806. "require-dev": {
  4807. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  4808. },
  4809. "type": "library",
  4810. "autoload": {
  4811. "psr-4": {
  4812. "FontLib\\": "src/FontLib"
  4813. }
  4814. },
  4815. "notification-url": "https://packagist.org/downloads/",
  4816. "license": [
  4817. "LGPL-3.0"
  4818. ],
  4819. "authors": [
  4820. {
  4821. "name": "Fabien Ménager",
  4822. "email": "fabien.menager@gmail.com"
  4823. }
  4824. ],
  4825. "description": "A library to read, parse, export and make subsets of different types of font files.",
  4826. "homepage": "https://github.com/PhenX/php-font-lib",
  4827. "support": {
  4828. "issues": "https://github.com/dompdf/php-font-lib/issues",
  4829. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  4830. },
  4831. "time": "2021-12-17T19:44:54+00:00"
  4832. },
  4833. {
  4834. "name": "phenx/php-svg-lib",
  4835. "version": "0.4.1",
  4836. "source": {
  4837. "type": "git",
  4838. "url": "https://github.com/dompdf/php-svg-lib.git",
  4839. "reference": "4498b5df7b08e8469f0f8279651ea5de9626ed02"
  4840. },
  4841. "dist": {
  4842. "type": "zip",
  4843. "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/4498b5df7b08e8469f0f8279651ea5de9626ed02",
  4844. "reference": "4498b5df7b08e8469f0f8279651ea5de9626ed02",
  4845. "shasum": ""
  4846. },
  4847. "require": {
  4848. "ext-mbstring": "*",
  4849. "php": "^7.1 || ^7.2 || ^7.3 || ^7.4 || ^8.0",
  4850. "sabberworm/php-css-parser": "^8.4"
  4851. },
  4852. "require-dev": {
  4853. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  4854. },
  4855. "type": "library",
  4856. "autoload": {
  4857. "psr-4": {
  4858. "Svg\\": "src/Svg"
  4859. }
  4860. },
  4861. "notification-url": "https://packagist.org/downloads/",
  4862. "license": [
  4863. "LGPL-3.0"
  4864. ],
  4865. "authors": [
  4866. {
  4867. "name": "Fabien Ménager",
  4868. "email": "fabien.menager@gmail.com"
  4869. }
  4870. ],
  4871. "description": "A library to read, parse and export to PDF SVG files.",
  4872. "homepage": "https://github.com/PhenX/php-svg-lib",
  4873. "support": {
  4874. "issues": "https://github.com/dompdf/php-svg-lib/issues",
  4875. "source": "https://github.com/dompdf/php-svg-lib/tree/0.4.1"
  4876. },
  4877. "time": "2022-03-07T12:52:04+00:00"
  4878. },
  4879. {
  4880. "name": "phpoffice/phpspreadsheet",
  4881. "version": "1.25.2",
  4882. "source": {
  4883. "type": "git",
  4884. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  4885. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5"
  4886. },
  4887. "dist": {
  4888. "type": "zip",
  4889. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  4890. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  4891. "shasum": ""
  4892. },
  4893. "require": {
  4894. "ext-ctype": "*",
  4895. "ext-dom": "*",
  4896. "ext-fileinfo": "*",
  4897. "ext-gd": "*",
  4898. "ext-iconv": "*",
  4899. "ext-libxml": "*",
  4900. "ext-mbstring": "*",
  4901. "ext-simplexml": "*",
  4902. "ext-xml": "*",
  4903. "ext-xmlreader": "*",
  4904. "ext-xmlwriter": "*",
  4905. "ext-zip": "*",
  4906. "ext-zlib": "*",
  4907. "ezyang/htmlpurifier": "^4.15",
  4908. "maennchen/zipstream-php": "^2.1",
  4909. "markbaker/complex": "^3.0",
  4910. "markbaker/matrix": "^3.0",
  4911. "php": "^7.3 || ^8.0",
  4912. "psr/http-client": "^1.0",
  4913. "psr/http-factory": "^1.0",
  4914. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  4915. },
  4916. "require-dev": {
  4917. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4918. "dompdf/dompdf": "^1.0 || ^2.0",
  4919. "friendsofphp/php-cs-fixer": "^3.2",
  4920. "mitoteam/jpgraph": "10.2.4",
  4921. "mpdf/mpdf": "8.1.1",
  4922. "phpcompatibility/php-compatibility": "^9.3",
  4923. "phpstan/phpstan": "^1.1",
  4924. "phpstan/phpstan-phpunit": "^1.0",
  4925. "phpunit/phpunit": "^8.5 || ^9.0",
  4926. "squizlabs/php_codesniffer": "^3.7",
  4927. "tecnickcom/tcpdf": "6.5"
  4928. },
  4929. "suggest": {
  4930. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  4931. "ext-intl": "PHP Internationalization Functions",
  4932. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  4933. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  4934. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  4935. },
  4936. "type": "library",
  4937. "autoload": {
  4938. "psr-4": {
  4939. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  4940. }
  4941. },
  4942. "notification-url": "https://packagist.org/downloads/",
  4943. "license": [
  4944. "MIT"
  4945. ],
  4946. "authors": [
  4947. {
  4948. "name": "Maarten Balliauw",
  4949. "homepage": "https://blog.maartenballiauw.be"
  4950. },
  4951. {
  4952. "name": "Mark Baker",
  4953. "homepage": "https://markbakeruk.net"
  4954. },
  4955. {
  4956. "name": "Franck Lefevre",
  4957. "homepage": "https://rootslabs.net"
  4958. },
  4959. {
  4960. "name": "Erik Tilt"
  4961. },
  4962. {
  4963. "name": "Adrien Crivelli"
  4964. }
  4965. ],
  4966. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  4967. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  4968. "keywords": [
  4969. "OpenXML",
  4970. "excel",
  4971. "gnumeric",
  4972. "ods",
  4973. "php",
  4974. "spreadsheet",
  4975. "xls",
  4976. "xlsx"
  4977. ],
  4978. "support": {
  4979. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  4980. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.25.2"
  4981. },
  4982. "time": "2022-09-25T17:21:01+00:00"
  4983. },
  4984. {
  4985. "name": "phpoption/phpoption",
  4986. "version": "1.9.1",
  4987. "source": {
  4988. "type": "git",
  4989. "url": "https://github.com/schmittjoh/php-option.git",
  4990. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  4991. },
  4992. "dist": {
  4993. "type": "zip",
  4994. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  4995. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  4996. "shasum": ""
  4997. },
  4998. "require": {
  4999. "php": "^7.2.5 || ^8.0"
  5000. },
  5001. "require-dev": {
  5002. "bamarni/composer-bin-plugin": "^1.8.2",
  5003. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  5004. },
  5005. "type": "library",
  5006. "extra": {
  5007. "bamarni-bin": {
  5008. "bin-links": true,
  5009. "forward-command": true
  5010. },
  5011. "branch-alias": {
  5012. "dev-master": "1.9-dev"
  5013. }
  5014. },
  5015. "autoload": {
  5016. "psr-4": {
  5017. "PhpOption\\": "src/PhpOption/"
  5018. }
  5019. },
  5020. "notification-url": "https://packagist.org/downloads/",
  5021. "license": [
  5022. "Apache-2.0"
  5023. ],
  5024. "authors": [
  5025. {
  5026. "name": "Johannes M. Schmitt",
  5027. "email": "schmittjoh@gmail.com",
  5028. "homepage": "https://github.com/schmittjoh"
  5029. },
  5030. {
  5031. "name": "Graham Campbell",
  5032. "email": "hello@gjcampbell.co.uk",
  5033. "homepage": "https://github.com/GrahamCampbell"
  5034. }
  5035. ],
  5036. "description": "Option Type for PHP",
  5037. "keywords": [
  5038. "language",
  5039. "option",
  5040. "php",
  5041. "type"
  5042. ],
  5043. "support": {
  5044. "issues": "https://github.com/schmittjoh/php-option/issues",
  5045. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  5046. },
  5047. "funding": [
  5048. {
  5049. "url": "https://github.com/GrahamCampbell",
  5050. "type": "github"
  5051. },
  5052. {
  5053. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5054. "type": "tidelift"
  5055. }
  5056. ],
  5057. "time": "2023-02-25T19:38:58+00:00"
  5058. },
  5059. {
  5060. "name": "psr/cache",
  5061. "version": "1.0.1",
  5062. "source": {
  5063. "type": "git",
  5064. "url": "https://github.com/php-fig/cache.git",
  5065. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  5066. },
  5067. "dist": {
  5068. "type": "zip",
  5069. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  5070. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  5071. "shasum": ""
  5072. },
  5073. "require": {
  5074. "php": ">=5.3.0"
  5075. },
  5076. "type": "library",
  5077. "extra": {
  5078. "branch-alias": {
  5079. "dev-master": "1.0.x-dev"
  5080. }
  5081. },
  5082. "autoload": {
  5083. "psr-4": {
  5084. "Psr\\Cache\\": "src/"
  5085. }
  5086. },
  5087. "notification-url": "https://packagist.org/downloads/",
  5088. "license": [
  5089. "MIT"
  5090. ],
  5091. "authors": [
  5092. {
  5093. "name": "PHP-FIG",
  5094. "homepage": "http://www.php-fig.org/"
  5095. }
  5096. ],
  5097. "description": "Common interface for caching libraries",
  5098. "keywords": [
  5099. "cache",
  5100. "psr",
  5101. "psr-6"
  5102. ],
  5103. "support": {
  5104. "source": "https://github.com/php-fig/cache/tree/master"
  5105. },
  5106. "time": "2016-08-06T20:24:11+00:00"
  5107. },
  5108. {
  5109. "name": "psr/clock",
  5110. "version": "1.0.0",
  5111. "source": {
  5112. "type": "git",
  5113. "url": "https://github.com/php-fig/clock.git",
  5114. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5115. },
  5116. "dist": {
  5117. "type": "zip",
  5118. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5119. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5120. "shasum": ""
  5121. },
  5122. "require": {
  5123. "php": "^7.0 || ^8.0"
  5124. },
  5125. "type": "library",
  5126. "autoload": {
  5127. "psr-4": {
  5128. "Psr\\Clock\\": "src/"
  5129. }
  5130. },
  5131. "notification-url": "https://packagist.org/downloads/",
  5132. "license": [
  5133. "MIT"
  5134. ],
  5135. "authors": [
  5136. {
  5137. "name": "PHP-FIG",
  5138. "homepage": "https://www.php-fig.org/"
  5139. }
  5140. ],
  5141. "description": "Common interface for reading the clock.",
  5142. "homepage": "https://github.com/php-fig/clock",
  5143. "keywords": [
  5144. "clock",
  5145. "now",
  5146. "psr",
  5147. "psr-20",
  5148. "time"
  5149. ],
  5150. "support": {
  5151. "issues": "https://github.com/php-fig/clock/issues",
  5152. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5153. },
  5154. "time": "2022-11-25T14:36:26+00:00"
  5155. },
  5156. {
  5157. "name": "psr/container",
  5158. "version": "1.1.1",
  5159. "source": {
  5160. "type": "git",
  5161. "url": "https://github.com/php-fig/container.git",
  5162. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  5163. },
  5164. "dist": {
  5165. "type": "zip",
  5166. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  5167. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  5168. "shasum": ""
  5169. },
  5170. "require": {
  5171. "php": ">=7.2.0"
  5172. },
  5173. "type": "library",
  5174. "autoload": {
  5175. "psr-4": {
  5176. "Psr\\Container\\": "src/"
  5177. }
  5178. },
  5179. "notification-url": "https://packagist.org/downloads/",
  5180. "license": [
  5181. "MIT"
  5182. ],
  5183. "authors": [
  5184. {
  5185. "name": "PHP-FIG",
  5186. "homepage": "https://www.php-fig.org/"
  5187. }
  5188. ],
  5189. "description": "Common Container Interface (PHP FIG PSR-11)",
  5190. "homepage": "https://github.com/php-fig/container",
  5191. "keywords": [
  5192. "PSR-11",
  5193. "container",
  5194. "container-interface",
  5195. "container-interop",
  5196. "psr"
  5197. ],
  5198. "support": {
  5199. "issues": "https://github.com/php-fig/container/issues",
  5200. "source": "https://github.com/php-fig/container/tree/1.1.1"
  5201. },
  5202. "time": "2021-03-05T17:36:06+00:00"
  5203. },
  5204. {
  5205. "name": "psr/event-dispatcher",
  5206. "version": "1.0.0",
  5207. "source": {
  5208. "type": "git",
  5209. "url": "https://github.com/php-fig/event-dispatcher.git",
  5210. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5211. },
  5212. "dist": {
  5213. "type": "zip",
  5214. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5215. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5216. "shasum": ""
  5217. },
  5218. "require": {
  5219. "php": ">=7.2.0"
  5220. },
  5221. "type": "library",
  5222. "extra": {
  5223. "branch-alias": {
  5224. "dev-master": "1.0.x-dev"
  5225. }
  5226. },
  5227. "autoload": {
  5228. "psr-4": {
  5229. "Psr\\EventDispatcher\\": "src/"
  5230. }
  5231. },
  5232. "notification-url": "https://packagist.org/downloads/",
  5233. "license": [
  5234. "MIT"
  5235. ],
  5236. "authors": [
  5237. {
  5238. "name": "PHP-FIG",
  5239. "homepage": "http://www.php-fig.org/"
  5240. }
  5241. ],
  5242. "description": "Standard interfaces for event handling.",
  5243. "keywords": [
  5244. "events",
  5245. "psr",
  5246. "psr-14"
  5247. ],
  5248. "support": {
  5249. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5250. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5251. },
  5252. "time": "2019-01-08T18:20:26+00:00"
  5253. },
  5254. {
  5255. "name": "psr/http-client",
  5256. "version": "1.0.2",
  5257. "source": {
  5258. "type": "git",
  5259. "url": "https://github.com/php-fig/http-client.git",
  5260. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
  5261. },
  5262. "dist": {
  5263. "type": "zip",
  5264. "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  5265. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  5266. "shasum": ""
  5267. },
  5268. "require": {
  5269. "php": "^7.0 || ^8.0",
  5270. "psr/http-message": "^1.0 || ^2.0"
  5271. },
  5272. "type": "library",
  5273. "extra": {
  5274. "branch-alias": {
  5275. "dev-master": "1.0.x-dev"
  5276. }
  5277. },
  5278. "autoload": {
  5279. "psr-4": {
  5280. "Psr\\Http\\Client\\": "src/"
  5281. }
  5282. },
  5283. "notification-url": "https://packagist.org/downloads/",
  5284. "license": [
  5285. "MIT"
  5286. ],
  5287. "authors": [
  5288. {
  5289. "name": "PHP-FIG",
  5290. "homepage": "https://www.php-fig.org/"
  5291. }
  5292. ],
  5293. "description": "Common interface for HTTP clients",
  5294. "homepage": "https://github.com/php-fig/http-client",
  5295. "keywords": [
  5296. "http",
  5297. "http-client",
  5298. "psr",
  5299. "psr-18"
  5300. ],
  5301. "support": {
  5302. "source": "https://github.com/php-fig/http-client/tree/1.0.2"
  5303. },
  5304. "time": "2023-04-10T20:12:12+00:00"
  5305. },
  5306. {
  5307. "name": "psr/http-factory",
  5308. "version": "1.0.2",
  5309. "source": {
  5310. "type": "git",
  5311. "url": "https://github.com/php-fig/http-factory.git",
  5312. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  5313. },
  5314. "dist": {
  5315. "type": "zip",
  5316. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  5317. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  5318. "shasum": ""
  5319. },
  5320. "require": {
  5321. "php": ">=7.0.0",
  5322. "psr/http-message": "^1.0 || ^2.0"
  5323. },
  5324. "type": "library",
  5325. "extra": {
  5326. "branch-alias": {
  5327. "dev-master": "1.0.x-dev"
  5328. }
  5329. },
  5330. "autoload": {
  5331. "psr-4": {
  5332. "Psr\\Http\\Message\\": "src/"
  5333. }
  5334. },
  5335. "notification-url": "https://packagist.org/downloads/",
  5336. "license": [
  5337. "MIT"
  5338. ],
  5339. "authors": [
  5340. {
  5341. "name": "PHP-FIG",
  5342. "homepage": "https://www.php-fig.org/"
  5343. }
  5344. ],
  5345. "description": "Common interfaces for PSR-7 HTTP message factories",
  5346. "keywords": [
  5347. "factory",
  5348. "http",
  5349. "message",
  5350. "psr",
  5351. "psr-17",
  5352. "psr-7",
  5353. "request",
  5354. "response"
  5355. ],
  5356. "support": {
  5357. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  5358. },
  5359. "time": "2023-04-10T20:10:41+00:00"
  5360. },
  5361. {
  5362. "name": "psr/http-message",
  5363. "version": "1.1",
  5364. "source": {
  5365. "type": "git",
  5366. "url": "https://github.com/php-fig/http-message.git",
  5367. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  5368. },
  5369. "dist": {
  5370. "type": "zip",
  5371. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  5372. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  5373. "shasum": ""
  5374. },
  5375. "require": {
  5376. "php": "^7.2 || ^8.0"
  5377. },
  5378. "type": "library",
  5379. "extra": {
  5380. "branch-alias": {
  5381. "dev-master": "1.1.x-dev"
  5382. }
  5383. },
  5384. "autoload": {
  5385. "psr-4": {
  5386. "Psr\\Http\\Message\\": "src/"
  5387. }
  5388. },
  5389. "notification-url": "https://packagist.org/downloads/",
  5390. "license": [
  5391. "MIT"
  5392. ],
  5393. "authors": [
  5394. {
  5395. "name": "PHP-FIG",
  5396. "homepage": "http://www.php-fig.org/"
  5397. }
  5398. ],
  5399. "description": "Common interface for HTTP messages",
  5400. "homepage": "https://github.com/php-fig/http-message",
  5401. "keywords": [
  5402. "http",
  5403. "http-message",
  5404. "psr",
  5405. "psr-7",
  5406. "request",
  5407. "response"
  5408. ],
  5409. "support": {
  5410. "source": "https://github.com/php-fig/http-message/tree/1.1"
  5411. },
  5412. "time": "2023-04-04T09:50:52+00:00"
  5413. },
  5414. {
  5415. "name": "psr/log",
  5416. "version": "1.1.4",
  5417. "source": {
  5418. "type": "git",
  5419. "url": "https://github.com/php-fig/log.git",
  5420. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  5421. },
  5422. "dist": {
  5423. "type": "zip",
  5424. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  5425. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  5426. "shasum": ""
  5427. },
  5428. "require": {
  5429. "php": ">=5.3.0"
  5430. },
  5431. "type": "library",
  5432. "extra": {
  5433. "branch-alias": {
  5434. "dev-master": "1.1.x-dev"
  5435. }
  5436. },
  5437. "autoload": {
  5438. "psr-4": {
  5439. "Psr\\Log\\": "Psr/Log/"
  5440. }
  5441. },
  5442. "notification-url": "https://packagist.org/downloads/",
  5443. "license": [
  5444. "MIT"
  5445. ],
  5446. "authors": [
  5447. {
  5448. "name": "PHP-FIG",
  5449. "homepage": "https://www.php-fig.org/"
  5450. }
  5451. ],
  5452. "description": "Common interface for logging libraries",
  5453. "homepage": "https://github.com/php-fig/log",
  5454. "keywords": [
  5455. "log",
  5456. "psr",
  5457. "psr-3"
  5458. ],
  5459. "support": {
  5460. "source": "https://github.com/php-fig/log/tree/1.1.4"
  5461. },
  5462. "time": "2021-05-03T11:20:27+00:00"
  5463. },
  5464. {
  5465. "name": "psr/simple-cache",
  5466. "version": "1.0.1",
  5467. "source": {
  5468. "type": "git",
  5469. "url": "https://github.com/php-fig/simple-cache.git",
  5470. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  5471. },
  5472. "dist": {
  5473. "type": "zip",
  5474. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5475. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5476. "shasum": ""
  5477. },
  5478. "require": {
  5479. "php": ">=5.3.0"
  5480. },
  5481. "type": "library",
  5482. "extra": {
  5483. "branch-alias": {
  5484. "dev-master": "1.0.x-dev"
  5485. }
  5486. },
  5487. "autoload": {
  5488. "psr-4": {
  5489. "Psr\\SimpleCache\\": "src/"
  5490. }
  5491. },
  5492. "notification-url": "https://packagist.org/downloads/",
  5493. "license": [
  5494. "MIT"
  5495. ],
  5496. "authors": [
  5497. {
  5498. "name": "PHP-FIG",
  5499. "homepage": "http://www.php-fig.org/"
  5500. }
  5501. ],
  5502. "description": "Common interfaces for simple caching",
  5503. "keywords": [
  5504. "cache",
  5505. "caching",
  5506. "psr",
  5507. "psr-16",
  5508. "simple-cache"
  5509. ],
  5510. "support": {
  5511. "source": "https://github.com/php-fig/simple-cache/tree/master"
  5512. },
  5513. "time": "2017-10-23T01:57:42+00:00"
  5514. },
  5515. {
  5516. "name": "psy/psysh",
  5517. "version": "v0.11.20",
  5518. "source": {
  5519. "type": "git",
  5520. "url": "https://github.com/bobthecow/psysh.git",
  5521. "reference": "0fa27040553d1d280a67a4393194df5228afea5b"
  5522. },
  5523. "dist": {
  5524. "type": "zip",
  5525. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/0fa27040553d1d280a67a4393194df5228afea5b",
  5526. "reference": "0fa27040553d1d280a67a4393194df5228afea5b",
  5527. "shasum": ""
  5528. },
  5529. "require": {
  5530. "ext-json": "*",
  5531. "ext-tokenizer": "*",
  5532. "nikic/php-parser": "^4.0 || ^3.1",
  5533. "php": "^8.0 || ^7.0.8",
  5534. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  5535. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  5536. },
  5537. "conflict": {
  5538. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  5539. },
  5540. "require-dev": {
  5541. "bamarni/composer-bin-plugin": "^1.2"
  5542. },
  5543. "suggest": {
  5544. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5545. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5546. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  5547. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  5548. },
  5549. "bin": [
  5550. "bin/psysh"
  5551. ],
  5552. "type": "library",
  5553. "extra": {
  5554. "branch-alias": {
  5555. "dev-main": "0.11.x-dev"
  5556. }
  5557. },
  5558. "autoload": {
  5559. "files": [
  5560. "src/functions.php"
  5561. ],
  5562. "psr-4": {
  5563. "Psy\\": "src/"
  5564. }
  5565. },
  5566. "notification-url": "https://packagist.org/downloads/",
  5567. "license": [
  5568. "MIT"
  5569. ],
  5570. "authors": [
  5571. {
  5572. "name": "Justin Hileman",
  5573. "email": "justin@justinhileman.info",
  5574. "homepage": "http://justinhileman.com"
  5575. }
  5576. ],
  5577. "description": "An interactive shell for modern PHP.",
  5578. "homepage": "http://psysh.org",
  5579. "keywords": [
  5580. "REPL",
  5581. "console",
  5582. "interactive",
  5583. "shell"
  5584. ],
  5585. "support": {
  5586. "issues": "https://github.com/bobthecow/psysh/issues",
  5587. "source": "https://github.com/bobthecow/psysh/tree/v0.11.20"
  5588. },
  5589. "time": "2023-07-31T14:32:22+00:00"
  5590. },
  5591. {
  5592. "name": "ralouphie/getallheaders",
  5593. "version": "3.0.3",
  5594. "source": {
  5595. "type": "git",
  5596. "url": "https://github.com/ralouphie/getallheaders.git",
  5597. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5598. },
  5599. "dist": {
  5600. "type": "zip",
  5601. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5602. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5603. "shasum": ""
  5604. },
  5605. "require": {
  5606. "php": ">=5.6"
  5607. },
  5608. "require-dev": {
  5609. "php-coveralls/php-coveralls": "^2.1",
  5610. "phpunit/phpunit": "^5 || ^6.5"
  5611. },
  5612. "type": "library",
  5613. "autoload": {
  5614. "files": [
  5615. "src/getallheaders.php"
  5616. ]
  5617. },
  5618. "notification-url": "https://packagist.org/downloads/",
  5619. "license": [
  5620. "MIT"
  5621. ],
  5622. "authors": [
  5623. {
  5624. "name": "Ralph Khattar",
  5625. "email": "ralph.khattar@gmail.com"
  5626. }
  5627. ],
  5628. "description": "A polyfill for getallheaders.",
  5629. "support": {
  5630. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5631. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5632. },
  5633. "time": "2019-03-08T08:55:37+00:00"
  5634. },
  5635. {
  5636. "name": "ramsey/collection",
  5637. "version": "1.2.2",
  5638. "source": {
  5639. "type": "git",
  5640. "url": "https://github.com/ramsey/collection.git",
  5641. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  5642. },
  5643. "dist": {
  5644. "type": "zip",
  5645. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  5646. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  5647. "shasum": ""
  5648. },
  5649. "require": {
  5650. "php": "^7.3 || ^8",
  5651. "symfony/polyfill-php81": "^1.23"
  5652. },
  5653. "require-dev": {
  5654. "captainhook/captainhook": "^5.3",
  5655. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5656. "ergebnis/composer-normalize": "^2.6",
  5657. "fakerphp/faker": "^1.5",
  5658. "hamcrest/hamcrest-php": "^2",
  5659. "jangregor/phpstan-prophecy": "^0.8",
  5660. "mockery/mockery": "^1.3",
  5661. "phpspec/prophecy-phpunit": "^2.0",
  5662. "phpstan/extension-installer": "^1",
  5663. "phpstan/phpstan": "^0.12.32",
  5664. "phpstan/phpstan-mockery": "^0.12.5",
  5665. "phpstan/phpstan-phpunit": "^0.12.11",
  5666. "phpunit/phpunit": "^8.5 || ^9",
  5667. "psy/psysh": "^0.10.4",
  5668. "slevomat/coding-standard": "^6.3",
  5669. "squizlabs/php_codesniffer": "^3.5",
  5670. "vimeo/psalm": "^4.4"
  5671. },
  5672. "type": "library",
  5673. "autoload": {
  5674. "psr-4": {
  5675. "Ramsey\\Collection\\": "src/"
  5676. }
  5677. },
  5678. "notification-url": "https://packagist.org/downloads/",
  5679. "license": [
  5680. "MIT"
  5681. ],
  5682. "authors": [
  5683. {
  5684. "name": "Ben Ramsey",
  5685. "email": "ben@benramsey.com",
  5686. "homepage": "https://benramsey.com"
  5687. }
  5688. ],
  5689. "description": "A PHP library for representing and manipulating collections.",
  5690. "keywords": [
  5691. "array",
  5692. "collection",
  5693. "hash",
  5694. "map",
  5695. "queue",
  5696. "set"
  5697. ],
  5698. "support": {
  5699. "issues": "https://github.com/ramsey/collection/issues",
  5700. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  5701. },
  5702. "funding": [
  5703. {
  5704. "url": "https://github.com/ramsey",
  5705. "type": "github"
  5706. },
  5707. {
  5708. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  5709. "type": "tidelift"
  5710. }
  5711. ],
  5712. "time": "2021-10-10T03:01:02+00:00"
  5713. },
  5714. {
  5715. "name": "ramsey/uuid",
  5716. "version": "4.2.3",
  5717. "source": {
  5718. "type": "git",
  5719. "url": "https://github.com/ramsey/uuid.git",
  5720. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  5721. },
  5722. "dist": {
  5723. "type": "zip",
  5724. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5725. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5726. "shasum": ""
  5727. },
  5728. "require": {
  5729. "brick/math": "^0.8 || ^0.9",
  5730. "ext-json": "*",
  5731. "php": "^7.2 || ^8.0",
  5732. "ramsey/collection": "^1.0",
  5733. "symfony/polyfill-ctype": "^1.8",
  5734. "symfony/polyfill-php80": "^1.14"
  5735. },
  5736. "replace": {
  5737. "rhumsaa/uuid": "self.version"
  5738. },
  5739. "require-dev": {
  5740. "captainhook/captainhook": "^5.10",
  5741. "captainhook/plugin-composer": "^5.3",
  5742. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5743. "doctrine/annotations": "^1.8",
  5744. "ergebnis/composer-normalize": "^2.15",
  5745. "mockery/mockery": "^1.3",
  5746. "moontoast/math": "^1.1",
  5747. "paragonie/random-lib": "^2",
  5748. "php-mock/php-mock": "^2.2",
  5749. "php-mock/php-mock-mockery": "^1.3",
  5750. "php-parallel-lint/php-parallel-lint": "^1.1",
  5751. "phpbench/phpbench": "^1.0",
  5752. "phpstan/extension-installer": "^1.0",
  5753. "phpstan/phpstan": "^0.12",
  5754. "phpstan/phpstan-mockery": "^0.12",
  5755. "phpstan/phpstan-phpunit": "^0.12",
  5756. "phpunit/phpunit": "^8.5 || ^9",
  5757. "slevomat/coding-standard": "^7.0",
  5758. "squizlabs/php_codesniffer": "^3.5",
  5759. "vimeo/psalm": "^4.9"
  5760. },
  5761. "suggest": {
  5762. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5763. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  5764. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5765. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5766. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5767. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5768. },
  5769. "type": "library",
  5770. "extra": {
  5771. "branch-alias": {
  5772. "dev-main": "4.x-dev"
  5773. },
  5774. "captainhook": {
  5775. "force-install": true
  5776. }
  5777. },
  5778. "autoload": {
  5779. "files": [
  5780. "src/functions.php"
  5781. ],
  5782. "psr-4": {
  5783. "Ramsey\\Uuid\\": "src/"
  5784. }
  5785. },
  5786. "notification-url": "https://packagist.org/downloads/",
  5787. "license": [
  5788. "MIT"
  5789. ],
  5790. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5791. "keywords": [
  5792. "guid",
  5793. "identifier",
  5794. "uuid"
  5795. ],
  5796. "support": {
  5797. "issues": "https://github.com/ramsey/uuid/issues",
  5798. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  5799. },
  5800. "funding": [
  5801. {
  5802. "url": "https://github.com/ramsey",
  5803. "type": "github"
  5804. },
  5805. {
  5806. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  5807. "type": "tidelift"
  5808. }
  5809. ],
  5810. "time": "2021-09-25T23:10:38+00:00"
  5811. },
  5812. {
  5813. "name": "react/promise",
  5814. "version": "v2.10.0",
  5815. "source": {
  5816. "type": "git",
  5817. "url": "https://github.com/reactphp/promise.git",
  5818. "reference": "f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38"
  5819. },
  5820. "dist": {
  5821. "type": "zip",
  5822. "url": "https://api.github.com/repos/reactphp/promise/zipball/f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38",
  5823. "reference": "f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38",
  5824. "shasum": ""
  5825. },
  5826. "require": {
  5827. "php": ">=5.4.0"
  5828. },
  5829. "require-dev": {
  5830. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.36"
  5831. },
  5832. "type": "library",
  5833. "autoload": {
  5834. "files": [
  5835. "src/functions_include.php"
  5836. ],
  5837. "psr-4": {
  5838. "React\\Promise\\": "src/"
  5839. }
  5840. },
  5841. "notification-url": "https://packagist.org/downloads/",
  5842. "license": [
  5843. "MIT"
  5844. ],
  5845. "authors": [
  5846. {
  5847. "name": "Jan Sorgalla",
  5848. "email": "jsorgalla@gmail.com",
  5849. "homepage": "https://sorgalla.com/"
  5850. },
  5851. {
  5852. "name": "Christian Lück",
  5853. "email": "christian@clue.engineering",
  5854. "homepage": "https://clue.engineering/"
  5855. },
  5856. {
  5857. "name": "Cees-Jan Kiewiet",
  5858. "email": "reactphp@ceesjankiewiet.nl",
  5859. "homepage": "https://wyrihaximus.net/"
  5860. },
  5861. {
  5862. "name": "Chris Boden",
  5863. "email": "cboden@gmail.com",
  5864. "homepage": "https://cboden.dev/"
  5865. }
  5866. ],
  5867. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5868. "keywords": [
  5869. "promise",
  5870. "promises"
  5871. ],
  5872. "support": {
  5873. "issues": "https://github.com/reactphp/promise/issues",
  5874. "source": "https://github.com/reactphp/promise/tree/v2.10.0"
  5875. },
  5876. "funding": [
  5877. {
  5878. "url": "https://opencollective.com/reactphp",
  5879. "type": "open_collective"
  5880. }
  5881. ],
  5882. "time": "2023-05-02T15:15:43+00:00"
  5883. },
  5884. {
  5885. "name": "rize/uri-template",
  5886. "version": "0.3.5",
  5887. "source": {
  5888. "type": "git",
  5889. "url": "https://github.com/rize/UriTemplate.git",
  5890. "reference": "5ed4ba8ea34af84485dea815d4b6b620794d1168"
  5891. },
  5892. "dist": {
  5893. "type": "zip",
  5894. "url": "https://api.github.com/repos/rize/UriTemplate/zipball/5ed4ba8ea34af84485dea815d4b6b620794d1168",
  5895. "reference": "5ed4ba8ea34af84485dea815d4b6b620794d1168",
  5896. "shasum": ""
  5897. },
  5898. "require": {
  5899. "php": ">=5.3.0"
  5900. },
  5901. "require-dev": {
  5902. "phpunit/phpunit": "~4.8.36"
  5903. },
  5904. "type": "library",
  5905. "autoload": {
  5906. "psr-4": {
  5907. "Rize\\": "src/Rize"
  5908. }
  5909. },
  5910. "notification-url": "https://packagist.org/downloads/",
  5911. "license": [
  5912. "MIT"
  5913. ],
  5914. "authors": [
  5915. {
  5916. "name": "Marut K",
  5917. "homepage": "http://twitter.com/rezigned"
  5918. }
  5919. ],
  5920. "description": "PHP URI Template (RFC 6570) supports both expansion & extraction",
  5921. "keywords": [
  5922. "RFC 6570",
  5923. "template",
  5924. "uri"
  5925. ],
  5926. "support": {
  5927. "issues": "https://github.com/rize/UriTemplate/issues",
  5928. "source": "https://github.com/rize/UriTemplate/tree/0.3.5"
  5929. },
  5930. "funding": [
  5931. {
  5932. "url": "https://www.paypal.me/rezigned",
  5933. "type": "custom"
  5934. },
  5935. {
  5936. "url": "https://github.com/rezigned",
  5937. "type": "github"
  5938. },
  5939. {
  5940. "url": "https://opencollective.com/rize-uri-template",
  5941. "type": "open_collective"
  5942. }
  5943. ],
  5944. "time": "2022-10-12T17:22:51+00:00"
  5945. },
  5946. {
  5947. "name": "sabberworm/php-css-parser",
  5948. "version": "8.4.0",
  5949. "source": {
  5950. "type": "git",
  5951. "url": "https://github.com/sabberworm/PHP-CSS-Parser.git",
  5952. "reference": "e41d2140031d533348b2192a83f02d8dd8a71d30"
  5953. },
  5954. "dist": {
  5955. "type": "zip",
  5956. "url": "https://api.github.com/repos/sabberworm/PHP-CSS-Parser/zipball/e41d2140031d533348b2192a83f02d8dd8a71d30",
  5957. "reference": "e41d2140031d533348b2192a83f02d8dd8a71d30",
  5958. "shasum": ""
  5959. },
  5960. "require": {
  5961. "ext-iconv": "*",
  5962. "php": ">=5.6.20"
  5963. },
  5964. "require-dev": {
  5965. "codacy/coverage": "^1.4",
  5966. "phpunit/phpunit": "^4.8.36"
  5967. },
  5968. "suggest": {
  5969. "ext-mbstring": "for parsing UTF-8 CSS"
  5970. },
  5971. "type": "library",
  5972. "autoload": {
  5973. "psr-4": {
  5974. "Sabberworm\\CSS\\": "src/"
  5975. }
  5976. },
  5977. "notification-url": "https://packagist.org/downloads/",
  5978. "license": [
  5979. "MIT"
  5980. ],
  5981. "authors": [
  5982. {
  5983. "name": "Raphael Schweikert"
  5984. }
  5985. ],
  5986. "description": "Parser for CSS Files written in PHP",
  5987. "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  5988. "keywords": [
  5989. "css",
  5990. "parser",
  5991. "stylesheet"
  5992. ],
  5993. "support": {
  5994. "issues": "https://github.com/sabberworm/PHP-CSS-Parser/issues",
  5995. "source": "https://github.com/sabberworm/PHP-CSS-Parser/tree/8.4.0"
  5996. },
  5997. "time": "2021-12-11T13:40:54+00:00"
  5998. },
  5999. {
  6000. "name": "simplesoftwareio/simple-qrcode",
  6001. "version": "4.2.0",
  6002. "source": {
  6003. "type": "git",
  6004. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  6005. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537"
  6006. },
  6007. "dist": {
  6008. "type": "zip",
  6009. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/916db7948ca6772d54bb617259c768c9cdc8d537",
  6010. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537",
  6011. "shasum": ""
  6012. },
  6013. "require": {
  6014. "bacon/bacon-qr-code": "^2.0",
  6015. "ext-gd": "*",
  6016. "php": ">=7.2|^8.0"
  6017. },
  6018. "require-dev": {
  6019. "mockery/mockery": "~1",
  6020. "phpunit/phpunit": "~9"
  6021. },
  6022. "suggest": {
  6023. "ext-imagick": "Allows the generation of PNG QrCodes.",
  6024. "illuminate/support": "Allows for use within Laravel."
  6025. },
  6026. "type": "library",
  6027. "extra": {
  6028. "laravel": {
  6029. "providers": [
  6030. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  6031. ],
  6032. "aliases": {
  6033. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  6034. }
  6035. }
  6036. },
  6037. "autoload": {
  6038. "psr-4": {
  6039. "SimpleSoftwareIO\\QrCode\\": "src"
  6040. }
  6041. },
  6042. "notification-url": "https://packagist.org/downloads/",
  6043. "license": [
  6044. "MIT"
  6045. ],
  6046. "authors": [
  6047. {
  6048. "name": "Simple Software LLC",
  6049. "email": "support@simplesoftware.io"
  6050. }
  6051. ],
  6052. "description": "Simple QrCode is a QR code generator made for Laravel.",
  6053. "homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
  6054. "keywords": [
  6055. "Simple",
  6056. "generator",
  6057. "laravel",
  6058. "qrcode",
  6059. "wrapper"
  6060. ],
  6061. "support": {
  6062. "issues": "https://github.com/SimpleSoftwareIO/simple-qrcode/issues",
  6063. "source": "https://github.com/SimpleSoftwareIO/simple-qrcode/tree/4.2.0"
  6064. },
  6065. "time": "2021-02-08T20:43:55+00:00"
  6066. },
  6067. {
  6068. "name": "socialiteproviders/apple",
  6069. "version": "4.1.1",
  6070. "source": {
  6071. "type": "git",
  6072. "url": "https://github.com/SocialiteProviders/Apple.git",
  6073. "reference": "b03a927cff27e2ed05b1f923fb70f4160896c483"
  6074. },
  6075. "dist": {
  6076. "type": "zip",
  6077. "url": "https://api.github.com/repos/SocialiteProviders/Apple/zipball/b03a927cff27e2ed05b1f923fb70f4160896c483",
  6078. "reference": "b03a927cff27e2ed05b1f923fb70f4160896c483",
  6079. "shasum": ""
  6080. },
  6081. "require": {
  6082. "ext-json": "*",
  6083. "ext-openssl": "*",
  6084. "firebase/php-jwt": "^5.2",
  6085. "lcobucci/jwt": "^3.4",
  6086. "php": "^7.2 || ^8.0",
  6087. "socialiteproviders/manager": "~4.0"
  6088. },
  6089. "suggest": {
  6090. "ahilmurugesan/socialite-apple-helper": "Automatic Apple client key generation and management."
  6091. },
  6092. "type": "library",
  6093. "autoload": {
  6094. "psr-4": {
  6095. "SocialiteProviders\\Apple\\": ""
  6096. }
  6097. },
  6098. "notification-url": "https://packagist.org/downloads/",
  6099. "license": [
  6100. "MIT"
  6101. ],
  6102. "authors": [
  6103. {
  6104. "name": "Ahilan",
  6105. "email": "ahilmurugesan@gmail.com",
  6106. "role": "Developer"
  6107. },
  6108. {
  6109. "name": "Vamsi Krishna V",
  6110. "email": "vamsi@vonectech.com",
  6111. "homepage": "https://vonectech.com/",
  6112. "role": "Farmer"
  6113. }
  6114. ],
  6115. "description": "Apple OAuth2 Provider for Laravel Socialite",
  6116. "keywords": [
  6117. "apple",
  6118. "apple client key",
  6119. "apple sign in",
  6120. "client key generator",
  6121. "client key refresh",
  6122. "laravel",
  6123. "laravel apple",
  6124. "laravel socialite",
  6125. "sign in with apple",
  6126. "socialite",
  6127. "socialite apple"
  6128. ],
  6129. "support": {
  6130. "source": "https://github.com/SocialiteProviders/Apple/tree/4.1.1"
  6131. },
  6132. "time": "2020-12-03T02:15:50+00:00"
  6133. },
  6134. {
  6135. "name": "socialiteproviders/google",
  6136. "version": "4.1.0",
  6137. "source": {
  6138. "type": "git",
  6139. "url": "https://github.com/SocialiteProviders/Google-Plus.git",
  6140. "reference": "1cb8f6fb2c0dd0fc8b34e95f69865663fdf0b401"
  6141. },
  6142. "dist": {
  6143. "type": "zip",
  6144. "url": "https://api.github.com/repos/SocialiteProviders/Google-Plus/zipball/1cb8f6fb2c0dd0fc8b34e95f69865663fdf0b401",
  6145. "reference": "1cb8f6fb2c0dd0fc8b34e95f69865663fdf0b401",
  6146. "shasum": ""
  6147. },
  6148. "require": {
  6149. "ext-json": "*",
  6150. "php": "^7.2 || ^8.0",
  6151. "socialiteproviders/manager": "~4.0"
  6152. },
  6153. "type": "library",
  6154. "autoload": {
  6155. "psr-4": {
  6156. "SocialiteProviders\\Google\\": ""
  6157. }
  6158. },
  6159. "notification-url": "https://packagist.org/downloads/",
  6160. "license": [
  6161. "MIT"
  6162. ],
  6163. "authors": [
  6164. {
  6165. "name": "xstoop",
  6166. "email": "myenglishnameisx@gmail.com"
  6167. }
  6168. ],
  6169. "description": "Google OAuth2 Provider for Laravel Socialite",
  6170. "support": {
  6171. "source": "https://github.com/SocialiteProviders/Google-Plus/tree/4.1.0"
  6172. },
  6173. "time": "2020-12-01T23:10:59+00:00"
  6174. },
  6175. {
  6176. "name": "socialiteproviders/kakao",
  6177. "version": "4.2.2",
  6178. "source": {
  6179. "type": "git",
  6180. "url": "https://github.com/SocialiteProviders/Kakao.git",
  6181. "reference": "0f1210fc3b82fe4f489388cb5d730351797281ac"
  6182. },
  6183. "dist": {
  6184. "type": "zip",
  6185. "url": "https://api.github.com/repos/SocialiteProviders/Kakao/zipball/0f1210fc3b82fe4f489388cb5d730351797281ac",
  6186. "reference": "0f1210fc3b82fe4f489388cb5d730351797281ac",
  6187. "shasum": ""
  6188. },
  6189. "require": {
  6190. "ext-json": "*",
  6191. "php": "^7.2 || ^8.0",
  6192. "socialiteproviders/manager": "~4.0"
  6193. },
  6194. "type": "library",
  6195. "autoload": {
  6196. "psr-4": {
  6197. "SocialiteProviders\\Kakao\\": ""
  6198. }
  6199. },
  6200. "notification-url": "https://packagist.org/downloads/",
  6201. "license": [
  6202. "MIT"
  6203. ],
  6204. "authors": [
  6205. {
  6206. "name": "Doojin So",
  6207. "email": "sodoojin@gmail.com"
  6208. }
  6209. ],
  6210. "description": "Kakao OAuth2 Provider for Laravel Socialite",
  6211. "support": {
  6212. "source": "https://github.com/SocialiteProviders/Kakao/tree/4.2.2"
  6213. },
  6214. "time": "2021-02-24T22:47:43+00:00"
  6215. },
  6216. {
  6217. "name": "socialiteproviders/manager",
  6218. "version": "v4.1.0",
  6219. "source": {
  6220. "type": "git",
  6221. "url": "https://github.com/SocialiteProviders/Manager.git",
  6222. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9"
  6223. },
  6224. "dist": {
  6225. "type": "zip",
  6226. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  6227. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  6228. "shasum": ""
  6229. },
  6230. "require": {
  6231. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0",
  6232. "laravel/socialite": "~4.0 || ~5.0",
  6233. "php": "^7.2 || ^8.0"
  6234. },
  6235. "require-dev": {
  6236. "mockery/mockery": "^1.2",
  6237. "phpunit/phpunit": "^6.0 || ^9.0"
  6238. },
  6239. "type": "library",
  6240. "extra": {
  6241. "laravel": {
  6242. "providers": [
  6243. "SocialiteProviders\\Manager\\ServiceProvider"
  6244. ]
  6245. }
  6246. },
  6247. "autoload": {
  6248. "psr-4": {
  6249. "SocialiteProviders\\Manager\\": "src/"
  6250. }
  6251. },
  6252. "notification-url": "https://packagist.org/downloads/",
  6253. "license": [
  6254. "MIT"
  6255. ],
  6256. "authors": [
  6257. {
  6258. "name": "Andy Wendt",
  6259. "email": "andy@awendt.com"
  6260. },
  6261. {
  6262. "name": "Anton Komarev",
  6263. "email": "a.komarev@cybercog.su"
  6264. },
  6265. {
  6266. "name": "Miguel Piedrafita",
  6267. "email": "soy@miguelpiedrafita.com"
  6268. },
  6269. {
  6270. "name": "atymic",
  6271. "email": "atymicq@gmail.com",
  6272. "homepage": "https://atymic.dev"
  6273. }
  6274. ],
  6275. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  6276. "homepage": "https://socialiteproviders.com",
  6277. "keywords": [
  6278. "laravel",
  6279. "manager",
  6280. "oauth",
  6281. "providers",
  6282. "socialite"
  6283. ],
  6284. "support": {
  6285. "issues": "https://github.com/socialiteproviders/manager/issues",
  6286. "source": "https://github.com/socialiteproviders/manager"
  6287. },
  6288. "time": "2022-01-23T22:40:23+00:00"
  6289. },
  6290. {
  6291. "name": "socialiteproviders/naver",
  6292. "version": "4.1.0",
  6293. "source": {
  6294. "type": "git",
  6295. "url": "https://github.com/SocialiteProviders/Naver.git",
  6296. "reference": "8aea1dc415c2c353eba836e5d3aa91edf884c019"
  6297. },
  6298. "dist": {
  6299. "type": "zip",
  6300. "url": "https://api.github.com/repos/SocialiteProviders/Naver/zipball/8aea1dc415c2c353eba836e5d3aa91edf884c019",
  6301. "reference": "8aea1dc415c2c353eba836e5d3aa91edf884c019",
  6302. "shasum": ""
  6303. },
  6304. "require": {
  6305. "ext-json": "*",
  6306. "ext-libxml": "*",
  6307. "ext-simplexml": "*",
  6308. "php": "^7.2 || ^8.0",
  6309. "socialiteproviders/manager": "~4.0"
  6310. },
  6311. "type": "library",
  6312. "autoload": {
  6313. "psr-4": {
  6314. "SocialiteProviders\\Naver\\": ""
  6315. }
  6316. },
  6317. "notification-url": "https://packagist.org/downloads/",
  6318. "license": [
  6319. "MIT"
  6320. ],
  6321. "authors": [
  6322. {
  6323. "name": "Doojin So",
  6324. "email": "sodoojin@gmail.com"
  6325. }
  6326. ],
  6327. "description": "Naver OAuth2 Provider for Laravel Socialite",
  6328. "support": {
  6329. "source": "https://github.com/SocialiteProviders/Naver/tree/4.1.0"
  6330. },
  6331. "time": "2020-12-01T23:10:59+00:00"
  6332. },
  6333. {
  6334. "name": "swiftmailer/swiftmailer",
  6335. "version": "v6.3.0",
  6336. "source": {
  6337. "type": "git",
  6338. "url": "https://github.com/swiftmailer/swiftmailer.git",
  6339. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  6340. },
  6341. "dist": {
  6342. "type": "zip",
  6343. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6344. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6345. "shasum": ""
  6346. },
  6347. "require": {
  6348. "egulias/email-validator": "^2.0|^3.1",
  6349. "php": ">=7.0.0",
  6350. "symfony/polyfill-iconv": "^1.0",
  6351. "symfony/polyfill-intl-idn": "^1.10",
  6352. "symfony/polyfill-mbstring": "^1.0"
  6353. },
  6354. "require-dev": {
  6355. "mockery/mockery": "^1.0",
  6356. "symfony/phpunit-bridge": "^4.4|^5.4"
  6357. },
  6358. "suggest": {
  6359. "ext-intl": "Needed to support internationalized email addresses"
  6360. },
  6361. "type": "library",
  6362. "extra": {
  6363. "branch-alias": {
  6364. "dev-master": "6.2-dev"
  6365. }
  6366. },
  6367. "autoload": {
  6368. "files": [
  6369. "lib/swift_required.php"
  6370. ]
  6371. },
  6372. "notification-url": "https://packagist.org/downloads/",
  6373. "license": [
  6374. "MIT"
  6375. ],
  6376. "authors": [
  6377. {
  6378. "name": "Chris Corbyn"
  6379. },
  6380. {
  6381. "name": "Fabien Potencier",
  6382. "email": "fabien@symfony.com"
  6383. }
  6384. ],
  6385. "description": "Swiftmailer, free feature-rich PHP mailer",
  6386. "homepage": "https://swiftmailer.symfony.com",
  6387. "keywords": [
  6388. "email",
  6389. "mail",
  6390. "mailer"
  6391. ],
  6392. "support": {
  6393. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  6394. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  6395. },
  6396. "funding": [
  6397. {
  6398. "url": "https://github.com/fabpot",
  6399. "type": "github"
  6400. },
  6401. {
  6402. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  6403. "type": "tidelift"
  6404. }
  6405. ],
  6406. "abandoned": "symfony/mailer",
  6407. "time": "2021-10-18T15:26:12+00:00"
  6408. },
  6409. {
  6410. "name": "symfony/console",
  6411. "version": "v5.4.28",
  6412. "source": {
  6413. "type": "git",
  6414. "url": "https://github.com/symfony/console.git",
  6415. "reference": "f4f71842f24c2023b91237c72a365306f3c58827"
  6416. },
  6417. "dist": {
  6418. "type": "zip",
  6419. "url": "https://api.github.com/repos/symfony/console/zipball/f4f71842f24c2023b91237c72a365306f3c58827",
  6420. "reference": "f4f71842f24c2023b91237c72a365306f3c58827",
  6421. "shasum": ""
  6422. },
  6423. "require": {
  6424. "php": ">=7.2.5",
  6425. "symfony/deprecation-contracts": "^2.1|^3",
  6426. "symfony/polyfill-mbstring": "~1.0",
  6427. "symfony/polyfill-php73": "^1.9",
  6428. "symfony/polyfill-php80": "^1.16",
  6429. "symfony/service-contracts": "^1.1|^2|^3",
  6430. "symfony/string": "^5.1|^6.0"
  6431. },
  6432. "conflict": {
  6433. "psr/log": ">=3",
  6434. "symfony/dependency-injection": "<4.4",
  6435. "symfony/dotenv": "<5.1",
  6436. "symfony/event-dispatcher": "<4.4",
  6437. "symfony/lock": "<4.4",
  6438. "symfony/process": "<4.4"
  6439. },
  6440. "provide": {
  6441. "psr/log-implementation": "1.0|2.0"
  6442. },
  6443. "require-dev": {
  6444. "psr/log": "^1|^2",
  6445. "symfony/config": "^4.4|^5.0|^6.0",
  6446. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6447. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  6448. "symfony/lock": "^4.4|^5.0|^6.0",
  6449. "symfony/process": "^4.4|^5.0|^6.0",
  6450. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6451. },
  6452. "suggest": {
  6453. "psr/log": "For using the console logger",
  6454. "symfony/event-dispatcher": "",
  6455. "symfony/lock": "",
  6456. "symfony/process": ""
  6457. },
  6458. "type": "library",
  6459. "autoload": {
  6460. "psr-4": {
  6461. "Symfony\\Component\\Console\\": ""
  6462. },
  6463. "exclude-from-classmap": [
  6464. "/Tests/"
  6465. ]
  6466. },
  6467. "notification-url": "https://packagist.org/downloads/",
  6468. "license": [
  6469. "MIT"
  6470. ],
  6471. "authors": [
  6472. {
  6473. "name": "Fabien Potencier",
  6474. "email": "fabien@symfony.com"
  6475. },
  6476. {
  6477. "name": "Symfony Community",
  6478. "homepage": "https://symfony.com/contributors"
  6479. }
  6480. ],
  6481. "description": "Eases the creation of beautiful and testable command line interfaces",
  6482. "homepage": "https://symfony.com",
  6483. "keywords": [
  6484. "cli",
  6485. "command-line",
  6486. "console",
  6487. "terminal"
  6488. ],
  6489. "support": {
  6490. "source": "https://github.com/symfony/console/tree/v5.4.28"
  6491. },
  6492. "funding": [
  6493. {
  6494. "url": "https://symfony.com/sponsor",
  6495. "type": "custom"
  6496. },
  6497. {
  6498. "url": "https://github.com/fabpot",
  6499. "type": "github"
  6500. },
  6501. {
  6502. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6503. "type": "tidelift"
  6504. }
  6505. ],
  6506. "time": "2023-08-07T06:12:30+00:00"
  6507. },
  6508. {
  6509. "name": "symfony/css-selector",
  6510. "version": "v5.4.26",
  6511. "source": {
  6512. "type": "git",
  6513. "url": "https://github.com/symfony/css-selector.git",
  6514. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a"
  6515. },
  6516. "dist": {
  6517. "type": "zip",
  6518. "url": "https://api.github.com/repos/symfony/css-selector/zipball/0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  6519. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  6520. "shasum": ""
  6521. },
  6522. "require": {
  6523. "php": ">=7.2.5",
  6524. "symfony/polyfill-php80": "^1.16"
  6525. },
  6526. "type": "library",
  6527. "autoload": {
  6528. "psr-4": {
  6529. "Symfony\\Component\\CssSelector\\": ""
  6530. },
  6531. "exclude-from-classmap": [
  6532. "/Tests/"
  6533. ]
  6534. },
  6535. "notification-url": "https://packagist.org/downloads/",
  6536. "license": [
  6537. "MIT"
  6538. ],
  6539. "authors": [
  6540. {
  6541. "name": "Fabien Potencier",
  6542. "email": "fabien@symfony.com"
  6543. },
  6544. {
  6545. "name": "Jean-François Simon",
  6546. "email": "jeanfrancois.simon@sensiolabs.com"
  6547. },
  6548. {
  6549. "name": "Symfony Community",
  6550. "homepage": "https://symfony.com/contributors"
  6551. }
  6552. ],
  6553. "description": "Converts CSS selectors to XPath expressions",
  6554. "homepage": "https://symfony.com",
  6555. "support": {
  6556. "source": "https://github.com/symfony/css-selector/tree/v5.4.26"
  6557. },
  6558. "funding": [
  6559. {
  6560. "url": "https://symfony.com/sponsor",
  6561. "type": "custom"
  6562. },
  6563. {
  6564. "url": "https://github.com/fabpot",
  6565. "type": "github"
  6566. },
  6567. {
  6568. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6569. "type": "tidelift"
  6570. }
  6571. ],
  6572. "time": "2023-07-07T06:10:25+00:00"
  6573. },
  6574. {
  6575. "name": "symfony/deprecation-contracts",
  6576. "version": "v2.5.2",
  6577. "source": {
  6578. "type": "git",
  6579. "url": "https://github.com/symfony/deprecation-contracts.git",
  6580. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  6581. },
  6582. "dist": {
  6583. "type": "zip",
  6584. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  6585. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  6586. "shasum": ""
  6587. },
  6588. "require": {
  6589. "php": ">=7.1"
  6590. },
  6591. "type": "library",
  6592. "extra": {
  6593. "branch-alias": {
  6594. "dev-main": "2.5-dev"
  6595. },
  6596. "thanks": {
  6597. "name": "symfony/contracts",
  6598. "url": "https://github.com/symfony/contracts"
  6599. }
  6600. },
  6601. "autoload": {
  6602. "files": [
  6603. "function.php"
  6604. ]
  6605. },
  6606. "notification-url": "https://packagist.org/downloads/",
  6607. "license": [
  6608. "MIT"
  6609. ],
  6610. "authors": [
  6611. {
  6612. "name": "Nicolas Grekas",
  6613. "email": "p@tchwork.com"
  6614. },
  6615. {
  6616. "name": "Symfony Community",
  6617. "homepage": "https://symfony.com/contributors"
  6618. }
  6619. ],
  6620. "description": "A generic function and convention to trigger deprecation notices",
  6621. "homepage": "https://symfony.com",
  6622. "support": {
  6623. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  6624. },
  6625. "funding": [
  6626. {
  6627. "url": "https://symfony.com/sponsor",
  6628. "type": "custom"
  6629. },
  6630. {
  6631. "url": "https://github.com/fabpot",
  6632. "type": "github"
  6633. },
  6634. {
  6635. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6636. "type": "tidelift"
  6637. }
  6638. ],
  6639. "time": "2022-01-02T09:53:40+00:00"
  6640. },
  6641. {
  6642. "name": "symfony/error-handler",
  6643. "version": "v5.4.26",
  6644. "source": {
  6645. "type": "git",
  6646. "url": "https://github.com/symfony/error-handler.git",
  6647. "reference": "b26719213a39c9ba57520cbc5e52bfcc5e8d92f9"
  6648. },
  6649. "dist": {
  6650. "type": "zip",
  6651. "url": "https://api.github.com/repos/symfony/error-handler/zipball/b26719213a39c9ba57520cbc5e52bfcc5e8d92f9",
  6652. "reference": "b26719213a39c9ba57520cbc5e52bfcc5e8d92f9",
  6653. "shasum": ""
  6654. },
  6655. "require": {
  6656. "php": ">=7.2.5",
  6657. "psr/log": "^1|^2|^3",
  6658. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6659. },
  6660. "require-dev": {
  6661. "symfony/deprecation-contracts": "^2.1|^3",
  6662. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6663. "symfony/serializer": "^4.4|^5.0|^6.0"
  6664. },
  6665. "bin": [
  6666. "Resources/bin/patch-type-declarations"
  6667. ],
  6668. "type": "library",
  6669. "autoload": {
  6670. "psr-4": {
  6671. "Symfony\\Component\\ErrorHandler\\": ""
  6672. },
  6673. "exclude-from-classmap": [
  6674. "/Tests/"
  6675. ]
  6676. },
  6677. "notification-url": "https://packagist.org/downloads/",
  6678. "license": [
  6679. "MIT"
  6680. ],
  6681. "authors": [
  6682. {
  6683. "name": "Fabien Potencier",
  6684. "email": "fabien@symfony.com"
  6685. },
  6686. {
  6687. "name": "Symfony Community",
  6688. "homepage": "https://symfony.com/contributors"
  6689. }
  6690. ],
  6691. "description": "Provides tools to manage errors and ease debugging PHP code",
  6692. "homepage": "https://symfony.com",
  6693. "support": {
  6694. "source": "https://github.com/symfony/error-handler/tree/v5.4.26"
  6695. },
  6696. "funding": [
  6697. {
  6698. "url": "https://symfony.com/sponsor",
  6699. "type": "custom"
  6700. },
  6701. {
  6702. "url": "https://github.com/fabpot",
  6703. "type": "github"
  6704. },
  6705. {
  6706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6707. "type": "tidelift"
  6708. }
  6709. ],
  6710. "time": "2023-07-16T16:48:57+00:00"
  6711. },
  6712. {
  6713. "name": "symfony/event-dispatcher",
  6714. "version": "v5.4.26",
  6715. "source": {
  6716. "type": "git",
  6717. "url": "https://github.com/symfony/event-dispatcher.git",
  6718. "reference": "5dcc00e03413f05c1e7900090927bb7247cb0aac"
  6719. },
  6720. "dist": {
  6721. "type": "zip",
  6722. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/5dcc00e03413f05c1e7900090927bb7247cb0aac",
  6723. "reference": "5dcc00e03413f05c1e7900090927bb7247cb0aac",
  6724. "shasum": ""
  6725. },
  6726. "require": {
  6727. "php": ">=7.2.5",
  6728. "symfony/deprecation-contracts": "^2.1|^3",
  6729. "symfony/event-dispatcher-contracts": "^2|^3",
  6730. "symfony/polyfill-php80": "^1.16"
  6731. },
  6732. "conflict": {
  6733. "symfony/dependency-injection": "<4.4"
  6734. },
  6735. "provide": {
  6736. "psr/event-dispatcher-implementation": "1.0",
  6737. "symfony/event-dispatcher-implementation": "2.0"
  6738. },
  6739. "require-dev": {
  6740. "psr/log": "^1|^2|^3",
  6741. "symfony/config": "^4.4|^5.0|^6.0",
  6742. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6743. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6744. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6745. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6746. "symfony/service-contracts": "^1.1|^2|^3",
  6747. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  6748. },
  6749. "suggest": {
  6750. "symfony/dependency-injection": "",
  6751. "symfony/http-kernel": ""
  6752. },
  6753. "type": "library",
  6754. "autoload": {
  6755. "psr-4": {
  6756. "Symfony\\Component\\EventDispatcher\\": ""
  6757. },
  6758. "exclude-from-classmap": [
  6759. "/Tests/"
  6760. ]
  6761. },
  6762. "notification-url": "https://packagist.org/downloads/",
  6763. "license": [
  6764. "MIT"
  6765. ],
  6766. "authors": [
  6767. {
  6768. "name": "Fabien Potencier",
  6769. "email": "fabien@symfony.com"
  6770. },
  6771. {
  6772. "name": "Symfony Community",
  6773. "homepage": "https://symfony.com/contributors"
  6774. }
  6775. ],
  6776. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6777. "homepage": "https://symfony.com",
  6778. "support": {
  6779. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.26"
  6780. },
  6781. "funding": [
  6782. {
  6783. "url": "https://symfony.com/sponsor",
  6784. "type": "custom"
  6785. },
  6786. {
  6787. "url": "https://github.com/fabpot",
  6788. "type": "github"
  6789. },
  6790. {
  6791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6792. "type": "tidelift"
  6793. }
  6794. ],
  6795. "time": "2023-07-06T06:34:20+00:00"
  6796. },
  6797. {
  6798. "name": "symfony/event-dispatcher-contracts",
  6799. "version": "v2.5.2",
  6800. "source": {
  6801. "type": "git",
  6802. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6803. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  6804. },
  6805. "dist": {
  6806. "type": "zip",
  6807. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  6808. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  6809. "shasum": ""
  6810. },
  6811. "require": {
  6812. "php": ">=7.2.5",
  6813. "psr/event-dispatcher": "^1"
  6814. },
  6815. "suggest": {
  6816. "symfony/event-dispatcher-implementation": ""
  6817. },
  6818. "type": "library",
  6819. "extra": {
  6820. "branch-alias": {
  6821. "dev-main": "2.5-dev"
  6822. },
  6823. "thanks": {
  6824. "name": "symfony/contracts",
  6825. "url": "https://github.com/symfony/contracts"
  6826. }
  6827. },
  6828. "autoload": {
  6829. "psr-4": {
  6830. "Symfony\\Contracts\\EventDispatcher\\": ""
  6831. }
  6832. },
  6833. "notification-url": "https://packagist.org/downloads/",
  6834. "license": [
  6835. "MIT"
  6836. ],
  6837. "authors": [
  6838. {
  6839. "name": "Nicolas Grekas",
  6840. "email": "p@tchwork.com"
  6841. },
  6842. {
  6843. "name": "Symfony Community",
  6844. "homepage": "https://symfony.com/contributors"
  6845. }
  6846. ],
  6847. "description": "Generic abstractions related to dispatching event",
  6848. "homepage": "https://symfony.com",
  6849. "keywords": [
  6850. "abstractions",
  6851. "contracts",
  6852. "decoupling",
  6853. "interfaces",
  6854. "interoperability",
  6855. "standards"
  6856. ],
  6857. "support": {
  6858. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  6859. },
  6860. "funding": [
  6861. {
  6862. "url": "https://symfony.com/sponsor",
  6863. "type": "custom"
  6864. },
  6865. {
  6866. "url": "https://github.com/fabpot",
  6867. "type": "github"
  6868. },
  6869. {
  6870. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6871. "type": "tidelift"
  6872. }
  6873. ],
  6874. "time": "2022-01-02T09:53:40+00:00"
  6875. },
  6876. {
  6877. "name": "symfony/finder",
  6878. "version": "v5.4.27",
  6879. "source": {
  6880. "type": "git",
  6881. "url": "https://github.com/symfony/finder.git",
  6882. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d"
  6883. },
  6884. "dist": {
  6885. "type": "zip",
  6886. "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  6887. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  6888. "shasum": ""
  6889. },
  6890. "require": {
  6891. "php": ">=7.2.5",
  6892. "symfony/deprecation-contracts": "^2.1|^3",
  6893. "symfony/polyfill-php80": "^1.16"
  6894. },
  6895. "type": "library",
  6896. "autoload": {
  6897. "psr-4": {
  6898. "Symfony\\Component\\Finder\\": ""
  6899. },
  6900. "exclude-from-classmap": [
  6901. "/Tests/"
  6902. ]
  6903. },
  6904. "notification-url": "https://packagist.org/downloads/",
  6905. "license": [
  6906. "MIT"
  6907. ],
  6908. "authors": [
  6909. {
  6910. "name": "Fabien Potencier",
  6911. "email": "fabien@symfony.com"
  6912. },
  6913. {
  6914. "name": "Symfony Community",
  6915. "homepage": "https://symfony.com/contributors"
  6916. }
  6917. ],
  6918. "description": "Finds files and directories via an intuitive fluent interface",
  6919. "homepage": "https://symfony.com",
  6920. "support": {
  6921. "source": "https://github.com/symfony/finder/tree/v5.4.27"
  6922. },
  6923. "funding": [
  6924. {
  6925. "url": "https://symfony.com/sponsor",
  6926. "type": "custom"
  6927. },
  6928. {
  6929. "url": "https://github.com/fabpot",
  6930. "type": "github"
  6931. },
  6932. {
  6933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6934. "type": "tidelift"
  6935. }
  6936. ],
  6937. "time": "2023-07-31T08:02:31+00:00"
  6938. },
  6939. {
  6940. "name": "symfony/http-foundation",
  6941. "version": "v5.4.28",
  6942. "source": {
  6943. "type": "git",
  6944. "url": "https://github.com/symfony/http-foundation.git",
  6945. "reference": "365992c83a836dfe635f1e903ccca43ee03d3dd2"
  6946. },
  6947. "dist": {
  6948. "type": "zip",
  6949. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/365992c83a836dfe635f1e903ccca43ee03d3dd2",
  6950. "reference": "365992c83a836dfe635f1e903ccca43ee03d3dd2",
  6951. "shasum": ""
  6952. },
  6953. "require": {
  6954. "php": ">=7.2.5",
  6955. "symfony/deprecation-contracts": "^2.1|^3",
  6956. "symfony/polyfill-mbstring": "~1.1",
  6957. "symfony/polyfill-php80": "^1.16"
  6958. },
  6959. "require-dev": {
  6960. "predis/predis": "~1.0",
  6961. "symfony/cache": "^4.4|^5.0|^6.0",
  6962. "symfony/dependency-injection": "^5.4|^6.0",
  6963. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6964. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6965. "symfony/mime": "^4.4|^5.0|^6.0",
  6966. "symfony/rate-limiter": "^5.2|^6.0"
  6967. },
  6968. "suggest": {
  6969. "symfony/mime": "To use the file extension guesser"
  6970. },
  6971. "type": "library",
  6972. "autoload": {
  6973. "psr-4": {
  6974. "Symfony\\Component\\HttpFoundation\\": ""
  6975. },
  6976. "exclude-from-classmap": [
  6977. "/Tests/"
  6978. ]
  6979. },
  6980. "notification-url": "https://packagist.org/downloads/",
  6981. "license": [
  6982. "MIT"
  6983. ],
  6984. "authors": [
  6985. {
  6986. "name": "Fabien Potencier",
  6987. "email": "fabien@symfony.com"
  6988. },
  6989. {
  6990. "name": "Symfony Community",
  6991. "homepage": "https://symfony.com/contributors"
  6992. }
  6993. ],
  6994. "description": "Defines an object-oriented layer for the HTTP specification",
  6995. "homepage": "https://symfony.com",
  6996. "support": {
  6997. "source": "https://github.com/symfony/http-foundation/tree/v5.4.28"
  6998. },
  6999. "funding": [
  7000. {
  7001. "url": "https://symfony.com/sponsor",
  7002. "type": "custom"
  7003. },
  7004. {
  7005. "url": "https://github.com/fabpot",
  7006. "type": "github"
  7007. },
  7008. {
  7009. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7010. "type": "tidelift"
  7011. }
  7012. ],
  7013. "time": "2023-08-21T07:23:18+00:00"
  7014. },
  7015. {
  7016. "name": "symfony/http-kernel",
  7017. "version": "v5.4.28",
  7018. "source": {
  7019. "type": "git",
  7020. "url": "https://github.com/symfony/http-kernel.git",
  7021. "reference": "127a2322ca1828157901092518b8ea8e4e1109d4"
  7022. },
  7023. "dist": {
  7024. "type": "zip",
  7025. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/127a2322ca1828157901092518b8ea8e4e1109d4",
  7026. "reference": "127a2322ca1828157901092518b8ea8e4e1109d4",
  7027. "shasum": ""
  7028. },
  7029. "require": {
  7030. "php": ">=7.2.5",
  7031. "psr/log": "^1|^2",
  7032. "symfony/deprecation-contracts": "^2.1|^3",
  7033. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7034. "symfony/event-dispatcher": "^5.0|^6.0",
  7035. "symfony/http-foundation": "^5.4.21|^6.2.7",
  7036. "symfony/polyfill-ctype": "^1.8",
  7037. "symfony/polyfill-php73": "^1.9",
  7038. "symfony/polyfill-php80": "^1.16"
  7039. },
  7040. "conflict": {
  7041. "symfony/browser-kit": "<5.4",
  7042. "symfony/cache": "<5.0",
  7043. "symfony/config": "<5.0",
  7044. "symfony/console": "<4.4",
  7045. "symfony/dependency-injection": "<5.3",
  7046. "symfony/doctrine-bridge": "<5.0",
  7047. "symfony/form": "<5.0",
  7048. "symfony/http-client": "<5.0",
  7049. "symfony/mailer": "<5.0",
  7050. "symfony/messenger": "<5.0",
  7051. "symfony/translation": "<5.0",
  7052. "symfony/twig-bridge": "<5.0",
  7053. "symfony/validator": "<5.0",
  7054. "twig/twig": "<2.13"
  7055. },
  7056. "provide": {
  7057. "psr/log-implementation": "1.0|2.0"
  7058. },
  7059. "require-dev": {
  7060. "psr/cache": "^1.0|^2.0|^3.0",
  7061. "symfony/browser-kit": "^5.4|^6.0",
  7062. "symfony/config": "^5.0|^6.0",
  7063. "symfony/console": "^4.4|^5.0|^6.0",
  7064. "symfony/css-selector": "^4.4|^5.0|^6.0",
  7065. "symfony/dependency-injection": "^5.3|^6.0",
  7066. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  7067. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7068. "symfony/finder": "^4.4|^5.0|^6.0",
  7069. "symfony/http-client-contracts": "^1.1|^2|^3",
  7070. "symfony/process": "^4.4|^5.0|^6.0",
  7071. "symfony/routing": "^4.4|^5.0|^6.0",
  7072. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  7073. "symfony/translation": "^4.4|^5.0|^6.0",
  7074. "symfony/translation-contracts": "^1.1|^2|^3",
  7075. "twig/twig": "^2.13|^3.0.4"
  7076. },
  7077. "suggest": {
  7078. "symfony/browser-kit": "",
  7079. "symfony/config": "",
  7080. "symfony/console": "",
  7081. "symfony/dependency-injection": ""
  7082. },
  7083. "type": "library",
  7084. "autoload": {
  7085. "psr-4": {
  7086. "Symfony\\Component\\HttpKernel\\": ""
  7087. },
  7088. "exclude-from-classmap": [
  7089. "/Tests/"
  7090. ]
  7091. },
  7092. "notification-url": "https://packagist.org/downloads/",
  7093. "license": [
  7094. "MIT"
  7095. ],
  7096. "authors": [
  7097. {
  7098. "name": "Fabien Potencier",
  7099. "email": "fabien@symfony.com"
  7100. },
  7101. {
  7102. "name": "Symfony Community",
  7103. "homepage": "https://symfony.com/contributors"
  7104. }
  7105. ],
  7106. "description": "Provides a structured process for converting a Request into a Response",
  7107. "homepage": "https://symfony.com",
  7108. "support": {
  7109. "source": "https://github.com/symfony/http-kernel/tree/v5.4.28"
  7110. },
  7111. "funding": [
  7112. {
  7113. "url": "https://symfony.com/sponsor",
  7114. "type": "custom"
  7115. },
  7116. {
  7117. "url": "https://github.com/fabpot",
  7118. "type": "github"
  7119. },
  7120. {
  7121. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7122. "type": "tidelift"
  7123. }
  7124. ],
  7125. "time": "2023-08-26T13:47:51+00:00"
  7126. },
  7127. {
  7128. "name": "symfony/mime",
  7129. "version": "v5.4.26",
  7130. "source": {
  7131. "type": "git",
  7132. "url": "https://github.com/symfony/mime.git",
  7133. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2"
  7134. },
  7135. "dist": {
  7136. "type": "zip",
  7137. "url": "https://api.github.com/repos/symfony/mime/zipball/2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  7138. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  7139. "shasum": ""
  7140. },
  7141. "require": {
  7142. "php": ">=7.2.5",
  7143. "symfony/deprecation-contracts": "^2.1|^3",
  7144. "symfony/polyfill-intl-idn": "^1.10",
  7145. "symfony/polyfill-mbstring": "^1.0",
  7146. "symfony/polyfill-php80": "^1.16"
  7147. },
  7148. "conflict": {
  7149. "egulias/email-validator": "~3.0.0",
  7150. "phpdocumentor/reflection-docblock": "<3.2.2",
  7151. "phpdocumentor/type-resolver": "<1.4.0",
  7152. "symfony/mailer": "<4.4",
  7153. "symfony/serializer": "<5.4.26|>=6,<6.2.13|>=6.3,<6.3.2"
  7154. },
  7155. "require-dev": {
  7156. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7157. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7158. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7159. "symfony/property-access": "^4.4|^5.1|^6.0",
  7160. "symfony/property-info": "^4.4|^5.1|^6.0",
  7161. "symfony/serializer": "^5.4.26|~6.2.13|^6.3.2"
  7162. },
  7163. "type": "library",
  7164. "autoload": {
  7165. "psr-4": {
  7166. "Symfony\\Component\\Mime\\": ""
  7167. },
  7168. "exclude-from-classmap": [
  7169. "/Tests/"
  7170. ]
  7171. },
  7172. "notification-url": "https://packagist.org/downloads/",
  7173. "license": [
  7174. "MIT"
  7175. ],
  7176. "authors": [
  7177. {
  7178. "name": "Fabien Potencier",
  7179. "email": "fabien@symfony.com"
  7180. },
  7181. {
  7182. "name": "Symfony Community",
  7183. "homepage": "https://symfony.com/contributors"
  7184. }
  7185. ],
  7186. "description": "Allows manipulating MIME messages",
  7187. "homepage": "https://symfony.com",
  7188. "keywords": [
  7189. "mime",
  7190. "mime-type"
  7191. ],
  7192. "support": {
  7193. "source": "https://github.com/symfony/mime/tree/v5.4.26"
  7194. },
  7195. "funding": [
  7196. {
  7197. "url": "https://symfony.com/sponsor",
  7198. "type": "custom"
  7199. },
  7200. {
  7201. "url": "https://github.com/fabpot",
  7202. "type": "github"
  7203. },
  7204. {
  7205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7206. "type": "tidelift"
  7207. }
  7208. ],
  7209. "time": "2023-07-27T06:29:31+00:00"
  7210. },
  7211. {
  7212. "name": "symfony/polyfill-ctype",
  7213. "version": "v1.28.0",
  7214. "source": {
  7215. "type": "git",
  7216. "url": "https://github.com/symfony/polyfill-ctype.git",
  7217. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  7218. },
  7219. "dist": {
  7220. "type": "zip",
  7221. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7222. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7223. "shasum": ""
  7224. },
  7225. "require": {
  7226. "php": ">=7.1"
  7227. },
  7228. "provide": {
  7229. "ext-ctype": "*"
  7230. },
  7231. "suggest": {
  7232. "ext-ctype": "For best performance"
  7233. },
  7234. "type": "library",
  7235. "extra": {
  7236. "branch-alias": {
  7237. "dev-main": "1.28-dev"
  7238. },
  7239. "thanks": {
  7240. "name": "symfony/polyfill",
  7241. "url": "https://github.com/symfony/polyfill"
  7242. }
  7243. },
  7244. "autoload": {
  7245. "files": [
  7246. "bootstrap.php"
  7247. ],
  7248. "psr-4": {
  7249. "Symfony\\Polyfill\\Ctype\\": ""
  7250. }
  7251. },
  7252. "notification-url": "https://packagist.org/downloads/",
  7253. "license": [
  7254. "MIT"
  7255. ],
  7256. "authors": [
  7257. {
  7258. "name": "Gert de Pagter",
  7259. "email": "BackEndTea@gmail.com"
  7260. },
  7261. {
  7262. "name": "Symfony Community",
  7263. "homepage": "https://symfony.com/contributors"
  7264. }
  7265. ],
  7266. "description": "Symfony polyfill for ctype functions",
  7267. "homepage": "https://symfony.com",
  7268. "keywords": [
  7269. "compatibility",
  7270. "ctype",
  7271. "polyfill",
  7272. "portable"
  7273. ],
  7274. "support": {
  7275. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  7276. },
  7277. "funding": [
  7278. {
  7279. "url": "https://symfony.com/sponsor",
  7280. "type": "custom"
  7281. },
  7282. {
  7283. "url": "https://github.com/fabpot",
  7284. "type": "github"
  7285. },
  7286. {
  7287. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7288. "type": "tidelift"
  7289. }
  7290. ],
  7291. "time": "2023-01-26T09:26:14+00:00"
  7292. },
  7293. {
  7294. "name": "symfony/polyfill-iconv",
  7295. "version": "v1.28.0",
  7296. "source": {
  7297. "type": "git",
  7298. "url": "https://github.com/symfony/polyfill-iconv.git",
  7299. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  7300. },
  7301. "dist": {
  7302. "type": "zip",
  7303. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  7304. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  7305. "shasum": ""
  7306. },
  7307. "require": {
  7308. "php": ">=7.1"
  7309. },
  7310. "provide": {
  7311. "ext-iconv": "*"
  7312. },
  7313. "suggest": {
  7314. "ext-iconv": "For best performance"
  7315. },
  7316. "type": "library",
  7317. "extra": {
  7318. "branch-alias": {
  7319. "dev-main": "1.28-dev"
  7320. },
  7321. "thanks": {
  7322. "name": "symfony/polyfill",
  7323. "url": "https://github.com/symfony/polyfill"
  7324. }
  7325. },
  7326. "autoload": {
  7327. "files": [
  7328. "bootstrap.php"
  7329. ],
  7330. "psr-4": {
  7331. "Symfony\\Polyfill\\Iconv\\": ""
  7332. }
  7333. },
  7334. "notification-url": "https://packagist.org/downloads/",
  7335. "license": [
  7336. "MIT"
  7337. ],
  7338. "authors": [
  7339. {
  7340. "name": "Nicolas Grekas",
  7341. "email": "p@tchwork.com"
  7342. },
  7343. {
  7344. "name": "Symfony Community",
  7345. "homepage": "https://symfony.com/contributors"
  7346. }
  7347. ],
  7348. "description": "Symfony polyfill for the Iconv extension",
  7349. "homepage": "https://symfony.com",
  7350. "keywords": [
  7351. "compatibility",
  7352. "iconv",
  7353. "polyfill",
  7354. "portable",
  7355. "shim"
  7356. ],
  7357. "support": {
  7358. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
  7359. },
  7360. "funding": [
  7361. {
  7362. "url": "https://symfony.com/sponsor",
  7363. "type": "custom"
  7364. },
  7365. {
  7366. "url": "https://github.com/fabpot",
  7367. "type": "github"
  7368. },
  7369. {
  7370. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7371. "type": "tidelift"
  7372. }
  7373. ],
  7374. "time": "2023-01-26T09:26:14+00:00"
  7375. },
  7376. {
  7377. "name": "symfony/polyfill-intl-grapheme",
  7378. "version": "v1.28.0",
  7379. "source": {
  7380. "type": "git",
  7381. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7382. "reference": "875e90aeea2777b6f135677f618529449334a612"
  7383. },
  7384. "dist": {
  7385. "type": "zip",
  7386. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  7387. "reference": "875e90aeea2777b6f135677f618529449334a612",
  7388. "shasum": ""
  7389. },
  7390. "require": {
  7391. "php": ">=7.1"
  7392. },
  7393. "suggest": {
  7394. "ext-intl": "For best performance"
  7395. },
  7396. "type": "library",
  7397. "extra": {
  7398. "branch-alias": {
  7399. "dev-main": "1.28-dev"
  7400. },
  7401. "thanks": {
  7402. "name": "symfony/polyfill",
  7403. "url": "https://github.com/symfony/polyfill"
  7404. }
  7405. },
  7406. "autoload": {
  7407. "files": [
  7408. "bootstrap.php"
  7409. ],
  7410. "psr-4": {
  7411. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7412. }
  7413. },
  7414. "notification-url": "https://packagist.org/downloads/",
  7415. "license": [
  7416. "MIT"
  7417. ],
  7418. "authors": [
  7419. {
  7420. "name": "Nicolas Grekas",
  7421. "email": "p@tchwork.com"
  7422. },
  7423. {
  7424. "name": "Symfony Community",
  7425. "homepage": "https://symfony.com/contributors"
  7426. }
  7427. ],
  7428. "description": "Symfony polyfill for intl's grapheme_* functions",
  7429. "homepage": "https://symfony.com",
  7430. "keywords": [
  7431. "compatibility",
  7432. "grapheme",
  7433. "intl",
  7434. "polyfill",
  7435. "portable",
  7436. "shim"
  7437. ],
  7438. "support": {
  7439. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  7440. },
  7441. "funding": [
  7442. {
  7443. "url": "https://symfony.com/sponsor",
  7444. "type": "custom"
  7445. },
  7446. {
  7447. "url": "https://github.com/fabpot",
  7448. "type": "github"
  7449. },
  7450. {
  7451. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7452. "type": "tidelift"
  7453. }
  7454. ],
  7455. "time": "2023-01-26T09:26:14+00:00"
  7456. },
  7457. {
  7458. "name": "symfony/polyfill-intl-idn",
  7459. "version": "v1.28.0",
  7460. "source": {
  7461. "type": "git",
  7462. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7463. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  7464. },
  7465. "dist": {
  7466. "type": "zip",
  7467. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  7468. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  7469. "shasum": ""
  7470. },
  7471. "require": {
  7472. "php": ">=7.1",
  7473. "symfony/polyfill-intl-normalizer": "^1.10",
  7474. "symfony/polyfill-php72": "^1.10"
  7475. },
  7476. "suggest": {
  7477. "ext-intl": "For best performance"
  7478. },
  7479. "type": "library",
  7480. "extra": {
  7481. "branch-alias": {
  7482. "dev-main": "1.28-dev"
  7483. },
  7484. "thanks": {
  7485. "name": "symfony/polyfill",
  7486. "url": "https://github.com/symfony/polyfill"
  7487. }
  7488. },
  7489. "autoload": {
  7490. "files": [
  7491. "bootstrap.php"
  7492. ],
  7493. "psr-4": {
  7494. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7495. }
  7496. },
  7497. "notification-url": "https://packagist.org/downloads/",
  7498. "license": [
  7499. "MIT"
  7500. ],
  7501. "authors": [
  7502. {
  7503. "name": "Laurent Bassin",
  7504. "email": "laurent@bassin.info"
  7505. },
  7506. {
  7507. "name": "Trevor Rowbotham",
  7508. "email": "trevor.rowbotham@pm.me"
  7509. },
  7510. {
  7511. "name": "Symfony Community",
  7512. "homepage": "https://symfony.com/contributors"
  7513. }
  7514. ],
  7515. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7516. "homepage": "https://symfony.com",
  7517. "keywords": [
  7518. "compatibility",
  7519. "idn",
  7520. "intl",
  7521. "polyfill",
  7522. "portable",
  7523. "shim"
  7524. ],
  7525. "support": {
  7526. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  7527. },
  7528. "funding": [
  7529. {
  7530. "url": "https://symfony.com/sponsor",
  7531. "type": "custom"
  7532. },
  7533. {
  7534. "url": "https://github.com/fabpot",
  7535. "type": "github"
  7536. },
  7537. {
  7538. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7539. "type": "tidelift"
  7540. }
  7541. ],
  7542. "time": "2023-01-26T09:30:37+00:00"
  7543. },
  7544. {
  7545. "name": "symfony/polyfill-intl-normalizer",
  7546. "version": "v1.28.0",
  7547. "source": {
  7548. "type": "git",
  7549. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7550. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  7551. },
  7552. "dist": {
  7553. "type": "zip",
  7554. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7555. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7556. "shasum": ""
  7557. },
  7558. "require": {
  7559. "php": ">=7.1"
  7560. },
  7561. "suggest": {
  7562. "ext-intl": "For best performance"
  7563. },
  7564. "type": "library",
  7565. "extra": {
  7566. "branch-alias": {
  7567. "dev-main": "1.28-dev"
  7568. },
  7569. "thanks": {
  7570. "name": "symfony/polyfill",
  7571. "url": "https://github.com/symfony/polyfill"
  7572. }
  7573. },
  7574. "autoload": {
  7575. "files": [
  7576. "bootstrap.php"
  7577. ],
  7578. "psr-4": {
  7579. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7580. },
  7581. "classmap": [
  7582. "Resources/stubs"
  7583. ]
  7584. },
  7585. "notification-url": "https://packagist.org/downloads/",
  7586. "license": [
  7587. "MIT"
  7588. ],
  7589. "authors": [
  7590. {
  7591. "name": "Nicolas Grekas",
  7592. "email": "p@tchwork.com"
  7593. },
  7594. {
  7595. "name": "Symfony Community",
  7596. "homepage": "https://symfony.com/contributors"
  7597. }
  7598. ],
  7599. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7600. "homepage": "https://symfony.com",
  7601. "keywords": [
  7602. "compatibility",
  7603. "intl",
  7604. "normalizer",
  7605. "polyfill",
  7606. "portable",
  7607. "shim"
  7608. ],
  7609. "support": {
  7610. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  7611. },
  7612. "funding": [
  7613. {
  7614. "url": "https://symfony.com/sponsor",
  7615. "type": "custom"
  7616. },
  7617. {
  7618. "url": "https://github.com/fabpot",
  7619. "type": "github"
  7620. },
  7621. {
  7622. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7623. "type": "tidelift"
  7624. }
  7625. ],
  7626. "time": "2023-01-26T09:26:14+00:00"
  7627. },
  7628. {
  7629. "name": "symfony/polyfill-mbstring",
  7630. "version": "v1.28.0",
  7631. "source": {
  7632. "type": "git",
  7633. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7634. "reference": "42292d99c55abe617799667f454222c54c60e229"
  7635. },
  7636. "dist": {
  7637. "type": "zip",
  7638. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  7639. "reference": "42292d99c55abe617799667f454222c54c60e229",
  7640. "shasum": ""
  7641. },
  7642. "require": {
  7643. "php": ">=7.1"
  7644. },
  7645. "provide": {
  7646. "ext-mbstring": "*"
  7647. },
  7648. "suggest": {
  7649. "ext-mbstring": "For best performance"
  7650. },
  7651. "type": "library",
  7652. "extra": {
  7653. "branch-alias": {
  7654. "dev-main": "1.28-dev"
  7655. },
  7656. "thanks": {
  7657. "name": "symfony/polyfill",
  7658. "url": "https://github.com/symfony/polyfill"
  7659. }
  7660. },
  7661. "autoload": {
  7662. "files": [
  7663. "bootstrap.php"
  7664. ],
  7665. "psr-4": {
  7666. "Symfony\\Polyfill\\Mbstring\\": ""
  7667. }
  7668. },
  7669. "notification-url": "https://packagist.org/downloads/",
  7670. "license": [
  7671. "MIT"
  7672. ],
  7673. "authors": [
  7674. {
  7675. "name": "Nicolas Grekas",
  7676. "email": "p@tchwork.com"
  7677. },
  7678. {
  7679. "name": "Symfony Community",
  7680. "homepage": "https://symfony.com/contributors"
  7681. }
  7682. ],
  7683. "description": "Symfony polyfill for the Mbstring extension",
  7684. "homepage": "https://symfony.com",
  7685. "keywords": [
  7686. "compatibility",
  7687. "mbstring",
  7688. "polyfill",
  7689. "portable",
  7690. "shim"
  7691. ],
  7692. "support": {
  7693. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  7694. },
  7695. "funding": [
  7696. {
  7697. "url": "https://symfony.com/sponsor",
  7698. "type": "custom"
  7699. },
  7700. {
  7701. "url": "https://github.com/fabpot",
  7702. "type": "github"
  7703. },
  7704. {
  7705. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7706. "type": "tidelift"
  7707. }
  7708. ],
  7709. "time": "2023-07-28T09:04:16+00:00"
  7710. },
  7711. {
  7712. "name": "symfony/polyfill-php72",
  7713. "version": "v1.28.0",
  7714. "source": {
  7715. "type": "git",
  7716. "url": "https://github.com/symfony/polyfill-php72.git",
  7717. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  7718. },
  7719. "dist": {
  7720. "type": "zip",
  7721. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  7722. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  7723. "shasum": ""
  7724. },
  7725. "require": {
  7726. "php": ">=7.1"
  7727. },
  7728. "type": "library",
  7729. "extra": {
  7730. "branch-alias": {
  7731. "dev-main": "1.28-dev"
  7732. },
  7733. "thanks": {
  7734. "name": "symfony/polyfill",
  7735. "url": "https://github.com/symfony/polyfill"
  7736. }
  7737. },
  7738. "autoload": {
  7739. "files": [
  7740. "bootstrap.php"
  7741. ],
  7742. "psr-4": {
  7743. "Symfony\\Polyfill\\Php72\\": ""
  7744. }
  7745. },
  7746. "notification-url": "https://packagist.org/downloads/",
  7747. "license": [
  7748. "MIT"
  7749. ],
  7750. "authors": [
  7751. {
  7752. "name": "Nicolas Grekas",
  7753. "email": "p@tchwork.com"
  7754. },
  7755. {
  7756. "name": "Symfony Community",
  7757. "homepage": "https://symfony.com/contributors"
  7758. }
  7759. ],
  7760. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7761. "homepage": "https://symfony.com",
  7762. "keywords": [
  7763. "compatibility",
  7764. "polyfill",
  7765. "portable",
  7766. "shim"
  7767. ],
  7768. "support": {
  7769. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  7770. },
  7771. "funding": [
  7772. {
  7773. "url": "https://symfony.com/sponsor",
  7774. "type": "custom"
  7775. },
  7776. {
  7777. "url": "https://github.com/fabpot",
  7778. "type": "github"
  7779. },
  7780. {
  7781. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7782. "type": "tidelift"
  7783. }
  7784. ],
  7785. "time": "2023-01-26T09:26:14+00:00"
  7786. },
  7787. {
  7788. "name": "symfony/polyfill-php73",
  7789. "version": "v1.28.0",
  7790. "source": {
  7791. "type": "git",
  7792. "url": "https://github.com/symfony/polyfill-php73.git",
  7793. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  7794. },
  7795. "dist": {
  7796. "type": "zip",
  7797. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  7798. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  7799. "shasum": ""
  7800. },
  7801. "require": {
  7802. "php": ">=7.1"
  7803. },
  7804. "type": "library",
  7805. "extra": {
  7806. "branch-alias": {
  7807. "dev-main": "1.28-dev"
  7808. },
  7809. "thanks": {
  7810. "name": "symfony/polyfill",
  7811. "url": "https://github.com/symfony/polyfill"
  7812. }
  7813. },
  7814. "autoload": {
  7815. "files": [
  7816. "bootstrap.php"
  7817. ],
  7818. "psr-4": {
  7819. "Symfony\\Polyfill\\Php73\\": ""
  7820. },
  7821. "classmap": [
  7822. "Resources/stubs"
  7823. ]
  7824. },
  7825. "notification-url": "https://packagist.org/downloads/",
  7826. "license": [
  7827. "MIT"
  7828. ],
  7829. "authors": [
  7830. {
  7831. "name": "Nicolas Grekas",
  7832. "email": "p@tchwork.com"
  7833. },
  7834. {
  7835. "name": "Symfony Community",
  7836. "homepage": "https://symfony.com/contributors"
  7837. }
  7838. ],
  7839. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  7840. "homepage": "https://symfony.com",
  7841. "keywords": [
  7842. "compatibility",
  7843. "polyfill",
  7844. "portable",
  7845. "shim"
  7846. ],
  7847. "support": {
  7848. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  7849. },
  7850. "funding": [
  7851. {
  7852. "url": "https://symfony.com/sponsor",
  7853. "type": "custom"
  7854. },
  7855. {
  7856. "url": "https://github.com/fabpot",
  7857. "type": "github"
  7858. },
  7859. {
  7860. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7861. "type": "tidelift"
  7862. }
  7863. ],
  7864. "time": "2023-01-26T09:26:14+00:00"
  7865. },
  7866. {
  7867. "name": "symfony/polyfill-php80",
  7868. "version": "v1.28.0",
  7869. "source": {
  7870. "type": "git",
  7871. "url": "https://github.com/symfony/polyfill-php80.git",
  7872. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  7873. },
  7874. "dist": {
  7875. "type": "zip",
  7876. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7877. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7878. "shasum": ""
  7879. },
  7880. "require": {
  7881. "php": ">=7.1"
  7882. },
  7883. "type": "library",
  7884. "extra": {
  7885. "branch-alias": {
  7886. "dev-main": "1.28-dev"
  7887. },
  7888. "thanks": {
  7889. "name": "symfony/polyfill",
  7890. "url": "https://github.com/symfony/polyfill"
  7891. }
  7892. },
  7893. "autoload": {
  7894. "files": [
  7895. "bootstrap.php"
  7896. ],
  7897. "psr-4": {
  7898. "Symfony\\Polyfill\\Php80\\": ""
  7899. },
  7900. "classmap": [
  7901. "Resources/stubs"
  7902. ]
  7903. },
  7904. "notification-url": "https://packagist.org/downloads/",
  7905. "license": [
  7906. "MIT"
  7907. ],
  7908. "authors": [
  7909. {
  7910. "name": "Ion Bazan",
  7911. "email": "ion.bazan@gmail.com"
  7912. },
  7913. {
  7914. "name": "Nicolas Grekas",
  7915. "email": "p@tchwork.com"
  7916. },
  7917. {
  7918. "name": "Symfony Community",
  7919. "homepage": "https://symfony.com/contributors"
  7920. }
  7921. ],
  7922. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7923. "homepage": "https://symfony.com",
  7924. "keywords": [
  7925. "compatibility",
  7926. "polyfill",
  7927. "portable",
  7928. "shim"
  7929. ],
  7930. "support": {
  7931. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  7932. },
  7933. "funding": [
  7934. {
  7935. "url": "https://symfony.com/sponsor",
  7936. "type": "custom"
  7937. },
  7938. {
  7939. "url": "https://github.com/fabpot",
  7940. "type": "github"
  7941. },
  7942. {
  7943. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7944. "type": "tidelift"
  7945. }
  7946. ],
  7947. "time": "2023-01-26T09:26:14+00:00"
  7948. },
  7949. {
  7950. "name": "symfony/polyfill-php81",
  7951. "version": "v1.28.0",
  7952. "source": {
  7953. "type": "git",
  7954. "url": "https://github.com/symfony/polyfill-php81.git",
  7955. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  7956. },
  7957. "dist": {
  7958. "type": "zip",
  7959. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  7960. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  7961. "shasum": ""
  7962. },
  7963. "require": {
  7964. "php": ">=7.1"
  7965. },
  7966. "type": "library",
  7967. "extra": {
  7968. "branch-alias": {
  7969. "dev-main": "1.28-dev"
  7970. },
  7971. "thanks": {
  7972. "name": "symfony/polyfill",
  7973. "url": "https://github.com/symfony/polyfill"
  7974. }
  7975. },
  7976. "autoload": {
  7977. "files": [
  7978. "bootstrap.php"
  7979. ],
  7980. "psr-4": {
  7981. "Symfony\\Polyfill\\Php81\\": ""
  7982. },
  7983. "classmap": [
  7984. "Resources/stubs"
  7985. ]
  7986. },
  7987. "notification-url": "https://packagist.org/downloads/",
  7988. "license": [
  7989. "MIT"
  7990. ],
  7991. "authors": [
  7992. {
  7993. "name": "Nicolas Grekas",
  7994. "email": "p@tchwork.com"
  7995. },
  7996. {
  7997. "name": "Symfony Community",
  7998. "homepage": "https://symfony.com/contributors"
  7999. }
  8000. ],
  8001. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  8002. "homepage": "https://symfony.com",
  8003. "keywords": [
  8004. "compatibility",
  8005. "polyfill",
  8006. "portable",
  8007. "shim"
  8008. ],
  8009. "support": {
  8010. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  8011. },
  8012. "funding": [
  8013. {
  8014. "url": "https://symfony.com/sponsor",
  8015. "type": "custom"
  8016. },
  8017. {
  8018. "url": "https://github.com/fabpot",
  8019. "type": "github"
  8020. },
  8021. {
  8022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8023. "type": "tidelift"
  8024. }
  8025. ],
  8026. "time": "2023-01-26T09:26:14+00:00"
  8027. },
  8028. {
  8029. "name": "symfony/process",
  8030. "version": "v5.4.28",
  8031. "source": {
  8032. "type": "git",
  8033. "url": "https://github.com/symfony/process.git",
  8034. "reference": "45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b"
  8035. },
  8036. "dist": {
  8037. "type": "zip",
  8038. "url": "https://api.github.com/repos/symfony/process/zipball/45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b",
  8039. "reference": "45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b",
  8040. "shasum": ""
  8041. },
  8042. "require": {
  8043. "php": ">=7.2.5",
  8044. "symfony/polyfill-php80": "^1.16"
  8045. },
  8046. "type": "library",
  8047. "autoload": {
  8048. "psr-4": {
  8049. "Symfony\\Component\\Process\\": ""
  8050. },
  8051. "exclude-from-classmap": [
  8052. "/Tests/"
  8053. ]
  8054. },
  8055. "notification-url": "https://packagist.org/downloads/",
  8056. "license": [
  8057. "MIT"
  8058. ],
  8059. "authors": [
  8060. {
  8061. "name": "Fabien Potencier",
  8062. "email": "fabien@symfony.com"
  8063. },
  8064. {
  8065. "name": "Symfony Community",
  8066. "homepage": "https://symfony.com/contributors"
  8067. }
  8068. ],
  8069. "description": "Executes commands in sub-processes",
  8070. "homepage": "https://symfony.com",
  8071. "support": {
  8072. "source": "https://github.com/symfony/process/tree/v5.4.28"
  8073. },
  8074. "funding": [
  8075. {
  8076. "url": "https://symfony.com/sponsor",
  8077. "type": "custom"
  8078. },
  8079. {
  8080. "url": "https://github.com/fabpot",
  8081. "type": "github"
  8082. },
  8083. {
  8084. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8085. "type": "tidelift"
  8086. }
  8087. ],
  8088. "time": "2023-08-07T10:36:04+00:00"
  8089. },
  8090. {
  8091. "name": "symfony/routing",
  8092. "version": "v5.4.26",
  8093. "source": {
  8094. "type": "git",
  8095. "url": "https://github.com/symfony/routing.git",
  8096. "reference": "853fc7df96befc468692de0a48831b38f04d2cb2"
  8097. },
  8098. "dist": {
  8099. "type": "zip",
  8100. "url": "https://api.github.com/repos/symfony/routing/zipball/853fc7df96befc468692de0a48831b38f04d2cb2",
  8101. "reference": "853fc7df96befc468692de0a48831b38f04d2cb2",
  8102. "shasum": ""
  8103. },
  8104. "require": {
  8105. "php": ">=7.2.5",
  8106. "symfony/deprecation-contracts": "^2.1|^3",
  8107. "symfony/polyfill-php80": "^1.16"
  8108. },
  8109. "conflict": {
  8110. "doctrine/annotations": "<1.12",
  8111. "symfony/config": "<5.3",
  8112. "symfony/dependency-injection": "<4.4",
  8113. "symfony/yaml": "<4.4"
  8114. },
  8115. "require-dev": {
  8116. "doctrine/annotations": "^1.12|^2",
  8117. "psr/log": "^1|^2|^3",
  8118. "symfony/config": "^5.3|^6.0",
  8119. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  8120. "symfony/expression-language": "^4.4|^5.0|^6.0",
  8121. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  8122. "symfony/yaml": "^4.4|^5.0|^6.0"
  8123. },
  8124. "suggest": {
  8125. "symfony/config": "For using the all-in-one router or any loader",
  8126. "symfony/expression-language": "For using expression matching",
  8127. "symfony/http-foundation": "For using a Symfony Request object",
  8128. "symfony/yaml": "For using the YAML loader"
  8129. },
  8130. "type": "library",
  8131. "autoload": {
  8132. "psr-4": {
  8133. "Symfony\\Component\\Routing\\": ""
  8134. },
  8135. "exclude-from-classmap": [
  8136. "/Tests/"
  8137. ]
  8138. },
  8139. "notification-url": "https://packagist.org/downloads/",
  8140. "license": [
  8141. "MIT"
  8142. ],
  8143. "authors": [
  8144. {
  8145. "name": "Fabien Potencier",
  8146. "email": "fabien@symfony.com"
  8147. },
  8148. {
  8149. "name": "Symfony Community",
  8150. "homepage": "https://symfony.com/contributors"
  8151. }
  8152. ],
  8153. "description": "Maps an HTTP request to a set of configuration variables",
  8154. "homepage": "https://symfony.com",
  8155. "keywords": [
  8156. "router",
  8157. "routing",
  8158. "uri",
  8159. "url"
  8160. ],
  8161. "support": {
  8162. "source": "https://github.com/symfony/routing/tree/v5.4.26"
  8163. },
  8164. "funding": [
  8165. {
  8166. "url": "https://symfony.com/sponsor",
  8167. "type": "custom"
  8168. },
  8169. {
  8170. "url": "https://github.com/fabpot",
  8171. "type": "github"
  8172. },
  8173. {
  8174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8175. "type": "tidelift"
  8176. }
  8177. ],
  8178. "time": "2023-07-24T13:28:37+00:00"
  8179. },
  8180. {
  8181. "name": "symfony/service-contracts",
  8182. "version": "v2.5.2",
  8183. "source": {
  8184. "type": "git",
  8185. "url": "https://github.com/symfony/service-contracts.git",
  8186. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  8187. },
  8188. "dist": {
  8189. "type": "zip",
  8190. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  8191. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  8192. "shasum": ""
  8193. },
  8194. "require": {
  8195. "php": ">=7.2.5",
  8196. "psr/container": "^1.1",
  8197. "symfony/deprecation-contracts": "^2.1|^3"
  8198. },
  8199. "conflict": {
  8200. "ext-psr": "<1.1|>=2"
  8201. },
  8202. "suggest": {
  8203. "symfony/service-implementation": ""
  8204. },
  8205. "type": "library",
  8206. "extra": {
  8207. "branch-alias": {
  8208. "dev-main": "2.5-dev"
  8209. },
  8210. "thanks": {
  8211. "name": "symfony/contracts",
  8212. "url": "https://github.com/symfony/contracts"
  8213. }
  8214. },
  8215. "autoload": {
  8216. "psr-4": {
  8217. "Symfony\\Contracts\\Service\\": ""
  8218. }
  8219. },
  8220. "notification-url": "https://packagist.org/downloads/",
  8221. "license": [
  8222. "MIT"
  8223. ],
  8224. "authors": [
  8225. {
  8226. "name": "Nicolas Grekas",
  8227. "email": "p@tchwork.com"
  8228. },
  8229. {
  8230. "name": "Symfony Community",
  8231. "homepage": "https://symfony.com/contributors"
  8232. }
  8233. ],
  8234. "description": "Generic abstractions related to writing services",
  8235. "homepage": "https://symfony.com",
  8236. "keywords": [
  8237. "abstractions",
  8238. "contracts",
  8239. "decoupling",
  8240. "interfaces",
  8241. "interoperability",
  8242. "standards"
  8243. ],
  8244. "support": {
  8245. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  8246. },
  8247. "funding": [
  8248. {
  8249. "url": "https://symfony.com/sponsor",
  8250. "type": "custom"
  8251. },
  8252. {
  8253. "url": "https://github.com/fabpot",
  8254. "type": "github"
  8255. },
  8256. {
  8257. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8258. "type": "tidelift"
  8259. }
  8260. ],
  8261. "time": "2022-05-30T19:17:29+00:00"
  8262. },
  8263. {
  8264. "name": "symfony/string",
  8265. "version": "v5.4.26",
  8266. "source": {
  8267. "type": "git",
  8268. "url": "https://github.com/symfony/string.git",
  8269. "reference": "1181fe9270e373537475e826873b5867b863883c"
  8270. },
  8271. "dist": {
  8272. "type": "zip",
  8273. "url": "https://api.github.com/repos/symfony/string/zipball/1181fe9270e373537475e826873b5867b863883c",
  8274. "reference": "1181fe9270e373537475e826873b5867b863883c",
  8275. "shasum": ""
  8276. },
  8277. "require": {
  8278. "php": ">=7.2.5",
  8279. "symfony/polyfill-ctype": "~1.8",
  8280. "symfony/polyfill-intl-grapheme": "~1.0",
  8281. "symfony/polyfill-intl-normalizer": "~1.0",
  8282. "symfony/polyfill-mbstring": "~1.0",
  8283. "symfony/polyfill-php80": "~1.15"
  8284. },
  8285. "conflict": {
  8286. "symfony/translation-contracts": ">=3.0"
  8287. },
  8288. "require-dev": {
  8289. "symfony/error-handler": "^4.4|^5.0|^6.0",
  8290. "symfony/http-client": "^4.4|^5.0|^6.0",
  8291. "symfony/translation-contracts": "^1.1|^2",
  8292. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  8293. },
  8294. "type": "library",
  8295. "autoload": {
  8296. "files": [
  8297. "Resources/functions.php"
  8298. ],
  8299. "psr-4": {
  8300. "Symfony\\Component\\String\\": ""
  8301. },
  8302. "exclude-from-classmap": [
  8303. "/Tests/"
  8304. ]
  8305. },
  8306. "notification-url": "https://packagist.org/downloads/",
  8307. "license": [
  8308. "MIT"
  8309. ],
  8310. "authors": [
  8311. {
  8312. "name": "Nicolas Grekas",
  8313. "email": "p@tchwork.com"
  8314. },
  8315. {
  8316. "name": "Symfony Community",
  8317. "homepage": "https://symfony.com/contributors"
  8318. }
  8319. ],
  8320. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8321. "homepage": "https://symfony.com",
  8322. "keywords": [
  8323. "grapheme",
  8324. "i18n",
  8325. "string",
  8326. "unicode",
  8327. "utf-8",
  8328. "utf8"
  8329. ],
  8330. "support": {
  8331. "source": "https://github.com/symfony/string/tree/v5.4.26"
  8332. },
  8333. "funding": [
  8334. {
  8335. "url": "https://symfony.com/sponsor",
  8336. "type": "custom"
  8337. },
  8338. {
  8339. "url": "https://github.com/fabpot",
  8340. "type": "github"
  8341. },
  8342. {
  8343. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8344. "type": "tidelift"
  8345. }
  8346. ],
  8347. "time": "2023-06-28T12:46:07+00:00"
  8348. },
  8349. {
  8350. "name": "symfony/translation",
  8351. "version": "v5.4.24",
  8352. "source": {
  8353. "type": "git",
  8354. "url": "https://github.com/symfony/translation.git",
  8355. "reference": "de237e59c5833422342be67402d487fbf50334ff"
  8356. },
  8357. "dist": {
  8358. "type": "zip",
  8359. "url": "https://api.github.com/repos/symfony/translation/zipball/de237e59c5833422342be67402d487fbf50334ff",
  8360. "reference": "de237e59c5833422342be67402d487fbf50334ff",
  8361. "shasum": ""
  8362. },
  8363. "require": {
  8364. "php": ">=7.2.5",
  8365. "symfony/deprecation-contracts": "^2.1|^3",
  8366. "symfony/polyfill-mbstring": "~1.0",
  8367. "symfony/polyfill-php80": "^1.16",
  8368. "symfony/translation-contracts": "^2.3"
  8369. },
  8370. "conflict": {
  8371. "symfony/config": "<4.4",
  8372. "symfony/console": "<5.3",
  8373. "symfony/dependency-injection": "<5.0",
  8374. "symfony/http-kernel": "<5.0",
  8375. "symfony/twig-bundle": "<5.0",
  8376. "symfony/yaml": "<4.4"
  8377. },
  8378. "provide": {
  8379. "symfony/translation-implementation": "2.3"
  8380. },
  8381. "require-dev": {
  8382. "psr/log": "^1|^2|^3",
  8383. "symfony/config": "^4.4|^5.0|^6.0",
  8384. "symfony/console": "^5.4|^6.0",
  8385. "symfony/dependency-injection": "^5.0|^6.0",
  8386. "symfony/finder": "^4.4|^5.0|^6.0",
  8387. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  8388. "symfony/http-kernel": "^5.0|^6.0",
  8389. "symfony/intl": "^4.4|^5.0|^6.0",
  8390. "symfony/polyfill-intl-icu": "^1.21",
  8391. "symfony/service-contracts": "^1.1.2|^2|^3",
  8392. "symfony/yaml": "^4.4|^5.0|^6.0"
  8393. },
  8394. "suggest": {
  8395. "psr/log-implementation": "To use logging capability in translator",
  8396. "symfony/config": "",
  8397. "symfony/yaml": ""
  8398. },
  8399. "type": "library",
  8400. "autoload": {
  8401. "files": [
  8402. "Resources/functions.php"
  8403. ],
  8404. "psr-4": {
  8405. "Symfony\\Component\\Translation\\": ""
  8406. },
  8407. "exclude-from-classmap": [
  8408. "/Tests/"
  8409. ]
  8410. },
  8411. "notification-url": "https://packagist.org/downloads/",
  8412. "license": [
  8413. "MIT"
  8414. ],
  8415. "authors": [
  8416. {
  8417. "name": "Fabien Potencier",
  8418. "email": "fabien@symfony.com"
  8419. },
  8420. {
  8421. "name": "Symfony Community",
  8422. "homepage": "https://symfony.com/contributors"
  8423. }
  8424. ],
  8425. "description": "Provides tools to internationalize your application",
  8426. "homepage": "https://symfony.com",
  8427. "support": {
  8428. "source": "https://github.com/symfony/translation/tree/v5.4.24"
  8429. },
  8430. "funding": [
  8431. {
  8432. "url": "https://symfony.com/sponsor",
  8433. "type": "custom"
  8434. },
  8435. {
  8436. "url": "https://github.com/fabpot",
  8437. "type": "github"
  8438. },
  8439. {
  8440. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8441. "type": "tidelift"
  8442. }
  8443. ],
  8444. "time": "2023-05-19T12:34:17+00:00"
  8445. },
  8446. {
  8447. "name": "symfony/translation-contracts",
  8448. "version": "v2.5.2",
  8449. "source": {
  8450. "type": "git",
  8451. "url": "https://github.com/symfony/translation-contracts.git",
  8452. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  8453. },
  8454. "dist": {
  8455. "type": "zip",
  8456. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  8457. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  8458. "shasum": ""
  8459. },
  8460. "require": {
  8461. "php": ">=7.2.5"
  8462. },
  8463. "suggest": {
  8464. "symfony/translation-implementation": ""
  8465. },
  8466. "type": "library",
  8467. "extra": {
  8468. "branch-alias": {
  8469. "dev-main": "2.5-dev"
  8470. },
  8471. "thanks": {
  8472. "name": "symfony/contracts",
  8473. "url": "https://github.com/symfony/contracts"
  8474. }
  8475. },
  8476. "autoload": {
  8477. "psr-4": {
  8478. "Symfony\\Contracts\\Translation\\": ""
  8479. }
  8480. },
  8481. "notification-url": "https://packagist.org/downloads/",
  8482. "license": [
  8483. "MIT"
  8484. ],
  8485. "authors": [
  8486. {
  8487. "name": "Nicolas Grekas",
  8488. "email": "p@tchwork.com"
  8489. },
  8490. {
  8491. "name": "Symfony Community",
  8492. "homepage": "https://symfony.com/contributors"
  8493. }
  8494. ],
  8495. "description": "Generic abstractions related to translation",
  8496. "homepage": "https://symfony.com",
  8497. "keywords": [
  8498. "abstractions",
  8499. "contracts",
  8500. "decoupling",
  8501. "interfaces",
  8502. "interoperability",
  8503. "standards"
  8504. ],
  8505. "support": {
  8506. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  8507. },
  8508. "funding": [
  8509. {
  8510. "url": "https://symfony.com/sponsor",
  8511. "type": "custom"
  8512. },
  8513. {
  8514. "url": "https://github.com/fabpot",
  8515. "type": "github"
  8516. },
  8517. {
  8518. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8519. "type": "tidelift"
  8520. }
  8521. ],
  8522. "time": "2022-06-27T16:58:25+00:00"
  8523. },
  8524. {
  8525. "name": "symfony/var-dumper",
  8526. "version": "v5.4.28",
  8527. "source": {
  8528. "type": "git",
  8529. "url": "https://github.com/symfony/var-dumper.git",
  8530. "reference": "684b36ff415e1381d4a943c3ca2502cd2debad73"
  8531. },
  8532. "dist": {
  8533. "type": "zip",
  8534. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/684b36ff415e1381d4a943c3ca2502cd2debad73",
  8535. "reference": "684b36ff415e1381d4a943c3ca2502cd2debad73",
  8536. "shasum": ""
  8537. },
  8538. "require": {
  8539. "php": ">=7.2.5",
  8540. "symfony/polyfill-mbstring": "~1.0",
  8541. "symfony/polyfill-php80": "^1.16"
  8542. },
  8543. "conflict": {
  8544. "symfony/console": "<4.4"
  8545. },
  8546. "require-dev": {
  8547. "ext-iconv": "*",
  8548. "symfony/console": "^4.4|^5.0|^6.0",
  8549. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  8550. "symfony/process": "^4.4|^5.0|^6.0",
  8551. "symfony/uid": "^5.1|^6.0",
  8552. "twig/twig": "^2.13|^3.0.4"
  8553. },
  8554. "suggest": {
  8555. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8556. "ext-intl": "To show region name in time zone dump",
  8557. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8558. },
  8559. "bin": [
  8560. "Resources/bin/var-dump-server"
  8561. ],
  8562. "type": "library",
  8563. "autoload": {
  8564. "files": [
  8565. "Resources/functions/dump.php"
  8566. ],
  8567. "psr-4": {
  8568. "Symfony\\Component\\VarDumper\\": ""
  8569. },
  8570. "exclude-from-classmap": [
  8571. "/Tests/"
  8572. ]
  8573. },
  8574. "notification-url": "https://packagist.org/downloads/",
  8575. "license": [
  8576. "MIT"
  8577. ],
  8578. "authors": [
  8579. {
  8580. "name": "Nicolas Grekas",
  8581. "email": "p@tchwork.com"
  8582. },
  8583. {
  8584. "name": "Symfony Community",
  8585. "homepage": "https://symfony.com/contributors"
  8586. }
  8587. ],
  8588. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8589. "homepage": "https://symfony.com",
  8590. "keywords": [
  8591. "debug",
  8592. "dump"
  8593. ],
  8594. "support": {
  8595. "source": "https://github.com/symfony/var-dumper/tree/v5.4.28"
  8596. },
  8597. "funding": [
  8598. {
  8599. "url": "https://symfony.com/sponsor",
  8600. "type": "custom"
  8601. },
  8602. {
  8603. "url": "https://github.com/fabpot",
  8604. "type": "github"
  8605. },
  8606. {
  8607. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8608. "type": "tidelift"
  8609. }
  8610. ],
  8611. "time": "2023-08-24T13:38:36+00:00"
  8612. },
  8613. {
  8614. "name": "tijsverkoyen/css-to-inline-styles",
  8615. "version": "2.2.6",
  8616. "source": {
  8617. "type": "git",
  8618. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8619. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  8620. },
  8621. "dist": {
  8622. "type": "zip",
  8623. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  8624. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  8625. "shasum": ""
  8626. },
  8627. "require": {
  8628. "ext-dom": "*",
  8629. "ext-libxml": "*",
  8630. "php": "^5.5 || ^7.0 || ^8.0",
  8631. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  8632. },
  8633. "require-dev": {
  8634. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8635. },
  8636. "type": "library",
  8637. "extra": {
  8638. "branch-alias": {
  8639. "dev-master": "2.2.x-dev"
  8640. }
  8641. },
  8642. "autoload": {
  8643. "psr-4": {
  8644. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8645. }
  8646. },
  8647. "notification-url": "https://packagist.org/downloads/",
  8648. "license": [
  8649. "BSD-3-Clause"
  8650. ],
  8651. "authors": [
  8652. {
  8653. "name": "Tijs Verkoyen",
  8654. "email": "css_to_inline_styles@verkoyen.eu",
  8655. "role": "Developer"
  8656. }
  8657. ],
  8658. "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.",
  8659. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8660. "support": {
  8661. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8662. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  8663. },
  8664. "time": "2023-01-03T09:29:04+00:00"
  8665. },
  8666. {
  8667. "name": "vlucas/phpdotenv",
  8668. "version": "v5.5.0",
  8669. "source": {
  8670. "type": "git",
  8671. "url": "https://github.com/vlucas/phpdotenv.git",
  8672. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  8673. },
  8674. "dist": {
  8675. "type": "zip",
  8676. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8677. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8678. "shasum": ""
  8679. },
  8680. "require": {
  8681. "ext-pcre": "*",
  8682. "graham-campbell/result-type": "^1.0.2",
  8683. "php": "^7.1.3 || ^8.0",
  8684. "phpoption/phpoption": "^1.8",
  8685. "symfony/polyfill-ctype": "^1.23",
  8686. "symfony/polyfill-mbstring": "^1.23.1",
  8687. "symfony/polyfill-php80": "^1.23.1"
  8688. },
  8689. "require-dev": {
  8690. "bamarni/composer-bin-plugin": "^1.4.1",
  8691. "ext-filter": "*",
  8692. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  8693. },
  8694. "suggest": {
  8695. "ext-filter": "Required to use the boolean validator."
  8696. },
  8697. "type": "library",
  8698. "extra": {
  8699. "bamarni-bin": {
  8700. "bin-links": true,
  8701. "forward-command": true
  8702. },
  8703. "branch-alias": {
  8704. "dev-master": "5.5-dev"
  8705. }
  8706. },
  8707. "autoload": {
  8708. "psr-4": {
  8709. "Dotenv\\": "src/"
  8710. }
  8711. },
  8712. "notification-url": "https://packagist.org/downloads/",
  8713. "license": [
  8714. "BSD-3-Clause"
  8715. ],
  8716. "authors": [
  8717. {
  8718. "name": "Graham Campbell",
  8719. "email": "hello@gjcampbell.co.uk",
  8720. "homepage": "https://github.com/GrahamCampbell"
  8721. },
  8722. {
  8723. "name": "Vance Lucas",
  8724. "email": "vance@vancelucas.com",
  8725. "homepage": "https://github.com/vlucas"
  8726. }
  8727. ],
  8728. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8729. "keywords": [
  8730. "dotenv",
  8731. "env",
  8732. "environment"
  8733. ],
  8734. "support": {
  8735. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8736. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  8737. },
  8738. "funding": [
  8739. {
  8740. "url": "https://github.com/GrahamCampbell",
  8741. "type": "github"
  8742. },
  8743. {
  8744. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8745. "type": "tidelift"
  8746. }
  8747. ],
  8748. "time": "2022-10-16T01:01:54+00:00"
  8749. },
  8750. {
  8751. "name": "voku/portable-ascii",
  8752. "version": "1.6.1",
  8753. "source": {
  8754. "type": "git",
  8755. "url": "https://github.com/voku/portable-ascii.git",
  8756. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  8757. },
  8758. "dist": {
  8759. "type": "zip",
  8760. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  8761. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  8762. "shasum": ""
  8763. },
  8764. "require": {
  8765. "php": ">=7.0.0"
  8766. },
  8767. "require-dev": {
  8768. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8769. },
  8770. "suggest": {
  8771. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8772. },
  8773. "type": "library",
  8774. "autoload": {
  8775. "psr-4": {
  8776. "voku\\": "src/voku/"
  8777. }
  8778. },
  8779. "notification-url": "https://packagist.org/downloads/",
  8780. "license": [
  8781. "MIT"
  8782. ],
  8783. "authors": [
  8784. {
  8785. "name": "Lars Moelleken",
  8786. "homepage": "http://www.moelleken.org/"
  8787. }
  8788. ],
  8789. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8790. "homepage": "https://github.com/voku/portable-ascii",
  8791. "keywords": [
  8792. "ascii",
  8793. "clean",
  8794. "php"
  8795. ],
  8796. "support": {
  8797. "issues": "https://github.com/voku/portable-ascii/issues",
  8798. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  8799. },
  8800. "funding": [
  8801. {
  8802. "url": "https://www.paypal.me/moelleken",
  8803. "type": "custom"
  8804. },
  8805. {
  8806. "url": "https://github.com/voku",
  8807. "type": "github"
  8808. },
  8809. {
  8810. "url": "https://opencollective.com/portable-ascii",
  8811. "type": "open_collective"
  8812. },
  8813. {
  8814. "url": "https://www.patreon.com/voku",
  8815. "type": "patreon"
  8816. },
  8817. {
  8818. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8819. "type": "tidelift"
  8820. }
  8821. ],
  8822. "time": "2022-01-24T18:55:24+00:00"
  8823. },
  8824. {
  8825. "name": "webmozart/assert",
  8826. "version": "1.11.0",
  8827. "source": {
  8828. "type": "git",
  8829. "url": "https://github.com/webmozarts/assert.git",
  8830. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8831. },
  8832. "dist": {
  8833. "type": "zip",
  8834. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8835. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8836. "shasum": ""
  8837. },
  8838. "require": {
  8839. "ext-ctype": "*",
  8840. "php": "^7.2 || ^8.0"
  8841. },
  8842. "conflict": {
  8843. "phpstan/phpstan": "<0.12.20",
  8844. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8845. },
  8846. "require-dev": {
  8847. "phpunit/phpunit": "^8.5.13"
  8848. },
  8849. "type": "library",
  8850. "extra": {
  8851. "branch-alias": {
  8852. "dev-master": "1.10-dev"
  8853. }
  8854. },
  8855. "autoload": {
  8856. "psr-4": {
  8857. "Webmozart\\Assert\\": "src/"
  8858. }
  8859. },
  8860. "notification-url": "https://packagist.org/downloads/",
  8861. "license": [
  8862. "MIT"
  8863. ],
  8864. "authors": [
  8865. {
  8866. "name": "Bernhard Schussek",
  8867. "email": "bschussek@gmail.com"
  8868. }
  8869. ],
  8870. "description": "Assertions to validate method input/output with nice error messages.",
  8871. "keywords": [
  8872. "assert",
  8873. "check",
  8874. "validate"
  8875. ],
  8876. "support": {
  8877. "issues": "https://github.com/webmozarts/assert/issues",
  8878. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8879. },
  8880. "time": "2022-06-03T18:03:27+00:00"
  8881. },
  8882. {
  8883. "name": "wngur6076/wngurest-php80",
  8884. "version": "dev-master",
  8885. "source": {
  8886. "type": "git",
  8887. "url": "https://github.com/wngur6076/wngurest-php80.git",
  8888. "reference": "439b8d2c4ea14fc1179304c65c54053ba65fd1cb"
  8889. },
  8890. "dist": {
  8891. "type": "zip",
  8892. "url": "https://api.github.com/repos/wngur6076/wngurest-php80/zipball/439b8d2c4ea14fc1179304c65c54053ba65fd1cb",
  8893. "reference": "439b8d2c4ea14fc1179304c65c54053ba65fd1cb",
  8894. "shasum": ""
  8895. },
  8896. "require": {
  8897. "ext-curl": "*",
  8898. "php": ">=5.4.0"
  8899. },
  8900. "require-dev": {
  8901. "codeclimate/php-test-reporter": "0.1.*",
  8902. "phpunit/phpunit": "~4.4"
  8903. },
  8904. "suggest": {
  8905. "ext-json": "Allows using JSON Bodies for sending and parsing requests"
  8906. },
  8907. "default-branch": true,
  8908. "type": "library",
  8909. "autoload": {
  8910. "psr-0": {
  8911. "Unirest\\": "src/"
  8912. }
  8913. },
  8914. "notification-url": "https://packagist.org/downloads/",
  8915. "license": [
  8916. "MIT"
  8917. ],
  8918. "description": "Unirest PHP",
  8919. "homepage": "https://github.com/Mashape/unirest-php",
  8920. "keywords": [
  8921. "client",
  8922. "curl",
  8923. "http",
  8924. "https",
  8925. "rest"
  8926. ],
  8927. "support": {
  8928. "email": "wngur6076@naver.com",
  8929. "issues": "https://github.com/wngur6076/wngurest-php80/issues",
  8930. "source": "https://github.com/wngur6076/wngurest-php80/tree/master"
  8931. },
  8932. "time": "2022-09-08T01:46:17+00:00"
  8933. }
  8934. ],
  8935. "packages-dev": [
  8936. {
  8937. "name": "doctrine/instantiator",
  8938. "version": "1.5.0",
  8939. "source": {
  8940. "type": "git",
  8941. "url": "https://github.com/doctrine/instantiator.git",
  8942. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8943. },
  8944. "dist": {
  8945. "type": "zip",
  8946. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8947. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8948. "shasum": ""
  8949. },
  8950. "require": {
  8951. "php": "^7.1 || ^8.0"
  8952. },
  8953. "require-dev": {
  8954. "doctrine/coding-standard": "^9 || ^11",
  8955. "ext-pdo": "*",
  8956. "ext-phar": "*",
  8957. "phpbench/phpbench": "^0.16 || ^1",
  8958. "phpstan/phpstan": "^1.4",
  8959. "phpstan/phpstan-phpunit": "^1",
  8960. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8961. "vimeo/psalm": "^4.30 || ^5.4"
  8962. },
  8963. "type": "library",
  8964. "autoload": {
  8965. "psr-4": {
  8966. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8967. }
  8968. },
  8969. "notification-url": "https://packagist.org/downloads/",
  8970. "license": [
  8971. "MIT"
  8972. ],
  8973. "authors": [
  8974. {
  8975. "name": "Marco Pivetta",
  8976. "email": "ocramius@gmail.com",
  8977. "homepage": "https://ocramius.github.io/"
  8978. }
  8979. ],
  8980. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8981. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8982. "keywords": [
  8983. "constructor",
  8984. "instantiate"
  8985. ],
  8986. "support": {
  8987. "issues": "https://github.com/doctrine/instantiator/issues",
  8988. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8989. },
  8990. "funding": [
  8991. {
  8992. "url": "https://www.doctrine-project.org/sponsorship.html",
  8993. "type": "custom"
  8994. },
  8995. {
  8996. "url": "https://www.patreon.com/phpdoctrine",
  8997. "type": "patreon"
  8998. },
  8999. {
  9000. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  9001. "type": "tidelift"
  9002. }
  9003. ],
  9004. "time": "2022-12-30T00:15:36+00:00"
  9005. },
  9006. {
  9007. "name": "facade/flare-client-php",
  9008. "version": "1.10.0",
  9009. "source": {
  9010. "type": "git",
  9011. "url": "https://github.com/facade/flare-client-php.git",
  9012. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  9013. },
  9014. "dist": {
  9015. "type": "zip",
  9016. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  9017. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  9018. "shasum": ""
  9019. },
  9020. "require": {
  9021. "facade/ignition-contracts": "~1.0",
  9022. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  9023. "php": "^7.1|^8.0",
  9024. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  9025. "symfony/mime": "^3.4|^4.0|^5.1",
  9026. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  9027. },
  9028. "require-dev": {
  9029. "friendsofphp/php-cs-fixer": "^2.14",
  9030. "phpunit/phpunit": "^7.5",
  9031. "spatie/phpunit-snapshot-assertions": "^2.0"
  9032. },
  9033. "type": "library",
  9034. "extra": {
  9035. "branch-alias": {
  9036. "dev-master": "1.0-dev"
  9037. }
  9038. },
  9039. "autoload": {
  9040. "files": [
  9041. "src/helpers.php"
  9042. ],
  9043. "psr-4": {
  9044. "Facade\\FlareClient\\": "src"
  9045. }
  9046. },
  9047. "notification-url": "https://packagist.org/downloads/",
  9048. "license": [
  9049. "MIT"
  9050. ],
  9051. "description": "Send PHP errors to Flare",
  9052. "homepage": "https://github.com/facade/flare-client-php",
  9053. "keywords": [
  9054. "exception",
  9055. "facade",
  9056. "flare",
  9057. "reporting"
  9058. ],
  9059. "support": {
  9060. "issues": "https://github.com/facade/flare-client-php/issues",
  9061. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  9062. },
  9063. "funding": [
  9064. {
  9065. "url": "https://github.com/spatie",
  9066. "type": "github"
  9067. }
  9068. ],
  9069. "time": "2022-08-09T11:23:57+00:00"
  9070. },
  9071. {
  9072. "name": "facade/ignition",
  9073. "version": "2.17.7",
  9074. "source": {
  9075. "type": "git",
  9076. "url": "https://github.com/facade/ignition.git",
  9077. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  9078. },
  9079. "dist": {
  9080. "type": "zip",
  9081. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  9082. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  9083. "shasum": ""
  9084. },
  9085. "require": {
  9086. "ext-curl": "*",
  9087. "ext-json": "*",
  9088. "ext-mbstring": "*",
  9089. "facade/flare-client-php": "^1.9.1",
  9090. "facade/ignition-contracts": "^1.0.2",
  9091. "illuminate/support": "^7.0|^8.0",
  9092. "monolog/monolog": "^2.0",
  9093. "php": "^7.2.5|^8.0",
  9094. "symfony/console": "^5.0",
  9095. "symfony/var-dumper": "^5.0"
  9096. },
  9097. "require-dev": {
  9098. "friendsofphp/php-cs-fixer": "^2.14",
  9099. "livewire/livewire": "^2.4",
  9100. "mockery/mockery": "^1.3",
  9101. "orchestra/testbench": "^5.0|^6.0",
  9102. "psalm/plugin-laravel": "^1.2"
  9103. },
  9104. "suggest": {
  9105. "laravel/telescope": "^3.1"
  9106. },
  9107. "type": "library",
  9108. "extra": {
  9109. "branch-alias": {
  9110. "dev-master": "2.x-dev"
  9111. },
  9112. "laravel": {
  9113. "providers": [
  9114. "Facade\\Ignition\\IgnitionServiceProvider"
  9115. ],
  9116. "aliases": {
  9117. "Flare": "Facade\\Ignition\\Facades\\Flare"
  9118. }
  9119. }
  9120. },
  9121. "autoload": {
  9122. "files": [
  9123. "src/helpers.php"
  9124. ],
  9125. "psr-4": {
  9126. "Facade\\Ignition\\": "src"
  9127. }
  9128. },
  9129. "notification-url": "https://packagist.org/downloads/",
  9130. "license": [
  9131. "MIT"
  9132. ],
  9133. "description": "A beautiful error page for Laravel applications.",
  9134. "homepage": "https://github.com/facade/ignition",
  9135. "keywords": [
  9136. "error",
  9137. "flare",
  9138. "laravel",
  9139. "page"
  9140. ],
  9141. "support": {
  9142. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  9143. "forum": "https://twitter.com/flareappio",
  9144. "issues": "https://github.com/facade/ignition/issues",
  9145. "source": "https://github.com/facade/ignition"
  9146. },
  9147. "time": "2023-01-26T12:34:59+00:00"
  9148. },
  9149. {
  9150. "name": "facade/ignition-contracts",
  9151. "version": "1.0.2",
  9152. "source": {
  9153. "type": "git",
  9154. "url": "https://github.com/facade/ignition-contracts.git",
  9155. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  9156. },
  9157. "dist": {
  9158. "type": "zip",
  9159. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  9160. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  9161. "shasum": ""
  9162. },
  9163. "require": {
  9164. "php": "^7.3|^8.0"
  9165. },
  9166. "require-dev": {
  9167. "friendsofphp/php-cs-fixer": "^v2.15.8",
  9168. "phpunit/phpunit": "^9.3.11",
  9169. "vimeo/psalm": "^3.17.1"
  9170. },
  9171. "type": "library",
  9172. "autoload": {
  9173. "psr-4": {
  9174. "Facade\\IgnitionContracts\\": "src"
  9175. }
  9176. },
  9177. "notification-url": "https://packagist.org/downloads/",
  9178. "license": [
  9179. "MIT"
  9180. ],
  9181. "authors": [
  9182. {
  9183. "name": "Freek Van der Herten",
  9184. "email": "freek@spatie.be",
  9185. "homepage": "https://flareapp.io",
  9186. "role": "Developer"
  9187. }
  9188. ],
  9189. "description": "Solution contracts for Ignition",
  9190. "homepage": "https://github.com/facade/ignition-contracts",
  9191. "keywords": [
  9192. "contracts",
  9193. "flare",
  9194. "ignition"
  9195. ],
  9196. "support": {
  9197. "issues": "https://github.com/facade/ignition-contracts/issues",
  9198. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  9199. },
  9200. "time": "2020-10-16T08:27:54+00:00"
  9201. },
  9202. {
  9203. "name": "fakerphp/faker",
  9204. "version": "v1.20.0",
  9205. "source": {
  9206. "type": "git",
  9207. "url": "https://github.com/FakerPHP/Faker.git",
  9208. "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b"
  9209. },
  9210. "dist": {
  9211. "type": "zip",
  9212. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/37f751c67a5372d4e26353bd9384bc03744ec77b",
  9213. "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b",
  9214. "shasum": ""
  9215. },
  9216. "require": {
  9217. "php": "^7.1 || ^8.0",
  9218. "psr/container": "^1.0 || ^2.0",
  9219. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9220. },
  9221. "conflict": {
  9222. "fzaninotto/faker": "*"
  9223. },
  9224. "require-dev": {
  9225. "bamarni/composer-bin-plugin": "^1.4.1",
  9226. "doctrine/persistence": "^1.3 || ^2.0",
  9227. "ext-intl": "*",
  9228. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  9229. },
  9230. "suggest": {
  9231. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9232. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9233. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9234. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9235. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9236. },
  9237. "type": "library",
  9238. "extra": {
  9239. "branch-alias": {
  9240. "dev-main": "v1.20-dev"
  9241. }
  9242. },
  9243. "autoload": {
  9244. "psr-4": {
  9245. "Faker\\": "src/Faker/"
  9246. }
  9247. },
  9248. "notification-url": "https://packagist.org/downloads/",
  9249. "license": [
  9250. "MIT"
  9251. ],
  9252. "authors": [
  9253. {
  9254. "name": "François Zaninotto"
  9255. }
  9256. ],
  9257. "description": "Faker is a PHP library that generates fake data for you.",
  9258. "keywords": [
  9259. "data",
  9260. "faker",
  9261. "fixtures"
  9262. ],
  9263. "support": {
  9264. "issues": "https://github.com/FakerPHP/Faker/issues",
  9265. "source": "https://github.com/FakerPHP/Faker/tree/v1.20.0"
  9266. },
  9267. "time": "2022-07-20T13:12:54+00:00"
  9268. },
  9269. {
  9270. "name": "filp/whoops",
  9271. "version": "2.15.3",
  9272. "source": {
  9273. "type": "git",
  9274. "url": "https://github.com/filp/whoops.git",
  9275. "reference": "c83e88a30524f9360b11f585f71e6b17313b7187"
  9276. },
  9277. "dist": {
  9278. "type": "zip",
  9279. "url": "https://api.github.com/repos/filp/whoops/zipball/c83e88a30524f9360b11f585f71e6b17313b7187",
  9280. "reference": "c83e88a30524f9360b11f585f71e6b17313b7187",
  9281. "shasum": ""
  9282. },
  9283. "require": {
  9284. "php": "^5.5.9 || ^7.0 || ^8.0",
  9285. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9286. },
  9287. "require-dev": {
  9288. "mockery/mockery": "^0.9 || ^1.0",
  9289. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  9290. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  9291. },
  9292. "suggest": {
  9293. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9294. "whoops/soap": "Formats errors as SOAP responses"
  9295. },
  9296. "type": "library",
  9297. "extra": {
  9298. "branch-alias": {
  9299. "dev-master": "2.7-dev"
  9300. }
  9301. },
  9302. "autoload": {
  9303. "psr-4": {
  9304. "Whoops\\": "src/Whoops/"
  9305. }
  9306. },
  9307. "notification-url": "https://packagist.org/downloads/",
  9308. "license": [
  9309. "MIT"
  9310. ],
  9311. "authors": [
  9312. {
  9313. "name": "Filipe Dobreira",
  9314. "homepage": "https://github.com/filp",
  9315. "role": "Developer"
  9316. }
  9317. ],
  9318. "description": "php error handling for cool kids",
  9319. "homepage": "https://filp.github.io/whoops/",
  9320. "keywords": [
  9321. "error",
  9322. "exception",
  9323. "handling",
  9324. "library",
  9325. "throwable",
  9326. "whoops"
  9327. ],
  9328. "support": {
  9329. "issues": "https://github.com/filp/whoops/issues",
  9330. "source": "https://github.com/filp/whoops/tree/2.15.3"
  9331. },
  9332. "funding": [
  9333. {
  9334. "url": "https://github.com/denis-sokolov",
  9335. "type": "github"
  9336. }
  9337. ],
  9338. "time": "2023-07-13T12:00:00+00:00"
  9339. },
  9340. {
  9341. "name": "hamcrest/hamcrest-php",
  9342. "version": "v2.0.1",
  9343. "source": {
  9344. "type": "git",
  9345. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9346. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9347. },
  9348. "dist": {
  9349. "type": "zip",
  9350. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9351. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9352. "shasum": ""
  9353. },
  9354. "require": {
  9355. "php": "^5.3|^7.0|^8.0"
  9356. },
  9357. "replace": {
  9358. "cordoval/hamcrest-php": "*",
  9359. "davedevelopment/hamcrest-php": "*",
  9360. "kodova/hamcrest-php": "*"
  9361. },
  9362. "require-dev": {
  9363. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9364. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9365. },
  9366. "type": "library",
  9367. "extra": {
  9368. "branch-alias": {
  9369. "dev-master": "2.1-dev"
  9370. }
  9371. },
  9372. "autoload": {
  9373. "classmap": [
  9374. "hamcrest"
  9375. ]
  9376. },
  9377. "notification-url": "https://packagist.org/downloads/",
  9378. "license": [
  9379. "BSD-3-Clause"
  9380. ],
  9381. "description": "This is the PHP port of Hamcrest Matchers",
  9382. "keywords": [
  9383. "test"
  9384. ],
  9385. "support": {
  9386. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9387. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9388. },
  9389. "time": "2020-07-09T08:09:16+00:00"
  9390. },
  9391. {
  9392. "name": "laravel/sail",
  9393. "version": "v1.19.0",
  9394. "source": {
  9395. "type": "git",
  9396. "url": "https://github.com/laravel/sail.git",
  9397. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6"
  9398. },
  9399. "dist": {
  9400. "type": "zip",
  9401. "url": "https://api.github.com/repos/laravel/sail/zipball/4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  9402. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  9403. "shasum": ""
  9404. },
  9405. "require": {
  9406. "illuminate/console": "^8.0|^9.0|^10.0",
  9407. "illuminate/contracts": "^8.0|^9.0|^10.0",
  9408. "illuminate/support": "^8.0|^9.0|^10.0",
  9409. "php": "^7.3|^8.0"
  9410. },
  9411. "bin": [
  9412. "bin/sail"
  9413. ],
  9414. "type": "library",
  9415. "extra": {
  9416. "branch-alias": {
  9417. "dev-master": "1.x-dev"
  9418. },
  9419. "laravel": {
  9420. "providers": [
  9421. "Laravel\\Sail\\SailServiceProvider"
  9422. ]
  9423. }
  9424. },
  9425. "autoload": {
  9426. "psr-4": {
  9427. "Laravel\\Sail\\": "src/"
  9428. }
  9429. },
  9430. "notification-url": "https://packagist.org/downloads/",
  9431. "license": [
  9432. "MIT"
  9433. ],
  9434. "authors": [
  9435. {
  9436. "name": "Taylor Otwell",
  9437. "email": "taylor@laravel.com"
  9438. }
  9439. ],
  9440. "description": "Docker files for running a basic Laravel application.",
  9441. "keywords": [
  9442. "docker",
  9443. "laravel"
  9444. ],
  9445. "support": {
  9446. "issues": "https://github.com/laravel/sail/issues",
  9447. "source": "https://github.com/laravel/sail"
  9448. },
  9449. "time": "2023-01-31T13:37:57+00:00"
  9450. },
  9451. {
  9452. "name": "mockery/mockery",
  9453. "version": "1.6.6",
  9454. "source": {
  9455. "type": "git",
  9456. "url": "https://github.com/mockery/mockery.git",
  9457. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e"
  9458. },
  9459. "dist": {
  9460. "type": "zip",
  9461. "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e",
  9462. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e",
  9463. "shasum": ""
  9464. },
  9465. "require": {
  9466. "hamcrest/hamcrest-php": "^2.0.1",
  9467. "lib-pcre": ">=7.0",
  9468. "php": ">=7.3"
  9469. },
  9470. "conflict": {
  9471. "phpunit/phpunit": "<8.0"
  9472. },
  9473. "require-dev": {
  9474. "phpunit/phpunit": "^8.5 || ^9.6.10",
  9475. "psalm/plugin-phpunit": "^0.18.4",
  9476. "symplify/easy-coding-standard": "^11.5.0",
  9477. "vimeo/psalm": "^4.30"
  9478. },
  9479. "type": "library",
  9480. "autoload": {
  9481. "files": [
  9482. "library/helpers.php",
  9483. "library/Mockery.php"
  9484. ],
  9485. "psr-4": {
  9486. "Mockery\\": "library/Mockery"
  9487. }
  9488. },
  9489. "notification-url": "https://packagist.org/downloads/",
  9490. "license": [
  9491. "BSD-3-Clause"
  9492. ],
  9493. "authors": [
  9494. {
  9495. "name": "Pádraic Brady",
  9496. "email": "padraic.brady@gmail.com",
  9497. "homepage": "https://github.com/padraic",
  9498. "role": "Author"
  9499. },
  9500. {
  9501. "name": "Dave Marshall",
  9502. "email": "dave.marshall@atstsolutions.co.uk",
  9503. "homepage": "https://davedevelopment.co.uk",
  9504. "role": "Developer"
  9505. },
  9506. {
  9507. "name": "Nathanael Esayeas",
  9508. "email": "nathanael.esayeas@protonmail.com",
  9509. "homepage": "https://github.com/ghostwriter",
  9510. "role": "Lead Developer"
  9511. }
  9512. ],
  9513. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9514. "homepage": "https://github.com/mockery/mockery",
  9515. "keywords": [
  9516. "BDD",
  9517. "TDD",
  9518. "library",
  9519. "mock",
  9520. "mock objects",
  9521. "mockery",
  9522. "stub",
  9523. "test",
  9524. "test double",
  9525. "testing"
  9526. ],
  9527. "support": {
  9528. "docs": "https://docs.mockery.io/",
  9529. "issues": "https://github.com/mockery/mockery/issues",
  9530. "rss": "https://github.com/mockery/mockery/releases.atom",
  9531. "security": "https://github.com/mockery/mockery/security/advisories",
  9532. "source": "https://github.com/mockery/mockery"
  9533. },
  9534. "time": "2023-08-09T00:03:52+00:00"
  9535. },
  9536. {
  9537. "name": "myclabs/deep-copy",
  9538. "version": "1.11.1",
  9539. "source": {
  9540. "type": "git",
  9541. "url": "https://github.com/myclabs/DeepCopy.git",
  9542. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  9543. },
  9544. "dist": {
  9545. "type": "zip",
  9546. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9547. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9548. "shasum": ""
  9549. },
  9550. "require": {
  9551. "php": "^7.1 || ^8.0"
  9552. },
  9553. "conflict": {
  9554. "doctrine/collections": "<1.6.8",
  9555. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  9556. },
  9557. "require-dev": {
  9558. "doctrine/collections": "^1.6.8",
  9559. "doctrine/common": "^2.13.3 || ^3.2.2",
  9560. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9561. },
  9562. "type": "library",
  9563. "autoload": {
  9564. "files": [
  9565. "src/DeepCopy/deep_copy.php"
  9566. ],
  9567. "psr-4": {
  9568. "DeepCopy\\": "src/DeepCopy/"
  9569. }
  9570. },
  9571. "notification-url": "https://packagist.org/downloads/",
  9572. "license": [
  9573. "MIT"
  9574. ],
  9575. "description": "Create deep copies (clones) of your objects",
  9576. "keywords": [
  9577. "clone",
  9578. "copy",
  9579. "duplicate",
  9580. "object",
  9581. "object graph"
  9582. ],
  9583. "support": {
  9584. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9585. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9586. },
  9587. "funding": [
  9588. {
  9589. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9590. "type": "tidelift"
  9591. }
  9592. ],
  9593. "time": "2023-03-08T13:26:56+00:00"
  9594. },
  9595. {
  9596. "name": "nunomaduro/collision",
  9597. "version": "v5.11.0",
  9598. "source": {
  9599. "type": "git",
  9600. "url": "https://github.com/nunomaduro/collision.git",
  9601. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  9602. },
  9603. "dist": {
  9604. "type": "zip",
  9605. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9606. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9607. "shasum": ""
  9608. },
  9609. "require": {
  9610. "facade/ignition-contracts": "^1.0",
  9611. "filp/whoops": "^2.14.3",
  9612. "php": "^7.3 || ^8.0",
  9613. "symfony/console": "^5.0"
  9614. },
  9615. "require-dev": {
  9616. "brianium/paratest": "^6.1",
  9617. "fideloper/proxy": "^4.4.1",
  9618. "fruitcake/laravel-cors": "^2.0.3",
  9619. "laravel/framework": "8.x-dev",
  9620. "nunomaduro/larastan": "^0.6.2",
  9621. "nunomaduro/mock-final-classes": "^1.0",
  9622. "orchestra/testbench": "^6.0",
  9623. "phpstan/phpstan": "^0.12.64",
  9624. "phpunit/phpunit": "^9.5.0"
  9625. },
  9626. "type": "library",
  9627. "extra": {
  9628. "laravel": {
  9629. "providers": [
  9630. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9631. ]
  9632. }
  9633. },
  9634. "autoload": {
  9635. "psr-4": {
  9636. "NunoMaduro\\Collision\\": "src/"
  9637. }
  9638. },
  9639. "notification-url": "https://packagist.org/downloads/",
  9640. "license": [
  9641. "MIT"
  9642. ],
  9643. "authors": [
  9644. {
  9645. "name": "Nuno Maduro",
  9646. "email": "enunomaduro@gmail.com"
  9647. }
  9648. ],
  9649. "description": "Cli error handling for console/command-line PHP applications.",
  9650. "keywords": [
  9651. "artisan",
  9652. "cli",
  9653. "command-line",
  9654. "console",
  9655. "error",
  9656. "handling",
  9657. "laravel",
  9658. "laravel-zero",
  9659. "php",
  9660. "symfony"
  9661. ],
  9662. "support": {
  9663. "issues": "https://github.com/nunomaduro/collision/issues",
  9664. "source": "https://github.com/nunomaduro/collision"
  9665. },
  9666. "funding": [
  9667. {
  9668. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9669. "type": "custom"
  9670. },
  9671. {
  9672. "url": "https://github.com/nunomaduro",
  9673. "type": "github"
  9674. },
  9675. {
  9676. "url": "https://www.patreon.com/nunomaduro",
  9677. "type": "patreon"
  9678. }
  9679. ],
  9680. "time": "2022-01-10T16:22:52+00:00"
  9681. },
  9682. {
  9683. "name": "phar-io/manifest",
  9684. "version": "2.0.3",
  9685. "source": {
  9686. "type": "git",
  9687. "url": "https://github.com/phar-io/manifest.git",
  9688. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9689. },
  9690. "dist": {
  9691. "type": "zip",
  9692. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9693. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9694. "shasum": ""
  9695. },
  9696. "require": {
  9697. "ext-dom": "*",
  9698. "ext-phar": "*",
  9699. "ext-xmlwriter": "*",
  9700. "phar-io/version": "^3.0.1",
  9701. "php": "^7.2 || ^8.0"
  9702. },
  9703. "type": "library",
  9704. "extra": {
  9705. "branch-alias": {
  9706. "dev-master": "2.0.x-dev"
  9707. }
  9708. },
  9709. "autoload": {
  9710. "classmap": [
  9711. "src/"
  9712. ]
  9713. },
  9714. "notification-url": "https://packagist.org/downloads/",
  9715. "license": [
  9716. "BSD-3-Clause"
  9717. ],
  9718. "authors": [
  9719. {
  9720. "name": "Arne Blankerts",
  9721. "email": "arne@blankerts.de",
  9722. "role": "Developer"
  9723. },
  9724. {
  9725. "name": "Sebastian Heuer",
  9726. "email": "sebastian@phpeople.de",
  9727. "role": "Developer"
  9728. },
  9729. {
  9730. "name": "Sebastian Bergmann",
  9731. "email": "sebastian@phpunit.de",
  9732. "role": "Developer"
  9733. }
  9734. ],
  9735. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9736. "support": {
  9737. "issues": "https://github.com/phar-io/manifest/issues",
  9738. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9739. },
  9740. "time": "2021-07-20T11:28:43+00:00"
  9741. },
  9742. {
  9743. "name": "phar-io/version",
  9744. "version": "3.2.1",
  9745. "source": {
  9746. "type": "git",
  9747. "url": "https://github.com/phar-io/version.git",
  9748. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9749. },
  9750. "dist": {
  9751. "type": "zip",
  9752. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9753. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9754. "shasum": ""
  9755. },
  9756. "require": {
  9757. "php": "^7.2 || ^8.0"
  9758. },
  9759. "type": "library",
  9760. "autoload": {
  9761. "classmap": [
  9762. "src/"
  9763. ]
  9764. },
  9765. "notification-url": "https://packagist.org/downloads/",
  9766. "license": [
  9767. "BSD-3-Clause"
  9768. ],
  9769. "authors": [
  9770. {
  9771. "name": "Arne Blankerts",
  9772. "email": "arne@blankerts.de",
  9773. "role": "Developer"
  9774. },
  9775. {
  9776. "name": "Sebastian Heuer",
  9777. "email": "sebastian@phpeople.de",
  9778. "role": "Developer"
  9779. },
  9780. {
  9781. "name": "Sebastian Bergmann",
  9782. "email": "sebastian@phpunit.de",
  9783. "role": "Developer"
  9784. }
  9785. ],
  9786. "description": "Library for handling version information and constraints",
  9787. "support": {
  9788. "issues": "https://github.com/phar-io/version/issues",
  9789. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9790. },
  9791. "time": "2022-02-21T01:04:05+00:00"
  9792. },
  9793. {
  9794. "name": "phpunit/php-code-coverage",
  9795. "version": "9.2.27",
  9796. "source": {
  9797. "type": "git",
  9798. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9799. "reference": "b0a88255cb70d52653d80c890bd7f38740ea50d1"
  9800. },
  9801. "dist": {
  9802. "type": "zip",
  9803. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/b0a88255cb70d52653d80c890bd7f38740ea50d1",
  9804. "reference": "b0a88255cb70d52653d80c890bd7f38740ea50d1",
  9805. "shasum": ""
  9806. },
  9807. "require": {
  9808. "ext-dom": "*",
  9809. "ext-libxml": "*",
  9810. "ext-xmlwriter": "*",
  9811. "nikic/php-parser": "^4.15",
  9812. "php": ">=7.3",
  9813. "phpunit/php-file-iterator": "^3.0.3",
  9814. "phpunit/php-text-template": "^2.0.2",
  9815. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9816. "sebastian/complexity": "^2.0",
  9817. "sebastian/environment": "^5.1.2",
  9818. "sebastian/lines-of-code": "^1.0.3",
  9819. "sebastian/version": "^3.0.1",
  9820. "theseer/tokenizer": "^1.2.0"
  9821. },
  9822. "require-dev": {
  9823. "phpunit/phpunit": "^9.3"
  9824. },
  9825. "suggest": {
  9826. "ext-pcov": "PHP extension that provides line coverage",
  9827. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9828. },
  9829. "type": "library",
  9830. "extra": {
  9831. "branch-alias": {
  9832. "dev-master": "9.2-dev"
  9833. }
  9834. },
  9835. "autoload": {
  9836. "classmap": [
  9837. "src/"
  9838. ]
  9839. },
  9840. "notification-url": "https://packagist.org/downloads/",
  9841. "license": [
  9842. "BSD-3-Clause"
  9843. ],
  9844. "authors": [
  9845. {
  9846. "name": "Sebastian Bergmann",
  9847. "email": "sebastian@phpunit.de",
  9848. "role": "lead"
  9849. }
  9850. ],
  9851. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9852. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9853. "keywords": [
  9854. "coverage",
  9855. "testing",
  9856. "xunit"
  9857. ],
  9858. "support": {
  9859. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9860. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9861. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.27"
  9862. },
  9863. "funding": [
  9864. {
  9865. "url": "https://github.com/sebastianbergmann",
  9866. "type": "github"
  9867. }
  9868. ],
  9869. "time": "2023-07-26T13:44:30+00:00"
  9870. },
  9871. {
  9872. "name": "phpunit/php-file-iterator",
  9873. "version": "3.0.6",
  9874. "source": {
  9875. "type": "git",
  9876. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9877. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9878. },
  9879. "dist": {
  9880. "type": "zip",
  9881. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9882. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9883. "shasum": ""
  9884. },
  9885. "require": {
  9886. "php": ">=7.3"
  9887. },
  9888. "require-dev": {
  9889. "phpunit/phpunit": "^9.3"
  9890. },
  9891. "type": "library",
  9892. "extra": {
  9893. "branch-alias": {
  9894. "dev-master": "3.0-dev"
  9895. }
  9896. },
  9897. "autoload": {
  9898. "classmap": [
  9899. "src/"
  9900. ]
  9901. },
  9902. "notification-url": "https://packagist.org/downloads/",
  9903. "license": [
  9904. "BSD-3-Clause"
  9905. ],
  9906. "authors": [
  9907. {
  9908. "name": "Sebastian Bergmann",
  9909. "email": "sebastian@phpunit.de",
  9910. "role": "lead"
  9911. }
  9912. ],
  9913. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9914. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9915. "keywords": [
  9916. "filesystem",
  9917. "iterator"
  9918. ],
  9919. "support": {
  9920. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9921. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9922. },
  9923. "funding": [
  9924. {
  9925. "url": "https://github.com/sebastianbergmann",
  9926. "type": "github"
  9927. }
  9928. ],
  9929. "time": "2021-12-02T12:48:52+00:00"
  9930. },
  9931. {
  9932. "name": "phpunit/php-invoker",
  9933. "version": "3.1.1",
  9934. "source": {
  9935. "type": "git",
  9936. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9937. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9938. },
  9939. "dist": {
  9940. "type": "zip",
  9941. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9942. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9943. "shasum": ""
  9944. },
  9945. "require": {
  9946. "php": ">=7.3"
  9947. },
  9948. "require-dev": {
  9949. "ext-pcntl": "*",
  9950. "phpunit/phpunit": "^9.3"
  9951. },
  9952. "suggest": {
  9953. "ext-pcntl": "*"
  9954. },
  9955. "type": "library",
  9956. "extra": {
  9957. "branch-alias": {
  9958. "dev-master": "3.1-dev"
  9959. }
  9960. },
  9961. "autoload": {
  9962. "classmap": [
  9963. "src/"
  9964. ]
  9965. },
  9966. "notification-url": "https://packagist.org/downloads/",
  9967. "license": [
  9968. "BSD-3-Clause"
  9969. ],
  9970. "authors": [
  9971. {
  9972. "name": "Sebastian Bergmann",
  9973. "email": "sebastian@phpunit.de",
  9974. "role": "lead"
  9975. }
  9976. ],
  9977. "description": "Invoke callables with a timeout",
  9978. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9979. "keywords": [
  9980. "process"
  9981. ],
  9982. "support": {
  9983. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9984. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9985. },
  9986. "funding": [
  9987. {
  9988. "url": "https://github.com/sebastianbergmann",
  9989. "type": "github"
  9990. }
  9991. ],
  9992. "time": "2020-09-28T05:58:55+00:00"
  9993. },
  9994. {
  9995. "name": "phpunit/php-text-template",
  9996. "version": "2.0.4",
  9997. "source": {
  9998. "type": "git",
  9999. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10000. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  10001. },
  10002. "dist": {
  10003. "type": "zip",
  10004. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10005. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10006. "shasum": ""
  10007. },
  10008. "require": {
  10009. "php": ">=7.3"
  10010. },
  10011. "require-dev": {
  10012. "phpunit/phpunit": "^9.3"
  10013. },
  10014. "type": "library",
  10015. "extra": {
  10016. "branch-alias": {
  10017. "dev-master": "2.0-dev"
  10018. }
  10019. },
  10020. "autoload": {
  10021. "classmap": [
  10022. "src/"
  10023. ]
  10024. },
  10025. "notification-url": "https://packagist.org/downloads/",
  10026. "license": [
  10027. "BSD-3-Clause"
  10028. ],
  10029. "authors": [
  10030. {
  10031. "name": "Sebastian Bergmann",
  10032. "email": "sebastian@phpunit.de",
  10033. "role": "lead"
  10034. }
  10035. ],
  10036. "description": "Simple template engine.",
  10037. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10038. "keywords": [
  10039. "template"
  10040. ],
  10041. "support": {
  10042. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10043. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  10044. },
  10045. "funding": [
  10046. {
  10047. "url": "https://github.com/sebastianbergmann",
  10048. "type": "github"
  10049. }
  10050. ],
  10051. "time": "2020-10-26T05:33:50+00:00"
  10052. },
  10053. {
  10054. "name": "phpunit/php-timer",
  10055. "version": "5.0.3",
  10056. "source": {
  10057. "type": "git",
  10058. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10059. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10060. },
  10061. "dist": {
  10062. "type": "zip",
  10063. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10064. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10065. "shasum": ""
  10066. },
  10067. "require": {
  10068. "php": ">=7.3"
  10069. },
  10070. "require-dev": {
  10071. "phpunit/phpunit": "^9.3"
  10072. },
  10073. "type": "library",
  10074. "extra": {
  10075. "branch-alias": {
  10076. "dev-master": "5.0-dev"
  10077. }
  10078. },
  10079. "autoload": {
  10080. "classmap": [
  10081. "src/"
  10082. ]
  10083. },
  10084. "notification-url": "https://packagist.org/downloads/",
  10085. "license": [
  10086. "BSD-3-Clause"
  10087. ],
  10088. "authors": [
  10089. {
  10090. "name": "Sebastian Bergmann",
  10091. "email": "sebastian@phpunit.de",
  10092. "role": "lead"
  10093. }
  10094. ],
  10095. "description": "Utility class for timing",
  10096. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10097. "keywords": [
  10098. "timer"
  10099. ],
  10100. "support": {
  10101. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10102. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10103. },
  10104. "funding": [
  10105. {
  10106. "url": "https://github.com/sebastianbergmann",
  10107. "type": "github"
  10108. }
  10109. ],
  10110. "time": "2020-10-26T13:16:10+00:00"
  10111. },
  10112. {
  10113. "name": "phpunit/phpunit",
  10114. "version": "9.6.11",
  10115. "source": {
  10116. "type": "git",
  10117. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10118. "reference": "810500e92855eba8a7a5319ae913be2da6f957b0"
  10119. },
  10120. "dist": {
  10121. "type": "zip",
  10122. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/810500e92855eba8a7a5319ae913be2da6f957b0",
  10123. "reference": "810500e92855eba8a7a5319ae913be2da6f957b0",
  10124. "shasum": ""
  10125. },
  10126. "require": {
  10127. "doctrine/instantiator": "^1.3.1 || ^2",
  10128. "ext-dom": "*",
  10129. "ext-json": "*",
  10130. "ext-libxml": "*",
  10131. "ext-mbstring": "*",
  10132. "ext-xml": "*",
  10133. "ext-xmlwriter": "*",
  10134. "myclabs/deep-copy": "^1.10.1",
  10135. "phar-io/manifest": "^2.0.3",
  10136. "phar-io/version": "^3.0.2",
  10137. "php": ">=7.3",
  10138. "phpunit/php-code-coverage": "^9.2.13",
  10139. "phpunit/php-file-iterator": "^3.0.5",
  10140. "phpunit/php-invoker": "^3.1.1",
  10141. "phpunit/php-text-template": "^2.0.3",
  10142. "phpunit/php-timer": "^5.0.2",
  10143. "sebastian/cli-parser": "^1.0.1",
  10144. "sebastian/code-unit": "^1.0.6",
  10145. "sebastian/comparator": "^4.0.8",
  10146. "sebastian/diff": "^4.0.3",
  10147. "sebastian/environment": "^5.1.3",
  10148. "sebastian/exporter": "^4.0.5",
  10149. "sebastian/global-state": "^5.0.1",
  10150. "sebastian/object-enumerator": "^4.0.3",
  10151. "sebastian/resource-operations": "^3.0.3",
  10152. "sebastian/type": "^3.2",
  10153. "sebastian/version": "^3.0.2"
  10154. },
  10155. "suggest": {
  10156. "ext-soap": "To be able to generate mocks based on WSDL files",
  10157. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10158. },
  10159. "bin": [
  10160. "phpunit"
  10161. ],
  10162. "type": "library",
  10163. "extra": {
  10164. "branch-alias": {
  10165. "dev-master": "9.6-dev"
  10166. }
  10167. },
  10168. "autoload": {
  10169. "files": [
  10170. "src/Framework/Assert/Functions.php"
  10171. ],
  10172. "classmap": [
  10173. "src/"
  10174. ]
  10175. },
  10176. "notification-url": "https://packagist.org/downloads/",
  10177. "license": [
  10178. "BSD-3-Clause"
  10179. ],
  10180. "authors": [
  10181. {
  10182. "name": "Sebastian Bergmann",
  10183. "email": "sebastian@phpunit.de",
  10184. "role": "lead"
  10185. }
  10186. ],
  10187. "description": "The PHP Unit Testing framework.",
  10188. "homepage": "https://phpunit.de/",
  10189. "keywords": [
  10190. "phpunit",
  10191. "testing",
  10192. "xunit"
  10193. ],
  10194. "support": {
  10195. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10196. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10197. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.11"
  10198. },
  10199. "funding": [
  10200. {
  10201. "url": "https://phpunit.de/sponsors.html",
  10202. "type": "custom"
  10203. },
  10204. {
  10205. "url": "https://github.com/sebastianbergmann",
  10206. "type": "github"
  10207. },
  10208. {
  10209. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10210. "type": "tidelift"
  10211. }
  10212. ],
  10213. "time": "2023-08-19T07:10:56+00:00"
  10214. },
  10215. {
  10216. "name": "sebastian/cli-parser",
  10217. "version": "1.0.1",
  10218. "source": {
  10219. "type": "git",
  10220. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10221. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10222. },
  10223. "dist": {
  10224. "type": "zip",
  10225. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10226. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10227. "shasum": ""
  10228. },
  10229. "require": {
  10230. "php": ">=7.3"
  10231. },
  10232. "require-dev": {
  10233. "phpunit/phpunit": "^9.3"
  10234. },
  10235. "type": "library",
  10236. "extra": {
  10237. "branch-alias": {
  10238. "dev-master": "1.0-dev"
  10239. }
  10240. },
  10241. "autoload": {
  10242. "classmap": [
  10243. "src/"
  10244. ]
  10245. },
  10246. "notification-url": "https://packagist.org/downloads/",
  10247. "license": [
  10248. "BSD-3-Clause"
  10249. ],
  10250. "authors": [
  10251. {
  10252. "name": "Sebastian Bergmann",
  10253. "email": "sebastian@phpunit.de",
  10254. "role": "lead"
  10255. }
  10256. ],
  10257. "description": "Library for parsing CLI options",
  10258. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10259. "support": {
  10260. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10261. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10262. },
  10263. "funding": [
  10264. {
  10265. "url": "https://github.com/sebastianbergmann",
  10266. "type": "github"
  10267. }
  10268. ],
  10269. "time": "2020-09-28T06:08:49+00:00"
  10270. },
  10271. {
  10272. "name": "sebastian/code-unit",
  10273. "version": "1.0.8",
  10274. "source": {
  10275. "type": "git",
  10276. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10277. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10278. },
  10279. "dist": {
  10280. "type": "zip",
  10281. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10282. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10283. "shasum": ""
  10284. },
  10285. "require": {
  10286. "php": ">=7.3"
  10287. },
  10288. "require-dev": {
  10289. "phpunit/phpunit": "^9.3"
  10290. },
  10291. "type": "library",
  10292. "extra": {
  10293. "branch-alias": {
  10294. "dev-master": "1.0-dev"
  10295. }
  10296. },
  10297. "autoload": {
  10298. "classmap": [
  10299. "src/"
  10300. ]
  10301. },
  10302. "notification-url": "https://packagist.org/downloads/",
  10303. "license": [
  10304. "BSD-3-Clause"
  10305. ],
  10306. "authors": [
  10307. {
  10308. "name": "Sebastian Bergmann",
  10309. "email": "sebastian@phpunit.de",
  10310. "role": "lead"
  10311. }
  10312. ],
  10313. "description": "Collection of value objects that represent the PHP code units",
  10314. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10315. "support": {
  10316. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10317. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10318. },
  10319. "funding": [
  10320. {
  10321. "url": "https://github.com/sebastianbergmann",
  10322. "type": "github"
  10323. }
  10324. ],
  10325. "time": "2020-10-26T13:08:54+00:00"
  10326. },
  10327. {
  10328. "name": "sebastian/code-unit-reverse-lookup",
  10329. "version": "2.0.3",
  10330. "source": {
  10331. "type": "git",
  10332. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10333. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10334. },
  10335. "dist": {
  10336. "type": "zip",
  10337. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10338. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10339. "shasum": ""
  10340. },
  10341. "require": {
  10342. "php": ">=7.3"
  10343. },
  10344. "require-dev": {
  10345. "phpunit/phpunit": "^9.3"
  10346. },
  10347. "type": "library",
  10348. "extra": {
  10349. "branch-alias": {
  10350. "dev-master": "2.0-dev"
  10351. }
  10352. },
  10353. "autoload": {
  10354. "classmap": [
  10355. "src/"
  10356. ]
  10357. },
  10358. "notification-url": "https://packagist.org/downloads/",
  10359. "license": [
  10360. "BSD-3-Clause"
  10361. ],
  10362. "authors": [
  10363. {
  10364. "name": "Sebastian Bergmann",
  10365. "email": "sebastian@phpunit.de"
  10366. }
  10367. ],
  10368. "description": "Looks up which function or method a line of code belongs to",
  10369. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10370. "support": {
  10371. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10372. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10373. },
  10374. "funding": [
  10375. {
  10376. "url": "https://github.com/sebastianbergmann",
  10377. "type": "github"
  10378. }
  10379. ],
  10380. "time": "2020-09-28T05:30:19+00:00"
  10381. },
  10382. {
  10383. "name": "sebastian/comparator",
  10384. "version": "4.0.8",
  10385. "source": {
  10386. "type": "git",
  10387. "url": "https://github.com/sebastianbergmann/comparator.git",
  10388. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  10389. },
  10390. "dist": {
  10391. "type": "zip",
  10392. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  10393. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  10394. "shasum": ""
  10395. },
  10396. "require": {
  10397. "php": ">=7.3",
  10398. "sebastian/diff": "^4.0",
  10399. "sebastian/exporter": "^4.0"
  10400. },
  10401. "require-dev": {
  10402. "phpunit/phpunit": "^9.3"
  10403. },
  10404. "type": "library",
  10405. "extra": {
  10406. "branch-alias": {
  10407. "dev-master": "4.0-dev"
  10408. }
  10409. },
  10410. "autoload": {
  10411. "classmap": [
  10412. "src/"
  10413. ]
  10414. },
  10415. "notification-url": "https://packagist.org/downloads/",
  10416. "license": [
  10417. "BSD-3-Clause"
  10418. ],
  10419. "authors": [
  10420. {
  10421. "name": "Sebastian Bergmann",
  10422. "email": "sebastian@phpunit.de"
  10423. },
  10424. {
  10425. "name": "Jeff Welch",
  10426. "email": "whatthejeff@gmail.com"
  10427. },
  10428. {
  10429. "name": "Volker Dusch",
  10430. "email": "github@wallbash.com"
  10431. },
  10432. {
  10433. "name": "Bernhard Schussek",
  10434. "email": "bschussek@2bepublished.at"
  10435. }
  10436. ],
  10437. "description": "Provides the functionality to compare PHP values for equality",
  10438. "homepage": "https://github.com/sebastianbergmann/comparator",
  10439. "keywords": [
  10440. "comparator",
  10441. "compare",
  10442. "equality"
  10443. ],
  10444. "support": {
  10445. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10446. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  10447. },
  10448. "funding": [
  10449. {
  10450. "url": "https://github.com/sebastianbergmann",
  10451. "type": "github"
  10452. }
  10453. ],
  10454. "time": "2022-09-14T12:41:17+00:00"
  10455. },
  10456. {
  10457. "name": "sebastian/complexity",
  10458. "version": "2.0.2",
  10459. "source": {
  10460. "type": "git",
  10461. "url": "https://github.com/sebastianbergmann/complexity.git",
  10462. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10463. },
  10464. "dist": {
  10465. "type": "zip",
  10466. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10467. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10468. "shasum": ""
  10469. },
  10470. "require": {
  10471. "nikic/php-parser": "^4.7",
  10472. "php": ">=7.3"
  10473. },
  10474. "require-dev": {
  10475. "phpunit/phpunit": "^9.3"
  10476. },
  10477. "type": "library",
  10478. "extra": {
  10479. "branch-alias": {
  10480. "dev-master": "2.0-dev"
  10481. }
  10482. },
  10483. "autoload": {
  10484. "classmap": [
  10485. "src/"
  10486. ]
  10487. },
  10488. "notification-url": "https://packagist.org/downloads/",
  10489. "license": [
  10490. "BSD-3-Clause"
  10491. ],
  10492. "authors": [
  10493. {
  10494. "name": "Sebastian Bergmann",
  10495. "email": "sebastian@phpunit.de",
  10496. "role": "lead"
  10497. }
  10498. ],
  10499. "description": "Library for calculating the complexity of PHP code units",
  10500. "homepage": "https://github.com/sebastianbergmann/complexity",
  10501. "support": {
  10502. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10503. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10504. },
  10505. "funding": [
  10506. {
  10507. "url": "https://github.com/sebastianbergmann",
  10508. "type": "github"
  10509. }
  10510. ],
  10511. "time": "2020-10-26T15:52:27+00:00"
  10512. },
  10513. {
  10514. "name": "sebastian/diff",
  10515. "version": "4.0.5",
  10516. "source": {
  10517. "type": "git",
  10518. "url": "https://github.com/sebastianbergmann/diff.git",
  10519. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  10520. },
  10521. "dist": {
  10522. "type": "zip",
  10523. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  10524. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  10525. "shasum": ""
  10526. },
  10527. "require": {
  10528. "php": ">=7.3"
  10529. },
  10530. "require-dev": {
  10531. "phpunit/phpunit": "^9.3",
  10532. "symfony/process": "^4.2 || ^5"
  10533. },
  10534. "type": "library",
  10535. "extra": {
  10536. "branch-alias": {
  10537. "dev-master": "4.0-dev"
  10538. }
  10539. },
  10540. "autoload": {
  10541. "classmap": [
  10542. "src/"
  10543. ]
  10544. },
  10545. "notification-url": "https://packagist.org/downloads/",
  10546. "license": [
  10547. "BSD-3-Clause"
  10548. ],
  10549. "authors": [
  10550. {
  10551. "name": "Sebastian Bergmann",
  10552. "email": "sebastian@phpunit.de"
  10553. },
  10554. {
  10555. "name": "Kore Nordmann",
  10556. "email": "mail@kore-nordmann.de"
  10557. }
  10558. ],
  10559. "description": "Diff implementation",
  10560. "homepage": "https://github.com/sebastianbergmann/diff",
  10561. "keywords": [
  10562. "diff",
  10563. "udiff",
  10564. "unidiff",
  10565. "unified diff"
  10566. ],
  10567. "support": {
  10568. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10569. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  10570. },
  10571. "funding": [
  10572. {
  10573. "url": "https://github.com/sebastianbergmann",
  10574. "type": "github"
  10575. }
  10576. ],
  10577. "time": "2023-05-07T05:35:17+00:00"
  10578. },
  10579. {
  10580. "name": "sebastian/environment",
  10581. "version": "5.1.5",
  10582. "source": {
  10583. "type": "git",
  10584. "url": "https://github.com/sebastianbergmann/environment.git",
  10585. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10586. },
  10587. "dist": {
  10588. "type": "zip",
  10589. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10590. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10591. "shasum": ""
  10592. },
  10593. "require": {
  10594. "php": ">=7.3"
  10595. },
  10596. "require-dev": {
  10597. "phpunit/phpunit": "^9.3"
  10598. },
  10599. "suggest": {
  10600. "ext-posix": "*"
  10601. },
  10602. "type": "library",
  10603. "extra": {
  10604. "branch-alias": {
  10605. "dev-master": "5.1-dev"
  10606. }
  10607. },
  10608. "autoload": {
  10609. "classmap": [
  10610. "src/"
  10611. ]
  10612. },
  10613. "notification-url": "https://packagist.org/downloads/",
  10614. "license": [
  10615. "BSD-3-Clause"
  10616. ],
  10617. "authors": [
  10618. {
  10619. "name": "Sebastian Bergmann",
  10620. "email": "sebastian@phpunit.de"
  10621. }
  10622. ],
  10623. "description": "Provides functionality to handle HHVM/PHP environments",
  10624. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10625. "keywords": [
  10626. "Xdebug",
  10627. "environment",
  10628. "hhvm"
  10629. ],
  10630. "support": {
  10631. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10632. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10633. },
  10634. "funding": [
  10635. {
  10636. "url": "https://github.com/sebastianbergmann",
  10637. "type": "github"
  10638. }
  10639. ],
  10640. "time": "2023-02-03T06:03:51+00:00"
  10641. },
  10642. {
  10643. "name": "sebastian/exporter",
  10644. "version": "4.0.5",
  10645. "source": {
  10646. "type": "git",
  10647. "url": "https://github.com/sebastianbergmann/exporter.git",
  10648. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  10649. },
  10650. "dist": {
  10651. "type": "zip",
  10652. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10653. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10654. "shasum": ""
  10655. },
  10656. "require": {
  10657. "php": ">=7.3",
  10658. "sebastian/recursion-context": "^4.0"
  10659. },
  10660. "require-dev": {
  10661. "ext-mbstring": "*",
  10662. "phpunit/phpunit": "^9.3"
  10663. },
  10664. "type": "library",
  10665. "extra": {
  10666. "branch-alias": {
  10667. "dev-master": "4.0-dev"
  10668. }
  10669. },
  10670. "autoload": {
  10671. "classmap": [
  10672. "src/"
  10673. ]
  10674. },
  10675. "notification-url": "https://packagist.org/downloads/",
  10676. "license": [
  10677. "BSD-3-Clause"
  10678. ],
  10679. "authors": [
  10680. {
  10681. "name": "Sebastian Bergmann",
  10682. "email": "sebastian@phpunit.de"
  10683. },
  10684. {
  10685. "name": "Jeff Welch",
  10686. "email": "whatthejeff@gmail.com"
  10687. },
  10688. {
  10689. "name": "Volker Dusch",
  10690. "email": "github@wallbash.com"
  10691. },
  10692. {
  10693. "name": "Adam Harvey",
  10694. "email": "aharvey@php.net"
  10695. },
  10696. {
  10697. "name": "Bernhard Schussek",
  10698. "email": "bschussek@gmail.com"
  10699. }
  10700. ],
  10701. "description": "Provides the functionality to export PHP variables for visualization",
  10702. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10703. "keywords": [
  10704. "export",
  10705. "exporter"
  10706. ],
  10707. "support": {
  10708. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10709. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10710. },
  10711. "funding": [
  10712. {
  10713. "url": "https://github.com/sebastianbergmann",
  10714. "type": "github"
  10715. }
  10716. ],
  10717. "time": "2022-09-14T06:03:37+00:00"
  10718. },
  10719. {
  10720. "name": "sebastian/global-state",
  10721. "version": "5.0.6",
  10722. "source": {
  10723. "type": "git",
  10724. "url": "https://github.com/sebastianbergmann/global-state.git",
  10725. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  10726. },
  10727. "dist": {
  10728. "type": "zip",
  10729. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  10730. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  10731. "shasum": ""
  10732. },
  10733. "require": {
  10734. "php": ">=7.3",
  10735. "sebastian/object-reflector": "^2.0",
  10736. "sebastian/recursion-context": "^4.0"
  10737. },
  10738. "require-dev": {
  10739. "ext-dom": "*",
  10740. "phpunit/phpunit": "^9.3"
  10741. },
  10742. "suggest": {
  10743. "ext-uopz": "*"
  10744. },
  10745. "type": "library",
  10746. "extra": {
  10747. "branch-alias": {
  10748. "dev-master": "5.0-dev"
  10749. }
  10750. },
  10751. "autoload": {
  10752. "classmap": [
  10753. "src/"
  10754. ]
  10755. },
  10756. "notification-url": "https://packagist.org/downloads/",
  10757. "license": [
  10758. "BSD-3-Clause"
  10759. ],
  10760. "authors": [
  10761. {
  10762. "name": "Sebastian Bergmann",
  10763. "email": "sebastian@phpunit.de"
  10764. }
  10765. ],
  10766. "description": "Snapshotting of global state",
  10767. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10768. "keywords": [
  10769. "global state"
  10770. ],
  10771. "support": {
  10772. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10773. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  10774. },
  10775. "funding": [
  10776. {
  10777. "url": "https://github.com/sebastianbergmann",
  10778. "type": "github"
  10779. }
  10780. ],
  10781. "time": "2023-08-02T09:26:13+00:00"
  10782. },
  10783. {
  10784. "name": "sebastian/lines-of-code",
  10785. "version": "1.0.3",
  10786. "source": {
  10787. "type": "git",
  10788. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10789. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10790. },
  10791. "dist": {
  10792. "type": "zip",
  10793. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10794. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10795. "shasum": ""
  10796. },
  10797. "require": {
  10798. "nikic/php-parser": "^4.6",
  10799. "php": ">=7.3"
  10800. },
  10801. "require-dev": {
  10802. "phpunit/phpunit": "^9.3"
  10803. },
  10804. "type": "library",
  10805. "extra": {
  10806. "branch-alias": {
  10807. "dev-master": "1.0-dev"
  10808. }
  10809. },
  10810. "autoload": {
  10811. "classmap": [
  10812. "src/"
  10813. ]
  10814. },
  10815. "notification-url": "https://packagist.org/downloads/",
  10816. "license": [
  10817. "BSD-3-Clause"
  10818. ],
  10819. "authors": [
  10820. {
  10821. "name": "Sebastian Bergmann",
  10822. "email": "sebastian@phpunit.de",
  10823. "role": "lead"
  10824. }
  10825. ],
  10826. "description": "Library for counting the lines of code in PHP source code",
  10827. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10828. "support": {
  10829. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10830. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10831. },
  10832. "funding": [
  10833. {
  10834. "url": "https://github.com/sebastianbergmann",
  10835. "type": "github"
  10836. }
  10837. ],
  10838. "time": "2020-11-28T06:42:11+00:00"
  10839. },
  10840. {
  10841. "name": "sebastian/object-enumerator",
  10842. "version": "4.0.4",
  10843. "source": {
  10844. "type": "git",
  10845. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10846. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10847. },
  10848. "dist": {
  10849. "type": "zip",
  10850. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10851. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10852. "shasum": ""
  10853. },
  10854. "require": {
  10855. "php": ">=7.3",
  10856. "sebastian/object-reflector": "^2.0",
  10857. "sebastian/recursion-context": "^4.0"
  10858. },
  10859. "require-dev": {
  10860. "phpunit/phpunit": "^9.3"
  10861. },
  10862. "type": "library",
  10863. "extra": {
  10864. "branch-alias": {
  10865. "dev-master": "4.0-dev"
  10866. }
  10867. },
  10868. "autoload": {
  10869. "classmap": [
  10870. "src/"
  10871. ]
  10872. },
  10873. "notification-url": "https://packagist.org/downloads/",
  10874. "license": [
  10875. "BSD-3-Clause"
  10876. ],
  10877. "authors": [
  10878. {
  10879. "name": "Sebastian Bergmann",
  10880. "email": "sebastian@phpunit.de"
  10881. }
  10882. ],
  10883. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10884. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10885. "support": {
  10886. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10887. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10888. },
  10889. "funding": [
  10890. {
  10891. "url": "https://github.com/sebastianbergmann",
  10892. "type": "github"
  10893. }
  10894. ],
  10895. "time": "2020-10-26T13:12:34+00:00"
  10896. },
  10897. {
  10898. "name": "sebastian/object-reflector",
  10899. "version": "2.0.4",
  10900. "source": {
  10901. "type": "git",
  10902. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10903. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10904. },
  10905. "dist": {
  10906. "type": "zip",
  10907. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10908. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10909. "shasum": ""
  10910. },
  10911. "require": {
  10912. "php": ">=7.3"
  10913. },
  10914. "require-dev": {
  10915. "phpunit/phpunit": "^9.3"
  10916. },
  10917. "type": "library",
  10918. "extra": {
  10919. "branch-alias": {
  10920. "dev-master": "2.0-dev"
  10921. }
  10922. },
  10923. "autoload": {
  10924. "classmap": [
  10925. "src/"
  10926. ]
  10927. },
  10928. "notification-url": "https://packagist.org/downloads/",
  10929. "license": [
  10930. "BSD-3-Clause"
  10931. ],
  10932. "authors": [
  10933. {
  10934. "name": "Sebastian Bergmann",
  10935. "email": "sebastian@phpunit.de"
  10936. }
  10937. ],
  10938. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10939. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10940. "support": {
  10941. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10942. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10943. },
  10944. "funding": [
  10945. {
  10946. "url": "https://github.com/sebastianbergmann",
  10947. "type": "github"
  10948. }
  10949. ],
  10950. "time": "2020-10-26T13:14:26+00:00"
  10951. },
  10952. {
  10953. "name": "sebastian/recursion-context",
  10954. "version": "4.0.5",
  10955. "source": {
  10956. "type": "git",
  10957. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10958. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10959. },
  10960. "dist": {
  10961. "type": "zip",
  10962. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10963. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10964. "shasum": ""
  10965. },
  10966. "require": {
  10967. "php": ">=7.3"
  10968. },
  10969. "require-dev": {
  10970. "phpunit/phpunit": "^9.3"
  10971. },
  10972. "type": "library",
  10973. "extra": {
  10974. "branch-alias": {
  10975. "dev-master": "4.0-dev"
  10976. }
  10977. },
  10978. "autoload": {
  10979. "classmap": [
  10980. "src/"
  10981. ]
  10982. },
  10983. "notification-url": "https://packagist.org/downloads/",
  10984. "license": [
  10985. "BSD-3-Clause"
  10986. ],
  10987. "authors": [
  10988. {
  10989. "name": "Sebastian Bergmann",
  10990. "email": "sebastian@phpunit.de"
  10991. },
  10992. {
  10993. "name": "Jeff Welch",
  10994. "email": "whatthejeff@gmail.com"
  10995. },
  10996. {
  10997. "name": "Adam Harvey",
  10998. "email": "aharvey@php.net"
  10999. }
  11000. ],
  11001. "description": "Provides functionality to recursively process PHP variables",
  11002. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  11003. "support": {
  11004. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11005. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  11006. },
  11007. "funding": [
  11008. {
  11009. "url": "https://github.com/sebastianbergmann",
  11010. "type": "github"
  11011. }
  11012. ],
  11013. "time": "2023-02-03T06:07:39+00:00"
  11014. },
  11015. {
  11016. "name": "sebastian/resource-operations",
  11017. "version": "3.0.3",
  11018. "source": {
  11019. "type": "git",
  11020. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11021. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  11022. },
  11023. "dist": {
  11024. "type": "zip",
  11025. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11026. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11027. "shasum": ""
  11028. },
  11029. "require": {
  11030. "php": ">=7.3"
  11031. },
  11032. "require-dev": {
  11033. "phpunit/phpunit": "^9.0"
  11034. },
  11035. "type": "library",
  11036. "extra": {
  11037. "branch-alias": {
  11038. "dev-master": "3.0-dev"
  11039. }
  11040. },
  11041. "autoload": {
  11042. "classmap": [
  11043. "src/"
  11044. ]
  11045. },
  11046. "notification-url": "https://packagist.org/downloads/",
  11047. "license": [
  11048. "BSD-3-Clause"
  11049. ],
  11050. "authors": [
  11051. {
  11052. "name": "Sebastian Bergmann",
  11053. "email": "sebastian@phpunit.de"
  11054. }
  11055. ],
  11056. "description": "Provides a list of PHP built-in functions that operate on resources",
  11057. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11058. "support": {
  11059. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11060. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11061. },
  11062. "funding": [
  11063. {
  11064. "url": "https://github.com/sebastianbergmann",
  11065. "type": "github"
  11066. }
  11067. ],
  11068. "time": "2020-09-28T06:45:17+00:00"
  11069. },
  11070. {
  11071. "name": "sebastian/type",
  11072. "version": "3.2.1",
  11073. "source": {
  11074. "type": "git",
  11075. "url": "https://github.com/sebastianbergmann/type.git",
  11076. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  11077. },
  11078. "dist": {
  11079. "type": "zip",
  11080. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  11081. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  11082. "shasum": ""
  11083. },
  11084. "require": {
  11085. "php": ">=7.3"
  11086. },
  11087. "require-dev": {
  11088. "phpunit/phpunit": "^9.5"
  11089. },
  11090. "type": "library",
  11091. "extra": {
  11092. "branch-alias": {
  11093. "dev-master": "3.2-dev"
  11094. }
  11095. },
  11096. "autoload": {
  11097. "classmap": [
  11098. "src/"
  11099. ]
  11100. },
  11101. "notification-url": "https://packagist.org/downloads/",
  11102. "license": [
  11103. "BSD-3-Clause"
  11104. ],
  11105. "authors": [
  11106. {
  11107. "name": "Sebastian Bergmann",
  11108. "email": "sebastian@phpunit.de",
  11109. "role": "lead"
  11110. }
  11111. ],
  11112. "description": "Collection of value objects that represent the types of the PHP type system",
  11113. "homepage": "https://github.com/sebastianbergmann/type",
  11114. "support": {
  11115. "issues": "https://github.com/sebastianbergmann/type/issues",
  11116. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  11117. },
  11118. "funding": [
  11119. {
  11120. "url": "https://github.com/sebastianbergmann",
  11121. "type": "github"
  11122. }
  11123. ],
  11124. "time": "2023-02-03T06:13:03+00:00"
  11125. },
  11126. {
  11127. "name": "sebastian/version",
  11128. "version": "3.0.2",
  11129. "source": {
  11130. "type": "git",
  11131. "url": "https://github.com/sebastianbergmann/version.git",
  11132. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11133. },
  11134. "dist": {
  11135. "type": "zip",
  11136. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11137. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11138. "shasum": ""
  11139. },
  11140. "require": {
  11141. "php": ">=7.3"
  11142. },
  11143. "type": "library",
  11144. "extra": {
  11145. "branch-alias": {
  11146. "dev-master": "3.0-dev"
  11147. }
  11148. },
  11149. "autoload": {
  11150. "classmap": [
  11151. "src/"
  11152. ]
  11153. },
  11154. "notification-url": "https://packagist.org/downloads/",
  11155. "license": [
  11156. "BSD-3-Clause"
  11157. ],
  11158. "authors": [
  11159. {
  11160. "name": "Sebastian Bergmann",
  11161. "email": "sebastian@phpunit.de",
  11162. "role": "lead"
  11163. }
  11164. ],
  11165. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11166. "homepage": "https://github.com/sebastianbergmann/version",
  11167. "support": {
  11168. "issues": "https://github.com/sebastianbergmann/version/issues",
  11169. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11170. },
  11171. "funding": [
  11172. {
  11173. "url": "https://github.com/sebastianbergmann",
  11174. "type": "github"
  11175. }
  11176. ],
  11177. "time": "2020-09-28T06:39:44+00:00"
  11178. },
  11179. {
  11180. "name": "theseer/tokenizer",
  11181. "version": "1.2.1",
  11182. "source": {
  11183. "type": "git",
  11184. "url": "https://github.com/theseer/tokenizer.git",
  11185. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  11186. },
  11187. "dist": {
  11188. "type": "zip",
  11189. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  11190. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  11191. "shasum": ""
  11192. },
  11193. "require": {
  11194. "ext-dom": "*",
  11195. "ext-tokenizer": "*",
  11196. "ext-xmlwriter": "*",
  11197. "php": "^7.2 || ^8.0"
  11198. },
  11199. "type": "library",
  11200. "autoload": {
  11201. "classmap": [
  11202. "src/"
  11203. ]
  11204. },
  11205. "notification-url": "https://packagist.org/downloads/",
  11206. "license": [
  11207. "BSD-3-Clause"
  11208. ],
  11209. "authors": [
  11210. {
  11211. "name": "Arne Blankerts",
  11212. "email": "arne@blankerts.de",
  11213. "role": "Developer"
  11214. }
  11215. ],
  11216. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11217. "support": {
  11218. "issues": "https://github.com/theseer/tokenizer/issues",
  11219. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  11220. },
  11221. "funding": [
  11222. {
  11223. "url": "https://github.com/theseer",
  11224. "type": "github"
  11225. }
  11226. ],
  11227. "time": "2021-07-28T10:34:58+00:00"
  11228. }
  11229. ],
  11230. "aliases": [],
  11231. "minimum-stability": "dev",
  11232. "stability-flags": {
  11233. "wngur6076/wngurest-php80": 20
  11234. },
  11235. "prefer-stable": true,
  11236. "prefer-lowest": false,
  11237. "platform": {
  11238. "php": "^7.3|^8.0",
  11239. "ext-json": "*",
  11240. "ext-sodium": "*"
  11241. },
  11242. "platform-dev": [],
  11243. "plugin-api-version": "2.0.0"
  11244. }