composer.lock 316 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878
  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.271.3",
  127. "source": {
  128. "type": "git",
  129. "url": "https://github.com/aws/aws-sdk-php.git",
  130. "reference": "f481134d37b8303fa2e82ca7fe2a3124144057f6"
  131. },
  132. "dist": {
  133. "type": "zip",
  134. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/f481134d37b8303fa2e82ca7fe2a3124144057f6",
  135. "reference": "f481134d37b8303fa2e82ca7fe2a3124144057f6",
  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.271.3"
  216. },
  217. "time": "2023-05-26T18:20:00+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.7",
  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.7",
  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.7",
  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.7",
  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.7",
  1370. "source": {
  1371. "type": "git",
  1372. "url": "https://github.com/illuminate/database.git",
  1373. "reference": "a2d8423c05ef70101b675d4552bd7bb36a6cc890"
  1374. },
  1375. "dist": {
  1376. "type": "zip",
  1377. "url": "https://api.github.com/repos/illuminate/database/zipball/a2d8423c05ef70101b675d4552bd7bb36a6cc890",
  1378. "reference": "a2d8423c05ef70101b675d4552bd7bb36a6cc890",
  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-03-13T03:00:40+00:00"
  1436. },
  1437. {
  1438. "name": "illuminate/macroable",
  1439. "version": "v9.52.7",
  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.7",
  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.7",
  1536. "source": {
  1537. "type": "git",
  1538. "url": "https://github.com/illuminate/support.git",
  1539. "reference": "5c38d755c5fa767d5b689867888ee4e5f53fc8a6"
  1540. },
  1541. "dist": {
  1542. "type": "zip",
  1543. "url": "https://api.github.com/repos/illuminate/support/zipball/5c38d755c5fa767d5b689867888ee4e5f53fc8a6",
  1544. "reference": "5c38d755c5fa767d5b689867888ee4e5f53fc8a6",
  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-04-04T18:35:58+00:00"
  1603. },
  1604. {
  1605. "name": "irazasyed/telegram-bot-sdk",
  1606. "version": "v3.12.0",
  1607. "source": {
  1608. "type": "git",
  1609. "url": "https://github.com/irazasyed/telegram-bot-sdk.git",
  1610. "reference": "2d0c0e57e7e55b3dd40abdb7624f18f091146465"
  1611. },
  1612. "dist": {
  1613. "type": "zip",
  1614. "url": "https://api.github.com/repos/irazasyed/telegram-bot-sdk/zipball/2d0c0e57e7e55b3dd40abdb7624f18f091146465",
  1615. "reference": "2d0c0e57e7e55b3dd40abdb7624f18f091146465",
  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.12.0"
  1684. },
  1685. "time": "2023-05-20T00:18:31+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.6",
  2018. "source": {
  2019. "type": "git",
  2020. "url": "https://github.com/mailgun/mailgun-php.git",
  2021. "reference": "897e799e48497c8fecc5d3142b32684a02c8aee5"
  2022. },
  2023. "dist": {
  2024. "type": "zip",
  2025. "url": "https://api.github.com/repos/mailgun/mailgun-php/zipball/897e799e48497c8fecc5d3142b32684a02c8aee5",
  2026. "reference": "897e799e48497c8fecc5d3142b32684a02c8aee5",
  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.6"
  2072. },
  2073. "time": "2023-04-08T16:43:42+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.66.0",
  2344. "source": {
  2345. "type": "git",
  2346. "url": "https://github.com/briannesbitt/Carbon.git",
  2347. "reference": "496712849902241f04902033b0441b269effe001"
  2348. },
  2349. "dist": {
  2350. "type": "zip",
  2351. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  2352. "reference": "496712849902241f04902033b0441b269effe001",
  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-01-29T18:53: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.1",
  2588. "source": {
  2589. "type": "git",
  2590. "url": "https://github.com/openai-php/client.git",
  2591. "reference": "34e732f07eec089eb5791730f9f06e6d1669d968"
  2592. },
  2593. "dist": {
  2594. "type": "zip",
  2595. "url": "https://api.github.com/repos/openai-php/client/zipball/34e732f07eec089eb5791730f9f06e6d1669d968",
  2596. "reference": "34e732f07eec089eb5791730f9f06e6d1669d968",
  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"
  2607. },
  2608. "require-dev": {
  2609. "guzzlehttp/guzzle": "^7.6.1",
  2610. "guzzlehttp/psr7": "^2.5.0",
  2611. "laravel/pint": "^1.10.0",
  2612. "nunomaduro/collision": "^7.5.2",
  2613. "pestphp/pest": "^2.6.1",
  2614. "pestphp/pest-plugin-arch": "^2.1.2",
  2615. "pestphp/pest-plugin-mock": "^2.0.0",
  2616. "phpstan/phpstan": "^1.10.15",
  2617. "rector/rector": "^0.14.8",
  2618. "symfony/var-dumper": "^6.2.10"
  2619. },
  2620. "type": "library",
  2621. "autoload": {
  2622. "files": [
  2623. "src/OpenAI.php"
  2624. ],
  2625. "psr-4": {
  2626. "OpenAI\\": "src/"
  2627. }
  2628. },
  2629. "notification-url": "https://packagist.org/downloads/",
  2630. "license": [
  2631. "MIT"
  2632. ],
  2633. "authors": [
  2634. {
  2635. "name": "Nuno Maduro",
  2636. "email": "[email protected]"
  2637. },
  2638. {
  2639. "name": "Sandro Gehri"
  2640. }
  2641. ],
  2642. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  2643. "keywords": [
  2644. "GPT-3",
  2645. "api",
  2646. "client",
  2647. "codex",
  2648. "dall-e",
  2649. "language",
  2650. "natural",
  2651. "openai",
  2652. "php",
  2653. "processing",
  2654. "sdk"
  2655. ],
  2656. "support": {
  2657. "issues": "https://github.com/openai-php/client/issues",
  2658. "source": "https://github.com/openai-php/client/tree/v0.5.1"
  2659. },
  2660. "funding": [
  2661. {
  2662. "url": "https://www.paypal.com/paypalme/enunomaduro",
  2663. "type": "custom"
  2664. },
  2665. {
  2666. "url": "https://github.com/gehrisandro",
  2667. "type": "github"
  2668. },
  2669. {
  2670. "url": "https://github.com/nunomaduro",
  2671. "type": "github"
  2672. }
  2673. ],
  2674. "time": "2023-05-24T15:57:04+00:00"
  2675. },
  2676. {
  2677. "name": "ozdemir/datatables",
  2678. "version": "2.3.6",
  2679. "source": {
  2680. "type": "git",
  2681. "url": "https://github.com/n1crack/datatables.git",
  2682. "reference": "94f050f9e29ed3f9a7b6718c535523209c4fdf20"
  2683. },
  2684. "dist": {
  2685. "type": "zip",
  2686. "url": "https://api.github.com/repos/n1crack/datatables/zipball/94f050f9e29ed3f9a7b6718c535523209c4fdf20",
  2687. "reference": "94f050f9e29ed3f9a7b6718c535523209c4fdf20",
  2688. "shasum": ""
  2689. },
  2690. "require": {
  2691. "php": ">=7.1.3"
  2692. },
  2693. "require-dev": {
  2694. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  2695. },
  2696. "type": "library",
  2697. "autoload": {
  2698. "psr-4": {
  2699. "Ozdemir\\Datatables\\": "src/"
  2700. }
  2701. },
  2702. "notification-url": "https://packagist.org/downloads/",
  2703. "license": [
  2704. "MIT"
  2705. ],
  2706. "authors": [
  2707. {
  2708. "name": "Yusuf Özdemir",
  2709. "email": "[email protected]"
  2710. }
  2711. ],
  2712. "description": "PHP Library to handle server-side processing for Datatables, in a fast and simple way.",
  2713. "support": {
  2714. "issues": "https://github.com/n1crack/datatables/issues",
  2715. "source": "https://github.com/n1crack/datatables/tree/2.3.6"
  2716. },
  2717. "time": "2022-01-16T12:22:19+00:00"
  2718. },
  2719. {
  2720. "name": "php-http/client-common",
  2721. "version": "2.7.0",
  2722. "source": {
  2723. "type": "git",
  2724. "url": "https://github.com/php-http/client-common.git",
  2725. "reference": "880509727a447474d2a71b7d7fa5d268ddd3db4b"
  2726. },
  2727. "dist": {
  2728. "type": "zip",
  2729. "url": "https://api.github.com/repos/php-http/client-common/zipball/880509727a447474d2a71b7d7fa5d268ddd3db4b",
  2730. "reference": "880509727a447474d2a71b7d7fa5d268ddd3db4b",
  2731. "shasum": ""
  2732. },
  2733. "require": {
  2734. "php": "^7.1 || ^8.0",
  2735. "php-http/httplug": "^2.0",
  2736. "php-http/message": "^1.6",
  2737. "psr/http-client": "^1.0",
  2738. "psr/http-factory": "^1.0",
  2739. "psr/http-message": "^1.0 || ^2.0",
  2740. "symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0",
  2741. "symfony/polyfill-php80": "^1.17"
  2742. },
  2743. "require-dev": {
  2744. "doctrine/instantiator": "^1.1",
  2745. "guzzlehttp/psr7": "^1.4",
  2746. "nyholm/psr7": "^1.2",
  2747. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  2748. "phpspec/prophecy": "^1.10.2",
  2749. "phpunit/phpunit": "^7.5.20 || ^8.5.33 || ^9.6.7"
  2750. },
  2751. "suggest": {
  2752. "ext-json": "To detect JSON responses with the ContentTypePlugin",
  2753. "ext-libxml": "To detect XML responses with the ContentTypePlugin",
  2754. "php-http/cache-plugin": "PSR-6 Cache plugin",
  2755. "php-http/logger-plugin": "PSR-3 Logger plugin",
  2756. "php-http/stopwatch-plugin": "Symfony Stopwatch plugin"
  2757. },
  2758. "type": "library",
  2759. "autoload": {
  2760. "psr-4": {
  2761. "Http\\Client\\Common\\": "src/"
  2762. }
  2763. },
  2764. "notification-url": "https://packagist.org/downloads/",
  2765. "license": [
  2766. "MIT"
  2767. ],
  2768. "authors": [
  2769. {
  2770. "name": "Márk Sági-Kazár",
  2771. "email": "[email protected]"
  2772. }
  2773. ],
  2774. "description": "Common HTTP Client implementations and tools for HTTPlug",
  2775. "homepage": "http://httplug.io",
  2776. "keywords": [
  2777. "client",
  2778. "common",
  2779. "http",
  2780. "httplug"
  2781. ],
  2782. "support": {
  2783. "issues": "https://github.com/php-http/client-common/issues",
  2784. "source": "https://github.com/php-http/client-common/tree/2.7.0"
  2785. },
  2786. "time": "2023-05-17T06:46:59+00:00"
  2787. },
  2788. {
  2789. "name": "php-http/discovery",
  2790. "version": "1.18.1",
  2791. "source": {
  2792. "type": "git",
  2793. "url": "https://github.com/php-http/discovery.git",
  2794. "reference": "f258b3a1d16acb7b21f3b42d7a2494a733365237"
  2795. },
  2796. "dist": {
  2797. "type": "zip",
  2798. "url": "https://api.github.com/repos/php-http/discovery/zipball/f258b3a1d16acb7b21f3b42d7a2494a733365237",
  2799. "reference": "f258b3a1d16acb7b21f3b42d7a2494a733365237",
  2800. "shasum": ""
  2801. },
  2802. "require": {
  2803. "composer-plugin-api": "^1.0|^2.0",
  2804. "php": "^7.1 || ^8.0"
  2805. },
  2806. "conflict": {
  2807. "nyholm/psr7": "<1.0",
  2808. "zendframework/zend-diactoros": "*"
  2809. },
  2810. "provide": {
  2811. "php-http/async-client-implementation": "*",
  2812. "php-http/client-implementation": "*",
  2813. "psr/http-client-implementation": "*",
  2814. "psr/http-factory-implementation": "*",
  2815. "psr/http-message-implementation": "*"
  2816. },
  2817. "require-dev": {
  2818. "composer/composer": "^1.0.2|^2.0",
  2819. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  2820. "php-http/httplug": "^1.0 || ^2.0",
  2821. "php-http/message-factory": "^1.0",
  2822. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  2823. "symfony/phpunit-bridge": "^6.2"
  2824. },
  2825. "type": "composer-plugin",
  2826. "extra": {
  2827. "class": "Http\\Discovery\\Composer\\Plugin",
  2828. "plugin-optional": true
  2829. },
  2830. "autoload": {
  2831. "psr-4": {
  2832. "Http\\Discovery\\": "src/"
  2833. },
  2834. "exclude-from-classmap": [
  2835. "src/Composer/Plugin.php"
  2836. ]
  2837. },
  2838. "notification-url": "https://packagist.org/downloads/",
  2839. "license": [
  2840. "MIT"
  2841. ],
  2842. "authors": [
  2843. {
  2844. "name": "Márk Sági-Kazár",
  2845. "email": "[email protected]"
  2846. }
  2847. ],
  2848. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  2849. "homepage": "http://php-http.org",
  2850. "keywords": [
  2851. "adapter",
  2852. "client",
  2853. "discovery",
  2854. "factory",
  2855. "http",
  2856. "message",
  2857. "psr17",
  2858. "psr7"
  2859. ],
  2860. "support": {
  2861. "issues": "https://github.com/php-http/discovery/issues",
  2862. "source": "https://github.com/php-http/discovery/tree/1.18.1"
  2863. },
  2864. "time": "2023-05-17T08:53:10+00:00"
  2865. },
  2866. {
  2867. "name": "php-http/guzzle7-adapter",
  2868. "version": "1.0.0",
  2869. "source": {
  2870. "type": "git",
  2871. "url": "https://github.com/php-http/guzzle7-adapter.git",
  2872. "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01"
  2873. },
  2874. "dist": {
  2875. "type": "zip",
  2876. "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01",
  2877. "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01",
  2878. "shasum": ""
  2879. },
  2880. "require": {
  2881. "guzzlehttp/guzzle": "^7.0",
  2882. "php": "^7.2 | ^8.0",
  2883. "php-http/httplug": "^2.0",
  2884. "psr/http-client": "^1.0"
  2885. },
  2886. "provide": {
  2887. "php-http/async-client-implementation": "1.0",
  2888. "php-http/client-implementation": "1.0",
  2889. "psr/http-client-implementation": "1.0"
  2890. },
  2891. "require-dev": {
  2892. "php-http/client-integration-tests": "^3.0",
  2893. "phpunit/phpunit": "^8.0|^9.3"
  2894. },
  2895. "type": "library",
  2896. "extra": {
  2897. "branch-alias": {
  2898. "dev-master": "0.2.x-dev"
  2899. }
  2900. },
  2901. "autoload": {
  2902. "psr-4": {
  2903. "Http\\Adapter\\Guzzle7\\": "src/"
  2904. }
  2905. },
  2906. "notification-url": "https://packagist.org/downloads/",
  2907. "license": [
  2908. "MIT"
  2909. ],
  2910. "authors": [
  2911. {
  2912. "name": "Tobias Nyholm",
  2913. "email": "[email protected]"
  2914. }
  2915. ],
  2916. "description": "Guzzle 7 HTTP Adapter",
  2917. "homepage": "http://httplug.io",
  2918. "keywords": [
  2919. "Guzzle",
  2920. "http"
  2921. ],
  2922. "support": {
  2923. "issues": "https://github.com/php-http/guzzle7-adapter/issues",
  2924. "source": "https://github.com/php-http/guzzle7-adapter/tree/1.0.0"
  2925. },
  2926. "time": "2021-03-09T07:35:15+00:00"
  2927. },
  2928. {
  2929. "name": "php-http/httplug",
  2930. "version": "2.4.0",
  2931. "source": {
  2932. "type": "git",
  2933. "url": "https://github.com/php-http/httplug.git",
  2934. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67"
  2935. },
  2936. "dist": {
  2937. "type": "zip",
  2938. "url": "https://api.github.com/repos/php-http/httplug/zipball/625ad742c360c8ac580fcc647a1541d29e257f67",
  2939. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67",
  2940. "shasum": ""
  2941. },
  2942. "require": {
  2943. "php": "^7.1 || ^8.0",
  2944. "php-http/promise": "^1.1",
  2945. "psr/http-client": "^1.0",
  2946. "psr/http-message": "^1.0 || ^2.0"
  2947. },
  2948. "require-dev": {
  2949. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  2950. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  2951. },
  2952. "type": "library",
  2953. "autoload": {
  2954. "psr-4": {
  2955. "Http\\Client\\": "src/"
  2956. }
  2957. },
  2958. "notification-url": "https://packagist.org/downloads/",
  2959. "license": [
  2960. "MIT"
  2961. ],
  2962. "authors": [
  2963. {
  2964. "name": "Eric GELOEN",
  2965. "email": "[email protected]"
  2966. },
  2967. {
  2968. "name": "Márk Sági-Kazár",
  2969. "email": "[email protected]",
  2970. "homepage": "https://sagikazarmark.hu"
  2971. }
  2972. ],
  2973. "description": "HTTPlug, the HTTP client abstraction for PHP",
  2974. "homepage": "http://httplug.io",
  2975. "keywords": [
  2976. "client",
  2977. "http"
  2978. ],
  2979. "support": {
  2980. "issues": "https://github.com/php-http/httplug/issues",
  2981. "source": "https://github.com/php-http/httplug/tree/2.4.0"
  2982. },
  2983. "time": "2023-04-14T15:10:03+00:00"
  2984. },
  2985. {
  2986. "name": "php-http/message",
  2987. "version": "1.16.0",
  2988. "source": {
  2989. "type": "git",
  2990. "url": "https://github.com/php-http/message.git",
  2991. "reference": "47a14338bf4ebd67d317bf1144253d7db4ab55fd"
  2992. },
  2993. "dist": {
  2994. "type": "zip",
  2995. "url": "https://api.github.com/repos/php-http/message/zipball/47a14338bf4ebd67d317bf1144253d7db4ab55fd",
  2996. "reference": "47a14338bf4ebd67d317bf1144253d7db4ab55fd",
  2997. "shasum": ""
  2998. },
  2999. "require": {
  3000. "clue/stream-filter": "^1.5",
  3001. "php": "^7.2 || ^8.0",
  3002. "psr/http-message": "^1.1 || ^2.0"
  3003. },
  3004. "provide": {
  3005. "php-http/message-factory-implementation": "1.0"
  3006. },
  3007. "require-dev": {
  3008. "ergebnis/composer-normalize": "^2.6",
  3009. "ext-zlib": "*",
  3010. "guzzlehttp/psr7": "^1.0 || ^2.0",
  3011. "laminas/laminas-diactoros": "^2.0 || ^3.0",
  3012. "php-http/message-factory": "^1.0.2",
  3013. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  3014. "slim/slim": "^3.0"
  3015. },
  3016. "suggest": {
  3017. "ext-zlib": "Used with compressor/decompressor streams",
  3018. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  3019. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  3020. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  3021. },
  3022. "type": "library",
  3023. "autoload": {
  3024. "files": [
  3025. "src/filters.php"
  3026. ],
  3027. "psr-4": {
  3028. "Http\\Message\\": "src/"
  3029. }
  3030. },
  3031. "notification-url": "https://packagist.org/downloads/",
  3032. "license": [
  3033. "MIT"
  3034. ],
  3035. "authors": [
  3036. {
  3037. "name": "Márk Sági-Kazár",
  3038. "email": "[email protected]"
  3039. }
  3040. ],
  3041. "description": "HTTP Message related tools",
  3042. "homepage": "http://php-http.org",
  3043. "keywords": [
  3044. "http",
  3045. "message",
  3046. "psr-7"
  3047. ],
  3048. "support": {
  3049. "issues": "https://github.com/php-http/message/issues",
  3050. "source": "https://github.com/php-http/message/tree/1.16.0"
  3051. },
  3052. "time": "2023-05-17T06:43:38+00:00"
  3053. },
  3054. {
  3055. "name": "php-http/message-factory",
  3056. "version": "1.1.0",
  3057. "source": {
  3058. "type": "git",
  3059. "url": "https://github.com/php-http/message-factory.git",
  3060. "reference": "4d8778e1c7d405cbb471574821c1ff5b68cc8f57"
  3061. },
  3062. "dist": {
  3063. "type": "zip",
  3064. "url": "https://api.github.com/repos/php-http/message-factory/zipball/4d8778e1c7d405cbb471574821c1ff5b68cc8f57",
  3065. "reference": "4d8778e1c7d405cbb471574821c1ff5b68cc8f57",
  3066. "shasum": ""
  3067. },
  3068. "require": {
  3069. "php": ">=5.4",
  3070. "psr/http-message": "^1.0 || ^2.0"
  3071. },
  3072. "type": "library",
  3073. "extra": {
  3074. "branch-alias": {
  3075. "dev-master": "1.x-dev"
  3076. }
  3077. },
  3078. "autoload": {
  3079. "psr-4": {
  3080. "Http\\Message\\": "src/"
  3081. }
  3082. },
  3083. "notification-url": "https://packagist.org/downloads/",
  3084. "license": [
  3085. "MIT"
  3086. ],
  3087. "authors": [
  3088. {
  3089. "name": "Márk Sági-Kazár",
  3090. "email": "[email protected]"
  3091. }
  3092. ],
  3093. "description": "Factory interfaces for PSR-7 HTTP Message",
  3094. "homepage": "http://php-http.org",
  3095. "keywords": [
  3096. "factory",
  3097. "http",
  3098. "message",
  3099. "stream",
  3100. "uri"
  3101. ],
  3102. "support": {
  3103. "issues": "https://github.com/php-http/message-factory/issues",
  3104. "source": "https://github.com/php-http/message-factory/tree/1.1.0"
  3105. },
  3106. "abandoned": "psr/http-factory",
  3107. "time": "2023-04-14T14:16:17+00:00"
  3108. },
  3109. {
  3110. "name": "php-http/multipart-stream-builder",
  3111. "version": "1.3.0",
  3112. "source": {
  3113. "type": "git",
  3114. "url": "https://github.com/php-http/multipart-stream-builder.git",
  3115. "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a"
  3116. },
  3117. "dist": {
  3118. "type": "zip",
  3119. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/f5938fd135d9fa442cc297dc98481805acfe2b6a",
  3120. "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a",
  3121. "shasum": ""
  3122. },
  3123. "require": {
  3124. "php": "^7.1 || ^8.0",
  3125. "php-http/discovery": "^1.15",
  3126. "psr/http-factory-implementation": "^1.0"
  3127. },
  3128. "require-dev": {
  3129. "nyholm/psr7": "^1.0",
  3130. "php-http/message": "^1.5",
  3131. "php-http/message-factory": "^1.0.2",
  3132. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  3133. },
  3134. "type": "library",
  3135. "autoload": {
  3136. "psr-4": {
  3137. "Http\\Message\\MultipartStream\\": "src/"
  3138. }
  3139. },
  3140. "notification-url": "https://packagist.org/downloads/",
  3141. "license": [
  3142. "MIT"
  3143. ],
  3144. "authors": [
  3145. {
  3146. "name": "Tobias Nyholm",
  3147. "email": "[email protected]"
  3148. }
  3149. ],
  3150. "description": "A builder class that help you create a multipart stream",
  3151. "homepage": "http://php-http.org",
  3152. "keywords": [
  3153. "factory",
  3154. "http",
  3155. "message",
  3156. "multipart stream",
  3157. "stream"
  3158. ],
  3159. "support": {
  3160. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  3161. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.3.0"
  3162. },
  3163. "time": "2023-04-28T14:10:22+00:00"
  3164. },
  3165. {
  3166. "name": "php-http/promise",
  3167. "version": "1.1.0",
  3168. "source": {
  3169. "type": "git",
  3170. "url": "https://github.com/php-http/promise.git",
  3171. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88"
  3172. },
  3173. "dist": {
  3174. "type": "zip",
  3175. "url": "https://api.github.com/repos/php-http/promise/zipball/4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  3176. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  3177. "shasum": ""
  3178. },
  3179. "require": {
  3180. "php": "^7.1 || ^8.0"
  3181. },
  3182. "require-dev": {
  3183. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2",
  3184. "phpspec/phpspec": "^5.1.2 || ^6.2"
  3185. },
  3186. "type": "library",
  3187. "extra": {
  3188. "branch-alias": {
  3189. "dev-master": "1.1-dev"
  3190. }
  3191. },
  3192. "autoload": {
  3193. "psr-4": {
  3194. "Http\\Promise\\": "src/"
  3195. }
  3196. },
  3197. "notification-url": "https://packagist.org/downloads/",
  3198. "license": [
  3199. "MIT"
  3200. ],
  3201. "authors": [
  3202. {
  3203. "name": "Joel Wurtz",
  3204. "email": "[email protected]"
  3205. },
  3206. {
  3207. "name": "Márk Sági-Kazár",
  3208. "email": "[email protected]"
  3209. }
  3210. ],
  3211. "description": "Promise used for asynchronous HTTP requests",
  3212. "homepage": "http://httplug.io",
  3213. "keywords": [
  3214. "promise"
  3215. ],
  3216. "support": {
  3217. "issues": "https://github.com/php-http/promise/issues",
  3218. "source": "https://github.com/php-http/promise/tree/1.1.0"
  3219. },
  3220. "time": "2020-07-07T09:29:14+00:00"
  3221. },
  3222. {
  3223. "name": "phpmailer/phpmailer",
  3224. "version": "v6.8.0",
  3225. "source": {
  3226. "type": "git",
  3227. "url": "https://github.com/PHPMailer/PHPMailer.git",
  3228. "reference": "df16b615e371d81fb79e506277faea67a1be18f1"
  3229. },
  3230. "dist": {
  3231. "type": "zip",
  3232. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/df16b615e371d81fb79e506277faea67a1be18f1",
  3233. "reference": "df16b615e371d81fb79e506277faea67a1be18f1",
  3234. "shasum": ""
  3235. },
  3236. "require": {
  3237. "ext-ctype": "*",
  3238. "ext-filter": "*",
  3239. "ext-hash": "*",
  3240. "php": ">=5.5.0"
  3241. },
  3242. "require-dev": {
  3243. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
  3244. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  3245. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  3246. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  3247. "phpcompatibility/php-compatibility": "^9.3.5",
  3248. "roave/security-advisories": "dev-latest",
  3249. "squizlabs/php_codesniffer": "^3.7.1",
  3250. "yoast/phpunit-polyfills": "^1.0.4"
  3251. },
  3252. "suggest": {
  3253. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  3254. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  3255. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  3256. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  3257. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  3258. "psr/log": "For optional PSR-3 debug logging",
  3259. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  3260. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  3261. },
  3262. "type": "library",
  3263. "autoload": {
  3264. "psr-4": {
  3265. "PHPMailer\\PHPMailer\\": "src/"
  3266. }
  3267. },
  3268. "notification-url": "https://packagist.org/downloads/",
  3269. "license": [
  3270. "LGPL-2.1-only"
  3271. ],
  3272. "authors": [
  3273. {
  3274. "name": "Marcus Bointon",
  3275. "email": "[email protected]"
  3276. },
  3277. {
  3278. "name": "Jim Jagielski",
  3279. "email": "[email protected]"
  3280. },
  3281. {
  3282. "name": "Andy Prevost",
  3283. "email": "[email protected]"
  3284. },
  3285. {
  3286. "name": "Brent R. Matzelle"
  3287. }
  3288. ],
  3289. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  3290. "support": {
  3291. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  3292. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.8.0"
  3293. },
  3294. "funding": [
  3295. {
  3296. "url": "https://github.com/Synchro",
  3297. "type": "github"
  3298. }
  3299. ],
  3300. "time": "2023-03-06T14:43:22+00:00"
  3301. },
  3302. {
  3303. "name": "postal/postal",
  3304. "version": "v1.0.1",
  3305. "source": {
  3306. "type": "git",
  3307. "url": "https://github.com/postalserver/postal-php.git",
  3308. "reference": "7656516590fe1a409b94833000e14fcf87c61c72"
  3309. },
  3310. "dist": {
  3311. "type": "zip",
  3312. "url": "https://api.github.com/repos/postalserver/postal-php/zipball/7656516590fe1a409b94833000e14fcf87c61c72",
  3313. "reference": "7656516590fe1a409b94833000e14fcf87c61c72",
  3314. "shasum": ""
  3315. },
  3316. "require": {
  3317. "php": ">=5.4",
  3318. "rmccue/requests": "^1.0"
  3319. },
  3320. "type": "library",
  3321. "autoload": {
  3322. "psr-4": {
  3323. "Postal\\": "src/"
  3324. }
  3325. },
  3326. "notification-url": "https://packagist.org/downloads/",
  3327. "license": [
  3328. "MIT"
  3329. ],
  3330. "authors": [
  3331. {
  3332. "name": "Adam Cooke",
  3333. "email": "[email protected]"
  3334. }
  3335. ],
  3336. "description": "Postal for PHP library.",
  3337. "homepage": "https://github.com/atech/postal",
  3338. "keywords": [
  3339. "mail",
  3340. "postal"
  3341. ],
  3342. "support": {
  3343. "issues": "https://github.com/postalserver/postal-php/issues",
  3344. "source": "https://github.com/postalserver/postal-php/tree/v1.0.1"
  3345. },
  3346. "time": "2022-01-27T10:58:08+00:00"
  3347. },
  3348. {
  3349. "name": "psr/container",
  3350. "version": "2.0.2",
  3351. "source": {
  3352. "type": "git",
  3353. "url": "https://github.com/php-fig/container.git",
  3354. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3355. },
  3356. "dist": {
  3357. "type": "zip",
  3358. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3359. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3360. "shasum": ""
  3361. },
  3362. "require": {
  3363. "php": ">=7.4.0"
  3364. },
  3365. "type": "library",
  3366. "extra": {
  3367. "branch-alias": {
  3368. "dev-master": "2.0.x-dev"
  3369. }
  3370. },
  3371. "autoload": {
  3372. "psr-4": {
  3373. "Psr\\Container\\": "src/"
  3374. }
  3375. },
  3376. "notification-url": "https://packagist.org/downloads/",
  3377. "license": [
  3378. "MIT"
  3379. ],
  3380. "authors": [
  3381. {
  3382. "name": "PHP-FIG",
  3383. "homepage": "https://www.php-fig.org/"
  3384. }
  3385. ],
  3386. "description": "Common Container Interface (PHP FIG PSR-11)",
  3387. "homepage": "https://github.com/php-fig/container",
  3388. "keywords": [
  3389. "PSR-11",
  3390. "container",
  3391. "container-interface",
  3392. "container-interop",
  3393. "psr"
  3394. ],
  3395. "support": {
  3396. "issues": "https://github.com/php-fig/container/issues",
  3397. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3398. },
  3399. "time": "2021-11-05T16:47:00+00:00"
  3400. },
  3401. {
  3402. "name": "psr/event-dispatcher",
  3403. "version": "1.0.0",
  3404. "source": {
  3405. "type": "git",
  3406. "url": "https://github.com/php-fig/event-dispatcher.git",
  3407. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3408. },
  3409. "dist": {
  3410. "type": "zip",
  3411. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3412. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3413. "shasum": ""
  3414. },
  3415. "require": {
  3416. "php": ">=7.2.0"
  3417. },
  3418. "type": "library",
  3419. "extra": {
  3420. "branch-alias": {
  3421. "dev-master": "1.0.x-dev"
  3422. }
  3423. },
  3424. "autoload": {
  3425. "psr-4": {
  3426. "Psr\\EventDispatcher\\": "src/"
  3427. }
  3428. },
  3429. "notification-url": "https://packagist.org/downloads/",
  3430. "license": [
  3431. "MIT"
  3432. ],
  3433. "authors": [
  3434. {
  3435. "name": "PHP-FIG",
  3436. "homepage": "http://www.php-fig.org/"
  3437. }
  3438. ],
  3439. "description": "Standard interfaces for event handling.",
  3440. "keywords": [
  3441. "events",
  3442. "psr",
  3443. "psr-14"
  3444. ],
  3445. "support": {
  3446. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3447. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3448. },
  3449. "time": "2019-01-08T18:20:26+00:00"
  3450. },
  3451. {
  3452. "name": "psr/http-client",
  3453. "version": "1.0.2",
  3454. "source": {
  3455. "type": "git",
  3456. "url": "https://github.com/php-fig/http-client.git",
  3457. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
  3458. },
  3459. "dist": {
  3460. "type": "zip",
  3461. "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  3462. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  3463. "shasum": ""
  3464. },
  3465. "require": {
  3466. "php": "^7.0 || ^8.0",
  3467. "psr/http-message": "^1.0 || ^2.0"
  3468. },
  3469. "type": "library",
  3470. "extra": {
  3471. "branch-alias": {
  3472. "dev-master": "1.0.x-dev"
  3473. }
  3474. },
  3475. "autoload": {
  3476. "psr-4": {
  3477. "Psr\\Http\\Client\\": "src/"
  3478. }
  3479. },
  3480. "notification-url": "https://packagist.org/downloads/",
  3481. "license": [
  3482. "MIT"
  3483. ],
  3484. "authors": [
  3485. {
  3486. "name": "PHP-FIG",
  3487. "homepage": "https://www.php-fig.org/"
  3488. }
  3489. ],
  3490. "description": "Common interface for HTTP clients",
  3491. "homepage": "https://github.com/php-fig/http-client",
  3492. "keywords": [
  3493. "http",
  3494. "http-client",
  3495. "psr",
  3496. "psr-18"
  3497. ],
  3498. "support": {
  3499. "source": "https://github.com/php-fig/http-client/tree/1.0.2"
  3500. },
  3501. "time": "2023-04-10T20:12:12+00:00"
  3502. },
  3503. {
  3504. "name": "psr/http-factory",
  3505. "version": "1.0.2",
  3506. "source": {
  3507. "type": "git",
  3508. "url": "https://github.com/php-fig/http-factory.git",
  3509. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  3510. },
  3511. "dist": {
  3512. "type": "zip",
  3513. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  3514. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  3515. "shasum": ""
  3516. },
  3517. "require": {
  3518. "php": ">=7.0.0",
  3519. "psr/http-message": "^1.0 || ^2.0"
  3520. },
  3521. "type": "library",
  3522. "extra": {
  3523. "branch-alias": {
  3524. "dev-master": "1.0.x-dev"
  3525. }
  3526. },
  3527. "autoload": {
  3528. "psr-4": {
  3529. "Psr\\Http\\Message\\": "src/"
  3530. }
  3531. },
  3532. "notification-url": "https://packagist.org/downloads/",
  3533. "license": [
  3534. "MIT"
  3535. ],
  3536. "authors": [
  3537. {
  3538. "name": "PHP-FIG",
  3539. "homepage": "https://www.php-fig.org/"
  3540. }
  3541. ],
  3542. "description": "Common interfaces for PSR-7 HTTP message factories",
  3543. "keywords": [
  3544. "factory",
  3545. "http",
  3546. "message",
  3547. "psr",
  3548. "psr-17",
  3549. "psr-7",
  3550. "request",
  3551. "response"
  3552. ],
  3553. "support": {
  3554. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  3555. },
  3556. "time": "2023-04-10T20:10:41+00:00"
  3557. },
  3558. {
  3559. "name": "psr/http-message",
  3560. "version": "1.1",
  3561. "source": {
  3562. "type": "git",
  3563. "url": "https://github.com/php-fig/http-message.git",
  3564. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  3565. },
  3566. "dist": {
  3567. "type": "zip",
  3568. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3569. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3570. "shasum": ""
  3571. },
  3572. "require": {
  3573. "php": "^7.2 || ^8.0"
  3574. },
  3575. "type": "library",
  3576. "extra": {
  3577. "branch-alias": {
  3578. "dev-master": "1.1.x-dev"
  3579. }
  3580. },
  3581. "autoload": {
  3582. "psr-4": {
  3583. "Psr\\Http\\Message\\": "src/"
  3584. }
  3585. },
  3586. "notification-url": "https://packagist.org/downloads/",
  3587. "license": [
  3588. "MIT"
  3589. ],
  3590. "authors": [
  3591. {
  3592. "name": "PHP-FIG",
  3593. "homepage": "http://www.php-fig.org/"
  3594. }
  3595. ],
  3596. "description": "Common interface for HTTP messages",
  3597. "homepage": "https://github.com/php-fig/http-message",
  3598. "keywords": [
  3599. "http",
  3600. "http-message",
  3601. "psr",
  3602. "psr-7",
  3603. "request",
  3604. "response"
  3605. ],
  3606. "support": {
  3607. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3608. },
  3609. "time": "2023-04-04T09:50:52+00:00"
  3610. },
  3611. {
  3612. "name": "psr/http-server-handler",
  3613. "version": "1.0.2",
  3614. "source": {
  3615. "type": "git",
  3616. "url": "https://github.com/php-fig/http-server-handler.git",
  3617. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  3618. },
  3619. "dist": {
  3620. "type": "zip",
  3621. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  3622. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  3623. "shasum": ""
  3624. },
  3625. "require": {
  3626. "php": ">=7.0",
  3627. "psr/http-message": "^1.0 || ^2.0"
  3628. },
  3629. "type": "library",
  3630. "extra": {
  3631. "branch-alias": {
  3632. "dev-master": "1.0.x-dev"
  3633. }
  3634. },
  3635. "autoload": {
  3636. "psr-4": {
  3637. "Psr\\Http\\Server\\": "src/"
  3638. }
  3639. },
  3640. "notification-url": "https://packagist.org/downloads/",
  3641. "license": [
  3642. "MIT"
  3643. ],
  3644. "authors": [
  3645. {
  3646. "name": "PHP-FIG",
  3647. "homepage": "https://www.php-fig.org/"
  3648. }
  3649. ],
  3650. "description": "Common interface for HTTP server-side request handler",
  3651. "keywords": [
  3652. "handler",
  3653. "http",
  3654. "http-interop",
  3655. "psr",
  3656. "psr-15",
  3657. "psr-7",
  3658. "request",
  3659. "response",
  3660. "server"
  3661. ],
  3662. "support": {
  3663. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  3664. },
  3665. "time": "2023-04-10T20:06:20+00:00"
  3666. },
  3667. {
  3668. "name": "psr/http-server-middleware",
  3669. "version": "1.0.2",
  3670. "source": {
  3671. "type": "git",
  3672. "url": "https://github.com/php-fig/http-server-middleware.git",
  3673. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  3674. },
  3675. "dist": {
  3676. "type": "zip",
  3677. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  3678. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  3679. "shasum": ""
  3680. },
  3681. "require": {
  3682. "php": ">=7.0",
  3683. "psr/http-message": "^1.0 || ^2.0",
  3684. "psr/http-server-handler": "^1.0"
  3685. },
  3686. "type": "library",
  3687. "extra": {
  3688. "branch-alias": {
  3689. "dev-master": "1.0.x-dev"
  3690. }
  3691. },
  3692. "autoload": {
  3693. "psr-4": {
  3694. "Psr\\Http\\Server\\": "src/"
  3695. }
  3696. },
  3697. "notification-url": "https://packagist.org/downloads/",
  3698. "license": [
  3699. "MIT"
  3700. ],
  3701. "authors": [
  3702. {
  3703. "name": "PHP-FIG",
  3704. "homepage": "https://www.php-fig.org/"
  3705. }
  3706. ],
  3707. "description": "Common interface for HTTP server-side middleware",
  3708. "keywords": [
  3709. "http",
  3710. "http-interop",
  3711. "middleware",
  3712. "psr",
  3713. "psr-15",
  3714. "psr-7",
  3715. "request",
  3716. "response"
  3717. ],
  3718. "support": {
  3719. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  3720. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  3721. },
  3722. "time": "2023-04-11T06:14:47+00:00"
  3723. },
  3724. {
  3725. "name": "psr/log",
  3726. "version": "3.0.0",
  3727. "source": {
  3728. "type": "git",
  3729. "url": "https://github.com/php-fig/log.git",
  3730. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  3731. },
  3732. "dist": {
  3733. "type": "zip",
  3734. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3735. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3736. "shasum": ""
  3737. },
  3738. "require": {
  3739. "php": ">=8.0.0"
  3740. },
  3741. "type": "library",
  3742. "extra": {
  3743. "branch-alias": {
  3744. "dev-master": "3.x-dev"
  3745. }
  3746. },
  3747. "autoload": {
  3748. "psr-4": {
  3749. "Psr\\Log\\": "src"
  3750. }
  3751. },
  3752. "notification-url": "https://packagist.org/downloads/",
  3753. "license": [
  3754. "MIT"
  3755. ],
  3756. "authors": [
  3757. {
  3758. "name": "PHP-FIG",
  3759. "homepage": "https://www.php-fig.org/"
  3760. }
  3761. ],
  3762. "description": "Common interface for logging libraries",
  3763. "homepage": "https://github.com/php-fig/log",
  3764. "keywords": [
  3765. "log",
  3766. "psr",
  3767. "psr-3"
  3768. ],
  3769. "support": {
  3770. "source": "https://github.com/php-fig/log/tree/3.0.0"
  3771. },
  3772. "time": "2021-07-14T16:46:02+00:00"
  3773. },
  3774. {
  3775. "name": "psr/simple-cache",
  3776. "version": "3.0.0",
  3777. "source": {
  3778. "type": "git",
  3779. "url": "https://github.com/php-fig/simple-cache.git",
  3780. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  3781. },
  3782. "dist": {
  3783. "type": "zip",
  3784. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3785. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3786. "shasum": ""
  3787. },
  3788. "require": {
  3789. "php": ">=8.0.0"
  3790. },
  3791. "type": "library",
  3792. "extra": {
  3793. "branch-alias": {
  3794. "dev-master": "3.0.x-dev"
  3795. }
  3796. },
  3797. "autoload": {
  3798. "psr-4": {
  3799. "Psr\\SimpleCache\\": "src/"
  3800. }
  3801. },
  3802. "notification-url": "https://packagist.org/downloads/",
  3803. "license": [
  3804. "MIT"
  3805. ],
  3806. "authors": [
  3807. {
  3808. "name": "PHP-FIG",
  3809. "homepage": "https://www.php-fig.org/"
  3810. }
  3811. ],
  3812. "description": "Common interfaces for simple caching",
  3813. "keywords": [
  3814. "cache",
  3815. "caching",
  3816. "psr",
  3817. "psr-16",
  3818. "simple-cache"
  3819. ],
  3820. "support": {
  3821. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  3822. },
  3823. "time": "2021-10-29T13:26:27+00:00"
  3824. },
  3825. {
  3826. "name": "ralouphie/getallheaders",
  3827. "version": "3.0.3",
  3828. "source": {
  3829. "type": "git",
  3830. "url": "https://github.com/ralouphie/getallheaders.git",
  3831. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3832. },
  3833. "dist": {
  3834. "type": "zip",
  3835. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3836. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3837. "shasum": ""
  3838. },
  3839. "require": {
  3840. "php": ">=5.6"
  3841. },
  3842. "require-dev": {
  3843. "php-coveralls/php-coveralls": "^2.1",
  3844. "phpunit/phpunit": "^5 || ^6.5"
  3845. },
  3846. "type": "library",
  3847. "autoload": {
  3848. "files": [
  3849. "src/getallheaders.php"
  3850. ]
  3851. },
  3852. "notification-url": "https://packagist.org/downloads/",
  3853. "license": [
  3854. "MIT"
  3855. ],
  3856. "authors": [
  3857. {
  3858. "name": "Ralph Khattar",
  3859. "email": "[email protected]"
  3860. }
  3861. ],
  3862. "description": "A polyfill for getallheaders.",
  3863. "support": {
  3864. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3865. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3866. },
  3867. "time": "2019-03-08T08:55:37+00:00"
  3868. },
  3869. {
  3870. "name": "ramsey/collection",
  3871. "version": "2.0.0",
  3872. "source": {
  3873. "type": "git",
  3874. "url": "https://github.com/ramsey/collection.git",
  3875. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  3876. },
  3877. "dist": {
  3878. "type": "zip",
  3879. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3880. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3881. "shasum": ""
  3882. },
  3883. "require": {
  3884. "php": "^8.1"
  3885. },
  3886. "require-dev": {
  3887. "captainhook/plugin-composer": "^5.3",
  3888. "ergebnis/composer-normalize": "^2.28.3",
  3889. "fakerphp/faker": "^1.21",
  3890. "hamcrest/hamcrest-php": "^2.0",
  3891. "jangregor/phpstan-prophecy": "^1.0",
  3892. "mockery/mockery": "^1.5",
  3893. "php-parallel-lint/php-console-highlighter": "^1.0",
  3894. "php-parallel-lint/php-parallel-lint": "^1.3",
  3895. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  3896. "phpspec/prophecy-phpunit": "^2.0",
  3897. "phpstan/extension-installer": "^1.2",
  3898. "phpstan/phpstan": "^1.9",
  3899. "phpstan/phpstan-mockery": "^1.1",
  3900. "phpstan/phpstan-phpunit": "^1.3",
  3901. "phpunit/phpunit": "^9.5",
  3902. "psalm/plugin-mockery": "^1.1",
  3903. "psalm/plugin-phpunit": "^0.18.4",
  3904. "ramsey/coding-standard": "^2.0.3",
  3905. "ramsey/conventional-commits": "^1.3",
  3906. "vimeo/psalm": "^5.4"
  3907. },
  3908. "type": "library",
  3909. "extra": {
  3910. "captainhook": {
  3911. "force-install": true
  3912. },
  3913. "ramsey/conventional-commits": {
  3914. "configFile": "conventional-commits.json"
  3915. }
  3916. },
  3917. "autoload": {
  3918. "psr-4": {
  3919. "Ramsey\\Collection\\": "src/"
  3920. }
  3921. },
  3922. "notification-url": "https://packagist.org/downloads/",
  3923. "license": [
  3924. "MIT"
  3925. ],
  3926. "authors": [
  3927. {
  3928. "name": "Ben Ramsey",
  3929. "email": "[email protected]",
  3930. "homepage": "https://benramsey.com"
  3931. }
  3932. ],
  3933. "description": "A PHP library for representing and manipulating collections.",
  3934. "keywords": [
  3935. "array",
  3936. "collection",
  3937. "hash",
  3938. "map",
  3939. "queue",
  3940. "set"
  3941. ],
  3942. "support": {
  3943. "issues": "https://github.com/ramsey/collection/issues",
  3944. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  3945. },
  3946. "funding": [
  3947. {
  3948. "url": "https://github.com/ramsey",
  3949. "type": "github"
  3950. },
  3951. {
  3952. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  3953. "type": "tidelift"
  3954. }
  3955. ],
  3956. "time": "2022-12-31T21:50:55+00:00"
  3957. },
  3958. {
  3959. "name": "ramsey/uuid",
  3960. "version": "4.7.4",
  3961. "source": {
  3962. "type": "git",
  3963. "url": "https://github.com/ramsey/uuid.git",
  3964. "reference": "60a4c63ab724854332900504274f6150ff26d286"
  3965. },
  3966. "dist": {
  3967. "type": "zip",
  3968. "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
  3969. "reference": "60a4c63ab724854332900504274f6150ff26d286",
  3970. "shasum": ""
  3971. },
  3972. "require": {
  3973. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  3974. "ext-json": "*",
  3975. "php": "^8.0",
  3976. "ramsey/collection": "^1.2 || ^2.0"
  3977. },
  3978. "replace": {
  3979. "rhumsaa/uuid": "self.version"
  3980. },
  3981. "require-dev": {
  3982. "captainhook/captainhook": "^5.10",
  3983. "captainhook/plugin-composer": "^5.3",
  3984. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3985. "doctrine/annotations": "^1.8",
  3986. "ergebnis/composer-normalize": "^2.15",
  3987. "mockery/mockery": "^1.3",
  3988. "paragonie/random-lib": "^2",
  3989. "php-mock/php-mock": "^2.2",
  3990. "php-mock/php-mock-mockery": "^1.3",
  3991. "php-parallel-lint/php-parallel-lint": "^1.1",
  3992. "phpbench/phpbench": "^1.0",
  3993. "phpstan/extension-installer": "^1.1",
  3994. "phpstan/phpstan": "^1.8",
  3995. "phpstan/phpstan-mockery": "^1.1",
  3996. "phpstan/phpstan-phpunit": "^1.1",
  3997. "phpunit/phpunit": "^8.5 || ^9",
  3998. "ramsey/composer-repl": "^1.4",
  3999. "slevomat/coding-standard": "^8.4",
  4000. "squizlabs/php_codesniffer": "^3.5",
  4001. "vimeo/psalm": "^4.9"
  4002. },
  4003. "suggest": {
  4004. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4005. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4006. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4007. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4008. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4009. },
  4010. "type": "library",
  4011. "extra": {
  4012. "captainhook": {
  4013. "force-install": true
  4014. }
  4015. },
  4016. "autoload": {
  4017. "files": [
  4018. "src/functions.php"
  4019. ],
  4020. "psr-4": {
  4021. "Ramsey\\Uuid\\": "src/"
  4022. }
  4023. },
  4024. "notification-url": "https://packagist.org/downloads/",
  4025. "license": [
  4026. "MIT"
  4027. ],
  4028. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4029. "keywords": [
  4030. "guid",
  4031. "identifier",
  4032. "uuid"
  4033. ],
  4034. "support": {
  4035. "issues": "https://github.com/ramsey/uuid/issues",
  4036. "source": "https://github.com/ramsey/uuid/tree/4.7.4"
  4037. },
  4038. "funding": [
  4039. {
  4040. "url": "https://github.com/ramsey",
  4041. "type": "github"
  4042. },
  4043. {
  4044. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4045. "type": "tidelift"
  4046. }
  4047. ],
  4048. "time": "2023-04-15T23:01:58+00:00"
  4049. },
  4050. {
  4051. "name": "rmccue/requests",
  4052. "version": "v1.8.1",
  4053. "source": {
  4054. "type": "git",
  4055. "url": "https://github.com/WordPress/Requests.git",
  4056. "reference": "82e6936366eac3af4d836c18b9d8c31028fe4cd5"
  4057. },
  4058. "dist": {
  4059. "type": "zip",
  4060. "url": "https://api.github.com/repos/WordPress/Requests/zipball/82e6936366eac3af4d836c18b9d8c31028fe4cd5",
  4061. "reference": "82e6936366eac3af4d836c18b9d8c31028fe4cd5",
  4062. "shasum": ""
  4063. },
  4064. "require": {
  4065. "php": ">=5.2"
  4066. },
  4067. "require-dev": {
  4068. "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
  4069. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  4070. "php-parallel-lint/php-parallel-lint": "^1.3",
  4071. "phpcompatibility/php-compatibility": "^9.0",
  4072. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5",
  4073. "requests/test-server": "dev-master",
  4074. "squizlabs/php_codesniffer": "^3.5",
  4075. "wp-coding-standards/wpcs": "^2.0"
  4076. },
  4077. "type": "library",
  4078. "autoload": {
  4079. "psr-0": {
  4080. "Requests": "library/"
  4081. }
  4082. },
  4083. "notification-url": "https://packagist.org/downloads/",
  4084. "license": [
  4085. "ISC"
  4086. ],
  4087. "authors": [
  4088. {
  4089. "name": "Ryan McCue",
  4090. "homepage": "http://ryanmccue.info"
  4091. }
  4092. ],
  4093. "description": "A HTTP library written in PHP, for human beings.",
  4094. "homepage": "http://github.com/WordPress/Requests",
  4095. "keywords": [
  4096. "curl",
  4097. "fsockopen",
  4098. "http",
  4099. "idna",
  4100. "ipv6",
  4101. "iri",
  4102. "sockets"
  4103. ],
  4104. "support": {
  4105. "issues": "https://github.com/WordPress/Requests/issues",
  4106. "source": "https://github.com/WordPress/Requests/tree/v1.8.1"
  4107. },
  4108. "time": "2021-06-04T09:56:25+00:00"
  4109. },
  4110. {
  4111. "name": "sendgrid/php-http-client",
  4112. "version": "3.14.4",
  4113. "source": {
  4114. "type": "git",
  4115. "url": "https://github.com/sendgrid/php-http-client.git",
  4116. "reference": "6d589564522be290c7d7c18e51bcd8b03aeaf0b6"
  4117. },
  4118. "dist": {
  4119. "type": "zip",
  4120. "url": "https://api.github.com/repos/sendgrid/php-http-client/zipball/6d589564522be290c7d7c18e51bcd8b03aeaf0b6",
  4121. "reference": "6d589564522be290c7d7c18e51bcd8b03aeaf0b6",
  4122. "shasum": ""
  4123. },
  4124. "require": {
  4125. "ext-curl": "*",
  4126. "ext-json": "*",
  4127. "ext-mbstring": "*",
  4128. "php": ">=5.6"
  4129. },
  4130. "require-dev": {
  4131. "friendsofphp/php-cs-fixer": "^2.16",
  4132. "phpunit/phpunit": "^5.7 || ^6.5",
  4133. "sebastian/version": "^1.0.6",
  4134. "squizlabs/php_codesniffer": "~2.0"
  4135. },
  4136. "suggest": {
  4137. "composer/ca-bundle": "Including this library will ensure that a valid CA bundle is available for secure connections"
  4138. },
  4139. "type": "library",
  4140. "autoload": {
  4141. "psr-4": {
  4142. "SendGrid\\": "lib/"
  4143. }
  4144. },
  4145. "notification-url": "https://packagist.org/downloads/",
  4146. "license": [
  4147. "MIT"
  4148. ],
  4149. "authors": [
  4150. {
  4151. "name": "Matt Bernier",
  4152. "email": "[email protected]"
  4153. },
  4154. {
  4155. "name": "Elmer Thomas",
  4156. "email": "[email protected]"
  4157. }
  4158. ],
  4159. "description": "HTTP REST client, simplified for PHP",
  4160. "homepage": "http://github.com/sendgrid/php-http-client",
  4161. "keywords": [
  4162. "api",
  4163. "fluent",
  4164. "http",
  4165. "rest",
  4166. "sendgrid"
  4167. ],
  4168. "support": {
  4169. "issues": "https://github.com/sendgrid/php-http-client/issues",
  4170. "source": "https://github.com/sendgrid/php-http-client/tree/3.14.4"
  4171. },
  4172. "time": "2022-03-09T20:21:55+00:00"
  4173. },
  4174. {
  4175. "name": "sendgrid/sendgrid",
  4176. "version": "8.0.1",
  4177. "source": {
  4178. "type": "git",
  4179. "url": "https://github.com/sendgrid/sendgrid-php.git",
  4180. "reference": "285381257100b73aa50d8d70f0bcfb1f48b63747"
  4181. },
  4182. "dist": {
  4183. "type": "zip",
  4184. "url": "https://api.github.com/repos/sendgrid/sendgrid-php/zipball/285381257100b73aa50d8d70f0bcfb1f48b63747",
  4185. "reference": "285381257100b73aa50d8d70f0bcfb1f48b63747",
  4186. "shasum": ""
  4187. },
  4188. "require": {
  4189. "ext-curl": "*",
  4190. "ext-json": "*",
  4191. "ext-mbstring": "*",
  4192. "ext-openssl": "*",
  4193. "php": ">=7.3",
  4194. "sendgrid/php-http-client": "~3.10",
  4195. "starkbank/ecdsa": "0.*"
  4196. },
  4197. "replace": {
  4198. "sendgrid/sendgrid-php": "*"
  4199. },
  4200. "require-dev": {
  4201. "phpstan/phpstan": "^1.5",
  4202. "phpunit/phpunit": "^9",
  4203. "squizlabs/php_codesniffer": "3.*",
  4204. "swaggest/json-diff": "^3.4"
  4205. },
  4206. "type": "library",
  4207. "autoload": {
  4208. "psr-4": {
  4209. "SendGrid\\Mail\\": "lib/mail/",
  4210. "SendGrid\\Stats\\": "lib/stats/",
  4211. "SendGrid\\Helper\\": "lib/helper/",
  4212. "SendGrid\\Contacts\\": "lib/contacts/",
  4213. "SendGrid\\EventWebhook\\": "lib/eventwebhook/"
  4214. },
  4215. "classmap": [
  4216. "lib/BaseSendGridClientInterface.php",
  4217. "lib/SendGrid.php",
  4218. "lib/TwilioEmail.php"
  4219. ]
  4220. },
  4221. "notification-url": "https://packagist.org/downloads/",
  4222. "license": [
  4223. "MIT"
  4224. ],
  4225. "description": "This library allows you to quickly and easily send emails through Twilio SendGrid using PHP.",
  4226. "homepage": "http://github.com/sendgrid/sendgrid-php",
  4227. "keywords": [
  4228. "email",
  4229. "grid",
  4230. "send",
  4231. "sendgrid",
  4232. "twilio sendgrid"
  4233. ],
  4234. "support": {
  4235. "source": "https://github.com/sendgrid/sendgrid-php/tree/8.0.1"
  4236. },
  4237. "time": "2022-08-10T18:37:45+00:00"
  4238. },
  4239. {
  4240. "name": "sentry/sdk",
  4241. "version": "3.4.0",
  4242. "source": {
  4243. "type": "git",
  4244. "url": "https://github.com/getsentry/sentry-php-sdk.git",
  4245. "reference": "7f1e04a5380a91e41a1a68c363ec19f88619a870"
  4246. },
  4247. "dist": {
  4248. "type": "zip",
  4249. "url": "https://api.github.com/repos/getsentry/sentry-php-sdk/zipball/7f1e04a5380a91e41a1a68c363ec19f88619a870",
  4250. "reference": "7f1e04a5380a91e41a1a68c363ec19f88619a870",
  4251. "shasum": ""
  4252. },
  4253. "require": {
  4254. "http-interop/http-factory-guzzle": "^1.0",
  4255. "sentry/sentry": "^3.18",
  4256. "symfony/http-client": "^4.3|^5.0|^6.0"
  4257. },
  4258. "type": "metapackage",
  4259. "notification-url": "https://packagist.org/downloads/",
  4260. "license": [
  4261. "MIT"
  4262. ],
  4263. "authors": [
  4264. {
  4265. "name": "Sentry",
  4266. "email": "[email protected]"
  4267. }
  4268. ],
  4269. "description": "This is a metapackage shipping sentry/sentry with a recommended HTTP client.",
  4270. "homepage": "http://sentry.io",
  4271. "keywords": [
  4272. "crash-reporting",
  4273. "crash-reports",
  4274. "error-handler",
  4275. "error-monitoring",
  4276. "log",
  4277. "logging",
  4278. "sentry"
  4279. ],
  4280. "support": {
  4281. "issues": "https://github.com/getsentry/sentry-php-sdk/issues",
  4282. "source": "https://github.com/getsentry/sentry-php-sdk/tree/3.4.0"
  4283. },
  4284. "funding": [
  4285. {
  4286. "url": "https://sentry.io/",
  4287. "type": "custom"
  4288. },
  4289. {
  4290. "url": "https://sentry.io/pricing/",
  4291. "type": "custom"
  4292. }
  4293. ],
  4294. "time": "2023-05-22T16:02:39+00:00"
  4295. },
  4296. {
  4297. "name": "sentry/sentry",
  4298. "version": "3.18.2",
  4299. "source": {
  4300. "type": "git",
  4301. "url": "https://github.com/getsentry/sentry-php.git",
  4302. "reference": "c634615c09a69bfdc3bb5f6ffeee78db3711167c"
  4303. },
  4304. "dist": {
  4305. "type": "zip",
  4306. "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/c634615c09a69bfdc3bb5f6ffeee78db3711167c",
  4307. "reference": "c634615c09a69bfdc3bb5f6ffeee78db3711167c",
  4308. "shasum": ""
  4309. },
  4310. "require": {
  4311. "ext-json": "*",
  4312. "ext-mbstring": "*",
  4313. "guzzlehttp/promises": "^1.4",
  4314. "jean85/pretty-package-versions": "^1.5|^2.0.4",
  4315. "php": "^7.2|^8.0",
  4316. "php-http/async-client-implementation": "^1.0",
  4317. "php-http/client-common": "^1.5|^2.0",
  4318. "php-http/discovery": "^1.15",
  4319. "php-http/httplug": "^1.1|^2.0",
  4320. "php-http/message": "^1.5",
  4321. "php-http/message-factory": "^1.1",
  4322. "psr/http-factory": "^1.0",
  4323. "psr/http-factory-implementation": "^1.0",
  4324. "psr/log": "^1.0|^2.0|^3.0",
  4325. "symfony/options-resolver": "^3.4.43|^4.4.30|^5.0.11|^6.0",
  4326. "symfony/polyfill-php80": "^1.17"
  4327. },
  4328. "conflict": {
  4329. "php-http/client-common": "1.8.0",
  4330. "raven/raven": "*"
  4331. },
  4332. "require-dev": {
  4333. "friendsofphp/php-cs-fixer": "^2.19|3.4.*",
  4334. "guzzlehttp/psr7": "^1.8.4|^2.1.1",
  4335. "http-interop/http-factory-guzzle": "^1.0",
  4336. "monolog/monolog": "^1.6|^2.0|^3.0",
  4337. "nikic/php-parser": "^4.10.3",
  4338. "php-http/mock-client": "^1.3",
  4339. "phpbench/phpbench": "^1.0",
  4340. "phpstan/extension-installer": "^1.0",
  4341. "phpstan/phpstan": "^1.3",
  4342. "phpstan/phpstan-phpunit": "^1.0",
  4343. "phpunit/phpunit": "^8.5.14|^9.4",
  4344. "symfony/phpunit-bridge": "^5.2|^6.0",
  4345. "vimeo/psalm": "^4.17"
  4346. },
  4347. "suggest": {
  4348. "monolog/monolog": "Allow sending log messages to Sentry by using the included Monolog handler."
  4349. },
  4350. "type": "library",
  4351. "extra": {
  4352. "branch-alias": {
  4353. "dev-master": "3.13.x-dev"
  4354. }
  4355. },
  4356. "autoload": {
  4357. "files": [
  4358. "src/functions.php"
  4359. ],
  4360. "psr-4": {
  4361. "Sentry\\": "src/"
  4362. }
  4363. },
  4364. "notification-url": "https://packagist.org/downloads/",
  4365. "license": [
  4366. "MIT"
  4367. ],
  4368. "authors": [
  4369. {
  4370. "name": "Sentry",
  4371. "email": "[email protected]"
  4372. }
  4373. ],
  4374. "description": "A PHP SDK for Sentry (http://sentry.io)",
  4375. "homepage": "http://sentry.io",
  4376. "keywords": [
  4377. "crash-reporting",
  4378. "crash-reports",
  4379. "error-handler",
  4380. "error-monitoring",
  4381. "log",
  4382. "logging",
  4383. "sentry"
  4384. ],
  4385. "support": {
  4386. "issues": "https://github.com/getsentry/sentry-php/issues",
  4387. "source": "https://github.com/getsentry/sentry-php/tree/3.18.2"
  4388. },
  4389. "funding": [
  4390. {
  4391. "url": "https://sentry.io/",
  4392. "type": "custom"
  4393. },
  4394. {
  4395. "url": "https://sentry.io/pricing/",
  4396. "type": "custom"
  4397. }
  4398. ],
  4399. "time": "2023-05-17T10:56:54+00:00"
  4400. },
  4401. {
  4402. "name": "slim/http",
  4403. "version": "1.3",
  4404. "source": {
  4405. "type": "git",
  4406. "url": "https://github.com/slimphp/Slim-Http.git",
  4407. "reference": "9542edbe469b7c0f3084c2467efea972387f5beb"
  4408. },
  4409. "dist": {
  4410. "type": "zip",
  4411. "url": "https://api.github.com/repos/slimphp/Slim-Http/zipball/9542edbe469b7c0f3084c2467efea972387f5beb",
  4412. "reference": "9542edbe469b7c0f3084c2467efea972387f5beb",
  4413. "shasum": ""
  4414. },
  4415. "require": {
  4416. "ext-fileinfo": "*",
  4417. "ext-json": "*",
  4418. "ext-libxml": "*",
  4419. "ext-simplexml": "*",
  4420. "php": "^7.4 || ^8.0",
  4421. "psr/http-factory": "^1.0",
  4422. "psr/http-message": "^1.0"
  4423. },
  4424. "require-dev": {
  4425. "adriansuter/php-autoload-override": "^1.3",
  4426. "laminas/laminas-diactoros": "^2.17",
  4427. "nyholm/psr7": "^1.5",
  4428. "php-http/psr7-integration-tests": "dev-master",
  4429. "phpstan/phpstan": "^1.8",
  4430. "phpunit/phpunit": "^9.5",
  4431. "squizlabs/php_codesniffer": "^3.7"
  4432. },
  4433. "type": "library",
  4434. "autoload": {
  4435. "psr-4": {
  4436. "Slim\\Http\\": "src/"
  4437. }
  4438. },
  4439. "notification-url": "https://packagist.org/downloads/",
  4440. "license": [
  4441. "MIT"
  4442. ],
  4443. "authors": [
  4444. {
  4445. "name": "Josh Lockhart",
  4446. "email": "[email protected]",
  4447. "homepage": "http://joshlockhart.com"
  4448. },
  4449. {
  4450. "name": "Andrew Smith",
  4451. "email": "[email protected]",
  4452. "homepage": "http://silentworks.co.uk"
  4453. },
  4454. {
  4455. "name": "Rob Allen",
  4456. "email": "[email protected]",
  4457. "homepage": "http://akrabat.com"
  4458. },
  4459. {
  4460. "name": "Pierre Berube",
  4461. "email": "[email protected]",
  4462. "homepage": "http://www.lgse.com"
  4463. }
  4464. ],
  4465. "description": "Slim PSR-7 Object Decorators",
  4466. "homepage": "http://slimframework.com",
  4467. "keywords": [
  4468. "http",
  4469. "psr-7",
  4470. "psr7"
  4471. ],
  4472. "support": {
  4473. "issues": "https://github.com/slimphp/Slim-Http/issues",
  4474. "source": "https://github.com/slimphp/Slim-Http/tree/1.3"
  4475. },
  4476. "time": "2022-09-14T15:45:07+00:00"
  4477. },
  4478. {
  4479. "name": "slim/slim",
  4480. "version": "4.11.0",
  4481. "source": {
  4482. "type": "git",
  4483. "url": "https://github.com/slimphp/Slim.git",
  4484. "reference": "b0f4ca393ea037be9ac7292ba7d0a34d18bac0c7"
  4485. },
  4486. "dist": {
  4487. "type": "zip",
  4488. "url": "https://api.github.com/repos/slimphp/Slim/zipball/b0f4ca393ea037be9ac7292ba7d0a34d18bac0c7",
  4489. "reference": "b0f4ca393ea037be9ac7292ba7d0a34d18bac0c7",
  4490. "shasum": ""
  4491. },
  4492. "require": {
  4493. "ext-json": "*",
  4494. "nikic/fast-route": "^1.3",
  4495. "php": "^7.4 || ^8.0",
  4496. "psr/container": "^1.0 || ^2.0",
  4497. "psr/http-factory": "^1.0",
  4498. "psr/http-message": "^1.0",
  4499. "psr/http-server-handler": "^1.0",
  4500. "psr/http-server-middleware": "^1.0",
  4501. "psr/log": "^1.1 || ^2.0 || ^3.0"
  4502. },
  4503. "require-dev": {
  4504. "adriansuter/php-autoload-override": "^1.3",
  4505. "ext-simplexml": "*",
  4506. "guzzlehttp/psr7": "^2.4",
  4507. "httpsoft/http-message": "^1.0",
  4508. "httpsoft/http-server-request": "^1.0",
  4509. "laminas/laminas-diactoros": "^2.17",
  4510. "nyholm/psr7": "^1.5",
  4511. "nyholm/psr7-server": "^1.0",
  4512. "phpspec/prophecy": "^1.15",
  4513. "phpspec/prophecy-phpunit": "^2.0",
  4514. "phpstan/phpstan": "^1.8",
  4515. "phpunit/phpunit": "^9.5",
  4516. "slim/http": "^1.2",
  4517. "slim/psr7": "^1.5",
  4518. "squizlabs/php_codesniffer": "^3.7"
  4519. },
  4520. "suggest": {
  4521. "ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",
  4522. "ext-xml": "Needed to support XML format in BodyParsingMiddleware",
  4523. "php-di/php-di": "PHP-DI is the recommended container library to be used with Slim",
  4524. "slim/psr7": "Slim PSR-7 implementation. See https://www.slimframework.com/docs/v4/start/installation.html for more information."
  4525. },
  4526. "type": "library",
  4527. "autoload": {
  4528. "psr-4": {
  4529. "Slim\\": "Slim"
  4530. }
  4531. },
  4532. "notification-url": "https://packagist.org/downloads/",
  4533. "license": [
  4534. "MIT"
  4535. ],
  4536. "authors": [
  4537. {
  4538. "name": "Josh Lockhart",
  4539. "email": "[email protected]",
  4540. "homepage": "https://joshlockhart.com"
  4541. },
  4542. {
  4543. "name": "Andrew Smith",
  4544. "email": "[email protected]",
  4545. "homepage": "http://silentworks.co.uk"
  4546. },
  4547. {
  4548. "name": "Rob Allen",
  4549. "email": "[email protected]",
  4550. "homepage": "http://akrabat.com"
  4551. },
  4552. {
  4553. "name": "Pierre Berube",
  4554. "email": "[email protected]",
  4555. "homepage": "http://www.lgse.com"
  4556. },
  4557. {
  4558. "name": "Gabriel Manricks",
  4559. "email": "[email protected]",
  4560. "homepage": "http://gabrielmanricks.com"
  4561. }
  4562. ],
  4563. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  4564. "homepage": "https://www.slimframework.com",
  4565. "keywords": [
  4566. "api",
  4567. "framework",
  4568. "micro",
  4569. "router"
  4570. ],
  4571. "support": {
  4572. "docs": "https://www.slimframework.com/docs/v4/",
  4573. "forum": "https://discourse.slimframework.com/",
  4574. "irc": "irc://irc.freenode.net:6667/slimphp",
  4575. "issues": "https://github.com/slimphp/Slim/issues",
  4576. "rss": "https://www.slimframework.com/blog/feed.rss",
  4577. "slack": "https://slimphp.slack.com/",
  4578. "source": "https://github.com/slimphp/Slim",
  4579. "wiki": "https://github.com/slimphp/Slim/wiki"
  4580. },
  4581. "funding": [
  4582. {
  4583. "url": "https://opencollective.com/slimphp",
  4584. "type": "open_collective"
  4585. },
  4586. {
  4587. "url": "https://tidelift.com/funding/github/packagist/slim/slim",
  4588. "type": "tidelift"
  4589. }
  4590. ],
  4591. "time": "2022-11-06T16:33:39+00:00"
  4592. },
  4593. {
  4594. "name": "smarty/smarty",
  4595. "version": "v4.3.1",
  4596. "source": {
  4597. "type": "git",
  4598. "url": "https://github.com/smarty-php/smarty.git",
  4599. "reference": "e28cb0915b4e3749bf57d4ebae2984e25395cfe5"
  4600. },
  4601. "dist": {
  4602. "type": "zip",
  4603. "url": "https://api.github.com/repos/smarty-php/smarty/zipball/e28cb0915b4e3749bf57d4ebae2984e25395cfe5",
  4604. "reference": "e28cb0915b4e3749bf57d4ebae2984e25395cfe5",
  4605. "shasum": ""
  4606. },
  4607. "require": {
  4608. "php": "^7.1 || ^8.0"
  4609. },
  4610. "require-dev": {
  4611. "phpunit/phpunit": "^8.5 || ^7.5",
  4612. "smarty/smarty-lexer": "^3.1"
  4613. },
  4614. "type": "library",
  4615. "extra": {
  4616. "branch-alias": {
  4617. "dev-master": "4.0.x-dev"
  4618. }
  4619. },
  4620. "autoload": {
  4621. "classmap": [
  4622. "libs/"
  4623. ]
  4624. },
  4625. "notification-url": "https://packagist.org/downloads/",
  4626. "license": [
  4627. "LGPL-3.0"
  4628. ],
  4629. "authors": [
  4630. {
  4631. "name": "Monte Ohrt",
  4632. "email": "[email protected]"
  4633. },
  4634. {
  4635. "name": "Uwe Tews",
  4636. "email": "[email protected]"
  4637. },
  4638. {
  4639. "name": "Rodney Rehm",
  4640. "email": "[email protected]"
  4641. },
  4642. {
  4643. "name": "Simon Wisselink",
  4644. "homepage": "https://www.iwink.nl/"
  4645. }
  4646. ],
  4647. "description": "Smarty - the compiling PHP template engine",
  4648. "homepage": "https://smarty-php.github.io/smarty/",
  4649. "keywords": [
  4650. "templating"
  4651. ],
  4652. "support": {
  4653. "forum": "https://github.com/smarty-php/smarty/discussions",
  4654. "issues": "https://github.com/smarty-php/smarty/issues",
  4655. "source": "https://github.com/smarty-php/smarty/tree/v4.3.1"
  4656. },
  4657. "time": "2023-03-28T19:47:03+00:00"
  4658. },
  4659. {
  4660. "name": "srmklive/paypal",
  4661. "version": "3.0.21",
  4662. "source": {
  4663. "type": "git",
  4664. "url": "https://github.com/srmklive/laravel-paypal.git",
  4665. "reference": "3a55d463f8d5935627c4eee15da702811a03c5ea"
  4666. },
  4667. "dist": {
  4668. "type": "zip",
  4669. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/3a55d463f8d5935627c4eee15da702811a03c5ea",
  4670. "reference": "3a55d463f8d5935627c4eee15da702811a03c5ea",
  4671. "shasum": ""
  4672. },
  4673. "require": {
  4674. "ext-curl": "*",
  4675. "guzzlehttp/guzzle": "~7.0",
  4676. "illuminate/support": "~6.0|~7.0|~8.0|~9.0|^10.0",
  4677. "nesbot/carbon": "~2.0",
  4678. "php": ">=7.2|^8.0"
  4679. },
  4680. "require-dev": {
  4681. "phpunit/phpunit": "^8.0|^9.0|^10.0",
  4682. "symfony/var-dumper": "~5.0"
  4683. },
  4684. "type": "library",
  4685. "extra": {
  4686. "laravel": {
  4687. "providers": [
  4688. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4689. ],
  4690. "aliases": {
  4691. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4692. }
  4693. }
  4694. },
  4695. "autoload": {
  4696. "psr-4": {
  4697. "Srmklive\\PayPal\\": "src/"
  4698. }
  4699. },
  4700. "notification-url": "https://packagist.org/downloads/",
  4701. "license": [
  4702. "MIT"
  4703. ],
  4704. "authors": [
  4705. {
  4706. "name": "Raza Mehdi",
  4707. "email": "[email protected]"
  4708. }
  4709. ],
  4710. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4711. "keywords": [
  4712. "http",
  4713. "laravel paypal",
  4714. "paypal",
  4715. "rest",
  4716. "web service"
  4717. ],
  4718. "support": {
  4719. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4720. "source": "https://github.com/srmklive/laravel-paypal/tree/3.0.21"
  4721. },
  4722. "time": "2023-04-26T16:27:35+00:00"
  4723. },
  4724. {
  4725. "name": "starkbank/ecdsa",
  4726. "version": "0.0.5",
  4727. "source": {
  4728. "type": "git",
  4729. "url": "https://github.com/starkbank/ecdsa-php.git",
  4730. "reference": "484bedac47bac4012dc73df91da221f0a66845cb"
  4731. },
  4732. "dist": {
  4733. "type": "zip",
  4734. "url": "https://api.github.com/repos/starkbank/ecdsa-php/zipball/484bedac47bac4012dc73df91da221f0a66845cb",
  4735. "reference": "484bedac47bac4012dc73df91da221f0a66845cb",
  4736. "shasum": ""
  4737. },
  4738. "require": {
  4739. "php": ">=5.5"
  4740. },
  4741. "type": "library",
  4742. "autoload": {
  4743. "files": [
  4744. "src/ellipticcurve.php"
  4745. ]
  4746. },
  4747. "notification-url": "https://packagist.org/downloads/",
  4748. "license": [
  4749. "MIT"
  4750. ],
  4751. "authors": [
  4752. {
  4753. "name": "StarkBank",
  4754. "email": "[email protected]",
  4755. "homepage": "https://starkbank.com",
  4756. "role": "Developer"
  4757. }
  4758. ],
  4759. "description": "fast openSSL-compatible implementation of the Elliptic Curve Digital Signature Algorithm (ECDSA)",
  4760. "homepage": "https://github.com/starkbank/ecdsa-php",
  4761. "support": {
  4762. "issues": "https://github.com/starkbank/ecdsa-php/issues",
  4763. "source": "https://github.com/starkbank/ecdsa-php/tree/v0.0.5"
  4764. },
  4765. "time": "2021-06-06T22:24:49+00:00"
  4766. },
  4767. {
  4768. "name": "stripe/stripe-php",
  4769. "version": "v10.14.0",
  4770. "source": {
  4771. "type": "git",
  4772. "url": "https://github.com/stripe/stripe-php.git",
  4773. "reference": "c88a80fa7f361c2d30d6c81fb71f2bb30be1001f"
  4774. },
  4775. "dist": {
  4776. "type": "zip",
  4777. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/c88a80fa7f361c2d30d6c81fb71f2bb30be1001f",
  4778. "reference": "c88a80fa7f361c2d30d6c81fb71f2bb30be1001f",
  4779. "shasum": ""
  4780. },
  4781. "require": {
  4782. "ext-curl": "*",
  4783. "ext-json": "*",
  4784. "ext-mbstring": "*",
  4785. "php": ">=5.6.0"
  4786. },
  4787. "require-dev": {
  4788. "friendsofphp/php-cs-fixer": "3.5.0",
  4789. "php-coveralls/php-coveralls": "^2.5",
  4790. "phpstan/phpstan": "^1.2",
  4791. "phpunit/phpunit": "^5.7 || ^9.0",
  4792. "squizlabs/php_codesniffer": "^3.3"
  4793. },
  4794. "type": "library",
  4795. "extra": {
  4796. "branch-alias": {
  4797. "dev-master": "2.0-dev"
  4798. }
  4799. },
  4800. "autoload": {
  4801. "psr-4": {
  4802. "Stripe\\": "lib/"
  4803. }
  4804. },
  4805. "notification-url": "https://packagist.org/downloads/",
  4806. "license": [
  4807. "MIT"
  4808. ],
  4809. "authors": [
  4810. {
  4811. "name": "Stripe and contributors",
  4812. "homepage": "https://github.com/stripe/stripe-php/contributors"
  4813. }
  4814. ],
  4815. "description": "Stripe PHP Library",
  4816. "homepage": "https://stripe.com/",
  4817. "keywords": [
  4818. "api",
  4819. "payment processing",
  4820. "stripe"
  4821. ],
  4822. "support": {
  4823. "issues": "https://github.com/stripe/stripe-php/issues",
  4824. "source": "https://github.com/stripe/stripe-php/tree/v10.14.0"
  4825. },
  4826. "time": "2023-05-25T18:09:32+00:00"
  4827. },
  4828. {
  4829. "name": "symfony/console",
  4830. "version": "v6.2.10",
  4831. "source": {
  4832. "type": "git",
  4833. "url": "https://github.com/symfony/console.git",
  4834. "reference": "12288d9f4500f84a4d02254d4aa968b15488476f"
  4835. },
  4836. "dist": {
  4837. "type": "zip",
  4838. "url": "https://api.github.com/repos/symfony/console/zipball/12288d9f4500f84a4d02254d4aa968b15488476f",
  4839. "reference": "12288d9f4500f84a4d02254d4aa968b15488476f",
  4840. "shasum": ""
  4841. },
  4842. "require": {
  4843. "php": ">=8.1",
  4844. "symfony/deprecation-contracts": "^2.1|^3",
  4845. "symfony/polyfill-mbstring": "~1.0",
  4846. "symfony/service-contracts": "^1.1|^2|^3",
  4847. "symfony/string": "^5.4|^6.0"
  4848. },
  4849. "conflict": {
  4850. "symfony/dependency-injection": "<5.4",
  4851. "symfony/dotenv": "<5.4",
  4852. "symfony/event-dispatcher": "<5.4",
  4853. "symfony/lock": "<5.4",
  4854. "symfony/process": "<5.4"
  4855. },
  4856. "provide": {
  4857. "psr/log-implementation": "1.0|2.0|3.0"
  4858. },
  4859. "require-dev": {
  4860. "psr/log": "^1|^2|^3",
  4861. "symfony/config": "^5.4|^6.0",
  4862. "symfony/dependency-injection": "^5.4|^6.0",
  4863. "symfony/event-dispatcher": "^5.4|^6.0",
  4864. "symfony/lock": "^5.4|^6.0",
  4865. "symfony/process": "^5.4|^6.0",
  4866. "symfony/var-dumper": "^5.4|^6.0"
  4867. },
  4868. "suggest": {
  4869. "psr/log": "For using the console logger",
  4870. "symfony/event-dispatcher": "",
  4871. "symfony/lock": "",
  4872. "symfony/process": ""
  4873. },
  4874. "type": "library",
  4875. "autoload": {
  4876. "psr-4": {
  4877. "Symfony\\Component\\Console\\": ""
  4878. },
  4879. "exclude-from-classmap": [
  4880. "/Tests/"
  4881. ]
  4882. },
  4883. "notification-url": "https://packagist.org/downloads/",
  4884. "license": [
  4885. "MIT"
  4886. ],
  4887. "authors": [
  4888. {
  4889. "name": "Fabien Potencier",
  4890. "email": "[email protected]"
  4891. },
  4892. {
  4893. "name": "Symfony Community",
  4894. "homepage": "https://symfony.com/contributors"
  4895. }
  4896. ],
  4897. "description": "Eases the creation of beautiful and testable command line interfaces",
  4898. "homepage": "https://symfony.com",
  4899. "keywords": [
  4900. "cli",
  4901. "command-line",
  4902. "console",
  4903. "terminal"
  4904. ],
  4905. "support": {
  4906. "source": "https://github.com/symfony/console/tree/v6.2.10"
  4907. },
  4908. "funding": [
  4909. {
  4910. "url": "https://symfony.com/sponsor",
  4911. "type": "custom"
  4912. },
  4913. {
  4914. "url": "https://github.com/fabpot",
  4915. "type": "github"
  4916. },
  4917. {
  4918. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4919. "type": "tidelift"
  4920. }
  4921. ],
  4922. "time": "2023-04-28T13:37:43+00:00"
  4923. },
  4924. {
  4925. "name": "symfony/deprecation-contracts",
  4926. "version": "v3.2.1",
  4927. "source": {
  4928. "type": "git",
  4929. "url": "https://github.com/symfony/deprecation-contracts.git",
  4930. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e"
  4931. },
  4932. "dist": {
  4933. "type": "zip",
  4934. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  4935. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  4936. "shasum": ""
  4937. },
  4938. "require": {
  4939. "php": ">=8.1"
  4940. },
  4941. "type": "library",
  4942. "extra": {
  4943. "branch-alias": {
  4944. "dev-main": "3.3-dev"
  4945. },
  4946. "thanks": {
  4947. "name": "symfony/contracts",
  4948. "url": "https://github.com/symfony/contracts"
  4949. }
  4950. },
  4951. "autoload": {
  4952. "files": [
  4953. "function.php"
  4954. ]
  4955. },
  4956. "notification-url": "https://packagist.org/downloads/",
  4957. "license": [
  4958. "MIT"
  4959. ],
  4960. "authors": [
  4961. {
  4962. "name": "Nicolas Grekas",
  4963. "email": "[email protected]"
  4964. },
  4965. {
  4966. "name": "Symfony Community",
  4967. "homepage": "https://symfony.com/contributors"
  4968. }
  4969. ],
  4970. "description": "A generic function and convention to trigger deprecation notices",
  4971. "homepage": "https://symfony.com",
  4972. "support": {
  4973. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1"
  4974. },
  4975. "funding": [
  4976. {
  4977. "url": "https://symfony.com/sponsor",
  4978. "type": "custom"
  4979. },
  4980. {
  4981. "url": "https://github.com/fabpot",
  4982. "type": "github"
  4983. },
  4984. {
  4985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4986. "type": "tidelift"
  4987. }
  4988. ],
  4989. "time": "2023-03-01T10:25:55+00:00"
  4990. },
  4991. {
  4992. "name": "symfony/http-client",
  4993. "version": "v6.2.10",
  4994. "source": {
  4995. "type": "git",
  4996. "url": "https://github.com/symfony/http-client.git",
  4997. "reference": "3f5545a91c8e79dedd1a06c4b04e1682c80c42f9"
  4998. },
  4999. "dist": {
  5000. "type": "zip",
  5001. "url": "https://api.github.com/repos/symfony/http-client/zipball/3f5545a91c8e79dedd1a06c4b04e1682c80c42f9",
  5002. "reference": "3f5545a91c8e79dedd1a06c4b04e1682c80c42f9",
  5003. "shasum": ""
  5004. },
  5005. "require": {
  5006. "php": ">=8.1",
  5007. "psr/log": "^1|^2|^3",
  5008. "symfony/deprecation-contracts": "^2.1|^3",
  5009. "symfony/http-client-contracts": "^3",
  5010. "symfony/service-contracts": "^1.0|^2|^3"
  5011. },
  5012. "provide": {
  5013. "php-http/async-client-implementation": "*",
  5014. "php-http/client-implementation": "*",
  5015. "psr/http-client-implementation": "1.0",
  5016. "symfony/http-client-implementation": "3.0"
  5017. },
  5018. "require-dev": {
  5019. "amphp/amp": "^2.5",
  5020. "amphp/http-client": "^4.2.1",
  5021. "amphp/http-tunnel": "^1.0",
  5022. "amphp/socket": "^1.1",
  5023. "guzzlehttp/promises": "^1.4",
  5024. "nyholm/psr7": "^1.0",
  5025. "php-http/httplug": "^1.0|^2.0",
  5026. "psr/http-client": "^1.0",
  5027. "symfony/dependency-injection": "^5.4|^6.0",
  5028. "symfony/http-kernel": "^5.4|^6.0",
  5029. "symfony/process": "^5.4|^6.0",
  5030. "symfony/stopwatch": "^5.4|^6.0"
  5031. },
  5032. "type": "library",
  5033. "autoload": {
  5034. "psr-4": {
  5035. "Symfony\\Component\\HttpClient\\": ""
  5036. },
  5037. "exclude-from-classmap": [
  5038. "/Tests/"
  5039. ]
  5040. },
  5041. "notification-url": "https://packagist.org/downloads/",
  5042. "license": [
  5043. "MIT"
  5044. ],
  5045. "authors": [
  5046. {
  5047. "name": "Nicolas Grekas",
  5048. "email": "[email protected]"
  5049. },
  5050. {
  5051. "name": "Symfony Community",
  5052. "homepage": "https://symfony.com/contributors"
  5053. }
  5054. ],
  5055. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  5056. "homepage": "https://symfony.com",
  5057. "keywords": [
  5058. "http"
  5059. ],
  5060. "support": {
  5061. "source": "https://github.com/symfony/http-client/tree/v6.2.10"
  5062. },
  5063. "funding": [
  5064. {
  5065. "url": "https://symfony.com/sponsor",
  5066. "type": "custom"
  5067. },
  5068. {
  5069. "url": "https://github.com/fabpot",
  5070. "type": "github"
  5071. },
  5072. {
  5073. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5074. "type": "tidelift"
  5075. }
  5076. ],
  5077. "time": "2023-04-20T13:12:48+00:00"
  5078. },
  5079. {
  5080. "name": "symfony/http-client-contracts",
  5081. "version": "v3.2.1",
  5082. "source": {
  5083. "type": "git",
  5084. "url": "https://github.com/symfony/http-client-contracts.git",
  5085. "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b"
  5086. },
  5087. "dist": {
  5088. "type": "zip",
  5089. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
  5090. "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
  5091. "shasum": ""
  5092. },
  5093. "require": {
  5094. "php": ">=8.1"
  5095. },
  5096. "suggest": {
  5097. "symfony/http-client-implementation": ""
  5098. },
  5099. "type": "library",
  5100. "extra": {
  5101. "branch-alias": {
  5102. "dev-main": "3.3-dev"
  5103. },
  5104. "thanks": {
  5105. "name": "symfony/contracts",
  5106. "url": "https://github.com/symfony/contracts"
  5107. }
  5108. },
  5109. "autoload": {
  5110. "psr-4": {
  5111. "Symfony\\Contracts\\HttpClient\\": ""
  5112. },
  5113. "exclude-from-classmap": [
  5114. "/Test/"
  5115. ]
  5116. },
  5117. "notification-url": "https://packagist.org/downloads/",
  5118. "license": [
  5119. "MIT"
  5120. ],
  5121. "authors": [
  5122. {
  5123. "name": "Nicolas Grekas",
  5124. "email": "[email protected]"
  5125. },
  5126. {
  5127. "name": "Symfony Community",
  5128. "homepage": "https://symfony.com/contributors"
  5129. }
  5130. ],
  5131. "description": "Generic abstractions related to HTTP clients",
  5132. "homepage": "https://symfony.com",
  5133. "keywords": [
  5134. "abstractions",
  5135. "contracts",
  5136. "decoupling",
  5137. "interfaces",
  5138. "interoperability",
  5139. "standards"
  5140. ],
  5141. "support": {
  5142. "source": "https://github.com/symfony/http-client-contracts/tree/v3.2.1"
  5143. },
  5144. "funding": [
  5145. {
  5146. "url": "https://symfony.com/sponsor",
  5147. "type": "custom"
  5148. },
  5149. {
  5150. "url": "https://github.com/fabpot",
  5151. "type": "github"
  5152. },
  5153. {
  5154. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5155. "type": "tidelift"
  5156. }
  5157. ],
  5158. "time": "2023-03-01T10:32:47+00:00"
  5159. },
  5160. {
  5161. "name": "symfony/http-foundation",
  5162. "version": "v6.2.10",
  5163. "source": {
  5164. "type": "git",
  5165. "url": "https://github.com/symfony/http-foundation.git",
  5166. "reference": "49adbb92bcb4e3c2943719d2756271e8b9602acc"
  5167. },
  5168. "dist": {
  5169. "type": "zip",
  5170. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/49adbb92bcb4e3c2943719d2756271e8b9602acc",
  5171. "reference": "49adbb92bcb4e3c2943719d2756271e8b9602acc",
  5172. "shasum": ""
  5173. },
  5174. "require": {
  5175. "php": ">=8.1",
  5176. "symfony/deprecation-contracts": "^2.1|^3",
  5177. "symfony/polyfill-mbstring": "~1.1"
  5178. },
  5179. "conflict": {
  5180. "symfony/cache": "<6.2"
  5181. },
  5182. "require-dev": {
  5183. "predis/predis": "~1.0",
  5184. "symfony/cache": "^5.4|^6.0",
  5185. "symfony/dependency-injection": "^5.4|^6.0",
  5186. "symfony/expression-language": "^5.4|^6.0",
  5187. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5188. "symfony/mime": "^5.4|^6.0",
  5189. "symfony/rate-limiter": "^5.2|^6.0"
  5190. },
  5191. "suggest": {
  5192. "symfony/mime": "To use the file extension guesser"
  5193. },
  5194. "type": "library",
  5195. "autoload": {
  5196. "psr-4": {
  5197. "Symfony\\Component\\HttpFoundation\\": ""
  5198. },
  5199. "exclude-from-classmap": [
  5200. "/Tests/"
  5201. ]
  5202. },
  5203. "notification-url": "https://packagist.org/downloads/",
  5204. "license": [
  5205. "MIT"
  5206. ],
  5207. "authors": [
  5208. {
  5209. "name": "Fabien Potencier",
  5210. "email": "[email protected]"
  5211. },
  5212. {
  5213. "name": "Symfony Community",
  5214. "homepage": "https://symfony.com/contributors"
  5215. }
  5216. ],
  5217. "description": "Defines an object-oriented layer for the HTTP specification",
  5218. "homepage": "https://symfony.com",
  5219. "support": {
  5220. "source": "https://github.com/symfony/http-foundation/tree/v6.2.10"
  5221. },
  5222. "funding": [
  5223. {
  5224. "url": "https://symfony.com/sponsor",
  5225. "type": "custom"
  5226. },
  5227. {
  5228. "url": "https://github.com/fabpot",
  5229. "type": "github"
  5230. },
  5231. {
  5232. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5233. "type": "tidelift"
  5234. }
  5235. ],
  5236. "time": "2023-04-18T13:46:08+00:00"
  5237. },
  5238. {
  5239. "name": "symfony/options-resolver",
  5240. "version": "v6.2.7",
  5241. "source": {
  5242. "type": "git",
  5243. "url": "https://github.com/symfony/options-resolver.git",
  5244. "reference": "aa0e85b53bbb2b4951960efd61d295907eacd629"
  5245. },
  5246. "dist": {
  5247. "type": "zip",
  5248. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/aa0e85b53bbb2b4951960efd61d295907eacd629",
  5249. "reference": "aa0e85b53bbb2b4951960efd61d295907eacd629",
  5250. "shasum": ""
  5251. },
  5252. "require": {
  5253. "php": ">=8.1",
  5254. "symfony/deprecation-contracts": "^2.1|^3"
  5255. },
  5256. "type": "library",
  5257. "autoload": {
  5258. "psr-4": {
  5259. "Symfony\\Component\\OptionsResolver\\": ""
  5260. },
  5261. "exclude-from-classmap": [
  5262. "/Tests/"
  5263. ]
  5264. },
  5265. "notification-url": "https://packagist.org/downloads/",
  5266. "license": [
  5267. "MIT"
  5268. ],
  5269. "authors": [
  5270. {
  5271. "name": "Fabien Potencier",
  5272. "email": "[email protected]"
  5273. },
  5274. {
  5275. "name": "Symfony Community",
  5276. "homepage": "https://symfony.com/contributors"
  5277. }
  5278. ],
  5279. "description": "Provides an improved replacement for the array_replace PHP function",
  5280. "homepage": "https://symfony.com",
  5281. "keywords": [
  5282. "config",
  5283. "configuration",
  5284. "options"
  5285. ],
  5286. "support": {
  5287. "source": "https://github.com/symfony/options-resolver/tree/v6.2.7"
  5288. },
  5289. "funding": [
  5290. {
  5291. "url": "https://symfony.com/sponsor",
  5292. "type": "custom"
  5293. },
  5294. {
  5295. "url": "https://github.com/fabpot",
  5296. "type": "github"
  5297. },
  5298. {
  5299. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5300. "type": "tidelift"
  5301. }
  5302. ],
  5303. "time": "2023-02-14T08:44:56+00:00"
  5304. },
  5305. {
  5306. "name": "symfony/polyfill-ctype",
  5307. "version": "v1.27.0",
  5308. "source": {
  5309. "type": "git",
  5310. "url": "https://github.com/symfony/polyfill-ctype.git",
  5311. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  5312. },
  5313. "dist": {
  5314. "type": "zip",
  5315. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  5316. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  5317. "shasum": ""
  5318. },
  5319. "require": {
  5320. "php": ">=7.1"
  5321. },
  5322. "provide": {
  5323. "ext-ctype": "*"
  5324. },
  5325. "suggest": {
  5326. "ext-ctype": "For best performance"
  5327. },
  5328. "type": "library",
  5329. "extra": {
  5330. "branch-alias": {
  5331. "dev-main": "1.27-dev"
  5332. },
  5333. "thanks": {
  5334. "name": "symfony/polyfill",
  5335. "url": "https://github.com/symfony/polyfill"
  5336. }
  5337. },
  5338. "autoload": {
  5339. "files": [
  5340. "bootstrap.php"
  5341. ],
  5342. "psr-4": {
  5343. "Symfony\\Polyfill\\Ctype\\": ""
  5344. }
  5345. },
  5346. "notification-url": "https://packagist.org/downloads/",
  5347. "license": [
  5348. "MIT"
  5349. ],
  5350. "authors": [
  5351. {
  5352. "name": "Gert de Pagter",
  5353. "email": "[email protected]"
  5354. },
  5355. {
  5356. "name": "Symfony Community",
  5357. "homepage": "https://symfony.com/contributors"
  5358. }
  5359. ],
  5360. "description": "Symfony polyfill for ctype functions",
  5361. "homepage": "https://symfony.com",
  5362. "keywords": [
  5363. "compatibility",
  5364. "ctype",
  5365. "polyfill",
  5366. "portable"
  5367. ],
  5368. "support": {
  5369. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  5370. },
  5371. "funding": [
  5372. {
  5373. "url": "https://symfony.com/sponsor",
  5374. "type": "custom"
  5375. },
  5376. {
  5377. "url": "https://github.com/fabpot",
  5378. "type": "github"
  5379. },
  5380. {
  5381. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5382. "type": "tidelift"
  5383. }
  5384. ],
  5385. "time": "2022-11-03T14:55:06+00:00"
  5386. },
  5387. {
  5388. "name": "symfony/polyfill-iconv",
  5389. "version": "v1.27.0",
  5390. "source": {
  5391. "type": "git",
  5392. "url": "https://github.com/symfony/polyfill-iconv.git",
  5393. "reference": "927013f3aac555983a5059aada98e1907d842695"
  5394. },
  5395. "dist": {
  5396. "type": "zip",
  5397. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  5398. "reference": "927013f3aac555983a5059aada98e1907d842695",
  5399. "shasum": ""
  5400. },
  5401. "require": {
  5402. "php": ">=7.1"
  5403. },
  5404. "provide": {
  5405. "ext-iconv": "*"
  5406. },
  5407. "suggest": {
  5408. "ext-iconv": "For best performance"
  5409. },
  5410. "type": "library",
  5411. "extra": {
  5412. "branch-alias": {
  5413. "dev-main": "1.27-dev"
  5414. },
  5415. "thanks": {
  5416. "name": "symfony/polyfill",
  5417. "url": "https://github.com/symfony/polyfill"
  5418. }
  5419. },
  5420. "autoload": {
  5421. "files": [
  5422. "bootstrap.php"
  5423. ],
  5424. "psr-4": {
  5425. "Symfony\\Polyfill\\Iconv\\": ""
  5426. }
  5427. },
  5428. "notification-url": "https://packagist.org/downloads/",
  5429. "license": [
  5430. "MIT"
  5431. ],
  5432. "authors": [
  5433. {
  5434. "name": "Nicolas Grekas",
  5435. "email": "[email protected]"
  5436. },
  5437. {
  5438. "name": "Symfony Community",
  5439. "homepage": "https://symfony.com/contributors"
  5440. }
  5441. ],
  5442. "description": "Symfony polyfill for the Iconv extension",
  5443. "homepage": "https://symfony.com",
  5444. "keywords": [
  5445. "compatibility",
  5446. "iconv",
  5447. "polyfill",
  5448. "portable",
  5449. "shim"
  5450. ],
  5451. "support": {
  5452. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  5453. },
  5454. "funding": [
  5455. {
  5456. "url": "https://symfony.com/sponsor",
  5457. "type": "custom"
  5458. },
  5459. {
  5460. "url": "https://github.com/fabpot",
  5461. "type": "github"
  5462. },
  5463. {
  5464. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5465. "type": "tidelift"
  5466. }
  5467. ],
  5468. "time": "2022-11-03T14:55:06+00:00"
  5469. },
  5470. {
  5471. "name": "symfony/polyfill-intl-grapheme",
  5472. "version": "v1.27.0",
  5473. "source": {
  5474. "type": "git",
  5475. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5476. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  5477. },
  5478. "dist": {
  5479. "type": "zip",
  5480. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  5481. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  5482. "shasum": ""
  5483. },
  5484. "require": {
  5485. "php": ">=7.1"
  5486. },
  5487. "suggest": {
  5488. "ext-intl": "For best performance"
  5489. },
  5490. "type": "library",
  5491. "extra": {
  5492. "branch-alias": {
  5493. "dev-main": "1.27-dev"
  5494. },
  5495. "thanks": {
  5496. "name": "symfony/polyfill",
  5497. "url": "https://github.com/symfony/polyfill"
  5498. }
  5499. },
  5500. "autoload": {
  5501. "files": [
  5502. "bootstrap.php"
  5503. ],
  5504. "psr-4": {
  5505. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5506. }
  5507. },
  5508. "notification-url": "https://packagist.org/downloads/",
  5509. "license": [
  5510. "MIT"
  5511. ],
  5512. "authors": [
  5513. {
  5514. "name": "Nicolas Grekas",
  5515. "email": "[email protected]"
  5516. },
  5517. {
  5518. "name": "Symfony Community",
  5519. "homepage": "https://symfony.com/contributors"
  5520. }
  5521. ],
  5522. "description": "Symfony polyfill for intl's grapheme_* functions",
  5523. "homepage": "https://symfony.com",
  5524. "keywords": [
  5525. "compatibility",
  5526. "grapheme",
  5527. "intl",
  5528. "polyfill",
  5529. "portable",
  5530. "shim"
  5531. ],
  5532. "support": {
  5533. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  5534. },
  5535. "funding": [
  5536. {
  5537. "url": "https://symfony.com/sponsor",
  5538. "type": "custom"
  5539. },
  5540. {
  5541. "url": "https://github.com/fabpot",
  5542. "type": "github"
  5543. },
  5544. {
  5545. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5546. "type": "tidelift"
  5547. }
  5548. ],
  5549. "time": "2022-11-03T14:55:06+00:00"
  5550. },
  5551. {
  5552. "name": "symfony/polyfill-intl-normalizer",
  5553. "version": "v1.27.0",
  5554. "source": {
  5555. "type": "git",
  5556. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5557. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  5558. },
  5559. "dist": {
  5560. "type": "zip",
  5561. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5562. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5563. "shasum": ""
  5564. },
  5565. "require": {
  5566. "php": ">=7.1"
  5567. },
  5568. "suggest": {
  5569. "ext-intl": "For best performance"
  5570. },
  5571. "type": "library",
  5572. "extra": {
  5573. "branch-alias": {
  5574. "dev-main": "1.27-dev"
  5575. },
  5576. "thanks": {
  5577. "name": "symfony/polyfill",
  5578. "url": "https://github.com/symfony/polyfill"
  5579. }
  5580. },
  5581. "autoload": {
  5582. "files": [
  5583. "bootstrap.php"
  5584. ],
  5585. "psr-4": {
  5586. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5587. },
  5588. "classmap": [
  5589. "Resources/stubs"
  5590. ]
  5591. },
  5592. "notification-url": "https://packagist.org/downloads/",
  5593. "license": [
  5594. "MIT"
  5595. ],
  5596. "authors": [
  5597. {
  5598. "name": "Nicolas Grekas",
  5599. "email": "[email protected]"
  5600. },
  5601. {
  5602. "name": "Symfony Community",
  5603. "homepage": "https://symfony.com/contributors"
  5604. }
  5605. ],
  5606. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5607. "homepage": "https://symfony.com",
  5608. "keywords": [
  5609. "compatibility",
  5610. "intl",
  5611. "normalizer",
  5612. "polyfill",
  5613. "portable",
  5614. "shim"
  5615. ],
  5616. "support": {
  5617. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  5618. },
  5619. "funding": [
  5620. {
  5621. "url": "https://symfony.com/sponsor",
  5622. "type": "custom"
  5623. },
  5624. {
  5625. "url": "https://github.com/fabpot",
  5626. "type": "github"
  5627. },
  5628. {
  5629. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5630. "type": "tidelift"
  5631. }
  5632. ],
  5633. "time": "2022-11-03T14:55:06+00:00"
  5634. },
  5635. {
  5636. "name": "symfony/polyfill-mbstring",
  5637. "version": "v1.27.0",
  5638. "source": {
  5639. "type": "git",
  5640. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5641. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  5642. },
  5643. "dist": {
  5644. "type": "zip",
  5645. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5646. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5647. "shasum": ""
  5648. },
  5649. "require": {
  5650. "php": ">=7.1"
  5651. },
  5652. "provide": {
  5653. "ext-mbstring": "*"
  5654. },
  5655. "suggest": {
  5656. "ext-mbstring": "For best performance"
  5657. },
  5658. "type": "library",
  5659. "extra": {
  5660. "branch-alias": {
  5661. "dev-main": "1.27-dev"
  5662. },
  5663. "thanks": {
  5664. "name": "symfony/polyfill",
  5665. "url": "https://github.com/symfony/polyfill"
  5666. }
  5667. },
  5668. "autoload": {
  5669. "files": [
  5670. "bootstrap.php"
  5671. ],
  5672. "psr-4": {
  5673. "Symfony\\Polyfill\\Mbstring\\": ""
  5674. }
  5675. },
  5676. "notification-url": "https://packagist.org/downloads/",
  5677. "license": [
  5678. "MIT"
  5679. ],
  5680. "authors": [
  5681. {
  5682. "name": "Nicolas Grekas",
  5683. "email": "[email protected]"
  5684. },
  5685. {
  5686. "name": "Symfony Community",
  5687. "homepage": "https://symfony.com/contributors"
  5688. }
  5689. ],
  5690. "description": "Symfony polyfill for the Mbstring extension",
  5691. "homepage": "https://symfony.com",
  5692. "keywords": [
  5693. "compatibility",
  5694. "mbstring",
  5695. "polyfill",
  5696. "portable",
  5697. "shim"
  5698. ],
  5699. "support": {
  5700. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  5701. },
  5702. "funding": [
  5703. {
  5704. "url": "https://symfony.com/sponsor",
  5705. "type": "custom"
  5706. },
  5707. {
  5708. "url": "https://github.com/fabpot",
  5709. "type": "github"
  5710. },
  5711. {
  5712. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5713. "type": "tidelift"
  5714. }
  5715. ],
  5716. "time": "2022-11-03T14:55:06+00:00"
  5717. },
  5718. {
  5719. "name": "symfony/polyfill-php72",
  5720. "version": "v1.27.0",
  5721. "source": {
  5722. "type": "git",
  5723. "url": "https://github.com/symfony/polyfill-php72.git",
  5724. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  5725. },
  5726. "dist": {
  5727. "type": "zip",
  5728. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  5729. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  5730. "shasum": ""
  5731. },
  5732. "require": {
  5733. "php": ">=7.1"
  5734. },
  5735. "type": "library",
  5736. "extra": {
  5737. "branch-alias": {
  5738. "dev-main": "1.27-dev"
  5739. },
  5740. "thanks": {
  5741. "name": "symfony/polyfill",
  5742. "url": "https://github.com/symfony/polyfill"
  5743. }
  5744. },
  5745. "autoload": {
  5746. "files": [
  5747. "bootstrap.php"
  5748. ],
  5749. "psr-4": {
  5750. "Symfony\\Polyfill\\Php72\\": ""
  5751. }
  5752. },
  5753. "notification-url": "https://packagist.org/downloads/",
  5754. "license": [
  5755. "MIT"
  5756. ],
  5757. "authors": [
  5758. {
  5759. "name": "Nicolas Grekas",
  5760. "email": "[email protected]"
  5761. },
  5762. {
  5763. "name": "Symfony Community",
  5764. "homepage": "https://symfony.com/contributors"
  5765. }
  5766. ],
  5767. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5768. "homepage": "https://symfony.com",
  5769. "keywords": [
  5770. "compatibility",
  5771. "polyfill",
  5772. "portable",
  5773. "shim"
  5774. ],
  5775. "support": {
  5776. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  5777. },
  5778. "funding": [
  5779. {
  5780. "url": "https://symfony.com/sponsor",
  5781. "type": "custom"
  5782. },
  5783. {
  5784. "url": "https://github.com/fabpot",
  5785. "type": "github"
  5786. },
  5787. {
  5788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5789. "type": "tidelift"
  5790. }
  5791. ],
  5792. "time": "2022-11-03T14:55:06+00:00"
  5793. },
  5794. {
  5795. "name": "symfony/polyfill-php80",
  5796. "version": "v1.27.0",
  5797. "source": {
  5798. "type": "git",
  5799. "url": "https://github.com/symfony/polyfill-php80.git",
  5800. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  5801. },
  5802. "dist": {
  5803. "type": "zip",
  5804. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5805. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5806. "shasum": ""
  5807. },
  5808. "require": {
  5809. "php": ">=7.1"
  5810. },
  5811. "type": "library",
  5812. "extra": {
  5813. "branch-alias": {
  5814. "dev-main": "1.27-dev"
  5815. },
  5816. "thanks": {
  5817. "name": "symfony/polyfill",
  5818. "url": "https://github.com/symfony/polyfill"
  5819. }
  5820. },
  5821. "autoload": {
  5822. "files": [
  5823. "bootstrap.php"
  5824. ],
  5825. "psr-4": {
  5826. "Symfony\\Polyfill\\Php80\\": ""
  5827. },
  5828. "classmap": [
  5829. "Resources/stubs"
  5830. ]
  5831. },
  5832. "notification-url": "https://packagist.org/downloads/",
  5833. "license": [
  5834. "MIT"
  5835. ],
  5836. "authors": [
  5837. {
  5838. "name": "Ion Bazan",
  5839. "email": "[email protected]"
  5840. },
  5841. {
  5842. "name": "Nicolas Grekas",
  5843. "email": "[email protected]"
  5844. },
  5845. {
  5846. "name": "Symfony Community",
  5847. "homepage": "https://symfony.com/contributors"
  5848. }
  5849. ],
  5850. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5851. "homepage": "https://symfony.com",
  5852. "keywords": [
  5853. "compatibility",
  5854. "polyfill",
  5855. "portable",
  5856. "shim"
  5857. ],
  5858. "support": {
  5859. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  5860. },
  5861. "funding": [
  5862. {
  5863. "url": "https://symfony.com/sponsor",
  5864. "type": "custom"
  5865. },
  5866. {
  5867. "url": "https://github.com/fabpot",
  5868. "type": "github"
  5869. },
  5870. {
  5871. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5872. "type": "tidelift"
  5873. }
  5874. ],
  5875. "time": "2022-11-03T14:55:06+00:00"
  5876. },
  5877. {
  5878. "name": "symfony/service-contracts",
  5879. "version": "v3.2.1",
  5880. "source": {
  5881. "type": "git",
  5882. "url": "https://github.com/symfony/service-contracts.git",
  5883. "reference": "a8c9cedf55f314f3a186041d19537303766df09a"
  5884. },
  5885. "dist": {
  5886. "type": "zip",
  5887. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a8c9cedf55f314f3a186041d19537303766df09a",
  5888. "reference": "a8c9cedf55f314f3a186041d19537303766df09a",
  5889. "shasum": ""
  5890. },
  5891. "require": {
  5892. "php": ">=8.1",
  5893. "psr/container": "^2.0"
  5894. },
  5895. "conflict": {
  5896. "ext-psr": "<1.1|>=2"
  5897. },
  5898. "suggest": {
  5899. "symfony/service-implementation": ""
  5900. },
  5901. "type": "library",
  5902. "extra": {
  5903. "branch-alias": {
  5904. "dev-main": "3.3-dev"
  5905. },
  5906. "thanks": {
  5907. "name": "symfony/contracts",
  5908. "url": "https://github.com/symfony/contracts"
  5909. }
  5910. },
  5911. "autoload": {
  5912. "psr-4": {
  5913. "Symfony\\Contracts\\Service\\": ""
  5914. },
  5915. "exclude-from-classmap": [
  5916. "/Test/"
  5917. ]
  5918. },
  5919. "notification-url": "https://packagist.org/downloads/",
  5920. "license": [
  5921. "MIT"
  5922. ],
  5923. "authors": [
  5924. {
  5925. "name": "Nicolas Grekas",
  5926. "email": "[email protected]"
  5927. },
  5928. {
  5929. "name": "Symfony Community",
  5930. "homepage": "https://symfony.com/contributors"
  5931. }
  5932. ],
  5933. "description": "Generic abstractions related to writing services",
  5934. "homepage": "https://symfony.com",
  5935. "keywords": [
  5936. "abstractions",
  5937. "contracts",
  5938. "decoupling",
  5939. "interfaces",
  5940. "interoperability",
  5941. "standards"
  5942. ],
  5943. "support": {
  5944. "source": "https://github.com/symfony/service-contracts/tree/v3.2.1"
  5945. },
  5946. "funding": [
  5947. {
  5948. "url": "https://symfony.com/sponsor",
  5949. "type": "custom"
  5950. },
  5951. {
  5952. "url": "https://github.com/fabpot",
  5953. "type": "github"
  5954. },
  5955. {
  5956. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5957. "type": "tidelift"
  5958. }
  5959. ],
  5960. "time": "2023-03-01T10:32:47+00:00"
  5961. },
  5962. {
  5963. "name": "symfony/string",
  5964. "version": "v6.2.8",
  5965. "source": {
  5966. "type": "git",
  5967. "url": "https://github.com/symfony/string.git",
  5968. "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef"
  5969. },
  5970. "dist": {
  5971. "type": "zip",
  5972. "url": "https://api.github.com/repos/symfony/string/zipball/193e83bbd6617d6b2151c37fff10fa7168ebddef",
  5973. "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef",
  5974. "shasum": ""
  5975. },
  5976. "require": {
  5977. "php": ">=8.1",
  5978. "symfony/polyfill-ctype": "~1.8",
  5979. "symfony/polyfill-intl-grapheme": "~1.0",
  5980. "symfony/polyfill-intl-normalizer": "~1.0",
  5981. "symfony/polyfill-mbstring": "~1.0"
  5982. },
  5983. "conflict": {
  5984. "symfony/translation-contracts": "<2.0"
  5985. },
  5986. "require-dev": {
  5987. "symfony/error-handler": "^5.4|^6.0",
  5988. "symfony/http-client": "^5.4|^6.0",
  5989. "symfony/intl": "^6.2",
  5990. "symfony/translation-contracts": "^2.0|^3.0",
  5991. "symfony/var-exporter": "^5.4|^6.0"
  5992. },
  5993. "type": "library",
  5994. "autoload": {
  5995. "files": [
  5996. "Resources/functions.php"
  5997. ],
  5998. "psr-4": {
  5999. "Symfony\\Component\\String\\": ""
  6000. },
  6001. "exclude-from-classmap": [
  6002. "/Tests/"
  6003. ]
  6004. },
  6005. "notification-url": "https://packagist.org/downloads/",
  6006. "license": [
  6007. "MIT"
  6008. ],
  6009. "authors": [
  6010. {
  6011. "name": "Nicolas Grekas",
  6012. "email": "[email protected]"
  6013. },
  6014. {
  6015. "name": "Symfony Community",
  6016. "homepage": "https://symfony.com/contributors"
  6017. }
  6018. ],
  6019. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6020. "homepage": "https://symfony.com",
  6021. "keywords": [
  6022. "grapheme",
  6023. "i18n",
  6024. "string",
  6025. "unicode",
  6026. "utf-8",
  6027. "utf8"
  6028. ],
  6029. "support": {
  6030. "source": "https://github.com/symfony/string/tree/v6.2.8"
  6031. },
  6032. "funding": [
  6033. {
  6034. "url": "https://symfony.com/sponsor",
  6035. "type": "custom"
  6036. },
  6037. {
  6038. "url": "https://github.com/fabpot",
  6039. "type": "github"
  6040. },
  6041. {
  6042. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6043. "type": "tidelift"
  6044. }
  6045. ],
  6046. "time": "2023-03-20T16:06:02+00:00"
  6047. },
  6048. {
  6049. "name": "symfony/translation",
  6050. "version": "v6.2.8",
  6051. "source": {
  6052. "type": "git",
  6053. "url": "https://github.com/symfony/translation.git",
  6054. "reference": "817535dbb1721df8b3a8f2489dc7e50bcd6209b5"
  6055. },
  6056. "dist": {
  6057. "type": "zip",
  6058. "url": "https://api.github.com/repos/symfony/translation/zipball/817535dbb1721df8b3a8f2489dc7e50bcd6209b5",
  6059. "reference": "817535dbb1721df8b3a8f2489dc7e50bcd6209b5",
  6060. "shasum": ""
  6061. },
  6062. "require": {
  6063. "php": ">=8.1",
  6064. "symfony/polyfill-mbstring": "~1.0",
  6065. "symfony/translation-contracts": "^2.3|^3.0"
  6066. },
  6067. "conflict": {
  6068. "symfony/config": "<5.4",
  6069. "symfony/console": "<5.4",
  6070. "symfony/dependency-injection": "<5.4",
  6071. "symfony/http-kernel": "<5.4",
  6072. "symfony/twig-bundle": "<5.4",
  6073. "symfony/yaml": "<5.4"
  6074. },
  6075. "provide": {
  6076. "symfony/translation-implementation": "2.3|3.0"
  6077. },
  6078. "require-dev": {
  6079. "nikic/php-parser": "^4.13",
  6080. "psr/log": "^1|^2|^3",
  6081. "symfony/config": "^5.4|^6.0",
  6082. "symfony/console": "^5.4|^6.0",
  6083. "symfony/dependency-injection": "^5.4|^6.0",
  6084. "symfony/finder": "^5.4|^6.0",
  6085. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6086. "symfony/http-kernel": "^5.4|^6.0",
  6087. "symfony/intl": "^5.4|^6.0",
  6088. "symfony/polyfill-intl-icu": "^1.21",
  6089. "symfony/routing": "^5.4|^6.0",
  6090. "symfony/service-contracts": "^1.1.2|^2|^3",
  6091. "symfony/yaml": "^5.4|^6.0"
  6092. },
  6093. "suggest": {
  6094. "nikic/php-parser": "To use PhpAstExtractor",
  6095. "psr/log-implementation": "To use logging capability in translator",
  6096. "symfony/config": "",
  6097. "symfony/yaml": ""
  6098. },
  6099. "type": "library",
  6100. "autoload": {
  6101. "files": [
  6102. "Resources/functions.php"
  6103. ],
  6104. "psr-4": {
  6105. "Symfony\\Component\\Translation\\": ""
  6106. },
  6107. "exclude-from-classmap": [
  6108. "/Tests/"
  6109. ]
  6110. },
  6111. "notification-url": "https://packagist.org/downloads/",
  6112. "license": [
  6113. "MIT"
  6114. ],
  6115. "authors": [
  6116. {
  6117. "name": "Fabien Potencier",
  6118. "email": "[email protected]"
  6119. },
  6120. {
  6121. "name": "Symfony Community",
  6122. "homepage": "https://symfony.com/contributors"
  6123. }
  6124. ],
  6125. "description": "Provides tools to internationalize your application",
  6126. "homepage": "https://symfony.com",
  6127. "support": {
  6128. "source": "https://github.com/symfony/translation/tree/v6.2.8"
  6129. },
  6130. "funding": [
  6131. {
  6132. "url": "https://symfony.com/sponsor",
  6133. "type": "custom"
  6134. },
  6135. {
  6136. "url": "https://github.com/fabpot",
  6137. "type": "github"
  6138. },
  6139. {
  6140. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6141. "type": "tidelift"
  6142. }
  6143. ],
  6144. "time": "2023-03-31T09:14:44+00:00"
  6145. },
  6146. {
  6147. "name": "symfony/translation-contracts",
  6148. "version": "v3.2.1",
  6149. "source": {
  6150. "type": "git",
  6151. "url": "https://github.com/symfony/translation-contracts.git",
  6152. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8"
  6153. },
  6154. "dist": {
  6155. "type": "zip",
  6156. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dfec258b9dd17a6b24420d464c43bffe347441c8",
  6157. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8",
  6158. "shasum": ""
  6159. },
  6160. "require": {
  6161. "php": ">=8.1"
  6162. },
  6163. "suggest": {
  6164. "symfony/translation-implementation": ""
  6165. },
  6166. "type": "library",
  6167. "extra": {
  6168. "branch-alias": {
  6169. "dev-main": "3.3-dev"
  6170. },
  6171. "thanks": {
  6172. "name": "symfony/contracts",
  6173. "url": "https://github.com/symfony/contracts"
  6174. }
  6175. },
  6176. "autoload": {
  6177. "psr-4": {
  6178. "Symfony\\Contracts\\Translation\\": ""
  6179. },
  6180. "exclude-from-classmap": [
  6181. "/Test/"
  6182. ]
  6183. },
  6184. "notification-url": "https://packagist.org/downloads/",
  6185. "license": [
  6186. "MIT"
  6187. ],
  6188. "authors": [
  6189. {
  6190. "name": "Nicolas Grekas",
  6191. "email": "[email protected]"
  6192. },
  6193. {
  6194. "name": "Symfony Community",
  6195. "homepage": "https://symfony.com/contributors"
  6196. }
  6197. ],
  6198. "description": "Generic abstractions related to translation",
  6199. "homepage": "https://symfony.com",
  6200. "keywords": [
  6201. "abstractions",
  6202. "contracts",
  6203. "decoupling",
  6204. "interfaces",
  6205. "interoperability",
  6206. "standards"
  6207. ],
  6208. "support": {
  6209. "source": "https://github.com/symfony/translation-contracts/tree/v3.2.1"
  6210. },
  6211. "funding": [
  6212. {
  6213. "url": "https://symfony.com/sponsor",
  6214. "type": "custom"
  6215. },
  6216. {
  6217. "url": "https://github.com/fabpot",
  6218. "type": "github"
  6219. },
  6220. {
  6221. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6222. "type": "tidelift"
  6223. }
  6224. ],
  6225. "time": "2023-03-01T10:32:47+00:00"
  6226. },
  6227. {
  6228. "name": "symfony/yaml",
  6229. "version": "v6.2.10",
  6230. "source": {
  6231. "type": "git",
  6232. "url": "https://github.com/symfony/yaml.git",
  6233. "reference": "61916f3861b1e9705b18cfde723921a71dd1559d"
  6234. },
  6235. "dist": {
  6236. "type": "zip",
  6237. "url": "https://api.github.com/repos/symfony/yaml/zipball/61916f3861b1e9705b18cfde723921a71dd1559d",
  6238. "reference": "61916f3861b1e9705b18cfde723921a71dd1559d",
  6239. "shasum": ""
  6240. },
  6241. "require": {
  6242. "php": ">=8.1",
  6243. "symfony/polyfill-ctype": "^1.8"
  6244. },
  6245. "conflict": {
  6246. "symfony/console": "<5.4"
  6247. },
  6248. "require-dev": {
  6249. "symfony/console": "^5.4|^6.0"
  6250. },
  6251. "suggest": {
  6252. "symfony/console": "For validating YAML files using the lint command"
  6253. },
  6254. "bin": [
  6255. "Resources/bin/yaml-lint"
  6256. ],
  6257. "type": "library",
  6258. "autoload": {
  6259. "psr-4": {
  6260. "Symfony\\Component\\Yaml\\": ""
  6261. },
  6262. "exclude-from-classmap": [
  6263. "/Tests/"
  6264. ]
  6265. },
  6266. "notification-url": "https://packagist.org/downloads/",
  6267. "license": [
  6268. "MIT"
  6269. ],
  6270. "authors": [
  6271. {
  6272. "name": "Fabien Potencier",
  6273. "email": "[email protected]"
  6274. },
  6275. {
  6276. "name": "Symfony Community",
  6277. "homepage": "https://symfony.com/contributors"
  6278. }
  6279. ],
  6280. "description": "Loads and dumps YAML files",
  6281. "homepage": "https://symfony.com",
  6282. "support": {
  6283. "source": "https://github.com/symfony/yaml/tree/v6.2.10"
  6284. },
  6285. "funding": [
  6286. {
  6287. "url": "https://symfony.com/sponsor",
  6288. "type": "custom"
  6289. },
  6290. {
  6291. "url": "https://github.com/fabpot",
  6292. "type": "github"
  6293. },
  6294. {
  6295. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6296. "type": "tidelift"
  6297. }
  6298. ],
  6299. "time": "2023-04-28T13:25:36+00:00"
  6300. },
  6301. {
  6302. "name": "tronovav/geoip2-update",
  6303. "version": "v2.1.24",
  6304. "source": {
  6305. "type": "git",
  6306. "url": "https://github.com/tronovav/geoip2-update.git",
  6307. "reference": "6b91582eb11d4c39cfe66b3178ac0a6c67839cf9"
  6308. },
  6309. "dist": {
  6310. "type": "zip",
  6311. "url": "https://api.github.com/repos/tronovav/geoip2-update/zipball/6b91582eb11d4c39cfe66b3178ac0a6c67839cf9",
  6312. "reference": "6b91582eb11d4c39cfe66b3178ac0a6c67839cf9",
  6313. "shasum": ""
  6314. },
  6315. "require": {
  6316. "ext-curl": "*",
  6317. "php": ">=5.3"
  6318. },
  6319. "suggest": {
  6320. "ext-zip": "Required for updating the CSV databases."
  6321. },
  6322. "type": "library",
  6323. "autoload": {
  6324. "psr-4": {
  6325. "tronovav\\GeoIP2Update\\": "src/"
  6326. }
  6327. },
  6328. "notification-url": "https://packagist.org/downloads/",
  6329. "license": [
  6330. "MIT"
  6331. ],
  6332. "authors": [
  6333. {
  6334. "name": "Andrey Tronov",
  6335. "email": "[email protected]"
  6336. }
  6337. ],
  6338. "description": "Update GeoIP2/GeoLite2 databases from your script, program or via composer.",
  6339. "keywords": [
  6340. "geoip",
  6341. "geoip2",
  6342. "geolite2",
  6343. "geolocation",
  6344. "maxmind"
  6345. ],
  6346. "support": {
  6347. "email": "[email protected]",
  6348. "issues": "https://github.com/tronovav/geoip2-update/issues",
  6349. "source": "https://github.com/tronovav/geoip2-update/tree/v2.1.24"
  6350. },
  6351. "funding": [
  6352. {
  6353. "url": "https://donate.stream/tronovav",
  6354. "type": "other"
  6355. },
  6356. {
  6357. "url": "https://yoomoney.ru/to/410016198845596",
  6358. "type": "other"
  6359. }
  6360. ],
  6361. "time": "2023-03-13T11:43:07+00:00"
  6362. },
  6363. {
  6364. "name": "vectorface/googleauthenticator",
  6365. "version": "v3.0",
  6366. "source": {
  6367. "type": "git",
  6368. "url": "https://github.com/Vectorface/GoogleAuthenticator.git",
  6369. "reference": "bf6879959b69f7573038f4601d2c5b85dca8bb48"
  6370. },
  6371. "dist": {
  6372. "type": "zip",
  6373. "url": "https://api.github.com/repos/Vectorface/GoogleAuthenticator/zipball/bf6879959b69f7573038f4601d2c5b85dca8bb48",
  6374. "reference": "bf6879959b69f7573038f4601d2c5b85dca8bb48",
  6375. "shasum": ""
  6376. },
  6377. "require": {
  6378. "endroid/qr-code": "^4.0.0",
  6379. "php": ">=7.3"
  6380. },
  6381. "require-dev": {
  6382. "phpunit/phpunit": "^9"
  6383. },
  6384. "type": "library",
  6385. "autoload": {
  6386. "psr-4": {
  6387. "Vectorface\\": "src/"
  6388. }
  6389. },
  6390. "notification-url": "https://packagist.org/downloads/",
  6391. "license": [
  6392. "BSD-2-Clause"
  6393. ],
  6394. "authors": [
  6395. {
  6396. "name": "Michael Kliewe",
  6397. "email": "[email protected]",
  6398. "homepage": "http://www.phpgangsta.de/",
  6399. "role": "Developer"
  6400. },
  6401. {
  6402. "name": "Francis Lavoie",
  6403. "email": "[email protected]",
  6404. "homepage": "http://vectorface.com/",
  6405. "role": "Developer"
  6406. }
  6407. ],
  6408. "description": "Google Authenticator 2-factor authentication",
  6409. "keywords": [
  6410. "googleauthenticator",
  6411. "rfc6238",
  6412. "totp"
  6413. ],
  6414. "support": {
  6415. "issues": "https://github.com/Vectorface/GoogleAuthenticator/issues",
  6416. "source": "https://github.com/Vectorface/GoogleAuthenticator"
  6417. },
  6418. "time": "2021-04-20T19:40:40+00:00"
  6419. },
  6420. {
  6421. "name": "voku/anti-xss",
  6422. "version": "4.1.41",
  6423. "source": {
  6424. "type": "git",
  6425. "url": "https://github.com/voku/anti-xss.git",
  6426. "reference": "55a403436494e44a2547a8d42de68e6cad4bca1d"
  6427. },
  6428. "dist": {
  6429. "type": "zip",
  6430. "url": "https://api.github.com/repos/voku/anti-xss/zipball/55a403436494e44a2547a8d42de68e6cad4bca1d",
  6431. "reference": "55a403436494e44a2547a8d42de68e6cad4bca1d",
  6432. "shasum": ""
  6433. },
  6434. "require": {
  6435. "php": ">=7.0.0",
  6436. "voku/portable-utf8": "~6.0.2"
  6437. },
  6438. "require-dev": {
  6439. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6440. },
  6441. "type": "library",
  6442. "extra": {
  6443. "branch-alias": {
  6444. "dev-master": "4.1.x-dev"
  6445. }
  6446. },
  6447. "autoload": {
  6448. "psr-4": {
  6449. "voku\\helper\\": "src/voku/helper/"
  6450. }
  6451. },
  6452. "notification-url": "https://packagist.org/downloads/",
  6453. "license": [
  6454. "MIT"
  6455. ],
  6456. "authors": [
  6457. {
  6458. "name": "EllisLab Dev Team",
  6459. "homepage": "http://ellislab.com/"
  6460. },
  6461. {
  6462. "name": "Lars Moelleken",
  6463. "email": "[email protected]",
  6464. "homepage": "https://www.moelleken.org/"
  6465. }
  6466. ],
  6467. "description": "anti xss-library",
  6468. "homepage": "https://github.com/voku/anti-xss",
  6469. "keywords": [
  6470. "anti-xss",
  6471. "clean",
  6472. "security",
  6473. "xss"
  6474. ],
  6475. "support": {
  6476. "issues": "https://github.com/voku/anti-xss/issues",
  6477. "source": "https://github.com/voku/anti-xss/tree/4.1.41"
  6478. },
  6479. "funding": [
  6480. {
  6481. "url": "https://www.paypal.me/moelleken",
  6482. "type": "custom"
  6483. },
  6484. {
  6485. "url": "https://github.com/voku",
  6486. "type": "github"
  6487. },
  6488. {
  6489. "url": "https://opencollective.com/anti-xss",
  6490. "type": "open_collective"
  6491. },
  6492. {
  6493. "url": "https://www.patreon.com/voku",
  6494. "type": "patreon"
  6495. },
  6496. {
  6497. "url": "https://tidelift.com/funding/github/packagist/voku/anti-xss",
  6498. "type": "tidelift"
  6499. }
  6500. ],
  6501. "time": "2023-02-12T15:56:55+00:00"
  6502. },
  6503. {
  6504. "name": "voku/portable-ascii",
  6505. "version": "2.0.1",
  6506. "source": {
  6507. "type": "git",
  6508. "url": "https://github.com/voku/portable-ascii.git",
  6509. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  6510. },
  6511. "dist": {
  6512. "type": "zip",
  6513. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  6514. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  6515. "shasum": ""
  6516. },
  6517. "require": {
  6518. "php": ">=7.0.0"
  6519. },
  6520. "require-dev": {
  6521. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6522. },
  6523. "suggest": {
  6524. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6525. },
  6526. "type": "library",
  6527. "autoload": {
  6528. "psr-4": {
  6529. "voku\\": "src/voku/"
  6530. }
  6531. },
  6532. "notification-url": "https://packagist.org/downloads/",
  6533. "license": [
  6534. "MIT"
  6535. ],
  6536. "authors": [
  6537. {
  6538. "name": "Lars Moelleken",
  6539. "homepage": "http://www.moelleken.org/"
  6540. }
  6541. ],
  6542. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6543. "homepage": "https://github.com/voku/portable-ascii",
  6544. "keywords": [
  6545. "ascii",
  6546. "clean",
  6547. "php"
  6548. ],
  6549. "support": {
  6550. "issues": "https://github.com/voku/portable-ascii/issues",
  6551. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  6552. },
  6553. "funding": [
  6554. {
  6555. "url": "https://www.paypal.me/moelleken",
  6556. "type": "custom"
  6557. },
  6558. {
  6559. "url": "https://github.com/voku",
  6560. "type": "github"
  6561. },
  6562. {
  6563. "url": "https://opencollective.com/portable-ascii",
  6564. "type": "open_collective"
  6565. },
  6566. {
  6567. "url": "https://www.patreon.com/voku",
  6568. "type": "patreon"
  6569. },
  6570. {
  6571. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6572. "type": "tidelift"
  6573. }
  6574. ],
  6575. "time": "2022-03-08T17:03:00+00:00"
  6576. },
  6577. {
  6578. "name": "voku/portable-utf8",
  6579. "version": "6.0.13",
  6580. "source": {
  6581. "type": "git",
  6582. "url": "https://github.com/voku/portable-utf8.git",
  6583. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f"
  6584. },
  6585. "dist": {
  6586. "type": "zip",
  6587. "url": "https://api.github.com/repos/voku/portable-utf8/zipball/b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  6588. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  6589. "shasum": ""
  6590. },
  6591. "require": {
  6592. "php": ">=7.0.0",
  6593. "symfony/polyfill-iconv": "~1.0",
  6594. "symfony/polyfill-intl-grapheme": "~1.0",
  6595. "symfony/polyfill-intl-normalizer": "~1.0",
  6596. "symfony/polyfill-mbstring": "~1.0",
  6597. "symfony/polyfill-php72": "~1.0",
  6598. "voku/portable-ascii": "~2.0.0"
  6599. },
  6600. "require-dev": {
  6601. "phpstan/phpstan": "1.9.*@dev",
  6602. "phpstan/phpstan-strict-rules": "1.4.*@dev",
  6603. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0",
  6604. "thecodingmachine/phpstan-strict-rules": "1.0.*@dev",
  6605. "voku/phpstan-rules": "3.1.*@dev"
  6606. },
  6607. "suggest": {
  6608. "ext-ctype": "Use Ctype for e.g. hexadecimal digit detection",
  6609. "ext-fileinfo": "Use Fileinfo for better binary file detection",
  6610. "ext-iconv": "Use iconv for best performance",
  6611. "ext-intl": "Use Intl for best performance",
  6612. "ext-json": "Use JSON for string detection",
  6613. "ext-mbstring": "Use Mbstring for best performance"
  6614. },
  6615. "type": "library",
  6616. "autoload": {
  6617. "files": [
  6618. "bootstrap.php"
  6619. ],
  6620. "psr-4": {
  6621. "voku\\": "src/voku/"
  6622. }
  6623. },
  6624. "notification-url": "https://packagist.org/downloads/",
  6625. "license": [
  6626. "(Apache-2.0 or GPL-2.0)"
  6627. ],
  6628. "authors": [
  6629. {
  6630. "name": "Nicolas Grekas",
  6631. "email": "[email protected]"
  6632. },
  6633. {
  6634. "name": "Hamid Sarfraz",
  6635. "homepage": "http://pageconfig.com/"
  6636. },
  6637. {
  6638. "name": "Lars Moelleken",
  6639. "homepage": "http://www.moelleken.org/"
  6640. }
  6641. ],
  6642. "description": "Portable UTF-8 library - performance optimized (unicode) string functions for php.",
  6643. "homepage": "https://github.com/voku/portable-utf8",
  6644. "keywords": [
  6645. "UTF",
  6646. "clean",
  6647. "php",
  6648. "unicode",
  6649. "utf-8",
  6650. "utf8"
  6651. ],
  6652. "support": {
  6653. "issues": "https://github.com/voku/portable-utf8/issues",
  6654. "source": "https://github.com/voku/portable-utf8/tree/6.0.13"
  6655. },
  6656. "funding": [
  6657. {
  6658. "url": "https://www.paypal.me/moelleken",
  6659. "type": "custom"
  6660. },
  6661. {
  6662. "url": "https://github.com/voku",
  6663. "type": "github"
  6664. },
  6665. {
  6666. "url": "https://opencollective.com/portable-utf8",
  6667. "type": "open_collective"
  6668. },
  6669. {
  6670. "url": "https://www.patreon.com/voku",
  6671. "type": "patreon"
  6672. },
  6673. {
  6674. "url": "https://tidelift.com/funding/github/packagist/voku/portable-utf8",
  6675. "type": "tidelift"
  6676. }
  6677. ],
  6678. "time": "2023-03-08T08:35:38+00:00"
  6679. },
  6680. {
  6681. "name": "webmozart/assert",
  6682. "version": "1.11.0",
  6683. "source": {
  6684. "type": "git",
  6685. "url": "https://github.com/webmozarts/assert.git",
  6686. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  6687. },
  6688. "dist": {
  6689. "type": "zip",
  6690. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6691. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6692. "shasum": ""
  6693. },
  6694. "require": {
  6695. "ext-ctype": "*",
  6696. "php": "^7.2 || ^8.0"
  6697. },
  6698. "conflict": {
  6699. "phpstan/phpstan": "<0.12.20",
  6700. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6701. },
  6702. "require-dev": {
  6703. "phpunit/phpunit": "^8.5.13"
  6704. },
  6705. "type": "library",
  6706. "extra": {
  6707. "branch-alias": {
  6708. "dev-master": "1.10-dev"
  6709. }
  6710. },
  6711. "autoload": {
  6712. "psr-4": {
  6713. "Webmozart\\Assert\\": "src/"
  6714. }
  6715. },
  6716. "notification-url": "https://packagist.org/downloads/",
  6717. "license": [
  6718. "MIT"
  6719. ],
  6720. "authors": [
  6721. {
  6722. "name": "Bernhard Schussek",
  6723. "email": "[email protected]"
  6724. }
  6725. ],
  6726. "description": "Assertions to validate method input/output with nice error messages.",
  6727. "keywords": [
  6728. "assert",
  6729. "check",
  6730. "validate"
  6731. ],
  6732. "support": {
  6733. "issues": "https://github.com/webmozarts/assert/issues",
  6734. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  6735. },
  6736. "time": "2022-06-03T18:03:27+00:00"
  6737. }
  6738. ],
  6739. "packages-dev": [
  6740. {
  6741. "name": "cmgmyr/phploc",
  6742. "version": "8.0.2",
  6743. "source": {
  6744. "type": "git",
  6745. "url": "https://github.com/cmgmyr/phploc.git",
  6746. "reference": "35e308033e02264a59cb1b56cc2abb1a22483ca8"
  6747. },
  6748. "dist": {
  6749. "type": "zip",
  6750. "url": "https://api.github.com/repos/cmgmyr/phploc/zipball/35e308033e02264a59cb1b56cc2abb1a22483ca8",
  6751. "reference": "35e308033e02264a59cb1b56cc2abb1a22483ca8",
  6752. "shasum": ""
  6753. },
  6754. "require": {
  6755. "ext-dom": "*",
  6756. "ext-json": "*",
  6757. "php": "^7.4 || ^8.0",
  6758. "phpunit/php-file-iterator": "^3.0|^4.0",
  6759. "sebastian/cli-parser": "^1.0|^2.0",
  6760. "sebastian/version": "^3.0|^4.0"
  6761. },
  6762. "require-dev": {
  6763. "friendsofphp/php-cs-fixer": "^3.2",
  6764. "phpunit/phpunit": "^9.0|^10.0",
  6765. "vimeo/psalm": "^5.7"
  6766. },
  6767. "bin": [
  6768. "phploc"
  6769. ],
  6770. "type": "library",
  6771. "extra": {
  6772. "branch-alias": {
  6773. "dev-main": "8.0-dev"
  6774. }
  6775. },
  6776. "autoload": {
  6777. "classmap": [
  6778. "src/"
  6779. ]
  6780. },
  6781. "notification-url": "https://packagist.org/downloads/",
  6782. "license": [
  6783. "BSD-3-Clause"
  6784. ],
  6785. "authors": [
  6786. {
  6787. "name": "Chris Gmyr",
  6788. "email": "[email protected]",
  6789. "role": "lead"
  6790. }
  6791. ],
  6792. "description": "A tool for quickly measuring the size of a PHP project.",
  6793. "homepage": "https://github.com/cmgmyr/phploc",
  6794. "support": {
  6795. "issues": "https://github.com/cmgmyr/phploc/issues",
  6796. "source": "https://github.com/cmgmyr/phploc/tree/8.0.2"
  6797. },
  6798. "funding": [
  6799. {
  6800. "url": "https://github.com/cmgmyr",
  6801. "type": "github"
  6802. }
  6803. ],
  6804. "time": "2023-03-19T10:37:20+00:00"
  6805. },
  6806. {
  6807. "name": "composer/pcre",
  6808. "version": "3.1.0",
  6809. "source": {
  6810. "type": "git",
  6811. "url": "https://github.com/composer/pcre.git",
  6812. "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2"
  6813. },
  6814. "dist": {
  6815. "type": "zip",
  6816. "url": "https://api.github.com/repos/composer/pcre/zipball/4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
  6817. "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
  6818. "shasum": ""
  6819. },
  6820. "require": {
  6821. "php": "^7.4 || ^8.0"
  6822. },
  6823. "require-dev": {
  6824. "phpstan/phpstan": "^1.3",
  6825. "phpstan/phpstan-strict-rules": "^1.1",
  6826. "symfony/phpunit-bridge": "^5"
  6827. },
  6828. "type": "library",
  6829. "extra": {
  6830. "branch-alias": {
  6831. "dev-main": "3.x-dev"
  6832. }
  6833. },
  6834. "autoload": {
  6835. "psr-4": {
  6836. "Composer\\Pcre\\": "src"
  6837. }
  6838. },
  6839. "notification-url": "https://packagist.org/downloads/",
  6840. "license": [
  6841. "MIT"
  6842. ],
  6843. "authors": [
  6844. {
  6845. "name": "Jordi Boggiano",
  6846. "email": "[email protected]",
  6847. "homepage": "http://seld.be"
  6848. }
  6849. ],
  6850. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  6851. "keywords": [
  6852. "PCRE",
  6853. "preg",
  6854. "regex",
  6855. "regular expression"
  6856. ],
  6857. "support": {
  6858. "issues": "https://github.com/composer/pcre/issues",
  6859. "source": "https://github.com/composer/pcre/tree/3.1.0"
  6860. },
  6861. "funding": [
  6862. {
  6863. "url": "https://packagist.com",
  6864. "type": "custom"
  6865. },
  6866. {
  6867. "url": "https://github.com/composer",
  6868. "type": "github"
  6869. },
  6870. {
  6871. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6872. "type": "tidelift"
  6873. }
  6874. ],
  6875. "time": "2022-11-17T09:50:14+00:00"
  6876. },
  6877. {
  6878. "name": "composer/semver",
  6879. "version": "3.3.2",
  6880. "source": {
  6881. "type": "git",
  6882. "url": "https://github.com/composer/semver.git",
  6883. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  6884. },
  6885. "dist": {
  6886. "type": "zip",
  6887. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  6888. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  6889. "shasum": ""
  6890. },
  6891. "require": {
  6892. "php": "^5.3.2 || ^7.0 || ^8.0"
  6893. },
  6894. "require-dev": {
  6895. "phpstan/phpstan": "^1.4",
  6896. "symfony/phpunit-bridge": "^4.2 || ^5"
  6897. },
  6898. "type": "library",
  6899. "extra": {
  6900. "branch-alias": {
  6901. "dev-main": "3.x-dev"
  6902. }
  6903. },
  6904. "autoload": {
  6905. "psr-4": {
  6906. "Composer\\Semver\\": "src"
  6907. }
  6908. },
  6909. "notification-url": "https://packagist.org/downloads/",
  6910. "license": [
  6911. "MIT"
  6912. ],
  6913. "authors": [
  6914. {
  6915. "name": "Nils Adermann",
  6916. "email": "[email protected]",
  6917. "homepage": "http://www.naderman.de"
  6918. },
  6919. {
  6920. "name": "Jordi Boggiano",
  6921. "email": "[email protected]",
  6922. "homepage": "http://seld.be"
  6923. },
  6924. {
  6925. "name": "Rob Bast",
  6926. "email": "[email protected]",
  6927. "homepage": "http://robbast.nl"
  6928. }
  6929. ],
  6930. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6931. "keywords": [
  6932. "semantic",
  6933. "semver",
  6934. "validation",
  6935. "versioning"
  6936. ],
  6937. "support": {
  6938. "irc": "irc://irc.freenode.org/composer",
  6939. "issues": "https://github.com/composer/semver/issues",
  6940. "source": "https://github.com/composer/semver/tree/3.3.2"
  6941. },
  6942. "funding": [
  6943. {
  6944. "url": "https://packagist.com",
  6945. "type": "custom"
  6946. },
  6947. {
  6948. "url": "https://github.com/composer",
  6949. "type": "github"
  6950. },
  6951. {
  6952. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6953. "type": "tidelift"
  6954. }
  6955. ],
  6956. "time": "2022-04-01T19:23:25+00:00"
  6957. },
  6958. {
  6959. "name": "composer/xdebug-handler",
  6960. "version": "3.0.3",
  6961. "source": {
  6962. "type": "git",
  6963. "url": "https://github.com/composer/xdebug-handler.git",
  6964. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  6965. },
  6966. "dist": {
  6967. "type": "zip",
  6968. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  6969. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  6970. "shasum": ""
  6971. },
  6972. "require": {
  6973. "composer/pcre": "^1 || ^2 || ^3",
  6974. "php": "^7.2.5 || ^8.0",
  6975. "psr/log": "^1 || ^2 || ^3"
  6976. },
  6977. "require-dev": {
  6978. "phpstan/phpstan": "^1.0",
  6979. "phpstan/phpstan-strict-rules": "^1.1",
  6980. "symfony/phpunit-bridge": "^6.0"
  6981. },
  6982. "type": "library",
  6983. "autoload": {
  6984. "psr-4": {
  6985. "Composer\\XdebugHandler\\": "src"
  6986. }
  6987. },
  6988. "notification-url": "https://packagist.org/downloads/",
  6989. "license": [
  6990. "MIT"
  6991. ],
  6992. "authors": [
  6993. {
  6994. "name": "John Stevenson",
  6995. "email": "[email protected]"
  6996. }
  6997. ],
  6998. "description": "Restarts a process without Xdebug.",
  6999. "keywords": [
  7000. "Xdebug",
  7001. "performance"
  7002. ],
  7003. "support": {
  7004. "irc": "irc://irc.freenode.org/composer",
  7005. "issues": "https://github.com/composer/xdebug-handler/issues",
  7006. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  7007. },
  7008. "funding": [
  7009. {
  7010. "url": "https://packagist.com",
  7011. "type": "custom"
  7012. },
  7013. {
  7014. "url": "https://github.com/composer",
  7015. "type": "github"
  7016. },
  7017. {
  7018. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7019. "type": "tidelift"
  7020. }
  7021. ],
  7022. "time": "2022-02-25T21:32:43+00:00"
  7023. },
  7024. {
  7025. "name": "dealerdirect/phpcodesniffer-composer-installer",
  7026. "version": "v1.0.0",
  7027. "source": {
  7028. "type": "git",
  7029. "url": "https://github.com/PHPCSStandards/composer-installer.git",
  7030. "reference": "4be43904336affa5c2f70744a348312336afd0da"
  7031. },
  7032. "dist": {
  7033. "type": "zip",
  7034. "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/4be43904336affa5c2f70744a348312336afd0da",
  7035. "reference": "4be43904336affa5c2f70744a348312336afd0da",
  7036. "shasum": ""
  7037. },
  7038. "require": {
  7039. "composer-plugin-api": "^1.0 || ^2.0",
  7040. "php": ">=5.4",
  7041. "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
  7042. },
  7043. "require-dev": {
  7044. "composer/composer": "*",
  7045. "ext-json": "*",
  7046. "ext-zip": "*",
  7047. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  7048. "phpcompatibility/php-compatibility": "^9.0",
  7049. "yoast/phpunit-polyfills": "^1.0"
  7050. },
  7051. "type": "composer-plugin",
  7052. "extra": {
  7053. "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
  7054. },
  7055. "autoload": {
  7056. "psr-4": {
  7057. "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
  7058. }
  7059. },
  7060. "notification-url": "https://packagist.org/downloads/",
  7061. "license": [
  7062. "MIT"
  7063. ],
  7064. "authors": [
  7065. {
  7066. "name": "Franck Nijhof",
  7067. "email": "[email protected]",
  7068. "homepage": "http://www.frenck.nl",
  7069. "role": "Developer / IT Manager"
  7070. },
  7071. {
  7072. "name": "Contributors",
  7073. "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
  7074. }
  7075. ],
  7076. "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
  7077. "homepage": "http://www.dealerdirect.com",
  7078. "keywords": [
  7079. "PHPCodeSniffer",
  7080. "PHP_CodeSniffer",
  7081. "code quality",
  7082. "codesniffer",
  7083. "composer",
  7084. "installer",
  7085. "phpcbf",
  7086. "phpcs",
  7087. "plugin",
  7088. "qa",
  7089. "quality",
  7090. "standard",
  7091. "standards",
  7092. "style guide",
  7093. "stylecheck",
  7094. "tests"
  7095. ],
  7096. "support": {
  7097. "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
  7098. "source": "https://github.com/PHPCSStandards/composer-installer"
  7099. },
  7100. "time": "2023-01-05T11:28:13+00:00"
  7101. },
  7102. {
  7103. "name": "doctrine/annotations",
  7104. "version": "2.0.1",
  7105. "source": {
  7106. "type": "git",
  7107. "url": "https://github.com/doctrine/annotations.git",
  7108. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  7109. },
  7110. "dist": {
  7111. "type": "zip",
  7112. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  7113. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  7114. "shasum": ""
  7115. },
  7116. "require": {
  7117. "doctrine/lexer": "^2 || ^3",
  7118. "ext-tokenizer": "*",
  7119. "php": "^7.2 || ^8.0",
  7120. "psr/cache": "^1 || ^2 || ^3"
  7121. },
  7122. "require-dev": {
  7123. "doctrine/cache": "^2.0",
  7124. "doctrine/coding-standard": "^10",
  7125. "phpstan/phpstan": "^1.8.0",
  7126. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  7127. "symfony/cache": "^5.4 || ^6",
  7128. "vimeo/psalm": "^4.10"
  7129. },
  7130. "suggest": {
  7131. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  7132. },
  7133. "type": "library",
  7134. "autoload": {
  7135. "psr-4": {
  7136. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  7137. }
  7138. },
  7139. "notification-url": "https://packagist.org/downloads/",
  7140. "license": [
  7141. "MIT"
  7142. ],
  7143. "authors": [
  7144. {
  7145. "name": "Guilherme Blanco",
  7146. "email": "[email protected]"
  7147. },
  7148. {
  7149. "name": "Roman Borschel",
  7150. "email": "[email protected]"
  7151. },
  7152. {
  7153. "name": "Benjamin Eberlei",
  7154. "email": "[email protected]"
  7155. },
  7156. {
  7157. "name": "Jonathan Wage",
  7158. "email": "[email protected]"
  7159. },
  7160. {
  7161. "name": "Johannes Schmitt",
  7162. "email": "[email protected]"
  7163. }
  7164. ],
  7165. "description": "Docblock Annotations Parser",
  7166. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  7167. "keywords": [
  7168. "annotations",
  7169. "docblock",
  7170. "parser"
  7171. ],
  7172. "support": {
  7173. "issues": "https://github.com/doctrine/annotations/issues",
  7174. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  7175. },
  7176. "time": "2023-02-02T22:02:53+00:00"
  7177. },
  7178. {
  7179. "name": "doctrine/lexer",
  7180. "version": "3.0.0",
  7181. "source": {
  7182. "type": "git",
  7183. "url": "https://github.com/doctrine/lexer.git",
  7184. "reference": "84a527db05647743d50373e0ec53a152f2cde568"
  7185. },
  7186. "dist": {
  7187. "type": "zip",
  7188. "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
  7189. "reference": "84a527db05647743d50373e0ec53a152f2cde568",
  7190. "shasum": ""
  7191. },
  7192. "require": {
  7193. "php": "^8.1"
  7194. },
  7195. "require-dev": {
  7196. "doctrine/coding-standard": "^10",
  7197. "phpstan/phpstan": "^1.9",
  7198. "phpunit/phpunit": "^9.5",
  7199. "psalm/plugin-phpunit": "^0.18.3",
  7200. "vimeo/psalm": "^5.0"
  7201. },
  7202. "type": "library",
  7203. "autoload": {
  7204. "psr-4": {
  7205. "Doctrine\\Common\\Lexer\\": "src"
  7206. }
  7207. },
  7208. "notification-url": "https://packagist.org/downloads/",
  7209. "license": [
  7210. "MIT"
  7211. ],
  7212. "authors": [
  7213. {
  7214. "name": "Guilherme Blanco",
  7215. "email": "[email protected]"
  7216. },
  7217. {
  7218. "name": "Roman Borschel",
  7219. "email": "[email protected]"
  7220. },
  7221. {
  7222. "name": "Johannes Schmitt",
  7223. "email": "[email protected]"
  7224. }
  7225. ],
  7226. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  7227. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  7228. "keywords": [
  7229. "annotations",
  7230. "docblock",
  7231. "lexer",
  7232. "parser",
  7233. "php"
  7234. ],
  7235. "support": {
  7236. "issues": "https://github.com/doctrine/lexer/issues",
  7237. "source": "https://github.com/doctrine/lexer/tree/3.0.0"
  7238. },
  7239. "funding": [
  7240. {
  7241. "url": "https://www.doctrine-project.org/sponsorship.html",
  7242. "type": "custom"
  7243. },
  7244. {
  7245. "url": "https://www.patreon.com/phpdoctrine",
  7246. "type": "patreon"
  7247. },
  7248. {
  7249. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  7250. "type": "tidelift"
  7251. }
  7252. ],
  7253. "time": "2022-12-15T16:57:16+00:00"
  7254. },
  7255. {
  7256. "name": "friendsofphp/php-cs-fixer",
  7257. "version": "v3.16.0",
  7258. "source": {
  7259. "type": "git",
  7260. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7261. "reference": "d40f9436e1c448d309fa995ab9c14c5c7a96f2dc"
  7262. },
  7263. "dist": {
  7264. "type": "zip",
  7265. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/d40f9436e1c448d309fa995ab9c14c5c7a96f2dc",
  7266. "reference": "d40f9436e1c448d309fa995ab9c14c5c7a96f2dc",
  7267. "shasum": ""
  7268. },
  7269. "require": {
  7270. "composer/semver": "^3.3",
  7271. "composer/xdebug-handler": "^3.0.3",
  7272. "doctrine/annotations": "^2",
  7273. "doctrine/lexer": "^2 || ^3",
  7274. "ext-json": "*",
  7275. "ext-tokenizer": "*",
  7276. "php": "^7.4 || ^8.0",
  7277. "sebastian/diff": "^4.0 || ^5.0",
  7278. "symfony/console": "^5.4 || ^6.0",
  7279. "symfony/event-dispatcher": "^5.4 || ^6.0",
  7280. "symfony/filesystem": "^5.4 || ^6.0",
  7281. "symfony/finder": "^5.4 || ^6.0",
  7282. "symfony/options-resolver": "^5.4 || ^6.0",
  7283. "symfony/polyfill-mbstring": "^1.27",
  7284. "symfony/polyfill-php80": "^1.27",
  7285. "symfony/polyfill-php81": "^1.27",
  7286. "symfony/process": "^5.4 || ^6.0",
  7287. "symfony/stopwatch": "^5.4 || ^6.0"
  7288. },
  7289. "require-dev": {
  7290. "justinrainbow/json-schema": "^5.2",
  7291. "keradus/cli-executor": "^2.0",
  7292. "mikey179/vfsstream": "^1.6.11",
  7293. "php-coveralls/php-coveralls": "^2.5.3",
  7294. "php-cs-fixer/accessible-object": "^1.1",
  7295. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
  7296. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
  7297. "phpspec/prophecy": "^1.16",
  7298. "phpspec/prophecy-phpunit": "^2.0",
  7299. "phpunit/phpunit": "^9.5",
  7300. "phpunitgoodpractices/polyfill": "^1.6",
  7301. "phpunitgoodpractices/traits": "^1.9.2",
  7302. "symfony/phpunit-bridge": "^6.2.3",
  7303. "symfony/yaml": "^5.4 || ^6.0"
  7304. },
  7305. "suggest": {
  7306. "ext-dom": "For handling output formats in XML",
  7307. "ext-mbstring": "For handling non-UTF8 characters."
  7308. },
  7309. "bin": [
  7310. "php-cs-fixer"
  7311. ],
  7312. "type": "application",
  7313. "autoload": {
  7314. "psr-4": {
  7315. "PhpCsFixer\\": "src/"
  7316. }
  7317. },
  7318. "notification-url": "https://packagist.org/downloads/",
  7319. "license": [
  7320. "MIT"
  7321. ],
  7322. "authors": [
  7323. {
  7324. "name": "Fabien Potencier",
  7325. "email": "[email protected]"
  7326. },
  7327. {
  7328. "name": "Dariusz Rumiński",
  7329. "email": "[email protected]"
  7330. }
  7331. ],
  7332. "description": "A tool to automatically fix PHP code style",
  7333. "keywords": [
  7334. "Static code analysis",
  7335. "fixer",
  7336. "standards",
  7337. "static analysis"
  7338. ],
  7339. "support": {
  7340. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7341. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.16.0"
  7342. },
  7343. "funding": [
  7344. {
  7345. "url": "https://github.com/keradus",
  7346. "type": "github"
  7347. }
  7348. ],
  7349. "time": "2023-04-02T19:30:06+00:00"
  7350. },
  7351. {
  7352. "name": "justinrainbow/json-schema",
  7353. "version": "5.2.12",
  7354. "source": {
  7355. "type": "git",
  7356. "url": "https://github.com/justinrainbow/json-schema.git",
  7357. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60"
  7358. },
  7359. "dist": {
  7360. "type": "zip",
  7361. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  7362. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  7363. "shasum": ""
  7364. },
  7365. "require": {
  7366. "php": ">=5.3.3"
  7367. },
  7368. "require-dev": {
  7369. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  7370. "json-schema/json-schema-test-suite": "1.2.0",
  7371. "phpunit/phpunit": "^4.8.35"
  7372. },
  7373. "bin": [
  7374. "bin/validate-json"
  7375. ],
  7376. "type": "library",
  7377. "extra": {
  7378. "branch-alias": {
  7379. "dev-master": "5.0.x-dev"
  7380. }
  7381. },
  7382. "autoload": {
  7383. "psr-4": {
  7384. "JsonSchema\\": "src/JsonSchema/"
  7385. }
  7386. },
  7387. "notification-url": "https://packagist.org/downloads/",
  7388. "license": [
  7389. "MIT"
  7390. ],
  7391. "authors": [
  7392. {
  7393. "name": "Bruno Prieto Reis",
  7394. "email": "[email protected]"
  7395. },
  7396. {
  7397. "name": "Justin Rainbow",
  7398. "email": "[email protected]"
  7399. },
  7400. {
  7401. "name": "Igor Wiedler",
  7402. "email": "[email protected]"
  7403. },
  7404. {
  7405. "name": "Robert Schönthal",
  7406. "email": "[email protected]"
  7407. }
  7408. ],
  7409. "description": "A library to validate a json schema.",
  7410. "homepage": "https://github.com/justinrainbow/json-schema",
  7411. "keywords": [
  7412. "json",
  7413. "schema"
  7414. ],
  7415. "support": {
  7416. "issues": "https://github.com/justinrainbow/json-schema/issues",
  7417. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.12"
  7418. },
  7419. "time": "2022-04-13T08:02:27+00:00"
  7420. },
  7421. {
  7422. "name": "league/container",
  7423. "version": "4.2.0",
  7424. "source": {
  7425. "type": "git",
  7426. "url": "https://github.com/thephpleague/container.git",
  7427. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  7428. },
  7429. "dist": {
  7430. "type": "zip",
  7431. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  7432. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  7433. "shasum": ""
  7434. },
  7435. "require": {
  7436. "php": "^7.2 || ^8.0",
  7437. "psr/container": "^1.1 || ^2.0"
  7438. },
  7439. "provide": {
  7440. "psr/container-implementation": "^1.0"
  7441. },
  7442. "replace": {
  7443. "orno/di": "~2.0"
  7444. },
  7445. "require-dev": {
  7446. "nette/php-generator": "^3.4",
  7447. "nikic/php-parser": "^4.10",
  7448. "phpstan/phpstan": "^0.12.47",
  7449. "phpunit/phpunit": "^8.5.17",
  7450. "roave/security-advisories": "dev-latest",
  7451. "scrutinizer/ocular": "^1.8",
  7452. "squizlabs/php_codesniffer": "^3.6"
  7453. },
  7454. "type": "library",
  7455. "extra": {
  7456. "branch-alias": {
  7457. "dev-master": "4.x-dev",
  7458. "dev-4.x": "4.x-dev",
  7459. "dev-3.x": "3.x-dev",
  7460. "dev-2.x": "2.x-dev",
  7461. "dev-1.x": "1.x-dev"
  7462. }
  7463. },
  7464. "autoload": {
  7465. "psr-4": {
  7466. "League\\Container\\": "src"
  7467. }
  7468. },
  7469. "notification-url": "https://packagist.org/downloads/",
  7470. "license": [
  7471. "MIT"
  7472. ],
  7473. "authors": [
  7474. {
  7475. "name": "Phil Bennett",
  7476. "email": "[email protected]",
  7477. "role": "Developer"
  7478. }
  7479. ],
  7480. "description": "A fast and intuitive dependency injection container.",
  7481. "homepage": "https://github.com/thephpleague/container",
  7482. "keywords": [
  7483. "container",
  7484. "dependency",
  7485. "di",
  7486. "injection",
  7487. "league",
  7488. "provider",
  7489. "service"
  7490. ],
  7491. "support": {
  7492. "issues": "https://github.com/thephpleague/container/issues",
  7493. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  7494. },
  7495. "funding": [
  7496. {
  7497. "url": "https://github.com/philipobenito",
  7498. "type": "github"
  7499. }
  7500. ],
  7501. "time": "2021-11-16T10:29:06+00:00"
  7502. },
  7503. {
  7504. "name": "nunomaduro/phpinsights",
  7505. "version": "v2.8.0",
  7506. "source": {
  7507. "type": "git",
  7508. "url": "https://github.com/nunomaduro/phpinsights.git",
  7509. "reference": "a701b7acfda9940ef0140c7276319df9026824c4"
  7510. },
  7511. "dist": {
  7512. "type": "zip",
  7513. "url": "https://api.github.com/repos/nunomaduro/phpinsights/zipball/a701b7acfda9940ef0140c7276319df9026824c4",
  7514. "reference": "a701b7acfda9940ef0140c7276319df9026824c4",
  7515. "shasum": ""
  7516. },
  7517. "require": {
  7518. "cmgmyr/phploc": "^8.0",
  7519. "composer/semver": "^3.3",
  7520. "ext-iconv": "*",
  7521. "ext-json": "*",
  7522. "ext-mbstring": "*",
  7523. "ext-tokenizer": "*",
  7524. "friendsofphp/php-cs-fixer": "^3.0.0",
  7525. "justinrainbow/json-schema": "^5.1",
  7526. "league/container": "^3.2|^4.2",
  7527. "php": "^7.4 || ^8.0 || ^8.1",
  7528. "php-parallel-lint/php-parallel-lint": "^1.3",
  7529. "psr/container": "^1.0|^2.0",
  7530. "psr/simple-cache": "^1.0|^2.0|^3.0",
  7531. "sebastian/diff": "^4.0|^5.0",
  7532. "slevomat/coding-standard": "^7.0.8|^8.0",
  7533. "squizlabs/php_codesniffer": "^3.5",
  7534. "symfony/cache": "^4.4|^5.0|^6.0",
  7535. "symfony/console": "^4.2.12|^5.0|^6.0",
  7536. "symfony/finder": "^4.2.12|^5.0|^6.0",
  7537. "symfony/http-client": "^4.3.8|^5.0|^6.0",
  7538. "symfony/process": "^5.4|^6.0"
  7539. },
  7540. "require-dev": {
  7541. "ergebnis/phpstan-rules": "^0.15.0",
  7542. "illuminate/console": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
  7543. "illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
  7544. "mockery/mockery": "^1.0",
  7545. "phpstan/phpstan-strict-rules": "^0.12",
  7546. "phpunit/phpunit": "^8.0|^9.0|^10.0",
  7547. "rector/rector": "0.11.56",
  7548. "symfony/var-dumper": "^4.2.12|^5.0|^6.0",
  7549. "thecodingmachine/phpstan-strict-rules": "^0.12.0"
  7550. },
  7551. "suggest": {
  7552. "ext-simplexml": "It is needed for the checkstyle formatter"
  7553. },
  7554. "bin": [
  7555. "bin/phpinsights"
  7556. ],
  7557. "type": "library",
  7558. "extra": {
  7559. "laravel": {
  7560. "providers": [
  7561. "NunoMaduro\\PhpInsights\\Application\\Adapters\\Laravel\\InsightsServiceProvider"
  7562. ]
  7563. }
  7564. },
  7565. "autoload": {
  7566. "psr-4": {
  7567. "NunoMaduro\\PhpInsights\\": "src"
  7568. }
  7569. },
  7570. "notification-url": "https://packagist.org/downloads/",
  7571. "license": [
  7572. "MIT"
  7573. ],
  7574. "authors": [
  7575. {
  7576. "name": "Nuno Maduro",
  7577. "email": "[email protected]"
  7578. }
  7579. ],
  7580. "description": "Instant PHP quality checks from your console.",
  7581. "keywords": [
  7582. "Insights",
  7583. "code",
  7584. "console",
  7585. "php",
  7586. "quality",
  7587. "source"
  7588. ],
  7589. "support": {
  7590. "issues": "https://github.com/nunomaduro/phpinsights/issues",
  7591. "source": "https://github.com/nunomaduro/phpinsights/tree/v2.8.0"
  7592. },
  7593. "funding": [
  7594. {
  7595. "url": "https://github.com/JustSteveKing",
  7596. "type": "github"
  7597. },
  7598. {
  7599. "url": "https://github.com/cmgmyr",
  7600. "type": "github"
  7601. },
  7602. {
  7603. "url": "https://github.com/nunomaduro",
  7604. "type": "github"
  7605. }
  7606. ],
  7607. "time": "2023-03-18T18:38:03+00:00"
  7608. },
  7609. {
  7610. "name": "php-parallel-lint/php-parallel-lint",
  7611. "version": "v1.3.2",
  7612. "source": {
  7613. "type": "git",
  7614. "url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
  7615. "reference": "6483c9832e71973ed29cf71bd6b3f4fde438a9de"
  7616. },
  7617. "dist": {
  7618. "type": "zip",
  7619. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/6483c9832e71973ed29cf71bd6b3f4fde438a9de",
  7620. "reference": "6483c9832e71973ed29cf71bd6b3f4fde438a9de",
  7621. "shasum": ""
  7622. },
  7623. "require": {
  7624. "ext-json": "*",
  7625. "php": ">=5.3.0"
  7626. },
  7627. "replace": {
  7628. "grogy/php-parallel-lint": "*",
  7629. "jakub-onderka/php-parallel-lint": "*"
  7630. },
  7631. "require-dev": {
  7632. "nette/tester": "^1.3 || ^2.0",
  7633. "php-parallel-lint/php-console-highlighter": "0.* || ^1.0",
  7634. "squizlabs/php_codesniffer": "^3.6"
  7635. },
  7636. "suggest": {
  7637. "php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
  7638. },
  7639. "bin": [
  7640. "parallel-lint"
  7641. ],
  7642. "type": "library",
  7643. "autoload": {
  7644. "classmap": [
  7645. "./src/"
  7646. ]
  7647. },
  7648. "notification-url": "https://packagist.org/downloads/",
  7649. "license": [
  7650. "BSD-2-Clause"
  7651. ],
  7652. "authors": [
  7653. {
  7654. "name": "Jakub Onderka",
  7655. "email": "[email protected]"
  7656. }
  7657. ],
  7658. "description": "This tool check syntax of PHP files about 20x faster than serial check.",
  7659. "homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
  7660. "support": {
  7661. "issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues",
  7662. "source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.3.2"
  7663. },
  7664. "time": "2022-02-21T12:50:22+00:00"
  7665. },
  7666. {
  7667. "name": "phpstan/phpdoc-parser",
  7668. "version": "1.20.4",
  7669. "source": {
  7670. "type": "git",
  7671. "url": "https://github.com/phpstan/phpdoc-parser.git",
  7672. "reference": "7d568c87a9df9c5f7e8b5f075fc469aa8cb0a4cd"
  7673. },
  7674. "dist": {
  7675. "type": "zip",
  7676. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/7d568c87a9df9c5f7e8b5f075fc469aa8cb0a4cd",
  7677. "reference": "7d568c87a9df9c5f7e8b5f075fc469aa8cb0a4cd",
  7678. "shasum": ""
  7679. },
  7680. "require": {
  7681. "php": "^7.2 || ^8.0"
  7682. },
  7683. "require-dev": {
  7684. "php-parallel-lint/php-parallel-lint": "^1.2",
  7685. "phpstan/extension-installer": "^1.0",
  7686. "phpstan/phpstan": "^1.5",
  7687. "phpstan/phpstan-phpunit": "^1.1",
  7688. "phpstan/phpstan-strict-rules": "^1.0",
  7689. "phpunit/phpunit": "^9.5",
  7690. "symfony/process": "^5.2"
  7691. },
  7692. "type": "library",
  7693. "autoload": {
  7694. "psr-4": {
  7695. "PHPStan\\PhpDocParser\\": [
  7696. "src/"
  7697. ]
  7698. }
  7699. },
  7700. "notification-url": "https://packagist.org/downloads/",
  7701. "license": [
  7702. "MIT"
  7703. ],
  7704. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  7705. "support": {
  7706. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  7707. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.20.4"
  7708. },
  7709. "time": "2023-05-02T09:19:37+00:00"
  7710. },
  7711. {
  7712. "name": "phpunit/php-file-iterator",
  7713. "version": "4.0.2",
  7714. "source": {
  7715. "type": "git",
  7716. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7717. "reference": "5647d65443818959172645e7ed999217360654b6"
  7718. },
  7719. "dist": {
  7720. "type": "zip",
  7721. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/5647d65443818959172645e7ed999217360654b6",
  7722. "reference": "5647d65443818959172645e7ed999217360654b6",
  7723. "shasum": ""
  7724. },
  7725. "require": {
  7726. "php": ">=8.1"
  7727. },
  7728. "require-dev": {
  7729. "phpunit/phpunit": "^10.0"
  7730. },
  7731. "type": "library",
  7732. "extra": {
  7733. "branch-alias": {
  7734. "dev-main": "4.0-dev"
  7735. }
  7736. },
  7737. "autoload": {
  7738. "classmap": [
  7739. "src/"
  7740. ]
  7741. },
  7742. "notification-url": "https://packagist.org/downloads/",
  7743. "license": [
  7744. "BSD-3-Clause"
  7745. ],
  7746. "authors": [
  7747. {
  7748. "name": "Sebastian Bergmann",
  7749. "email": "[email protected]",
  7750. "role": "lead"
  7751. }
  7752. ],
  7753. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7754. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7755. "keywords": [
  7756. "filesystem",
  7757. "iterator"
  7758. ],
  7759. "support": {
  7760. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7761. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  7762. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.0.2"
  7763. },
  7764. "funding": [
  7765. {
  7766. "url": "https://github.com/sebastianbergmann",
  7767. "type": "github"
  7768. }
  7769. ],
  7770. "time": "2023-05-07T09:13:23+00:00"
  7771. },
  7772. {
  7773. "name": "psr/cache",
  7774. "version": "3.0.0",
  7775. "source": {
  7776. "type": "git",
  7777. "url": "https://github.com/php-fig/cache.git",
  7778. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  7779. },
  7780. "dist": {
  7781. "type": "zip",
  7782. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  7783. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  7784. "shasum": ""
  7785. },
  7786. "require": {
  7787. "php": ">=8.0.0"
  7788. },
  7789. "type": "library",
  7790. "extra": {
  7791. "branch-alias": {
  7792. "dev-master": "1.0.x-dev"
  7793. }
  7794. },
  7795. "autoload": {
  7796. "psr-4": {
  7797. "Psr\\Cache\\": "src/"
  7798. }
  7799. },
  7800. "notification-url": "https://packagist.org/downloads/",
  7801. "license": [
  7802. "MIT"
  7803. ],
  7804. "authors": [
  7805. {
  7806. "name": "PHP-FIG",
  7807. "homepage": "https://www.php-fig.org/"
  7808. }
  7809. ],
  7810. "description": "Common interface for caching libraries",
  7811. "keywords": [
  7812. "cache",
  7813. "psr",
  7814. "psr-6"
  7815. ],
  7816. "support": {
  7817. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  7818. },
  7819. "time": "2021-02-03T23:26:27+00:00"
  7820. },
  7821. {
  7822. "name": "sebastian/cli-parser",
  7823. "version": "2.0.0",
  7824. "source": {
  7825. "type": "git",
  7826. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  7827. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae"
  7828. },
  7829. "dist": {
  7830. "type": "zip",
  7831. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae",
  7832. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae",
  7833. "shasum": ""
  7834. },
  7835. "require": {
  7836. "php": ">=8.1"
  7837. },
  7838. "require-dev": {
  7839. "phpunit/phpunit": "^10.0"
  7840. },
  7841. "type": "library",
  7842. "extra": {
  7843. "branch-alias": {
  7844. "dev-main": "2.0-dev"
  7845. }
  7846. },
  7847. "autoload": {
  7848. "classmap": [
  7849. "src/"
  7850. ]
  7851. },
  7852. "notification-url": "https://packagist.org/downloads/",
  7853. "license": [
  7854. "BSD-3-Clause"
  7855. ],
  7856. "authors": [
  7857. {
  7858. "name": "Sebastian Bergmann",
  7859. "email": "[email protected]",
  7860. "role": "lead"
  7861. }
  7862. ],
  7863. "description": "Library for parsing CLI options",
  7864. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  7865. "support": {
  7866. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  7867. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.0"
  7868. },
  7869. "funding": [
  7870. {
  7871. "url": "https://github.com/sebastianbergmann",
  7872. "type": "github"
  7873. }
  7874. ],
  7875. "time": "2023-02-03T06:58:15+00:00"
  7876. },
  7877. {
  7878. "name": "sebastian/diff",
  7879. "version": "5.0.3",
  7880. "source": {
  7881. "type": "git",
  7882. "url": "https://github.com/sebastianbergmann/diff.git",
  7883. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b"
  7884. },
  7885. "dist": {
  7886. "type": "zip",
  7887. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  7888. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  7889. "shasum": ""
  7890. },
  7891. "require": {
  7892. "php": ">=8.1"
  7893. },
  7894. "require-dev": {
  7895. "phpunit/phpunit": "^10.0",
  7896. "symfony/process": "^4.2 || ^5"
  7897. },
  7898. "type": "library",
  7899. "extra": {
  7900. "branch-alias": {
  7901. "dev-main": "5.0-dev"
  7902. }
  7903. },
  7904. "autoload": {
  7905. "classmap": [
  7906. "src/"
  7907. ]
  7908. },
  7909. "notification-url": "https://packagist.org/downloads/",
  7910. "license": [
  7911. "BSD-3-Clause"
  7912. ],
  7913. "authors": [
  7914. {
  7915. "name": "Sebastian Bergmann",
  7916. "email": "[email protected]"
  7917. },
  7918. {
  7919. "name": "Kore Nordmann",
  7920. "email": "[email protected]"
  7921. }
  7922. ],
  7923. "description": "Diff implementation",
  7924. "homepage": "https://github.com/sebastianbergmann/diff",
  7925. "keywords": [
  7926. "diff",
  7927. "udiff",
  7928. "unidiff",
  7929. "unified diff"
  7930. ],
  7931. "support": {
  7932. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7933. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  7934. "source": "https://github.com/sebastianbergmann/diff/tree/5.0.3"
  7935. },
  7936. "funding": [
  7937. {
  7938. "url": "https://github.com/sebastianbergmann",
  7939. "type": "github"
  7940. }
  7941. ],
  7942. "time": "2023-05-01T07:48:21+00:00"
  7943. },
  7944. {
  7945. "name": "sebastian/version",
  7946. "version": "4.0.1",
  7947. "source": {
  7948. "type": "git",
  7949. "url": "https://github.com/sebastianbergmann/version.git",
  7950. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  7951. },
  7952. "dist": {
  7953. "type": "zip",
  7954. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  7955. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  7956. "shasum": ""
  7957. },
  7958. "require": {
  7959. "php": ">=8.1"
  7960. },
  7961. "type": "library",
  7962. "extra": {
  7963. "branch-alias": {
  7964. "dev-main": "4.0-dev"
  7965. }
  7966. },
  7967. "autoload": {
  7968. "classmap": [
  7969. "src/"
  7970. ]
  7971. },
  7972. "notification-url": "https://packagist.org/downloads/",
  7973. "license": [
  7974. "BSD-3-Clause"
  7975. ],
  7976. "authors": [
  7977. {
  7978. "name": "Sebastian Bergmann",
  7979. "email": "[email protected]",
  7980. "role": "lead"
  7981. }
  7982. ],
  7983. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7984. "homepage": "https://github.com/sebastianbergmann/version",
  7985. "support": {
  7986. "issues": "https://github.com/sebastianbergmann/version/issues",
  7987. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  7988. },
  7989. "funding": [
  7990. {
  7991. "url": "https://github.com/sebastianbergmann",
  7992. "type": "github"
  7993. }
  7994. ],
  7995. "time": "2023-02-07T11:34:05+00:00"
  7996. },
  7997. {
  7998. "name": "slevomat/coding-standard",
  7999. "version": "8.11.1",
  8000. "source": {
  8001. "type": "git",
  8002. "url": "https://github.com/slevomat/coding-standard.git",
  8003. "reference": "af87461316b257e46e15bb041dca6fca3796d822"
  8004. },
  8005. "dist": {
  8006. "type": "zip",
  8007. "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/af87461316b257e46e15bb041dca6fca3796d822",
  8008. "reference": "af87461316b257e46e15bb041dca6fca3796d822",
  8009. "shasum": ""
  8010. },
  8011. "require": {
  8012. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0",
  8013. "php": "^7.2 || ^8.0",
  8014. "phpstan/phpdoc-parser": ">=1.20.0 <1.21.0",
  8015. "squizlabs/php_codesniffer": "^3.7.1"
  8016. },
  8017. "require-dev": {
  8018. "phing/phing": "2.17.4",
  8019. "php-parallel-lint/php-parallel-lint": "1.3.2",
  8020. "phpstan/phpstan": "1.10.14",
  8021. "phpstan/phpstan-deprecation-rules": "1.1.3",
  8022. "phpstan/phpstan-phpunit": "1.3.11",
  8023. "phpstan/phpstan-strict-rules": "1.5.1",
  8024. "phpunit/phpunit": "7.5.20|8.5.21|9.6.6|10.1.1"
  8025. },
  8026. "type": "phpcodesniffer-standard",
  8027. "extra": {
  8028. "branch-alias": {
  8029. "dev-master": "8.x-dev"
  8030. }
  8031. },
  8032. "autoload": {
  8033. "psr-4": {
  8034. "SlevomatCodingStandard\\": "SlevomatCodingStandard/"
  8035. }
  8036. },
  8037. "notification-url": "https://packagist.org/downloads/",
  8038. "license": [
  8039. "MIT"
  8040. ],
  8041. "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
  8042. "keywords": [
  8043. "dev",
  8044. "phpcs"
  8045. ],
  8046. "support": {
  8047. "issues": "https://github.com/slevomat/coding-standard/issues",
  8048. "source": "https://github.com/slevomat/coding-standard/tree/8.11.1"
  8049. },
  8050. "funding": [
  8051. {
  8052. "url": "https://github.com/kukulich",
  8053. "type": "github"
  8054. },
  8055. {
  8056. "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard",
  8057. "type": "tidelift"
  8058. }
  8059. ],
  8060. "time": "2023-04-24T08:19:01+00:00"
  8061. },
  8062. {
  8063. "name": "squizlabs/php_codesniffer",
  8064. "version": "3.7.2",
  8065. "source": {
  8066. "type": "git",
  8067. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  8068. "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879"
  8069. },
  8070. "dist": {
  8071. "type": "zip",
  8072. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ed8e00df0a83aa96acf703f8c2979ff33341f879",
  8073. "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879",
  8074. "shasum": ""
  8075. },
  8076. "require": {
  8077. "ext-simplexml": "*",
  8078. "ext-tokenizer": "*",
  8079. "ext-xmlwriter": "*",
  8080. "php": ">=5.4.0"
  8081. },
  8082. "require-dev": {
  8083. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  8084. },
  8085. "bin": [
  8086. "bin/phpcs",
  8087. "bin/phpcbf"
  8088. ],
  8089. "type": "library",
  8090. "extra": {
  8091. "branch-alias": {
  8092. "dev-master": "3.x-dev"
  8093. }
  8094. },
  8095. "notification-url": "https://packagist.org/downloads/",
  8096. "license": [
  8097. "BSD-3-Clause"
  8098. ],
  8099. "authors": [
  8100. {
  8101. "name": "Greg Sherwood",
  8102. "role": "lead"
  8103. }
  8104. ],
  8105. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  8106. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  8107. "keywords": [
  8108. "phpcs",
  8109. "standards",
  8110. "static analysis"
  8111. ],
  8112. "support": {
  8113. "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
  8114. "source": "https://github.com/squizlabs/PHP_CodeSniffer",
  8115. "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
  8116. },
  8117. "time": "2023-02-22T23:07:41+00:00"
  8118. },
  8119. {
  8120. "name": "symfony/cache",
  8121. "version": "v6.2.10",
  8122. "source": {
  8123. "type": "git",
  8124. "url": "https://github.com/symfony/cache.git",
  8125. "reference": "1ce7ed8e7ca6948892b6a3a52bb60cf2b04f7c94"
  8126. },
  8127. "dist": {
  8128. "type": "zip",
  8129. "url": "https://api.github.com/repos/symfony/cache/zipball/1ce7ed8e7ca6948892b6a3a52bb60cf2b04f7c94",
  8130. "reference": "1ce7ed8e7ca6948892b6a3a52bb60cf2b04f7c94",
  8131. "shasum": ""
  8132. },
  8133. "require": {
  8134. "php": ">=8.1",
  8135. "psr/cache": "^2.0|^3.0",
  8136. "psr/log": "^1.1|^2|^3",
  8137. "symfony/cache-contracts": "^1.1.7|^2|^3",
  8138. "symfony/service-contracts": "^1.1|^2|^3",
  8139. "symfony/var-exporter": "^6.2.10"
  8140. },
  8141. "conflict": {
  8142. "doctrine/dbal": "<2.13.1",
  8143. "symfony/dependency-injection": "<5.4",
  8144. "symfony/http-kernel": "<5.4",
  8145. "symfony/var-dumper": "<5.4"
  8146. },
  8147. "provide": {
  8148. "psr/cache-implementation": "2.0|3.0",
  8149. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  8150. "symfony/cache-implementation": "1.1|2.0|3.0"
  8151. },
  8152. "require-dev": {
  8153. "cache/integration-tests": "dev-master",
  8154. "doctrine/dbal": "^2.13.1|^3.0",
  8155. "predis/predis": "^1.1",
  8156. "psr/simple-cache": "^1.0|^2.0|^3.0",
  8157. "symfony/config": "^5.4|^6.0",
  8158. "symfony/dependency-injection": "^5.4|^6.0",
  8159. "symfony/filesystem": "^5.4|^6.0",
  8160. "symfony/http-kernel": "^5.4|^6.0",
  8161. "symfony/messenger": "^5.4|^6.0",
  8162. "symfony/var-dumper": "^5.4|^6.0"
  8163. },
  8164. "type": "library",
  8165. "autoload": {
  8166. "psr-4": {
  8167. "Symfony\\Component\\Cache\\": ""
  8168. },
  8169. "classmap": [
  8170. "Traits/ValueWrapper.php"
  8171. ],
  8172. "exclude-from-classmap": [
  8173. "/Tests/"
  8174. ]
  8175. },
  8176. "notification-url": "https://packagist.org/downloads/",
  8177. "license": [
  8178. "MIT"
  8179. ],
  8180. "authors": [
  8181. {
  8182. "name": "Nicolas Grekas",
  8183. "email": "[email protected]"
  8184. },
  8185. {
  8186. "name": "Symfony Community",
  8187. "homepage": "https://symfony.com/contributors"
  8188. }
  8189. ],
  8190. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  8191. "homepage": "https://symfony.com",
  8192. "keywords": [
  8193. "caching",
  8194. "psr6"
  8195. ],
  8196. "support": {
  8197. "source": "https://github.com/symfony/cache/tree/v6.2.10"
  8198. },
  8199. "funding": [
  8200. {
  8201. "url": "https://symfony.com/sponsor",
  8202. "type": "custom"
  8203. },
  8204. {
  8205. "url": "https://github.com/fabpot",
  8206. "type": "github"
  8207. },
  8208. {
  8209. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8210. "type": "tidelift"
  8211. }
  8212. ],
  8213. "time": "2023-04-21T15:42:15+00:00"
  8214. },
  8215. {
  8216. "name": "symfony/cache-contracts",
  8217. "version": "v3.2.1",
  8218. "source": {
  8219. "type": "git",
  8220. "url": "https://github.com/symfony/cache-contracts.git",
  8221. "reference": "eeb71f04b6f7f34ca6d15633df82e014528b1632"
  8222. },
  8223. "dist": {
  8224. "type": "zip",
  8225. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/eeb71f04b6f7f34ca6d15633df82e014528b1632",
  8226. "reference": "eeb71f04b6f7f34ca6d15633df82e014528b1632",
  8227. "shasum": ""
  8228. },
  8229. "require": {
  8230. "php": ">=8.1",
  8231. "psr/cache": "^3.0"
  8232. },
  8233. "suggest": {
  8234. "symfony/cache-implementation": ""
  8235. },
  8236. "type": "library",
  8237. "extra": {
  8238. "branch-alias": {
  8239. "dev-main": "3.3-dev"
  8240. },
  8241. "thanks": {
  8242. "name": "symfony/contracts",
  8243. "url": "https://github.com/symfony/contracts"
  8244. }
  8245. },
  8246. "autoload": {
  8247. "psr-4": {
  8248. "Symfony\\Contracts\\Cache\\": ""
  8249. }
  8250. },
  8251. "notification-url": "https://packagist.org/downloads/",
  8252. "license": [
  8253. "MIT"
  8254. ],
  8255. "authors": [
  8256. {
  8257. "name": "Nicolas Grekas",
  8258. "email": "[email protected]"
  8259. },
  8260. {
  8261. "name": "Symfony Community",
  8262. "homepage": "https://symfony.com/contributors"
  8263. }
  8264. ],
  8265. "description": "Generic abstractions related to caching",
  8266. "homepage": "https://symfony.com",
  8267. "keywords": [
  8268. "abstractions",
  8269. "contracts",
  8270. "decoupling",
  8271. "interfaces",
  8272. "interoperability",
  8273. "standards"
  8274. ],
  8275. "support": {
  8276. "source": "https://github.com/symfony/cache-contracts/tree/v3.2.1"
  8277. },
  8278. "funding": [
  8279. {
  8280. "url": "https://symfony.com/sponsor",
  8281. "type": "custom"
  8282. },
  8283. {
  8284. "url": "https://github.com/fabpot",
  8285. "type": "github"
  8286. },
  8287. {
  8288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8289. "type": "tidelift"
  8290. }
  8291. ],
  8292. "time": "2023-03-01T10:32:47+00:00"
  8293. },
  8294. {
  8295. "name": "symfony/event-dispatcher",
  8296. "version": "v6.2.8",
  8297. "source": {
  8298. "type": "git",
  8299. "url": "https://github.com/symfony/event-dispatcher.git",
  8300. "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339"
  8301. },
  8302. "dist": {
  8303. "type": "zip",
  8304. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
  8305. "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
  8306. "shasum": ""
  8307. },
  8308. "require": {
  8309. "php": ">=8.1",
  8310. "symfony/event-dispatcher-contracts": "^2|^3"
  8311. },
  8312. "conflict": {
  8313. "symfony/dependency-injection": "<5.4"
  8314. },
  8315. "provide": {
  8316. "psr/event-dispatcher-implementation": "1.0",
  8317. "symfony/event-dispatcher-implementation": "2.0|3.0"
  8318. },
  8319. "require-dev": {
  8320. "psr/log": "^1|^2|^3",
  8321. "symfony/config": "^5.4|^6.0",
  8322. "symfony/dependency-injection": "^5.4|^6.0",
  8323. "symfony/error-handler": "^5.4|^6.0",
  8324. "symfony/expression-language": "^5.4|^6.0",
  8325. "symfony/http-foundation": "^5.4|^6.0",
  8326. "symfony/service-contracts": "^1.1|^2|^3",
  8327. "symfony/stopwatch": "^5.4|^6.0"
  8328. },
  8329. "suggest": {
  8330. "symfony/dependency-injection": "",
  8331. "symfony/http-kernel": ""
  8332. },
  8333. "type": "library",
  8334. "autoload": {
  8335. "psr-4": {
  8336. "Symfony\\Component\\EventDispatcher\\": ""
  8337. },
  8338. "exclude-from-classmap": [
  8339. "/Tests/"
  8340. ]
  8341. },
  8342. "notification-url": "https://packagist.org/downloads/",
  8343. "license": [
  8344. "MIT"
  8345. ],
  8346. "authors": [
  8347. {
  8348. "name": "Fabien Potencier",
  8349. "email": "[email protected]"
  8350. },
  8351. {
  8352. "name": "Symfony Community",
  8353. "homepage": "https://symfony.com/contributors"
  8354. }
  8355. ],
  8356. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  8357. "homepage": "https://symfony.com",
  8358. "support": {
  8359. "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.8"
  8360. },
  8361. "funding": [
  8362. {
  8363. "url": "https://symfony.com/sponsor",
  8364. "type": "custom"
  8365. },
  8366. {
  8367. "url": "https://github.com/fabpot",
  8368. "type": "github"
  8369. },
  8370. {
  8371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8372. "type": "tidelift"
  8373. }
  8374. ],
  8375. "time": "2023-03-20T16:06:02+00:00"
  8376. },
  8377. {
  8378. "name": "symfony/event-dispatcher-contracts",
  8379. "version": "v3.2.1",
  8380. "source": {
  8381. "type": "git",
  8382. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  8383. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd"
  8384. },
  8385. "dist": {
  8386. "type": "zip",
  8387. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  8388. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  8389. "shasum": ""
  8390. },
  8391. "require": {
  8392. "php": ">=8.1",
  8393. "psr/event-dispatcher": "^1"
  8394. },
  8395. "suggest": {
  8396. "symfony/event-dispatcher-implementation": ""
  8397. },
  8398. "type": "library",
  8399. "extra": {
  8400. "branch-alias": {
  8401. "dev-main": "3.3-dev"
  8402. },
  8403. "thanks": {
  8404. "name": "symfony/contracts",
  8405. "url": "https://github.com/symfony/contracts"
  8406. }
  8407. },
  8408. "autoload": {
  8409. "psr-4": {
  8410. "Symfony\\Contracts\\EventDispatcher\\": ""
  8411. }
  8412. },
  8413. "notification-url": "https://packagist.org/downloads/",
  8414. "license": [
  8415. "MIT"
  8416. ],
  8417. "authors": [
  8418. {
  8419. "name": "Nicolas Grekas",
  8420. "email": "[email protected]"
  8421. },
  8422. {
  8423. "name": "Symfony Community",
  8424. "homepage": "https://symfony.com/contributors"
  8425. }
  8426. ],
  8427. "description": "Generic abstractions related to dispatching event",
  8428. "homepage": "https://symfony.com",
  8429. "keywords": [
  8430. "abstractions",
  8431. "contracts",
  8432. "decoupling",
  8433. "interfaces",
  8434. "interoperability",
  8435. "standards"
  8436. ],
  8437. "support": {
  8438. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.1"
  8439. },
  8440. "funding": [
  8441. {
  8442. "url": "https://symfony.com/sponsor",
  8443. "type": "custom"
  8444. },
  8445. {
  8446. "url": "https://github.com/fabpot",
  8447. "type": "github"
  8448. },
  8449. {
  8450. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8451. "type": "tidelift"
  8452. }
  8453. ],
  8454. "time": "2023-03-01T10:32:47+00:00"
  8455. },
  8456. {
  8457. "name": "symfony/filesystem",
  8458. "version": "v6.2.10",
  8459. "source": {
  8460. "type": "git",
  8461. "url": "https://github.com/symfony/filesystem.git",
  8462. "reference": "fd588debf7d1bc16a2c84b4b3b71145d9946b894"
  8463. },
  8464. "dist": {
  8465. "type": "zip",
  8466. "url": "https://api.github.com/repos/symfony/filesystem/zipball/fd588debf7d1bc16a2c84b4b3b71145d9946b894",
  8467. "reference": "fd588debf7d1bc16a2c84b4b3b71145d9946b894",
  8468. "shasum": ""
  8469. },
  8470. "require": {
  8471. "php": ">=8.1",
  8472. "symfony/polyfill-ctype": "~1.8",
  8473. "symfony/polyfill-mbstring": "~1.8"
  8474. },
  8475. "type": "library",
  8476. "autoload": {
  8477. "psr-4": {
  8478. "Symfony\\Component\\Filesystem\\": ""
  8479. },
  8480. "exclude-from-classmap": [
  8481. "/Tests/"
  8482. ]
  8483. },
  8484. "notification-url": "https://packagist.org/downloads/",
  8485. "license": [
  8486. "MIT"
  8487. ],
  8488. "authors": [
  8489. {
  8490. "name": "Fabien Potencier",
  8491. "email": "[email protected]"
  8492. },
  8493. {
  8494. "name": "Symfony Community",
  8495. "homepage": "https://symfony.com/contributors"
  8496. }
  8497. ],
  8498. "description": "Provides basic utilities for the filesystem",
  8499. "homepage": "https://symfony.com",
  8500. "support": {
  8501. "source": "https://github.com/symfony/filesystem/tree/v6.2.10"
  8502. },
  8503. "funding": [
  8504. {
  8505. "url": "https://symfony.com/sponsor",
  8506. "type": "custom"
  8507. },
  8508. {
  8509. "url": "https://github.com/fabpot",
  8510. "type": "github"
  8511. },
  8512. {
  8513. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8514. "type": "tidelift"
  8515. }
  8516. ],
  8517. "time": "2023-04-18T13:46:08+00:00"
  8518. },
  8519. {
  8520. "name": "symfony/finder",
  8521. "version": "v6.2.7",
  8522. "source": {
  8523. "type": "git",
  8524. "url": "https://github.com/symfony/finder.git",
  8525. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb"
  8526. },
  8527. "dist": {
  8528. "type": "zip",
  8529. "url": "https://api.github.com/repos/symfony/finder/zipball/20808dc6631aecafbe67c186af5dcb370be3a0eb",
  8530. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb",
  8531. "shasum": ""
  8532. },
  8533. "require": {
  8534. "php": ">=8.1"
  8535. },
  8536. "require-dev": {
  8537. "symfony/filesystem": "^6.0"
  8538. },
  8539. "type": "library",
  8540. "autoload": {
  8541. "psr-4": {
  8542. "Symfony\\Component\\Finder\\": ""
  8543. },
  8544. "exclude-from-classmap": [
  8545. "/Tests/"
  8546. ]
  8547. },
  8548. "notification-url": "https://packagist.org/downloads/",
  8549. "license": [
  8550. "MIT"
  8551. ],
  8552. "authors": [
  8553. {
  8554. "name": "Fabien Potencier",
  8555. "email": "[email protected]"
  8556. },
  8557. {
  8558. "name": "Symfony Community",
  8559. "homepage": "https://symfony.com/contributors"
  8560. }
  8561. ],
  8562. "description": "Finds files and directories via an intuitive fluent interface",
  8563. "homepage": "https://symfony.com",
  8564. "support": {
  8565. "source": "https://github.com/symfony/finder/tree/v6.2.7"
  8566. },
  8567. "funding": [
  8568. {
  8569. "url": "https://symfony.com/sponsor",
  8570. "type": "custom"
  8571. },
  8572. {
  8573. "url": "https://github.com/fabpot",
  8574. "type": "github"
  8575. },
  8576. {
  8577. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8578. "type": "tidelift"
  8579. }
  8580. ],
  8581. "time": "2023-02-16T09:57:23+00:00"
  8582. },
  8583. {
  8584. "name": "symfony/polyfill-php81",
  8585. "version": "v1.27.0",
  8586. "source": {
  8587. "type": "git",
  8588. "url": "https://github.com/symfony/polyfill-php81.git",
  8589. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
  8590. },
  8591. "dist": {
  8592. "type": "zip",
  8593. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
  8594. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
  8595. "shasum": ""
  8596. },
  8597. "require": {
  8598. "php": ">=7.1"
  8599. },
  8600. "type": "library",
  8601. "extra": {
  8602. "branch-alias": {
  8603. "dev-main": "1.27-dev"
  8604. },
  8605. "thanks": {
  8606. "name": "symfony/polyfill",
  8607. "url": "https://github.com/symfony/polyfill"
  8608. }
  8609. },
  8610. "autoload": {
  8611. "files": [
  8612. "bootstrap.php"
  8613. ],
  8614. "psr-4": {
  8615. "Symfony\\Polyfill\\Php81\\": ""
  8616. },
  8617. "classmap": [
  8618. "Resources/stubs"
  8619. ]
  8620. },
  8621. "notification-url": "https://packagist.org/downloads/",
  8622. "license": [
  8623. "MIT"
  8624. ],
  8625. "authors": [
  8626. {
  8627. "name": "Nicolas Grekas",
  8628. "email": "[email protected]"
  8629. },
  8630. {
  8631. "name": "Symfony Community",
  8632. "homepage": "https://symfony.com/contributors"
  8633. }
  8634. ],
  8635. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  8636. "homepage": "https://symfony.com",
  8637. "keywords": [
  8638. "compatibility",
  8639. "polyfill",
  8640. "portable",
  8641. "shim"
  8642. ],
  8643. "support": {
  8644. "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
  8645. },
  8646. "funding": [
  8647. {
  8648. "url": "https://symfony.com/sponsor",
  8649. "type": "custom"
  8650. },
  8651. {
  8652. "url": "https://github.com/fabpot",
  8653. "type": "github"
  8654. },
  8655. {
  8656. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8657. "type": "tidelift"
  8658. }
  8659. ],
  8660. "time": "2022-11-03T14:55:06+00:00"
  8661. },
  8662. {
  8663. "name": "symfony/process",
  8664. "version": "v6.2.10",
  8665. "source": {
  8666. "type": "git",
  8667. "url": "https://github.com/symfony/process.git",
  8668. "reference": "b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e"
  8669. },
  8670. "dist": {
  8671. "type": "zip",
  8672. "url": "https://api.github.com/repos/symfony/process/zipball/b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e",
  8673. "reference": "b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e",
  8674. "shasum": ""
  8675. },
  8676. "require": {
  8677. "php": ">=8.1"
  8678. },
  8679. "type": "library",
  8680. "autoload": {
  8681. "psr-4": {
  8682. "Symfony\\Component\\Process\\": ""
  8683. },
  8684. "exclude-from-classmap": [
  8685. "/Tests/"
  8686. ]
  8687. },
  8688. "notification-url": "https://packagist.org/downloads/",
  8689. "license": [
  8690. "MIT"
  8691. ],
  8692. "authors": [
  8693. {
  8694. "name": "Fabien Potencier",
  8695. "email": "[email protected]"
  8696. },
  8697. {
  8698. "name": "Symfony Community",
  8699. "homepage": "https://symfony.com/contributors"
  8700. }
  8701. ],
  8702. "description": "Executes commands in sub-processes",
  8703. "homepage": "https://symfony.com",
  8704. "support": {
  8705. "source": "https://github.com/symfony/process/tree/v6.2.10"
  8706. },
  8707. "funding": [
  8708. {
  8709. "url": "https://symfony.com/sponsor",
  8710. "type": "custom"
  8711. },
  8712. {
  8713. "url": "https://github.com/fabpot",
  8714. "type": "github"
  8715. },
  8716. {
  8717. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8718. "type": "tidelift"
  8719. }
  8720. ],
  8721. "time": "2023-04-18T13:56:57+00:00"
  8722. },
  8723. {
  8724. "name": "symfony/stopwatch",
  8725. "version": "v6.2.7",
  8726. "source": {
  8727. "type": "git",
  8728. "url": "https://github.com/symfony/stopwatch.git",
  8729. "reference": "f3adc98c1061875dd2edcd45e5b04e63d0e29f8f"
  8730. },
  8731. "dist": {
  8732. "type": "zip",
  8733. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/f3adc98c1061875dd2edcd45e5b04e63d0e29f8f",
  8734. "reference": "f3adc98c1061875dd2edcd45e5b04e63d0e29f8f",
  8735. "shasum": ""
  8736. },
  8737. "require": {
  8738. "php": ">=8.1",
  8739. "symfony/service-contracts": "^1|^2|^3"
  8740. },
  8741. "type": "library",
  8742. "autoload": {
  8743. "psr-4": {
  8744. "Symfony\\Component\\Stopwatch\\": ""
  8745. },
  8746. "exclude-from-classmap": [
  8747. "/Tests/"
  8748. ]
  8749. },
  8750. "notification-url": "https://packagist.org/downloads/",
  8751. "license": [
  8752. "MIT"
  8753. ],
  8754. "authors": [
  8755. {
  8756. "name": "Fabien Potencier",
  8757. "email": "[email protected]"
  8758. },
  8759. {
  8760. "name": "Symfony Community",
  8761. "homepage": "https://symfony.com/contributors"
  8762. }
  8763. ],
  8764. "description": "Provides a way to profile code",
  8765. "homepage": "https://symfony.com",
  8766. "support": {
  8767. "source": "https://github.com/symfony/stopwatch/tree/v6.2.7"
  8768. },
  8769. "funding": [
  8770. {
  8771. "url": "https://symfony.com/sponsor",
  8772. "type": "custom"
  8773. },
  8774. {
  8775. "url": "https://github.com/fabpot",
  8776. "type": "github"
  8777. },
  8778. {
  8779. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8780. "type": "tidelift"
  8781. }
  8782. ],
  8783. "time": "2023-02-14T08:44:56+00:00"
  8784. },
  8785. {
  8786. "name": "symfony/var-exporter",
  8787. "version": "v6.2.10",
  8788. "source": {
  8789. "type": "git",
  8790. "url": "https://github.com/symfony/var-exporter.git",
  8791. "reference": "9a07920c2058bafee921ce4d90aeef2193837d63"
  8792. },
  8793. "dist": {
  8794. "type": "zip",
  8795. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/9a07920c2058bafee921ce4d90aeef2193837d63",
  8796. "reference": "9a07920c2058bafee921ce4d90aeef2193837d63",
  8797. "shasum": ""
  8798. },
  8799. "require": {
  8800. "php": ">=8.1"
  8801. },
  8802. "require-dev": {
  8803. "symfony/var-dumper": "^5.4|^6.0"
  8804. },
  8805. "type": "library",
  8806. "autoload": {
  8807. "psr-4": {
  8808. "Symfony\\Component\\VarExporter\\": ""
  8809. },
  8810. "exclude-from-classmap": [
  8811. "/Tests/"
  8812. ]
  8813. },
  8814. "notification-url": "https://packagist.org/downloads/",
  8815. "license": [
  8816. "MIT"
  8817. ],
  8818. "authors": [
  8819. {
  8820. "name": "Nicolas Grekas",
  8821. "email": "[email protected]"
  8822. },
  8823. {
  8824. "name": "Symfony Community",
  8825. "homepage": "https://symfony.com/contributors"
  8826. }
  8827. ],
  8828. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8829. "homepage": "https://symfony.com",
  8830. "keywords": [
  8831. "clone",
  8832. "construct",
  8833. "export",
  8834. "hydrate",
  8835. "instantiate",
  8836. "lazy-loading",
  8837. "proxy",
  8838. "serialize"
  8839. ],
  8840. "support": {
  8841. "source": "https://github.com/symfony/var-exporter/tree/v6.2.10"
  8842. },
  8843. "funding": [
  8844. {
  8845. "url": "https://symfony.com/sponsor",
  8846. "type": "custom"
  8847. },
  8848. {
  8849. "url": "https://github.com/fabpot",
  8850. "type": "github"
  8851. },
  8852. {
  8853. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8854. "type": "tidelift"
  8855. }
  8856. ],
  8857. "time": "2023-04-21T08:33:05+00:00"
  8858. }
  8859. ],
  8860. "aliases": [],
  8861. "minimum-stability": "stable",
  8862. "stability-flags": [],
  8863. "prefer-stable": false,
  8864. "prefer-lowest": false,
  8865. "platform": {
  8866. "php": "^8.0",
  8867. "ext-bcmath": "*",
  8868. "ext-curl": "*",
  8869. "ext-json": "*",
  8870. "ext-mysqli": "*",
  8871. "ext-openssl": "*",
  8872. "ext-pdo": "*",
  8873. "ext-xml": "*",
  8874. "ext-zip": "*"
  8875. },
  8876. "platform-dev": [],
  8877. "plugin-api-version": "2.3.0"
  8878. }