composer.lock 315 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851
  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": "2a8168eeedde7a53da86b9371da7afae",
  8. "packages": [
  9. {
  10. "name": "anankke/omnipay-alipay",
  11. "version": "v3.1.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Anankke/omnipay-alipay.git",
  15. "reference": "66b20f5e66b88be1214b9b859de5d5318b49fe90"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Anankke/omnipay-alipay/zipball/66b20f5e66b88be1214b9b859de5d5318b49fe90",
  20. "reference": "66b20f5e66b88be1214b9b859de5d5318b49fe90",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-bcmath": "*",
  25. "ext-json": "*",
  26. "ext-openssl": "*",
  27. "omnipay/common": "^3.0",
  28. "php-http/guzzle7-adapter": "^1"
  29. },
  30. "require-dev": {
  31. "omnipay/tests": "^3.0",
  32. "squizlabs/php_codesniffer": "^3.4"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "files": [
  37. "src/Common/helpers.php"
  38. ],
  39. "psr-4": {
  40. "Omnipay\\Alipay\\": "src/",
  41. "Omnipay\\Alipay\\Tests\\": "tests/"
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "MIT"
  47. ],
  48. "authors": [
  49. {
  50. "name": "Loki Else",
  51. "email": "[email protected]"
  52. }
  53. ],
  54. "description": "Alipay gateway for Omnipay payment processing library",
  55. "homepage": "https://github.com/lokielse/omnipay-alipay",
  56. "keywords": [
  57. "alipay",
  58. "gateway",
  59. "merchant",
  60. "omnipay",
  61. "pay",
  62. "payment",
  63. "purchase"
  64. ],
  65. "support": {
  66. "source": "https://github.com/Anankke/omnipay-alipay/tree/v3.1.3"
  67. },
  68. "time": "2022-04-23T09:09:28+00:00"
  69. },
  70. {
  71. "name": "aws/aws-crt-php",
  72. "version": "v1.2.1",
  73. "source": {
  74. "type": "git",
  75. "url": "https://github.com/awslabs/aws-crt-php.git",
  76. "reference": "1926277fc71d253dfa820271ac5987bdb193ccf5"
  77. },
  78. "dist": {
  79. "type": "zip",
  80. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/1926277fc71d253dfa820271ac5987bdb193ccf5",
  81. "reference": "1926277fc71d253dfa820271ac5987bdb193ccf5",
  82. "shasum": ""
  83. },
  84. "require": {
  85. "php": ">=5.5"
  86. },
  87. "require-dev": {
  88. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  89. "yoast/phpunit-polyfills": "^1.0"
  90. },
  91. "suggest": {
  92. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  93. },
  94. "type": "library",
  95. "autoload": {
  96. "classmap": [
  97. "src/"
  98. ]
  99. },
  100. "notification-url": "https://packagist.org/downloads/",
  101. "license": [
  102. "Apache-2.0"
  103. ],
  104. "authors": [
  105. {
  106. "name": "AWS SDK Common Runtime Team",
  107. "email": "[email protected]"
  108. }
  109. ],
  110. "description": "AWS Common Runtime for PHP",
  111. "homepage": "https://github.com/awslabs/aws-crt-php",
  112. "keywords": [
  113. "amazon",
  114. "aws",
  115. "crt",
  116. "sdk"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  120. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.1"
  121. },
  122. "time": "2023-03-24T20:22:19+00:00"
  123. },
  124. {
  125. "name": "aws/aws-sdk-php",
  126. "version": "3.272.2",
  127. "source": {
  128. "type": "git",
  129. "url": "https://github.com/aws/aws-sdk-php.git",
  130. "reference": "0c4cba74c79f9b44393c27721fa1fa9138c95387"
  131. },
  132. "dist": {
  133. "type": "zip",
  134. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/0c4cba74c79f9b44393c27721fa1fa9138c95387",
  135. "reference": "0c4cba74c79f9b44393c27721fa1fa9138c95387",
  136. "shasum": ""
  137. },
  138. "require": {
  139. "aws/aws-crt-php": "^1.0.4",
  140. "ext-json": "*",
  141. "ext-pcre": "*",
  142. "ext-simplexml": "*",
  143. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  144. "guzzlehttp/promises": "^1.4.0",
  145. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  146. "mtdowling/jmespath.php": "^2.6",
  147. "php": ">=5.5",
  148. "psr/http-message": "^1.0"
  149. },
  150. "require-dev": {
  151. "andrewsville/php-token-reflection": "^1.4",
  152. "aws/aws-php-sns-message-validator": "~1.0",
  153. "behat/behat": "~3.0",
  154. "composer/composer": "^1.10.22",
  155. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  156. "doctrine/cache": "~1.4",
  157. "ext-dom": "*",
  158. "ext-openssl": "*",
  159. "ext-pcntl": "*",
  160. "ext-sockets": "*",
  161. "nette/neon": "^2.3",
  162. "paragonie/random_compat": ">= 2",
  163. "phpunit/phpunit": "^4.8.35 || ^5.6.3 || ^9.5",
  164. "psr/cache": "^1.0",
  165. "psr/simple-cache": "^1.0",
  166. "sebastian/comparator": "^1.2.3 || ^4.0",
  167. "yoast/phpunit-polyfills": "^1.0"
  168. },
  169. "suggest": {
  170. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  171. "doctrine/cache": "To use the DoctrineCacheAdapter",
  172. "ext-curl": "To send requests using cURL",
  173. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  174. "ext-sockets": "To use client-side monitoring"
  175. },
  176. "type": "library",
  177. "extra": {
  178. "branch-alias": {
  179. "dev-master": "3.0-dev"
  180. }
  181. },
  182. "autoload": {
  183. "files": [
  184. "src/functions.php"
  185. ],
  186. "psr-4": {
  187. "Aws\\": "src/"
  188. }
  189. },
  190. "notification-url": "https://packagist.org/downloads/",
  191. "license": [
  192. "Apache-2.0"
  193. ],
  194. "authors": [
  195. {
  196. "name": "Amazon Web Services",
  197. "homepage": "http://aws.amazon.com"
  198. }
  199. ],
  200. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  201. "homepage": "http://aws.amazon.com/sdkforphp",
  202. "keywords": [
  203. "amazon",
  204. "aws",
  205. "cloud",
  206. "dynamodb",
  207. "ec2",
  208. "glacier",
  209. "s3",
  210. "sdk"
  211. ],
  212. "support": {
  213. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  214. "issues": "https://github.com/aws/aws-sdk-php/issues",
  215. "source": "https://github.com/aws/aws-sdk-php/tree/3.272.2"
  216. },
  217. "time": "2023-06-12T18:21:59+00:00"
  218. },
  219. {
  220. "name": "bacon/bacon-qr-code",
  221. "version": "2.0.8",
  222. "source": {
  223. "type": "git",
  224. "url": "https://github.com/Bacon/BaconQrCode.git",
  225. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  226. },
  227. "dist": {
  228. "type": "zip",
  229. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  230. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  231. "shasum": ""
  232. },
  233. "require": {
  234. "dasprid/enum": "^1.0.3",
  235. "ext-iconv": "*",
  236. "php": "^7.1 || ^8.0"
  237. },
  238. "require-dev": {
  239. "phly/keep-a-changelog": "^2.1",
  240. "phpunit/phpunit": "^7 | ^8 | ^9",
  241. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  242. "squizlabs/php_codesniffer": "^3.4"
  243. },
  244. "suggest": {
  245. "ext-imagick": "to generate QR code images"
  246. },
  247. "type": "library",
  248. "autoload": {
  249. "psr-4": {
  250. "BaconQrCode\\": "src/"
  251. }
  252. },
  253. "notification-url": "https://packagist.org/downloads/",
  254. "license": [
  255. "BSD-2-Clause"
  256. ],
  257. "authors": [
  258. {
  259. "name": "Ben Scholzen 'DASPRiD'",
  260. "email": "[email protected]",
  261. "homepage": "https://dasprids.de/",
  262. "role": "Developer"
  263. }
  264. ],
  265. "description": "BaconQrCode is a QR code generator for PHP.",
  266. "homepage": "https://github.com/Bacon/BaconQrCode",
  267. "support": {
  268. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  269. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  270. },
  271. "time": "2022-12-07T17:46:57+00:00"
  272. },
  273. {
  274. "name": "brick/math",
  275. "version": "0.11.0",
  276. "source": {
  277. "type": "git",
  278. "url": "https://github.com/brick/math.git",
  279. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  280. },
  281. "dist": {
  282. "type": "zip",
  283. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  284. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  285. "shasum": ""
  286. },
  287. "require": {
  288. "php": "^8.0"
  289. },
  290. "require-dev": {
  291. "php-coveralls/php-coveralls": "^2.2",
  292. "phpunit/phpunit": "^9.0",
  293. "vimeo/psalm": "5.0.0"
  294. },
  295. "type": "library",
  296. "autoload": {
  297. "psr-4": {
  298. "Brick\\Math\\": "src/"
  299. }
  300. },
  301. "notification-url": "https://packagist.org/downloads/",
  302. "license": [
  303. "MIT"
  304. ],
  305. "description": "Arbitrary-precision arithmetic library",
  306. "keywords": [
  307. "Arbitrary-precision",
  308. "BigInteger",
  309. "BigRational",
  310. "arithmetic",
  311. "bigdecimal",
  312. "bignum",
  313. "brick",
  314. "math"
  315. ],
  316. "support": {
  317. "issues": "https://github.com/brick/math/issues",
  318. "source": "https://github.com/brick/math/tree/0.11.0"
  319. },
  320. "funding": [
  321. {
  322. "url": "https://github.com/BenMorel",
  323. "type": "github"
  324. }
  325. ],
  326. "time": "2023-01-15T23:15:59+00:00"
  327. },
  328. {
  329. "name": "cloudflare/sdk",
  330. "version": "1.3.0",
  331. "source": {
  332. "type": "git",
  333. "url": "https://github.com/cloudflare/cloudflare-php.git",
  334. "reference": "fdfc656aa8b78016f4722acec30b54136c027d8e"
  335. },
  336. "dist": {
  337. "type": "zip",
  338. "url": "https://api.github.com/repos/cloudflare/cloudflare-php/zipball/fdfc656aa8b78016f4722acec30b54136c027d8e",
  339. "reference": "fdfc656aa8b78016f4722acec30b54136c027d8e",
  340. "shasum": ""
  341. },
  342. "require": {
  343. "ext-json": "*",
  344. "guzzlehttp/guzzle": "^7.0.1",
  345. "php": ">=7.2.5",
  346. "psr/http-message": "~1.0"
  347. },
  348. "require-dev": {
  349. "friendsofphp/php-cs-fixer": "^2.6",
  350. "phpmd/phpmd": "@stable",
  351. "phpunit/phpunit": "^5.7"
  352. },
  353. "type": "library",
  354. "autoload": {
  355. "psr-4": {
  356. "Cloudflare\\API\\": "src/"
  357. }
  358. },
  359. "notification-url": "https://packagist.org/downloads/",
  360. "license": [
  361. "BSD-3-Clause"
  362. ],
  363. "authors": [
  364. {
  365. "name": "Junade Ali",
  366. "email": "[email protected]"
  367. }
  368. ],
  369. "description": "PHP binding for v4 of the Cloudflare Client API.",
  370. "support": {
  371. "issues": "https://github.com/cloudflare/cloudflare-php/issues",
  372. "source": "https://github.com/cloudflare/cloudflare-php/tree/1.3.0"
  373. },
  374. "time": "2021-10-13T03:40:33+00:00"
  375. },
  376. {
  377. "name": "clue/stream-filter",
  378. "version": "v1.6.0",
  379. "source": {
  380. "type": "git",
  381. "url": "https://github.com/clue/stream-filter.git",
  382. "reference": "d6169430c7731d8509da7aecd0af756a5747b78e"
  383. },
  384. "dist": {
  385. "type": "zip",
  386. "url": "https://api.github.com/repos/clue/stream-filter/zipball/d6169430c7731d8509da7aecd0af756a5747b78e",
  387. "reference": "d6169430c7731d8509da7aecd0af756a5747b78e",
  388. "shasum": ""
  389. },
  390. "require": {
  391. "php": ">=5.3"
  392. },
  393. "require-dev": {
  394. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36"
  395. },
  396. "type": "library",
  397. "autoload": {
  398. "files": [
  399. "src/functions_include.php"
  400. ],
  401. "psr-4": {
  402. "Clue\\StreamFilter\\": "src/"
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "MIT"
  408. ],
  409. "authors": [
  410. {
  411. "name": "Christian Lück",
  412. "email": "[email protected]"
  413. }
  414. ],
  415. "description": "A simple and modern approach to stream filtering in PHP",
  416. "homepage": "https://github.com/clue/php-stream-filter",
  417. "keywords": [
  418. "bucket brigade",
  419. "callback",
  420. "filter",
  421. "php_user_filter",
  422. "stream",
  423. "stream_filter_append",
  424. "stream_filter_register"
  425. ],
  426. "support": {
  427. "issues": "https://github.com/clue/stream-filter/issues",
  428. "source": "https://github.com/clue/stream-filter/tree/v1.6.0"
  429. },
  430. "funding": [
  431. {
  432. "url": "https://clue.engineering/support",
  433. "type": "custom"
  434. },
  435. {
  436. "url": "https://github.com/clue",
  437. "type": "github"
  438. }
  439. ],
  440. "time": "2022-02-21T13:15:14+00:00"
  441. },
  442. {
  443. "name": "composer/ca-bundle",
  444. "version": "1.3.5",
  445. "source": {
  446. "type": "git",
  447. "url": "https://github.com/composer/ca-bundle.git",
  448. "reference": "74780ccf8c19d6acb8d65c5f39cd72110e132bbd"
  449. },
  450. "dist": {
  451. "type": "zip",
  452. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/74780ccf8c19d6acb8d65c5f39cd72110e132bbd",
  453. "reference": "74780ccf8c19d6acb8d65c5f39cd72110e132bbd",
  454. "shasum": ""
  455. },
  456. "require": {
  457. "ext-openssl": "*",
  458. "ext-pcre": "*",
  459. "php": "^5.3.2 || ^7.0 || ^8.0"
  460. },
  461. "require-dev": {
  462. "phpstan/phpstan": "^0.12.55",
  463. "psr/log": "^1.0",
  464. "symfony/phpunit-bridge": "^4.2 || ^5",
  465. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  466. },
  467. "type": "library",
  468. "extra": {
  469. "branch-alias": {
  470. "dev-main": "1.x-dev"
  471. }
  472. },
  473. "autoload": {
  474. "psr-4": {
  475. "Composer\\CaBundle\\": "src"
  476. }
  477. },
  478. "notification-url": "https://packagist.org/downloads/",
  479. "license": [
  480. "MIT"
  481. ],
  482. "authors": [
  483. {
  484. "name": "Jordi Boggiano",
  485. "email": "[email protected]",
  486. "homepage": "http://seld.be"
  487. }
  488. ],
  489. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  490. "keywords": [
  491. "cabundle",
  492. "cacert",
  493. "certificate",
  494. "ssl",
  495. "tls"
  496. ],
  497. "support": {
  498. "irc": "irc://irc.freenode.org/composer",
  499. "issues": "https://github.com/composer/ca-bundle/issues",
  500. "source": "https://github.com/composer/ca-bundle/tree/1.3.5"
  501. },
  502. "funding": [
  503. {
  504. "url": "https://packagist.com",
  505. "type": "custom"
  506. },
  507. {
  508. "url": "https://github.com/composer",
  509. "type": "github"
  510. },
  511. {
  512. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  513. "type": "tidelift"
  514. }
  515. ],
  516. "time": "2023-01-11T08:27:00+00:00"
  517. },
  518. {
  519. "name": "dasprid/enum",
  520. "version": "1.0.4",
  521. "source": {
  522. "type": "git",
  523. "url": "https://github.com/DASPRiD/Enum.git",
  524. "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f"
  525. },
  526. "dist": {
  527. "type": "zip",
  528. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8e6b6ea76eabbf19ea2bf5b67b98e1860474012f",
  529. "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f",
  530. "shasum": ""
  531. },
  532. "require": {
  533. "php": ">=7.1 <9.0"
  534. },
  535. "require-dev": {
  536. "phpunit/phpunit": "^7 | ^8 | ^9",
  537. "squizlabs/php_codesniffer": "*"
  538. },
  539. "type": "library",
  540. "autoload": {
  541. "psr-4": {
  542. "DASPRiD\\Enum\\": "src/"
  543. }
  544. },
  545. "notification-url": "https://packagist.org/downloads/",
  546. "license": [
  547. "BSD-2-Clause"
  548. ],
  549. "authors": [
  550. {
  551. "name": "Ben Scholzen 'DASPRiD'",
  552. "email": "[email protected]",
  553. "homepage": "https://dasprids.de/",
  554. "role": "Developer"
  555. }
  556. ],
  557. "description": "PHP 7.1 enum implementation",
  558. "keywords": [
  559. "enum",
  560. "map"
  561. ],
  562. "support": {
  563. "issues": "https://github.com/DASPRiD/Enum/issues",
  564. "source": "https://github.com/DASPRiD/Enum/tree/1.0.4"
  565. },
  566. "time": "2023-03-01T18:44:03+00:00"
  567. },
  568. {
  569. "name": "doctrine/inflector",
  570. "version": "2.0.6",
  571. "source": {
  572. "type": "git",
  573. "url": "https://github.com/doctrine/inflector.git",
  574. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  575. },
  576. "dist": {
  577. "type": "zip",
  578. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  579. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  580. "shasum": ""
  581. },
  582. "require": {
  583. "php": "^7.2 || ^8.0"
  584. },
  585. "require-dev": {
  586. "doctrine/coding-standard": "^10",
  587. "phpstan/phpstan": "^1.8",
  588. "phpstan/phpstan-phpunit": "^1.1",
  589. "phpstan/phpstan-strict-rules": "^1.3",
  590. "phpunit/phpunit": "^8.5 || ^9.5",
  591. "vimeo/psalm": "^4.25"
  592. },
  593. "type": "library",
  594. "autoload": {
  595. "psr-4": {
  596. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  597. }
  598. },
  599. "notification-url": "https://packagist.org/downloads/",
  600. "license": [
  601. "MIT"
  602. ],
  603. "authors": [
  604. {
  605. "name": "Guilherme Blanco",
  606. "email": "[email protected]"
  607. },
  608. {
  609. "name": "Roman Borschel",
  610. "email": "[email protected]"
  611. },
  612. {
  613. "name": "Benjamin Eberlei",
  614. "email": "[email protected]"
  615. },
  616. {
  617. "name": "Jonathan Wage",
  618. "email": "[email protected]"
  619. },
  620. {
  621. "name": "Johannes Schmitt",
  622. "email": "[email protected]"
  623. }
  624. ],
  625. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  626. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  627. "keywords": [
  628. "inflection",
  629. "inflector",
  630. "lowercase",
  631. "manipulation",
  632. "php",
  633. "plural",
  634. "singular",
  635. "strings",
  636. "uppercase",
  637. "words"
  638. ],
  639. "support": {
  640. "issues": "https://github.com/doctrine/inflector/issues",
  641. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  642. },
  643. "funding": [
  644. {
  645. "url": "https://www.doctrine-project.org/sponsorship.html",
  646. "type": "custom"
  647. },
  648. {
  649. "url": "https://www.patreon.com/phpdoctrine",
  650. "type": "patreon"
  651. },
  652. {
  653. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  654. "type": "tidelift"
  655. }
  656. ],
  657. "time": "2022-10-20T09:10:12+00:00"
  658. },
  659. {
  660. "name": "endroid/qr-code",
  661. "version": "4.8.2",
  662. "source": {
  663. "type": "git",
  664. "url": "https://github.com/endroid/qr-code.git",
  665. "reference": "2436c2333a3931c95e2b96eb82f16f53143d6bba"
  666. },
  667. "dist": {
  668. "type": "zip",
  669. "url": "https://api.github.com/repos/endroid/qr-code/zipball/2436c2333a3931c95e2b96eb82f16f53143d6bba",
  670. "reference": "2436c2333a3931c95e2b96eb82f16f53143d6bba",
  671. "shasum": ""
  672. },
  673. "require": {
  674. "bacon/bacon-qr-code": "^2.0.5",
  675. "php": "^8.0"
  676. },
  677. "conflict": {
  678. "khanamiryan/qrcode-detector-decoder": "^1.0.6"
  679. },
  680. "require-dev": {
  681. "endroid/quality": "dev-master",
  682. "ext-gd": "*",
  683. "khanamiryan/qrcode-detector-decoder": "^1.0.4||^2.0.2",
  684. "setasign/fpdf": "^1.8.2"
  685. },
  686. "suggest": {
  687. "ext-gd": "Enables you to write PNG images",
  688. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  689. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  690. "setasign/fpdf": "Enables you to use the PDF writer"
  691. },
  692. "type": "library",
  693. "extra": {
  694. "branch-alias": {
  695. "dev-master": "4.x-dev"
  696. }
  697. },
  698. "autoload": {
  699. "psr-4": {
  700. "Endroid\\QrCode\\": "src/"
  701. }
  702. },
  703. "notification-url": "https://packagist.org/downloads/",
  704. "license": [
  705. "MIT"
  706. ],
  707. "authors": [
  708. {
  709. "name": "Jeroen van den Enden",
  710. "email": "[email protected]"
  711. }
  712. ],
  713. "description": "Endroid QR Code",
  714. "homepage": "https://github.com/endroid/qr-code",
  715. "keywords": [
  716. "code",
  717. "endroid",
  718. "php",
  719. "qr",
  720. "qrcode"
  721. ],
  722. "support": {
  723. "issues": "https://github.com/endroid/qr-code/issues",
  724. "source": "https://github.com/endroid/qr-code/tree/4.8.2"
  725. },
  726. "funding": [
  727. {
  728. "url": "https://github.com/endroid",
  729. "type": "github"
  730. }
  731. ],
  732. "time": "2023-03-30T18:46:02+00:00"
  733. },
  734. {
  735. "name": "geoip2/geoip2",
  736. "version": "v2.13.0",
  737. "source": {
  738. "type": "git",
  739. "url": "[email protected]:maxmind/GeoIP2-php.git",
  740. "reference": "6a41d8fbd6b90052bc34dff3b4252d0f88067b23"
  741. },
  742. "dist": {
  743. "type": "zip",
  744. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/6a41d8fbd6b90052bc34dff3b4252d0f88067b23",
  745. "reference": "6a41d8fbd6b90052bc34dff3b4252d0f88067b23",
  746. "shasum": ""
  747. },
  748. "require": {
  749. "ext-json": "*",
  750. "maxmind-db/reader": "~1.8",
  751. "maxmind/web-service-common": "~0.8",
  752. "php": ">=7.2"
  753. },
  754. "require-dev": {
  755. "friendsofphp/php-cs-fixer": "3.*",
  756. "phpstan/phpstan": "*",
  757. "phpunit/phpunit": "^8.0 || ^9.0",
  758. "squizlabs/php_codesniffer": "3.*"
  759. },
  760. "type": "library",
  761. "autoload": {
  762. "psr-4": {
  763. "GeoIp2\\": "src"
  764. }
  765. },
  766. "notification-url": "https://packagist.org/downloads/",
  767. "license": [
  768. "Apache-2.0"
  769. ],
  770. "authors": [
  771. {
  772. "name": "Gregory J. Oschwald",
  773. "email": "[email protected]",
  774. "homepage": "https://www.maxmind.com/"
  775. }
  776. ],
  777. "description": "MaxMind GeoIP2 PHP API",
  778. "homepage": "https://github.com/maxmind/GeoIP2-php",
  779. "keywords": [
  780. "IP",
  781. "geoip",
  782. "geoip2",
  783. "geolocation",
  784. "maxmind"
  785. ],
  786. "time": "2022-08-05T20:32:58+00:00"
  787. },
  788. {
  789. "name": "guzzlehttp/guzzle",
  790. "version": "7.7.0",
  791. "source": {
  792. "type": "git",
  793. "url": "https://github.com/guzzle/guzzle.git",
  794. "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5"
  795. },
  796. "dist": {
  797. "type": "zip",
  798. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/fb7566caccf22d74d1ab270de3551f72a58399f5",
  799. "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5",
  800. "shasum": ""
  801. },
  802. "require": {
  803. "ext-json": "*",
  804. "guzzlehttp/promises": "^1.5.3 || ^2.0",
  805. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  806. "php": "^7.2.5 || ^8.0",
  807. "psr/http-client": "^1.0",
  808. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  809. },
  810. "provide": {
  811. "psr/http-client-implementation": "1.0"
  812. },
  813. "require-dev": {
  814. "bamarni/composer-bin-plugin": "^1.8.1",
  815. "ext-curl": "*",
  816. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  817. "php-http/message-factory": "^1.1",
  818. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  819. "psr/log": "^1.1 || ^2.0 || ^3.0"
  820. },
  821. "suggest": {
  822. "ext-curl": "Required for CURL handler support",
  823. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  824. "psr/log": "Required for using the Log middleware"
  825. },
  826. "type": "library",
  827. "extra": {
  828. "bamarni-bin": {
  829. "bin-links": true,
  830. "forward-command": false
  831. }
  832. },
  833. "autoload": {
  834. "files": [
  835. "src/functions_include.php"
  836. ],
  837. "psr-4": {
  838. "GuzzleHttp\\": "src/"
  839. }
  840. },
  841. "notification-url": "https://packagist.org/downloads/",
  842. "license": [
  843. "MIT"
  844. ],
  845. "authors": [
  846. {
  847. "name": "Graham Campbell",
  848. "email": "[email protected]",
  849. "homepage": "https://github.com/GrahamCampbell"
  850. },
  851. {
  852. "name": "Michael Dowling",
  853. "email": "[email protected]",
  854. "homepage": "https://github.com/mtdowling"
  855. },
  856. {
  857. "name": "Jeremy Lindblom",
  858. "email": "[email protected]",
  859. "homepage": "https://github.com/jeremeamia"
  860. },
  861. {
  862. "name": "George Mponos",
  863. "email": "[email protected]",
  864. "homepage": "https://github.com/gmponos"
  865. },
  866. {
  867. "name": "Tobias Nyholm",
  868. "email": "[email protected]",
  869. "homepage": "https://github.com/Nyholm"
  870. },
  871. {
  872. "name": "Márk Sági-Kazár",
  873. "email": "[email protected]",
  874. "homepage": "https://github.com/sagikazarmark"
  875. },
  876. {
  877. "name": "Tobias Schultze",
  878. "email": "[email protected]",
  879. "homepage": "https://github.com/Tobion"
  880. }
  881. ],
  882. "description": "Guzzle is a PHP HTTP client library",
  883. "keywords": [
  884. "client",
  885. "curl",
  886. "framework",
  887. "http",
  888. "http client",
  889. "psr-18",
  890. "psr-7",
  891. "rest",
  892. "web service"
  893. ],
  894. "support": {
  895. "issues": "https://github.com/guzzle/guzzle/issues",
  896. "source": "https://github.com/guzzle/guzzle/tree/7.7.0"
  897. },
  898. "funding": [
  899. {
  900. "url": "https://github.com/GrahamCampbell",
  901. "type": "github"
  902. },
  903. {
  904. "url": "https://github.com/Nyholm",
  905. "type": "github"
  906. },
  907. {
  908. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  909. "type": "tidelift"
  910. }
  911. ],
  912. "time": "2023-05-21T14:04:53+00:00"
  913. },
  914. {
  915. "name": "guzzlehttp/promises",
  916. "version": "1.5.3",
  917. "source": {
  918. "type": "git",
  919. "url": "https://github.com/guzzle/promises.git",
  920. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  921. },
  922. "dist": {
  923. "type": "zip",
  924. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  925. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  926. "shasum": ""
  927. },
  928. "require": {
  929. "php": ">=5.5"
  930. },
  931. "require-dev": {
  932. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  933. },
  934. "type": "library",
  935. "autoload": {
  936. "files": [
  937. "src/functions_include.php"
  938. ],
  939. "psr-4": {
  940. "GuzzleHttp\\Promise\\": "src/"
  941. }
  942. },
  943. "notification-url": "https://packagist.org/downloads/",
  944. "license": [
  945. "MIT"
  946. ],
  947. "authors": [
  948. {
  949. "name": "Graham Campbell",
  950. "email": "[email protected]",
  951. "homepage": "https://github.com/GrahamCampbell"
  952. },
  953. {
  954. "name": "Michael Dowling",
  955. "email": "[email protected]",
  956. "homepage": "https://github.com/mtdowling"
  957. },
  958. {
  959. "name": "Tobias Nyholm",
  960. "email": "[email protected]",
  961. "homepage": "https://github.com/Nyholm"
  962. },
  963. {
  964. "name": "Tobias Schultze",
  965. "email": "[email protected]",
  966. "homepage": "https://github.com/Tobion"
  967. }
  968. ],
  969. "description": "Guzzle promises library",
  970. "keywords": [
  971. "promise"
  972. ],
  973. "support": {
  974. "issues": "https://github.com/guzzle/promises/issues",
  975. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  976. },
  977. "funding": [
  978. {
  979. "url": "https://github.com/GrahamCampbell",
  980. "type": "github"
  981. },
  982. {
  983. "url": "https://github.com/Nyholm",
  984. "type": "github"
  985. },
  986. {
  987. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  988. "type": "tidelift"
  989. }
  990. ],
  991. "time": "2023-05-21T12:31:43+00:00"
  992. },
  993. {
  994. "name": "guzzlehttp/psr7",
  995. "version": "2.5.0",
  996. "source": {
  997. "type": "git",
  998. "url": "https://github.com/guzzle/psr7.git",
  999. "reference": "b635f279edd83fc275f822a1188157ffea568ff6"
  1000. },
  1001. "dist": {
  1002. "type": "zip",
  1003. "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6",
  1004. "reference": "b635f279edd83fc275f822a1188157ffea568ff6",
  1005. "shasum": ""
  1006. },
  1007. "require": {
  1008. "php": "^7.2.5 || ^8.0",
  1009. "psr/http-factory": "^1.0",
  1010. "psr/http-message": "^1.1 || ^2.0",
  1011. "ralouphie/getallheaders": "^3.0"
  1012. },
  1013. "provide": {
  1014. "psr/http-factory-implementation": "1.0",
  1015. "psr/http-message-implementation": "1.0"
  1016. },
  1017. "require-dev": {
  1018. "bamarni/composer-bin-plugin": "^1.8.1",
  1019. "http-interop/http-factory-tests": "^0.9",
  1020. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1021. },
  1022. "suggest": {
  1023. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1024. },
  1025. "type": "library",
  1026. "extra": {
  1027. "bamarni-bin": {
  1028. "bin-links": true,
  1029. "forward-command": false
  1030. }
  1031. },
  1032. "autoload": {
  1033. "psr-4": {
  1034. "GuzzleHttp\\Psr7\\": "src/"
  1035. }
  1036. },
  1037. "notification-url": "https://packagist.org/downloads/",
  1038. "license": [
  1039. "MIT"
  1040. ],
  1041. "authors": [
  1042. {
  1043. "name": "Graham Campbell",
  1044. "email": "[email protected]",
  1045. "homepage": "https://github.com/GrahamCampbell"
  1046. },
  1047. {
  1048. "name": "Michael Dowling",
  1049. "email": "[email protected]",
  1050. "homepage": "https://github.com/mtdowling"
  1051. },
  1052. {
  1053. "name": "George Mponos",
  1054. "email": "[email protected]",
  1055. "homepage": "https://github.com/gmponos"
  1056. },
  1057. {
  1058. "name": "Tobias Nyholm",
  1059. "email": "[email protected]",
  1060. "homepage": "https://github.com/Nyholm"
  1061. },
  1062. {
  1063. "name": "Márk Sági-Kazár",
  1064. "email": "[email protected]",
  1065. "homepage": "https://github.com/sagikazarmark"
  1066. },
  1067. {
  1068. "name": "Tobias Schultze",
  1069. "email": "[email protected]",
  1070. "homepage": "https://github.com/Tobion"
  1071. },
  1072. {
  1073. "name": "Márk Sági-Kazár",
  1074. "email": "[email protected]",
  1075. "homepage": "https://sagikazarmark.hu"
  1076. }
  1077. ],
  1078. "description": "PSR-7 message implementation that also provides common utility methods",
  1079. "keywords": [
  1080. "http",
  1081. "message",
  1082. "psr-7",
  1083. "request",
  1084. "response",
  1085. "stream",
  1086. "uri",
  1087. "url"
  1088. ],
  1089. "support": {
  1090. "issues": "https://github.com/guzzle/psr7/issues",
  1091. "source": "https://github.com/guzzle/psr7/tree/2.5.0"
  1092. },
  1093. "funding": [
  1094. {
  1095. "url": "https://github.com/GrahamCampbell",
  1096. "type": "github"
  1097. },
  1098. {
  1099. "url": "https://github.com/Nyholm",
  1100. "type": "github"
  1101. },
  1102. {
  1103. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1104. "type": "tidelift"
  1105. }
  1106. ],
  1107. "time": "2023-04-17T16:11:26+00:00"
  1108. },
  1109. {
  1110. "name": "http-interop/http-factory-guzzle",
  1111. "version": "1.2.0",
  1112. "source": {
  1113. "type": "git",
  1114. "url": "https://github.com/http-interop/http-factory-guzzle.git",
  1115. "reference": "8f06e92b95405216b237521cc64c804dd44c4a81"
  1116. },
  1117. "dist": {
  1118. "type": "zip",
  1119. "url": "https://api.github.com/repos/http-interop/http-factory-guzzle/zipball/8f06e92b95405216b237521cc64c804dd44c4a81",
  1120. "reference": "8f06e92b95405216b237521cc64c804dd44c4a81",
  1121. "shasum": ""
  1122. },
  1123. "require": {
  1124. "guzzlehttp/psr7": "^1.7||^2.0",
  1125. "php": ">=7.3",
  1126. "psr/http-factory": "^1.0"
  1127. },
  1128. "provide": {
  1129. "psr/http-factory-implementation": "^1.0"
  1130. },
  1131. "require-dev": {
  1132. "http-interop/http-factory-tests": "^0.9",
  1133. "phpunit/phpunit": "^9.5"
  1134. },
  1135. "suggest": {
  1136. "guzzlehttp/psr7": "Includes an HTTP factory starting in version 2.0"
  1137. },
  1138. "type": "library",
  1139. "autoload": {
  1140. "psr-4": {
  1141. "Http\\Factory\\Guzzle\\": "src/"
  1142. }
  1143. },
  1144. "notification-url": "https://packagist.org/downloads/",
  1145. "license": [
  1146. "MIT"
  1147. ],
  1148. "authors": [
  1149. {
  1150. "name": "PHP-FIG",
  1151. "homepage": "http://www.php-fig.org/"
  1152. }
  1153. ],
  1154. "description": "An HTTP Factory using Guzzle PSR7",
  1155. "keywords": [
  1156. "factory",
  1157. "http",
  1158. "psr-17",
  1159. "psr-7"
  1160. ],
  1161. "support": {
  1162. "issues": "https://github.com/http-interop/http-factory-guzzle/issues",
  1163. "source": "https://github.com/http-interop/http-factory-guzzle/tree/1.2.0"
  1164. },
  1165. "time": "2021-07-21T13:50:14+00:00"
  1166. },
  1167. {
  1168. "name": "illuminate/collections",
  1169. "version": "v9.52.9",
  1170. "source": {
  1171. "type": "git",
  1172. "url": "https://github.com/illuminate/collections.git",
  1173. "reference": "0168d0e44ea0c4fe5451fe08cde7049b9e9f9741"
  1174. },
  1175. "dist": {
  1176. "type": "zip",
  1177. "url": "https://api.github.com/repos/illuminate/collections/zipball/0168d0e44ea0c4fe5451fe08cde7049b9e9f9741",
  1178. "reference": "0168d0e44ea0c4fe5451fe08cde7049b9e9f9741",
  1179. "shasum": ""
  1180. },
  1181. "require": {
  1182. "illuminate/conditionable": "^9.0",
  1183. "illuminate/contracts": "^9.0",
  1184. "illuminate/macroable": "^9.0",
  1185. "php": "^8.0.2"
  1186. },
  1187. "suggest": {
  1188. "symfony/var-dumper": "Required to use the dump method (^6.0)."
  1189. },
  1190. "type": "library",
  1191. "extra": {
  1192. "branch-alias": {
  1193. "dev-master": "9.x-dev"
  1194. }
  1195. },
  1196. "autoload": {
  1197. "files": [
  1198. "helpers.php"
  1199. ],
  1200. "psr-4": {
  1201. "Illuminate\\Support\\": ""
  1202. }
  1203. },
  1204. "notification-url": "https://packagist.org/downloads/",
  1205. "license": [
  1206. "MIT"
  1207. ],
  1208. "authors": [
  1209. {
  1210. "name": "Taylor Otwell",
  1211. "email": "[email protected]"
  1212. }
  1213. ],
  1214. "description": "The Illuminate Collections package.",
  1215. "homepage": "https://laravel.com",
  1216. "support": {
  1217. "issues": "https://github.com/laravel/framework/issues",
  1218. "source": "https://github.com/laravel/framework"
  1219. },
  1220. "time": "2023-02-22T11:32:27+00:00"
  1221. },
  1222. {
  1223. "name": "illuminate/conditionable",
  1224. "version": "v9.52.9",
  1225. "source": {
  1226. "type": "git",
  1227. "url": "https://github.com/illuminate/conditionable.git",
  1228. "reference": "bea24daa0fa84b7e7b0d5b84f62c71b7e2dc3364"
  1229. },
  1230. "dist": {
  1231. "type": "zip",
  1232. "url": "https://api.github.com/repos/illuminate/conditionable/zipball/bea24daa0fa84b7e7b0d5b84f62c71b7e2dc3364",
  1233. "reference": "bea24daa0fa84b7e7b0d5b84f62c71b7e2dc3364",
  1234. "shasum": ""
  1235. },
  1236. "require": {
  1237. "php": "^8.0.2"
  1238. },
  1239. "type": "library",
  1240. "extra": {
  1241. "branch-alias": {
  1242. "dev-master": "9.x-dev"
  1243. }
  1244. },
  1245. "autoload": {
  1246. "psr-4": {
  1247. "Illuminate\\Support\\": ""
  1248. }
  1249. },
  1250. "notification-url": "https://packagist.org/downloads/",
  1251. "license": [
  1252. "MIT"
  1253. ],
  1254. "authors": [
  1255. {
  1256. "name": "Taylor Otwell",
  1257. "email": "[email protected]"
  1258. }
  1259. ],
  1260. "description": "The Illuminate Conditionable package.",
  1261. "homepage": "https://laravel.com",
  1262. "support": {
  1263. "issues": "https://github.com/laravel/framework/issues",
  1264. "source": "https://github.com/laravel/framework"
  1265. },
  1266. "time": "2023-02-01T21:42:32+00:00"
  1267. },
  1268. {
  1269. "name": "illuminate/container",
  1270. "version": "v9.52.9",
  1271. "source": {
  1272. "type": "git",
  1273. "url": "https://github.com/illuminate/container.git",
  1274. "reference": "1641dda2d0750b68bb1264a3b37ff3973f2e6265"
  1275. },
  1276. "dist": {
  1277. "type": "zip",
  1278. "url": "https://api.github.com/repos/illuminate/container/zipball/1641dda2d0750b68bb1264a3b37ff3973f2e6265",
  1279. "reference": "1641dda2d0750b68bb1264a3b37ff3973f2e6265",
  1280. "shasum": ""
  1281. },
  1282. "require": {
  1283. "illuminate/contracts": "^9.0",
  1284. "php": "^8.0.2",
  1285. "psr/container": "^1.1.1|^2.0.1"
  1286. },
  1287. "provide": {
  1288. "psr/container-implementation": "1.1|2.0"
  1289. },
  1290. "type": "library",
  1291. "extra": {
  1292. "branch-alias": {
  1293. "dev-master": "9.x-dev"
  1294. }
  1295. },
  1296. "autoload": {
  1297. "psr-4": {
  1298. "Illuminate\\Container\\": ""
  1299. }
  1300. },
  1301. "notification-url": "https://packagist.org/downloads/",
  1302. "license": [
  1303. "MIT"
  1304. ],
  1305. "authors": [
  1306. {
  1307. "name": "Taylor Otwell",
  1308. "email": "[email protected]"
  1309. }
  1310. ],
  1311. "description": "The Illuminate Container package.",
  1312. "homepage": "https://laravel.com",
  1313. "support": {
  1314. "issues": "https://github.com/laravel/framework/issues",
  1315. "source": "https://github.com/laravel/framework"
  1316. },
  1317. "time": "2023-01-24T16:54:18+00:00"
  1318. },
  1319. {
  1320. "name": "illuminate/contracts",
  1321. "version": "v9.52.9",
  1322. "source": {
  1323. "type": "git",
  1324. "url": "https://github.com/illuminate/contracts.git",
  1325. "reference": "44f65d723b13823baa02ff69751a5948bde60c22"
  1326. },
  1327. "dist": {
  1328. "type": "zip",
  1329. "url": "https://api.github.com/repos/illuminate/contracts/zipball/44f65d723b13823baa02ff69751a5948bde60c22",
  1330. "reference": "44f65d723b13823baa02ff69751a5948bde60c22",
  1331. "shasum": ""
  1332. },
  1333. "require": {
  1334. "php": "^8.0.2",
  1335. "psr/container": "^1.1.1|^2.0.1",
  1336. "psr/simple-cache": "^1.0|^2.0|^3.0"
  1337. },
  1338. "type": "library",
  1339. "extra": {
  1340. "branch-alias": {
  1341. "dev-master": "9.x-dev"
  1342. }
  1343. },
  1344. "autoload": {
  1345. "psr-4": {
  1346. "Illuminate\\Contracts\\": ""
  1347. }
  1348. },
  1349. "notification-url": "https://packagist.org/downloads/",
  1350. "license": [
  1351. "MIT"
  1352. ],
  1353. "authors": [
  1354. {
  1355. "name": "Taylor Otwell",
  1356. "email": "[email protected]"
  1357. }
  1358. ],
  1359. "description": "The Illuminate Contracts package.",
  1360. "homepage": "https://laravel.com",
  1361. "support": {
  1362. "issues": "https://github.com/laravel/framework/issues",
  1363. "source": "https://github.com/laravel/framework"
  1364. },
  1365. "time": "2023-02-08T14:36:30+00:00"
  1366. },
  1367. {
  1368. "name": "illuminate/database",
  1369. "version": "v9.52.9",
  1370. "source": {
  1371. "type": "git",
  1372. "url": "https://github.com/illuminate/database.git",
  1373. "reference": "64f570ea10543b6f1777db5615e6386293e05fee"
  1374. },
  1375. "dist": {
  1376. "type": "zip",
  1377. "url": "https://api.github.com/repos/illuminate/database/zipball/64f570ea10543b6f1777db5615e6386293e05fee",
  1378. "reference": "64f570ea10543b6f1777db5615e6386293e05fee",
  1379. "shasum": ""
  1380. },
  1381. "require": {
  1382. "brick/math": "^0.9.3|^0.10.2|^0.11",
  1383. "ext-pdo": "*",
  1384. "illuminate/collections": "^9.0",
  1385. "illuminate/container": "^9.0",
  1386. "illuminate/contracts": "^9.0",
  1387. "illuminate/macroable": "^9.0",
  1388. "illuminate/support": "^9.0",
  1389. "php": "^8.0.2",
  1390. "symfony/console": "^6.0.9"
  1391. },
  1392. "suggest": {
  1393. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1394. "ext-filter": "Required to use the Postgres database driver.",
  1395. "fakerphp/faker": "Required to use the eloquent factory builder (^1.21).",
  1396. "illuminate/console": "Required to use the database commands (^9.0).",
  1397. "illuminate/events": "Required to use the observers with Eloquent (^9.0).",
  1398. "illuminate/filesystem": "Required to use the migrations (^9.0).",
  1399. "illuminate/pagination": "Required to paginate the result set (^9.0).",
  1400. "symfony/finder": "Required to use Eloquent model factories (^6.0)."
  1401. },
  1402. "type": "library",
  1403. "extra": {
  1404. "branch-alias": {
  1405. "dev-master": "9.x-dev"
  1406. }
  1407. },
  1408. "autoload": {
  1409. "psr-4": {
  1410. "Illuminate\\Database\\": ""
  1411. }
  1412. },
  1413. "notification-url": "https://packagist.org/downloads/",
  1414. "license": [
  1415. "MIT"
  1416. ],
  1417. "authors": [
  1418. {
  1419. "name": "Taylor Otwell",
  1420. "email": "[email protected]"
  1421. }
  1422. ],
  1423. "description": "The Illuminate Database package.",
  1424. "homepage": "https://laravel.com",
  1425. "keywords": [
  1426. "database",
  1427. "laravel",
  1428. "orm",
  1429. "sql"
  1430. ],
  1431. "support": {
  1432. "issues": "https://github.com/laravel/framework/issues",
  1433. "source": "https://github.com/laravel/framework"
  1434. },
  1435. "time": "2023-05-29T15:05:51+00:00"
  1436. },
  1437. {
  1438. "name": "illuminate/macroable",
  1439. "version": "v9.52.9",
  1440. "source": {
  1441. "type": "git",
  1442. "url": "https://github.com/illuminate/macroable.git",
  1443. "reference": "e3bfaf6401742a9c6abca61b9b10e998e5b6449a"
  1444. },
  1445. "dist": {
  1446. "type": "zip",
  1447. "url": "https://api.github.com/repos/illuminate/macroable/zipball/e3bfaf6401742a9c6abca61b9b10e998e5b6449a",
  1448. "reference": "e3bfaf6401742a9c6abca61b9b10e998e5b6449a",
  1449. "shasum": ""
  1450. },
  1451. "require": {
  1452. "php": "^8.0.2"
  1453. },
  1454. "type": "library",
  1455. "extra": {
  1456. "branch-alias": {
  1457. "dev-master": "9.x-dev"
  1458. }
  1459. },
  1460. "autoload": {
  1461. "psr-4": {
  1462. "Illuminate\\Support\\": ""
  1463. }
  1464. },
  1465. "notification-url": "https://packagist.org/downloads/",
  1466. "license": [
  1467. "MIT"
  1468. ],
  1469. "authors": [
  1470. {
  1471. "name": "Taylor Otwell",
  1472. "email": "[email protected]"
  1473. }
  1474. ],
  1475. "description": "The Illuminate Macroable package.",
  1476. "homepage": "https://laravel.com",
  1477. "support": {
  1478. "issues": "https://github.com/laravel/framework/issues",
  1479. "source": "https://github.com/laravel/framework"
  1480. },
  1481. "time": "2022-08-09T13:29:29+00:00"
  1482. },
  1483. {
  1484. "name": "illuminate/pagination",
  1485. "version": "v9.52.9",
  1486. "source": {
  1487. "type": "git",
  1488. "url": "https://github.com/illuminate/pagination.git",
  1489. "reference": "0c913d6af303ae0060d94d74d68d537637f7e6d4"
  1490. },
  1491. "dist": {
  1492. "type": "zip",
  1493. "url": "https://api.github.com/repos/illuminate/pagination/zipball/0c913d6af303ae0060d94d74d68d537637f7e6d4",
  1494. "reference": "0c913d6af303ae0060d94d74d68d537637f7e6d4",
  1495. "shasum": ""
  1496. },
  1497. "require": {
  1498. "ext-filter": "*",
  1499. "illuminate/collections": "^9.0",
  1500. "illuminate/contracts": "^9.0",
  1501. "illuminate/support": "^9.0",
  1502. "php": "^8.0.2"
  1503. },
  1504. "type": "library",
  1505. "extra": {
  1506. "branch-alias": {
  1507. "dev-master": "9.x-dev"
  1508. }
  1509. },
  1510. "autoload": {
  1511. "psr-4": {
  1512. "Illuminate\\Pagination\\": ""
  1513. }
  1514. },
  1515. "notification-url": "https://packagist.org/downloads/",
  1516. "license": [
  1517. "MIT"
  1518. ],
  1519. "authors": [
  1520. {
  1521. "name": "Taylor Otwell",
  1522. "email": "[email protected]"
  1523. }
  1524. ],
  1525. "description": "The Illuminate Pagination package.",
  1526. "homepage": "https://laravel.com",
  1527. "support": {
  1528. "issues": "https://github.com/laravel/framework/issues",
  1529. "source": "https://github.com/laravel/framework"
  1530. },
  1531. "time": "2023-02-06T02:52:41+00:00"
  1532. },
  1533. {
  1534. "name": "illuminate/support",
  1535. "version": "v9.52.9",
  1536. "source": {
  1537. "type": "git",
  1538. "url": "https://github.com/illuminate/support.git",
  1539. "reference": "3fc1d9deb1dc8c256c3394e1547dccdd386bb2f5"
  1540. },
  1541. "dist": {
  1542. "type": "zip",
  1543. "url": "https://api.github.com/repos/illuminate/support/zipball/3fc1d9deb1dc8c256c3394e1547dccdd386bb2f5",
  1544. "reference": "3fc1d9deb1dc8c256c3394e1547dccdd386bb2f5",
  1545. "shasum": ""
  1546. },
  1547. "require": {
  1548. "doctrine/inflector": "^2.0",
  1549. "ext-ctype": "*",
  1550. "ext-filter": "*",
  1551. "ext-mbstring": "*",
  1552. "illuminate/collections": "^9.0",
  1553. "illuminate/conditionable": "^9.0",
  1554. "illuminate/contracts": "^9.0",
  1555. "illuminate/macroable": "^9.0",
  1556. "nesbot/carbon": "^2.62.1",
  1557. "php": "^8.0.2",
  1558. "voku/portable-ascii": "^2.0"
  1559. },
  1560. "conflict": {
  1561. "tightenco/collect": "<5.5.33"
  1562. },
  1563. "suggest": {
  1564. "illuminate/filesystem": "Required to use the composer class (^9.0).",
  1565. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.0.2).",
  1566. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  1567. "symfony/process": "Required to use the composer class (^6.0).",
  1568. "symfony/uid": "Required to use Str::ulid() (^6.0).",
  1569. "symfony/var-dumper": "Required to use the dd function (^6.0).",
  1570. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  1571. },
  1572. "type": "library",
  1573. "extra": {
  1574. "branch-alias": {
  1575. "dev-master": "9.x-dev"
  1576. }
  1577. },
  1578. "autoload": {
  1579. "files": [
  1580. "helpers.php"
  1581. ],
  1582. "psr-4": {
  1583. "Illuminate\\Support\\": ""
  1584. }
  1585. },
  1586. "notification-url": "https://packagist.org/downloads/",
  1587. "license": [
  1588. "MIT"
  1589. ],
  1590. "authors": [
  1591. {
  1592. "name": "Taylor Otwell",
  1593. "email": "[email protected]"
  1594. }
  1595. ],
  1596. "description": "The Illuminate Support package.",
  1597. "homepage": "https://laravel.com",
  1598. "support": {
  1599. "issues": "https://github.com/laravel/framework/issues",
  1600. "source": "https://github.com/laravel/framework"
  1601. },
  1602. "time": "2023-06-01T16:10:43+00:00"
  1603. },
  1604. {
  1605. "name": "irazasyed/telegram-bot-sdk",
  1606. "version": "v3.13.0",
  1607. "source": {
  1608. "type": "git",
  1609. "url": "https://github.com/irazasyed/telegram-bot-sdk.git",
  1610. "reference": "31a71aef80fd328bfe0084738cc3b51cc49867f4"
  1611. },
  1612. "dist": {
  1613. "type": "zip",
  1614. "url": "https://api.github.com/repos/irazasyed/telegram-bot-sdk/zipball/31a71aef80fd328bfe0084738cc3b51cc49867f4",
  1615. "reference": "31a71aef80fd328bfe0084738cc3b51cc49867f4",
  1616. "shasum": ""
  1617. },
  1618. "require": {
  1619. "ext-json": "*",
  1620. "guzzlehttp/guzzle": "^7.5.1",
  1621. "guzzlehttp/psr7": "^2.5",
  1622. "illuminate/support": "9 - 10",
  1623. "league/event": "^2.2 || ^3.0",
  1624. "php": ">=8.0",
  1625. "psr/container": "^2.0",
  1626. "psr/event-dispatcher": "^1.0"
  1627. },
  1628. "require-dev": {
  1629. "irazasyed/docgen": "^0.2",
  1630. "pestphp/pest": "^1.22 || ^2.0",
  1631. "php-parallel-lint/php-parallel-lint": "^1.3",
  1632. "phpspec/prophecy": "^1.17",
  1633. "phpspec/prophecy-phpunit": "^2.0",
  1634. "rector/rector": "^0.16.0"
  1635. },
  1636. "suggest": {
  1637. "illuminate/container": "Hold dependencies to be injected in commands constructors",
  1638. "irazasyed/larasupport": "Allows you to use any Laravel Package in Lumen by adding support!"
  1639. },
  1640. "type": "library",
  1641. "extra": {
  1642. "branch-alias": {
  1643. "dev-master": "3.0-dev"
  1644. },
  1645. "laravel": {
  1646. "aliases": {
  1647. "Telegram": "Telegram\\Bot\\Laravel\\Facades\\Telegram"
  1648. },
  1649. "providers": [
  1650. "Telegram\\Bot\\Laravel\\TelegramServiceProvider"
  1651. ]
  1652. }
  1653. },
  1654. "autoload": {
  1655. "psr-4": {
  1656. "Telegram\\Bot\\": "src/"
  1657. }
  1658. },
  1659. "notification-url": "https://packagist.org/downloads/",
  1660. "license": [
  1661. "BSD-3-Clause"
  1662. ],
  1663. "authors": [
  1664. {
  1665. "name": "Irfaq Syed",
  1666. "email": "[email protected]",
  1667. "homepage": "https://github.com/irazasyed"
  1668. }
  1669. ],
  1670. "description": "The Unofficial Telegram Bot API PHP SDK",
  1671. "homepage": "https://github.com/irazasyed/telegram-bot-sdk",
  1672. "keywords": [
  1673. "laravel",
  1674. "laravel telegram",
  1675. "telegram",
  1676. "telegram bot",
  1677. "telegram bot api",
  1678. "telegram php",
  1679. "telegram sdk"
  1680. ],
  1681. "support": {
  1682. "issues": "https://github.com/irazasyed/telegram-bot-sdk/issues",
  1683. "source": "https://github.com/irazasyed/telegram-bot-sdk/tree/v3.13.0"
  1684. },
  1685. "time": "2023-05-28T19:57:36+00:00"
  1686. },
  1687. {
  1688. "name": "jean85/pretty-package-versions",
  1689. "version": "2.0.5",
  1690. "source": {
  1691. "type": "git",
  1692. "url": "https://github.com/Jean85/pretty-package-versions.git",
  1693. "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af"
  1694. },
  1695. "dist": {
  1696. "type": "zip",
  1697. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/ae547e455a3d8babd07b96966b17d7fd21d9c6af",
  1698. "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af",
  1699. "shasum": ""
  1700. },
  1701. "require": {
  1702. "composer-runtime-api": "^2.0.0",
  1703. "php": "^7.1|^8.0"
  1704. },
  1705. "require-dev": {
  1706. "friendsofphp/php-cs-fixer": "^2.17",
  1707. "jean85/composer-provided-replaced-stub-package": "^1.0",
  1708. "phpstan/phpstan": "^0.12.66",
  1709. "phpunit/phpunit": "^7.5|^8.5|^9.4",
  1710. "vimeo/psalm": "^4.3"
  1711. },
  1712. "type": "library",
  1713. "extra": {
  1714. "branch-alias": {
  1715. "dev-master": "1.x-dev"
  1716. }
  1717. },
  1718. "autoload": {
  1719. "psr-4": {
  1720. "Jean85\\": "src/"
  1721. }
  1722. },
  1723. "notification-url": "https://packagist.org/downloads/",
  1724. "license": [
  1725. "MIT"
  1726. ],
  1727. "authors": [
  1728. {
  1729. "name": "Alessandro Lai",
  1730. "email": "[email protected]"
  1731. }
  1732. ],
  1733. "description": "A library to get pretty versions strings of installed dependencies",
  1734. "keywords": [
  1735. "composer",
  1736. "package",
  1737. "release",
  1738. "versions"
  1739. ],
  1740. "support": {
  1741. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  1742. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.5"
  1743. },
  1744. "time": "2021-10-08T21:21:46+00:00"
  1745. },
  1746. {
  1747. "name": "khanamiryan/qrcode-detector-decoder",
  1748. "version": "2.0.2",
  1749. "source": {
  1750. "type": "git",
  1751. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1752. "reference": "8d53cbecaa32f1e56a3be58bb3055ac31774ecd0"
  1753. },
  1754. "dist": {
  1755. "type": "zip",
  1756. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/8d53cbecaa32f1e56a3be58bb3055ac31774ecd0",
  1757. "reference": "8d53cbecaa32f1e56a3be58bb3055ac31774ecd0",
  1758. "shasum": ""
  1759. },
  1760. "require": {
  1761. "php": ">=8.1"
  1762. },
  1763. "require-dev": {
  1764. "phpunit/phpunit": "^7.5 | ^8.0 | ^9.0",
  1765. "rector/rector": "^0.13.6",
  1766. "symplify/easy-coding-standard": "^11.0",
  1767. "vimeo/psalm": "^4.24"
  1768. },
  1769. "type": "library",
  1770. "autoload": {
  1771. "files": [
  1772. "lib/Common/customFunctions.php"
  1773. ],
  1774. "psr-4": {
  1775. "Zxing\\": "lib/"
  1776. }
  1777. },
  1778. "notification-url": "https://packagist.org/downloads/",
  1779. "license": [
  1780. "MIT",
  1781. "Apache-2.0"
  1782. ],
  1783. "authors": [
  1784. {
  1785. "name": "Ashot Khanamiryan",
  1786. "email": "[email protected]",
  1787. "homepage": "https://github.com/khanamiryan",
  1788. "role": "Developer"
  1789. }
  1790. ],
  1791. "description": "QR code decoder / reader",
  1792. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1793. "keywords": [
  1794. "barcode",
  1795. "qr",
  1796. "zxing"
  1797. ],
  1798. "support": {
  1799. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1800. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/2.0.2"
  1801. },
  1802. "time": "2022-11-17T10:54:53+00:00"
  1803. },
  1804. {
  1805. "name": "league/event",
  1806. "version": "3.0.2",
  1807. "source": {
  1808. "type": "git",
  1809. "url": "https://github.com/thephpleague/event.git",
  1810. "reference": "221867a61087ee265ca07bd39aa757879afca820"
  1811. },
  1812. "dist": {
  1813. "type": "zip",
  1814. "url": "https://api.github.com/repos/thephpleague/event/zipball/221867a61087ee265ca07bd39aa757879afca820",
  1815. "reference": "221867a61087ee265ca07bd39aa757879afca820",
  1816. "shasum": ""
  1817. },
  1818. "require": {
  1819. "php": ">=7.2.0",
  1820. "psr/event-dispatcher": "^1.0"
  1821. },
  1822. "provide": {
  1823. "psr/event-dispatcher-implementation": "1.0"
  1824. },
  1825. "require-dev": {
  1826. "friendsofphp/php-cs-fixer": "^2.16",
  1827. "phpstan/phpstan": "^0.12.45",
  1828. "phpunit/phpunit": "^8.5"
  1829. },
  1830. "type": "library",
  1831. "extra": {
  1832. "branch-alias": {
  1833. "dev-master": "3.0-dev"
  1834. }
  1835. },
  1836. "autoload": {
  1837. "psr-4": {
  1838. "League\\Event\\": "src/"
  1839. }
  1840. },
  1841. "notification-url": "https://packagist.org/downloads/",
  1842. "license": [
  1843. "MIT"
  1844. ],
  1845. "authors": [
  1846. {
  1847. "name": "Frank de Jonge",
  1848. "email": "[email protected]"
  1849. }
  1850. ],
  1851. "description": "Event package",
  1852. "keywords": [
  1853. "emitter",
  1854. "event",
  1855. "listener"
  1856. ],
  1857. "support": {
  1858. "issues": "https://github.com/thephpleague/event/issues",
  1859. "source": "https://github.com/thephpleague/event/tree/3.0.2"
  1860. },
  1861. "time": "2022-10-29T09:31:25+00:00"
  1862. },
  1863. {
  1864. "name": "league/html-to-markdown",
  1865. "version": "5.1.0",
  1866. "source": {
  1867. "type": "git",
  1868. "url": "https://github.com/thephpleague/html-to-markdown.git",
  1869. "reference": "e0fc8cf07bdabbcd3765341ecb50c34c271d64e1"
  1870. },
  1871. "dist": {
  1872. "type": "zip",
  1873. "url": "https://api.github.com/repos/thephpleague/html-to-markdown/zipball/e0fc8cf07bdabbcd3765341ecb50c34c271d64e1",
  1874. "reference": "e0fc8cf07bdabbcd3765341ecb50c34c271d64e1",
  1875. "shasum": ""
  1876. },
  1877. "require": {
  1878. "ext-dom": "*",
  1879. "ext-xml": "*",
  1880. "php": "^7.2.5 || ^8.0"
  1881. },
  1882. "require-dev": {
  1883. "mikehaertl/php-shellcommand": "^1.1.0",
  1884. "phpstan/phpstan": "^0.12.99",
  1885. "phpunit/phpunit": "^8.5 || ^9.2",
  1886. "scrutinizer/ocular": "^1.6",
  1887. "unleashedtech/php-coding-standard": "^2.7",
  1888. "vimeo/psalm": "^4.22"
  1889. },
  1890. "bin": [
  1891. "bin/html-to-markdown"
  1892. ],
  1893. "type": "library",
  1894. "extra": {
  1895. "branch-alias": {
  1896. "dev-master": "5.2-dev"
  1897. }
  1898. },
  1899. "autoload": {
  1900. "psr-4": {
  1901. "League\\HTMLToMarkdown\\": "src/"
  1902. }
  1903. },
  1904. "notification-url": "https://packagist.org/downloads/",
  1905. "license": [
  1906. "MIT"
  1907. ],
  1908. "authors": [
  1909. {
  1910. "name": "Colin O'Dell",
  1911. "email": "[email protected]",
  1912. "homepage": "https://www.colinodell.com",
  1913. "role": "Lead Developer"
  1914. },
  1915. {
  1916. "name": "Nick Cernis",
  1917. "email": "[email protected]",
  1918. "homepage": "http://modernnerd.net",
  1919. "role": "Original Author"
  1920. }
  1921. ],
  1922. "description": "An HTML-to-markdown conversion helper for PHP",
  1923. "homepage": "https://github.com/thephpleague/html-to-markdown",
  1924. "keywords": [
  1925. "html",
  1926. "markdown"
  1927. ],
  1928. "support": {
  1929. "issues": "https://github.com/thephpleague/html-to-markdown/issues",
  1930. "source": "https://github.com/thephpleague/html-to-markdown/tree/5.1.0"
  1931. },
  1932. "funding": [
  1933. {
  1934. "url": "https://www.colinodell.com/sponsor",
  1935. "type": "custom"
  1936. },
  1937. {
  1938. "url": "https://www.paypal.me/colinpodell/10.00",
  1939. "type": "custom"
  1940. },
  1941. {
  1942. "url": "https://github.com/colinodell",
  1943. "type": "github"
  1944. },
  1945. {
  1946. "url": "https://tidelift.com/funding/github/packagist/league/html-to-markdown",
  1947. "type": "tidelift"
  1948. }
  1949. ],
  1950. "time": "2022-03-02T17:24:08+00:00"
  1951. },
  1952. {
  1953. "name": "league/omnipay",
  1954. "version": "v3.2.1",
  1955. "source": {
  1956. "type": "git",
  1957. "url": "https://github.com/thephpleague/omnipay.git",
  1958. "reference": "38f66a0cc043ed51d6edf7956d6439a2f263501f"
  1959. },
  1960. "dist": {
  1961. "type": "zip",
  1962. "url": "https://api.github.com/repos/thephpleague/omnipay/zipball/38f66a0cc043ed51d6edf7956d6439a2f263501f",
  1963. "reference": "38f66a0cc043ed51d6edf7956d6439a2f263501f",
  1964. "shasum": ""
  1965. },
  1966. "require": {
  1967. "omnipay/common": "^3.1",
  1968. "php": "^7.2|^8.0",
  1969. "php-http/discovery": "^1.14",
  1970. "php-http/guzzle7-adapter": "^1"
  1971. },
  1972. "require-dev": {
  1973. "omnipay/tests": "^3|^4"
  1974. },
  1975. "type": "metapackage",
  1976. "extra": {
  1977. "branch-alias": {
  1978. "dev-master": "3.2.x-dev"
  1979. }
  1980. },
  1981. "notification-url": "https://packagist.org/downloads/",
  1982. "license": [
  1983. "MIT"
  1984. ],
  1985. "authors": [
  1986. {
  1987. "name": "Adrian Macneil",
  1988. "email": "[email protected]"
  1989. },
  1990. {
  1991. "name": "Barry vd. Heuvel",
  1992. "email": "[email protected]"
  1993. }
  1994. ],
  1995. "description": "Omnipay payment processing library",
  1996. "homepage": "https://omnipay.thephpleague.com/",
  1997. "keywords": [
  1998. "checkout",
  1999. "creditcard",
  2000. "omnipay",
  2001. "payment"
  2002. ],
  2003. "support": {
  2004. "issues": "https://github.com/thephpleague/omnipay/issues",
  2005. "source": "https://github.com/thephpleague/omnipay/tree/v3.2.1"
  2006. },
  2007. "funding": [
  2008. {
  2009. "url": "https://github.com/barryvdh",
  2010. "type": "github"
  2011. }
  2012. ],
  2013. "time": "2021-06-05T11:34:12+00:00"
  2014. },
  2015. {
  2016. "name": "mailgun/mailgun-php",
  2017. "version": "v3.5.7",
  2018. "source": {
  2019. "type": "git",
  2020. "url": "https://github.com/mailgun/mailgun-php.git",
  2021. "reference": "92a5f54573f7594f927aaba2715fa0ecdf8d9f3e"
  2022. },
  2023. "dist": {
  2024. "type": "zip",
  2025. "url": "https://api.github.com/repos/mailgun/mailgun-php/zipball/92a5f54573f7594f927aaba2715fa0ecdf8d9f3e",
  2026. "reference": "92a5f54573f7594f927aaba2715fa0ecdf8d9f3e",
  2027. "shasum": ""
  2028. },
  2029. "require": {
  2030. "php": "^7.3 || ^8.0",
  2031. "php-http/client-common": "^2.2.1",
  2032. "php-http/discovery": "^1.9.1",
  2033. "php-http/multipart-stream-builder": "^1.1.2",
  2034. "psr/http-client": "^1.0.1",
  2035. "webmozart/assert": "^1.9.1"
  2036. },
  2037. "require-dev": {
  2038. "nyholm/nsa": "^1.2.1",
  2039. "nyholm/psr7": "^1.3.1",
  2040. "phpunit/phpunit": "^9.3",
  2041. "symfony/http-client": "^5.3"
  2042. },
  2043. "suggest": {
  2044. "nyholm/psr7": "PSR-7 message implementation",
  2045. "symfony/http-client": "HTTP client"
  2046. },
  2047. "type": "library",
  2048. "extra": {
  2049. "branch-alias": {
  2050. "dev-master": "3.0-dev"
  2051. }
  2052. },
  2053. "autoload": {
  2054. "psr-4": {
  2055. "Mailgun\\": "src/"
  2056. }
  2057. },
  2058. "notification-url": "https://packagist.org/downloads/",
  2059. "license": [
  2060. "MIT"
  2061. ],
  2062. "authors": [
  2063. {
  2064. "name": "Travis Swientek",
  2065. "email": "[email protected]"
  2066. }
  2067. ],
  2068. "description": "The Mailgun SDK provides methods for all API functions.",
  2069. "support": {
  2070. "issues": "https://github.com/mailgun/mailgun-php/issues",
  2071. "source": "https://github.com/mailgun/mailgun-php/tree/v3.5.7"
  2072. },
  2073. "time": "2023-05-26T16:51:09+00:00"
  2074. },
  2075. {
  2076. "name": "maxmind-db/reader",
  2077. "version": "v1.11.0",
  2078. "source": {
  2079. "type": "git",
  2080. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2081. "reference": "b1f3c0699525336d09cc5161a2861268d9f2ae5b"
  2082. },
  2083. "dist": {
  2084. "type": "zip",
  2085. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/b1f3c0699525336d09cc5161a2861268d9f2ae5b",
  2086. "reference": "b1f3c0699525336d09cc5161a2861268d9f2ae5b",
  2087. "shasum": ""
  2088. },
  2089. "require": {
  2090. "php": ">=7.2"
  2091. },
  2092. "conflict": {
  2093. "ext-maxminddb": "<1.10.1,>=2.0.0"
  2094. },
  2095. "require-dev": {
  2096. "friendsofphp/php-cs-fixer": "3.*",
  2097. "php-coveralls/php-coveralls": "^2.1",
  2098. "phpstan/phpstan": "*",
  2099. "phpunit/phpcov": ">=6.0.0",
  2100. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2101. "squizlabs/php_codesniffer": "3.*"
  2102. },
  2103. "suggest": {
  2104. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2105. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2106. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2107. },
  2108. "type": "library",
  2109. "autoload": {
  2110. "psr-4": {
  2111. "MaxMind\\Db\\": "src/MaxMind/Db"
  2112. }
  2113. },
  2114. "notification-url": "https://packagist.org/downloads/",
  2115. "license": [
  2116. "Apache-2.0"
  2117. ],
  2118. "authors": [
  2119. {
  2120. "name": "Gregory J. Oschwald",
  2121. "email": "[email protected]",
  2122. "homepage": "https://www.maxmind.com/"
  2123. }
  2124. ],
  2125. "description": "MaxMind DB Reader API",
  2126. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2127. "keywords": [
  2128. "database",
  2129. "geoip",
  2130. "geoip2",
  2131. "geolocation",
  2132. "maxmind"
  2133. ],
  2134. "support": {
  2135. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  2136. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.11.0"
  2137. },
  2138. "time": "2021-10-18T15:23:10+00:00"
  2139. },
  2140. {
  2141. "name": "maxmind/web-service-common",
  2142. "version": "v0.9.0",
  2143. "source": {
  2144. "type": "git",
  2145. "url": "https://github.com/maxmind/web-service-common-php.git",
  2146. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53"
  2147. },
  2148. "dist": {
  2149. "type": "zip",
  2150. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  2151. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  2152. "shasum": ""
  2153. },
  2154. "require": {
  2155. "composer/ca-bundle": "^1.0.3",
  2156. "ext-curl": "*",
  2157. "ext-json": "*",
  2158. "php": ">=7.2"
  2159. },
  2160. "require-dev": {
  2161. "friendsofphp/php-cs-fixer": "3.*",
  2162. "phpstan/phpstan": "*",
  2163. "phpunit/phpunit": "^8.0 || ^9.0",
  2164. "squizlabs/php_codesniffer": "3.*"
  2165. },
  2166. "type": "library",
  2167. "autoload": {
  2168. "psr-4": {
  2169. "MaxMind\\Exception\\": "src/Exception",
  2170. "MaxMind\\WebService\\": "src/WebService"
  2171. }
  2172. },
  2173. "notification-url": "https://packagist.org/downloads/",
  2174. "license": [
  2175. "Apache-2.0"
  2176. ],
  2177. "authors": [
  2178. {
  2179. "name": "Gregory Oschwald",
  2180. "email": "[email protected]"
  2181. }
  2182. ],
  2183. "description": "Internal MaxMind Web Service API",
  2184. "homepage": "https://github.com/maxmind/web-service-common-php",
  2185. "support": {
  2186. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2187. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.9.0"
  2188. },
  2189. "time": "2022-03-28T17:43:20+00:00"
  2190. },
  2191. {
  2192. "name": "moneyphp/money",
  2193. "version": "v4.1.1",
  2194. "source": {
  2195. "type": "git",
  2196. "url": "https://github.com/moneyphp/money.git",
  2197. "reference": "9682220995ffd396843be5b4ee1e5f2c2d6ecee2"
  2198. },
  2199. "dist": {
  2200. "type": "zip",
  2201. "url": "https://api.github.com/repos/moneyphp/money/zipball/9682220995ffd396843be5b4ee1e5f2c2d6ecee2",
  2202. "reference": "9682220995ffd396843be5b4ee1e5f2c2d6ecee2",
  2203. "shasum": ""
  2204. },
  2205. "require": {
  2206. "ext-bcmath": "*",
  2207. "ext-filter": "*",
  2208. "ext-json": "*",
  2209. "php": "~8.0.0 || ~8.1.0 || ~8.2.0"
  2210. },
  2211. "require-dev": {
  2212. "cache/taggable-cache": "^1.1.0",
  2213. "doctrine/coding-standard": "^9.0",
  2214. "doctrine/instantiator": "^1.4.0",
  2215. "ext-gmp": "*",
  2216. "ext-intl": "*",
  2217. "florianv/exchanger": "^2.6.3",
  2218. "florianv/swap": "^4.3.0",
  2219. "moneyphp/crypto-currencies": "^1.0.0",
  2220. "moneyphp/iso-currencies": "^3.2.1",
  2221. "php-http/message": "^1.11.0",
  2222. "php-http/mock-client": "^1.4.1",
  2223. "phpbench/phpbench": "^1.2.5",
  2224. "phpspec/phpspec": "^7.3",
  2225. "phpunit/phpunit": "^9.5.4",
  2226. "psalm/plugin-phpunit": "^0.18.4",
  2227. "psr/cache": "^1.0.1",
  2228. "vimeo/psalm": "~5.3.0"
  2229. },
  2230. "suggest": {
  2231. "ext-gmp": "Calculate without integer limits",
  2232. "ext-intl": "Format Money objects with intl",
  2233. "florianv/exchanger": "Exchange rates library for PHP",
  2234. "florianv/swap": "Exchange rates library for PHP",
  2235. "psr/cache-implementation": "Used for Currency caching"
  2236. },
  2237. "type": "library",
  2238. "extra": {
  2239. "branch-alias": {
  2240. "dev-master": "3.x-dev"
  2241. }
  2242. },
  2243. "autoload": {
  2244. "psr-4": {
  2245. "Money\\": "src/"
  2246. }
  2247. },
  2248. "notification-url": "https://packagist.org/downloads/",
  2249. "license": [
  2250. "MIT"
  2251. ],
  2252. "authors": [
  2253. {
  2254. "name": "Mathias Verraes",
  2255. "email": "[email protected]",
  2256. "homepage": "http://verraes.net"
  2257. },
  2258. {
  2259. "name": "Márk Sági-Kazár",
  2260. "email": "[email protected]"
  2261. },
  2262. {
  2263. "name": "Frederik Bosch",
  2264. "email": "[email protected]"
  2265. }
  2266. ],
  2267. "description": "PHP implementation of Fowler's Money pattern",
  2268. "homepage": "http://moneyphp.org",
  2269. "keywords": [
  2270. "Value Object",
  2271. "money",
  2272. "vo"
  2273. ],
  2274. "support": {
  2275. "issues": "https://github.com/moneyphp/money/issues",
  2276. "source": "https://github.com/moneyphp/money/tree/v4.1.1"
  2277. },
  2278. "time": "2023-04-11T09:18:34+00:00"
  2279. },
  2280. {
  2281. "name": "mtdowling/jmespath.php",
  2282. "version": "2.6.1",
  2283. "source": {
  2284. "type": "git",
  2285. "url": "https://github.com/jmespath/jmespath.php.git",
  2286. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  2287. },
  2288. "dist": {
  2289. "type": "zip",
  2290. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  2291. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  2292. "shasum": ""
  2293. },
  2294. "require": {
  2295. "php": "^5.4 || ^7.0 || ^8.0",
  2296. "symfony/polyfill-mbstring": "^1.17"
  2297. },
  2298. "require-dev": {
  2299. "composer/xdebug-handler": "^1.4 || ^2.0",
  2300. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  2301. },
  2302. "bin": [
  2303. "bin/jp.php"
  2304. ],
  2305. "type": "library",
  2306. "extra": {
  2307. "branch-alias": {
  2308. "dev-master": "2.6-dev"
  2309. }
  2310. },
  2311. "autoload": {
  2312. "files": [
  2313. "src/JmesPath.php"
  2314. ],
  2315. "psr-4": {
  2316. "JmesPath\\": "src/"
  2317. }
  2318. },
  2319. "notification-url": "https://packagist.org/downloads/",
  2320. "license": [
  2321. "MIT"
  2322. ],
  2323. "authors": [
  2324. {
  2325. "name": "Michael Dowling",
  2326. "email": "[email protected]",
  2327. "homepage": "https://github.com/mtdowling"
  2328. }
  2329. ],
  2330. "description": "Declaratively specify how to extract elements from a JSON document",
  2331. "keywords": [
  2332. "json",
  2333. "jsonpath"
  2334. ],
  2335. "support": {
  2336. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2337. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  2338. },
  2339. "time": "2021-06-14T00:11:39+00:00"
  2340. },
  2341. {
  2342. "name": "nesbot/carbon",
  2343. "version": "2.67.0",
  2344. "source": {
  2345. "type": "git",
  2346. "url": "https://github.com/briannesbitt/Carbon.git",
  2347. "reference": "c1001b3bc75039b07f38a79db5237c4c529e04c8"
  2348. },
  2349. "dist": {
  2350. "type": "zip",
  2351. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/c1001b3bc75039b07f38a79db5237c4c529e04c8",
  2352. "reference": "c1001b3bc75039b07f38a79db5237c4c529e04c8",
  2353. "shasum": ""
  2354. },
  2355. "require": {
  2356. "ext-json": "*",
  2357. "php": "^7.1.8 || ^8.0",
  2358. "symfony/polyfill-mbstring": "^1.0",
  2359. "symfony/polyfill-php80": "^1.16",
  2360. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2361. },
  2362. "require-dev": {
  2363. "doctrine/dbal": "^2.0 || ^3.1.4",
  2364. "doctrine/orm": "^2.7",
  2365. "friendsofphp/php-cs-fixer": "^3.0",
  2366. "kylekatarnls/multi-tester": "^2.0",
  2367. "ondrejmirtes/better-reflection": "*",
  2368. "phpmd/phpmd": "^2.9",
  2369. "phpstan/extension-installer": "^1.0",
  2370. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2371. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2372. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2373. "squizlabs/php_codesniffer": "^3.4"
  2374. },
  2375. "bin": [
  2376. "bin/carbon"
  2377. ],
  2378. "type": "library",
  2379. "extra": {
  2380. "branch-alias": {
  2381. "dev-3.x": "3.x-dev",
  2382. "dev-master": "2.x-dev"
  2383. },
  2384. "laravel": {
  2385. "providers": [
  2386. "Carbon\\Laravel\\ServiceProvider"
  2387. ]
  2388. },
  2389. "phpstan": {
  2390. "includes": [
  2391. "extension.neon"
  2392. ]
  2393. }
  2394. },
  2395. "autoload": {
  2396. "psr-4": {
  2397. "Carbon\\": "src/Carbon/"
  2398. }
  2399. },
  2400. "notification-url": "https://packagist.org/downloads/",
  2401. "license": [
  2402. "MIT"
  2403. ],
  2404. "authors": [
  2405. {
  2406. "name": "Brian Nesbitt",
  2407. "email": "[email protected]",
  2408. "homepage": "https://markido.com"
  2409. },
  2410. {
  2411. "name": "kylekatarnls",
  2412. "homepage": "https://github.com/kylekatarnls"
  2413. }
  2414. ],
  2415. "description": "An API extension for DateTime that supports 281 different languages.",
  2416. "homepage": "https://carbon.nesbot.com",
  2417. "keywords": [
  2418. "date",
  2419. "datetime",
  2420. "time"
  2421. ],
  2422. "support": {
  2423. "docs": "https://carbon.nesbot.com/docs",
  2424. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2425. "source": "https://github.com/briannesbitt/Carbon"
  2426. },
  2427. "funding": [
  2428. {
  2429. "url": "https://github.com/sponsors/kylekatarnls",
  2430. "type": "github"
  2431. },
  2432. {
  2433. "url": "https://opencollective.com/Carbon#sponsor",
  2434. "type": "opencollective"
  2435. },
  2436. {
  2437. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2438. "type": "tidelift"
  2439. }
  2440. ],
  2441. "time": "2023-05-25T22:09:47+00:00"
  2442. },
  2443. {
  2444. "name": "nikic/fast-route",
  2445. "version": "v1.3.0",
  2446. "source": {
  2447. "type": "git",
  2448. "url": "https://github.com/nikic/FastRoute.git",
  2449. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  2450. },
  2451. "dist": {
  2452. "type": "zip",
  2453. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  2454. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  2455. "shasum": ""
  2456. },
  2457. "require": {
  2458. "php": ">=5.4.0"
  2459. },
  2460. "require-dev": {
  2461. "phpunit/phpunit": "^4.8.35|~5.7"
  2462. },
  2463. "type": "library",
  2464. "autoload": {
  2465. "files": [
  2466. "src/functions.php"
  2467. ],
  2468. "psr-4": {
  2469. "FastRoute\\": "src/"
  2470. }
  2471. },
  2472. "notification-url": "https://packagist.org/downloads/",
  2473. "license": [
  2474. "BSD-3-Clause"
  2475. ],
  2476. "authors": [
  2477. {
  2478. "name": "Nikita Popov",
  2479. "email": "[email protected]"
  2480. }
  2481. ],
  2482. "description": "Fast request router for PHP",
  2483. "keywords": [
  2484. "router",
  2485. "routing"
  2486. ],
  2487. "support": {
  2488. "issues": "https://github.com/nikic/FastRoute/issues",
  2489. "source": "https://github.com/nikic/FastRoute/tree/master"
  2490. },
  2491. "time": "2018-02-13T20:26:39+00:00"
  2492. },
  2493. {
  2494. "name": "omnipay/common",
  2495. "version": "v3.2.0",
  2496. "source": {
  2497. "type": "git",
  2498. "url": "https://github.com/thephpleague/omnipay-common.git",
  2499. "reference": "e278ff00676c05cd0f4aaaf6189a226f26ae056e"
  2500. },
  2501. "dist": {
  2502. "type": "zip",
  2503. "url": "https://api.github.com/repos/thephpleague/omnipay-common/zipball/e278ff00676c05cd0f4aaaf6189a226f26ae056e",
  2504. "reference": "e278ff00676c05cd0f4aaaf6189a226f26ae056e",
  2505. "shasum": ""
  2506. },
  2507. "require": {
  2508. "moneyphp/money": "^3.1|^4.0.3",
  2509. "php": "^7.2|^8",
  2510. "php-http/client-implementation": "^1",
  2511. "php-http/discovery": "^1.14",
  2512. "php-http/message": "^1.5",
  2513. "symfony/http-foundation": "^2.1|^3|^4|^5|^6"
  2514. },
  2515. "require-dev": {
  2516. "omnipay/tests": "^4.1",
  2517. "php-http/guzzle7-adapter": "^1",
  2518. "php-http/mock-client": "^1",
  2519. "squizlabs/php_codesniffer": "^3.5"
  2520. },
  2521. "suggest": {
  2522. "league/omnipay": "The default Omnipay package provides a default HTTP Adapter."
  2523. },
  2524. "type": "library",
  2525. "extra": {
  2526. "branch-alias": {
  2527. "dev-master": "3.1.x-dev"
  2528. }
  2529. },
  2530. "autoload": {
  2531. "psr-4": {
  2532. "Omnipay\\Common\\": "src/Common"
  2533. },
  2534. "classmap": [
  2535. "src/Omnipay.php"
  2536. ]
  2537. },
  2538. "notification-url": "https://packagist.org/downloads/",
  2539. "license": [
  2540. "MIT"
  2541. ],
  2542. "authors": [
  2543. {
  2544. "name": "Adrian Macneil",
  2545. "email": "[email protected]"
  2546. },
  2547. {
  2548. "name": "Barry vd. Heuvel",
  2549. "email": "[email protected]"
  2550. },
  2551. {
  2552. "name": "Jason Judge",
  2553. "email": "[email protected]"
  2554. },
  2555. {
  2556. "name": "Del"
  2557. },
  2558. {
  2559. "name": "Omnipay Contributors",
  2560. "homepage": "https://github.com/thephpleague/omnipay-common/contributors"
  2561. }
  2562. ],
  2563. "description": "Common components for Omnipay payment processing library",
  2564. "homepage": "https://github.com/thephpleague/omnipay-common",
  2565. "keywords": [
  2566. "gateway",
  2567. "merchant",
  2568. "omnipay",
  2569. "pay",
  2570. "payment",
  2571. "purchase"
  2572. ],
  2573. "support": {
  2574. "issues": "https://github.com/thephpleague/omnipay-common/issues",
  2575. "source": "https://github.com/thephpleague/omnipay-common/tree/v3.2.0"
  2576. },
  2577. "funding": [
  2578. {
  2579. "url": "https://github.com/barryvdh",
  2580. "type": "github"
  2581. }
  2582. ],
  2583. "time": "2021-12-30T11:32:00+00:00"
  2584. },
  2585. {
  2586. "name": "openai-php/client",
  2587. "version": "v0.5.3",
  2588. "source": {
  2589. "type": "git",
  2590. "url": "https://github.com/openai-php/client.git",
  2591. "reference": "a0ca38da78f7420a0b381e4274e416abbf6e563d"
  2592. },
  2593. "dist": {
  2594. "type": "zip",
  2595. "url": "https://api.github.com/repos/openai-php/client/zipball/a0ca38da78f7420a0b381e4274e416abbf6e563d",
  2596. "reference": "a0ca38da78f7420a0b381e4274e416abbf6e563d",
  2597. "shasum": ""
  2598. },
  2599. "require": {
  2600. "php": "^8.1.0",
  2601. "php-http/discovery": "^1.18.1",
  2602. "php-http/multipart-stream-builder": "^1.3.0",
  2603. "psr/http-client": "^1.0.2",
  2604. "psr/http-client-implementation": "^1.0.1",
  2605. "psr/http-factory-implementation": "*",
  2606. "psr/http-message": "^1.1.0|^2.0.0"
  2607. },
  2608. "require-dev": {
  2609. "guzzlehttp/guzzle": "^7.7.0",
  2610. "guzzlehttp/psr7": "^2.5.0",
  2611. "laravel/pint": "^1.10.0",
  2612. "nunomaduro/collision": "^7.5.2",
  2613. "pestphp/pest": "dev-develop as 2.6.2",
  2614. "pestphp/pest-plugin-arch": "^2.2.0",
  2615. "pestphp/pest-plugin-mock": "^2.0.0",
  2616. "pestphp/pest-plugin-type-coverage": "^2.0.0",
  2617. "phpstan/phpstan": "^1.10.15",
  2618. "rector/rector": "^0.16.0",
  2619. "symfony/var-dumper": "^6.3.0"
  2620. },
  2621. "type": "library",
  2622. "autoload": {
  2623. "files": [
  2624. "src/OpenAI.php"
  2625. ],
  2626. "psr-4": {
  2627. "OpenAI\\": "src/"
  2628. }
  2629. },
  2630. "notification-url": "https://packagist.org/downloads/",
  2631. "license": [
  2632. "MIT"
  2633. ],
  2634. "authors": [
  2635. {
  2636. "name": "Nuno Maduro",
  2637. "email": "[email protected]"
  2638. },
  2639. {
  2640. "name": "Sandro Gehri"
  2641. }
  2642. ],
  2643. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  2644. "keywords": [
  2645. "GPT-3",
  2646. "api",
  2647. "client",
  2648. "codex",
  2649. "dall-e",
  2650. "language",
  2651. "natural",
  2652. "openai",
  2653. "php",
  2654. "processing",
  2655. "sdk"
  2656. ],
  2657. "support": {
  2658. "issues": "https://github.com/openai-php/client/issues",
  2659. "source": "https://github.com/openai-php/client/tree/v0.5.3"
  2660. },
  2661. "funding": [
  2662. {
  2663. "url": "https://www.paypal.com/paypalme/enunomaduro",
  2664. "type": "custom"
  2665. },
  2666. {
  2667. "url": "https://github.com/gehrisandro",
  2668. "type": "github"
  2669. },
  2670. {
  2671. "url": "https://github.com/nunomaduro",
  2672. "type": "github"
  2673. }
  2674. ],
  2675. "time": "2023-06-07T16:17:31+00:00"
  2676. },
  2677. {
  2678. "name": "ozdemir/datatables",
  2679. "version": "2.3.7",
  2680. "source": {
  2681. "type": "git",
  2682. "url": "https://github.com/n1crack/datatables.git",
  2683. "reference": "7d8d51dccc1647fc68d3b6f90453e3f8b8b8bf9d"
  2684. },
  2685. "dist": {
  2686. "type": "zip",
  2687. "url": "https://api.github.com/repos/n1crack/datatables/zipball/7d8d51dccc1647fc68d3b6f90453e3f8b8b8bf9d",
  2688. "reference": "7d8d51dccc1647fc68d3b6f90453e3f8b8b8bf9d",
  2689. "shasum": ""
  2690. },
  2691. "require": {
  2692. "php": ">=7.1.3"
  2693. },
  2694. "require-dev": {
  2695. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  2696. },
  2697. "type": "library",
  2698. "autoload": {
  2699. "psr-4": {
  2700. "Ozdemir\\Datatables\\": "src/"
  2701. }
  2702. },
  2703. "notification-url": "https://packagist.org/downloads/",
  2704. "license": [
  2705. "MIT"
  2706. ],
  2707. "authors": [
  2708. {
  2709. "name": "Yusuf Özdemir",
  2710. "email": "[email protected]"
  2711. }
  2712. ],
  2713. "description": "PHP Library to handle server-side processing for Datatables, in a fast and simple way.",
  2714. "support": {
  2715. "issues": "https://github.com/n1crack/datatables/issues",
  2716. "source": "https://github.com/n1crack/datatables/tree/2.3.7"
  2717. },
  2718. "time": "2023-05-29T10:42:49+00:00"
  2719. },
  2720. {
  2721. "name": "php-http/client-common",
  2722. "version": "2.7.0",
  2723. "source": {
  2724. "type": "git",
  2725. "url": "https://github.com/php-http/client-common.git",
  2726. "reference": "880509727a447474d2a71b7d7fa5d268ddd3db4b"
  2727. },
  2728. "dist": {
  2729. "type": "zip",
  2730. "url": "https://api.github.com/repos/php-http/client-common/zipball/880509727a447474d2a71b7d7fa5d268ddd3db4b",
  2731. "reference": "880509727a447474d2a71b7d7fa5d268ddd3db4b",
  2732. "shasum": ""
  2733. },
  2734. "require": {
  2735. "php": "^7.1 || ^8.0",
  2736. "php-http/httplug": "^2.0",
  2737. "php-http/message": "^1.6",
  2738. "psr/http-client": "^1.0",
  2739. "psr/http-factory": "^1.0",
  2740. "psr/http-message": "^1.0 || ^2.0",
  2741. "symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0",
  2742. "symfony/polyfill-php80": "^1.17"
  2743. },
  2744. "require-dev": {
  2745. "doctrine/instantiator": "^1.1",
  2746. "guzzlehttp/psr7": "^1.4",
  2747. "nyholm/psr7": "^1.2",
  2748. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  2749. "phpspec/prophecy": "^1.10.2",
  2750. "phpunit/phpunit": "^7.5.20 || ^8.5.33 || ^9.6.7"
  2751. },
  2752. "suggest": {
  2753. "ext-json": "To detect JSON responses with the ContentTypePlugin",
  2754. "ext-libxml": "To detect XML responses with the ContentTypePlugin",
  2755. "php-http/cache-plugin": "PSR-6 Cache plugin",
  2756. "php-http/logger-plugin": "PSR-3 Logger plugin",
  2757. "php-http/stopwatch-plugin": "Symfony Stopwatch plugin"
  2758. },
  2759. "type": "library",
  2760. "autoload": {
  2761. "psr-4": {
  2762. "Http\\Client\\Common\\": "src/"
  2763. }
  2764. },
  2765. "notification-url": "https://packagist.org/downloads/",
  2766. "license": [
  2767. "MIT"
  2768. ],
  2769. "authors": [
  2770. {
  2771. "name": "Márk Sági-Kazár",
  2772. "email": "[email protected]"
  2773. }
  2774. ],
  2775. "description": "Common HTTP Client implementations and tools for HTTPlug",
  2776. "homepage": "http://httplug.io",
  2777. "keywords": [
  2778. "client",
  2779. "common",
  2780. "http",
  2781. "httplug"
  2782. ],
  2783. "support": {
  2784. "issues": "https://github.com/php-http/client-common/issues",
  2785. "source": "https://github.com/php-http/client-common/tree/2.7.0"
  2786. },
  2787. "time": "2023-05-17T06:46:59+00:00"
  2788. },
  2789. {
  2790. "name": "php-http/discovery",
  2791. "version": "1.18.1",
  2792. "source": {
  2793. "type": "git",
  2794. "url": "https://github.com/php-http/discovery.git",
  2795. "reference": "f258b3a1d16acb7b21f3b42d7a2494a733365237"
  2796. },
  2797. "dist": {
  2798. "type": "zip",
  2799. "url": "https://api.github.com/repos/php-http/discovery/zipball/f258b3a1d16acb7b21f3b42d7a2494a733365237",
  2800. "reference": "f258b3a1d16acb7b21f3b42d7a2494a733365237",
  2801. "shasum": ""
  2802. },
  2803. "require": {
  2804. "composer-plugin-api": "^1.0|^2.0",
  2805. "php": "^7.1 || ^8.0"
  2806. },
  2807. "conflict": {
  2808. "nyholm/psr7": "<1.0",
  2809. "zendframework/zend-diactoros": "*"
  2810. },
  2811. "provide": {
  2812. "php-http/async-client-implementation": "*",
  2813. "php-http/client-implementation": "*",
  2814. "psr/http-client-implementation": "*",
  2815. "psr/http-factory-implementation": "*",
  2816. "psr/http-message-implementation": "*"
  2817. },
  2818. "require-dev": {
  2819. "composer/composer": "^1.0.2|^2.0",
  2820. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  2821. "php-http/httplug": "^1.0 || ^2.0",
  2822. "php-http/message-factory": "^1.0",
  2823. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  2824. "symfony/phpunit-bridge": "^6.2"
  2825. },
  2826. "type": "composer-plugin",
  2827. "extra": {
  2828. "class": "Http\\Discovery\\Composer\\Plugin",
  2829. "plugin-optional": true
  2830. },
  2831. "autoload": {
  2832. "psr-4": {
  2833. "Http\\Discovery\\": "src/"
  2834. },
  2835. "exclude-from-classmap": [
  2836. "src/Composer/Plugin.php"
  2837. ]
  2838. },
  2839. "notification-url": "https://packagist.org/downloads/",
  2840. "license": [
  2841. "MIT"
  2842. ],
  2843. "authors": [
  2844. {
  2845. "name": "Márk Sági-Kazár",
  2846. "email": "[email protected]"
  2847. }
  2848. ],
  2849. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  2850. "homepage": "http://php-http.org",
  2851. "keywords": [
  2852. "adapter",
  2853. "client",
  2854. "discovery",
  2855. "factory",
  2856. "http",
  2857. "message",
  2858. "psr17",
  2859. "psr7"
  2860. ],
  2861. "support": {
  2862. "issues": "https://github.com/php-http/discovery/issues",
  2863. "source": "https://github.com/php-http/discovery/tree/1.18.1"
  2864. },
  2865. "time": "2023-05-17T08:53:10+00:00"
  2866. },
  2867. {
  2868. "name": "php-http/guzzle7-adapter",
  2869. "version": "1.0.0",
  2870. "source": {
  2871. "type": "git",
  2872. "url": "https://github.com/php-http/guzzle7-adapter.git",
  2873. "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01"
  2874. },
  2875. "dist": {
  2876. "type": "zip",
  2877. "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01",
  2878. "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01",
  2879. "shasum": ""
  2880. },
  2881. "require": {
  2882. "guzzlehttp/guzzle": "^7.0",
  2883. "php": "^7.2 | ^8.0",
  2884. "php-http/httplug": "^2.0",
  2885. "psr/http-client": "^1.0"
  2886. },
  2887. "provide": {
  2888. "php-http/async-client-implementation": "1.0",
  2889. "php-http/client-implementation": "1.0",
  2890. "psr/http-client-implementation": "1.0"
  2891. },
  2892. "require-dev": {
  2893. "php-http/client-integration-tests": "^3.0",
  2894. "phpunit/phpunit": "^8.0|^9.3"
  2895. },
  2896. "type": "library",
  2897. "extra": {
  2898. "branch-alias": {
  2899. "dev-master": "0.2.x-dev"
  2900. }
  2901. },
  2902. "autoload": {
  2903. "psr-4": {
  2904. "Http\\Adapter\\Guzzle7\\": "src/"
  2905. }
  2906. },
  2907. "notification-url": "https://packagist.org/downloads/",
  2908. "license": [
  2909. "MIT"
  2910. ],
  2911. "authors": [
  2912. {
  2913. "name": "Tobias Nyholm",
  2914. "email": "[email protected]"
  2915. }
  2916. ],
  2917. "description": "Guzzle 7 HTTP Adapter",
  2918. "homepage": "http://httplug.io",
  2919. "keywords": [
  2920. "Guzzle",
  2921. "http"
  2922. ],
  2923. "support": {
  2924. "issues": "https://github.com/php-http/guzzle7-adapter/issues",
  2925. "source": "https://github.com/php-http/guzzle7-adapter/tree/1.0.0"
  2926. },
  2927. "time": "2021-03-09T07:35:15+00:00"
  2928. },
  2929. {
  2930. "name": "php-http/httplug",
  2931. "version": "2.4.0",
  2932. "source": {
  2933. "type": "git",
  2934. "url": "https://github.com/php-http/httplug.git",
  2935. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67"
  2936. },
  2937. "dist": {
  2938. "type": "zip",
  2939. "url": "https://api.github.com/repos/php-http/httplug/zipball/625ad742c360c8ac580fcc647a1541d29e257f67",
  2940. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67",
  2941. "shasum": ""
  2942. },
  2943. "require": {
  2944. "php": "^7.1 || ^8.0",
  2945. "php-http/promise": "^1.1",
  2946. "psr/http-client": "^1.0",
  2947. "psr/http-message": "^1.0 || ^2.0"
  2948. },
  2949. "require-dev": {
  2950. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  2951. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  2952. },
  2953. "type": "library",
  2954. "autoload": {
  2955. "psr-4": {
  2956. "Http\\Client\\": "src/"
  2957. }
  2958. },
  2959. "notification-url": "https://packagist.org/downloads/",
  2960. "license": [
  2961. "MIT"
  2962. ],
  2963. "authors": [
  2964. {
  2965. "name": "Eric GELOEN",
  2966. "email": "[email protected]"
  2967. },
  2968. {
  2969. "name": "Márk Sági-Kazár",
  2970. "email": "[email protected]",
  2971. "homepage": "https://sagikazarmark.hu"
  2972. }
  2973. ],
  2974. "description": "HTTPlug, the HTTP client abstraction for PHP",
  2975. "homepage": "http://httplug.io",
  2976. "keywords": [
  2977. "client",
  2978. "http"
  2979. ],
  2980. "support": {
  2981. "issues": "https://github.com/php-http/httplug/issues",
  2982. "source": "https://github.com/php-http/httplug/tree/2.4.0"
  2983. },
  2984. "time": "2023-04-14T15:10:03+00:00"
  2985. },
  2986. {
  2987. "name": "php-http/message",
  2988. "version": "1.16.0",
  2989. "source": {
  2990. "type": "git",
  2991. "url": "https://github.com/php-http/message.git",
  2992. "reference": "47a14338bf4ebd67d317bf1144253d7db4ab55fd"
  2993. },
  2994. "dist": {
  2995. "type": "zip",
  2996. "url": "https://api.github.com/repos/php-http/message/zipball/47a14338bf4ebd67d317bf1144253d7db4ab55fd",
  2997. "reference": "47a14338bf4ebd67d317bf1144253d7db4ab55fd",
  2998. "shasum": ""
  2999. },
  3000. "require": {
  3001. "clue/stream-filter": "^1.5",
  3002. "php": "^7.2 || ^8.0",
  3003. "psr/http-message": "^1.1 || ^2.0"
  3004. },
  3005. "provide": {
  3006. "php-http/message-factory-implementation": "1.0"
  3007. },
  3008. "require-dev": {
  3009. "ergebnis/composer-normalize": "^2.6",
  3010. "ext-zlib": "*",
  3011. "guzzlehttp/psr7": "^1.0 || ^2.0",
  3012. "laminas/laminas-diactoros": "^2.0 || ^3.0",
  3013. "php-http/message-factory": "^1.0.2",
  3014. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  3015. "slim/slim": "^3.0"
  3016. },
  3017. "suggest": {
  3018. "ext-zlib": "Used with compressor/decompressor streams",
  3019. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  3020. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  3021. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  3022. },
  3023. "type": "library",
  3024. "autoload": {
  3025. "files": [
  3026. "src/filters.php"
  3027. ],
  3028. "psr-4": {
  3029. "Http\\Message\\": "src/"
  3030. }
  3031. },
  3032. "notification-url": "https://packagist.org/downloads/",
  3033. "license": [
  3034. "MIT"
  3035. ],
  3036. "authors": [
  3037. {
  3038. "name": "Márk Sági-Kazár",
  3039. "email": "[email protected]"
  3040. }
  3041. ],
  3042. "description": "HTTP Message related tools",
  3043. "homepage": "http://php-http.org",
  3044. "keywords": [
  3045. "http",
  3046. "message",
  3047. "psr-7"
  3048. ],
  3049. "support": {
  3050. "issues": "https://github.com/php-http/message/issues",
  3051. "source": "https://github.com/php-http/message/tree/1.16.0"
  3052. },
  3053. "time": "2023-05-17T06:43:38+00:00"
  3054. },
  3055. {
  3056. "name": "php-http/message-factory",
  3057. "version": "1.1.0",
  3058. "source": {
  3059. "type": "git",
  3060. "url": "https://github.com/php-http/message-factory.git",
  3061. "reference": "4d8778e1c7d405cbb471574821c1ff5b68cc8f57"
  3062. },
  3063. "dist": {
  3064. "type": "zip",
  3065. "url": "https://api.github.com/repos/php-http/message-factory/zipball/4d8778e1c7d405cbb471574821c1ff5b68cc8f57",
  3066. "reference": "4d8778e1c7d405cbb471574821c1ff5b68cc8f57",
  3067. "shasum": ""
  3068. },
  3069. "require": {
  3070. "php": ">=5.4",
  3071. "psr/http-message": "^1.0 || ^2.0"
  3072. },
  3073. "type": "library",
  3074. "extra": {
  3075. "branch-alias": {
  3076. "dev-master": "1.x-dev"
  3077. }
  3078. },
  3079. "autoload": {
  3080. "psr-4": {
  3081. "Http\\Message\\": "src/"
  3082. }
  3083. },
  3084. "notification-url": "https://packagist.org/downloads/",
  3085. "license": [
  3086. "MIT"
  3087. ],
  3088. "authors": [
  3089. {
  3090. "name": "Márk Sági-Kazár",
  3091. "email": "[email protected]"
  3092. }
  3093. ],
  3094. "description": "Factory interfaces for PSR-7 HTTP Message",
  3095. "homepage": "http://php-http.org",
  3096. "keywords": [
  3097. "factory",
  3098. "http",
  3099. "message",
  3100. "stream",
  3101. "uri"
  3102. ],
  3103. "support": {
  3104. "issues": "https://github.com/php-http/message-factory/issues",
  3105. "source": "https://github.com/php-http/message-factory/tree/1.1.0"
  3106. },
  3107. "abandoned": "psr/http-factory",
  3108. "time": "2023-04-14T14:16:17+00:00"
  3109. },
  3110. {
  3111. "name": "php-http/multipart-stream-builder",
  3112. "version": "1.3.0",
  3113. "source": {
  3114. "type": "git",
  3115. "url": "https://github.com/php-http/multipart-stream-builder.git",
  3116. "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a"
  3117. },
  3118. "dist": {
  3119. "type": "zip",
  3120. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/f5938fd135d9fa442cc297dc98481805acfe2b6a",
  3121. "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a",
  3122. "shasum": ""
  3123. },
  3124. "require": {
  3125. "php": "^7.1 || ^8.0",
  3126. "php-http/discovery": "^1.15",
  3127. "psr/http-factory-implementation": "^1.0"
  3128. },
  3129. "require-dev": {
  3130. "nyholm/psr7": "^1.0",
  3131. "php-http/message": "^1.5",
  3132. "php-http/message-factory": "^1.0.2",
  3133. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  3134. },
  3135. "type": "library",
  3136. "autoload": {
  3137. "psr-4": {
  3138. "Http\\Message\\MultipartStream\\": "src/"
  3139. }
  3140. },
  3141. "notification-url": "https://packagist.org/downloads/",
  3142. "license": [
  3143. "MIT"
  3144. ],
  3145. "authors": [
  3146. {
  3147. "name": "Tobias Nyholm",
  3148. "email": "[email protected]"
  3149. }
  3150. ],
  3151. "description": "A builder class that help you create a multipart stream",
  3152. "homepage": "http://php-http.org",
  3153. "keywords": [
  3154. "factory",
  3155. "http",
  3156. "message",
  3157. "multipart stream",
  3158. "stream"
  3159. ],
  3160. "support": {
  3161. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  3162. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.3.0"
  3163. },
  3164. "time": "2023-04-28T14:10:22+00:00"
  3165. },
  3166. {
  3167. "name": "php-http/promise",
  3168. "version": "1.1.0",
  3169. "source": {
  3170. "type": "git",
  3171. "url": "https://github.com/php-http/promise.git",
  3172. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88"
  3173. },
  3174. "dist": {
  3175. "type": "zip",
  3176. "url": "https://api.github.com/repos/php-http/promise/zipball/4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  3177. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  3178. "shasum": ""
  3179. },
  3180. "require": {
  3181. "php": "^7.1 || ^8.0"
  3182. },
  3183. "require-dev": {
  3184. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2",
  3185. "phpspec/phpspec": "^5.1.2 || ^6.2"
  3186. },
  3187. "type": "library",
  3188. "extra": {
  3189. "branch-alias": {
  3190. "dev-master": "1.1-dev"
  3191. }
  3192. },
  3193. "autoload": {
  3194. "psr-4": {
  3195. "Http\\Promise\\": "src/"
  3196. }
  3197. },
  3198. "notification-url": "https://packagist.org/downloads/",
  3199. "license": [
  3200. "MIT"
  3201. ],
  3202. "authors": [
  3203. {
  3204. "name": "Joel Wurtz",
  3205. "email": "[email protected]"
  3206. },
  3207. {
  3208. "name": "Márk Sági-Kazár",
  3209. "email": "[email protected]"
  3210. }
  3211. ],
  3212. "description": "Promise used for asynchronous HTTP requests",
  3213. "homepage": "http://httplug.io",
  3214. "keywords": [
  3215. "promise"
  3216. ],
  3217. "support": {
  3218. "issues": "https://github.com/php-http/promise/issues",
  3219. "source": "https://github.com/php-http/promise/tree/1.1.0"
  3220. },
  3221. "time": "2020-07-07T09:29:14+00:00"
  3222. },
  3223. {
  3224. "name": "phpmailer/phpmailer",
  3225. "version": "v6.8.0",
  3226. "source": {
  3227. "type": "git",
  3228. "url": "https://github.com/PHPMailer/PHPMailer.git",
  3229. "reference": "df16b615e371d81fb79e506277faea67a1be18f1"
  3230. },
  3231. "dist": {
  3232. "type": "zip",
  3233. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/df16b615e371d81fb79e506277faea67a1be18f1",
  3234. "reference": "df16b615e371d81fb79e506277faea67a1be18f1",
  3235. "shasum": ""
  3236. },
  3237. "require": {
  3238. "ext-ctype": "*",
  3239. "ext-filter": "*",
  3240. "ext-hash": "*",
  3241. "php": ">=5.5.0"
  3242. },
  3243. "require-dev": {
  3244. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
  3245. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  3246. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  3247. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  3248. "phpcompatibility/php-compatibility": "^9.3.5",
  3249. "roave/security-advisories": "dev-latest",
  3250. "squizlabs/php_codesniffer": "^3.7.1",
  3251. "yoast/phpunit-polyfills": "^1.0.4"
  3252. },
  3253. "suggest": {
  3254. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  3255. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  3256. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  3257. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  3258. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  3259. "psr/log": "For optional PSR-3 debug logging",
  3260. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  3261. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  3262. },
  3263. "type": "library",
  3264. "autoload": {
  3265. "psr-4": {
  3266. "PHPMailer\\PHPMailer\\": "src/"
  3267. }
  3268. },
  3269. "notification-url": "https://packagist.org/downloads/",
  3270. "license": [
  3271. "LGPL-2.1-only"
  3272. ],
  3273. "authors": [
  3274. {
  3275. "name": "Marcus Bointon",
  3276. "email": "[email protected]"
  3277. },
  3278. {
  3279. "name": "Jim Jagielski",
  3280. "email": "[email protected]"
  3281. },
  3282. {
  3283. "name": "Andy Prevost",
  3284. "email": "[email protected]"
  3285. },
  3286. {
  3287. "name": "Brent R. Matzelle"
  3288. }
  3289. ],
  3290. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  3291. "support": {
  3292. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  3293. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.8.0"
  3294. },
  3295. "funding": [
  3296. {
  3297. "url": "https://github.com/Synchro",
  3298. "type": "github"
  3299. }
  3300. ],
  3301. "time": "2023-03-06T14:43:22+00:00"
  3302. },
  3303. {
  3304. "name": "postal/postal",
  3305. "version": "v1.0.1",
  3306. "source": {
  3307. "type": "git",
  3308. "url": "https://github.com/postalserver/postal-php.git",
  3309. "reference": "7656516590fe1a409b94833000e14fcf87c61c72"
  3310. },
  3311. "dist": {
  3312. "type": "zip",
  3313. "url": "https://api.github.com/repos/postalserver/postal-php/zipball/7656516590fe1a409b94833000e14fcf87c61c72",
  3314. "reference": "7656516590fe1a409b94833000e14fcf87c61c72",
  3315. "shasum": ""
  3316. },
  3317. "require": {
  3318. "php": ">=5.4",
  3319. "rmccue/requests": "^1.0"
  3320. },
  3321. "type": "library",
  3322. "autoload": {
  3323. "psr-4": {
  3324. "Postal\\": "src/"
  3325. }
  3326. },
  3327. "notification-url": "https://packagist.org/downloads/",
  3328. "license": [
  3329. "MIT"
  3330. ],
  3331. "authors": [
  3332. {
  3333. "name": "Adam Cooke",
  3334. "email": "[email protected]"
  3335. }
  3336. ],
  3337. "description": "Postal for PHP library.",
  3338. "homepage": "https://github.com/atech/postal",
  3339. "keywords": [
  3340. "mail",
  3341. "postal"
  3342. ],
  3343. "support": {
  3344. "issues": "https://github.com/postalserver/postal-php/issues",
  3345. "source": "https://github.com/postalserver/postal-php/tree/v1.0.1"
  3346. },
  3347. "time": "2022-01-27T10:58:08+00:00"
  3348. },
  3349. {
  3350. "name": "psr/container",
  3351. "version": "2.0.2",
  3352. "source": {
  3353. "type": "git",
  3354. "url": "https://github.com/php-fig/container.git",
  3355. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3356. },
  3357. "dist": {
  3358. "type": "zip",
  3359. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3360. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3361. "shasum": ""
  3362. },
  3363. "require": {
  3364. "php": ">=7.4.0"
  3365. },
  3366. "type": "library",
  3367. "extra": {
  3368. "branch-alias": {
  3369. "dev-master": "2.0.x-dev"
  3370. }
  3371. },
  3372. "autoload": {
  3373. "psr-4": {
  3374. "Psr\\Container\\": "src/"
  3375. }
  3376. },
  3377. "notification-url": "https://packagist.org/downloads/",
  3378. "license": [
  3379. "MIT"
  3380. ],
  3381. "authors": [
  3382. {
  3383. "name": "PHP-FIG",
  3384. "homepage": "https://www.php-fig.org/"
  3385. }
  3386. ],
  3387. "description": "Common Container Interface (PHP FIG PSR-11)",
  3388. "homepage": "https://github.com/php-fig/container",
  3389. "keywords": [
  3390. "PSR-11",
  3391. "container",
  3392. "container-interface",
  3393. "container-interop",
  3394. "psr"
  3395. ],
  3396. "support": {
  3397. "issues": "https://github.com/php-fig/container/issues",
  3398. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3399. },
  3400. "time": "2021-11-05T16:47:00+00:00"
  3401. },
  3402. {
  3403. "name": "psr/event-dispatcher",
  3404. "version": "1.0.0",
  3405. "source": {
  3406. "type": "git",
  3407. "url": "https://github.com/php-fig/event-dispatcher.git",
  3408. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3409. },
  3410. "dist": {
  3411. "type": "zip",
  3412. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3413. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3414. "shasum": ""
  3415. },
  3416. "require": {
  3417. "php": ">=7.2.0"
  3418. },
  3419. "type": "library",
  3420. "extra": {
  3421. "branch-alias": {
  3422. "dev-master": "1.0.x-dev"
  3423. }
  3424. },
  3425. "autoload": {
  3426. "psr-4": {
  3427. "Psr\\EventDispatcher\\": "src/"
  3428. }
  3429. },
  3430. "notification-url": "https://packagist.org/downloads/",
  3431. "license": [
  3432. "MIT"
  3433. ],
  3434. "authors": [
  3435. {
  3436. "name": "PHP-FIG",
  3437. "homepage": "http://www.php-fig.org/"
  3438. }
  3439. ],
  3440. "description": "Standard interfaces for event handling.",
  3441. "keywords": [
  3442. "events",
  3443. "psr",
  3444. "psr-14"
  3445. ],
  3446. "support": {
  3447. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3448. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3449. },
  3450. "time": "2019-01-08T18:20:26+00:00"
  3451. },
  3452. {
  3453. "name": "psr/http-client",
  3454. "version": "1.0.2",
  3455. "source": {
  3456. "type": "git",
  3457. "url": "https://github.com/php-fig/http-client.git",
  3458. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
  3459. },
  3460. "dist": {
  3461. "type": "zip",
  3462. "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  3463. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  3464. "shasum": ""
  3465. },
  3466. "require": {
  3467. "php": "^7.0 || ^8.0",
  3468. "psr/http-message": "^1.0 || ^2.0"
  3469. },
  3470. "type": "library",
  3471. "extra": {
  3472. "branch-alias": {
  3473. "dev-master": "1.0.x-dev"
  3474. }
  3475. },
  3476. "autoload": {
  3477. "psr-4": {
  3478. "Psr\\Http\\Client\\": "src/"
  3479. }
  3480. },
  3481. "notification-url": "https://packagist.org/downloads/",
  3482. "license": [
  3483. "MIT"
  3484. ],
  3485. "authors": [
  3486. {
  3487. "name": "PHP-FIG",
  3488. "homepage": "https://www.php-fig.org/"
  3489. }
  3490. ],
  3491. "description": "Common interface for HTTP clients",
  3492. "homepage": "https://github.com/php-fig/http-client",
  3493. "keywords": [
  3494. "http",
  3495. "http-client",
  3496. "psr",
  3497. "psr-18"
  3498. ],
  3499. "support": {
  3500. "source": "https://github.com/php-fig/http-client/tree/1.0.2"
  3501. },
  3502. "time": "2023-04-10T20:12:12+00:00"
  3503. },
  3504. {
  3505. "name": "psr/http-factory",
  3506. "version": "1.0.2",
  3507. "source": {
  3508. "type": "git",
  3509. "url": "https://github.com/php-fig/http-factory.git",
  3510. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  3511. },
  3512. "dist": {
  3513. "type": "zip",
  3514. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  3515. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  3516. "shasum": ""
  3517. },
  3518. "require": {
  3519. "php": ">=7.0.0",
  3520. "psr/http-message": "^1.0 || ^2.0"
  3521. },
  3522. "type": "library",
  3523. "extra": {
  3524. "branch-alias": {
  3525. "dev-master": "1.0.x-dev"
  3526. }
  3527. },
  3528. "autoload": {
  3529. "psr-4": {
  3530. "Psr\\Http\\Message\\": "src/"
  3531. }
  3532. },
  3533. "notification-url": "https://packagist.org/downloads/",
  3534. "license": [
  3535. "MIT"
  3536. ],
  3537. "authors": [
  3538. {
  3539. "name": "PHP-FIG",
  3540. "homepage": "https://www.php-fig.org/"
  3541. }
  3542. ],
  3543. "description": "Common interfaces for PSR-7 HTTP message factories",
  3544. "keywords": [
  3545. "factory",
  3546. "http",
  3547. "message",
  3548. "psr",
  3549. "psr-17",
  3550. "psr-7",
  3551. "request",
  3552. "response"
  3553. ],
  3554. "support": {
  3555. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  3556. },
  3557. "time": "2023-04-10T20:10:41+00:00"
  3558. },
  3559. {
  3560. "name": "psr/http-message",
  3561. "version": "1.1",
  3562. "source": {
  3563. "type": "git",
  3564. "url": "https://github.com/php-fig/http-message.git",
  3565. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  3566. },
  3567. "dist": {
  3568. "type": "zip",
  3569. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3570. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3571. "shasum": ""
  3572. },
  3573. "require": {
  3574. "php": "^7.2 || ^8.0"
  3575. },
  3576. "type": "library",
  3577. "extra": {
  3578. "branch-alias": {
  3579. "dev-master": "1.1.x-dev"
  3580. }
  3581. },
  3582. "autoload": {
  3583. "psr-4": {
  3584. "Psr\\Http\\Message\\": "src/"
  3585. }
  3586. },
  3587. "notification-url": "https://packagist.org/downloads/",
  3588. "license": [
  3589. "MIT"
  3590. ],
  3591. "authors": [
  3592. {
  3593. "name": "PHP-FIG",
  3594. "homepage": "http://www.php-fig.org/"
  3595. }
  3596. ],
  3597. "description": "Common interface for HTTP messages",
  3598. "homepage": "https://github.com/php-fig/http-message",
  3599. "keywords": [
  3600. "http",
  3601. "http-message",
  3602. "psr",
  3603. "psr-7",
  3604. "request",
  3605. "response"
  3606. ],
  3607. "support": {
  3608. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3609. },
  3610. "time": "2023-04-04T09:50:52+00:00"
  3611. },
  3612. {
  3613. "name": "psr/http-server-handler",
  3614. "version": "1.0.2",
  3615. "source": {
  3616. "type": "git",
  3617. "url": "https://github.com/php-fig/http-server-handler.git",
  3618. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  3619. },
  3620. "dist": {
  3621. "type": "zip",
  3622. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  3623. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  3624. "shasum": ""
  3625. },
  3626. "require": {
  3627. "php": ">=7.0",
  3628. "psr/http-message": "^1.0 || ^2.0"
  3629. },
  3630. "type": "library",
  3631. "extra": {
  3632. "branch-alias": {
  3633. "dev-master": "1.0.x-dev"
  3634. }
  3635. },
  3636. "autoload": {
  3637. "psr-4": {
  3638. "Psr\\Http\\Server\\": "src/"
  3639. }
  3640. },
  3641. "notification-url": "https://packagist.org/downloads/",
  3642. "license": [
  3643. "MIT"
  3644. ],
  3645. "authors": [
  3646. {
  3647. "name": "PHP-FIG",
  3648. "homepage": "https://www.php-fig.org/"
  3649. }
  3650. ],
  3651. "description": "Common interface for HTTP server-side request handler",
  3652. "keywords": [
  3653. "handler",
  3654. "http",
  3655. "http-interop",
  3656. "psr",
  3657. "psr-15",
  3658. "psr-7",
  3659. "request",
  3660. "response",
  3661. "server"
  3662. ],
  3663. "support": {
  3664. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  3665. },
  3666. "time": "2023-04-10T20:06:20+00:00"
  3667. },
  3668. {
  3669. "name": "psr/http-server-middleware",
  3670. "version": "1.0.2",
  3671. "source": {
  3672. "type": "git",
  3673. "url": "https://github.com/php-fig/http-server-middleware.git",
  3674. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  3675. },
  3676. "dist": {
  3677. "type": "zip",
  3678. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  3679. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  3680. "shasum": ""
  3681. },
  3682. "require": {
  3683. "php": ">=7.0",
  3684. "psr/http-message": "^1.0 || ^2.0",
  3685. "psr/http-server-handler": "^1.0"
  3686. },
  3687. "type": "library",
  3688. "extra": {
  3689. "branch-alias": {
  3690. "dev-master": "1.0.x-dev"
  3691. }
  3692. },
  3693. "autoload": {
  3694. "psr-4": {
  3695. "Psr\\Http\\Server\\": "src/"
  3696. }
  3697. },
  3698. "notification-url": "https://packagist.org/downloads/",
  3699. "license": [
  3700. "MIT"
  3701. ],
  3702. "authors": [
  3703. {
  3704. "name": "PHP-FIG",
  3705. "homepage": "https://www.php-fig.org/"
  3706. }
  3707. ],
  3708. "description": "Common interface for HTTP server-side middleware",
  3709. "keywords": [
  3710. "http",
  3711. "http-interop",
  3712. "middleware",
  3713. "psr",
  3714. "psr-15",
  3715. "psr-7",
  3716. "request",
  3717. "response"
  3718. ],
  3719. "support": {
  3720. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  3721. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  3722. },
  3723. "time": "2023-04-11T06:14:47+00:00"
  3724. },
  3725. {
  3726. "name": "psr/log",
  3727. "version": "3.0.0",
  3728. "source": {
  3729. "type": "git",
  3730. "url": "https://github.com/php-fig/log.git",
  3731. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  3732. },
  3733. "dist": {
  3734. "type": "zip",
  3735. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3736. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3737. "shasum": ""
  3738. },
  3739. "require": {
  3740. "php": ">=8.0.0"
  3741. },
  3742. "type": "library",
  3743. "extra": {
  3744. "branch-alias": {
  3745. "dev-master": "3.x-dev"
  3746. }
  3747. },
  3748. "autoload": {
  3749. "psr-4": {
  3750. "Psr\\Log\\": "src"
  3751. }
  3752. },
  3753. "notification-url": "https://packagist.org/downloads/",
  3754. "license": [
  3755. "MIT"
  3756. ],
  3757. "authors": [
  3758. {
  3759. "name": "PHP-FIG",
  3760. "homepage": "https://www.php-fig.org/"
  3761. }
  3762. ],
  3763. "description": "Common interface for logging libraries",
  3764. "homepage": "https://github.com/php-fig/log",
  3765. "keywords": [
  3766. "log",
  3767. "psr",
  3768. "psr-3"
  3769. ],
  3770. "support": {
  3771. "source": "https://github.com/php-fig/log/tree/3.0.0"
  3772. },
  3773. "time": "2021-07-14T16:46:02+00:00"
  3774. },
  3775. {
  3776. "name": "psr/simple-cache",
  3777. "version": "3.0.0",
  3778. "source": {
  3779. "type": "git",
  3780. "url": "https://github.com/php-fig/simple-cache.git",
  3781. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  3782. },
  3783. "dist": {
  3784. "type": "zip",
  3785. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3786. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3787. "shasum": ""
  3788. },
  3789. "require": {
  3790. "php": ">=8.0.0"
  3791. },
  3792. "type": "library",
  3793. "extra": {
  3794. "branch-alias": {
  3795. "dev-master": "3.0.x-dev"
  3796. }
  3797. },
  3798. "autoload": {
  3799. "psr-4": {
  3800. "Psr\\SimpleCache\\": "src/"
  3801. }
  3802. },
  3803. "notification-url": "https://packagist.org/downloads/",
  3804. "license": [
  3805. "MIT"
  3806. ],
  3807. "authors": [
  3808. {
  3809. "name": "PHP-FIG",
  3810. "homepage": "https://www.php-fig.org/"
  3811. }
  3812. ],
  3813. "description": "Common interfaces for simple caching",
  3814. "keywords": [
  3815. "cache",
  3816. "caching",
  3817. "psr",
  3818. "psr-16",
  3819. "simple-cache"
  3820. ],
  3821. "support": {
  3822. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  3823. },
  3824. "time": "2021-10-29T13:26:27+00:00"
  3825. },
  3826. {
  3827. "name": "ralouphie/getallheaders",
  3828. "version": "3.0.3",
  3829. "source": {
  3830. "type": "git",
  3831. "url": "https://github.com/ralouphie/getallheaders.git",
  3832. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3833. },
  3834. "dist": {
  3835. "type": "zip",
  3836. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3837. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3838. "shasum": ""
  3839. },
  3840. "require": {
  3841. "php": ">=5.6"
  3842. },
  3843. "require-dev": {
  3844. "php-coveralls/php-coveralls": "^2.1",
  3845. "phpunit/phpunit": "^5 || ^6.5"
  3846. },
  3847. "type": "library",
  3848. "autoload": {
  3849. "files": [
  3850. "src/getallheaders.php"
  3851. ]
  3852. },
  3853. "notification-url": "https://packagist.org/downloads/",
  3854. "license": [
  3855. "MIT"
  3856. ],
  3857. "authors": [
  3858. {
  3859. "name": "Ralph Khattar",
  3860. "email": "[email protected]"
  3861. }
  3862. ],
  3863. "description": "A polyfill for getallheaders.",
  3864. "support": {
  3865. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3866. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3867. },
  3868. "time": "2019-03-08T08:55:37+00:00"
  3869. },
  3870. {
  3871. "name": "ramsey/collection",
  3872. "version": "2.0.0",
  3873. "source": {
  3874. "type": "git",
  3875. "url": "https://github.com/ramsey/collection.git",
  3876. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  3877. },
  3878. "dist": {
  3879. "type": "zip",
  3880. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3881. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3882. "shasum": ""
  3883. },
  3884. "require": {
  3885. "php": "^8.1"
  3886. },
  3887. "require-dev": {
  3888. "captainhook/plugin-composer": "^5.3",
  3889. "ergebnis/composer-normalize": "^2.28.3",
  3890. "fakerphp/faker": "^1.21",
  3891. "hamcrest/hamcrest-php": "^2.0",
  3892. "jangregor/phpstan-prophecy": "^1.0",
  3893. "mockery/mockery": "^1.5",
  3894. "php-parallel-lint/php-console-highlighter": "^1.0",
  3895. "php-parallel-lint/php-parallel-lint": "^1.3",
  3896. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  3897. "phpspec/prophecy-phpunit": "^2.0",
  3898. "phpstan/extension-installer": "^1.2",
  3899. "phpstan/phpstan": "^1.9",
  3900. "phpstan/phpstan-mockery": "^1.1",
  3901. "phpstan/phpstan-phpunit": "^1.3",
  3902. "phpunit/phpunit": "^9.5",
  3903. "psalm/plugin-mockery": "^1.1",
  3904. "psalm/plugin-phpunit": "^0.18.4",
  3905. "ramsey/coding-standard": "^2.0.3",
  3906. "ramsey/conventional-commits": "^1.3",
  3907. "vimeo/psalm": "^5.4"
  3908. },
  3909. "type": "library",
  3910. "extra": {
  3911. "captainhook": {
  3912. "force-install": true
  3913. },
  3914. "ramsey/conventional-commits": {
  3915. "configFile": "conventional-commits.json"
  3916. }
  3917. },
  3918. "autoload": {
  3919. "psr-4": {
  3920. "Ramsey\\Collection\\": "src/"
  3921. }
  3922. },
  3923. "notification-url": "https://packagist.org/downloads/",
  3924. "license": [
  3925. "MIT"
  3926. ],
  3927. "authors": [
  3928. {
  3929. "name": "Ben Ramsey",
  3930. "email": "[email protected]",
  3931. "homepage": "https://benramsey.com"
  3932. }
  3933. ],
  3934. "description": "A PHP library for representing and manipulating collections.",
  3935. "keywords": [
  3936. "array",
  3937. "collection",
  3938. "hash",
  3939. "map",
  3940. "queue",
  3941. "set"
  3942. ],
  3943. "support": {
  3944. "issues": "https://github.com/ramsey/collection/issues",
  3945. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  3946. },
  3947. "funding": [
  3948. {
  3949. "url": "https://github.com/ramsey",
  3950. "type": "github"
  3951. },
  3952. {
  3953. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  3954. "type": "tidelift"
  3955. }
  3956. ],
  3957. "time": "2022-12-31T21:50:55+00:00"
  3958. },
  3959. {
  3960. "name": "ramsey/uuid",
  3961. "version": "4.7.4",
  3962. "source": {
  3963. "type": "git",
  3964. "url": "https://github.com/ramsey/uuid.git",
  3965. "reference": "60a4c63ab724854332900504274f6150ff26d286"
  3966. },
  3967. "dist": {
  3968. "type": "zip",
  3969. "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
  3970. "reference": "60a4c63ab724854332900504274f6150ff26d286",
  3971. "shasum": ""
  3972. },
  3973. "require": {
  3974. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  3975. "ext-json": "*",
  3976. "php": "^8.0",
  3977. "ramsey/collection": "^1.2 || ^2.0"
  3978. },
  3979. "replace": {
  3980. "rhumsaa/uuid": "self.version"
  3981. },
  3982. "require-dev": {
  3983. "captainhook/captainhook": "^5.10",
  3984. "captainhook/plugin-composer": "^5.3",
  3985. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3986. "doctrine/annotations": "^1.8",
  3987. "ergebnis/composer-normalize": "^2.15",
  3988. "mockery/mockery": "^1.3",
  3989. "paragonie/random-lib": "^2",
  3990. "php-mock/php-mock": "^2.2",
  3991. "php-mock/php-mock-mockery": "^1.3",
  3992. "php-parallel-lint/php-parallel-lint": "^1.1",
  3993. "phpbench/phpbench": "^1.0",
  3994. "phpstan/extension-installer": "^1.1",
  3995. "phpstan/phpstan": "^1.8",
  3996. "phpstan/phpstan-mockery": "^1.1",
  3997. "phpstan/phpstan-phpunit": "^1.1",
  3998. "phpunit/phpunit": "^8.5 || ^9",
  3999. "ramsey/composer-repl": "^1.4",
  4000. "slevomat/coding-standard": "^8.4",
  4001. "squizlabs/php_codesniffer": "^3.5",
  4002. "vimeo/psalm": "^4.9"
  4003. },
  4004. "suggest": {
  4005. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4006. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4007. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4008. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4009. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4010. },
  4011. "type": "library",
  4012. "extra": {
  4013. "captainhook": {
  4014. "force-install": true
  4015. }
  4016. },
  4017. "autoload": {
  4018. "files": [
  4019. "src/functions.php"
  4020. ],
  4021. "psr-4": {
  4022. "Ramsey\\Uuid\\": "src/"
  4023. }
  4024. },
  4025. "notification-url": "https://packagist.org/downloads/",
  4026. "license": [
  4027. "MIT"
  4028. ],
  4029. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4030. "keywords": [
  4031. "guid",
  4032. "identifier",
  4033. "uuid"
  4034. ],
  4035. "support": {
  4036. "issues": "https://github.com/ramsey/uuid/issues",
  4037. "source": "https://github.com/ramsey/uuid/tree/4.7.4"
  4038. },
  4039. "funding": [
  4040. {
  4041. "url": "https://github.com/ramsey",
  4042. "type": "github"
  4043. },
  4044. {
  4045. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4046. "type": "tidelift"
  4047. }
  4048. ],
  4049. "time": "2023-04-15T23:01:58+00:00"
  4050. },
  4051. {
  4052. "name": "rmccue/requests",
  4053. "version": "v1.8.1",
  4054. "source": {
  4055. "type": "git",
  4056. "url": "https://github.com/WordPress/Requests.git",
  4057. "reference": "82e6936366eac3af4d836c18b9d8c31028fe4cd5"
  4058. },
  4059. "dist": {
  4060. "type": "zip",
  4061. "url": "https://api.github.com/repos/WordPress/Requests/zipball/82e6936366eac3af4d836c18b9d8c31028fe4cd5",
  4062. "reference": "82e6936366eac3af4d836c18b9d8c31028fe4cd5",
  4063. "shasum": ""
  4064. },
  4065. "require": {
  4066. "php": ">=5.2"
  4067. },
  4068. "require-dev": {
  4069. "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
  4070. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  4071. "php-parallel-lint/php-parallel-lint": "^1.3",
  4072. "phpcompatibility/php-compatibility": "^9.0",
  4073. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5",
  4074. "requests/test-server": "dev-master",
  4075. "squizlabs/php_codesniffer": "^3.5",
  4076. "wp-coding-standards/wpcs": "^2.0"
  4077. },
  4078. "type": "library",
  4079. "autoload": {
  4080. "psr-0": {
  4081. "Requests": "library/"
  4082. }
  4083. },
  4084. "notification-url": "https://packagist.org/downloads/",
  4085. "license": [
  4086. "ISC"
  4087. ],
  4088. "authors": [
  4089. {
  4090. "name": "Ryan McCue",
  4091. "homepage": "http://ryanmccue.info"
  4092. }
  4093. ],
  4094. "description": "A HTTP library written in PHP, for human beings.",
  4095. "homepage": "http://github.com/WordPress/Requests",
  4096. "keywords": [
  4097. "curl",
  4098. "fsockopen",
  4099. "http",
  4100. "idna",
  4101. "ipv6",
  4102. "iri",
  4103. "sockets"
  4104. ],
  4105. "support": {
  4106. "issues": "https://github.com/WordPress/Requests/issues",
  4107. "source": "https://github.com/WordPress/Requests/tree/v1.8.1"
  4108. },
  4109. "time": "2021-06-04T09:56:25+00:00"
  4110. },
  4111. {
  4112. "name": "sendgrid/php-http-client",
  4113. "version": "3.14.4",
  4114. "source": {
  4115. "type": "git",
  4116. "url": "https://github.com/sendgrid/php-http-client.git",
  4117. "reference": "6d589564522be290c7d7c18e51bcd8b03aeaf0b6"
  4118. },
  4119. "dist": {
  4120. "type": "zip",
  4121. "url": "https://api.github.com/repos/sendgrid/php-http-client/zipball/6d589564522be290c7d7c18e51bcd8b03aeaf0b6",
  4122. "reference": "6d589564522be290c7d7c18e51bcd8b03aeaf0b6",
  4123. "shasum": ""
  4124. },
  4125. "require": {
  4126. "ext-curl": "*",
  4127. "ext-json": "*",
  4128. "ext-mbstring": "*",
  4129. "php": ">=5.6"
  4130. },
  4131. "require-dev": {
  4132. "friendsofphp/php-cs-fixer": "^2.16",
  4133. "phpunit/phpunit": "^5.7 || ^6.5",
  4134. "sebastian/version": "^1.0.6",
  4135. "squizlabs/php_codesniffer": "~2.0"
  4136. },
  4137. "suggest": {
  4138. "composer/ca-bundle": "Including this library will ensure that a valid CA bundle is available for secure connections"
  4139. },
  4140. "type": "library",
  4141. "autoload": {
  4142. "psr-4": {
  4143. "SendGrid\\": "lib/"
  4144. }
  4145. },
  4146. "notification-url": "https://packagist.org/downloads/",
  4147. "license": [
  4148. "MIT"
  4149. ],
  4150. "authors": [
  4151. {
  4152. "name": "Matt Bernier",
  4153. "email": "[email protected]"
  4154. },
  4155. {
  4156. "name": "Elmer Thomas",
  4157. "email": "[email protected]"
  4158. }
  4159. ],
  4160. "description": "HTTP REST client, simplified for PHP",
  4161. "homepage": "http://github.com/sendgrid/php-http-client",
  4162. "keywords": [
  4163. "api",
  4164. "fluent",
  4165. "http",
  4166. "rest",
  4167. "sendgrid"
  4168. ],
  4169. "support": {
  4170. "issues": "https://github.com/sendgrid/php-http-client/issues",
  4171. "source": "https://github.com/sendgrid/php-http-client/tree/3.14.4"
  4172. },
  4173. "time": "2022-03-09T20:21:55+00:00"
  4174. },
  4175. {
  4176. "name": "sendgrid/sendgrid",
  4177. "version": "8.0.1",
  4178. "source": {
  4179. "type": "git",
  4180. "url": "https://github.com/sendgrid/sendgrid-php.git",
  4181. "reference": "285381257100b73aa50d8d70f0bcfb1f48b63747"
  4182. },
  4183. "dist": {
  4184. "type": "zip",
  4185. "url": "https://api.github.com/repos/sendgrid/sendgrid-php/zipball/285381257100b73aa50d8d70f0bcfb1f48b63747",
  4186. "reference": "285381257100b73aa50d8d70f0bcfb1f48b63747",
  4187. "shasum": ""
  4188. },
  4189. "require": {
  4190. "ext-curl": "*",
  4191. "ext-json": "*",
  4192. "ext-mbstring": "*",
  4193. "ext-openssl": "*",
  4194. "php": ">=7.3",
  4195. "sendgrid/php-http-client": "~3.10",
  4196. "starkbank/ecdsa": "0.*"
  4197. },
  4198. "replace": {
  4199. "sendgrid/sendgrid-php": "*"
  4200. },
  4201. "require-dev": {
  4202. "phpstan/phpstan": "^1.5",
  4203. "phpunit/phpunit": "^9",
  4204. "squizlabs/php_codesniffer": "3.*",
  4205. "swaggest/json-diff": "^3.4"
  4206. },
  4207. "type": "library",
  4208. "autoload": {
  4209. "psr-4": {
  4210. "SendGrid\\Mail\\": "lib/mail/",
  4211. "SendGrid\\Stats\\": "lib/stats/",
  4212. "SendGrid\\Helper\\": "lib/helper/",
  4213. "SendGrid\\Contacts\\": "lib/contacts/",
  4214. "SendGrid\\EventWebhook\\": "lib/eventwebhook/"
  4215. },
  4216. "classmap": [
  4217. "lib/BaseSendGridClientInterface.php",
  4218. "lib/SendGrid.php",
  4219. "lib/TwilioEmail.php"
  4220. ]
  4221. },
  4222. "notification-url": "https://packagist.org/downloads/",
  4223. "license": [
  4224. "MIT"
  4225. ],
  4226. "description": "This library allows you to quickly and easily send emails through Twilio SendGrid using PHP.",
  4227. "homepage": "http://github.com/sendgrid/sendgrid-php",
  4228. "keywords": [
  4229. "email",
  4230. "grid",
  4231. "send",
  4232. "sendgrid",
  4233. "twilio sendgrid"
  4234. ],
  4235. "support": {
  4236. "source": "https://github.com/sendgrid/sendgrid-php/tree/8.0.1"
  4237. },
  4238. "time": "2022-08-10T18:37:45+00:00"
  4239. },
  4240. {
  4241. "name": "sentry/sdk",
  4242. "version": "3.4.0",
  4243. "source": {
  4244. "type": "git",
  4245. "url": "https://github.com/getsentry/sentry-php-sdk.git",
  4246. "reference": "7f1e04a5380a91e41a1a68c363ec19f88619a870"
  4247. },
  4248. "dist": {
  4249. "type": "zip",
  4250. "url": "https://api.github.com/repos/getsentry/sentry-php-sdk/zipball/7f1e04a5380a91e41a1a68c363ec19f88619a870",
  4251. "reference": "7f1e04a5380a91e41a1a68c363ec19f88619a870",
  4252. "shasum": ""
  4253. },
  4254. "require": {
  4255. "http-interop/http-factory-guzzle": "^1.0",
  4256. "sentry/sentry": "^3.18",
  4257. "symfony/http-client": "^4.3|^5.0|^6.0"
  4258. },
  4259. "type": "metapackage",
  4260. "notification-url": "https://packagist.org/downloads/",
  4261. "license": [
  4262. "MIT"
  4263. ],
  4264. "authors": [
  4265. {
  4266. "name": "Sentry",
  4267. "email": "[email protected]"
  4268. }
  4269. ],
  4270. "description": "This is a metapackage shipping sentry/sentry with a recommended HTTP client.",
  4271. "homepage": "http://sentry.io",
  4272. "keywords": [
  4273. "crash-reporting",
  4274. "crash-reports",
  4275. "error-handler",
  4276. "error-monitoring",
  4277. "log",
  4278. "logging",
  4279. "sentry"
  4280. ],
  4281. "support": {
  4282. "issues": "https://github.com/getsentry/sentry-php-sdk/issues",
  4283. "source": "https://github.com/getsentry/sentry-php-sdk/tree/3.4.0"
  4284. },
  4285. "funding": [
  4286. {
  4287. "url": "https://sentry.io/",
  4288. "type": "custom"
  4289. },
  4290. {
  4291. "url": "https://sentry.io/pricing/",
  4292. "type": "custom"
  4293. }
  4294. ],
  4295. "time": "2023-05-22T16:02:39+00:00"
  4296. },
  4297. {
  4298. "name": "sentry/sentry",
  4299. "version": "3.18.2",
  4300. "source": {
  4301. "type": "git",
  4302. "url": "https://github.com/getsentry/sentry-php.git",
  4303. "reference": "c634615c09a69bfdc3bb5f6ffeee78db3711167c"
  4304. },
  4305. "dist": {
  4306. "type": "zip",
  4307. "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/c634615c09a69bfdc3bb5f6ffeee78db3711167c",
  4308. "reference": "c634615c09a69bfdc3bb5f6ffeee78db3711167c",
  4309. "shasum": ""
  4310. },
  4311. "require": {
  4312. "ext-json": "*",
  4313. "ext-mbstring": "*",
  4314. "guzzlehttp/promises": "^1.4",
  4315. "jean85/pretty-package-versions": "^1.5|^2.0.4",
  4316. "php": "^7.2|^8.0",
  4317. "php-http/async-client-implementation": "^1.0",
  4318. "php-http/client-common": "^1.5|^2.0",
  4319. "php-http/discovery": "^1.15",
  4320. "php-http/httplug": "^1.1|^2.0",
  4321. "php-http/message": "^1.5",
  4322. "php-http/message-factory": "^1.1",
  4323. "psr/http-factory": "^1.0",
  4324. "psr/http-factory-implementation": "^1.0",
  4325. "psr/log": "^1.0|^2.0|^3.0",
  4326. "symfony/options-resolver": "^3.4.43|^4.4.30|^5.0.11|^6.0",
  4327. "symfony/polyfill-php80": "^1.17"
  4328. },
  4329. "conflict": {
  4330. "php-http/client-common": "1.8.0",
  4331. "raven/raven": "*"
  4332. },
  4333. "require-dev": {
  4334. "friendsofphp/php-cs-fixer": "^2.19|3.4.*",
  4335. "guzzlehttp/psr7": "^1.8.4|^2.1.1",
  4336. "http-interop/http-factory-guzzle": "^1.0",
  4337. "monolog/monolog": "^1.6|^2.0|^3.0",
  4338. "nikic/php-parser": "^4.10.3",
  4339. "php-http/mock-client": "^1.3",
  4340. "phpbench/phpbench": "^1.0",
  4341. "phpstan/extension-installer": "^1.0",
  4342. "phpstan/phpstan": "^1.3",
  4343. "phpstan/phpstan-phpunit": "^1.0",
  4344. "phpunit/phpunit": "^8.5.14|^9.4",
  4345. "symfony/phpunit-bridge": "^5.2|^6.0",
  4346. "vimeo/psalm": "^4.17"
  4347. },
  4348. "suggest": {
  4349. "monolog/monolog": "Allow sending log messages to Sentry by using the included Monolog handler."
  4350. },
  4351. "type": "library",
  4352. "extra": {
  4353. "branch-alias": {
  4354. "dev-master": "3.13.x-dev"
  4355. }
  4356. },
  4357. "autoload": {
  4358. "files": [
  4359. "src/functions.php"
  4360. ],
  4361. "psr-4": {
  4362. "Sentry\\": "src/"
  4363. }
  4364. },
  4365. "notification-url": "https://packagist.org/downloads/",
  4366. "license": [
  4367. "MIT"
  4368. ],
  4369. "authors": [
  4370. {
  4371. "name": "Sentry",
  4372. "email": "[email protected]"
  4373. }
  4374. ],
  4375. "description": "A PHP SDK for Sentry (http://sentry.io)",
  4376. "homepage": "http://sentry.io",
  4377. "keywords": [
  4378. "crash-reporting",
  4379. "crash-reports",
  4380. "error-handler",
  4381. "error-monitoring",
  4382. "log",
  4383. "logging",
  4384. "sentry"
  4385. ],
  4386. "support": {
  4387. "issues": "https://github.com/getsentry/sentry-php/issues",
  4388. "source": "https://github.com/getsentry/sentry-php/tree/3.18.2"
  4389. },
  4390. "funding": [
  4391. {
  4392. "url": "https://sentry.io/",
  4393. "type": "custom"
  4394. },
  4395. {
  4396. "url": "https://sentry.io/pricing/",
  4397. "type": "custom"
  4398. }
  4399. ],
  4400. "time": "2023-05-17T10:56:54+00:00"
  4401. },
  4402. {
  4403. "name": "slim/http",
  4404. "version": "1.3",
  4405. "source": {
  4406. "type": "git",
  4407. "url": "https://github.com/slimphp/Slim-Http.git",
  4408. "reference": "9542edbe469b7c0f3084c2467efea972387f5beb"
  4409. },
  4410. "dist": {
  4411. "type": "zip",
  4412. "url": "https://api.github.com/repos/slimphp/Slim-Http/zipball/9542edbe469b7c0f3084c2467efea972387f5beb",
  4413. "reference": "9542edbe469b7c0f3084c2467efea972387f5beb",
  4414. "shasum": ""
  4415. },
  4416. "require": {
  4417. "ext-fileinfo": "*",
  4418. "ext-json": "*",
  4419. "ext-libxml": "*",
  4420. "ext-simplexml": "*",
  4421. "php": "^7.4 || ^8.0",
  4422. "psr/http-factory": "^1.0",
  4423. "psr/http-message": "^1.0"
  4424. },
  4425. "require-dev": {
  4426. "adriansuter/php-autoload-override": "^1.3",
  4427. "laminas/laminas-diactoros": "^2.17",
  4428. "nyholm/psr7": "^1.5",
  4429. "php-http/psr7-integration-tests": "dev-master",
  4430. "phpstan/phpstan": "^1.8",
  4431. "phpunit/phpunit": "^9.5",
  4432. "squizlabs/php_codesniffer": "^3.7"
  4433. },
  4434. "type": "library",
  4435. "autoload": {
  4436. "psr-4": {
  4437. "Slim\\Http\\": "src/"
  4438. }
  4439. },
  4440. "notification-url": "https://packagist.org/downloads/",
  4441. "license": [
  4442. "MIT"
  4443. ],
  4444. "authors": [
  4445. {
  4446. "name": "Josh Lockhart",
  4447. "email": "[email protected]",
  4448. "homepage": "http://joshlockhart.com"
  4449. },
  4450. {
  4451. "name": "Andrew Smith",
  4452. "email": "[email protected]",
  4453. "homepage": "http://silentworks.co.uk"
  4454. },
  4455. {
  4456. "name": "Rob Allen",
  4457. "email": "[email protected]",
  4458. "homepage": "http://akrabat.com"
  4459. },
  4460. {
  4461. "name": "Pierre Berube",
  4462. "email": "[email protected]",
  4463. "homepage": "http://www.lgse.com"
  4464. }
  4465. ],
  4466. "description": "Slim PSR-7 Object Decorators",
  4467. "homepage": "http://slimframework.com",
  4468. "keywords": [
  4469. "http",
  4470. "psr-7",
  4471. "psr7"
  4472. ],
  4473. "support": {
  4474. "issues": "https://github.com/slimphp/Slim-Http/issues",
  4475. "source": "https://github.com/slimphp/Slim-Http/tree/1.3"
  4476. },
  4477. "time": "2022-09-14T15:45:07+00:00"
  4478. },
  4479. {
  4480. "name": "slim/slim",
  4481. "version": "4.11.0",
  4482. "source": {
  4483. "type": "git",
  4484. "url": "https://github.com/slimphp/Slim.git",
  4485. "reference": "b0f4ca393ea037be9ac7292ba7d0a34d18bac0c7"
  4486. },
  4487. "dist": {
  4488. "type": "zip",
  4489. "url": "https://api.github.com/repos/slimphp/Slim/zipball/b0f4ca393ea037be9ac7292ba7d0a34d18bac0c7",
  4490. "reference": "b0f4ca393ea037be9ac7292ba7d0a34d18bac0c7",
  4491. "shasum": ""
  4492. },
  4493. "require": {
  4494. "ext-json": "*",
  4495. "nikic/fast-route": "^1.3",
  4496. "php": "^7.4 || ^8.0",
  4497. "psr/container": "^1.0 || ^2.0",
  4498. "psr/http-factory": "^1.0",
  4499. "psr/http-message": "^1.0",
  4500. "psr/http-server-handler": "^1.0",
  4501. "psr/http-server-middleware": "^1.0",
  4502. "psr/log": "^1.1 || ^2.0 || ^3.0"
  4503. },
  4504. "require-dev": {
  4505. "adriansuter/php-autoload-override": "^1.3",
  4506. "ext-simplexml": "*",
  4507. "guzzlehttp/psr7": "^2.4",
  4508. "httpsoft/http-message": "^1.0",
  4509. "httpsoft/http-server-request": "^1.0",
  4510. "laminas/laminas-diactoros": "^2.17",
  4511. "nyholm/psr7": "^1.5",
  4512. "nyholm/psr7-server": "^1.0",
  4513. "phpspec/prophecy": "^1.15",
  4514. "phpspec/prophecy-phpunit": "^2.0",
  4515. "phpstan/phpstan": "^1.8",
  4516. "phpunit/phpunit": "^9.5",
  4517. "slim/http": "^1.2",
  4518. "slim/psr7": "^1.5",
  4519. "squizlabs/php_codesniffer": "^3.7"
  4520. },
  4521. "suggest": {
  4522. "ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",
  4523. "ext-xml": "Needed to support XML format in BodyParsingMiddleware",
  4524. "php-di/php-di": "PHP-DI is the recommended container library to be used with Slim",
  4525. "slim/psr7": "Slim PSR-7 implementation. See https://www.slimframework.com/docs/v4/start/installation.html for more information."
  4526. },
  4527. "type": "library",
  4528. "autoload": {
  4529. "psr-4": {
  4530. "Slim\\": "Slim"
  4531. }
  4532. },
  4533. "notification-url": "https://packagist.org/downloads/",
  4534. "license": [
  4535. "MIT"
  4536. ],
  4537. "authors": [
  4538. {
  4539. "name": "Josh Lockhart",
  4540. "email": "[email protected]",
  4541. "homepage": "https://joshlockhart.com"
  4542. },
  4543. {
  4544. "name": "Andrew Smith",
  4545. "email": "[email protected]",
  4546. "homepage": "http://silentworks.co.uk"
  4547. },
  4548. {
  4549. "name": "Rob Allen",
  4550. "email": "[email protected]",
  4551. "homepage": "http://akrabat.com"
  4552. },
  4553. {
  4554. "name": "Pierre Berube",
  4555. "email": "[email protected]",
  4556. "homepage": "http://www.lgse.com"
  4557. },
  4558. {
  4559. "name": "Gabriel Manricks",
  4560. "email": "[email protected]",
  4561. "homepage": "http://gabrielmanricks.com"
  4562. }
  4563. ],
  4564. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  4565. "homepage": "https://www.slimframework.com",
  4566. "keywords": [
  4567. "api",
  4568. "framework",
  4569. "micro",
  4570. "router"
  4571. ],
  4572. "support": {
  4573. "docs": "https://www.slimframework.com/docs/v4/",
  4574. "forum": "https://discourse.slimframework.com/",
  4575. "irc": "irc://irc.freenode.net:6667/slimphp",
  4576. "issues": "https://github.com/slimphp/Slim/issues",
  4577. "rss": "https://www.slimframework.com/blog/feed.rss",
  4578. "slack": "https://slimphp.slack.com/",
  4579. "source": "https://github.com/slimphp/Slim",
  4580. "wiki": "https://github.com/slimphp/Slim/wiki"
  4581. },
  4582. "funding": [
  4583. {
  4584. "url": "https://opencollective.com/slimphp",
  4585. "type": "open_collective"
  4586. },
  4587. {
  4588. "url": "https://tidelift.com/funding/github/packagist/slim/slim",
  4589. "type": "tidelift"
  4590. }
  4591. ],
  4592. "time": "2022-11-06T16:33:39+00:00"
  4593. },
  4594. {
  4595. "name": "smarty/smarty",
  4596. "version": "v4.3.1",
  4597. "source": {
  4598. "type": "git",
  4599. "url": "https://github.com/smarty-php/smarty.git",
  4600. "reference": "e28cb0915b4e3749bf57d4ebae2984e25395cfe5"
  4601. },
  4602. "dist": {
  4603. "type": "zip",
  4604. "url": "https://api.github.com/repos/smarty-php/smarty/zipball/e28cb0915b4e3749bf57d4ebae2984e25395cfe5",
  4605. "reference": "e28cb0915b4e3749bf57d4ebae2984e25395cfe5",
  4606. "shasum": ""
  4607. },
  4608. "require": {
  4609. "php": "^7.1 || ^8.0"
  4610. },
  4611. "require-dev": {
  4612. "phpunit/phpunit": "^8.5 || ^7.5",
  4613. "smarty/smarty-lexer": "^3.1"
  4614. },
  4615. "type": "library",
  4616. "extra": {
  4617. "branch-alias": {
  4618. "dev-master": "4.0.x-dev"
  4619. }
  4620. },
  4621. "autoload": {
  4622. "classmap": [
  4623. "libs/"
  4624. ]
  4625. },
  4626. "notification-url": "https://packagist.org/downloads/",
  4627. "license": [
  4628. "LGPL-3.0"
  4629. ],
  4630. "authors": [
  4631. {
  4632. "name": "Monte Ohrt",
  4633. "email": "[email protected]"
  4634. },
  4635. {
  4636. "name": "Uwe Tews",
  4637. "email": "[email protected]"
  4638. },
  4639. {
  4640. "name": "Rodney Rehm",
  4641. "email": "[email protected]"
  4642. },
  4643. {
  4644. "name": "Simon Wisselink",
  4645. "homepage": "https://www.iwink.nl/"
  4646. }
  4647. ],
  4648. "description": "Smarty - the compiling PHP template engine",
  4649. "homepage": "https://smarty-php.github.io/smarty/",
  4650. "keywords": [
  4651. "templating"
  4652. ],
  4653. "support": {
  4654. "forum": "https://github.com/smarty-php/smarty/discussions",
  4655. "issues": "https://github.com/smarty-php/smarty/issues",
  4656. "source": "https://github.com/smarty-php/smarty/tree/v4.3.1"
  4657. },
  4658. "time": "2023-03-28T19:47:03+00:00"
  4659. },
  4660. {
  4661. "name": "srmklive/paypal",
  4662. "version": "3.0.21",
  4663. "source": {
  4664. "type": "git",
  4665. "url": "https://github.com/srmklive/laravel-paypal.git",
  4666. "reference": "3a55d463f8d5935627c4eee15da702811a03c5ea"
  4667. },
  4668. "dist": {
  4669. "type": "zip",
  4670. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/3a55d463f8d5935627c4eee15da702811a03c5ea",
  4671. "reference": "3a55d463f8d5935627c4eee15da702811a03c5ea",
  4672. "shasum": ""
  4673. },
  4674. "require": {
  4675. "ext-curl": "*",
  4676. "guzzlehttp/guzzle": "~7.0",
  4677. "illuminate/support": "~6.0|~7.0|~8.0|~9.0|^10.0",
  4678. "nesbot/carbon": "~2.0",
  4679. "php": ">=7.2|^8.0"
  4680. },
  4681. "require-dev": {
  4682. "phpunit/phpunit": "^8.0|^9.0|^10.0",
  4683. "symfony/var-dumper": "~5.0"
  4684. },
  4685. "type": "library",
  4686. "extra": {
  4687. "laravel": {
  4688. "providers": [
  4689. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4690. ],
  4691. "aliases": {
  4692. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4693. }
  4694. }
  4695. },
  4696. "autoload": {
  4697. "psr-4": {
  4698. "Srmklive\\PayPal\\": "src/"
  4699. }
  4700. },
  4701. "notification-url": "https://packagist.org/downloads/",
  4702. "license": [
  4703. "MIT"
  4704. ],
  4705. "authors": [
  4706. {
  4707. "name": "Raza Mehdi",
  4708. "email": "[email protected]"
  4709. }
  4710. ],
  4711. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4712. "keywords": [
  4713. "http",
  4714. "laravel paypal",
  4715. "paypal",
  4716. "rest",
  4717. "web service"
  4718. ],
  4719. "support": {
  4720. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4721. "source": "https://github.com/srmklive/laravel-paypal/tree/3.0.21"
  4722. },
  4723. "time": "2023-04-26T16:27:35+00:00"
  4724. },
  4725. {
  4726. "name": "starkbank/ecdsa",
  4727. "version": "0.0.5",
  4728. "source": {
  4729. "type": "git",
  4730. "url": "https://github.com/starkbank/ecdsa-php.git",
  4731. "reference": "484bedac47bac4012dc73df91da221f0a66845cb"
  4732. },
  4733. "dist": {
  4734. "type": "zip",
  4735. "url": "https://api.github.com/repos/starkbank/ecdsa-php/zipball/484bedac47bac4012dc73df91da221f0a66845cb",
  4736. "reference": "484bedac47bac4012dc73df91da221f0a66845cb",
  4737. "shasum": ""
  4738. },
  4739. "require": {
  4740. "php": ">=5.5"
  4741. },
  4742. "type": "library",
  4743. "autoload": {
  4744. "files": [
  4745. "src/ellipticcurve.php"
  4746. ]
  4747. },
  4748. "notification-url": "https://packagist.org/downloads/",
  4749. "license": [
  4750. "MIT"
  4751. ],
  4752. "authors": [
  4753. {
  4754. "name": "StarkBank",
  4755. "email": "[email protected]",
  4756. "homepage": "https://starkbank.com",
  4757. "role": "Developer"
  4758. }
  4759. ],
  4760. "description": "fast openSSL-compatible implementation of the Elliptic Curve Digital Signature Algorithm (ECDSA)",
  4761. "homepage": "https://github.com/starkbank/ecdsa-php",
  4762. "support": {
  4763. "issues": "https://github.com/starkbank/ecdsa-php/issues",
  4764. "source": "https://github.com/starkbank/ecdsa-php/tree/v0.0.5"
  4765. },
  4766. "time": "2021-06-06T22:24:49+00:00"
  4767. },
  4768. {
  4769. "name": "stripe/stripe-php",
  4770. "version": "v10.15.0",
  4771. "source": {
  4772. "type": "git",
  4773. "url": "https://github.com/stripe/stripe-php.git",
  4774. "reference": "d0e48cc85e1aa54cbff3644d1979a4a4c3fdd7bf"
  4775. },
  4776. "dist": {
  4777. "type": "zip",
  4778. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/d0e48cc85e1aa54cbff3644d1979a4a4c3fdd7bf",
  4779. "reference": "d0e48cc85e1aa54cbff3644d1979a4a4c3fdd7bf",
  4780. "shasum": ""
  4781. },
  4782. "require": {
  4783. "ext-curl": "*",
  4784. "ext-json": "*",
  4785. "ext-mbstring": "*",
  4786. "php": ">=5.6.0"
  4787. },
  4788. "require-dev": {
  4789. "friendsofphp/php-cs-fixer": "3.5.0",
  4790. "php-coveralls/php-coveralls": "^2.5",
  4791. "phpstan/phpstan": "^1.2",
  4792. "phpunit/phpunit": "^5.7 || ^9.0",
  4793. "squizlabs/php_codesniffer": "^3.3"
  4794. },
  4795. "type": "library",
  4796. "extra": {
  4797. "branch-alias": {
  4798. "dev-master": "2.0-dev"
  4799. }
  4800. },
  4801. "autoload": {
  4802. "psr-4": {
  4803. "Stripe\\": "lib/"
  4804. }
  4805. },
  4806. "notification-url": "https://packagist.org/downloads/",
  4807. "license": [
  4808. "MIT"
  4809. ],
  4810. "authors": [
  4811. {
  4812. "name": "Stripe and contributors",
  4813. "homepage": "https://github.com/stripe/stripe-php/contributors"
  4814. }
  4815. ],
  4816. "description": "Stripe PHP Library",
  4817. "homepage": "https://stripe.com/",
  4818. "keywords": [
  4819. "api",
  4820. "payment processing",
  4821. "stripe"
  4822. ],
  4823. "support": {
  4824. "issues": "https://github.com/stripe/stripe-php/issues",
  4825. "source": "https://github.com/stripe/stripe-php/tree/v10.15.0"
  4826. },
  4827. "time": "2023-06-08T21:47:46+00:00"
  4828. },
  4829. {
  4830. "name": "symfony/console",
  4831. "version": "v6.3.0",
  4832. "source": {
  4833. "type": "git",
  4834. "url": "https://github.com/symfony/console.git",
  4835. "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7"
  4836. },
  4837. "dist": {
  4838. "type": "zip",
  4839. "url": "https://api.github.com/repos/symfony/console/zipball/8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7",
  4840. "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7",
  4841. "shasum": ""
  4842. },
  4843. "require": {
  4844. "php": ">=8.1",
  4845. "symfony/deprecation-contracts": "^2.5|^3",
  4846. "symfony/polyfill-mbstring": "~1.0",
  4847. "symfony/service-contracts": "^2.5|^3",
  4848. "symfony/string": "^5.4|^6.0"
  4849. },
  4850. "conflict": {
  4851. "symfony/dependency-injection": "<5.4",
  4852. "symfony/dotenv": "<5.4",
  4853. "symfony/event-dispatcher": "<5.4",
  4854. "symfony/lock": "<5.4",
  4855. "symfony/process": "<5.4"
  4856. },
  4857. "provide": {
  4858. "psr/log-implementation": "1.0|2.0|3.0"
  4859. },
  4860. "require-dev": {
  4861. "psr/log": "^1|^2|^3",
  4862. "symfony/config": "^5.4|^6.0",
  4863. "symfony/dependency-injection": "^5.4|^6.0",
  4864. "symfony/event-dispatcher": "^5.4|^6.0",
  4865. "symfony/lock": "^5.4|^6.0",
  4866. "symfony/process": "^5.4|^6.0",
  4867. "symfony/var-dumper": "^5.4|^6.0"
  4868. },
  4869. "type": "library",
  4870. "autoload": {
  4871. "psr-4": {
  4872. "Symfony\\Component\\Console\\": ""
  4873. },
  4874. "exclude-from-classmap": [
  4875. "/Tests/"
  4876. ]
  4877. },
  4878. "notification-url": "https://packagist.org/downloads/",
  4879. "license": [
  4880. "MIT"
  4881. ],
  4882. "authors": [
  4883. {
  4884. "name": "Fabien Potencier",
  4885. "email": "[email protected]"
  4886. },
  4887. {
  4888. "name": "Symfony Community",
  4889. "homepage": "https://symfony.com/contributors"
  4890. }
  4891. ],
  4892. "description": "Eases the creation of beautiful and testable command line interfaces",
  4893. "homepage": "https://symfony.com",
  4894. "keywords": [
  4895. "cli",
  4896. "command-line",
  4897. "console",
  4898. "terminal"
  4899. ],
  4900. "support": {
  4901. "source": "https://github.com/symfony/console/tree/v6.3.0"
  4902. },
  4903. "funding": [
  4904. {
  4905. "url": "https://symfony.com/sponsor",
  4906. "type": "custom"
  4907. },
  4908. {
  4909. "url": "https://github.com/fabpot",
  4910. "type": "github"
  4911. },
  4912. {
  4913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4914. "type": "tidelift"
  4915. }
  4916. ],
  4917. "time": "2023-05-29T12:49:39+00:00"
  4918. },
  4919. {
  4920. "name": "symfony/deprecation-contracts",
  4921. "version": "v3.3.0",
  4922. "source": {
  4923. "type": "git",
  4924. "url": "https://github.com/symfony/deprecation-contracts.git",
  4925. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  4926. },
  4927. "dist": {
  4928. "type": "zip",
  4929. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  4930. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  4931. "shasum": ""
  4932. },
  4933. "require": {
  4934. "php": ">=8.1"
  4935. },
  4936. "type": "library",
  4937. "extra": {
  4938. "branch-alias": {
  4939. "dev-main": "3.4-dev"
  4940. },
  4941. "thanks": {
  4942. "name": "symfony/contracts",
  4943. "url": "https://github.com/symfony/contracts"
  4944. }
  4945. },
  4946. "autoload": {
  4947. "files": [
  4948. "function.php"
  4949. ]
  4950. },
  4951. "notification-url": "https://packagist.org/downloads/",
  4952. "license": [
  4953. "MIT"
  4954. ],
  4955. "authors": [
  4956. {
  4957. "name": "Nicolas Grekas",
  4958. "email": "[email protected]"
  4959. },
  4960. {
  4961. "name": "Symfony Community",
  4962. "homepage": "https://symfony.com/contributors"
  4963. }
  4964. ],
  4965. "description": "A generic function and convention to trigger deprecation notices",
  4966. "homepage": "https://symfony.com",
  4967. "support": {
  4968. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  4969. },
  4970. "funding": [
  4971. {
  4972. "url": "https://symfony.com/sponsor",
  4973. "type": "custom"
  4974. },
  4975. {
  4976. "url": "https://github.com/fabpot",
  4977. "type": "github"
  4978. },
  4979. {
  4980. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4981. "type": "tidelift"
  4982. }
  4983. ],
  4984. "time": "2023-05-23T14:45:45+00:00"
  4985. },
  4986. {
  4987. "name": "symfony/http-client",
  4988. "version": "v6.2.10",
  4989. "source": {
  4990. "type": "git",
  4991. "url": "https://github.com/symfony/http-client.git",
  4992. "reference": "3f5545a91c8e79dedd1a06c4b04e1682c80c42f9"
  4993. },
  4994. "dist": {
  4995. "type": "zip",
  4996. "url": "https://api.github.com/repos/symfony/http-client/zipball/3f5545a91c8e79dedd1a06c4b04e1682c80c42f9",
  4997. "reference": "3f5545a91c8e79dedd1a06c4b04e1682c80c42f9",
  4998. "shasum": ""
  4999. },
  5000. "require": {
  5001. "php": ">=8.1",
  5002. "psr/log": "^1|^2|^3",
  5003. "symfony/deprecation-contracts": "^2.1|^3",
  5004. "symfony/http-client-contracts": "^3",
  5005. "symfony/service-contracts": "^1.0|^2|^3"
  5006. },
  5007. "provide": {
  5008. "php-http/async-client-implementation": "*",
  5009. "php-http/client-implementation": "*",
  5010. "psr/http-client-implementation": "1.0",
  5011. "symfony/http-client-implementation": "3.0"
  5012. },
  5013. "require-dev": {
  5014. "amphp/amp": "^2.5",
  5015. "amphp/http-client": "^4.2.1",
  5016. "amphp/http-tunnel": "^1.0",
  5017. "amphp/socket": "^1.1",
  5018. "guzzlehttp/promises": "^1.4",
  5019. "nyholm/psr7": "^1.0",
  5020. "php-http/httplug": "^1.0|^2.0",
  5021. "psr/http-client": "^1.0",
  5022. "symfony/dependency-injection": "^5.4|^6.0",
  5023. "symfony/http-kernel": "^5.4|^6.0",
  5024. "symfony/process": "^5.4|^6.0",
  5025. "symfony/stopwatch": "^5.4|^6.0"
  5026. },
  5027. "type": "library",
  5028. "autoload": {
  5029. "psr-4": {
  5030. "Symfony\\Component\\HttpClient\\": ""
  5031. },
  5032. "exclude-from-classmap": [
  5033. "/Tests/"
  5034. ]
  5035. },
  5036. "notification-url": "https://packagist.org/downloads/",
  5037. "license": [
  5038. "MIT"
  5039. ],
  5040. "authors": [
  5041. {
  5042. "name": "Nicolas Grekas",
  5043. "email": "[email protected]"
  5044. },
  5045. {
  5046. "name": "Symfony Community",
  5047. "homepage": "https://symfony.com/contributors"
  5048. }
  5049. ],
  5050. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  5051. "homepage": "https://symfony.com",
  5052. "keywords": [
  5053. "http"
  5054. ],
  5055. "support": {
  5056. "source": "https://github.com/symfony/http-client/tree/v6.2.10"
  5057. },
  5058. "funding": [
  5059. {
  5060. "url": "https://symfony.com/sponsor",
  5061. "type": "custom"
  5062. },
  5063. {
  5064. "url": "https://github.com/fabpot",
  5065. "type": "github"
  5066. },
  5067. {
  5068. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5069. "type": "tidelift"
  5070. }
  5071. ],
  5072. "time": "2023-04-20T13:12:48+00:00"
  5073. },
  5074. {
  5075. "name": "symfony/http-client-contracts",
  5076. "version": "v3.3.0",
  5077. "source": {
  5078. "type": "git",
  5079. "url": "https://github.com/symfony/http-client-contracts.git",
  5080. "reference": "3b66325d0176b4ec826bffab57c9037d759c31fb"
  5081. },
  5082. "dist": {
  5083. "type": "zip",
  5084. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/3b66325d0176b4ec826bffab57c9037d759c31fb",
  5085. "reference": "3b66325d0176b4ec826bffab57c9037d759c31fb",
  5086. "shasum": ""
  5087. },
  5088. "require": {
  5089. "php": ">=8.1"
  5090. },
  5091. "type": "library",
  5092. "extra": {
  5093. "branch-alias": {
  5094. "dev-main": "3.4-dev"
  5095. },
  5096. "thanks": {
  5097. "name": "symfony/contracts",
  5098. "url": "https://github.com/symfony/contracts"
  5099. }
  5100. },
  5101. "autoload": {
  5102. "psr-4": {
  5103. "Symfony\\Contracts\\HttpClient\\": ""
  5104. },
  5105. "exclude-from-classmap": [
  5106. "/Test/"
  5107. ]
  5108. },
  5109. "notification-url": "https://packagist.org/downloads/",
  5110. "license": [
  5111. "MIT"
  5112. ],
  5113. "authors": [
  5114. {
  5115. "name": "Nicolas Grekas",
  5116. "email": "[email protected]"
  5117. },
  5118. {
  5119. "name": "Symfony Community",
  5120. "homepage": "https://symfony.com/contributors"
  5121. }
  5122. ],
  5123. "description": "Generic abstractions related to HTTP clients",
  5124. "homepage": "https://symfony.com",
  5125. "keywords": [
  5126. "abstractions",
  5127. "contracts",
  5128. "decoupling",
  5129. "interfaces",
  5130. "interoperability",
  5131. "standards"
  5132. ],
  5133. "support": {
  5134. "source": "https://github.com/symfony/http-client-contracts/tree/v3.3.0"
  5135. },
  5136. "funding": [
  5137. {
  5138. "url": "https://symfony.com/sponsor",
  5139. "type": "custom"
  5140. },
  5141. {
  5142. "url": "https://github.com/fabpot",
  5143. "type": "github"
  5144. },
  5145. {
  5146. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5147. "type": "tidelift"
  5148. }
  5149. ],
  5150. "time": "2023-05-23T14:45:45+00:00"
  5151. },
  5152. {
  5153. "name": "symfony/http-foundation",
  5154. "version": "v6.2.10",
  5155. "source": {
  5156. "type": "git",
  5157. "url": "https://github.com/symfony/http-foundation.git",
  5158. "reference": "49adbb92bcb4e3c2943719d2756271e8b9602acc"
  5159. },
  5160. "dist": {
  5161. "type": "zip",
  5162. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/49adbb92bcb4e3c2943719d2756271e8b9602acc",
  5163. "reference": "49adbb92bcb4e3c2943719d2756271e8b9602acc",
  5164. "shasum": ""
  5165. },
  5166. "require": {
  5167. "php": ">=8.1",
  5168. "symfony/deprecation-contracts": "^2.1|^3",
  5169. "symfony/polyfill-mbstring": "~1.1"
  5170. },
  5171. "conflict": {
  5172. "symfony/cache": "<6.2"
  5173. },
  5174. "require-dev": {
  5175. "predis/predis": "~1.0",
  5176. "symfony/cache": "^5.4|^6.0",
  5177. "symfony/dependency-injection": "^5.4|^6.0",
  5178. "symfony/expression-language": "^5.4|^6.0",
  5179. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5180. "symfony/mime": "^5.4|^6.0",
  5181. "symfony/rate-limiter": "^5.2|^6.0"
  5182. },
  5183. "suggest": {
  5184. "symfony/mime": "To use the file extension guesser"
  5185. },
  5186. "type": "library",
  5187. "autoload": {
  5188. "psr-4": {
  5189. "Symfony\\Component\\HttpFoundation\\": ""
  5190. },
  5191. "exclude-from-classmap": [
  5192. "/Tests/"
  5193. ]
  5194. },
  5195. "notification-url": "https://packagist.org/downloads/",
  5196. "license": [
  5197. "MIT"
  5198. ],
  5199. "authors": [
  5200. {
  5201. "name": "Fabien Potencier",
  5202. "email": "[email protected]"
  5203. },
  5204. {
  5205. "name": "Symfony Community",
  5206. "homepage": "https://symfony.com/contributors"
  5207. }
  5208. ],
  5209. "description": "Defines an object-oriented layer for the HTTP specification",
  5210. "homepage": "https://symfony.com",
  5211. "support": {
  5212. "source": "https://github.com/symfony/http-foundation/tree/v6.2.10"
  5213. },
  5214. "funding": [
  5215. {
  5216. "url": "https://symfony.com/sponsor",
  5217. "type": "custom"
  5218. },
  5219. {
  5220. "url": "https://github.com/fabpot",
  5221. "type": "github"
  5222. },
  5223. {
  5224. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5225. "type": "tidelift"
  5226. }
  5227. ],
  5228. "time": "2023-04-18T13:46:08+00:00"
  5229. },
  5230. {
  5231. "name": "symfony/options-resolver",
  5232. "version": "v6.2.7",
  5233. "source": {
  5234. "type": "git",
  5235. "url": "https://github.com/symfony/options-resolver.git",
  5236. "reference": "aa0e85b53bbb2b4951960efd61d295907eacd629"
  5237. },
  5238. "dist": {
  5239. "type": "zip",
  5240. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/aa0e85b53bbb2b4951960efd61d295907eacd629",
  5241. "reference": "aa0e85b53bbb2b4951960efd61d295907eacd629",
  5242. "shasum": ""
  5243. },
  5244. "require": {
  5245. "php": ">=8.1",
  5246. "symfony/deprecation-contracts": "^2.1|^3"
  5247. },
  5248. "type": "library",
  5249. "autoload": {
  5250. "psr-4": {
  5251. "Symfony\\Component\\OptionsResolver\\": ""
  5252. },
  5253. "exclude-from-classmap": [
  5254. "/Tests/"
  5255. ]
  5256. },
  5257. "notification-url": "https://packagist.org/downloads/",
  5258. "license": [
  5259. "MIT"
  5260. ],
  5261. "authors": [
  5262. {
  5263. "name": "Fabien Potencier",
  5264. "email": "[email protected]"
  5265. },
  5266. {
  5267. "name": "Symfony Community",
  5268. "homepage": "https://symfony.com/contributors"
  5269. }
  5270. ],
  5271. "description": "Provides an improved replacement for the array_replace PHP function",
  5272. "homepage": "https://symfony.com",
  5273. "keywords": [
  5274. "config",
  5275. "configuration",
  5276. "options"
  5277. ],
  5278. "support": {
  5279. "source": "https://github.com/symfony/options-resolver/tree/v6.2.7"
  5280. },
  5281. "funding": [
  5282. {
  5283. "url": "https://symfony.com/sponsor",
  5284. "type": "custom"
  5285. },
  5286. {
  5287. "url": "https://github.com/fabpot",
  5288. "type": "github"
  5289. },
  5290. {
  5291. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5292. "type": "tidelift"
  5293. }
  5294. ],
  5295. "time": "2023-02-14T08:44:56+00:00"
  5296. },
  5297. {
  5298. "name": "symfony/polyfill-ctype",
  5299. "version": "v1.27.0",
  5300. "source": {
  5301. "type": "git",
  5302. "url": "https://github.com/symfony/polyfill-ctype.git",
  5303. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  5304. },
  5305. "dist": {
  5306. "type": "zip",
  5307. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  5308. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  5309. "shasum": ""
  5310. },
  5311. "require": {
  5312. "php": ">=7.1"
  5313. },
  5314. "provide": {
  5315. "ext-ctype": "*"
  5316. },
  5317. "suggest": {
  5318. "ext-ctype": "For best performance"
  5319. },
  5320. "type": "library",
  5321. "extra": {
  5322. "branch-alias": {
  5323. "dev-main": "1.27-dev"
  5324. },
  5325. "thanks": {
  5326. "name": "symfony/polyfill",
  5327. "url": "https://github.com/symfony/polyfill"
  5328. }
  5329. },
  5330. "autoload": {
  5331. "files": [
  5332. "bootstrap.php"
  5333. ],
  5334. "psr-4": {
  5335. "Symfony\\Polyfill\\Ctype\\": ""
  5336. }
  5337. },
  5338. "notification-url": "https://packagist.org/downloads/",
  5339. "license": [
  5340. "MIT"
  5341. ],
  5342. "authors": [
  5343. {
  5344. "name": "Gert de Pagter",
  5345. "email": "[email protected]"
  5346. },
  5347. {
  5348. "name": "Symfony Community",
  5349. "homepage": "https://symfony.com/contributors"
  5350. }
  5351. ],
  5352. "description": "Symfony polyfill for ctype functions",
  5353. "homepage": "https://symfony.com",
  5354. "keywords": [
  5355. "compatibility",
  5356. "ctype",
  5357. "polyfill",
  5358. "portable"
  5359. ],
  5360. "support": {
  5361. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  5362. },
  5363. "funding": [
  5364. {
  5365. "url": "https://symfony.com/sponsor",
  5366. "type": "custom"
  5367. },
  5368. {
  5369. "url": "https://github.com/fabpot",
  5370. "type": "github"
  5371. },
  5372. {
  5373. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5374. "type": "tidelift"
  5375. }
  5376. ],
  5377. "time": "2022-11-03T14:55:06+00:00"
  5378. },
  5379. {
  5380. "name": "symfony/polyfill-iconv",
  5381. "version": "v1.27.0",
  5382. "source": {
  5383. "type": "git",
  5384. "url": "https://github.com/symfony/polyfill-iconv.git",
  5385. "reference": "927013f3aac555983a5059aada98e1907d842695"
  5386. },
  5387. "dist": {
  5388. "type": "zip",
  5389. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  5390. "reference": "927013f3aac555983a5059aada98e1907d842695",
  5391. "shasum": ""
  5392. },
  5393. "require": {
  5394. "php": ">=7.1"
  5395. },
  5396. "provide": {
  5397. "ext-iconv": "*"
  5398. },
  5399. "suggest": {
  5400. "ext-iconv": "For best performance"
  5401. },
  5402. "type": "library",
  5403. "extra": {
  5404. "branch-alias": {
  5405. "dev-main": "1.27-dev"
  5406. },
  5407. "thanks": {
  5408. "name": "symfony/polyfill",
  5409. "url": "https://github.com/symfony/polyfill"
  5410. }
  5411. },
  5412. "autoload": {
  5413. "files": [
  5414. "bootstrap.php"
  5415. ],
  5416. "psr-4": {
  5417. "Symfony\\Polyfill\\Iconv\\": ""
  5418. }
  5419. },
  5420. "notification-url": "https://packagist.org/downloads/",
  5421. "license": [
  5422. "MIT"
  5423. ],
  5424. "authors": [
  5425. {
  5426. "name": "Nicolas Grekas",
  5427. "email": "[email protected]"
  5428. },
  5429. {
  5430. "name": "Symfony Community",
  5431. "homepage": "https://symfony.com/contributors"
  5432. }
  5433. ],
  5434. "description": "Symfony polyfill for the Iconv extension",
  5435. "homepage": "https://symfony.com",
  5436. "keywords": [
  5437. "compatibility",
  5438. "iconv",
  5439. "polyfill",
  5440. "portable",
  5441. "shim"
  5442. ],
  5443. "support": {
  5444. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  5445. },
  5446. "funding": [
  5447. {
  5448. "url": "https://symfony.com/sponsor",
  5449. "type": "custom"
  5450. },
  5451. {
  5452. "url": "https://github.com/fabpot",
  5453. "type": "github"
  5454. },
  5455. {
  5456. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5457. "type": "tidelift"
  5458. }
  5459. ],
  5460. "time": "2022-11-03T14:55:06+00:00"
  5461. },
  5462. {
  5463. "name": "symfony/polyfill-intl-grapheme",
  5464. "version": "v1.27.0",
  5465. "source": {
  5466. "type": "git",
  5467. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5468. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  5469. },
  5470. "dist": {
  5471. "type": "zip",
  5472. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  5473. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  5474. "shasum": ""
  5475. },
  5476. "require": {
  5477. "php": ">=7.1"
  5478. },
  5479. "suggest": {
  5480. "ext-intl": "For best performance"
  5481. },
  5482. "type": "library",
  5483. "extra": {
  5484. "branch-alias": {
  5485. "dev-main": "1.27-dev"
  5486. },
  5487. "thanks": {
  5488. "name": "symfony/polyfill",
  5489. "url": "https://github.com/symfony/polyfill"
  5490. }
  5491. },
  5492. "autoload": {
  5493. "files": [
  5494. "bootstrap.php"
  5495. ],
  5496. "psr-4": {
  5497. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5498. }
  5499. },
  5500. "notification-url": "https://packagist.org/downloads/",
  5501. "license": [
  5502. "MIT"
  5503. ],
  5504. "authors": [
  5505. {
  5506. "name": "Nicolas Grekas",
  5507. "email": "[email protected]"
  5508. },
  5509. {
  5510. "name": "Symfony Community",
  5511. "homepage": "https://symfony.com/contributors"
  5512. }
  5513. ],
  5514. "description": "Symfony polyfill for intl's grapheme_* functions",
  5515. "homepage": "https://symfony.com",
  5516. "keywords": [
  5517. "compatibility",
  5518. "grapheme",
  5519. "intl",
  5520. "polyfill",
  5521. "portable",
  5522. "shim"
  5523. ],
  5524. "support": {
  5525. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  5526. },
  5527. "funding": [
  5528. {
  5529. "url": "https://symfony.com/sponsor",
  5530. "type": "custom"
  5531. },
  5532. {
  5533. "url": "https://github.com/fabpot",
  5534. "type": "github"
  5535. },
  5536. {
  5537. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5538. "type": "tidelift"
  5539. }
  5540. ],
  5541. "time": "2022-11-03T14:55:06+00:00"
  5542. },
  5543. {
  5544. "name": "symfony/polyfill-intl-normalizer",
  5545. "version": "v1.27.0",
  5546. "source": {
  5547. "type": "git",
  5548. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5549. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  5550. },
  5551. "dist": {
  5552. "type": "zip",
  5553. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5554. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5555. "shasum": ""
  5556. },
  5557. "require": {
  5558. "php": ">=7.1"
  5559. },
  5560. "suggest": {
  5561. "ext-intl": "For best performance"
  5562. },
  5563. "type": "library",
  5564. "extra": {
  5565. "branch-alias": {
  5566. "dev-main": "1.27-dev"
  5567. },
  5568. "thanks": {
  5569. "name": "symfony/polyfill",
  5570. "url": "https://github.com/symfony/polyfill"
  5571. }
  5572. },
  5573. "autoload": {
  5574. "files": [
  5575. "bootstrap.php"
  5576. ],
  5577. "psr-4": {
  5578. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5579. },
  5580. "classmap": [
  5581. "Resources/stubs"
  5582. ]
  5583. },
  5584. "notification-url": "https://packagist.org/downloads/",
  5585. "license": [
  5586. "MIT"
  5587. ],
  5588. "authors": [
  5589. {
  5590. "name": "Nicolas Grekas",
  5591. "email": "[email protected]"
  5592. },
  5593. {
  5594. "name": "Symfony Community",
  5595. "homepage": "https://symfony.com/contributors"
  5596. }
  5597. ],
  5598. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5599. "homepage": "https://symfony.com",
  5600. "keywords": [
  5601. "compatibility",
  5602. "intl",
  5603. "normalizer",
  5604. "polyfill",
  5605. "portable",
  5606. "shim"
  5607. ],
  5608. "support": {
  5609. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  5610. },
  5611. "funding": [
  5612. {
  5613. "url": "https://symfony.com/sponsor",
  5614. "type": "custom"
  5615. },
  5616. {
  5617. "url": "https://github.com/fabpot",
  5618. "type": "github"
  5619. },
  5620. {
  5621. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5622. "type": "tidelift"
  5623. }
  5624. ],
  5625. "time": "2022-11-03T14:55:06+00:00"
  5626. },
  5627. {
  5628. "name": "symfony/polyfill-mbstring",
  5629. "version": "v1.27.0",
  5630. "source": {
  5631. "type": "git",
  5632. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5633. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  5634. },
  5635. "dist": {
  5636. "type": "zip",
  5637. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5638. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5639. "shasum": ""
  5640. },
  5641. "require": {
  5642. "php": ">=7.1"
  5643. },
  5644. "provide": {
  5645. "ext-mbstring": "*"
  5646. },
  5647. "suggest": {
  5648. "ext-mbstring": "For best performance"
  5649. },
  5650. "type": "library",
  5651. "extra": {
  5652. "branch-alias": {
  5653. "dev-main": "1.27-dev"
  5654. },
  5655. "thanks": {
  5656. "name": "symfony/polyfill",
  5657. "url": "https://github.com/symfony/polyfill"
  5658. }
  5659. },
  5660. "autoload": {
  5661. "files": [
  5662. "bootstrap.php"
  5663. ],
  5664. "psr-4": {
  5665. "Symfony\\Polyfill\\Mbstring\\": ""
  5666. }
  5667. },
  5668. "notification-url": "https://packagist.org/downloads/",
  5669. "license": [
  5670. "MIT"
  5671. ],
  5672. "authors": [
  5673. {
  5674. "name": "Nicolas Grekas",
  5675. "email": "[email protected]"
  5676. },
  5677. {
  5678. "name": "Symfony Community",
  5679. "homepage": "https://symfony.com/contributors"
  5680. }
  5681. ],
  5682. "description": "Symfony polyfill for the Mbstring extension",
  5683. "homepage": "https://symfony.com",
  5684. "keywords": [
  5685. "compatibility",
  5686. "mbstring",
  5687. "polyfill",
  5688. "portable",
  5689. "shim"
  5690. ],
  5691. "support": {
  5692. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  5693. },
  5694. "funding": [
  5695. {
  5696. "url": "https://symfony.com/sponsor",
  5697. "type": "custom"
  5698. },
  5699. {
  5700. "url": "https://github.com/fabpot",
  5701. "type": "github"
  5702. },
  5703. {
  5704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5705. "type": "tidelift"
  5706. }
  5707. ],
  5708. "time": "2022-11-03T14:55:06+00:00"
  5709. },
  5710. {
  5711. "name": "symfony/polyfill-php72",
  5712. "version": "v1.27.0",
  5713. "source": {
  5714. "type": "git",
  5715. "url": "https://github.com/symfony/polyfill-php72.git",
  5716. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  5717. },
  5718. "dist": {
  5719. "type": "zip",
  5720. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  5721. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  5722. "shasum": ""
  5723. },
  5724. "require": {
  5725. "php": ">=7.1"
  5726. },
  5727. "type": "library",
  5728. "extra": {
  5729. "branch-alias": {
  5730. "dev-main": "1.27-dev"
  5731. },
  5732. "thanks": {
  5733. "name": "symfony/polyfill",
  5734. "url": "https://github.com/symfony/polyfill"
  5735. }
  5736. },
  5737. "autoload": {
  5738. "files": [
  5739. "bootstrap.php"
  5740. ],
  5741. "psr-4": {
  5742. "Symfony\\Polyfill\\Php72\\": ""
  5743. }
  5744. },
  5745. "notification-url": "https://packagist.org/downloads/",
  5746. "license": [
  5747. "MIT"
  5748. ],
  5749. "authors": [
  5750. {
  5751. "name": "Nicolas Grekas",
  5752. "email": "[email protected]"
  5753. },
  5754. {
  5755. "name": "Symfony Community",
  5756. "homepage": "https://symfony.com/contributors"
  5757. }
  5758. ],
  5759. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5760. "homepage": "https://symfony.com",
  5761. "keywords": [
  5762. "compatibility",
  5763. "polyfill",
  5764. "portable",
  5765. "shim"
  5766. ],
  5767. "support": {
  5768. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  5769. },
  5770. "funding": [
  5771. {
  5772. "url": "https://symfony.com/sponsor",
  5773. "type": "custom"
  5774. },
  5775. {
  5776. "url": "https://github.com/fabpot",
  5777. "type": "github"
  5778. },
  5779. {
  5780. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5781. "type": "tidelift"
  5782. }
  5783. ],
  5784. "time": "2022-11-03T14:55:06+00:00"
  5785. },
  5786. {
  5787. "name": "symfony/polyfill-php80",
  5788. "version": "v1.27.0",
  5789. "source": {
  5790. "type": "git",
  5791. "url": "https://github.com/symfony/polyfill-php80.git",
  5792. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  5793. },
  5794. "dist": {
  5795. "type": "zip",
  5796. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5797. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5798. "shasum": ""
  5799. },
  5800. "require": {
  5801. "php": ">=7.1"
  5802. },
  5803. "type": "library",
  5804. "extra": {
  5805. "branch-alias": {
  5806. "dev-main": "1.27-dev"
  5807. },
  5808. "thanks": {
  5809. "name": "symfony/polyfill",
  5810. "url": "https://github.com/symfony/polyfill"
  5811. }
  5812. },
  5813. "autoload": {
  5814. "files": [
  5815. "bootstrap.php"
  5816. ],
  5817. "psr-4": {
  5818. "Symfony\\Polyfill\\Php80\\": ""
  5819. },
  5820. "classmap": [
  5821. "Resources/stubs"
  5822. ]
  5823. },
  5824. "notification-url": "https://packagist.org/downloads/",
  5825. "license": [
  5826. "MIT"
  5827. ],
  5828. "authors": [
  5829. {
  5830. "name": "Ion Bazan",
  5831. "email": "[email protected]"
  5832. },
  5833. {
  5834. "name": "Nicolas Grekas",
  5835. "email": "[email protected]"
  5836. },
  5837. {
  5838. "name": "Symfony Community",
  5839. "homepage": "https://symfony.com/contributors"
  5840. }
  5841. ],
  5842. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5843. "homepage": "https://symfony.com",
  5844. "keywords": [
  5845. "compatibility",
  5846. "polyfill",
  5847. "portable",
  5848. "shim"
  5849. ],
  5850. "support": {
  5851. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  5852. },
  5853. "funding": [
  5854. {
  5855. "url": "https://symfony.com/sponsor",
  5856. "type": "custom"
  5857. },
  5858. {
  5859. "url": "https://github.com/fabpot",
  5860. "type": "github"
  5861. },
  5862. {
  5863. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5864. "type": "tidelift"
  5865. }
  5866. ],
  5867. "time": "2022-11-03T14:55:06+00:00"
  5868. },
  5869. {
  5870. "name": "symfony/service-contracts",
  5871. "version": "v3.3.0",
  5872. "source": {
  5873. "type": "git",
  5874. "url": "https://github.com/symfony/service-contracts.git",
  5875. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  5876. },
  5877. "dist": {
  5878. "type": "zip",
  5879. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  5880. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  5881. "shasum": ""
  5882. },
  5883. "require": {
  5884. "php": ">=8.1",
  5885. "psr/container": "^2.0"
  5886. },
  5887. "conflict": {
  5888. "ext-psr": "<1.1|>=2"
  5889. },
  5890. "type": "library",
  5891. "extra": {
  5892. "branch-alias": {
  5893. "dev-main": "3.4-dev"
  5894. },
  5895. "thanks": {
  5896. "name": "symfony/contracts",
  5897. "url": "https://github.com/symfony/contracts"
  5898. }
  5899. },
  5900. "autoload": {
  5901. "psr-4": {
  5902. "Symfony\\Contracts\\Service\\": ""
  5903. },
  5904. "exclude-from-classmap": [
  5905. "/Test/"
  5906. ]
  5907. },
  5908. "notification-url": "https://packagist.org/downloads/",
  5909. "license": [
  5910. "MIT"
  5911. ],
  5912. "authors": [
  5913. {
  5914. "name": "Nicolas Grekas",
  5915. "email": "[email protected]"
  5916. },
  5917. {
  5918. "name": "Symfony Community",
  5919. "homepage": "https://symfony.com/contributors"
  5920. }
  5921. ],
  5922. "description": "Generic abstractions related to writing services",
  5923. "homepage": "https://symfony.com",
  5924. "keywords": [
  5925. "abstractions",
  5926. "contracts",
  5927. "decoupling",
  5928. "interfaces",
  5929. "interoperability",
  5930. "standards"
  5931. ],
  5932. "support": {
  5933. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  5934. },
  5935. "funding": [
  5936. {
  5937. "url": "https://symfony.com/sponsor",
  5938. "type": "custom"
  5939. },
  5940. {
  5941. "url": "https://github.com/fabpot",
  5942. "type": "github"
  5943. },
  5944. {
  5945. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5946. "type": "tidelift"
  5947. }
  5948. ],
  5949. "time": "2023-05-23T14:45:45+00:00"
  5950. },
  5951. {
  5952. "name": "symfony/string",
  5953. "version": "v6.3.0",
  5954. "source": {
  5955. "type": "git",
  5956. "url": "https://github.com/symfony/string.git",
  5957. "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f"
  5958. },
  5959. "dist": {
  5960. "type": "zip",
  5961. "url": "https://api.github.com/repos/symfony/string/zipball/f2e190ee75ff0f5eced645ec0be5c66fac81f51f",
  5962. "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f",
  5963. "shasum": ""
  5964. },
  5965. "require": {
  5966. "php": ">=8.1",
  5967. "symfony/polyfill-ctype": "~1.8",
  5968. "symfony/polyfill-intl-grapheme": "~1.0",
  5969. "symfony/polyfill-intl-normalizer": "~1.0",
  5970. "symfony/polyfill-mbstring": "~1.0"
  5971. },
  5972. "conflict": {
  5973. "symfony/translation-contracts": "<2.5"
  5974. },
  5975. "require-dev": {
  5976. "symfony/error-handler": "^5.4|^6.0",
  5977. "symfony/http-client": "^5.4|^6.0",
  5978. "symfony/intl": "^6.2",
  5979. "symfony/translation-contracts": "^2.5|^3.0",
  5980. "symfony/var-exporter": "^5.4|^6.0"
  5981. },
  5982. "type": "library",
  5983. "autoload": {
  5984. "files": [
  5985. "Resources/functions.php"
  5986. ],
  5987. "psr-4": {
  5988. "Symfony\\Component\\String\\": ""
  5989. },
  5990. "exclude-from-classmap": [
  5991. "/Tests/"
  5992. ]
  5993. },
  5994. "notification-url": "https://packagist.org/downloads/",
  5995. "license": [
  5996. "MIT"
  5997. ],
  5998. "authors": [
  5999. {
  6000. "name": "Nicolas Grekas",
  6001. "email": "[email protected]"
  6002. },
  6003. {
  6004. "name": "Symfony Community",
  6005. "homepage": "https://symfony.com/contributors"
  6006. }
  6007. ],
  6008. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6009. "homepage": "https://symfony.com",
  6010. "keywords": [
  6011. "grapheme",
  6012. "i18n",
  6013. "string",
  6014. "unicode",
  6015. "utf-8",
  6016. "utf8"
  6017. ],
  6018. "support": {
  6019. "source": "https://github.com/symfony/string/tree/v6.3.0"
  6020. },
  6021. "funding": [
  6022. {
  6023. "url": "https://symfony.com/sponsor",
  6024. "type": "custom"
  6025. },
  6026. {
  6027. "url": "https://github.com/fabpot",
  6028. "type": "github"
  6029. },
  6030. {
  6031. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6032. "type": "tidelift"
  6033. }
  6034. ],
  6035. "time": "2023-03-21T21:06:29+00:00"
  6036. },
  6037. {
  6038. "name": "symfony/translation",
  6039. "version": "v6.3.0",
  6040. "source": {
  6041. "type": "git",
  6042. "url": "https://github.com/symfony/translation.git",
  6043. "reference": "f72b2cba8f79dd9d536f534f76874b58ad37876f"
  6044. },
  6045. "dist": {
  6046. "type": "zip",
  6047. "url": "https://api.github.com/repos/symfony/translation/zipball/f72b2cba8f79dd9d536f534f76874b58ad37876f",
  6048. "reference": "f72b2cba8f79dd9d536f534f76874b58ad37876f",
  6049. "shasum": ""
  6050. },
  6051. "require": {
  6052. "php": ">=8.1",
  6053. "symfony/polyfill-mbstring": "~1.0",
  6054. "symfony/translation-contracts": "^2.5|^3.0"
  6055. },
  6056. "conflict": {
  6057. "symfony/config": "<5.4",
  6058. "symfony/console": "<5.4",
  6059. "symfony/dependency-injection": "<5.4",
  6060. "symfony/http-client-contracts": "<2.5",
  6061. "symfony/http-kernel": "<5.4",
  6062. "symfony/service-contracts": "<2.5",
  6063. "symfony/twig-bundle": "<5.4",
  6064. "symfony/yaml": "<5.4"
  6065. },
  6066. "provide": {
  6067. "symfony/translation-implementation": "2.3|3.0"
  6068. },
  6069. "require-dev": {
  6070. "nikic/php-parser": "^4.13",
  6071. "psr/log": "^1|^2|^3",
  6072. "symfony/config": "^5.4|^6.0",
  6073. "symfony/console": "^5.4|^6.0",
  6074. "symfony/dependency-injection": "^5.4|^6.0",
  6075. "symfony/finder": "^5.4|^6.0",
  6076. "symfony/http-client-contracts": "^2.5|^3.0",
  6077. "symfony/http-kernel": "^5.4|^6.0",
  6078. "symfony/intl": "^5.4|^6.0",
  6079. "symfony/polyfill-intl-icu": "^1.21",
  6080. "symfony/routing": "^5.4|^6.0",
  6081. "symfony/service-contracts": "^2.5|^3",
  6082. "symfony/yaml": "^5.4|^6.0"
  6083. },
  6084. "type": "library",
  6085. "autoload": {
  6086. "files": [
  6087. "Resources/functions.php"
  6088. ],
  6089. "psr-4": {
  6090. "Symfony\\Component\\Translation\\": ""
  6091. },
  6092. "exclude-from-classmap": [
  6093. "/Tests/"
  6094. ]
  6095. },
  6096. "notification-url": "https://packagist.org/downloads/",
  6097. "license": [
  6098. "MIT"
  6099. ],
  6100. "authors": [
  6101. {
  6102. "name": "Fabien Potencier",
  6103. "email": "[email protected]"
  6104. },
  6105. {
  6106. "name": "Symfony Community",
  6107. "homepage": "https://symfony.com/contributors"
  6108. }
  6109. ],
  6110. "description": "Provides tools to internationalize your application",
  6111. "homepage": "https://symfony.com",
  6112. "support": {
  6113. "source": "https://github.com/symfony/translation/tree/v6.3.0"
  6114. },
  6115. "funding": [
  6116. {
  6117. "url": "https://symfony.com/sponsor",
  6118. "type": "custom"
  6119. },
  6120. {
  6121. "url": "https://github.com/fabpot",
  6122. "type": "github"
  6123. },
  6124. {
  6125. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6126. "type": "tidelift"
  6127. }
  6128. ],
  6129. "time": "2023-05-19T12:46:45+00:00"
  6130. },
  6131. {
  6132. "name": "symfony/translation-contracts",
  6133. "version": "v3.3.0",
  6134. "source": {
  6135. "type": "git",
  6136. "url": "https://github.com/symfony/translation-contracts.git",
  6137. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  6138. },
  6139. "dist": {
  6140. "type": "zip",
  6141. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  6142. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  6143. "shasum": ""
  6144. },
  6145. "require": {
  6146. "php": ">=8.1"
  6147. },
  6148. "type": "library",
  6149. "extra": {
  6150. "branch-alias": {
  6151. "dev-main": "3.4-dev"
  6152. },
  6153. "thanks": {
  6154. "name": "symfony/contracts",
  6155. "url": "https://github.com/symfony/contracts"
  6156. }
  6157. },
  6158. "autoload": {
  6159. "psr-4": {
  6160. "Symfony\\Contracts\\Translation\\": ""
  6161. },
  6162. "exclude-from-classmap": [
  6163. "/Test/"
  6164. ]
  6165. },
  6166. "notification-url": "https://packagist.org/downloads/",
  6167. "license": [
  6168. "MIT"
  6169. ],
  6170. "authors": [
  6171. {
  6172. "name": "Nicolas Grekas",
  6173. "email": "[email protected]"
  6174. },
  6175. {
  6176. "name": "Symfony Community",
  6177. "homepage": "https://symfony.com/contributors"
  6178. }
  6179. ],
  6180. "description": "Generic abstractions related to translation",
  6181. "homepage": "https://symfony.com",
  6182. "keywords": [
  6183. "abstractions",
  6184. "contracts",
  6185. "decoupling",
  6186. "interfaces",
  6187. "interoperability",
  6188. "standards"
  6189. ],
  6190. "support": {
  6191. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  6192. },
  6193. "funding": [
  6194. {
  6195. "url": "https://symfony.com/sponsor",
  6196. "type": "custom"
  6197. },
  6198. {
  6199. "url": "https://github.com/fabpot",
  6200. "type": "github"
  6201. },
  6202. {
  6203. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6204. "type": "tidelift"
  6205. }
  6206. ],
  6207. "time": "2023-05-30T17:17:10+00:00"
  6208. },
  6209. {
  6210. "name": "symfony/yaml",
  6211. "version": "v6.3.0",
  6212. "source": {
  6213. "type": "git",
  6214. "url": "https://github.com/symfony/yaml.git",
  6215. "reference": "a9a8337aa641ef2aa39c3e028f9107ec391e5927"
  6216. },
  6217. "dist": {
  6218. "type": "zip",
  6219. "url": "https://api.github.com/repos/symfony/yaml/zipball/a9a8337aa641ef2aa39c3e028f9107ec391e5927",
  6220. "reference": "a9a8337aa641ef2aa39c3e028f9107ec391e5927",
  6221. "shasum": ""
  6222. },
  6223. "require": {
  6224. "php": ">=8.1",
  6225. "symfony/polyfill-ctype": "^1.8"
  6226. },
  6227. "conflict": {
  6228. "symfony/console": "<5.4"
  6229. },
  6230. "require-dev": {
  6231. "symfony/console": "^5.4|^6.0"
  6232. },
  6233. "bin": [
  6234. "Resources/bin/yaml-lint"
  6235. ],
  6236. "type": "library",
  6237. "autoload": {
  6238. "psr-4": {
  6239. "Symfony\\Component\\Yaml\\": ""
  6240. },
  6241. "exclude-from-classmap": [
  6242. "/Tests/"
  6243. ]
  6244. },
  6245. "notification-url": "https://packagist.org/downloads/",
  6246. "license": [
  6247. "MIT"
  6248. ],
  6249. "authors": [
  6250. {
  6251. "name": "Fabien Potencier",
  6252. "email": "[email protected]"
  6253. },
  6254. {
  6255. "name": "Symfony Community",
  6256. "homepage": "https://symfony.com/contributors"
  6257. }
  6258. ],
  6259. "description": "Loads and dumps YAML files",
  6260. "homepage": "https://symfony.com",
  6261. "support": {
  6262. "source": "https://github.com/symfony/yaml/tree/v6.3.0"
  6263. },
  6264. "funding": [
  6265. {
  6266. "url": "https://symfony.com/sponsor",
  6267. "type": "custom"
  6268. },
  6269. {
  6270. "url": "https://github.com/fabpot",
  6271. "type": "github"
  6272. },
  6273. {
  6274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6275. "type": "tidelift"
  6276. }
  6277. ],
  6278. "time": "2023-04-28T13:28:14+00:00"
  6279. },
  6280. {
  6281. "name": "tronovav/geoip2-update",
  6282. "version": "v2.1.24",
  6283. "source": {
  6284. "type": "git",
  6285. "url": "https://github.com/tronovav/geoip2-update.git",
  6286. "reference": "6b91582eb11d4c39cfe66b3178ac0a6c67839cf9"
  6287. },
  6288. "dist": {
  6289. "type": "zip",
  6290. "url": "https://api.github.com/repos/tronovav/geoip2-update/zipball/6b91582eb11d4c39cfe66b3178ac0a6c67839cf9",
  6291. "reference": "6b91582eb11d4c39cfe66b3178ac0a6c67839cf9",
  6292. "shasum": ""
  6293. },
  6294. "require": {
  6295. "ext-curl": "*",
  6296. "php": ">=5.3"
  6297. },
  6298. "suggest": {
  6299. "ext-zip": "Required for updating the CSV databases."
  6300. },
  6301. "type": "library",
  6302. "autoload": {
  6303. "psr-4": {
  6304. "tronovav\\GeoIP2Update\\": "src/"
  6305. }
  6306. },
  6307. "notification-url": "https://packagist.org/downloads/",
  6308. "license": [
  6309. "MIT"
  6310. ],
  6311. "authors": [
  6312. {
  6313. "name": "Andrey Tronov",
  6314. "email": "[email protected]"
  6315. }
  6316. ],
  6317. "description": "Update GeoIP2/GeoLite2 databases from your script, program or via composer.",
  6318. "keywords": [
  6319. "geoip",
  6320. "geoip2",
  6321. "geolite2",
  6322. "geolocation",
  6323. "maxmind"
  6324. ],
  6325. "support": {
  6326. "email": "[email protected]",
  6327. "issues": "https://github.com/tronovav/geoip2-update/issues",
  6328. "source": "https://github.com/tronovav/geoip2-update/tree/v2.1.24"
  6329. },
  6330. "funding": [
  6331. {
  6332. "url": "https://donate.stream/tronovav",
  6333. "type": "other"
  6334. },
  6335. {
  6336. "url": "https://yoomoney.ru/to/410016198845596",
  6337. "type": "other"
  6338. }
  6339. ],
  6340. "time": "2023-03-13T11:43:07+00:00"
  6341. },
  6342. {
  6343. "name": "vectorface/googleauthenticator",
  6344. "version": "v3.0",
  6345. "source": {
  6346. "type": "git",
  6347. "url": "https://github.com/Vectorface/GoogleAuthenticator.git",
  6348. "reference": "bf6879959b69f7573038f4601d2c5b85dca8bb48"
  6349. },
  6350. "dist": {
  6351. "type": "zip",
  6352. "url": "https://api.github.com/repos/Vectorface/GoogleAuthenticator/zipball/bf6879959b69f7573038f4601d2c5b85dca8bb48",
  6353. "reference": "bf6879959b69f7573038f4601d2c5b85dca8bb48",
  6354. "shasum": ""
  6355. },
  6356. "require": {
  6357. "endroid/qr-code": "^4.0.0",
  6358. "php": ">=7.3"
  6359. },
  6360. "require-dev": {
  6361. "phpunit/phpunit": "^9"
  6362. },
  6363. "type": "library",
  6364. "autoload": {
  6365. "psr-4": {
  6366. "Vectorface\\": "src/"
  6367. }
  6368. },
  6369. "notification-url": "https://packagist.org/downloads/",
  6370. "license": [
  6371. "BSD-2-Clause"
  6372. ],
  6373. "authors": [
  6374. {
  6375. "name": "Michael Kliewe",
  6376. "email": "[email protected]",
  6377. "homepage": "http://www.phpgangsta.de/",
  6378. "role": "Developer"
  6379. },
  6380. {
  6381. "name": "Francis Lavoie",
  6382. "email": "[email protected]",
  6383. "homepage": "http://vectorface.com/",
  6384. "role": "Developer"
  6385. }
  6386. ],
  6387. "description": "Google Authenticator 2-factor authentication",
  6388. "keywords": [
  6389. "googleauthenticator",
  6390. "rfc6238",
  6391. "totp"
  6392. ],
  6393. "support": {
  6394. "issues": "https://github.com/Vectorface/GoogleAuthenticator/issues",
  6395. "source": "https://github.com/Vectorface/GoogleAuthenticator"
  6396. },
  6397. "time": "2021-04-20T19:40:40+00:00"
  6398. },
  6399. {
  6400. "name": "voku/anti-xss",
  6401. "version": "4.1.41",
  6402. "source": {
  6403. "type": "git",
  6404. "url": "https://github.com/voku/anti-xss.git",
  6405. "reference": "55a403436494e44a2547a8d42de68e6cad4bca1d"
  6406. },
  6407. "dist": {
  6408. "type": "zip",
  6409. "url": "https://api.github.com/repos/voku/anti-xss/zipball/55a403436494e44a2547a8d42de68e6cad4bca1d",
  6410. "reference": "55a403436494e44a2547a8d42de68e6cad4bca1d",
  6411. "shasum": ""
  6412. },
  6413. "require": {
  6414. "php": ">=7.0.0",
  6415. "voku/portable-utf8": "~6.0.2"
  6416. },
  6417. "require-dev": {
  6418. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6419. },
  6420. "type": "library",
  6421. "extra": {
  6422. "branch-alias": {
  6423. "dev-master": "4.1.x-dev"
  6424. }
  6425. },
  6426. "autoload": {
  6427. "psr-4": {
  6428. "voku\\helper\\": "src/voku/helper/"
  6429. }
  6430. },
  6431. "notification-url": "https://packagist.org/downloads/",
  6432. "license": [
  6433. "MIT"
  6434. ],
  6435. "authors": [
  6436. {
  6437. "name": "EllisLab Dev Team",
  6438. "homepage": "http://ellislab.com/"
  6439. },
  6440. {
  6441. "name": "Lars Moelleken",
  6442. "email": "[email protected]",
  6443. "homepage": "https://www.moelleken.org/"
  6444. }
  6445. ],
  6446. "description": "anti xss-library",
  6447. "homepage": "https://github.com/voku/anti-xss",
  6448. "keywords": [
  6449. "anti-xss",
  6450. "clean",
  6451. "security",
  6452. "xss"
  6453. ],
  6454. "support": {
  6455. "issues": "https://github.com/voku/anti-xss/issues",
  6456. "source": "https://github.com/voku/anti-xss/tree/4.1.41"
  6457. },
  6458. "funding": [
  6459. {
  6460. "url": "https://www.paypal.me/moelleken",
  6461. "type": "custom"
  6462. },
  6463. {
  6464. "url": "https://github.com/voku",
  6465. "type": "github"
  6466. },
  6467. {
  6468. "url": "https://opencollective.com/anti-xss",
  6469. "type": "open_collective"
  6470. },
  6471. {
  6472. "url": "https://www.patreon.com/voku",
  6473. "type": "patreon"
  6474. },
  6475. {
  6476. "url": "https://tidelift.com/funding/github/packagist/voku/anti-xss",
  6477. "type": "tidelift"
  6478. }
  6479. ],
  6480. "time": "2023-02-12T15:56:55+00:00"
  6481. },
  6482. {
  6483. "name": "voku/portable-ascii",
  6484. "version": "2.0.1",
  6485. "source": {
  6486. "type": "git",
  6487. "url": "https://github.com/voku/portable-ascii.git",
  6488. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  6489. },
  6490. "dist": {
  6491. "type": "zip",
  6492. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  6493. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  6494. "shasum": ""
  6495. },
  6496. "require": {
  6497. "php": ">=7.0.0"
  6498. },
  6499. "require-dev": {
  6500. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6501. },
  6502. "suggest": {
  6503. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6504. },
  6505. "type": "library",
  6506. "autoload": {
  6507. "psr-4": {
  6508. "voku\\": "src/voku/"
  6509. }
  6510. },
  6511. "notification-url": "https://packagist.org/downloads/",
  6512. "license": [
  6513. "MIT"
  6514. ],
  6515. "authors": [
  6516. {
  6517. "name": "Lars Moelleken",
  6518. "homepage": "http://www.moelleken.org/"
  6519. }
  6520. ],
  6521. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6522. "homepage": "https://github.com/voku/portable-ascii",
  6523. "keywords": [
  6524. "ascii",
  6525. "clean",
  6526. "php"
  6527. ],
  6528. "support": {
  6529. "issues": "https://github.com/voku/portable-ascii/issues",
  6530. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  6531. },
  6532. "funding": [
  6533. {
  6534. "url": "https://www.paypal.me/moelleken",
  6535. "type": "custom"
  6536. },
  6537. {
  6538. "url": "https://github.com/voku",
  6539. "type": "github"
  6540. },
  6541. {
  6542. "url": "https://opencollective.com/portable-ascii",
  6543. "type": "open_collective"
  6544. },
  6545. {
  6546. "url": "https://www.patreon.com/voku",
  6547. "type": "patreon"
  6548. },
  6549. {
  6550. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6551. "type": "tidelift"
  6552. }
  6553. ],
  6554. "time": "2022-03-08T17:03:00+00:00"
  6555. },
  6556. {
  6557. "name": "voku/portable-utf8",
  6558. "version": "6.0.13",
  6559. "source": {
  6560. "type": "git",
  6561. "url": "https://github.com/voku/portable-utf8.git",
  6562. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f"
  6563. },
  6564. "dist": {
  6565. "type": "zip",
  6566. "url": "https://api.github.com/repos/voku/portable-utf8/zipball/b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  6567. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  6568. "shasum": ""
  6569. },
  6570. "require": {
  6571. "php": ">=7.0.0",
  6572. "symfony/polyfill-iconv": "~1.0",
  6573. "symfony/polyfill-intl-grapheme": "~1.0",
  6574. "symfony/polyfill-intl-normalizer": "~1.0",
  6575. "symfony/polyfill-mbstring": "~1.0",
  6576. "symfony/polyfill-php72": "~1.0",
  6577. "voku/portable-ascii": "~2.0.0"
  6578. },
  6579. "require-dev": {
  6580. "phpstan/phpstan": "1.9.*@dev",
  6581. "phpstan/phpstan-strict-rules": "1.4.*@dev",
  6582. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0",
  6583. "thecodingmachine/phpstan-strict-rules": "1.0.*@dev",
  6584. "voku/phpstan-rules": "3.1.*@dev"
  6585. },
  6586. "suggest": {
  6587. "ext-ctype": "Use Ctype for e.g. hexadecimal digit detection",
  6588. "ext-fileinfo": "Use Fileinfo for better binary file detection",
  6589. "ext-iconv": "Use iconv for best performance",
  6590. "ext-intl": "Use Intl for best performance",
  6591. "ext-json": "Use JSON for string detection",
  6592. "ext-mbstring": "Use Mbstring for best performance"
  6593. },
  6594. "type": "library",
  6595. "autoload": {
  6596. "files": [
  6597. "bootstrap.php"
  6598. ],
  6599. "psr-4": {
  6600. "voku\\": "src/voku/"
  6601. }
  6602. },
  6603. "notification-url": "https://packagist.org/downloads/",
  6604. "license": [
  6605. "(Apache-2.0 or GPL-2.0)"
  6606. ],
  6607. "authors": [
  6608. {
  6609. "name": "Nicolas Grekas",
  6610. "email": "[email protected]"
  6611. },
  6612. {
  6613. "name": "Hamid Sarfraz",
  6614. "homepage": "http://pageconfig.com/"
  6615. },
  6616. {
  6617. "name": "Lars Moelleken",
  6618. "homepage": "http://www.moelleken.org/"
  6619. }
  6620. ],
  6621. "description": "Portable UTF-8 library - performance optimized (unicode) string functions for php.",
  6622. "homepage": "https://github.com/voku/portable-utf8",
  6623. "keywords": [
  6624. "UTF",
  6625. "clean",
  6626. "php",
  6627. "unicode",
  6628. "utf-8",
  6629. "utf8"
  6630. ],
  6631. "support": {
  6632. "issues": "https://github.com/voku/portable-utf8/issues",
  6633. "source": "https://github.com/voku/portable-utf8/tree/6.0.13"
  6634. },
  6635. "funding": [
  6636. {
  6637. "url": "https://www.paypal.me/moelleken",
  6638. "type": "custom"
  6639. },
  6640. {
  6641. "url": "https://github.com/voku",
  6642. "type": "github"
  6643. },
  6644. {
  6645. "url": "https://opencollective.com/portable-utf8",
  6646. "type": "open_collective"
  6647. },
  6648. {
  6649. "url": "https://www.patreon.com/voku",
  6650. "type": "patreon"
  6651. },
  6652. {
  6653. "url": "https://tidelift.com/funding/github/packagist/voku/portable-utf8",
  6654. "type": "tidelift"
  6655. }
  6656. ],
  6657. "time": "2023-03-08T08:35:38+00:00"
  6658. },
  6659. {
  6660. "name": "webmozart/assert",
  6661. "version": "1.11.0",
  6662. "source": {
  6663. "type": "git",
  6664. "url": "https://github.com/webmozarts/assert.git",
  6665. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  6666. },
  6667. "dist": {
  6668. "type": "zip",
  6669. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6670. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6671. "shasum": ""
  6672. },
  6673. "require": {
  6674. "ext-ctype": "*",
  6675. "php": "^7.2 || ^8.0"
  6676. },
  6677. "conflict": {
  6678. "phpstan/phpstan": "<0.12.20",
  6679. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6680. },
  6681. "require-dev": {
  6682. "phpunit/phpunit": "^8.5.13"
  6683. },
  6684. "type": "library",
  6685. "extra": {
  6686. "branch-alias": {
  6687. "dev-master": "1.10-dev"
  6688. }
  6689. },
  6690. "autoload": {
  6691. "psr-4": {
  6692. "Webmozart\\Assert\\": "src/"
  6693. }
  6694. },
  6695. "notification-url": "https://packagist.org/downloads/",
  6696. "license": [
  6697. "MIT"
  6698. ],
  6699. "authors": [
  6700. {
  6701. "name": "Bernhard Schussek",
  6702. "email": "[email protected]"
  6703. }
  6704. ],
  6705. "description": "Assertions to validate method input/output with nice error messages.",
  6706. "keywords": [
  6707. "assert",
  6708. "check",
  6709. "validate"
  6710. ],
  6711. "support": {
  6712. "issues": "https://github.com/webmozarts/assert/issues",
  6713. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  6714. },
  6715. "time": "2022-06-03T18:03:27+00:00"
  6716. }
  6717. ],
  6718. "packages-dev": [
  6719. {
  6720. "name": "cmgmyr/phploc",
  6721. "version": "8.0.2",
  6722. "source": {
  6723. "type": "git",
  6724. "url": "https://github.com/cmgmyr/phploc.git",
  6725. "reference": "35e308033e02264a59cb1b56cc2abb1a22483ca8"
  6726. },
  6727. "dist": {
  6728. "type": "zip",
  6729. "url": "https://api.github.com/repos/cmgmyr/phploc/zipball/35e308033e02264a59cb1b56cc2abb1a22483ca8",
  6730. "reference": "35e308033e02264a59cb1b56cc2abb1a22483ca8",
  6731. "shasum": ""
  6732. },
  6733. "require": {
  6734. "ext-dom": "*",
  6735. "ext-json": "*",
  6736. "php": "^7.4 || ^8.0",
  6737. "phpunit/php-file-iterator": "^3.0|^4.0",
  6738. "sebastian/cli-parser": "^1.0|^2.0",
  6739. "sebastian/version": "^3.0|^4.0"
  6740. },
  6741. "require-dev": {
  6742. "friendsofphp/php-cs-fixer": "^3.2",
  6743. "phpunit/phpunit": "^9.0|^10.0",
  6744. "vimeo/psalm": "^5.7"
  6745. },
  6746. "bin": [
  6747. "phploc"
  6748. ],
  6749. "type": "library",
  6750. "extra": {
  6751. "branch-alias": {
  6752. "dev-main": "8.0-dev"
  6753. }
  6754. },
  6755. "autoload": {
  6756. "classmap": [
  6757. "src/"
  6758. ]
  6759. },
  6760. "notification-url": "https://packagist.org/downloads/",
  6761. "license": [
  6762. "BSD-3-Clause"
  6763. ],
  6764. "authors": [
  6765. {
  6766. "name": "Chris Gmyr",
  6767. "email": "[email protected]",
  6768. "role": "lead"
  6769. }
  6770. ],
  6771. "description": "A tool for quickly measuring the size of a PHP project.",
  6772. "homepage": "https://github.com/cmgmyr/phploc",
  6773. "support": {
  6774. "issues": "https://github.com/cmgmyr/phploc/issues",
  6775. "source": "https://github.com/cmgmyr/phploc/tree/8.0.2"
  6776. },
  6777. "funding": [
  6778. {
  6779. "url": "https://github.com/cmgmyr",
  6780. "type": "github"
  6781. }
  6782. ],
  6783. "time": "2023-03-19T10:37:20+00:00"
  6784. },
  6785. {
  6786. "name": "composer/pcre",
  6787. "version": "3.1.0",
  6788. "source": {
  6789. "type": "git",
  6790. "url": "https://github.com/composer/pcre.git",
  6791. "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2"
  6792. },
  6793. "dist": {
  6794. "type": "zip",
  6795. "url": "https://api.github.com/repos/composer/pcre/zipball/4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
  6796. "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
  6797. "shasum": ""
  6798. },
  6799. "require": {
  6800. "php": "^7.4 || ^8.0"
  6801. },
  6802. "require-dev": {
  6803. "phpstan/phpstan": "^1.3",
  6804. "phpstan/phpstan-strict-rules": "^1.1",
  6805. "symfony/phpunit-bridge": "^5"
  6806. },
  6807. "type": "library",
  6808. "extra": {
  6809. "branch-alias": {
  6810. "dev-main": "3.x-dev"
  6811. }
  6812. },
  6813. "autoload": {
  6814. "psr-4": {
  6815. "Composer\\Pcre\\": "src"
  6816. }
  6817. },
  6818. "notification-url": "https://packagist.org/downloads/",
  6819. "license": [
  6820. "MIT"
  6821. ],
  6822. "authors": [
  6823. {
  6824. "name": "Jordi Boggiano",
  6825. "email": "[email protected]",
  6826. "homepage": "http://seld.be"
  6827. }
  6828. ],
  6829. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  6830. "keywords": [
  6831. "PCRE",
  6832. "preg",
  6833. "regex",
  6834. "regular expression"
  6835. ],
  6836. "support": {
  6837. "issues": "https://github.com/composer/pcre/issues",
  6838. "source": "https://github.com/composer/pcre/tree/3.1.0"
  6839. },
  6840. "funding": [
  6841. {
  6842. "url": "https://packagist.com",
  6843. "type": "custom"
  6844. },
  6845. {
  6846. "url": "https://github.com/composer",
  6847. "type": "github"
  6848. },
  6849. {
  6850. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6851. "type": "tidelift"
  6852. }
  6853. ],
  6854. "time": "2022-11-17T09:50:14+00:00"
  6855. },
  6856. {
  6857. "name": "composer/semver",
  6858. "version": "3.3.2",
  6859. "source": {
  6860. "type": "git",
  6861. "url": "https://github.com/composer/semver.git",
  6862. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  6863. },
  6864. "dist": {
  6865. "type": "zip",
  6866. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  6867. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  6868. "shasum": ""
  6869. },
  6870. "require": {
  6871. "php": "^5.3.2 || ^7.0 || ^8.0"
  6872. },
  6873. "require-dev": {
  6874. "phpstan/phpstan": "^1.4",
  6875. "symfony/phpunit-bridge": "^4.2 || ^5"
  6876. },
  6877. "type": "library",
  6878. "extra": {
  6879. "branch-alias": {
  6880. "dev-main": "3.x-dev"
  6881. }
  6882. },
  6883. "autoload": {
  6884. "psr-4": {
  6885. "Composer\\Semver\\": "src"
  6886. }
  6887. },
  6888. "notification-url": "https://packagist.org/downloads/",
  6889. "license": [
  6890. "MIT"
  6891. ],
  6892. "authors": [
  6893. {
  6894. "name": "Nils Adermann",
  6895. "email": "[email protected]",
  6896. "homepage": "http://www.naderman.de"
  6897. },
  6898. {
  6899. "name": "Jordi Boggiano",
  6900. "email": "[email protected]",
  6901. "homepage": "http://seld.be"
  6902. },
  6903. {
  6904. "name": "Rob Bast",
  6905. "email": "[email protected]",
  6906. "homepage": "http://robbast.nl"
  6907. }
  6908. ],
  6909. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6910. "keywords": [
  6911. "semantic",
  6912. "semver",
  6913. "validation",
  6914. "versioning"
  6915. ],
  6916. "support": {
  6917. "irc": "irc://irc.freenode.org/composer",
  6918. "issues": "https://github.com/composer/semver/issues",
  6919. "source": "https://github.com/composer/semver/tree/3.3.2"
  6920. },
  6921. "funding": [
  6922. {
  6923. "url": "https://packagist.com",
  6924. "type": "custom"
  6925. },
  6926. {
  6927. "url": "https://github.com/composer",
  6928. "type": "github"
  6929. },
  6930. {
  6931. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6932. "type": "tidelift"
  6933. }
  6934. ],
  6935. "time": "2022-04-01T19:23:25+00:00"
  6936. },
  6937. {
  6938. "name": "composer/xdebug-handler",
  6939. "version": "3.0.3",
  6940. "source": {
  6941. "type": "git",
  6942. "url": "https://github.com/composer/xdebug-handler.git",
  6943. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  6944. },
  6945. "dist": {
  6946. "type": "zip",
  6947. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  6948. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  6949. "shasum": ""
  6950. },
  6951. "require": {
  6952. "composer/pcre": "^1 || ^2 || ^3",
  6953. "php": "^7.2.5 || ^8.0",
  6954. "psr/log": "^1 || ^2 || ^3"
  6955. },
  6956. "require-dev": {
  6957. "phpstan/phpstan": "^1.0",
  6958. "phpstan/phpstan-strict-rules": "^1.1",
  6959. "symfony/phpunit-bridge": "^6.0"
  6960. },
  6961. "type": "library",
  6962. "autoload": {
  6963. "psr-4": {
  6964. "Composer\\XdebugHandler\\": "src"
  6965. }
  6966. },
  6967. "notification-url": "https://packagist.org/downloads/",
  6968. "license": [
  6969. "MIT"
  6970. ],
  6971. "authors": [
  6972. {
  6973. "name": "John Stevenson",
  6974. "email": "[email protected]"
  6975. }
  6976. ],
  6977. "description": "Restarts a process without Xdebug.",
  6978. "keywords": [
  6979. "Xdebug",
  6980. "performance"
  6981. ],
  6982. "support": {
  6983. "irc": "irc://irc.freenode.org/composer",
  6984. "issues": "https://github.com/composer/xdebug-handler/issues",
  6985. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  6986. },
  6987. "funding": [
  6988. {
  6989. "url": "https://packagist.com",
  6990. "type": "custom"
  6991. },
  6992. {
  6993. "url": "https://github.com/composer",
  6994. "type": "github"
  6995. },
  6996. {
  6997. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6998. "type": "tidelift"
  6999. }
  7000. ],
  7001. "time": "2022-02-25T21:32:43+00:00"
  7002. },
  7003. {
  7004. "name": "dealerdirect/phpcodesniffer-composer-installer",
  7005. "version": "v1.0.0",
  7006. "source": {
  7007. "type": "git",
  7008. "url": "https://github.com/PHPCSStandards/composer-installer.git",
  7009. "reference": "4be43904336affa5c2f70744a348312336afd0da"
  7010. },
  7011. "dist": {
  7012. "type": "zip",
  7013. "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/4be43904336affa5c2f70744a348312336afd0da",
  7014. "reference": "4be43904336affa5c2f70744a348312336afd0da",
  7015. "shasum": ""
  7016. },
  7017. "require": {
  7018. "composer-plugin-api": "^1.0 || ^2.0",
  7019. "php": ">=5.4",
  7020. "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
  7021. },
  7022. "require-dev": {
  7023. "composer/composer": "*",
  7024. "ext-json": "*",
  7025. "ext-zip": "*",
  7026. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  7027. "phpcompatibility/php-compatibility": "^9.0",
  7028. "yoast/phpunit-polyfills": "^1.0"
  7029. },
  7030. "type": "composer-plugin",
  7031. "extra": {
  7032. "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
  7033. },
  7034. "autoload": {
  7035. "psr-4": {
  7036. "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
  7037. }
  7038. },
  7039. "notification-url": "https://packagist.org/downloads/",
  7040. "license": [
  7041. "MIT"
  7042. ],
  7043. "authors": [
  7044. {
  7045. "name": "Franck Nijhof",
  7046. "email": "[email protected]",
  7047. "homepage": "http://www.frenck.nl",
  7048. "role": "Developer / IT Manager"
  7049. },
  7050. {
  7051. "name": "Contributors",
  7052. "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
  7053. }
  7054. ],
  7055. "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
  7056. "homepage": "http://www.dealerdirect.com",
  7057. "keywords": [
  7058. "PHPCodeSniffer",
  7059. "PHP_CodeSniffer",
  7060. "code quality",
  7061. "codesniffer",
  7062. "composer",
  7063. "installer",
  7064. "phpcbf",
  7065. "phpcs",
  7066. "plugin",
  7067. "qa",
  7068. "quality",
  7069. "standard",
  7070. "standards",
  7071. "style guide",
  7072. "stylecheck",
  7073. "tests"
  7074. ],
  7075. "support": {
  7076. "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
  7077. "source": "https://github.com/PHPCSStandards/composer-installer"
  7078. },
  7079. "time": "2023-01-05T11:28:13+00:00"
  7080. },
  7081. {
  7082. "name": "doctrine/annotations",
  7083. "version": "2.0.1",
  7084. "source": {
  7085. "type": "git",
  7086. "url": "https://github.com/doctrine/annotations.git",
  7087. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  7088. },
  7089. "dist": {
  7090. "type": "zip",
  7091. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  7092. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  7093. "shasum": ""
  7094. },
  7095. "require": {
  7096. "doctrine/lexer": "^2 || ^3",
  7097. "ext-tokenizer": "*",
  7098. "php": "^7.2 || ^8.0",
  7099. "psr/cache": "^1 || ^2 || ^3"
  7100. },
  7101. "require-dev": {
  7102. "doctrine/cache": "^2.0",
  7103. "doctrine/coding-standard": "^10",
  7104. "phpstan/phpstan": "^1.8.0",
  7105. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  7106. "symfony/cache": "^5.4 || ^6",
  7107. "vimeo/psalm": "^4.10"
  7108. },
  7109. "suggest": {
  7110. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  7111. },
  7112. "type": "library",
  7113. "autoload": {
  7114. "psr-4": {
  7115. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  7116. }
  7117. },
  7118. "notification-url": "https://packagist.org/downloads/",
  7119. "license": [
  7120. "MIT"
  7121. ],
  7122. "authors": [
  7123. {
  7124. "name": "Guilherme Blanco",
  7125. "email": "[email protected]"
  7126. },
  7127. {
  7128. "name": "Roman Borschel",
  7129. "email": "[email protected]"
  7130. },
  7131. {
  7132. "name": "Benjamin Eberlei",
  7133. "email": "[email protected]"
  7134. },
  7135. {
  7136. "name": "Jonathan Wage",
  7137. "email": "[email protected]"
  7138. },
  7139. {
  7140. "name": "Johannes Schmitt",
  7141. "email": "[email protected]"
  7142. }
  7143. ],
  7144. "description": "Docblock Annotations Parser",
  7145. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  7146. "keywords": [
  7147. "annotations",
  7148. "docblock",
  7149. "parser"
  7150. ],
  7151. "support": {
  7152. "issues": "https://github.com/doctrine/annotations/issues",
  7153. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  7154. },
  7155. "time": "2023-02-02T22:02:53+00:00"
  7156. },
  7157. {
  7158. "name": "doctrine/lexer",
  7159. "version": "3.0.0",
  7160. "source": {
  7161. "type": "git",
  7162. "url": "https://github.com/doctrine/lexer.git",
  7163. "reference": "84a527db05647743d50373e0ec53a152f2cde568"
  7164. },
  7165. "dist": {
  7166. "type": "zip",
  7167. "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
  7168. "reference": "84a527db05647743d50373e0ec53a152f2cde568",
  7169. "shasum": ""
  7170. },
  7171. "require": {
  7172. "php": "^8.1"
  7173. },
  7174. "require-dev": {
  7175. "doctrine/coding-standard": "^10",
  7176. "phpstan/phpstan": "^1.9",
  7177. "phpunit/phpunit": "^9.5",
  7178. "psalm/plugin-phpunit": "^0.18.3",
  7179. "vimeo/psalm": "^5.0"
  7180. },
  7181. "type": "library",
  7182. "autoload": {
  7183. "psr-4": {
  7184. "Doctrine\\Common\\Lexer\\": "src"
  7185. }
  7186. },
  7187. "notification-url": "https://packagist.org/downloads/",
  7188. "license": [
  7189. "MIT"
  7190. ],
  7191. "authors": [
  7192. {
  7193. "name": "Guilherme Blanco",
  7194. "email": "[email protected]"
  7195. },
  7196. {
  7197. "name": "Roman Borschel",
  7198. "email": "[email protected]"
  7199. },
  7200. {
  7201. "name": "Johannes Schmitt",
  7202. "email": "[email protected]"
  7203. }
  7204. ],
  7205. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  7206. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  7207. "keywords": [
  7208. "annotations",
  7209. "docblock",
  7210. "lexer",
  7211. "parser",
  7212. "php"
  7213. ],
  7214. "support": {
  7215. "issues": "https://github.com/doctrine/lexer/issues",
  7216. "source": "https://github.com/doctrine/lexer/tree/3.0.0"
  7217. },
  7218. "funding": [
  7219. {
  7220. "url": "https://www.doctrine-project.org/sponsorship.html",
  7221. "type": "custom"
  7222. },
  7223. {
  7224. "url": "https://www.patreon.com/phpdoctrine",
  7225. "type": "patreon"
  7226. },
  7227. {
  7228. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  7229. "type": "tidelift"
  7230. }
  7231. ],
  7232. "time": "2022-12-15T16:57:16+00:00"
  7233. },
  7234. {
  7235. "name": "friendsofphp/php-cs-fixer",
  7236. "version": "v3.16.0",
  7237. "source": {
  7238. "type": "git",
  7239. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7240. "reference": "d40f9436e1c448d309fa995ab9c14c5c7a96f2dc"
  7241. },
  7242. "dist": {
  7243. "type": "zip",
  7244. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/d40f9436e1c448d309fa995ab9c14c5c7a96f2dc",
  7245. "reference": "d40f9436e1c448d309fa995ab9c14c5c7a96f2dc",
  7246. "shasum": ""
  7247. },
  7248. "require": {
  7249. "composer/semver": "^3.3",
  7250. "composer/xdebug-handler": "^3.0.3",
  7251. "doctrine/annotations": "^2",
  7252. "doctrine/lexer": "^2 || ^3",
  7253. "ext-json": "*",
  7254. "ext-tokenizer": "*",
  7255. "php": "^7.4 || ^8.0",
  7256. "sebastian/diff": "^4.0 || ^5.0",
  7257. "symfony/console": "^5.4 || ^6.0",
  7258. "symfony/event-dispatcher": "^5.4 || ^6.0",
  7259. "symfony/filesystem": "^5.4 || ^6.0",
  7260. "symfony/finder": "^5.4 || ^6.0",
  7261. "symfony/options-resolver": "^5.4 || ^6.0",
  7262. "symfony/polyfill-mbstring": "^1.27",
  7263. "symfony/polyfill-php80": "^1.27",
  7264. "symfony/polyfill-php81": "^1.27",
  7265. "symfony/process": "^5.4 || ^6.0",
  7266. "symfony/stopwatch": "^5.4 || ^6.0"
  7267. },
  7268. "require-dev": {
  7269. "justinrainbow/json-schema": "^5.2",
  7270. "keradus/cli-executor": "^2.0",
  7271. "mikey179/vfsstream": "^1.6.11",
  7272. "php-coveralls/php-coveralls": "^2.5.3",
  7273. "php-cs-fixer/accessible-object": "^1.1",
  7274. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
  7275. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
  7276. "phpspec/prophecy": "^1.16",
  7277. "phpspec/prophecy-phpunit": "^2.0",
  7278. "phpunit/phpunit": "^9.5",
  7279. "phpunitgoodpractices/polyfill": "^1.6",
  7280. "phpunitgoodpractices/traits": "^1.9.2",
  7281. "symfony/phpunit-bridge": "^6.2.3",
  7282. "symfony/yaml": "^5.4 || ^6.0"
  7283. },
  7284. "suggest": {
  7285. "ext-dom": "For handling output formats in XML",
  7286. "ext-mbstring": "For handling non-UTF8 characters."
  7287. },
  7288. "bin": [
  7289. "php-cs-fixer"
  7290. ],
  7291. "type": "application",
  7292. "autoload": {
  7293. "psr-4": {
  7294. "PhpCsFixer\\": "src/"
  7295. }
  7296. },
  7297. "notification-url": "https://packagist.org/downloads/",
  7298. "license": [
  7299. "MIT"
  7300. ],
  7301. "authors": [
  7302. {
  7303. "name": "Fabien Potencier",
  7304. "email": "[email protected]"
  7305. },
  7306. {
  7307. "name": "Dariusz Rumiński",
  7308. "email": "[email protected]"
  7309. }
  7310. ],
  7311. "description": "A tool to automatically fix PHP code style",
  7312. "keywords": [
  7313. "Static code analysis",
  7314. "fixer",
  7315. "standards",
  7316. "static analysis"
  7317. ],
  7318. "support": {
  7319. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7320. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.16.0"
  7321. },
  7322. "funding": [
  7323. {
  7324. "url": "https://github.com/keradus",
  7325. "type": "github"
  7326. }
  7327. ],
  7328. "time": "2023-04-02T19:30:06+00:00"
  7329. },
  7330. {
  7331. "name": "justinrainbow/json-schema",
  7332. "version": "5.2.12",
  7333. "source": {
  7334. "type": "git",
  7335. "url": "https://github.com/justinrainbow/json-schema.git",
  7336. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60"
  7337. },
  7338. "dist": {
  7339. "type": "zip",
  7340. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  7341. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  7342. "shasum": ""
  7343. },
  7344. "require": {
  7345. "php": ">=5.3.3"
  7346. },
  7347. "require-dev": {
  7348. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  7349. "json-schema/json-schema-test-suite": "1.2.0",
  7350. "phpunit/phpunit": "^4.8.35"
  7351. },
  7352. "bin": [
  7353. "bin/validate-json"
  7354. ],
  7355. "type": "library",
  7356. "extra": {
  7357. "branch-alias": {
  7358. "dev-master": "5.0.x-dev"
  7359. }
  7360. },
  7361. "autoload": {
  7362. "psr-4": {
  7363. "JsonSchema\\": "src/JsonSchema/"
  7364. }
  7365. },
  7366. "notification-url": "https://packagist.org/downloads/",
  7367. "license": [
  7368. "MIT"
  7369. ],
  7370. "authors": [
  7371. {
  7372. "name": "Bruno Prieto Reis",
  7373. "email": "[email protected]"
  7374. },
  7375. {
  7376. "name": "Justin Rainbow",
  7377. "email": "[email protected]"
  7378. },
  7379. {
  7380. "name": "Igor Wiedler",
  7381. "email": "[email protected]"
  7382. },
  7383. {
  7384. "name": "Robert Schönthal",
  7385. "email": "[email protected]"
  7386. }
  7387. ],
  7388. "description": "A library to validate a json schema.",
  7389. "homepage": "https://github.com/justinrainbow/json-schema",
  7390. "keywords": [
  7391. "json",
  7392. "schema"
  7393. ],
  7394. "support": {
  7395. "issues": "https://github.com/justinrainbow/json-schema/issues",
  7396. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.12"
  7397. },
  7398. "time": "2022-04-13T08:02:27+00:00"
  7399. },
  7400. {
  7401. "name": "league/container",
  7402. "version": "4.2.0",
  7403. "source": {
  7404. "type": "git",
  7405. "url": "https://github.com/thephpleague/container.git",
  7406. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  7407. },
  7408. "dist": {
  7409. "type": "zip",
  7410. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  7411. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  7412. "shasum": ""
  7413. },
  7414. "require": {
  7415. "php": "^7.2 || ^8.0",
  7416. "psr/container": "^1.1 || ^2.0"
  7417. },
  7418. "provide": {
  7419. "psr/container-implementation": "^1.0"
  7420. },
  7421. "replace": {
  7422. "orno/di": "~2.0"
  7423. },
  7424. "require-dev": {
  7425. "nette/php-generator": "^3.4",
  7426. "nikic/php-parser": "^4.10",
  7427. "phpstan/phpstan": "^0.12.47",
  7428. "phpunit/phpunit": "^8.5.17",
  7429. "roave/security-advisories": "dev-latest",
  7430. "scrutinizer/ocular": "^1.8",
  7431. "squizlabs/php_codesniffer": "^3.6"
  7432. },
  7433. "type": "library",
  7434. "extra": {
  7435. "branch-alias": {
  7436. "dev-master": "4.x-dev",
  7437. "dev-4.x": "4.x-dev",
  7438. "dev-3.x": "3.x-dev",
  7439. "dev-2.x": "2.x-dev",
  7440. "dev-1.x": "1.x-dev"
  7441. }
  7442. },
  7443. "autoload": {
  7444. "psr-4": {
  7445. "League\\Container\\": "src"
  7446. }
  7447. },
  7448. "notification-url": "https://packagist.org/downloads/",
  7449. "license": [
  7450. "MIT"
  7451. ],
  7452. "authors": [
  7453. {
  7454. "name": "Phil Bennett",
  7455. "email": "[email protected]",
  7456. "role": "Developer"
  7457. }
  7458. ],
  7459. "description": "A fast and intuitive dependency injection container.",
  7460. "homepage": "https://github.com/thephpleague/container",
  7461. "keywords": [
  7462. "container",
  7463. "dependency",
  7464. "di",
  7465. "injection",
  7466. "league",
  7467. "provider",
  7468. "service"
  7469. ],
  7470. "support": {
  7471. "issues": "https://github.com/thephpleague/container/issues",
  7472. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  7473. },
  7474. "funding": [
  7475. {
  7476. "url": "https://github.com/philipobenito",
  7477. "type": "github"
  7478. }
  7479. ],
  7480. "time": "2021-11-16T10:29:06+00:00"
  7481. },
  7482. {
  7483. "name": "nunomaduro/phpinsights",
  7484. "version": "v2.8.0",
  7485. "source": {
  7486. "type": "git",
  7487. "url": "https://github.com/nunomaduro/phpinsights.git",
  7488. "reference": "a701b7acfda9940ef0140c7276319df9026824c4"
  7489. },
  7490. "dist": {
  7491. "type": "zip",
  7492. "url": "https://api.github.com/repos/nunomaduro/phpinsights/zipball/a701b7acfda9940ef0140c7276319df9026824c4",
  7493. "reference": "a701b7acfda9940ef0140c7276319df9026824c4",
  7494. "shasum": ""
  7495. },
  7496. "require": {
  7497. "cmgmyr/phploc": "^8.0",
  7498. "composer/semver": "^3.3",
  7499. "ext-iconv": "*",
  7500. "ext-json": "*",
  7501. "ext-mbstring": "*",
  7502. "ext-tokenizer": "*",
  7503. "friendsofphp/php-cs-fixer": "^3.0.0",
  7504. "justinrainbow/json-schema": "^5.1",
  7505. "league/container": "^3.2|^4.2",
  7506. "php": "^7.4 || ^8.0 || ^8.1",
  7507. "php-parallel-lint/php-parallel-lint": "^1.3",
  7508. "psr/container": "^1.0|^2.0",
  7509. "psr/simple-cache": "^1.0|^2.0|^3.0",
  7510. "sebastian/diff": "^4.0|^5.0",
  7511. "slevomat/coding-standard": "^7.0.8|^8.0",
  7512. "squizlabs/php_codesniffer": "^3.5",
  7513. "symfony/cache": "^4.4|^5.0|^6.0",
  7514. "symfony/console": "^4.2.12|^5.0|^6.0",
  7515. "symfony/finder": "^4.2.12|^5.0|^6.0",
  7516. "symfony/http-client": "^4.3.8|^5.0|^6.0",
  7517. "symfony/process": "^5.4|^6.0"
  7518. },
  7519. "require-dev": {
  7520. "ergebnis/phpstan-rules": "^0.15.0",
  7521. "illuminate/console": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
  7522. "illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
  7523. "mockery/mockery": "^1.0",
  7524. "phpstan/phpstan-strict-rules": "^0.12",
  7525. "phpunit/phpunit": "^8.0|^9.0|^10.0",
  7526. "rector/rector": "0.11.56",
  7527. "symfony/var-dumper": "^4.2.12|^5.0|^6.0",
  7528. "thecodingmachine/phpstan-strict-rules": "^0.12.0"
  7529. },
  7530. "suggest": {
  7531. "ext-simplexml": "It is needed for the checkstyle formatter"
  7532. },
  7533. "bin": [
  7534. "bin/phpinsights"
  7535. ],
  7536. "type": "library",
  7537. "extra": {
  7538. "laravel": {
  7539. "providers": [
  7540. "NunoMaduro\\PhpInsights\\Application\\Adapters\\Laravel\\InsightsServiceProvider"
  7541. ]
  7542. }
  7543. },
  7544. "autoload": {
  7545. "psr-4": {
  7546. "NunoMaduro\\PhpInsights\\": "src"
  7547. }
  7548. },
  7549. "notification-url": "https://packagist.org/downloads/",
  7550. "license": [
  7551. "MIT"
  7552. ],
  7553. "authors": [
  7554. {
  7555. "name": "Nuno Maduro",
  7556. "email": "[email protected]"
  7557. }
  7558. ],
  7559. "description": "Instant PHP quality checks from your console.",
  7560. "keywords": [
  7561. "Insights",
  7562. "code",
  7563. "console",
  7564. "php",
  7565. "quality",
  7566. "source"
  7567. ],
  7568. "support": {
  7569. "issues": "https://github.com/nunomaduro/phpinsights/issues",
  7570. "source": "https://github.com/nunomaduro/phpinsights/tree/v2.8.0"
  7571. },
  7572. "funding": [
  7573. {
  7574. "url": "https://github.com/JustSteveKing",
  7575. "type": "github"
  7576. },
  7577. {
  7578. "url": "https://github.com/cmgmyr",
  7579. "type": "github"
  7580. },
  7581. {
  7582. "url": "https://github.com/nunomaduro",
  7583. "type": "github"
  7584. }
  7585. ],
  7586. "time": "2023-03-18T18:38:03+00:00"
  7587. },
  7588. {
  7589. "name": "php-parallel-lint/php-parallel-lint",
  7590. "version": "v1.3.2",
  7591. "source": {
  7592. "type": "git",
  7593. "url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
  7594. "reference": "6483c9832e71973ed29cf71bd6b3f4fde438a9de"
  7595. },
  7596. "dist": {
  7597. "type": "zip",
  7598. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/6483c9832e71973ed29cf71bd6b3f4fde438a9de",
  7599. "reference": "6483c9832e71973ed29cf71bd6b3f4fde438a9de",
  7600. "shasum": ""
  7601. },
  7602. "require": {
  7603. "ext-json": "*",
  7604. "php": ">=5.3.0"
  7605. },
  7606. "replace": {
  7607. "grogy/php-parallel-lint": "*",
  7608. "jakub-onderka/php-parallel-lint": "*"
  7609. },
  7610. "require-dev": {
  7611. "nette/tester": "^1.3 || ^2.0",
  7612. "php-parallel-lint/php-console-highlighter": "0.* || ^1.0",
  7613. "squizlabs/php_codesniffer": "^3.6"
  7614. },
  7615. "suggest": {
  7616. "php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
  7617. },
  7618. "bin": [
  7619. "parallel-lint"
  7620. ],
  7621. "type": "library",
  7622. "autoload": {
  7623. "classmap": [
  7624. "./src/"
  7625. ]
  7626. },
  7627. "notification-url": "https://packagist.org/downloads/",
  7628. "license": [
  7629. "BSD-2-Clause"
  7630. ],
  7631. "authors": [
  7632. {
  7633. "name": "Jakub Onderka",
  7634. "email": "[email protected]"
  7635. }
  7636. ],
  7637. "description": "This tool check syntax of PHP files about 20x faster than serial check.",
  7638. "homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
  7639. "support": {
  7640. "issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues",
  7641. "source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.3.2"
  7642. },
  7643. "time": "2022-02-21T12:50:22+00:00"
  7644. },
  7645. {
  7646. "name": "phpstan/phpdoc-parser",
  7647. "version": "1.20.4",
  7648. "source": {
  7649. "type": "git",
  7650. "url": "https://github.com/phpstan/phpdoc-parser.git",
  7651. "reference": "7d568c87a9df9c5f7e8b5f075fc469aa8cb0a4cd"
  7652. },
  7653. "dist": {
  7654. "type": "zip",
  7655. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/7d568c87a9df9c5f7e8b5f075fc469aa8cb0a4cd",
  7656. "reference": "7d568c87a9df9c5f7e8b5f075fc469aa8cb0a4cd",
  7657. "shasum": ""
  7658. },
  7659. "require": {
  7660. "php": "^7.2 || ^8.0"
  7661. },
  7662. "require-dev": {
  7663. "php-parallel-lint/php-parallel-lint": "^1.2",
  7664. "phpstan/extension-installer": "^1.0",
  7665. "phpstan/phpstan": "^1.5",
  7666. "phpstan/phpstan-phpunit": "^1.1",
  7667. "phpstan/phpstan-strict-rules": "^1.0",
  7668. "phpunit/phpunit": "^9.5",
  7669. "symfony/process": "^5.2"
  7670. },
  7671. "type": "library",
  7672. "autoload": {
  7673. "psr-4": {
  7674. "PHPStan\\PhpDocParser\\": [
  7675. "src/"
  7676. ]
  7677. }
  7678. },
  7679. "notification-url": "https://packagist.org/downloads/",
  7680. "license": [
  7681. "MIT"
  7682. ],
  7683. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  7684. "support": {
  7685. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  7686. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.20.4"
  7687. },
  7688. "time": "2023-05-02T09:19:37+00:00"
  7689. },
  7690. {
  7691. "name": "phpunit/php-file-iterator",
  7692. "version": "4.0.2",
  7693. "source": {
  7694. "type": "git",
  7695. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7696. "reference": "5647d65443818959172645e7ed999217360654b6"
  7697. },
  7698. "dist": {
  7699. "type": "zip",
  7700. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/5647d65443818959172645e7ed999217360654b6",
  7701. "reference": "5647d65443818959172645e7ed999217360654b6",
  7702. "shasum": ""
  7703. },
  7704. "require": {
  7705. "php": ">=8.1"
  7706. },
  7707. "require-dev": {
  7708. "phpunit/phpunit": "^10.0"
  7709. },
  7710. "type": "library",
  7711. "extra": {
  7712. "branch-alias": {
  7713. "dev-main": "4.0-dev"
  7714. }
  7715. },
  7716. "autoload": {
  7717. "classmap": [
  7718. "src/"
  7719. ]
  7720. },
  7721. "notification-url": "https://packagist.org/downloads/",
  7722. "license": [
  7723. "BSD-3-Clause"
  7724. ],
  7725. "authors": [
  7726. {
  7727. "name": "Sebastian Bergmann",
  7728. "email": "[email protected]",
  7729. "role": "lead"
  7730. }
  7731. ],
  7732. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7733. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7734. "keywords": [
  7735. "filesystem",
  7736. "iterator"
  7737. ],
  7738. "support": {
  7739. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7740. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  7741. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.0.2"
  7742. },
  7743. "funding": [
  7744. {
  7745. "url": "https://github.com/sebastianbergmann",
  7746. "type": "github"
  7747. }
  7748. ],
  7749. "time": "2023-05-07T09:13:23+00:00"
  7750. },
  7751. {
  7752. "name": "psr/cache",
  7753. "version": "3.0.0",
  7754. "source": {
  7755. "type": "git",
  7756. "url": "https://github.com/php-fig/cache.git",
  7757. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  7758. },
  7759. "dist": {
  7760. "type": "zip",
  7761. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  7762. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  7763. "shasum": ""
  7764. },
  7765. "require": {
  7766. "php": ">=8.0.0"
  7767. },
  7768. "type": "library",
  7769. "extra": {
  7770. "branch-alias": {
  7771. "dev-master": "1.0.x-dev"
  7772. }
  7773. },
  7774. "autoload": {
  7775. "psr-4": {
  7776. "Psr\\Cache\\": "src/"
  7777. }
  7778. },
  7779. "notification-url": "https://packagist.org/downloads/",
  7780. "license": [
  7781. "MIT"
  7782. ],
  7783. "authors": [
  7784. {
  7785. "name": "PHP-FIG",
  7786. "homepage": "https://www.php-fig.org/"
  7787. }
  7788. ],
  7789. "description": "Common interface for caching libraries",
  7790. "keywords": [
  7791. "cache",
  7792. "psr",
  7793. "psr-6"
  7794. ],
  7795. "support": {
  7796. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  7797. },
  7798. "time": "2021-02-03T23:26:27+00:00"
  7799. },
  7800. {
  7801. "name": "sebastian/cli-parser",
  7802. "version": "2.0.0",
  7803. "source": {
  7804. "type": "git",
  7805. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  7806. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae"
  7807. },
  7808. "dist": {
  7809. "type": "zip",
  7810. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae",
  7811. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae",
  7812. "shasum": ""
  7813. },
  7814. "require": {
  7815. "php": ">=8.1"
  7816. },
  7817. "require-dev": {
  7818. "phpunit/phpunit": "^10.0"
  7819. },
  7820. "type": "library",
  7821. "extra": {
  7822. "branch-alias": {
  7823. "dev-main": "2.0-dev"
  7824. }
  7825. },
  7826. "autoload": {
  7827. "classmap": [
  7828. "src/"
  7829. ]
  7830. },
  7831. "notification-url": "https://packagist.org/downloads/",
  7832. "license": [
  7833. "BSD-3-Clause"
  7834. ],
  7835. "authors": [
  7836. {
  7837. "name": "Sebastian Bergmann",
  7838. "email": "[email protected]",
  7839. "role": "lead"
  7840. }
  7841. ],
  7842. "description": "Library for parsing CLI options",
  7843. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  7844. "support": {
  7845. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  7846. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.0"
  7847. },
  7848. "funding": [
  7849. {
  7850. "url": "https://github.com/sebastianbergmann",
  7851. "type": "github"
  7852. }
  7853. ],
  7854. "time": "2023-02-03T06:58:15+00:00"
  7855. },
  7856. {
  7857. "name": "sebastian/diff",
  7858. "version": "5.0.3",
  7859. "source": {
  7860. "type": "git",
  7861. "url": "https://github.com/sebastianbergmann/diff.git",
  7862. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b"
  7863. },
  7864. "dist": {
  7865. "type": "zip",
  7866. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  7867. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  7868. "shasum": ""
  7869. },
  7870. "require": {
  7871. "php": ">=8.1"
  7872. },
  7873. "require-dev": {
  7874. "phpunit/phpunit": "^10.0",
  7875. "symfony/process": "^4.2 || ^5"
  7876. },
  7877. "type": "library",
  7878. "extra": {
  7879. "branch-alias": {
  7880. "dev-main": "5.0-dev"
  7881. }
  7882. },
  7883. "autoload": {
  7884. "classmap": [
  7885. "src/"
  7886. ]
  7887. },
  7888. "notification-url": "https://packagist.org/downloads/",
  7889. "license": [
  7890. "BSD-3-Clause"
  7891. ],
  7892. "authors": [
  7893. {
  7894. "name": "Sebastian Bergmann",
  7895. "email": "[email protected]"
  7896. },
  7897. {
  7898. "name": "Kore Nordmann",
  7899. "email": "[email protected]"
  7900. }
  7901. ],
  7902. "description": "Diff implementation",
  7903. "homepage": "https://github.com/sebastianbergmann/diff",
  7904. "keywords": [
  7905. "diff",
  7906. "udiff",
  7907. "unidiff",
  7908. "unified diff"
  7909. ],
  7910. "support": {
  7911. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7912. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  7913. "source": "https://github.com/sebastianbergmann/diff/tree/5.0.3"
  7914. },
  7915. "funding": [
  7916. {
  7917. "url": "https://github.com/sebastianbergmann",
  7918. "type": "github"
  7919. }
  7920. ],
  7921. "time": "2023-05-01T07:48:21+00:00"
  7922. },
  7923. {
  7924. "name": "sebastian/version",
  7925. "version": "4.0.1",
  7926. "source": {
  7927. "type": "git",
  7928. "url": "https://github.com/sebastianbergmann/version.git",
  7929. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  7930. },
  7931. "dist": {
  7932. "type": "zip",
  7933. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  7934. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  7935. "shasum": ""
  7936. },
  7937. "require": {
  7938. "php": ">=8.1"
  7939. },
  7940. "type": "library",
  7941. "extra": {
  7942. "branch-alias": {
  7943. "dev-main": "4.0-dev"
  7944. }
  7945. },
  7946. "autoload": {
  7947. "classmap": [
  7948. "src/"
  7949. ]
  7950. },
  7951. "notification-url": "https://packagist.org/downloads/",
  7952. "license": [
  7953. "BSD-3-Clause"
  7954. ],
  7955. "authors": [
  7956. {
  7957. "name": "Sebastian Bergmann",
  7958. "email": "[email protected]",
  7959. "role": "lead"
  7960. }
  7961. ],
  7962. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7963. "homepage": "https://github.com/sebastianbergmann/version",
  7964. "support": {
  7965. "issues": "https://github.com/sebastianbergmann/version/issues",
  7966. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  7967. },
  7968. "funding": [
  7969. {
  7970. "url": "https://github.com/sebastianbergmann",
  7971. "type": "github"
  7972. }
  7973. ],
  7974. "time": "2023-02-07T11:34:05+00:00"
  7975. },
  7976. {
  7977. "name": "slevomat/coding-standard",
  7978. "version": "8.11.1",
  7979. "source": {
  7980. "type": "git",
  7981. "url": "https://github.com/slevomat/coding-standard.git",
  7982. "reference": "af87461316b257e46e15bb041dca6fca3796d822"
  7983. },
  7984. "dist": {
  7985. "type": "zip",
  7986. "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/af87461316b257e46e15bb041dca6fca3796d822",
  7987. "reference": "af87461316b257e46e15bb041dca6fca3796d822",
  7988. "shasum": ""
  7989. },
  7990. "require": {
  7991. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0",
  7992. "php": "^7.2 || ^8.0",
  7993. "phpstan/phpdoc-parser": ">=1.20.0 <1.21.0",
  7994. "squizlabs/php_codesniffer": "^3.7.1"
  7995. },
  7996. "require-dev": {
  7997. "phing/phing": "2.17.4",
  7998. "php-parallel-lint/php-parallel-lint": "1.3.2",
  7999. "phpstan/phpstan": "1.10.14",
  8000. "phpstan/phpstan-deprecation-rules": "1.1.3",
  8001. "phpstan/phpstan-phpunit": "1.3.11",
  8002. "phpstan/phpstan-strict-rules": "1.5.1",
  8003. "phpunit/phpunit": "7.5.20|8.5.21|9.6.6|10.1.1"
  8004. },
  8005. "type": "phpcodesniffer-standard",
  8006. "extra": {
  8007. "branch-alias": {
  8008. "dev-master": "8.x-dev"
  8009. }
  8010. },
  8011. "autoload": {
  8012. "psr-4": {
  8013. "SlevomatCodingStandard\\": "SlevomatCodingStandard/"
  8014. }
  8015. },
  8016. "notification-url": "https://packagist.org/downloads/",
  8017. "license": [
  8018. "MIT"
  8019. ],
  8020. "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
  8021. "keywords": [
  8022. "dev",
  8023. "phpcs"
  8024. ],
  8025. "support": {
  8026. "issues": "https://github.com/slevomat/coding-standard/issues",
  8027. "source": "https://github.com/slevomat/coding-standard/tree/8.11.1"
  8028. },
  8029. "funding": [
  8030. {
  8031. "url": "https://github.com/kukulich",
  8032. "type": "github"
  8033. },
  8034. {
  8035. "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard",
  8036. "type": "tidelift"
  8037. }
  8038. ],
  8039. "time": "2023-04-24T08:19:01+00:00"
  8040. },
  8041. {
  8042. "name": "squizlabs/php_codesniffer",
  8043. "version": "3.7.2",
  8044. "source": {
  8045. "type": "git",
  8046. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  8047. "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879"
  8048. },
  8049. "dist": {
  8050. "type": "zip",
  8051. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ed8e00df0a83aa96acf703f8c2979ff33341f879",
  8052. "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879",
  8053. "shasum": ""
  8054. },
  8055. "require": {
  8056. "ext-simplexml": "*",
  8057. "ext-tokenizer": "*",
  8058. "ext-xmlwriter": "*",
  8059. "php": ">=5.4.0"
  8060. },
  8061. "require-dev": {
  8062. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  8063. },
  8064. "bin": [
  8065. "bin/phpcs",
  8066. "bin/phpcbf"
  8067. ],
  8068. "type": "library",
  8069. "extra": {
  8070. "branch-alias": {
  8071. "dev-master": "3.x-dev"
  8072. }
  8073. },
  8074. "notification-url": "https://packagist.org/downloads/",
  8075. "license": [
  8076. "BSD-3-Clause"
  8077. ],
  8078. "authors": [
  8079. {
  8080. "name": "Greg Sherwood",
  8081. "role": "lead"
  8082. }
  8083. ],
  8084. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  8085. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  8086. "keywords": [
  8087. "phpcs",
  8088. "standards",
  8089. "static analysis"
  8090. ],
  8091. "support": {
  8092. "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
  8093. "source": "https://github.com/squizlabs/PHP_CodeSniffer",
  8094. "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
  8095. },
  8096. "time": "2023-02-22T23:07:41+00:00"
  8097. },
  8098. {
  8099. "name": "symfony/cache",
  8100. "version": "v6.2.10",
  8101. "source": {
  8102. "type": "git",
  8103. "url": "https://github.com/symfony/cache.git",
  8104. "reference": "1ce7ed8e7ca6948892b6a3a52bb60cf2b04f7c94"
  8105. },
  8106. "dist": {
  8107. "type": "zip",
  8108. "url": "https://api.github.com/repos/symfony/cache/zipball/1ce7ed8e7ca6948892b6a3a52bb60cf2b04f7c94",
  8109. "reference": "1ce7ed8e7ca6948892b6a3a52bb60cf2b04f7c94",
  8110. "shasum": ""
  8111. },
  8112. "require": {
  8113. "php": ">=8.1",
  8114. "psr/cache": "^2.0|^3.0",
  8115. "psr/log": "^1.1|^2|^3",
  8116. "symfony/cache-contracts": "^1.1.7|^2|^3",
  8117. "symfony/service-contracts": "^1.1|^2|^3",
  8118. "symfony/var-exporter": "^6.2.10"
  8119. },
  8120. "conflict": {
  8121. "doctrine/dbal": "<2.13.1",
  8122. "symfony/dependency-injection": "<5.4",
  8123. "symfony/http-kernel": "<5.4",
  8124. "symfony/var-dumper": "<5.4"
  8125. },
  8126. "provide": {
  8127. "psr/cache-implementation": "2.0|3.0",
  8128. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  8129. "symfony/cache-implementation": "1.1|2.0|3.0"
  8130. },
  8131. "require-dev": {
  8132. "cache/integration-tests": "dev-master",
  8133. "doctrine/dbal": "^2.13.1|^3.0",
  8134. "predis/predis": "^1.1",
  8135. "psr/simple-cache": "^1.0|^2.0|^3.0",
  8136. "symfony/config": "^5.4|^6.0",
  8137. "symfony/dependency-injection": "^5.4|^6.0",
  8138. "symfony/filesystem": "^5.4|^6.0",
  8139. "symfony/http-kernel": "^5.4|^6.0",
  8140. "symfony/messenger": "^5.4|^6.0",
  8141. "symfony/var-dumper": "^5.4|^6.0"
  8142. },
  8143. "type": "library",
  8144. "autoload": {
  8145. "psr-4": {
  8146. "Symfony\\Component\\Cache\\": ""
  8147. },
  8148. "classmap": [
  8149. "Traits/ValueWrapper.php"
  8150. ],
  8151. "exclude-from-classmap": [
  8152. "/Tests/"
  8153. ]
  8154. },
  8155. "notification-url": "https://packagist.org/downloads/",
  8156. "license": [
  8157. "MIT"
  8158. ],
  8159. "authors": [
  8160. {
  8161. "name": "Nicolas Grekas",
  8162. "email": "[email protected]"
  8163. },
  8164. {
  8165. "name": "Symfony Community",
  8166. "homepage": "https://symfony.com/contributors"
  8167. }
  8168. ],
  8169. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  8170. "homepage": "https://symfony.com",
  8171. "keywords": [
  8172. "caching",
  8173. "psr6"
  8174. ],
  8175. "support": {
  8176. "source": "https://github.com/symfony/cache/tree/v6.2.10"
  8177. },
  8178. "funding": [
  8179. {
  8180. "url": "https://symfony.com/sponsor",
  8181. "type": "custom"
  8182. },
  8183. {
  8184. "url": "https://github.com/fabpot",
  8185. "type": "github"
  8186. },
  8187. {
  8188. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8189. "type": "tidelift"
  8190. }
  8191. ],
  8192. "time": "2023-04-21T15:42:15+00:00"
  8193. },
  8194. {
  8195. "name": "symfony/cache-contracts",
  8196. "version": "v3.3.0",
  8197. "source": {
  8198. "type": "git",
  8199. "url": "https://github.com/symfony/cache-contracts.git",
  8200. "reference": "ad945640ccc0ae6e208bcea7d7de4b39b569896b"
  8201. },
  8202. "dist": {
  8203. "type": "zip",
  8204. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/ad945640ccc0ae6e208bcea7d7de4b39b569896b",
  8205. "reference": "ad945640ccc0ae6e208bcea7d7de4b39b569896b",
  8206. "shasum": ""
  8207. },
  8208. "require": {
  8209. "php": ">=8.1",
  8210. "psr/cache": "^3.0"
  8211. },
  8212. "type": "library",
  8213. "extra": {
  8214. "branch-alias": {
  8215. "dev-main": "3.4-dev"
  8216. },
  8217. "thanks": {
  8218. "name": "symfony/contracts",
  8219. "url": "https://github.com/symfony/contracts"
  8220. }
  8221. },
  8222. "autoload": {
  8223. "psr-4": {
  8224. "Symfony\\Contracts\\Cache\\": ""
  8225. }
  8226. },
  8227. "notification-url": "https://packagist.org/downloads/",
  8228. "license": [
  8229. "MIT"
  8230. ],
  8231. "authors": [
  8232. {
  8233. "name": "Nicolas Grekas",
  8234. "email": "[email protected]"
  8235. },
  8236. {
  8237. "name": "Symfony Community",
  8238. "homepage": "https://symfony.com/contributors"
  8239. }
  8240. ],
  8241. "description": "Generic abstractions related to caching",
  8242. "homepage": "https://symfony.com",
  8243. "keywords": [
  8244. "abstractions",
  8245. "contracts",
  8246. "decoupling",
  8247. "interfaces",
  8248. "interoperability",
  8249. "standards"
  8250. ],
  8251. "support": {
  8252. "source": "https://github.com/symfony/cache-contracts/tree/v3.3.0"
  8253. },
  8254. "funding": [
  8255. {
  8256. "url": "https://symfony.com/sponsor",
  8257. "type": "custom"
  8258. },
  8259. {
  8260. "url": "https://github.com/fabpot",
  8261. "type": "github"
  8262. },
  8263. {
  8264. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8265. "type": "tidelift"
  8266. }
  8267. ],
  8268. "time": "2023-05-23T14:45:45+00:00"
  8269. },
  8270. {
  8271. "name": "symfony/event-dispatcher",
  8272. "version": "v6.2.8",
  8273. "source": {
  8274. "type": "git",
  8275. "url": "https://github.com/symfony/event-dispatcher.git",
  8276. "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339"
  8277. },
  8278. "dist": {
  8279. "type": "zip",
  8280. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
  8281. "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
  8282. "shasum": ""
  8283. },
  8284. "require": {
  8285. "php": ">=8.1",
  8286. "symfony/event-dispatcher-contracts": "^2|^3"
  8287. },
  8288. "conflict": {
  8289. "symfony/dependency-injection": "<5.4"
  8290. },
  8291. "provide": {
  8292. "psr/event-dispatcher-implementation": "1.0",
  8293. "symfony/event-dispatcher-implementation": "2.0|3.0"
  8294. },
  8295. "require-dev": {
  8296. "psr/log": "^1|^2|^3",
  8297. "symfony/config": "^5.4|^6.0",
  8298. "symfony/dependency-injection": "^5.4|^6.0",
  8299. "symfony/error-handler": "^5.4|^6.0",
  8300. "symfony/expression-language": "^5.4|^6.0",
  8301. "symfony/http-foundation": "^5.4|^6.0",
  8302. "symfony/service-contracts": "^1.1|^2|^3",
  8303. "symfony/stopwatch": "^5.4|^6.0"
  8304. },
  8305. "suggest": {
  8306. "symfony/dependency-injection": "",
  8307. "symfony/http-kernel": ""
  8308. },
  8309. "type": "library",
  8310. "autoload": {
  8311. "psr-4": {
  8312. "Symfony\\Component\\EventDispatcher\\": ""
  8313. },
  8314. "exclude-from-classmap": [
  8315. "/Tests/"
  8316. ]
  8317. },
  8318. "notification-url": "https://packagist.org/downloads/",
  8319. "license": [
  8320. "MIT"
  8321. ],
  8322. "authors": [
  8323. {
  8324. "name": "Fabien Potencier",
  8325. "email": "[email protected]"
  8326. },
  8327. {
  8328. "name": "Symfony Community",
  8329. "homepage": "https://symfony.com/contributors"
  8330. }
  8331. ],
  8332. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  8333. "homepage": "https://symfony.com",
  8334. "support": {
  8335. "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.8"
  8336. },
  8337. "funding": [
  8338. {
  8339. "url": "https://symfony.com/sponsor",
  8340. "type": "custom"
  8341. },
  8342. {
  8343. "url": "https://github.com/fabpot",
  8344. "type": "github"
  8345. },
  8346. {
  8347. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8348. "type": "tidelift"
  8349. }
  8350. ],
  8351. "time": "2023-03-20T16:06:02+00:00"
  8352. },
  8353. {
  8354. "name": "symfony/event-dispatcher-contracts",
  8355. "version": "v3.3.0",
  8356. "source": {
  8357. "type": "git",
  8358. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  8359. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  8360. },
  8361. "dist": {
  8362. "type": "zip",
  8363. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  8364. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  8365. "shasum": ""
  8366. },
  8367. "require": {
  8368. "php": ">=8.1",
  8369. "psr/event-dispatcher": "^1"
  8370. },
  8371. "type": "library",
  8372. "extra": {
  8373. "branch-alias": {
  8374. "dev-main": "3.4-dev"
  8375. },
  8376. "thanks": {
  8377. "name": "symfony/contracts",
  8378. "url": "https://github.com/symfony/contracts"
  8379. }
  8380. },
  8381. "autoload": {
  8382. "psr-4": {
  8383. "Symfony\\Contracts\\EventDispatcher\\": ""
  8384. }
  8385. },
  8386. "notification-url": "https://packagist.org/downloads/",
  8387. "license": [
  8388. "MIT"
  8389. ],
  8390. "authors": [
  8391. {
  8392. "name": "Nicolas Grekas",
  8393. "email": "[email protected]"
  8394. },
  8395. {
  8396. "name": "Symfony Community",
  8397. "homepage": "https://symfony.com/contributors"
  8398. }
  8399. ],
  8400. "description": "Generic abstractions related to dispatching event",
  8401. "homepage": "https://symfony.com",
  8402. "keywords": [
  8403. "abstractions",
  8404. "contracts",
  8405. "decoupling",
  8406. "interfaces",
  8407. "interoperability",
  8408. "standards"
  8409. ],
  8410. "support": {
  8411. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  8412. },
  8413. "funding": [
  8414. {
  8415. "url": "https://symfony.com/sponsor",
  8416. "type": "custom"
  8417. },
  8418. {
  8419. "url": "https://github.com/fabpot",
  8420. "type": "github"
  8421. },
  8422. {
  8423. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8424. "type": "tidelift"
  8425. }
  8426. ],
  8427. "time": "2023-05-23T14:45:45+00:00"
  8428. },
  8429. {
  8430. "name": "symfony/filesystem",
  8431. "version": "v6.2.10",
  8432. "source": {
  8433. "type": "git",
  8434. "url": "https://github.com/symfony/filesystem.git",
  8435. "reference": "fd588debf7d1bc16a2c84b4b3b71145d9946b894"
  8436. },
  8437. "dist": {
  8438. "type": "zip",
  8439. "url": "https://api.github.com/repos/symfony/filesystem/zipball/fd588debf7d1bc16a2c84b4b3b71145d9946b894",
  8440. "reference": "fd588debf7d1bc16a2c84b4b3b71145d9946b894",
  8441. "shasum": ""
  8442. },
  8443. "require": {
  8444. "php": ">=8.1",
  8445. "symfony/polyfill-ctype": "~1.8",
  8446. "symfony/polyfill-mbstring": "~1.8"
  8447. },
  8448. "type": "library",
  8449. "autoload": {
  8450. "psr-4": {
  8451. "Symfony\\Component\\Filesystem\\": ""
  8452. },
  8453. "exclude-from-classmap": [
  8454. "/Tests/"
  8455. ]
  8456. },
  8457. "notification-url": "https://packagist.org/downloads/",
  8458. "license": [
  8459. "MIT"
  8460. ],
  8461. "authors": [
  8462. {
  8463. "name": "Fabien Potencier",
  8464. "email": "[email protected]"
  8465. },
  8466. {
  8467. "name": "Symfony Community",
  8468. "homepage": "https://symfony.com/contributors"
  8469. }
  8470. ],
  8471. "description": "Provides basic utilities for the filesystem",
  8472. "homepage": "https://symfony.com",
  8473. "support": {
  8474. "source": "https://github.com/symfony/filesystem/tree/v6.2.10"
  8475. },
  8476. "funding": [
  8477. {
  8478. "url": "https://symfony.com/sponsor",
  8479. "type": "custom"
  8480. },
  8481. {
  8482. "url": "https://github.com/fabpot",
  8483. "type": "github"
  8484. },
  8485. {
  8486. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8487. "type": "tidelift"
  8488. }
  8489. ],
  8490. "time": "2023-04-18T13:46:08+00:00"
  8491. },
  8492. {
  8493. "name": "symfony/finder",
  8494. "version": "v6.2.7",
  8495. "source": {
  8496. "type": "git",
  8497. "url": "https://github.com/symfony/finder.git",
  8498. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb"
  8499. },
  8500. "dist": {
  8501. "type": "zip",
  8502. "url": "https://api.github.com/repos/symfony/finder/zipball/20808dc6631aecafbe67c186af5dcb370be3a0eb",
  8503. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb",
  8504. "shasum": ""
  8505. },
  8506. "require": {
  8507. "php": ">=8.1"
  8508. },
  8509. "require-dev": {
  8510. "symfony/filesystem": "^6.0"
  8511. },
  8512. "type": "library",
  8513. "autoload": {
  8514. "psr-4": {
  8515. "Symfony\\Component\\Finder\\": ""
  8516. },
  8517. "exclude-from-classmap": [
  8518. "/Tests/"
  8519. ]
  8520. },
  8521. "notification-url": "https://packagist.org/downloads/",
  8522. "license": [
  8523. "MIT"
  8524. ],
  8525. "authors": [
  8526. {
  8527. "name": "Fabien Potencier",
  8528. "email": "[email protected]"
  8529. },
  8530. {
  8531. "name": "Symfony Community",
  8532. "homepage": "https://symfony.com/contributors"
  8533. }
  8534. ],
  8535. "description": "Finds files and directories via an intuitive fluent interface",
  8536. "homepage": "https://symfony.com",
  8537. "support": {
  8538. "source": "https://github.com/symfony/finder/tree/v6.2.7"
  8539. },
  8540. "funding": [
  8541. {
  8542. "url": "https://symfony.com/sponsor",
  8543. "type": "custom"
  8544. },
  8545. {
  8546. "url": "https://github.com/fabpot",
  8547. "type": "github"
  8548. },
  8549. {
  8550. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8551. "type": "tidelift"
  8552. }
  8553. ],
  8554. "time": "2023-02-16T09:57:23+00:00"
  8555. },
  8556. {
  8557. "name": "symfony/polyfill-php81",
  8558. "version": "v1.27.0",
  8559. "source": {
  8560. "type": "git",
  8561. "url": "https://github.com/symfony/polyfill-php81.git",
  8562. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
  8563. },
  8564. "dist": {
  8565. "type": "zip",
  8566. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
  8567. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
  8568. "shasum": ""
  8569. },
  8570. "require": {
  8571. "php": ">=7.1"
  8572. },
  8573. "type": "library",
  8574. "extra": {
  8575. "branch-alias": {
  8576. "dev-main": "1.27-dev"
  8577. },
  8578. "thanks": {
  8579. "name": "symfony/polyfill",
  8580. "url": "https://github.com/symfony/polyfill"
  8581. }
  8582. },
  8583. "autoload": {
  8584. "files": [
  8585. "bootstrap.php"
  8586. ],
  8587. "psr-4": {
  8588. "Symfony\\Polyfill\\Php81\\": ""
  8589. },
  8590. "classmap": [
  8591. "Resources/stubs"
  8592. ]
  8593. },
  8594. "notification-url": "https://packagist.org/downloads/",
  8595. "license": [
  8596. "MIT"
  8597. ],
  8598. "authors": [
  8599. {
  8600. "name": "Nicolas Grekas",
  8601. "email": "[email protected]"
  8602. },
  8603. {
  8604. "name": "Symfony Community",
  8605. "homepage": "https://symfony.com/contributors"
  8606. }
  8607. ],
  8608. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  8609. "homepage": "https://symfony.com",
  8610. "keywords": [
  8611. "compatibility",
  8612. "polyfill",
  8613. "portable",
  8614. "shim"
  8615. ],
  8616. "support": {
  8617. "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
  8618. },
  8619. "funding": [
  8620. {
  8621. "url": "https://symfony.com/sponsor",
  8622. "type": "custom"
  8623. },
  8624. {
  8625. "url": "https://github.com/fabpot",
  8626. "type": "github"
  8627. },
  8628. {
  8629. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8630. "type": "tidelift"
  8631. }
  8632. ],
  8633. "time": "2022-11-03T14:55:06+00:00"
  8634. },
  8635. {
  8636. "name": "symfony/process",
  8637. "version": "v6.2.10",
  8638. "source": {
  8639. "type": "git",
  8640. "url": "https://github.com/symfony/process.git",
  8641. "reference": "b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e"
  8642. },
  8643. "dist": {
  8644. "type": "zip",
  8645. "url": "https://api.github.com/repos/symfony/process/zipball/b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e",
  8646. "reference": "b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e",
  8647. "shasum": ""
  8648. },
  8649. "require": {
  8650. "php": ">=8.1"
  8651. },
  8652. "type": "library",
  8653. "autoload": {
  8654. "psr-4": {
  8655. "Symfony\\Component\\Process\\": ""
  8656. },
  8657. "exclude-from-classmap": [
  8658. "/Tests/"
  8659. ]
  8660. },
  8661. "notification-url": "https://packagist.org/downloads/",
  8662. "license": [
  8663. "MIT"
  8664. ],
  8665. "authors": [
  8666. {
  8667. "name": "Fabien Potencier",
  8668. "email": "[email protected]"
  8669. },
  8670. {
  8671. "name": "Symfony Community",
  8672. "homepage": "https://symfony.com/contributors"
  8673. }
  8674. ],
  8675. "description": "Executes commands in sub-processes",
  8676. "homepage": "https://symfony.com",
  8677. "support": {
  8678. "source": "https://github.com/symfony/process/tree/v6.2.10"
  8679. },
  8680. "funding": [
  8681. {
  8682. "url": "https://symfony.com/sponsor",
  8683. "type": "custom"
  8684. },
  8685. {
  8686. "url": "https://github.com/fabpot",
  8687. "type": "github"
  8688. },
  8689. {
  8690. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8691. "type": "tidelift"
  8692. }
  8693. ],
  8694. "time": "2023-04-18T13:56:57+00:00"
  8695. },
  8696. {
  8697. "name": "symfony/stopwatch",
  8698. "version": "v6.2.7",
  8699. "source": {
  8700. "type": "git",
  8701. "url": "https://github.com/symfony/stopwatch.git",
  8702. "reference": "f3adc98c1061875dd2edcd45e5b04e63d0e29f8f"
  8703. },
  8704. "dist": {
  8705. "type": "zip",
  8706. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/f3adc98c1061875dd2edcd45e5b04e63d0e29f8f",
  8707. "reference": "f3adc98c1061875dd2edcd45e5b04e63d0e29f8f",
  8708. "shasum": ""
  8709. },
  8710. "require": {
  8711. "php": ">=8.1",
  8712. "symfony/service-contracts": "^1|^2|^3"
  8713. },
  8714. "type": "library",
  8715. "autoload": {
  8716. "psr-4": {
  8717. "Symfony\\Component\\Stopwatch\\": ""
  8718. },
  8719. "exclude-from-classmap": [
  8720. "/Tests/"
  8721. ]
  8722. },
  8723. "notification-url": "https://packagist.org/downloads/",
  8724. "license": [
  8725. "MIT"
  8726. ],
  8727. "authors": [
  8728. {
  8729. "name": "Fabien Potencier",
  8730. "email": "[email protected]"
  8731. },
  8732. {
  8733. "name": "Symfony Community",
  8734. "homepage": "https://symfony.com/contributors"
  8735. }
  8736. ],
  8737. "description": "Provides a way to profile code",
  8738. "homepage": "https://symfony.com",
  8739. "support": {
  8740. "source": "https://github.com/symfony/stopwatch/tree/v6.2.7"
  8741. },
  8742. "funding": [
  8743. {
  8744. "url": "https://symfony.com/sponsor",
  8745. "type": "custom"
  8746. },
  8747. {
  8748. "url": "https://github.com/fabpot",
  8749. "type": "github"
  8750. },
  8751. {
  8752. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8753. "type": "tidelift"
  8754. }
  8755. ],
  8756. "time": "2023-02-14T08:44:56+00:00"
  8757. },
  8758. {
  8759. "name": "symfony/var-exporter",
  8760. "version": "v6.2.10",
  8761. "source": {
  8762. "type": "git",
  8763. "url": "https://github.com/symfony/var-exporter.git",
  8764. "reference": "9a07920c2058bafee921ce4d90aeef2193837d63"
  8765. },
  8766. "dist": {
  8767. "type": "zip",
  8768. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/9a07920c2058bafee921ce4d90aeef2193837d63",
  8769. "reference": "9a07920c2058bafee921ce4d90aeef2193837d63",
  8770. "shasum": ""
  8771. },
  8772. "require": {
  8773. "php": ">=8.1"
  8774. },
  8775. "require-dev": {
  8776. "symfony/var-dumper": "^5.4|^6.0"
  8777. },
  8778. "type": "library",
  8779. "autoload": {
  8780. "psr-4": {
  8781. "Symfony\\Component\\VarExporter\\": ""
  8782. },
  8783. "exclude-from-classmap": [
  8784. "/Tests/"
  8785. ]
  8786. },
  8787. "notification-url": "https://packagist.org/downloads/",
  8788. "license": [
  8789. "MIT"
  8790. ],
  8791. "authors": [
  8792. {
  8793. "name": "Nicolas Grekas",
  8794. "email": "[email protected]"
  8795. },
  8796. {
  8797. "name": "Symfony Community",
  8798. "homepage": "https://symfony.com/contributors"
  8799. }
  8800. ],
  8801. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8802. "homepage": "https://symfony.com",
  8803. "keywords": [
  8804. "clone",
  8805. "construct",
  8806. "export",
  8807. "hydrate",
  8808. "instantiate",
  8809. "lazy-loading",
  8810. "proxy",
  8811. "serialize"
  8812. ],
  8813. "support": {
  8814. "source": "https://github.com/symfony/var-exporter/tree/v6.2.10"
  8815. },
  8816. "funding": [
  8817. {
  8818. "url": "https://symfony.com/sponsor",
  8819. "type": "custom"
  8820. },
  8821. {
  8822. "url": "https://github.com/fabpot",
  8823. "type": "github"
  8824. },
  8825. {
  8826. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8827. "type": "tidelift"
  8828. }
  8829. ],
  8830. "time": "2023-04-21T08:33:05+00:00"
  8831. }
  8832. ],
  8833. "aliases": [],
  8834. "minimum-stability": "stable",
  8835. "stability-flags": [],
  8836. "prefer-stable": false,
  8837. "prefer-lowest": false,
  8838. "platform": {
  8839. "php": "^8.0",
  8840. "ext-bcmath": "*",
  8841. "ext-curl": "*",
  8842. "ext-json": "*",
  8843. "ext-mysqli": "*",
  8844. "ext-openssl": "*",
  8845. "ext-pdo": "*",
  8846. "ext-xml": "*",
  8847. "ext-zip": "*"
  8848. },
  8849. "platform-dev": [],
  8850. "plugin-api-version": "2.3.0"
  8851. }