composer.lock 227 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418
  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": "fdb031645aff23a1bd5189998b743fd9",
  8. "packages": [
  9. {
  10. "name": "brick/math",
  11. "version": "0.12.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/brick/math.git",
  15. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  20. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "require-dev": {
  27. "php-coveralls/php-coveralls": "^2.2",
  28. "phpunit/phpunit": "^10.1",
  29. "vimeo/psalm": "5.16.0"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "psr-4": {
  34. "Brick\\Math\\": "src/"
  35. }
  36. },
  37. "notification-url": "https://packagist.org/downloads/",
  38. "license": [
  39. "MIT"
  40. ],
  41. "description": "Arbitrary-precision arithmetic library",
  42. "keywords": [
  43. "Arbitrary-precision",
  44. "BigInteger",
  45. "BigRational",
  46. "arithmetic",
  47. "bigdecimal",
  48. "bignum",
  49. "bignumber",
  50. "brick",
  51. "decimal",
  52. "integer",
  53. "math",
  54. "mathematics",
  55. "rational"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/brick/math/issues",
  59. "source": "https://github.com/brick/math/tree/0.12.1"
  60. },
  61. "funding": [
  62. {
  63. "url": "https://github.com/BenMorel",
  64. "type": "github"
  65. }
  66. ],
  67. "time": "2023-11-29T23:19:16+00:00"
  68. },
  69. {
  70. "name": "carbonphp/carbon-doctrine-types",
  71. "version": "3.2.0",
  72. "source": {
  73. "type": "git",
  74. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  75. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  80. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  81. "shasum": ""
  82. },
  83. "require": {
  84. "php": "^8.1"
  85. },
  86. "conflict": {
  87. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  88. },
  89. "require-dev": {
  90. "doctrine/dbal": "^4.0.0",
  91. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  92. "phpunit/phpunit": "^10.3"
  93. },
  94. "type": "library",
  95. "autoload": {
  96. "psr-4": {
  97. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  98. }
  99. },
  100. "notification-url": "https://packagist.org/downloads/",
  101. "license": [
  102. "MIT"
  103. ],
  104. "authors": [
  105. {
  106. "name": "KyleKatarn",
  107. "email": "kylekatarnls@gmail.com"
  108. }
  109. ],
  110. "description": "Types to use Carbon in Doctrine",
  111. "keywords": [
  112. "carbon",
  113. "date",
  114. "datetime",
  115. "doctrine",
  116. "time"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  120. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://github.com/kylekatarnls",
  125. "type": "github"
  126. },
  127. {
  128. "url": "https://opencollective.com/Carbon",
  129. "type": "open_collective"
  130. },
  131. {
  132. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  133. "type": "tidelift"
  134. }
  135. ],
  136. "time": "2024-02-09T16:56:22+00:00"
  137. },
  138. {
  139. "name": "doctrine/annotations",
  140. "version": "2.0.1",
  141. "source": {
  142. "type": "git",
  143. "url": "https://github.com/doctrine/annotations.git",
  144. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  145. },
  146. "dist": {
  147. "type": "zip",
  148. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  149. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  150. "shasum": ""
  151. },
  152. "require": {
  153. "doctrine/lexer": "^2 || ^3",
  154. "ext-tokenizer": "*",
  155. "php": "^7.2 || ^8.0",
  156. "psr/cache": "^1 || ^2 || ^3"
  157. },
  158. "require-dev": {
  159. "doctrine/cache": "^2.0",
  160. "doctrine/coding-standard": "^10",
  161. "phpstan/phpstan": "^1.8.0",
  162. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  163. "symfony/cache": "^5.4 || ^6",
  164. "vimeo/psalm": "^4.10"
  165. },
  166. "suggest": {
  167. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  168. },
  169. "type": "library",
  170. "autoload": {
  171. "psr-4": {
  172. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  173. }
  174. },
  175. "notification-url": "https://packagist.org/downloads/",
  176. "license": [
  177. "MIT"
  178. ],
  179. "authors": [
  180. {
  181. "name": "Guilherme Blanco",
  182. "email": "guilhermeblanco@gmail.com"
  183. },
  184. {
  185. "name": "Roman Borschel",
  186. "email": "roman@code-factory.org"
  187. },
  188. {
  189. "name": "Benjamin Eberlei",
  190. "email": "kontakt@beberlei.de"
  191. },
  192. {
  193. "name": "Jonathan Wage",
  194. "email": "jonwage@gmail.com"
  195. },
  196. {
  197. "name": "Johannes Schmitt",
  198. "email": "schmittjoh@gmail.com"
  199. }
  200. ],
  201. "description": "Docblock Annotations Parser",
  202. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  203. "keywords": [
  204. "annotations",
  205. "docblock",
  206. "parser"
  207. ],
  208. "support": {
  209. "issues": "https://github.com/doctrine/annotations/issues",
  210. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  211. },
  212. "time": "2023-02-02T22:02:53+00:00"
  213. },
  214. {
  215. "name": "doctrine/inflector",
  216. "version": "2.0.10",
  217. "source": {
  218. "type": "git",
  219. "url": "https://github.com/doctrine/inflector.git",
  220. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  221. },
  222. "dist": {
  223. "type": "zip",
  224. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  225. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  226. "shasum": ""
  227. },
  228. "require": {
  229. "php": "^7.2 || ^8.0"
  230. },
  231. "require-dev": {
  232. "doctrine/coding-standard": "^11.0",
  233. "phpstan/phpstan": "^1.8",
  234. "phpstan/phpstan-phpunit": "^1.1",
  235. "phpstan/phpstan-strict-rules": "^1.3",
  236. "phpunit/phpunit": "^8.5 || ^9.5",
  237. "vimeo/psalm": "^4.25 || ^5.4"
  238. },
  239. "type": "library",
  240. "autoload": {
  241. "psr-4": {
  242. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  243. }
  244. },
  245. "notification-url": "https://packagist.org/downloads/",
  246. "license": [
  247. "MIT"
  248. ],
  249. "authors": [
  250. {
  251. "name": "Guilherme Blanco",
  252. "email": "guilhermeblanco@gmail.com"
  253. },
  254. {
  255. "name": "Roman Borschel",
  256. "email": "roman@code-factory.org"
  257. },
  258. {
  259. "name": "Benjamin Eberlei",
  260. "email": "kontakt@beberlei.de"
  261. },
  262. {
  263. "name": "Jonathan Wage",
  264. "email": "jonwage@gmail.com"
  265. },
  266. {
  267. "name": "Johannes Schmitt",
  268. "email": "schmittjoh@gmail.com"
  269. }
  270. ],
  271. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  272. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  273. "keywords": [
  274. "inflection",
  275. "inflector",
  276. "lowercase",
  277. "manipulation",
  278. "php",
  279. "plural",
  280. "singular",
  281. "strings",
  282. "uppercase",
  283. "words"
  284. ],
  285. "support": {
  286. "issues": "https://github.com/doctrine/inflector/issues",
  287. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  288. },
  289. "funding": [
  290. {
  291. "url": "https://www.doctrine-project.org/sponsorship.html",
  292. "type": "custom"
  293. },
  294. {
  295. "url": "https://www.patreon.com/phpdoctrine",
  296. "type": "patreon"
  297. },
  298. {
  299. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  300. "type": "tidelift"
  301. }
  302. ],
  303. "time": "2024-02-18T20:23:39+00:00"
  304. },
  305. {
  306. "name": "doctrine/lexer",
  307. "version": "3.0.1",
  308. "source": {
  309. "type": "git",
  310. "url": "https://github.com/doctrine/lexer.git",
  311. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  312. },
  313. "dist": {
  314. "type": "zip",
  315. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  316. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  317. "shasum": ""
  318. },
  319. "require": {
  320. "php": "^8.1"
  321. },
  322. "require-dev": {
  323. "doctrine/coding-standard": "^12",
  324. "phpstan/phpstan": "^1.10",
  325. "phpunit/phpunit": "^10.5",
  326. "psalm/plugin-phpunit": "^0.18.3",
  327. "vimeo/psalm": "^5.21"
  328. },
  329. "type": "library",
  330. "autoload": {
  331. "psr-4": {
  332. "Doctrine\\Common\\Lexer\\": "src"
  333. }
  334. },
  335. "notification-url": "https://packagist.org/downloads/",
  336. "license": [
  337. "MIT"
  338. ],
  339. "authors": [
  340. {
  341. "name": "Guilherme Blanco",
  342. "email": "guilhermeblanco@gmail.com"
  343. },
  344. {
  345. "name": "Roman Borschel",
  346. "email": "roman@code-factory.org"
  347. },
  348. {
  349. "name": "Johannes Schmitt",
  350. "email": "schmittjoh@gmail.com"
  351. }
  352. ],
  353. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  354. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  355. "keywords": [
  356. "annotations",
  357. "docblock",
  358. "lexer",
  359. "parser",
  360. "php"
  361. ],
  362. "support": {
  363. "issues": "https://github.com/doctrine/lexer/issues",
  364. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  365. },
  366. "funding": [
  367. {
  368. "url": "https://www.doctrine-project.org/sponsorship.html",
  369. "type": "custom"
  370. },
  371. {
  372. "url": "https://www.patreon.com/phpdoctrine",
  373. "type": "patreon"
  374. },
  375. {
  376. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  377. "type": "tidelift"
  378. }
  379. ],
  380. "time": "2024-02-05T11:56:58+00:00"
  381. },
  382. {
  383. "name": "firebase/php-jwt",
  384. "version": "v6.10.1",
  385. "source": {
  386. "type": "git",
  387. "url": "https://github.com/firebase/php-jwt.git",
  388. "reference": "500501c2ce893c824c801da135d02661199f60c5"
  389. },
  390. "dist": {
  391. "type": "zip",
  392. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/500501c2ce893c824c801da135d02661199f60c5",
  393. "reference": "500501c2ce893c824c801da135d02661199f60c5",
  394. "shasum": ""
  395. },
  396. "require": {
  397. "php": "^8.0"
  398. },
  399. "require-dev": {
  400. "guzzlehttp/guzzle": "^7.4",
  401. "phpspec/prophecy-phpunit": "^2.0",
  402. "phpunit/phpunit": "^9.5",
  403. "psr/cache": "^2.0||^3.0",
  404. "psr/http-client": "^1.0",
  405. "psr/http-factory": "^1.0"
  406. },
  407. "suggest": {
  408. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  409. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  410. },
  411. "type": "library",
  412. "autoload": {
  413. "psr-4": {
  414. "Firebase\\JWT\\": "src"
  415. }
  416. },
  417. "notification-url": "https://packagist.org/downloads/",
  418. "license": [
  419. "BSD-3-Clause"
  420. ],
  421. "authors": [
  422. {
  423. "name": "Neuman Vong",
  424. "email": "neuman+pear@twilio.com",
  425. "role": "Developer"
  426. },
  427. {
  428. "name": "Anant Narayanan",
  429. "email": "anant@php.net",
  430. "role": "Developer"
  431. }
  432. ],
  433. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  434. "homepage": "https://github.com/firebase/php-jwt",
  435. "keywords": [
  436. "jwt",
  437. "php"
  438. ],
  439. "support": {
  440. "issues": "https://github.com/firebase/php-jwt/issues",
  441. "source": "https://github.com/firebase/php-jwt/tree/v6.10.1"
  442. },
  443. "time": "2024-05-18T18:05:11+00:00"
  444. },
  445. {
  446. "name": "giggsey/libphonenumber-for-php",
  447. "version": "8.13.40",
  448. "source": {
  449. "type": "git",
  450. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  451. "reference": "795e0b760e5c439b6fa1ffa787c1d90c2face1ff"
  452. },
  453. "dist": {
  454. "type": "zip",
  455. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/795e0b760e5c439b6fa1ffa787c1d90c2face1ff",
  456. "reference": "795e0b760e5c439b6fa1ffa787c1d90c2face1ff",
  457. "shasum": ""
  458. },
  459. "require": {
  460. "giggsey/locale": "^1.7|^2.0",
  461. "php": ">=5.3.2",
  462. "symfony/polyfill-mbstring": "^1.17"
  463. },
  464. "replace": {
  465. "giggsey/libphonenumber-for-php-lite": "self.version"
  466. },
  467. "require-dev": {
  468. "pear/pear-core-minimal": "^1.9",
  469. "pear/pear_exception": "^1.0",
  470. "pear/versioncontrol_git": "^0.5",
  471. "phing/phing": "^2.7",
  472. "php-coveralls/php-coveralls": "^1.0|^2.0",
  473. "symfony/console": "^2.8|^3.0|^v4.4|^v5.2",
  474. "symfony/phpunit-bridge": "^4.2 || ^5"
  475. },
  476. "type": "library",
  477. "extra": {
  478. "branch-alias": {
  479. "dev-master": "8.x-dev"
  480. }
  481. },
  482. "autoload": {
  483. "psr-4": {
  484. "libphonenumber\\": "src/"
  485. },
  486. "exclude-from-classmap": [
  487. "/src/data/",
  488. "/src/carrier/data/",
  489. "/src/geocoding/data/",
  490. "/src/timezone/data/"
  491. ]
  492. },
  493. "notification-url": "https://packagist.org/downloads/",
  494. "license": [
  495. "Apache-2.0"
  496. ],
  497. "authors": [
  498. {
  499. "name": "Joshua Gigg",
  500. "email": "giggsey@gmail.com",
  501. "homepage": "https://giggsey.com/"
  502. }
  503. ],
  504. "description": "PHP Port of Google's libphonenumber",
  505. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  506. "keywords": [
  507. "geocoding",
  508. "geolocation",
  509. "libphonenumber",
  510. "mobile",
  511. "phonenumber",
  512. "validation"
  513. ],
  514. "support": {
  515. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  516. "source": "https://github.com/giggsey/libphonenumber-for-php"
  517. },
  518. "time": "2024-07-01T11:38:07+00:00"
  519. },
  520. {
  521. "name": "giggsey/locale",
  522. "version": "2.6",
  523. "source": {
  524. "type": "git",
  525. "url": "https://github.com/giggsey/Locale.git",
  526. "reference": "37874fa473131247c348059fb7b8985efc18b5ea"
  527. },
  528. "dist": {
  529. "type": "zip",
  530. "url": "https://api.github.com/repos/giggsey/Locale/zipball/37874fa473131247c348059fb7b8985efc18b5ea",
  531. "reference": "37874fa473131247c348059fb7b8985efc18b5ea",
  532. "shasum": ""
  533. },
  534. "require": {
  535. "php": ">=7.2"
  536. },
  537. "require-dev": {
  538. "ext-json": "*",
  539. "pear/pear-core-minimal": "^1.9",
  540. "pear/pear_exception": "^1.0",
  541. "pear/versioncontrol_git": "^0.5",
  542. "phing/phing": "^2.7",
  543. "php-coveralls/php-coveralls": "^2.0",
  544. "phpunit/phpunit": "^8.5|^9.5",
  545. "symfony/console": "^5.0|^6.0",
  546. "symfony/filesystem": "^5.0|^6.0",
  547. "symfony/finder": "^5.0|^6.0",
  548. "symfony/process": "^5.0|^6.0"
  549. },
  550. "type": "library",
  551. "autoload": {
  552. "psr-4": {
  553. "Giggsey\\Locale\\": "src/"
  554. }
  555. },
  556. "notification-url": "https://packagist.org/downloads/",
  557. "license": [
  558. "MIT"
  559. ],
  560. "authors": [
  561. {
  562. "name": "Joshua Gigg",
  563. "email": "giggsey@gmail.com",
  564. "homepage": "https://giggsey.com/"
  565. }
  566. ],
  567. "description": "Locale functions required by libphonenumber-for-php",
  568. "support": {
  569. "issues": "https://github.com/giggsey/Locale/issues",
  570. "source": "https://github.com/giggsey/Locale/tree/2.6"
  571. },
  572. "time": "2024-04-18T19:31:19+00:00"
  573. },
  574. {
  575. "name": "graham-campbell/result-type",
  576. "version": "v1.1.2",
  577. "source": {
  578. "type": "git",
  579. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  580. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  581. },
  582. "dist": {
  583. "type": "zip",
  584. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  585. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  586. "shasum": ""
  587. },
  588. "require": {
  589. "php": "^7.2.5 || ^8.0",
  590. "phpoption/phpoption": "^1.9.2"
  591. },
  592. "require-dev": {
  593. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  594. },
  595. "type": "library",
  596. "autoload": {
  597. "psr-4": {
  598. "GrahamCampbell\\ResultType\\": "src/"
  599. }
  600. },
  601. "notification-url": "https://packagist.org/downloads/",
  602. "license": [
  603. "MIT"
  604. ],
  605. "authors": [
  606. {
  607. "name": "Graham Campbell",
  608. "email": "hello@gjcampbell.co.uk",
  609. "homepage": "https://github.com/GrahamCampbell"
  610. }
  611. ],
  612. "description": "An Implementation Of The Result Type",
  613. "keywords": [
  614. "Graham Campbell",
  615. "GrahamCampbell",
  616. "Result Type",
  617. "Result-Type",
  618. "result"
  619. ],
  620. "support": {
  621. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  622. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  623. },
  624. "funding": [
  625. {
  626. "url": "https://github.com/GrahamCampbell",
  627. "type": "github"
  628. },
  629. {
  630. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  631. "type": "tidelift"
  632. }
  633. ],
  634. "time": "2023-11-12T22:16:48+00:00"
  635. },
  636. {
  637. "name": "guzzlehttp/guzzle",
  638. "version": "7.8.1",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/guzzle/guzzle.git",
  642. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  647. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  648. "shasum": ""
  649. },
  650. "require": {
  651. "ext-json": "*",
  652. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  653. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  654. "php": "^7.2.5 || ^8.0",
  655. "psr/http-client": "^1.0",
  656. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  657. },
  658. "provide": {
  659. "psr/http-client-implementation": "1.0"
  660. },
  661. "require-dev": {
  662. "bamarni/composer-bin-plugin": "^1.8.2",
  663. "ext-curl": "*",
  664. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  665. "php-http/message-factory": "^1.1",
  666. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  667. "psr/log": "^1.1 || ^2.0 || ^3.0"
  668. },
  669. "suggest": {
  670. "ext-curl": "Required for CURL handler support",
  671. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  672. "psr/log": "Required for using the Log middleware"
  673. },
  674. "type": "library",
  675. "extra": {
  676. "bamarni-bin": {
  677. "bin-links": true,
  678. "forward-command": false
  679. }
  680. },
  681. "autoload": {
  682. "files": [
  683. "src/functions_include.php"
  684. ],
  685. "psr-4": {
  686. "GuzzleHttp\\": "src/"
  687. }
  688. },
  689. "notification-url": "https://packagist.org/downloads/",
  690. "license": [
  691. "MIT"
  692. ],
  693. "authors": [
  694. {
  695. "name": "Graham Campbell",
  696. "email": "hello@gjcampbell.co.uk",
  697. "homepage": "https://github.com/GrahamCampbell"
  698. },
  699. {
  700. "name": "Michael Dowling",
  701. "email": "mtdowling@gmail.com",
  702. "homepage": "https://github.com/mtdowling"
  703. },
  704. {
  705. "name": "Jeremy Lindblom",
  706. "email": "jeremeamia@gmail.com",
  707. "homepage": "https://github.com/jeremeamia"
  708. },
  709. {
  710. "name": "George Mponos",
  711. "email": "gmponos@gmail.com",
  712. "homepage": "https://github.com/gmponos"
  713. },
  714. {
  715. "name": "Tobias Nyholm",
  716. "email": "tobias.nyholm@gmail.com",
  717. "homepage": "https://github.com/Nyholm"
  718. },
  719. {
  720. "name": "Márk Sági-Kazár",
  721. "email": "mark.sagikazar@gmail.com",
  722. "homepage": "https://github.com/sagikazarmark"
  723. },
  724. {
  725. "name": "Tobias Schultze",
  726. "email": "webmaster@tubo-world.de",
  727. "homepage": "https://github.com/Tobion"
  728. }
  729. ],
  730. "description": "Guzzle is a PHP HTTP client library",
  731. "keywords": [
  732. "client",
  733. "curl",
  734. "framework",
  735. "http",
  736. "http client",
  737. "psr-18",
  738. "psr-7",
  739. "rest",
  740. "web service"
  741. ],
  742. "support": {
  743. "issues": "https://github.com/guzzle/guzzle/issues",
  744. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  745. },
  746. "funding": [
  747. {
  748. "url": "https://github.com/GrahamCampbell",
  749. "type": "github"
  750. },
  751. {
  752. "url": "https://github.com/Nyholm",
  753. "type": "github"
  754. },
  755. {
  756. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  757. "type": "tidelift"
  758. }
  759. ],
  760. "time": "2023-12-03T20:35:24+00:00"
  761. },
  762. {
  763. "name": "guzzlehttp/promises",
  764. "version": "2.0.2",
  765. "source": {
  766. "type": "git",
  767. "url": "https://github.com/guzzle/promises.git",
  768. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  769. },
  770. "dist": {
  771. "type": "zip",
  772. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  773. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  774. "shasum": ""
  775. },
  776. "require": {
  777. "php": "^7.2.5 || ^8.0"
  778. },
  779. "require-dev": {
  780. "bamarni/composer-bin-plugin": "^1.8.2",
  781. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  782. },
  783. "type": "library",
  784. "extra": {
  785. "bamarni-bin": {
  786. "bin-links": true,
  787. "forward-command": false
  788. }
  789. },
  790. "autoload": {
  791. "psr-4": {
  792. "GuzzleHttp\\Promise\\": "src/"
  793. }
  794. },
  795. "notification-url": "https://packagist.org/downloads/",
  796. "license": [
  797. "MIT"
  798. ],
  799. "authors": [
  800. {
  801. "name": "Graham Campbell",
  802. "email": "hello@gjcampbell.co.uk",
  803. "homepage": "https://github.com/GrahamCampbell"
  804. },
  805. {
  806. "name": "Michael Dowling",
  807. "email": "mtdowling@gmail.com",
  808. "homepage": "https://github.com/mtdowling"
  809. },
  810. {
  811. "name": "Tobias Nyholm",
  812. "email": "tobias.nyholm@gmail.com",
  813. "homepage": "https://github.com/Nyholm"
  814. },
  815. {
  816. "name": "Tobias Schultze",
  817. "email": "webmaster@tubo-world.de",
  818. "homepage": "https://github.com/Tobion"
  819. }
  820. ],
  821. "description": "Guzzle promises library",
  822. "keywords": [
  823. "promise"
  824. ],
  825. "support": {
  826. "issues": "https://github.com/guzzle/promises/issues",
  827. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  828. },
  829. "funding": [
  830. {
  831. "url": "https://github.com/GrahamCampbell",
  832. "type": "github"
  833. },
  834. {
  835. "url": "https://github.com/Nyholm",
  836. "type": "github"
  837. },
  838. {
  839. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  840. "type": "tidelift"
  841. }
  842. ],
  843. "time": "2023-12-03T20:19:20+00:00"
  844. },
  845. {
  846. "name": "guzzlehttp/psr7",
  847. "version": "2.6.2",
  848. "source": {
  849. "type": "git",
  850. "url": "https://github.com/guzzle/psr7.git",
  851. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  852. },
  853. "dist": {
  854. "type": "zip",
  855. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  856. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  857. "shasum": ""
  858. },
  859. "require": {
  860. "php": "^7.2.5 || ^8.0",
  861. "psr/http-factory": "^1.0",
  862. "psr/http-message": "^1.1 || ^2.0",
  863. "ralouphie/getallheaders": "^3.0"
  864. },
  865. "provide": {
  866. "psr/http-factory-implementation": "1.0",
  867. "psr/http-message-implementation": "1.0"
  868. },
  869. "require-dev": {
  870. "bamarni/composer-bin-plugin": "^1.8.2",
  871. "http-interop/http-factory-tests": "^0.9",
  872. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  873. },
  874. "suggest": {
  875. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  876. },
  877. "type": "library",
  878. "extra": {
  879. "bamarni-bin": {
  880. "bin-links": true,
  881. "forward-command": false
  882. }
  883. },
  884. "autoload": {
  885. "psr-4": {
  886. "GuzzleHttp\\Psr7\\": "src/"
  887. }
  888. },
  889. "notification-url": "https://packagist.org/downloads/",
  890. "license": [
  891. "MIT"
  892. ],
  893. "authors": [
  894. {
  895. "name": "Graham Campbell",
  896. "email": "hello@gjcampbell.co.uk",
  897. "homepage": "https://github.com/GrahamCampbell"
  898. },
  899. {
  900. "name": "Michael Dowling",
  901. "email": "mtdowling@gmail.com",
  902. "homepage": "https://github.com/mtdowling"
  903. },
  904. {
  905. "name": "George Mponos",
  906. "email": "gmponos@gmail.com",
  907. "homepage": "https://github.com/gmponos"
  908. },
  909. {
  910. "name": "Tobias Nyholm",
  911. "email": "tobias.nyholm@gmail.com",
  912. "homepage": "https://github.com/Nyholm"
  913. },
  914. {
  915. "name": "Márk Sági-Kazár",
  916. "email": "mark.sagikazar@gmail.com",
  917. "homepage": "https://github.com/sagikazarmark"
  918. },
  919. {
  920. "name": "Tobias Schultze",
  921. "email": "webmaster@tubo-world.de",
  922. "homepage": "https://github.com/Tobion"
  923. },
  924. {
  925. "name": "Márk Sági-Kazár",
  926. "email": "mark.sagikazar@gmail.com",
  927. "homepage": "https://sagikazarmark.hu"
  928. }
  929. ],
  930. "description": "PSR-7 message implementation that also provides common utility methods",
  931. "keywords": [
  932. "http",
  933. "message",
  934. "psr-7",
  935. "request",
  936. "response",
  937. "stream",
  938. "uri",
  939. "url"
  940. ],
  941. "support": {
  942. "issues": "https://github.com/guzzle/psr7/issues",
  943. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  944. },
  945. "funding": [
  946. {
  947. "url": "https://github.com/GrahamCampbell",
  948. "type": "github"
  949. },
  950. {
  951. "url": "https://github.com/Nyholm",
  952. "type": "github"
  953. },
  954. {
  955. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  956. "type": "tidelift"
  957. }
  958. ],
  959. "time": "2023-12-03T20:05:35+00:00"
  960. },
  961. {
  962. "name": "hg/apidoc",
  963. "version": "v5.2.4",
  964. "source": {
  965. "type": "git",
  966. "url": "https://github.com/HGthecode/apidoc-php.git",
  967. "reference": "b935bdb425821af0f471bde4b870ac5f3d04e97c"
  968. },
  969. "dist": {
  970. "type": "zip",
  971. "url": "https://api.github.com/repos/HGthecode/apidoc-php/zipball/b935bdb425821af0f471bde4b870ac5f3d04e97c",
  972. "reference": "b935bdb425821af0f471bde4b870ac5f3d04e97c",
  973. "shasum": ""
  974. },
  975. "require": {
  976. "doctrine/annotations": "^1 || ^2",
  977. "php": "^7.1 || ^8.0"
  978. },
  979. "type": "library",
  980. "extra": {
  981. "laravel": {
  982. "providers": [
  983. "hg\\apidoc\\providers\\LaravelService"
  984. ]
  985. },
  986. "think": {
  987. "services": [
  988. "hg\\apidoc\\providers\\ThinkPHPService"
  989. ],
  990. "config": {
  991. "apidoc": "src/config.php"
  992. }
  993. },
  994. "hyperf": {
  995. "config": "hg\\apidoc\\ConfigProvider"
  996. }
  997. },
  998. "autoload": {
  999. "psr-4": {
  1000. "hg\\apidoc\\": "src/"
  1001. }
  1002. },
  1003. "notification-url": "https://packagist.org/downloads/",
  1004. "license": [
  1005. "MIT"
  1006. ],
  1007. "authors": [
  1008. {
  1009. "name": "hg-code",
  1010. "email": "376401263@qq.com"
  1011. }
  1012. ],
  1013. "description": "根据注解生成API文档,兼容Laravel、ThinkPHP、Hyperf、Webman等框架;在线调试、Markdown文档、多应用/多版本、Mock数据、授权访问、接口生成器、代码生成器等众多实用功能",
  1014. "keywords": [
  1015. "apidoc",
  1016. "api文档",
  1017. "markdown",
  1018. "php接口文档",
  1019. "接口文档",
  1020. "注解",
  1021. "注释生成",
  1022. "自动生成api"
  1023. ],
  1024. "support": {
  1025. "issues": "https://github.com/HGthecode/apidoc-php/issues",
  1026. "source": "https://github.com/HGthecode/apidoc-php/tree/v5.2.4"
  1027. },
  1028. "time": "2024-06-26T01:41:25+00:00"
  1029. },
  1030. {
  1031. "name": "illuminate/bus",
  1032. "version": "v11.14.0",
  1033. "source": {
  1034. "type": "git",
  1035. "url": "https://github.com/illuminate/bus.git",
  1036. "reference": "9a8649eb57a6621eed87ecc18af7eb84aa180992"
  1037. },
  1038. "dist": {
  1039. "type": "zip",
  1040. "url": "https://api.github.com/repos/illuminate/bus/zipball/9a8649eb57a6621eed87ecc18af7eb84aa180992",
  1041. "reference": "9a8649eb57a6621eed87ecc18af7eb84aa180992",
  1042. "shasum": ""
  1043. },
  1044. "require": {
  1045. "illuminate/collections": "^11.0",
  1046. "illuminate/contracts": "^11.0",
  1047. "illuminate/pipeline": "^11.0",
  1048. "illuminate/support": "^11.0",
  1049. "php": "^8.2"
  1050. },
  1051. "suggest": {
  1052. "illuminate/queue": "Required to use closures when chaining jobs (^7.0)."
  1053. },
  1054. "type": "library",
  1055. "extra": {
  1056. "branch-alias": {
  1057. "dev-master": "11.x-dev"
  1058. }
  1059. },
  1060. "autoload": {
  1061. "psr-4": {
  1062. "Illuminate\\Bus\\": ""
  1063. }
  1064. },
  1065. "notification-url": "https://packagist.org/downloads/",
  1066. "license": [
  1067. "MIT"
  1068. ],
  1069. "authors": [
  1070. {
  1071. "name": "Taylor Otwell",
  1072. "email": "taylor@laravel.com"
  1073. }
  1074. ],
  1075. "description": "The Illuminate Bus package.",
  1076. "homepage": "https://laravel.com",
  1077. "support": {
  1078. "issues": "https://github.com/laravel/framework/issues",
  1079. "source": "https://github.com/laravel/framework"
  1080. },
  1081. "time": "2024-06-28T20:10:30+00:00"
  1082. },
  1083. {
  1084. "name": "illuminate/collections",
  1085. "version": "v11.14.0",
  1086. "source": {
  1087. "type": "git",
  1088. "url": "https://github.com/illuminate/collections.git",
  1089. "reference": "358fd6dcce6927ee9d7cf520fa619f4597020d52"
  1090. },
  1091. "dist": {
  1092. "type": "zip",
  1093. "url": "https://api.github.com/repos/illuminate/collections/zipball/358fd6dcce6927ee9d7cf520fa619f4597020d52",
  1094. "reference": "358fd6dcce6927ee9d7cf520fa619f4597020d52",
  1095. "shasum": ""
  1096. },
  1097. "require": {
  1098. "illuminate/conditionable": "^11.0",
  1099. "illuminate/contracts": "^11.0",
  1100. "illuminate/macroable": "^11.0",
  1101. "php": "^8.2"
  1102. },
  1103. "suggest": {
  1104. "symfony/var-dumper": "Required to use the dump method (^7.0)."
  1105. },
  1106. "type": "library",
  1107. "extra": {
  1108. "branch-alias": {
  1109. "dev-master": "11.x-dev"
  1110. }
  1111. },
  1112. "autoload": {
  1113. "files": [
  1114. "helpers.php"
  1115. ],
  1116. "psr-4": {
  1117. "Illuminate\\Support\\": ""
  1118. }
  1119. },
  1120. "notification-url": "https://packagist.org/downloads/",
  1121. "license": [
  1122. "MIT"
  1123. ],
  1124. "authors": [
  1125. {
  1126. "name": "Taylor Otwell",
  1127. "email": "taylor@laravel.com"
  1128. }
  1129. ],
  1130. "description": "The Illuminate Collections package.",
  1131. "homepage": "https://laravel.com",
  1132. "support": {
  1133. "issues": "https://github.com/laravel/framework/issues",
  1134. "source": "https://github.com/laravel/framework"
  1135. },
  1136. "time": "2024-06-28T20:14:10+00:00"
  1137. },
  1138. {
  1139. "name": "illuminate/conditionable",
  1140. "version": "v11.14.0",
  1141. "source": {
  1142. "type": "git",
  1143. "url": "https://github.com/illuminate/conditionable.git",
  1144. "reference": "362dd761b9920367bca1427a902158225e9e3a23"
  1145. },
  1146. "dist": {
  1147. "type": "zip",
  1148. "url": "https://api.github.com/repos/illuminate/conditionable/zipball/362dd761b9920367bca1427a902158225e9e3a23",
  1149. "reference": "362dd761b9920367bca1427a902158225e9e3a23",
  1150. "shasum": ""
  1151. },
  1152. "require": {
  1153. "php": "^8.0.2"
  1154. },
  1155. "type": "library",
  1156. "extra": {
  1157. "branch-alias": {
  1158. "dev-master": "11.x-dev"
  1159. }
  1160. },
  1161. "autoload": {
  1162. "psr-4": {
  1163. "Illuminate\\Support\\": ""
  1164. }
  1165. },
  1166. "notification-url": "https://packagist.org/downloads/",
  1167. "license": [
  1168. "MIT"
  1169. ],
  1170. "authors": [
  1171. {
  1172. "name": "Taylor Otwell",
  1173. "email": "taylor@laravel.com"
  1174. }
  1175. ],
  1176. "description": "The Illuminate Conditionable package.",
  1177. "homepage": "https://laravel.com",
  1178. "support": {
  1179. "issues": "https://github.com/laravel/framework/issues",
  1180. "source": "https://github.com/laravel/framework"
  1181. },
  1182. "time": "2024-06-28T20:10:30+00:00"
  1183. },
  1184. {
  1185. "name": "illuminate/container",
  1186. "version": "v11.14.0",
  1187. "source": {
  1188. "type": "git",
  1189. "url": "https://github.com/illuminate/container.git",
  1190. "reference": "280405e0b577504b97feae0e7c7f5399816ccff1"
  1191. },
  1192. "dist": {
  1193. "type": "zip",
  1194. "url": "https://api.github.com/repos/illuminate/container/zipball/280405e0b577504b97feae0e7c7f5399816ccff1",
  1195. "reference": "280405e0b577504b97feae0e7c7f5399816ccff1",
  1196. "shasum": ""
  1197. },
  1198. "require": {
  1199. "illuminate/contracts": "^11.0",
  1200. "php": "^8.2",
  1201. "psr/container": "^1.1.1|^2.0.1"
  1202. },
  1203. "provide": {
  1204. "psr/container-implementation": "1.1|2.0"
  1205. },
  1206. "type": "library",
  1207. "extra": {
  1208. "branch-alias": {
  1209. "dev-master": "11.x-dev"
  1210. }
  1211. },
  1212. "autoload": {
  1213. "psr-4": {
  1214. "Illuminate\\Container\\": ""
  1215. }
  1216. },
  1217. "notification-url": "https://packagist.org/downloads/",
  1218. "license": [
  1219. "MIT"
  1220. ],
  1221. "authors": [
  1222. {
  1223. "name": "Taylor Otwell",
  1224. "email": "taylor@laravel.com"
  1225. }
  1226. ],
  1227. "description": "The Illuminate Container package.",
  1228. "homepage": "https://laravel.com",
  1229. "support": {
  1230. "issues": "https://github.com/laravel/framework/issues",
  1231. "source": "https://github.com/laravel/framework"
  1232. },
  1233. "time": "2024-07-02T15:41:17+00:00"
  1234. },
  1235. {
  1236. "name": "illuminate/contracts",
  1237. "version": "v11.14.0",
  1238. "source": {
  1239. "type": "git",
  1240. "url": "https://github.com/illuminate/contracts.git",
  1241. "reference": "eb8ccfbc5905c5631712d157cccdd7bc9db692e0"
  1242. },
  1243. "dist": {
  1244. "type": "zip",
  1245. "url": "https://api.github.com/repos/illuminate/contracts/zipball/eb8ccfbc5905c5631712d157cccdd7bc9db692e0",
  1246. "reference": "eb8ccfbc5905c5631712d157cccdd7bc9db692e0",
  1247. "shasum": ""
  1248. },
  1249. "require": {
  1250. "php": "^8.2",
  1251. "psr/container": "^1.1.1|^2.0.1",
  1252. "psr/simple-cache": "^1.0|^2.0|^3.0"
  1253. },
  1254. "type": "library",
  1255. "extra": {
  1256. "branch-alias": {
  1257. "dev-master": "11.x-dev"
  1258. }
  1259. },
  1260. "autoload": {
  1261. "psr-4": {
  1262. "Illuminate\\Contracts\\": ""
  1263. }
  1264. },
  1265. "notification-url": "https://packagist.org/downloads/",
  1266. "license": [
  1267. "MIT"
  1268. ],
  1269. "authors": [
  1270. {
  1271. "name": "Taylor Otwell",
  1272. "email": "taylor@laravel.com"
  1273. }
  1274. ],
  1275. "description": "The Illuminate Contracts package.",
  1276. "homepage": "https://laravel.com",
  1277. "support": {
  1278. "issues": "https://github.com/laravel/framework/issues",
  1279. "source": "https://github.com/laravel/framework"
  1280. },
  1281. "time": "2024-07-01T21:58:24+00:00"
  1282. },
  1283. {
  1284. "name": "illuminate/database",
  1285. "version": "v11.14.0",
  1286. "source": {
  1287. "type": "git",
  1288. "url": "https://github.com/illuminate/database.git",
  1289. "reference": "6576f6fcc871a6ad173b6e246e8d2c63cd7cfe1a"
  1290. },
  1291. "dist": {
  1292. "type": "zip",
  1293. "url": "https://api.github.com/repos/illuminate/database/zipball/6576f6fcc871a6ad173b6e246e8d2c63cd7cfe1a",
  1294. "reference": "6576f6fcc871a6ad173b6e246e8d2c63cd7cfe1a",
  1295. "shasum": ""
  1296. },
  1297. "require": {
  1298. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  1299. "ext-pdo": "*",
  1300. "illuminate/collections": "^11.0",
  1301. "illuminate/container": "^11.0",
  1302. "illuminate/contracts": "^11.0",
  1303. "illuminate/macroable": "^11.0",
  1304. "illuminate/support": "^11.0",
  1305. "php": "^8.2"
  1306. },
  1307. "suggest": {
  1308. "ext-filter": "Required to use the Postgres database driver.",
  1309. "fakerphp/faker": "Required to use the eloquent factory builder (^1.21).",
  1310. "illuminate/console": "Required to use the database commands (^11.0).",
  1311. "illuminate/events": "Required to use the observers with Eloquent (^11.0).",
  1312. "illuminate/filesystem": "Required to use the migrations (^11.0).",
  1313. "illuminate/pagination": "Required to paginate the result set (^11.0).",
  1314. "symfony/finder": "Required to use Eloquent model factories (^7.0)."
  1315. },
  1316. "type": "library",
  1317. "extra": {
  1318. "branch-alias": {
  1319. "dev-master": "11.x-dev"
  1320. }
  1321. },
  1322. "autoload": {
  1323. "psr-4": {
  1324. "Illuminate\\Database\\": ""
  1325. }
  1326. },
  1327. "notification-url": "https://packagist.org/downloads/",
  1328. "license": [
  1329. "MIT"
  1330. ],
  1331. "authors": [
  1332. {
  1333. "name": "Taylor Otwell",
  1334. "email": "taylor@laravel.com"
  1335. }
  1336. ],
  1337. "description": "The Illuminate Database package.",
  1338. "homepage": "https://laravel.com",
  1339. "keywords": [
  1340. "database",
  1341. "laravel",
  1342. "orm",
  1343. "sql"
  1344. ],
  1345. "support": {
  1346. "issues": "https://github.com/laravel/framework/issues",
  1347. "source": "https://github.com/laravel/framework"
  1348. },
  1349. "time": "2024-07-02T15:56:54+00:00"
  1350. },
  1351. {
  1352. "name": "illuminate/events",
  1353. "version": "v11.14.0",
  1354. "source": {
  1355. "type": "git",
  1356. "url": "https://github.com/illuminate/events.git",
  1357. "reference": "2ca94accf7e30e478a1cb2b0501c5be4478cb717"
  1358. },
  1359. "dist": {
  1360. "type": "zip",
  1361. "url": "https://api.github.com/repos/illuminate/events/zipball/2ca94accf7e30e478a1cb2b0501c5be4478cb717",
  1362. "reference": "2ca94accf7e30e478a1cb2b0501c5be4478cb717",
  1363. "shasum": ""
  1364. },
  1365. "require": {
  1366. "illuminate/bus": "^11.0",
  1367. "illuminate/collections": "^11.0",
  1368. "illuminate/container": "^11.0",
  1369. "illuminate/contracts": "^11.0",
  1370. "illuminate/macroable": "^11.0",
  1371. "illuminate/support": "^11.0",
  1372. "php": "^8.2"
  1373. },
  1374. "type": "library",
  1375. "extra": {
  1376. "branch-alias": {
  1377. "dev-master": "11.x-dev"
  1378. }
  1379. },
  1380. "autoload": {
  1381. "files": [
  1382. "functions.php"
  1383. ],
  1384. "psr-4": {
  1385. "Illuminate\\Events\\": ""
  1386. }
  1387. },
  1388. "notification-url": "https://packagist.org/downloads/",
  1389. "license": [
  1390. "MIT"
  1391. ],
  1392. "authors": [
  1393. {
  1394. "name": "Taylor Otwell",
  1395. "email": "taylor@laravel.com"
  1396. }
  1397. ],
  1398. "description": "The Illuminate Events package.",
  1399. "homepage": "https://laravel.com",
  1400. "support": {
  1401. "issues": "https://github.com/laravel/framework/issues",
  1402. "source": "https://github.com/laravel/framework"
  1403. },
  1404. "time": "2024-06-28T20:10:30+00:00"
  1405. },
  1406. {
  1407. "name": "illuminate/macroable",
  1408. "version": "v11.14.0",
  1409. "source": {
  1410. "type": "git",
  1411. "url": "https://github.com/illuminate/macroable.git",
  1412. "reference": "e1cb9e51b9ed5d3c9bc1ab431d0a52fe42a990ed"
  1413. },
  1414. "dist": {
  1415. "type": "zip",
  1416. "url": "https://api.github.com/repos/illuminate/macroable/zipball/e1cb9e51b9ed5d3c9bc1ab431d0a52fe42a990ed",
  1417. "reference": "e1cb9e51b9ed5d3c9bc1ab431d0a52fe42a990ed",
  1418. "shasum": ""
  1419. },
  1420. "require": {
  1421. "php": "^8.2"
  1422. },
  1423. "type": "library",
  1424. "extra": {
  1425. "branch-alias": {
  1426. "dev-master": "11.x-dev"
  1427. }
  1428. },
  1429. "autoload": {
  1430. "psr-4": {
  1431. "Illuminate\\Support\\": ""
  1432. }
  1433. },
  1434. "notification-url": "https://packagist.org/downloads/",
  1435. "license": [
  1436. "MIT"
  1437. ],
  1438. "authors": [
  1439. {
  1440. "name": "Taylor Otwell",
  1441. "email": "taylor@laravel.com"
  1442. }
  1443. ],
  1444. "description": "The Illuminate Macroable package.",
  1445. "homepage": "https://laravel.com",
  1446. "support": {
  1447. "issues": "https://github.com/laravel/framework/issues",
  1448. "source": "https://github.com/laravel/framework"
  1449. },
  1450. "time": "2024-06-28T20:10:30+00:00"
  1451. },
  1452. {
  1453. "name": "illuminate/pagination",
  1454. "version": "v11.14.0",
  1455. "source": {
  1456. "type": "git",
  1457. "url": "https://github.com/illuminate/pagination.git",
  1458. "reference": "930e3a41636b6ff4fa3d3cd47fb4bc24359c8691"
  1459. },
  1460. "dist": {
  1461. "type": "zip",
  1462. "url": "https://api.github.com/repos/illuminate/pagination/zipball/930e3a41636b6ff4fa3d3cd47fb4bc24359c8691",
  1463. "reference": "930e3a41636b6ff4fa3d3cd47fb4bc24359c8691",
  1464. "shasum": ""
  1465. },
  1466. "require": {
  1467. "ext-filter": "*",
  1468. "illuminate/collections": "^11.0",
  1469. "illuminate/contracts": "^11.0",
  1470. "illuminate/support": "^11.0",
  1471. "php": "^8.2"
  1472. },
  1473. "type": "library",
  1474. "extra": {
  1475. "branch-alias": {
  1476. "dev-master": "11.x-dev"
  1477. }
  1478. },
  1479. "autoload": {
  1480. "psr-4": {
  1481. "Illuminate\\Pagination\\": ""
  1482. }
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "license": [
  1486. "MIT"
  1487. ],
  1488. "authors": [
  1489. {
  1490. "name": "Taylor Otwell",
  1491. "email": "taylor@laravel.com"
  1492. }
  1493. ],
  1494. "description": "The Illuminate Pagination package.",
  1495. "homepage": "https://laravel.com",
  1496. "support": {
  1497. "issues": "https://github.com/laravel/framework/issues",
  1498. "source": "https://github.com/laravel/framework"
  1499. },
  1500. "time": "2024-06-28T20:10:30+00:00"
  1501. },
  1502. {
  1503. "name": "illuminate/pipeline",
  1504. "version": "v11.14.0",
  1505. "source": {
  1506. "type": "git",
  1507. "url": "https://github.com/illuminate/pipeline.git",
  1508. "reference": "ca9266eecf659f7e60c06758969b2ae3918ea3da"
  1509. },
  1510. "dist": {
  1511. "type": "zip",
  1512. "url": "https://api.github.com/repos/illuminate/pipeline/zipball/ca9266eecf659f7e60c06758969b2ae3918ea3da",
  1513. "reference": "ca9266eecf659f7e60c06758969b2ae3918ea3da",
  1514. "shasum": ""
  1515. },
  1516. "require": {
  1517. "illuminate/contracts": "^11.0",
  1518. "illuminate/support": "^11.0",
  1519. "php": "^8.2"
  1520. },
  1521. "type": "library",
  1522. "extra": {
  1523. "branch-alias": {
  1524. "dev-master": "11.x-dev"
  1525. }
  1526. },
  1527. "autoload": {
  1528. "psr-4": {
  1529. "Illuminate\\Pipeline\\": ""
  1530. }
  1531. },
  1532. "notification-url": "https://packagist.org/downloads/",
  1533. "license": [
  1534. "MIT"
  1535. ],
  1536. "authors": [
  1537. {
  1538. "name": "Taylor Otwell",
  1539. "email": "taylor@laravel.com"
  1540. }
  1541. ],
  1542. "description": "The Illuminate Pipeline package.",
  1543. "homepage": "https://laravel.com",
  1544. "support": {
  1545. "issues": "https://github.com/laravel/framework/issues",
  1546. "source": "https://github.com/laravel/framework"
  1547. },
  1548. "time": "2024-06-28T20:10:30+00:00"
  1549. },
  1550. {
  1551. "name": "illuminate/redis",
  1552. "version": "v11.14.0",
  1553. "source": {
  1554. "type": "git",
  1555. "url": "https://github.com/illuminate/redis.git",
  1556. "reference": "8ef03be8da8e4841bbb220a471ecaa865aefcf9a"
  1557. },
  1558. "dist": {
  1559. "type": "zip",
  1560. "url": "https://api.github.com/repos/illuminate/redis/zipball/8ef03be8da8e4841bbb220a471ecaa865aefcf9a",
  1561. "reference": "8ef03be8da8e4841bbb220a471ecaa865aefcf9a",
  1562. "shasum": ""
  1563. },
  1564. "require": {
  1565. "illuminate/collections": "^11.0",
  1566. "illuminate/contracts": "^11.0",
  1567. "illuminate/macroable": "^11.0",
  1568. "illuminate/support": "^11.0",
  1569. "php": "^8.2"
  1570. },
  1571. "suggest": {
  1572. "ext-redis": "Required to use the phpredis connector (^4.0|^5.0|^6.0).",
  1573. "predis/predis": "Required to use the predis connector (^2.0.2)."
  1574. },
  1575. "type": "library",
  1576. "extra": {
  1577. "branch-alias": {
  1578. "dev-master": "11.x-dev"
  1579. }
  1580. },
  1581. "autoload": {
  1582. "psr-4": {
  1583. "Illuminate\\Redis\\": ""
  1584. }
  1585. },
  1586. "notification-url": "https://packagist.org/downloads/",
  1587. "license": [
  1588. "MIT"
  1589. ],
  1590. "authors": [
  1591. {
  1592. "name": "Taylor Otwell",
  1593. "email": "taylor@laravel.com"
  1594. }
  1595. ],
  1596. "description": "The Illuminate Redis 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": "2024-06-28T20:10:30+00:00"
  1603. },
  1604. {
  1605. "name": "illuminate/support",
  1606. "version": "v11.14.0",
  1607. "source": {
  1608. "type": "git",
  1609. "url": "https://github.com/illuminate/support.git",
  1610. "reference": "a8f299ed76d52fc048decada3571628e65fa5c41"
  1611. },
  1612. "dist": {
  1613. "type": "zip",
  1614. "url": "https://api.github.com/repos/illuminate/support/zipball/a8f299ed76d52fc048decada3571628e65fa5c41",
  1615. "reference": "a8f299ed76d52fc048decada3571628e65fa5c41",
  1616. "shasum": ""
  1617. },
  1618. "require": {
  1619. "doctrine/inflector": "^2.0",
  1620. "ext-ctype": "*",
  1621. "ext-filter": "*",
  1622. "ext-mbstring": "*",
  1623. "illuminate/collections": "^11.0",
  1624. "illuminate/conditionable": "^11.0",
  1625. "illuminate/contracts": "^11.0",
  1626. "illuminate/macroable": "^11.0",
  1627. "nesbot/carbon": "^2.72.2|^3.0",
  1628. "php": "^8.2",
  1629. "voku/portable-ascii": "^2.0"
  1630. },
  1631. "conflict": {
  1632. "tightenco/collect": "<5.5.33"
  1633. },
  1634. "replace": {
  1635. "spatie/once": "*"
  1636. },
  1637. "suggest": {
  1638. "illuminate/filesystem": "Required to use the composer class (^11.0).",
  1639. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.0.2).",
  1640. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  1641. "symfony/process": "Required to use the composer class (^7.0).",
  1642. "symfony/uid": "Required to use Str::ulid() (^7.0).",
  1643. "symfony/var-dumper": "Required to use the dd function (^7.0).",
  1644. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  1645. },
  1646. "type": "library",
  1647. "extra": {
  1648. "branch-alias": {
  1649. "dev-master": "11.x-dev"
  1650. }
  1651. },
  1652. "autoload": {
  1653. "files": [
  1654. "helpers.php"
  1655. ],
  1656. "psr-4": {
  1657. "Illuminate\\Support\\": ""
  1658. }
  1659. },
  1660. "notification-url": "https://packagist.org/downloads/",
  1661. "license": [
  1662. "MIT"
  1663. ],
  1664. "authors": [
  1665. {
  1666. "name": "Taylor Otwell",
  1667. "email": "taylor@laravel.com"
  1668. }
  1669. ],
  1670. "description": "The Illuminate Support package.",
  1671. "homepage": "https://laravel.com",
  1672. "support": {
  1673. "issues": "https://github.com/laravel/framework/issues",
  1674. "source": "https://github.com/laravel/framework"
  1675. },
  1676. "time": "2024-07-01T21:58:57+00:00"
  1677. },
  1678. {
  1679. "name": "intervention/image",
  1680. "version": "2.7.2",
  1681. "source": {
  1682. "type": "git",
  1683. "url": "https://github.com/Intervention/image.git",
  1684. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  1685. },
  1686. "dist": {
  1687. "type": "zip",
  1688. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  1689. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  1690. "shasum": ""
  1691. },
  1692. "require": {
  1693. "ext-fileinfo": "*",
  1694. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1695. "php": ">=5.4.0"
  1696. },
  1697. "require-dev": {
  1698. "mockery/mockery": "~0.9.2",
  1699. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1700. },
  1701. "suggest": {
  1702. "ext-gd": "to use GD library based image processing.",
  1703. "ext-imagick": "to use Imagick based image processing.",
  1704. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1705. },
  1706. "type": "library",
  1707. "extra": {
  1708. "branch-alias": {
  1709. "dev-master": "2.4-dev"
  1710. },
  1711. "laravel": {
  1712. "providers": [
  1713. "Intervention\\Image\\ImageServiceProvider"
  1714. ],
  1715. "aliases": {
  1716. "Image": "Intervention\\Image\\Facades\\Image"
  1717. }
  1718. }
  1719. },
  1720. "autoload": {
  1721. "psr-4": {
  1722. "Intervention\\Image\\": "src/Intervention/Image"
  1723. }
  1724. },
  1725. "notification-url": "https://packagist.org/downloads/",
  1726. "license": [
  1727. "MIT"
  1728. ],
  1729. "authors": [
  1730. {
  1731. "name": "Oliver Vogel",
  1732. "email": "oliver@intervention.io",
  1733. "homepage": "https://intervention.io/"
  1734. }
  1735. ],
  1736. "description": "Image handling and manipulation library with support for Laravel integration",
  1737. "homepage": "http://image.intervention.io/",
  1738. "keywords": [
  1739. "gd",
  1740. "image",
  1741. "imagick",
  1742. "laravel",
  1743. "thumbnail",
  1744. "watermark"
  1745. ],
  1746. "support": {
  1747. "issues": "https://github.com/Intervention/image/issues",
  1748. "source": "https://github.com/Intervention/image/tree/2.7.2"
  1749. },
  1750. "funding": [
  1751. {
  1752. "url": "https://paypal.me/interventionio",
  1753. "type": "custom"
  1754. },
  1755. {
  1756. "url": "https://github.com/Intervention",
  1757. "type": "github"
  1758. }
  1759. ],
  1760. "time": "2022-05-21T17:30:32+00:00"
  1761. },
  1762. {
  1763. "name": "maennchen/zipstream-php",
  1764. "version": "3.1.0",
  1765. "source": {
  1766. "type": "git",
  1767. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  1768. "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1"
  1769. },
  1770. "dist": {
  1771. "type": "zip",
  1772. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/b8174494eda667f7d13876b4a7bfef0f62a7c0d1",
  1773. "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1",
  1774. "shasum": ""
  1775. },
  1776. "require": {
  1777. "ext-mbstring": "*",
  1778. "ext-zlib": "*",
  1779. "php-64bit": "^8.1"
  1780. },
  1781. "require-dev": {
  1782. "ext-zip": "*",
  1783. "friendsofphp/php-cs-fixer": "^3.16",
  1784. "guzzlehttp/guzzle": "^7.5",
  1785. "mikey179/vfsstream": "^1.6",
  1786. "php-coveralls/php-coveralls": "^2.5",
  1787. "phpunit/phpunit": "^10.0",
  1788. "vimeo/psalm": "^5.0"
  1789. },
  1790. "suggest": {
  1791. "guzzlehttp/psr7": "^2.4",
  1792. "psr/http-message": "^2.0"
  1793. },
  1794. "type": "library",
  1795. "autoload": {
  1796. "psr-4": {
  1797. "ZipStream\\": "src/"
  1798. }
  1799. },
  1800. "notification-url": "https://packagist.org/downloads/",
  1801. "license": [
  1802. "MIT"
  1803. ],
  1804. "authors": [
  1805. {
  1806. "name": "Paul Duncan",
  1807. "email": "pabs@pablotron.org"
  1808. },
  1809. {
  1810. "name": "Jonatan Männchen",
  1811. "email": "jonatan@maennchen.ch"
  1812. },
  1813. {
  1814. "name": "Jesse Donat",
  1815. "email": "donatj@gmail.com"
  1816. },
  1817. {
  1818. "name": "András Kolesár",
  1819. "email": "kolesar@kolesar.hu"
  1820. }
  1821. ],
  1822. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1823. "keywords": [
  1824. "stream",
  1825. "zip"
  1826. ],
  1827. "support": {
  1828. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  1829. "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.0"
  1830. },
  1831. "funding": [
  1832. {
  1833. "url": "https://github.com/maennchen",
  1834. "type": "github"
  1835. },
  1836. {
  1837. "url": "https://opencollective.com/zipstream",
  1838. "type": "open_collective"
  1839. }
  1840. ],
  1841. "time": "2023-06-21T14:59:35+00:00"
  1842. },
  1843. {
  1844. "name": "markbaker/complex",
  1845. "version": "3.0.2",
  1846. "source": {
  1847. "type": "git",
  1848. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1849. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  1850. },
  1851. "dist": {
  1852. "type": "zip",
  1853. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  1854. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  1855. "shasum": ""
  1856. },
  1857. "require": {
  1858. "php": "^7.2 || ^8.0"
  1859. },
  1860. "require-dev": {
  1861. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1862. "phpcompatibility/php-compatibility": "^9.3",
  1863. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1864. "squizlabs/php_codesniffer": "^3.7"
  1865. },
  1866. "type": "library",
  1867. "autoload": {
  1868. "psr-4": {
  1869. "Complex\\": "classes/src/"
  1870. }
  1871. },
  1872. "notification-url": "https://packagist.org/downloads/",
  1873. "license": [
  1874. "MIT"
  1875. ],
  1876. "authors": [
  1877. {
  1878. "name": "Mark Baker",
  1879. "email": "mark@lange.demon.co.uk"
  1880. }
  1881. ],
  1882. "description": "PHP Class for working with complex numbers",
  1883. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1884. "keywords": [
  1885. "complex",
  1886. "mathematics"
  1887. ],
  1888. "support": {
  1889. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  1890. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  1891. },
  1892. "time": "2022-12-06T16:21:08+00:00"
  1893. },
  1894. {
  1895. "name": "markbaker/matrix",
  1896. "version": "3.0.1",
  1897. "source": {
  1898. "type": "git",
  1899. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1900. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  1901. },
  1902. "dist": {
  1903. "type": "zip",
  1904. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  1905. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  1906. "shasum": ""
  1907. },
  1908. "require": {
  1909. "php": "^7.1 || ^8.0"
  1910. },
  1911. "require-dev": {
  1912. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1913. "phpcompatibility/php-compatibility": "^9.3",
  1914. "phpdocumentor/phpdocumentor": "2.*",
  1915. "phploc/phploc": "^4.0",
  1916. "phpmd/phpmd": "2.*",
  1917. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1918. "sebastian/phpcpd": "^4.0",
  1919. "squizlabs/php_codesniffer": "^3.7"
  1920. },
  1921. "type": "library",
  1922. "autoload": {
  1923. "psr-4": {
  1924. "Matrix\\": "classes/src/"
  1925. }
  1926. },
  1927. "notification-url": "https://packagist.org/downloads/",
  1928. "license": [
  1929. "MIT"
  1930. ],
  1931. "authors": [
  1932. {
  1933. "name": "Mark Baker",
  1934. "email": "mark@demon-angel.eu"
  1935. }
  1936. ],
  1937. "description": "PHP Class for working with matrices",
  1938. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1939. "keywords": [
  1940. "mathematics",
  1941. "matrix",
  1942. "vector"
  1943. ],
  1944. "support": {
  1945. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  1946. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  1947. },
  1948. "time": "2022-12-02T22:17:43+00:00"
  1949. },
  1950. {
  1951. "name": "monolog/monolog",
  1952. "version": "2.9.3",
  1953. "source": {
  1954. "type": "git",
  1955. "url": "https://github.com/Seldaek/monolog.git",
  1956. "reference": "a30bfe2e142720dfa990d0a7e573997f5d884215"
  1957. },
  1958. "dist": {
  1959. "type": "zip",
  1960. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/a30bfe2e142720dfa990d0a7e573997f5d884215",
  1961. "reference": "a30bfe2e142720dfa990d0a7e573997f5d884215",
  1962. "shasum": ""
  1963. },
  1964. "require": {
  1965. "php": ">=7.2",
  1966. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1967. },
  1968. "provide": {
  1969. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1970. },
  1971. "require-dev": {
  1972. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1973. "doctrine/couchdb": "~1.0@dev",
  1974. "elasticsearch/elasticsearch": "^7 || ^8",
  1975. "ext-json": "*",
  1976. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  1977. "guzzlehttp/guzzle": "^7.4",
  1978. "guzzlehttp/psr7": "^2.2",
  1979. "mongodb/mongodb": "^1.8",
  1980. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1981. "phpspec/prophecy": "^1.15",
  1982. "phpstan/phpstan": "^1.10",
  1983. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  1984. "predis/predis": "^1.1 || ^2.0",
  1985. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1986. "ruflin/elastica": "^7",
  1987. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1988. "symfony/mailer": "^5.4 || ^6",
  1989. "symfony/mime": "^5.4 || ^6"
  1990. },
  1991. "suggest": {
  1992. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1993. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1994. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1995. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1996. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1997. "ext-mbstring": "Allow to work properly with unicode symbols",
  1998. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1999. "ext-openssl": "Required to send log messages using SSL",
  2000. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2001. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2002. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2003. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2004. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2005. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2006. },
  2007. "type": "library",
  2008. "extra": {
  2009. "branch-alias": {
  2010. "dev-main": "2.x-dev"
  2011. }
  2012. },
  2013. "autoload": {
  2014. "psr-4": {
  2015. "Monolog\\": "src/Monolog"
  2016. }
  2017. },
  2018. "notification-url": "https://packagist.org/downloads/",
  2019. "license": [
  2020. "MIT"
  2021. ],
  2022. "authors": [
  2023. {
  2024. "name": "Jordi Boggiano",
  2025. "email": "j.boggiano@seld.be",
  2026. "homepage": "https://seld.be"
  2027. }
  2028. ],
  2029. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2030. "homepage": "https://github.com/Seldaek/monolog",
  2031. "keywords": [
  2032. "log",
  2033. "logging",
  2034. "psr-3"
  2035. ],
  2036. "support": {
  2037. "issues": "https://github.com/Seldaek/monolog/issues",
  2038. "source": "https://github.com/Seldaek/monolog/tree/2.9.3"
  2039. },
  2040. "funding": [
  2041. {
  2042. "url": "https://github.com/Seldaek",
  2043. "type": "github"
  2044. },
  2045. {
  2046. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2047. "type": "tidelift"
  2048. }
  2049. ],
  2050. "time": "2024-04-12T20:52:51+00:00"
  2051. },
  2052. {
  2053. "name": "nesbot/carbon",
  2054. "version": "3.6.0",
  2055. "source": {
  2056. "type": "git",
  2057. "url": "https://github.com/briannesbitt/Carbon.git",
  2058. "reference": "39c8ef752db6865717cc3fba63970c16f057982c"
  2059. },
  2060. "dist": {
  2061. "type": "zip",
  2062. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/39c8ef752db6865717cc3fba63970c16f057982c",
  2063. "reference": "39c8ef752db6865717cc3fba63970c16f057982c",
  2064. "shasum": ""
  2065. },
  2066. "require": {
  2067. "carbonphp/carbon-doctrine-types": "*",
  2068. "ext-json": "*",
  2069. "php": "^8.1",
  2070. "psr/clock": "^1.0",
  2071. "symfony/clock": "^6.3 || ^7.0",
  2072. "symfony/polyfill-mbstring": "^1.0",
  2073. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  2074. },
  2075. "provide": {
  2076. "psr/clock-implementation": "1.0"
  2077. },
  2078. "require-dev": {
  2079. "doctrine/dbal": "^3.6.3 || ^4.0",
  2080. "doctrine/orm": "^2.15.2 || ^3.0",
  2081. "friendsofphp/php-cs-fixer": "^3.57.2",
  2082. "kylekatarnls/multi-tester": "^2.5.3",
  2083. "ondrejmirtes/better-reflection": "^6.25.0.4",
  2084. "phpmd/phpmd": "^2.15.0",
  2085. "phpstan/extension-installer": "^1.3.1",
  2086. "phpstan/phpstan": "^1.11.2",
  2087. "phpunit/phpunit": "^10.5.20",
  2088. "squizlabs/php_codesniffer": "^3.9.0"
  2089. },
  2090. "bin": [
  2091. "bin/carbon"
  2092. ],
  2093. "type": "library",
  2094. "extra": {
  2095. "branch-alias": {
  2096. "dev-master": "3.x-dev",
  2097. "dev-2.x": "2.x-dev"
  2098. },
  2099. "laravel": {
  2100. "providers": [
  2101. "Carbon\\Laravel\\ServiceProvider"
  2102. ]
  2103. },
  2104. "phpstan": {
  2105. "includes": [
  2106. "extension.neon"
  2107. ]
  2108. }
  2109. },
  2110. "autoload": {
  2111. "psr-4": {
  2112. "Carbon\\": "src/Carbon/"
  2113. }
  2114. },
  2115. "notification-url": "https://packagist.org/downloads/",
  2116. "license": [
  2117. "MIT"
  2118. ],
  2119. "authors": [
  2120. {
  2121. "name": "Brian Nesbitt",
  2122. "email": "brian@nesbot.com",
  2123. "homepage": "https://markido.com"
  2124. },
  2125. {
  2126. "name": "kylekatarnls",
  2127. "homepage": "https://github.com/kylekatarnls"
  2128. }
  2129. ],
  2130. "description": "An API extension for DateTime that supports 281 different languages.",
  2131. "homepage": "https://carbon.nesbot.com",
  2132. "keywords": [
  2133. "date",
  2134. "datetime",
  2135. "time"
  2136. ],
  2137. "support": {
  2138. "docs": "https://carbon.nesbot.com/docs",
  2139. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2140. "source": "https://github.com/briannesbitt/Carbon"
  2141. },
  2142. "funding": [
  2143. {
  2144. "url": "https://github.com/sponsors/kylekatarnls",
  2145. "type": "github"
  2146. },
  2147. {
  2148. "url": "https://opencollective.com/Carbon#sponsor",
  2149. "type": "opencollective"
  2150. },
  2151. {
  2152. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2153. "type": "tidelift"
  2154. }
  2155. ],
  2156. "time": "2024-06-20T15:52:59+00:00"
  2157. },
  2158. {
  2159. "name": "nikic/fast-route",
  2160. "version": "v1.3.0",
  2161. "source": {
  2162. "type": "git",
  2163. "url": "https://github.com/nikic/FastRoute.git",
  2164. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  2165. },
  2166. "dist": {
  2167. "type": "zip",
  2168. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  2169. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  2170. "shasum": ""
  2171. },
  2172. "require": {
  2173. "php": ">=5.4.0"
  2174. },
  2175. "require-dev": {
  2176. "phpunit/phpunit": "^4.8.35|~5.7"
  2177. },
  2178. "type": "library",
  2179. "autoload": {
  2180. "files": [
  2181. "src/functions.php"
  2182. ],
  2183. "psr-4": {
  2184. "FastRoute\\": "src/"
  2185. }
  2186. },
  2187. "notification-url": "https://packagist.org/downloads/",
  2188. "license": [
  2189. "BSD-3-Clause"
  2190. ],
  2191. "authors": [
  2192. {
  2193. "name": "Nikita Popov",
  2194. "email": "nikic@php.net"
  2195. }
  2196. ],
  2197. "description": "Fast request router for PHP",
  2198. "keywords": [
  2199. "router",
  2200. "routing"
  2201. ],
  2202. "support": {
  2203. "issues": "https://github.com/nikic/FastRoute/issues",
  2204. "source": "https://github.com/nikic/FastRoute/tree/master"
  2205. },
  2206. "time": "2018-02-13T20:26:39+00:00"
  2207. },
  2208. {
  2209. "name": "phpoffice/phpspreadsheet",
  2210. "version": "2.1.0",
  2211. "source": {
  2212. "type": "git",
  2213. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2214. "reference": "dbed77bd3a0f68f96c0dd68ad4499d5674fecc3e"
  2215. },
  2216. "dist": {
  2217. "type": "zip",
  2218. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/dbed77bd3a0f68f96c0dd68ad4499d5674fecc3e",
  2219. "reference": "dbed77bd3a0f68f96c0dd68ad4499d5674fecc3e",
  2220. "shasum": ""
  2221. },
  2222. "require": {
  2223. "ext-ctype": "*",
  2224. "ext-dom": "*",
  2225. "ext-fileinfo": "*",
  2226. "ext-gd": "*",
  2227. "ext-iconv": "*",
  2228. "ext-libxml": "*",
  2229. "ext-mbstring": "*",
  2230. "ext-simplexml": "*",
  2231. "ext-xml": "*",
  2232. "ext-xmlreader": "*",
  2233. "ext-xmlwriter": "*",
  2234. "ext-zip": "*",
  2235. "ext-zlib": "*",
  2236. "maennchen/zipstream-php": "^2.1 || ^3.0",
  2237. "markbaker/complex": "^3.0",
  2238. "markbaker/matrix": "^3.0",
  2239. "php": "^8.0",
  2240. "psr/http-client": "^1.0",
  2241. "psr/http-factory": "^1.0",
  2242. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  2243. },
  2244. "require-dev": {
  2245. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  2246. "dompdf/dompdf": "^2.0",
  2247. "friendsofphp/php-cs-fixer": "^3.2",
  2248. "mitoteam/jpgraph": "^10.3",
  2249. "mpdf/mpdf": "^8.1.1",
  2250. "phpcompatibility/php-compatibility": "^9.3",
  2251. "phpstan/phpstan": "^1.1",
  2252. "phpstan/phpstan-phpunit": "^1.0",
  2253. "phpunit/phpunit": "^9.6",
  2254. "squizlabs/php_codesniffer": "^3.7",
  2255. "tecnickcom/tcpdf": "^6.5"
  2256. },
  2257. "suggest": {
  2258. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2259. "ext-intl": "PHP Internationalization Functions",
  2260. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2261. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2262. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2263. },
  2264. "type": "library",
  2265. "autoload": {
  2266. "psr-4": {
  2267. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2268. }
  2269. },
  2270. "notification-url": "https://packagist.org/downloads/",
  2271. "license": [
  2272. "MIT"
  2273. ],
  2274. "authors": [
  2275. {
  2276. "name": "Maarten Balliauw",
  2277. "homepage": "https://blog.maartenballiauw.be"
  2278. },
  2279. {
  2280. "name": "Mark Baker",
  2281. "homepage": "https://markbakeruk.net"
  2282. },
  2283. {
  2284. "name": "Franck Lefevre",
  2285. "homepage": "https://rootslabs.net"
  2286. },
  2287. {
  2288. "name": "Erik Tilt"
  2289. },
  2290. {
  2291. "name": "Adrien Crivelli"
  2292. }
  2293. ],
  2294. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2295. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2296. "keywords": [
  2297. "OpenXML",
  2298. "excel",
  2299. "gnumeric",
  2300. "ods",
  2301. "php",
  2302. "spreadsheet",
  2303. "xls",
  2304. "xlsx"
  2305. ],
  2306. "support": {
  2307. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  2308. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/2.1.0"
  2309. },
  2310. "time": "2024-05-11T04:17:56+00:00"
  2311. },
  2312. {
  2313. "name": "phpoption/phpoption",
  2314. "version": "1.9.2",
  2315. "source": {
  2316. "type": "git",
  2317. "url": "https://github.com/schmittjoh/php-option.git",
  2318. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  2319. },
  2320. "dist": {
  2321. "type": "zip",
  2322. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  2323. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  2324. "shasum": ""
  2325. },
  2326. "require": {
  2327. "php": "^7.2.5 || ^8.0"
  2328. },
  2329. "require-dev": {
  2330. "bamarni/composer-bin-plugin": "^1.8.2",
  2331. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  2332. },
  2333. "type": "library",
  2334. "extra": {
  2335. "bamarni-bin": {
  2336. "bin-links": true,
  2337. "forward-command": true
  2338. },
  2339. "branch-alias": {
  2340. "dev-master": "1.9-dev"
  2341. }
  2342. },
  2343. "autoload": {
  2344. "psr-4": {
  2345. "PhpOption\\": "src/PhpOption/"
  2346. }
  2347. },
  2348. "notification-url": "https://packagist.org/downloads/",
  2349. "license": [
  2350. "Apache-2.0"
  2351. ],
  2352. "authors": [
  2353. {
  2354. "name": "Johannes M. Schmitt",
  2355. "email": "schmittjoh@gmail.com",
  2356. "homepage": "https://github.com/schmittjoh"
  2357. },
  2358. {
  2359. "name": "Graham Campbell",
  2360. "email": "hello@gjcampbell.co.uk",
  2361. "homepage": "https://github.com/GrahamCampbell"
  2362. }
  2363. ],
  2364. "description": "Option Type for PHP",
  2365. "keywords": [
  2366. "language",
  2367. "option",
  2368. "php",
  2369. "type"
  2370. ],
  2371. "support": {
  2372. "issues": "https://github.com/schmittjoh/php-option/issues",
  2373. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  2374. },
  2375. "funding": [
  2376. {
  2377. "url": "https://github.com/GrahamCampbell",
  2378. "type": "github"
  2379. },
  2380. {
  2381. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2382. "type": "tidelift"
  2383. }
  2384. ],
  2385. "time": "2023-11-12T21:59:55+00:00"
  2386. },
  2387. {
  2388. "name": "psr/cache",
  2389. "version": "3.0.0",
  2390. "source": {
  2391. "type": "git",
  2392. "url": "https://github.com/php-fig/cache.git",
  2393. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2394. },
  2395. "dist": {
  2396. "type": "zip",
  2397. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2398. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2399. "shasum": ""
  2400. },
  2401. "require": {
  2402. "php": ">=8.0.0"
  2403. },
  2404. "type": "library",
  2405. "extra": {
  2406. "branch-alias": {
  2407. "dev-master": "1.0.x-dev"
  2408. }
  2409. },
  2410. "autoload": {
  2411. "psr-4": {
  2412. "Psr\\Cache\\": "src/"
  2413. }
  2414. },
  2415. "notification-url": "https://packagist.org/downloads/",
  2416. "license": [
  2417. "MIT"
  2418. ],
  2419. "authors": [
  2420. {
  2421. "name": "PHP-FIG",
  2422. "homepage": "https://www.php-fig.org/"
  2423. }
  2424. ],
  2425. "description": "Common interface for caching libraries",
  2426. "keywords": [
  2427. "cache",
  2428. "psr",
  2429. "psr-6"
  2430. ],
  2431. "support": {
  2432. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2433. },
  2434. "time": "2021-02-03T23:26:27+00:00"
  2435. },
  2436. {
  2437. "name": "psr/clock",
  2438. "version": "1.0.0",
  2439. "source": {
  2440. "type": "git",
  2441. "url": "https://github.com/php-fig/clock.git",
  2442. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2443. },
  2444. "dist": {
  2445. "type": "zip",
  2446. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2447. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2448. "shasum": ""
  2449. },
  2450. "require": {
  2451. "php": "^7.0 || ^8.0"
  2452. },
  2453. "type": "library",
  2454. "autoload": {
  2455. "psr-4": {
  2456. "Psr\\Clock\\": "src/"
  2457. }
  2458. },
  2459. "notification-url": "https://packagist.org/downloads/",
  2460. "license": [
  2461. "MIT"
  2462. ],
  2463. "authors": [
  2464. {
  2465. "name": "PHP-FIG",
  2466. "homepage": "https://www.php-fig.org/"
  2467. }
  2468. ],
  2469. "description": "Common interface for reading the clock.",
  2470. "homepage": "https://github.com/php-fig/clock",
  2471. "keywords": [
  2472. "clock",
  2473. "now",
  2474. "psr",
  2475. "psr-20",
  2476. "time"
  2477. ],
  2478. "support": {
  2479. "issues": "https://github.com/php-fig/clock/issues",
  2480. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2481. },
  2482. "time": "2022-11-25T14:36:26+00:00"
  2483. },
  2484. {
  2485. "name": "psr/container",
  2486. "version": "2.0.2",
  2487. "source": {
  2488. "type": "git",
  2489. "url": "https://github.com/php-fig/container.git",
  2490. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2491. },
  2492. "dist": {
  2493. "type": "zip",
  2494. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2495. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2496. "shasum": ""
  2497. },
  2498. "require": {
  2499. "php": ">=7.4.0"
  2500. },
  2501. "type": "library",
  2502. "extra": {
  2503. "branch-alias": {
  2504. "dev-master": "2.0.x-dev"
  2505. }
  2506. },
  2507. "autoload": {
  2508. "psr-4": {
  2509. "Psr\\Container\\": "src/"
  2510. }
  2511. },
  2512. "notification-url": "https://packagist.org/downloads/",
  2513. "license": [
  2514. "MIT"
  2515. ],
  2516. "authors": [
  2517. {
  2518. "name": "PHP-FIG",
  2519. "homepage": "https://www.php-fig.org/"
  2520. }
  2521. ],
  2522. "description": "Common Container Interface (PHP FIG PSR-11)",
  2523. "homepage": "https://github.com/php-fig/container",
  2524. "keywords": [
  2525. "PSR-11",
  2526. "container",
  2527. "container-interface",
  2528. "container-interop",
  2529. "psr"
  2530. ],
  2531. "support": {
  2532. "issues": "https://github.com/php-fig/container/issues",
  2533. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2534. },
  2535. "time": "2021-11-05T16:47:00+00:00"
  2536. },
  2537. {
  2538. "name": "psr/http-client",
  2539. "version": "1.0.3",
  2540. "source": {
  2541. "type": "git",
  2542. "url": "https://github.com/php-fig/http-client.git",
  2543. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  2544. },
  2545. "dist": {
  2546. "type": "zip",
  2547. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2548. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2549. "shasum": ""
  2550. },
  2551. "require": {
  2552. "php": "^7.0 || ^8.0",
  2553. "psr/http-message": "^1.0 || ^2.0"
  2554. },
  2555. "type": "library",
  2556. "extra": {
  2557. "branch-alias": {
  2558. "dev-master": "1.0.x-dev"
  2559. }
  2560. },
  2561. "autoload": {
  2562. "psr-4": {
  2563. "Psr\\Http\\Client\\": "src/"
  2564. }
  2565. },
  2566. "notification-url": "https://packagist.org/downloads/",
  2567. "license": [
  2568. "MIT"
  2569. ],
  2570. "authors": [
  2571. {
  2572. "name": "PHP-FIG",
  2573. "homepage": "https://www.php-fig.org/"
  2574. }
  2575. ],
  2576. "description": "Common interface for HTTP clients",
  2577. "homepage": "https://github.com/php-fig/http-client",
  2578. "keywords": [
  2579. "http",
  2580. "http-client",
  2581. "psr",
  2582. "psr-18"
  2583. ],
  2584. "support": {
  2585. "source": "https://github.com/php-fig/http-client"
  2586. },
  2587. "time": "2023-09-23T14:17:50+00:00"
  2588. },
  2589. {
  2590. "name": "psr/http-factory",
  2591. "version": "1.1.0",
  2592. "source": {
  2593. "type": "git",
  2594. "url": "https://github.com/php-fig/http-factory.git",
  2595. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  2596. },
  2597. "dist": {
  2598. "type": "zip",
  2599. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2600. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2601. "shasum": ""
  2602. },
  2603. "require": {
  2604. "php": ">=7.1",
  2605. "psr/http-message": "^1.0 || ^2.0"
  2606. },
  2607. "type": "library",
  2608. "extra": {
  2609. "branch-alias": {
  2610. "dev-master": "1.0.x-dev"
  2611. }
  2612. },
  2613. "autoload": {
  2614. "psr-4": {
  2615. "Psr\\Http\\Message\\": "src/"
  2616. }
  2617. },
  2618. "notification-url": "https://packagist.org/downloads/",
  2619. "license": [
  2620. "MIT"
  2621. ],
  2622. "authors": [
  2623. {
  2624. "name": "PHP-FIG",
  2625. "homepage": "https://www.php-fig.org/"
  2626. }
  2627. ],
  2628. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  2629. "keywords": [
  2630. "factory",
  2631. "http",
  2632. "message",
  2633. "psr",
  2634. "psr-17",
  2635. "psr-7",
  2636. "request",
  2637. "response"
  2638. ],
  2639. "support": {
  2640. "source": "https://github.com/php-fig/http-factory"
  2641. },
  2642. "time": "2024-04-15T12:06:14+00:00"
  2643. },
  2644. {
  2645. "name": "psr/http-message",
  2646. "version": "2.0",
  2647. "source": {
  2648. "type": "git",
  2649. "url": "https://github.com/php-fig/http-message.git",
  2650. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  2651. },
  2652. "dist": {
  2653. "type": "zip",
  2654. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2655. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2656. "shasum": ""
  2657. },
  2658. "require": {
  2659. "php": "^7.2 || ^8.0"
  2660. },
  2661. "type": "library",
  2662. "extra": {
  2663. "branch-alias": {
  2664. "dev-master": "2.0.x-dev"
  2665. }
  2666. },
  2667. "autoload": {
  2668. "psr-4": {
  2669. "Psr\\Http\\Message\\": "src/"
  2670. }
  2671. },
  2672. "notification-url": "https://packagist.org/downloads/",
  2673. "license": [
  2674. "MIT"
  2675. ],
  2676. "authors": [
  2677. {
  2678. "name": "PHP-FIG",
  2679. "homepage": "https://www.php-fig.org/"
  2680. }
  2681. ],
  2682. "description": "Common interface for HTTP messages",
  2683. "homepage": "https://github.com/php-fig/http-message",
  2684. "keywords": [
  2685. "http",
  2686. "http-message",
  2687. "psr",
  2688. "psr-7",
  2689. "request",
  2690. "response"
  2691. ],
  2692. "support": {
  2693. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2694. },
  2695. "time": "2023-04-04T09:54:51+00:00"
  2696. },
  2697. {
  2698. "name": "psr/log",
  2699. "version": "3.0.0",
  2700. "source": {
  2701. "type": "git",
  2702. "url": "https://github.com/php-fig/log.git",
  2703. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  2704. },
  2705. "dist": {
  2706. "type": "zip",
  2707. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2708. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2709. "shasum": ""
  2710. },
  2711. "require": {
  2712. "php": ">=8.0.0"
  2713. },
  2714. "type": "library",
  2715. "extra": {
  2716. "branch-alias": {
  2717. "dev-master": "3.x-dev"
  2718. }
  2719. },
  2720. "autoload": {
  2721. "psr-4": {
  2722. "Psr\\Log\\": "src"
  2723. }
  2724. },
  2725. "notification-url": "https://packagist.org/downloads/",
  2726. "license": [
  2727. "MIT"
  2728. ],
  2729. "authors": [
  2730. {
  2731. "name": "PHP-FIG",
  2732. "homepage": "https://www.php-fig.org/"
  2733. }
  2734. ],
  2735. "description": "Common interface for logging libraries",
  2736. "homepage": "https://github.com/php-fig/log",
  2737. "keywords": [
  2738. "log",
  2739. "psr",
  2740. "psr-3"
  2741. ],
  2742. "support": {
  2743. "source": "https://github.com/php-fig/log/tree/3.0.0"
  2744. },
  2745. "time": "2021-07-14T16:46:02+00:00"
  2746. },
  2747. {
  2748. "name": "psr/simple-cache",
  2749. "version": "3.0.0",
  2750. "source": {
  2751. "type": "git",
  2752. "url": "https://github.com/php-fig/simple-cache.git",
  2753. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  2754. },
  2755. "dist": {
  2756. "type": "zip",
  2757. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  2758. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  2759. "shasum": ""
  2760. },
  2761. "require": {
  2762. "php": ">=8.0.0"
  2763. },
  2764. "type": "library",
  2765. "extra": {
  2766. "branch-alias": {
  2767. "dev-master": "3.0.x-dev"
  2768. }
  2769. },
  2770. "autoload": {
  2771. "psr-4": {
  2772. "Psr\\SimpleCache\\": "src/"
  2773. }
  2774. },
  2775. "notification-url": "https://packagist.org/downloads/",
  2776. "license": [
  2777. "MIT"
  2778. ],
  2779. "authors": [
  2780. {
  2781. "name": "PHP-FIG",
  2782. "homepage": "https://www.php-fig.org/"
  2783. }
  2784. ],
  2785. "description": "Common interfaces for simple caching",
  2786. "keywords": [
  2787. "cache",
  2788. "caching",
  2789. "psr",
  2790. "psr-16",
  2791. "simple-cache"
  2792. ],
  2793. "support": {
  2794. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  2795. },
  2796. "time": "2021-10-29T13:26:27+00:00"
  2797. },
  2798. {
  2799. "name": "ralouphie/getallheaders",
  2800. "version": "3.0.3",
  2801. "source": {
  2802. "type": "git",
  2803. "url": "https://github.com/ralouphie/getallheaders.git",
  2804. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2805. },
  2806. "dist": {
  2807. "type": "zip",
  2808. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2809. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2810. "shasum": ""
  2811. },
  2812. "require": {
  2813. "php": ">=5.6"
  2814. },
  2815. "require-dev": {
  2816. "php-coveralls/php-coveralls": "^2.1",
  2817. "phpunit/phpunit": "^5 || ^6.5"
  2818. },
  2819. "type": "library",
  2820. "autoload": {
  2821. "files": [
  2822. "src/getallheaders.php"
  2823. ]
  2824. },
  2825. "notification-url": "https://packagist.org/downloads/",
  2826. "license": [
  2827. "MIT"
  2828. ],
  2829. "authors": [
  2830. {
  2831. "name": "Ralph Khattar",
  2832. "email": "ralph.khattar@gmail.com"
  2833. }
  2834. ],
  2835. "description": "A polyfill for getallheaders.",
  2836. "support": {
  2837. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2838. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2839. },
  2840. "time": "2019-03-08T08:55:37+00:00"
  2841. },
  2842. {
  2843. "name": "respect/stringifier",
  2844. "version": "0.2.0",
  2845. "source": {
  2846. "type": "git",
  2847. "url": "https://github.com/Respect/Stringifier.git",
  2848. "reference": "e55af3c8aeaeaa2abb5fa47a58a8e9688cc23b59"
  2849. },
  2850. "dist": {
  2851. "type": "zip",
  2852. "url": "https://api.github.com/repos/Respect/Stringifier/zipball/e55af3c8aeaeaa2abb5fa47a58a8e9688cc23b59",
  2853. "reference": "e55af3c8aeaeaa2abb5fa47a58a8e9688cc23b59",
  2854. "shasum": ""
  2855. },
  2856. "require": {
  2857. "php": ">=7.1"
  2858. },
  2859. "require-dev": {
  2860. "friendsofphp/php-cs-fixer": "^2.8",
  2861. "malukenho/docheader": "^0.1.7",
  2862. "phpunit/phpunit": "^6.4"
  2863. },
  2864. "type": "library",
  2865. "autoload": {
  2866. "files": [
  2867. "src/stringify.php"
  2868. ],
  2869. "psr-4": {
  2870. "Respect\\Stringifier\\": "src/"
  2871. }
  2872. },
  2873. "notification-url": "https://packagist.org/downloads/",
  2874. "license": [
  2875. "MIT"
  2876. ],
  2877. "authors": [
  2878. {
  2879. "name": "Respect/Stringifier Contributors",
  2880. "homepage": "https://github.com/Respect/Stringifier/graphs/contributors"
  2881. }
  2882. ],
  2883. "description": "Converts any value to a string",
  2884. "homepage": "http://respect.github.io/Stringifier/",
  2885. "keywords": [
  2886. "respect",
  2887. "stringifier",
  2888. "stringify"
  2889. ],
  2890. "support": {
  2891. "issues": "https://github.com/Respect/Stringifier/issues",
  2892. "source": "https://github.com/Respect/Stringifier/tree/0.2.0"
  2893. },
  2894. "time": "2017-12-29T19:39:25+00:00"
  2895. },
  2896. {
  2897. "name": "symfony/clock",
  2898. "version": "v7.1.1",
  2899. "source": {
  2900. "type": "git",
  2901. "url": "https://github.com/symfony/clock.git",
  2902. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  2903. },
  2904. "dist": {
  2905. "type": "zip",
  2906. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  2907. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  2908. "shasum": ""
  2909. },
  2910. "require": {
  2911. "php": ">=8.2",
  2912. "psr/clock": "^1.0",
  2913. "symfony/polyfill-php83": "^1.28"
  2914. },
  2915. "provide": {
  2916. "psr/clock-implementation": "1.0"
  2917. },
  2918. "type": "library",
  2919. "autoload": {
  2920. "files": [
  2921. "Resources/now.php"
  2922. ],
  2923. "psr-4": {
  2924. "Symfony\\Component\\Clock\\": ""
  2925. },
  2926. "exclude-from-classmap": [
  2927. "/Tests/"
  2928. ]
  2929. },
  2930. "notification-url": "https://packagist.org/downloads/",
  2931. "license": [
  2932. "MIT"
  2933. ],
  2934. "authors": [
  2935. {
  2936. "name": "Nicolas Grekas",
  2937. "email": "p@tchwork.com"
  2938. },
  2939. {
  2940. "name": "Symfony Community",
  2941. "homepage": "https://symfony.com/contributors"
  2942. }
  2943. ],
  2944. "description": "Decouples applications from the system clock",
  2945. "homepage": "https://symfony.com",
  2946. "keywords": [
  2947. "clock",
  2948. "psr20",
  2949. "time"
  2950. ],
  2951. "support": {
  2952. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  2953. },
  2954. "funding": [
  2955. {
  2956. "url": "https://symfony.com/sponsor",
  2957. "type": "custom"
  2958. },
  2959. {
  2960. "url": "https://github.com/fabpot",
  2961. "type": "github"
  2962. },
  2963. {
  2964. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2965. "type": "tidelift"
  2966. }
  2967. ],
  2968. "time": "2024-05-31T14:57:53+00:00"
  2969. },
  2970. {
  2971. "name": "symfony/console",
  2972. "version": "v7.1.2",
  2973. "source": {
  2974. "type": "git",
  2975. "url": "https://github.com/symfony/console.git",
  2976. "reference": "0aa29ca177f432ab68533432db0de059f39c92ae"
  2977. },
  2978. "dist": {
  2979. "type": "zip",
  2980. "url": "https://api.github.com/repos/symfony/console/zipball/0aa29ca177f432ab68533432db0de059f39c92ae",
  2981. "reference": "0aa29ca177f432ab68533432db0de059f39c92ae",
  2982. "shasum": ""
  2983. },
  2984. "require": {
  2985. "php": ">=8.2",
  2986. "symfony/polyfill-mbstring": "~1.0",
  2987. "symfony/service-contracts": "^2.5|^3",
  2988. "symfony/string": "^6.4|^7.0"
  2989. },
  2990. "conflict": {
  2991. "symfony/dependency-injection": "<6.4",
  2992. "symfony/dotenv": "<6.4",
  2993. "symfony/event-dispatcher": "<6.4",
  2994. "symfony/lock": "<6.4",
  2995. "symfony/process": "<6.4"
  2996. },
  2997. "provide": {
  2998. "psr/log-implementation": "1.0|2.0|3.0"
  2999. },
  3000. "require-dev": {
  3001. "psr/log": "^1|^2|^3",
  3002. "symfony/config": "^6.4|^7.0",
  3003. "symfony/dependency-injection": "^6.4|^7.0",
  3004. "symfony/event-dispatcher": "^6.4|^7.0",
  3005. "symfony/http-foundation": "^6.4|^7.0",
  3006. "symfony/http-kernel": "^6.4|^7.0",
  3007. "symfony/lock": "^6.4|^7.0",
  3008. "symfony/messenger": "^6.4|^7.0",
  3009. "symfony/process": "^6.4|^7.0",
  3010. "symfony/stopwatch": "^6.4|^7.0",
  3011. "symfony/var-dumper": "^6.4|^7.0"
  3012. },
  3013. "type": "library",
  3014. "autoload": {
  3015. "psr-4": {
  3016. "Symfony\\Component\\Console\\": ""
  3017. },
  3018. "exclude-from-classmap": [
  3019. "/Tests/"
  3020. ]
  3021. },
  3022. "notification-url": "https://packagist.org/downloads/",
  3023. "license": [
  3024. "MIT"
  3025. ],
  3026. "authors": [
  3027. {
  3028. "name": "Fabien Potencier",
  3029. "email": "fabien@symfony.com"
  3030. },
  3031. {
  3032. "name": "Symfony Community",
  3033. "homepage": "https://symfony.com/contributors"
  3034. }
  3035. ],
  3036. "description": "Eases the creation of beautiful and testable command line interfaces",
  3037. "homepage": "https://symfony.com",
  3038. "keywords": [
  3039. "cli",
  3040. "command-line",
  3041. "console",
  3042. "terminal"
  3043. ],
  3044. "support": {
  3045. "source": "https://github.com/symfony/console/tree/v7.1.2"
  3046. },
  3047. "funding": [
  3048. {
  3049. "url": "https://symfony.com/sponsor",
  3050. "type": "custom"
  3051. },
  3052. {
  3053. "url": "https://github.com/fabpot",
  3054. "type": "github"
  3055. },
  3056. {
  3057. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3058. "type": "tidelift"
  3059. }
  3060. ],
  3061. "time": "2024-06-28T10:03:55+00:00"
  3062. },
  3063. {
  3064. "name": "symfony/deprecation-contracts",
  3065. "version": "v3.5.0",
  3066. "source": {
  3067. "type": "git",
  3068. "url": "https://github.com/symfony/deprecation-contracts.git",
  3069. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  3070. },
  3071. "dist": {
  3072. "type": "zip",
  3073. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3074. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3075. "shasum": ""
  3076. },
  3077. "require": {
  3078. "php": ">=8.1"
  3079. },
  3080. "type": "library",
  3081. "extra": {
  3082. "branch-alias": {
  3083. "dev-main": "3.5-dev"
  3084. },
  3085. "thanks": {
  3086. "name": "symfony/contracts",
  3087. "url": "https://github.com/symfony/contracts"
  3088. }
  3089. },
  3090. "autoload": {
  3091. "files": [
  3092. "function.php"
  3093. ]
  3094. },
  3095. "notification-url": "https://packagist.org/downloads/",
  3096. "license": [
  3097. "MIT"
  3098. ],
  3099. "authors": [
  3100. {
  3101. "name": "Nicolas Grekas",
  3102. "email": "p@tchwork.com"
  3103. },
  3104. {
  3105. "name": "Symfony Community",
  3106. "homepage": "https://symfony.com/contributors"
  3107. }
  3108. ],
  3109. "description": "A generic function and convention to trigger deprecation notices",
  3110. "homepage": "https://symfony.com",
  3111. "support": {
  3112. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  3113. },
  3114. "funding": [
  3115. {
  3116. "url": "https://symfony.com/sponsor",
  3117. "type": "custom"
  3118. },
  3119. {
  3120. "url": "https://github.com/fabpot",
  3121. "type": "github"
  3122. },
  3123. {
  3124. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3125. "type": "tidelift"
  3126. }
  3127. ],
  3128. "time": "2024-04-18T09:32:20+00:00"
  3129. },
  3130. {
  3131. "name": "symfony/polyfill-ctype",
  3132. "version": "v1.30.0",
  3133. "source": {
  3134. "type": "git",
  3135. "url": "https://github.com/symfony/polyfill-ctype.git",
  3136. "reference": "0424dff1c58f028c451efff2045f5d92410bd540"
  3137. },
  3138. "dist": {
  3139. "type": "zip",
  3140. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/0424dff1c58f028c451efff2045f5d92410bd540",
  3141. "reference": "0424dff1c58f028c451efff2045f5d92410bd540",
  3142. "shasum": ""
  3143. },
  3144. "require": {
  3145. "php": ">=7.1"
  3146. },
  3147. "provide": {
  3148. "ext-ctype": "*"
  3149. },
  3150. "suggest": {
  3151. "ext-ctype": "For best performance"
  3152. },
  3153. "type": "library",
  3154. "extra": {
  3155. "thanks": {
  3156. "name": "symfony/polyfill",
  3157. "url": "https://github.com/symfony/polyfill"
  3158. }
  3159. },
  3160. "autoload": {
  3161. "files": [
  3162. "bootstrap.php"
  3163. ],
  3164. "psr-4": {
  3165. "Symfony\\Polyfill\\Ctype\\": ""
  3166. }
  3167. },
  3168. "notification-url": "https://packagist.org/downloads/",
  3169. "license": [
  3170. "MIT"
  3171. ],
  3172. "authors": [
  3173. {
  3174. "name": "Gert de Pagter",
  3175. "email": "BackEndTea@gmail.com"
  3176. },
  3177. {
  3178. "name": "Symfony Community",
  3179. "homepage": "https://symfony.com/contributors"
  3180. }
  3181. ],
  3182. "description": "Symfony polyfill for ctype functions",
  3183. "homepage": "https://symfony.com",
  3184. "keywords": [
  3185. "compatibility",
  3186. "ctype",
  3187. "polyfill",
  3188. "portable"
  3189. ],
  3190. "support": {
  3191. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0"
  3192. },
  3193. "funding": [
  3194. {
  3195. "url": "https://symfony.com/sponsor",
  3196. "type": "custom"
  3197. },
  3198. {
  3199. "url": "https://github.com/fabpot",
  3200. "type": "github"
  3201. },
  3202. {
  3203. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3204. "type": "tidelift"
  3205. }
  3206. ],
  3207. "time": "2024-05-31T15:07:36+00:00"
  3208. },
  3209. {
  3210. "name": "symfony/polyfill-intl-grapheme",
  3211. "version": "v1.30.0",
  3212. "source": {
  3213. "type": "git",
  3214. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3215. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a"
  3216. },
  3217. "dist": {
  3218. "type": "zip",
  3219. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a",
  3220. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a",
  3221. "shasum": ""
  3222. },
  3223. "require": {
  3224. "php": ">=7.1"
  3225. },
  3226. "suggest": {
  3227. "ext-intl": "For best performance"
  3228. },
  3229. "type": "library",
  3230. "extra": {
  3231. "thanks": {
  3232. "name": "symfony/polyfill",
  3233. "url": "https://github.com/symfony/polyfill"
  3234. }
  3235. },
  3236. "autoload": {
  3237. "files": [
  3238. "bootstrap.php"
  3239. ],
  3240. "psr-4": {
  3241. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3242. }
  3243. },
  3244. "notification-url": "https://packagist.org/downloads/",
  3245. "license": [
  3246. "MIT"
  3247. ],
  3248. "authors": [
  3249. {
  3250. "name": "Nicolas Grekas",
  3251. "email": "p@tchwork.com"
  3252. },
  3253. {
  3254. "name": "Symfony Community",
  3255. "homepage": "https://symfony.com/contributors"
  3256. }
  3257. ],
  3258. "description": "Symfony polyfill for intl's grapheme_* functions",
  3259. "homepage": "https://symfony.com",
  3260. "keywords": [
  3261. "compatibility",
  3262. "grapheme",
  3263. "intl",
  3264. "polyfill",
  3265. "portable",
  3266. "shim"
  3267. ],
  3268. "support": {
  3269. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0"
  3270. },
  3271. "funding": [
  3272. {
  3273. "url": "https://symfony.com/sponsor",
  3274. "type": "custom"
  3275. },
  3276. {
  3277. "url": "https://github.com/fabpot",
  3278. "type": "github"
  3279. },
  3280. {
  3281. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3282. "type": "tidelift"
  3283. }
  3284. ],
  3285. "time": "2024-05-31T15:07:36+00:00"
  3286. },
  3287. {
  3288. "name": "symfony/polyfill-intl-normalizer",
  3289. "version": "v1.30.0",
  3290. "source": {
  3291. "type": "git",
  3292. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3293. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb"
  3294. },
  3295. "dist": {
  3296. "type": "zip",
  3297. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  3298. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  3299. "shasum": ""
  3300. },
  3301. "require": {
  3302. "php": ">=7.1"
  3303. },
  3304. "suggest": {
  3305. "ext-intl": "For best performance"
  3306. },
  3307. "type": "library",
  3308. "extra": {
  3309. "thanks": {
  3310. "name": "symfony/polyfill",
  3311. "url": "https://github.com/symfony/polyfill"
  3312. }
  3313. },
  3314. "autoload": {
  3315. "files": [
  3316. "bootstrap.php"
  3317. ],
  3318. "psr-4": {
  3319. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3320. },
  3321. "classmap": [
  3322. "Resources/stubs"
  3323. ]
  3324. },
  3325. "notification-url": "https://packagist.org/downloads/",
  3326. "license": [
  3327. "MIT"
  3328. ],
  3329. "authors": [
  3330. {
  3331. "name": "Nicolas Grekas",
  3332. "email": "p@tchwork.com"
  3333. },
  3334. {
  3335. "name": "Symfony Community",
  3336. "homepage": "https://symfony.com/contributors"
  3337. }
  3338. ],
  3339. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3340. "homepage": "https://symfony.com",
  3341. "keywords": [
  3342. "compatibility",
  3343. "intl",
  3344. "normalizer",
  3345. "polyfill",
  3346. "portable",
  3347. "shim"
  3348. ],
  3349. "support": {
  3350. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0"
  3351. },
  3352. "funding": [
  3353. {
  3354. "url": "https://symfony.com/sponsor",
  3355. "type": "custom"
  3356. },
  3357. {
  3358. "url": "https://github.com/fabpot",
  3359. "type": "github"
  3360. },
  3361. {
  3362. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3363. "type": "tidelift"
  3364. }
  3365. ],
  3366. "time": "2024-05-31T15:07:36+00:00"
  3367. },
  3368. {
  3369. "name": "symfony/polyfill-mbstring",
  3370. "version": "v1.30.0",
  3371. "source": {
  3372. "type": "git",
  3373. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3374. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
  3375. },
  3376. "dist": {
  3377. "type": "zip",
  3378. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  3379. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  3380. "shasum": ""
  3381. },
  3382. "require": {
  3383. "php": ">=7.1"
  3384. },
  3385. "provide": {
  3386. "ext-mbstring": "*"
  3387. },
  3388. "suggest": {
  3389. "ext-mbstring": "For best performance"
  3390. },
  3391. "type": "library",
  3392. "extra": {
  3393. "thanks": {
  3394. "name": "symfony/polyfill",
  3395. "url": "https://github.com/symfony/polyfill"
  3396. }
  3397. },
  3398. "autoload": {
  3399. "files": [
  3400. "bootstrap.php"
  3401. ],
  3402. "psr-4": {
  3403. "Symfony\\Polyfill\\Mbstring\\": ""
  3404. }
  3405. },
  3406. "notification-url": "https://packagist.org/downloads/",
  3407. "license": [
  3408. "MIT"
  3409. ],
  3410. "authors": [
  3411. {
  3412. "name": "Nicolas Grekas",
  3413. "email": "p@tchwork.com"
  3414. },
  3415. {
  3416. "name": "Symfony Community",
  3417. "homepage": "https://symfony.com/contributors"
  3418. }
  3419. ],
  3420. "description": "Symfony polyfill for the Mbstring extension",
  3421. "homepage": "https://symfony.com",
  3422. "keywords": [
  3423. "compatibility",
  3424. "mbstring",
  3425. "polyfill",
  3426. "portable",
  3427. "shim"
  3428. ],
  3429. "support": {
  3430. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0"
  3431. },
  3432. "funding": [
  3433. {
  3434. "url": "https://symfony.com/sponsor",
  3435. "type": "custom"
  3436. },
  3437. {
  3438. "url": "https://github.com/fabpot",
  3439. "type": "github"
  3440. },
  3441. {
  3442. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3443. "type": "tidelift"
  3444. }
  3445. ],
  3446. "time": "2024-06-19T12:30:46+00:00"
  3447. },
  3448. {
  3449. "name": "symfony/polyfill-php80",
  3450. "version": "v1.30.0",
  3451. "source": {
  3452. "type": "git",
  3453. "url": "https://github.com/symfony/polyfill-php80.git",
  3454. "reference": "77fa7995ac1b21ab60769b7323d600a991a90433"
  3455. },
  3456. "dist": {
  3457. "type": "zip",
  3458. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433",
  3459. "reference": "77fa7995ac1b21ab60769b7323d600a991a90433",
  3460. "shasum": ""
  3461. },
  3462. "require": {
  3463. "php": ">=7.1"
  3464. },
  3465. "type": "library",
  3466. "extra": {
  3467. "thanks": {
  3468. "name": "symfony/polyfill",
  3469. "url": "https://github.com/symfony/polyfill"
  3470. }
  3471. },
  3472. "autoload": {
  3473. "files": [
  3474. "bootstrap.php"
  3475. ],
  3476. "psr-4": {
  3477. "Symfony\\Polyfill\\Php80\\": ""
  3478. },
  3479. "classmap": [
  3480. "Resources/stubs"
  3481. ]
  3482. },
  3483. "notification-url": "https://packagist.org/downloads/",
  3484. "license": [
  3485. "MIT"
  3486. ],
  3487. "authors": [
  3488. {
  3489. "name": "Ion Bazan",
  3490. "email": "ion.bazan@gmail.com"
  3491. },
  3492. {
  3493. "name": "Nicolas Grekas",
  3494. "email": "p@tchwork.com"
  3495. },
  3496. {
  3497. "name": "Symfony Community",
  3498. "homepage": "https://symfony.com/contributors"
  3499. }
  3500. ],
  3501. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3502. "homepage": "https://symfony.com",
  3503. "keywords": [
  3504. "compatibility",
  3505. "polyfill",
  3506. "portable",
  3507. "shim"
  3508. ],
  3509. "support": {
  3510. "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0"
  3511. },
  3512. "funding": [
  3513. {
  3514. "url": "https://symfony.com/sponsor",
  3515. "type": "custom"
  3516. },
  3517. {
  3518. "url": "https://github.com/fabpot",
  3519. "type": "github"
  3520. },
  3521. {
  3522. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3523. "type": "tidelift"
  3524. }
  3525. ],
  3526. "time": "2024-05-31T15:07:36+00:00"
  3527. },
  3528. {
  3529. "name": "symfony/polyfill-php83",
  3530. "version": "v1.30.0",
  3531. "source": {
  3532. "type": "git",
  3533. "url": "https://github.com/symfony/polyfill-php83.git",
  3534. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9"
  3535. },
  3536. "dist": {
  3537. "type": "zip",
  3538. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  3539. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  3540. "shasum": ""
  3541. },
  3542. "require": {
  3543. "php": ">=7.1"
  3544. },
  3545. "type": "library",
  3546. "extra": {
  3547. "thanks": {
  3548. "name": "symfony/polyfill",
  3549. "url": "https://github.com/symfony/polyfill"
  3550. }
  3551. },
  3552. "autoload": {
  3553. "files": [
  3554. "bootstrap.php"
  3555. ],
  3556. "psr-4": {
  3557. "Symfony\\Polyfill\\Php83\\": ""
  3558. },
  3559. "classmap": [
  3560. "Resources/stubs"
  3561. ]
  3562. },
  3563. "notification-url": "https://packagist.org/downloads/",
  3564. "license": [
  3565. "MIT"
  3566. ],
  3567. "authors": [
  3568. {
  3569. "name": "Nicolas Grekas",
  3570. "email": "p@tchwork.com"
  3571. },
  3572. {
  3573. "name": "Symfony Community",
  3574. "homepage": "https://symfony.com/contributors"
  3575. }
  3576. ],
  3577. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  3578. "homepage": "https://symfony.com",
  3579. "keywords": [
  3580. "compatibility",
  3581. "polyfill",
  3582. "portable",
  3583. "shim"
  3584. ],
  3585. "support": {
  3586. "source": "https://github.com/symfony/polyfill-php83/tree/v1.30.0"
  3587. },
  3588. "funding": [
  3589. {
  3590. "url": "https://symfony.com/sponsor",
  3591. "type": "custom"
  3592. },
  3593. {
  3594. "url": "https://github.com/fabpot",
  3595. "type": "github"
  3596. },
  3597. {
  3598. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3599. "type": "tidelift"
  3600. }
  3601. ],
  3602. "time": "2024-06-19T12:35:24+00:00"
  3603. },
  3604. {
  3605. "name": "symfony/service-contracts",
  3606. "version": "v3.5.0",
  3607. "source": {
  3608. "type": "git",
  3609. "url": "https://github.com/symfony/service-contracts.git",
  3610. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  3611. },
  3612. "dist": {
  3613. "type": "zip",
  3614. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  3615. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  3616. "shasum": ""
  3617. },
  3618. "require": {
  3619. "php": ">=8.1",
  3620. "psr/container": "^1.1|^2.0",
  3621. "symfony/deprecation-contracts": "^2.5|^3"
  3622. },
  3623. "conflict": {
  3624. "ext-psr": "<1.1|>=2"
  3625. },
  3626. "type": "library",
  3627. "extra": {
  3628. "branch-alias": {
  3629. "dev-main": "3.5-dev"
  3630. },
  3631. "thanks": {
  3632. "name": "symfony/contracts",
  3633. "url": "https://github.com/symfony/contracts"
  3634. }
  3635. },
  3636. "autoload": {
  3637. "psr-4": {
  3638. "Symfony\\Contracts\\Service\\": ""
  3639. },
  3640. "exclude-from-classmap": [
  3641. "/Test/"
  3642. ]
  3643. },
  3644. "notification-url": "https://packagist.org/downloads/",
  3645. "license": [
  3646. "MIT"
  3647. ],
  3648. "authors": [
  3649. {
  3650. "name": "Nicolas Grekas",
  3651. "email": "p@tchwork.com"
  3652. },
  3653. {
  3654. "name": "Symfony Community",
  3655. "homepage": "https://symfony.com/contributors"
  3656. }
  3657. ],
  3658. "description": "Generic abstractions related to writing services",
  3659. "homepage": "https://symfony.com",
  3660. "keywords": [
  3661. "abstractions",
  3662. "contracts",
  3663. "decoupling",
  3664. "interfaces",
  3665. "interoperability",
  3666. "standards"
  3667. ],
  3668. "support": {
  3669. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  3670. },
  3671. "funding": [
  3672. {
  3673. "url": "https://symfony.com/sponsor",
  3674. "type": "custom"
  3675. },
  3676. {
  3677. "url": "https://github.com/fabpot",
  3678. "type": "github"
  3679. },
  3680. {
  3681. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3682. "type": "tidelift"
  3683. }
  3684. ],
  3685. "time": "2024-04-18T09:32:20+00:00"
  3686. },
  3687. {
  3688. "name": "symfony/string",
  3689. "version": "v7.1.2",
  3690. "source": {
  3691. "type": "git",
  3692. "url": "https://github.com/symfony/string.git",
  3693. "reference": "14221089ac66cf82e3cf3d1c1da65de305587ff8"
  3694. },
  3695. "dist": {
  3696. "type": "zip",
  3697. "url": "https://api.github.com/repos/symfony/string/zipball/14221089ac66cf82e3cf3d1c1da65de305587ff8",
  3698. "reference": "14221089ac66cf82e3cf3d1c1da65de305587ff8",
  3699. "shasum": ""
  3700. },
  3701. "require": {
  3702. "php": ">=8.2",
  3703. "symfony/polyfill-ctype": "~1.8",
  3704. "symfony/polyfill-intl-grapheme": "~1.0",
  3705. "symfony/polyfill-intl-normalizer": "~1.0",
  3706. "symfony/polyfill-mbstring": "~1.0"
  3707. },
  3708. "conflict": {
  3709. "symfony/translation-contracts": "<2.5"
  3710. },
  3711. "require-dev": {
  3712. "symfony/emoji": "^7.1",
  3713. "symfony/error-handler": "^6.4|^7.0",
  3714. "symfony/http-client": "^6.4|^7.0",
  3715. "symfony/intl": "^6.4|^7.0",
  3716. "symfony/translation-contracts": "^2.5|^3.0",
  3717. "symfony/var-exporter": "^6.4|^7.0"
  3718. },
  3719. "type": "library",
  3720. "autoload": {
  3721. "files": [
  3722. "Resources/functions.php"
  3723. ],
  3724. "psr-4": {
  3725. "Symfony\\Component\\String\\": ""
  3726. },
  3727. "exclude-from-classmap": [
  3728. "/Tests/"
  3729. ]
  3730. },
  3731. "notification-url": "https://packagist.org/downloads/",
  3732. "license": [
  3733. "MIT"
  3734. ],
  3735. "authors": [
  3736. {
  3737. "name": "Nicolas Grekas",
  3738. "email": "p@tchwork.com"
  3739. },
  3740. {
  3741. "name": "Symfony Community",
  3742. "homepage": "https://symfony.com/contributors"
  3743. }
  3744. ],
  3745. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  3746. "homepage": "https://symfony.com",
  3747. "keywords": [
  3748. "grapheme",
  3749. "i18n",
  3750. "string",
  3751. "unicode",
  3752. "utf-8",
  3753. "utf8"
  3754. ],
  3755. "support": {
  3756. "source": "https://github.com/symfony/string/tree/v7.1.2"
  3757. },
  3758. "funding": [
  3759. {
  3760. "url": "https://symfony.com/sponsor",
  3761. "type": "custom"
  3762. },
  3763. {
  3764. "url": "https://github.com/fabpot",
  3765. "type": "github"
  3766. },
  3767. {
  3768. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3769. "type": "tidelift"
  3770. }
  3771. ],
  3772. "time": "2024-06-28T09:27:18+00:00"
  3773. },
  3774. {
  3775. "name": "symfony/translation",
  3776. "version": "v7.1.1",
  3777. "source": {
  3778. "type": "git",
  3779. "url": "https://github.com/symfony/translation.git",
  3780. "reference": "cf5ae136e124fc7681b34ce9fac9d5b9ae8ceee3"
  3781. },
  3782. "dist": {
  3783. "type": "zip",
  3784. "url": "https://api.github.com/repos/symfony/translation/zipball/cf5ae136e124fc7681b34ce9fac9d5b9ae8ceee3",
  3785. "reference": "cf5ae136e124fc7681b34ce9fac9d5b9ae8ceee3",
  3786. "shasum": ""
  3787. },
  3788. "require": {
  3789. "php": ">=8.2",
  3790. "symfony/polyfill-mbstring": "~1.0",
  3791. "symfony/translation-contracts": "^2.5|^3.0"
  3792. },
  3793. "conflict": {
  3794. "symfony/config": "<6.4",
  3795. "symfony/console": "<6.4",
  3796. "symfony/dependency-injection": "<6.4",
  3797. "symfony/http-client-contracts": "<2.5",
  3798. "symfony/http-kernel": "<6.4",
  3799. "symfony/service-contracts": "<2.5",
  3800. "symfony/twig-bundle": "<6.4",
  3801. "symfony/yaml": "<6.4"
  3802. },
  3803. "provide": {
  3804. "symfony/translation-implementation": "2.3|3.0"
  3805. },
  3806. "require-dev": {
  3807. "nikic/php-parser": "^4.18|^5.0",
  3808. "psr/log": "^1|^2|^3",
  3809. "symfony/config": "^6.4|^7.0",
  3810. "symfony/console": "^6.4|^7.0",
  3811. "symfony/dependency-injection": "^6.4|^7.0",
  3812. "symfony/finder": "^6.4|^7.0",
  3813. "symfony/http-client-contracts": "^2.5|^3.0",
  3814. "symfony/http-kernel": "^6.4|^7.0",
  3815. "symfony/intl": "^6.4|^7.0",
  3816. "symfony/polyfill-intl-icu": "^1.21",
  3817. "symfony/routing": "^6.4|^7.0",
  3818. "symfony/service-contracts": "^2.5|^3",
  3819. "symfony/yaml": "^6.4|^7.0"
  3820. },
  3821. "type": "library",
  3822. "autoload": {
  3823. "files": [
  3824. "Resources/functions.php"
  3825. ],
  3826. "psr-4": {
  3827. "Symfony\\Component\\Translation\\": ""
  3828. },
  3829. "exclude-from-classmap": [
  3830. "/Tests/"
  3831. ]
  3832. },
  3833. "notification-url": "https://packagist.org/downloads/",
  3834. "license": [
  3835. "MIT"
  3836. ],
  3837. "authors": [
  3838. {
  3839. "name": "Fabien Potencier",
  3840. "email": "fabien@symfony.com"
  3841. },
  3842. {
  3843. "name": "Symfony Community",
  3844. "homepage": "https://symfony.com/contributors"
  3845. }
  3846. ],
  3847. "description": "Provides tools to internationalize your application",
  3848. "homepage": "https://symfony.com",
  3849. "support": {
  3850. "source": "https://github.com/symfony/translation/tree/v7.1.1"
  3851. },
  3852. "funding": [
  3853. {
  3854. "url": "https://symfony.com/sponsor",
  3855. "type": "custom"
  3856. },
  3857. {
  3858. "url": "https://github.com/fabpot",
  3859. "type": "github"
  3860. },
  3861. {
  3862. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3863. "type": "tidelift"
  3864. }
  3865. ],
  3866. "time": "2024-05-31T14:57:53+00:00"
  3867. },
  3868. {
  3869. "name": "symfony/translation-contracts",
  3870. "version": "v3.5.0",
  3871. "source": {
  3872. "type": "git",
  3873. "url": "https://github.com/symfony/translation-contracts.git",
  3874. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  3875. },
  3876. "dist": {
  3877. "type": "zip",
  3878. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  3879. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  3880. "shasum": ""
  3881. },
  3882. "require": {
  3883. "php": ">=8.1"
  3884. },
  3885. "type": "library",
  3886. "extra": {
  3887. "branch-alias": {
  3888. "dev-main": "3.5-dev"
  3889. },
  3890. "thanks": {
  3891. "name": "symfony/contracts",
  3892. "url": "https://github.com/symfony/contracts"
  3893. }
  3894. },
  3895. "autoload": {
  3896. "psr-4": {
  3897. "Symfony\\Contracts\\Translation\\": ""
  3898. },
  3899. "exclude-from-classmap": [
  3900. "/Test/"
  3901. ]
  3902. },
  3903. "notification-url": "https://packagist.org/downloads/",
  3904. "license": [
  3905. "MIT"
  3906. ],
  3907. "authors": [
  3908. {
  3909. "name": "Nicolas Grekas",
  3910. "email": "p@tchwork.com"
  3911. },
  3912. {
  3913. "name": "Symfony Community",
  3914. "homepage": "https://symfony.com/contributors"
  3915. }
  3916. ],
  3917. "description": "Generic abstractions related to translation",
  3918. "homepage": "https://symfony.com",
  3919. "keywords": [
  3920. "abstractions",
  3921. "contracts",
  3922. "decoupling",
  3923. "interfaces",
  3924. "interoperability",
  3925. "standards"
  3926. ],
  3927. "support": {
  3928. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  3929. },
  3930. "funding": [
  3931. {
  3932. "url": "https://symfony.com/sponsor",
  3933. "type": "custom"
  3934. },
  3935. {
  3936. "url": "https://github.com/fabpot",
  3937. "type": "github"
  3938. },
  3939. {
  3940. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3941. "type": "tidelift"
  3942. }
  3943. ],
  3944. "time": "2024-04-18T09:32:20+00:00"
  3945. },
  3946. {
  3947. "name": "symfony/var-dumper",
  3948. "version": "v7.1.2",
  3949. "source": {
  3950. "type": "git",
  3951. "url": "https://github.com/symfony/var-dumper.git",
  3952. "reference": "5857c57c6b4b86524c08cf4f4bc95327270a816d"
  3953. },
  3954. "dist": {
  3955. "type": "zip",
  3956. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/5857c57c6b4b86524c08cf4f4bc95327270a816d",
  3957. "reference": "5857c57c6b4b86524c08cf4f4bc95327270a816d",
  3958. "shasum": ""
  3959. },
  3960. "require": {
  3961. "php": ">=8.2",
  3962. "symfony/polyfill-mbstring": "~1.0"
  3963. },
  3964. "conflict": {
  3965. "symfony/console": "<6.4"
  3966. },
  3967. "require-dev": {
  3968. "ext-iconv": "*",
  3969. "symfony/console": "^6.4|^7.0",
  3970. "symfony/http-kernel": "^6.4|^7.0",
  3971. "symfony/process": "^6.4|^7.0",
  3972. "symfony/uid": "^6.4|^7.0",
  3973. "twig/twig": "^3.0.4"
  3974. },
  3975. "bin": [
  3976. "Resources/bin/var-dump-server"
  3977. ],
  3978. "type": "library",
  3979. "autoload": {
  3980. "files": [
  3981. "Resources/functions/dump.php"
  3982. ],
  3983. "psr-4": {
  3984. "Symfony\\Component\\VarDumper\\": ""
  3985. },
  3986. "exclude-from-classmap": [
  3987. "/Tests/"
  3988. ]
  3989. },
  3990. "notification-url": "https://packagist.org/downloads/",
  3991. "license": [
  3992. "MIT"
  3993. ],
  3994. "authors": [
  3995. {
  3996. "name": "Nicolas Grekas",
  3997. "email": "p@tchwork.com"
  3998. },
  3999. {
  4000. "name": "Symfony Community",
  4001. "homepage": "https://symfony.com/contributors"
  4002. }
  4003. ],
  4004. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4005. "homepage": "https://symfony.com",
  4006. "keywords": [
  4007. "debug",
  4008. "dump"
  4009. ],
  4010. "support": {
  4011. "source": "https://github.com/symfony/var-dumper/tree/v7.1.2"
  4012. },
  4013. "funding": [
  4014. {
  4015. "url": "https://symfony.com/sponsor",
  4016. "type": "custom"
  4017. },
  4018. {
  4019. "url": "https://github.com/fabpot",
  4020. "type": "github"
  4021. },
  4022. {
  4023. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4024. "type": "tidelift"
  4025. }
  4026. ],
  4027. "time": "2024-06-28T08:00:31+00:00"
  4028. },
  4029. {
  4030. "name": "vlucas/phpdotenv",
  4031. "version": "v5.6.0",
  4032. "source": {
  4033. "type": "git",
  4034. "url": "https://github.com/vlucas/phpdotenv.git",
  4035. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  4036. },
  4037. "dist": {
  4038. "type": "zip",
  4039. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  4040. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  4041. "shasum": ""
  4042. },
  4043. "require": {
  4044. "ext-pcre": "*",
  4045. "graham-campbell/result-type": "^1.1.2",
  4046. "php": "^7.2.5 || ^8.0",
  4047. "phpoption/phpoption": "^1.9.2",
  4048. "symfony/polyfill-ctype": "^1.24",
  4049. "symfony/polyfill-mbstring": "^1.24",
  4050. "symfony/polyfill-php80": "^1.24"
  4051. },
  4052. "require-dev": {
  4053. "bamarni/composer-bin-plugin": "^1.8.2",
  4054. "ext-filter": "*",
  4055. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  4056. },
  4057. "suggest": {
  4058. "ext-filter": "Required to use the boolean validator."
  4059. },
  4060. "type": "library",
  4061. "extra": {
  4062. "bamarni-bin": {
  4063. "bin-links": true,
  4064. "forward-command": true
  4065. },
  4066. "branch-alias": {
  4067. "dev-master": "5.6-dev"
  4068. }
  4069. },
  4070. "autoload": {
  4071. "psr-4": {
  4072. "Dotenv\\": "src/"
  4073. }
  4074. },
  4075. "notification-url": "https://packagist.org/downloads/",
  4076. "license": [
  4077. "BSD-3-Clause"
  4078. ],
  4079. "authors": [
  4080. {
  4081. "name": "Graham Campbell",
  4082. "email": "hello@gjcampbell.co.uk",
  4083. "homepage": "https://github.com/GrahamCampbell"
  4084. },
  4085. {
  4086. "name": "Vance Lucas",
  4087. "email": "vance@vancelucas.com",
  4088. "homepage": "https://github.com/vlucas"
  4089. }
  4090. ],
  4091. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4092. "keywords": [
  4093. "dotenv",
  4094. "env",
  4095. "environment"
  4096. ],
  4097. "support": {
  4098. "issues": "https://github.com/vlucas/phpdotenv/issues",
  4099. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  4100. },
  4101. "funding": [
  4102. {
  4103. "url": "https://github.com/GrahamCampbell",
  4104. "type": "github"
  4105. },
  4106. {
  4107. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  4108. "type": "tidelift"
  4109. }
  4110. ],
  4111. "time": "2023-11-12T22:43:29+00:00"
  4112. },
  4113. {
  4114. "name": "voku/portable-ascii",
  4115. "version": "2.0.1",
  4116. "source": {
  4117. "type": "git",
  4118. "url": "https://github.com/voku/portable-ascii.git",
  4119. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  4120. },
  4121. "dist": {
  4122. "type": "zip",
  4123. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  4124. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  4125. "shasum": ""
  4126. },
  4127. "require": {
  4128. "php": ">=7.0.0"
  4129. },
  4130. "require-dev": {
  4131. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  4132. },
  4133. "suggest": {
  4134. "ext-intl": "Use Intl for transliterator_transliterate() support"
  4135. },
  4136. "type": "library",
  4137. "autoload": {
  4138. "psr-4": {
  4139. "voku\\": "src/voku/"
  4140. }
  4141. },
  4142. "notification-url": "https://packagist.org/downloads/",
  4143. "license": [
  4144. "MIT"
  4145. ],
  4146. "authors": [
  4147. {
  4148. "name": "Lars Moelleken",
  4149. "homepage": "http://www.moelleken.org/"
  4150. }
  4151. ],
  4152. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  4153. "homepage": "https://github.com/voku/portable-ascii",
  4154. "keywords": [
  4155. "ascii",
  4156. "clean",
  4157. "php"
  4158. ],
  4159. "support": {
  4160. "issues": "https://github.com/voku/portable-ascii/issues",
  4161. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  4162. },
  4163. "funding": [
  4164. {
  4165. "url": "https://www.paypal.me/moelleken",
  4166. "type": "custom"
  4167. },
  4168. {
  4169. "url": "https://github.com/voku",
  4170. "type": "github"
  4171. },
  4172. {
  4173. "url": "https://opencollective.com/portable-ascii",
  4174. "type": "open_collective"
  4175. },
  4176. {
  4177. "url": "https://www.patreon.com/voku",
  4178. "type": "patreon"
  4179. },
  4180. {
  4181. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  4182. "type": "tidelift"
  4183. }
  4184. ],
  4185. "time": "2022-03-08T17:03:00+00:00"
  4186. },
  4187. {
  4188. "name": "webman/admin",
  4189. "version": "v0.6.29",
  4190. "source": {
  4191. "type": "git",
  4192. "url": "https://github.com/webman-php/admin.git",
  4193. "reference": "a9540f2ecc3783bb4b8e008f47f221a36426d80c"
  4194. },
  4195. "dist": {
  4196. "type": "zip",
  4197. "url": "https://api.github.com/repos/webman-php/admin/zipball/a9540f2ecc3783bb4b8e008f47f221a36426d80c",
  4198. "reference": "a9540f2ecc3783bb4b8e008f47f221a36426d80c",
  4199. "shasum": ""
  4200. },
  4201. "require": {
  4202. "guzzlehttp/guzzle": "^7.5",
  4203. "illuminate/database": ">=7.30",
  4204. "illuminate/events": ">=7.30",
  4205. "illuminate/pagination": ">=7.30",
  4206. "intervention/image": "^2.7",
  4207. "webman/captcha": "^1.0.0",
  4208. "webman/event": "^1.0",
  4209. "workerman/webman-framework": ">=1.4"
  4210. },
  4211. "type": "project",
  4212. "autoload": {
  4213. "psr-4": {
  4214. "Webman\\Admin\\": "src"
  4215. }
  4216. },
  4217. "notification-url": "https://packagist.org/downloads/",
  4218. "license": [
  4219. "MIT"
  4220. ],
  4221. "description": "Webman Admin",
  4222. "support": {
  4223. "issues": "https://github.com/webman-php/admin/issues",
  4224. "source": "https://github.com/webman-php/admin/tree/v0.6.29"
  4225. },
  4226. "time": "2024-06-17T06:54:29+00:00"
  4227. },
  4228. {
  4229. "name": "webman/captcha",
  4230. "version": "v1.0.4",
  4231. "source": {
  4232. "type": "git",
  4233. "url": "https://github.com/webman-php/captcha.git",
  4234. "reference": "44dc1e74b23e180e1dcb361c11b2ca8bc2e6b32c"
  4235. },
  4236. "dist": {
  4237. "type": "zip",
  4238. "url": "https://api.github.com/repos/webman-php/captcha/zipball/44dc1e74b23e180e1dcb361c11b2ca8bc2e6b32c",
  4239. "reference": "44dc1e74b23e180e1dcb361c11b2ca8bc2e6b32c",
  4240. "shasum": ""
  4241. },
  4242. "require": {
  4243. "ext-gd": "*",
  4244. "ext-mbstring": "*",
  4245. "php": ">=5.6.0"
  4246. },
  4247. "require-dev": {
  4248. "phpunit/phpunit": "^6.4"
  4249. },
  4250. "type": "library",
  4251. "autoload": {
  4252. "psr-4": {
  4253. "Webman\\Captcha\\": "src"
  4254. }
  4255. },
  4256. "notification-url": "https://packagist.org/downloads/",
  4257. "license": [
  4258. "MIT"
  4259. ],
  4260. "authors": [
  4261. {
  4262. "name": "walkor",
  4263. "email": "walkor@workerman.net"
  4264. },
  4265. {
  4266. "name": "Grégoire Passault",
  4267. "email": "g.passault@gmail.com",
  4268. "homepage": "http://www.gregwar.com/"
  4269. },
  4270. {
  4271. "name": "Jeremy Livingston",
  4272. "email": "jeremy.j.livingston@gmail.com"
  4273. }
  4274. ],
  4275. "description": "Captcha generator",
  4276. "keywords": [
  4277. "bot",
  4278. "captcha",
  4279. "spam"
  4280. ],
  4281. "support": {
  4282. "source": "https://github.com/webman-php/captcha/tree/v1.0.4"
  4283. },
  4284. "time": "2024-05-14T02:56:38+00:00"
  4285. },
  4286. {
  4287. "name": "webman/console",
  4288. "version": "v1.3.9",
  4289. "source": {
  4290. "type": "git",
  4291. "url": "https://github.com/webman-php/console.git",
  4292. "reference": "9ba334486b9c8dc6b88e98f423d8fedfe3d71d45"
  4293. },
  4294. "dist": {
  4295. "type": "zip",
  4296. "url": "https://api.github.com/repos/webman-php/console/zipball/9ba334486b9c8dc6b88e98f423d8fedfe3d71d45",
  4297. "reference": "9ba334486b9c8dc6b88e98f423d8fedfe3d71d45",
  4298. "shasum": ""
  4299. },
  4300. "require": {
  4301. "doctrine/inflector": "^2.0",
  4302. "symfony/console": ">=5.0"
  4303. },
  4304. "require-dev": {
  4305. "workerman/webman": "^1.0"
  4306. },
  4307. "type": "library",
  4308. "autoload": {
  4309. "psr-4": {
  4310. "Webman\\Console\\": "src"
  4311. }
  4312. },
  4313. "notification-url": "https://packagist.org/downloads/",
  4314. "license": [
  4315. "MIT"
  4316. ],
  4317. "authors": [
  4318. {
  4319. "name": "walkor",
  4320. "email": "walkor@workerman.net",
  4321. "homepage": "http://www.workerman.net",
  4322. "role": "Developer"
  4323. }
  4324. ],
  4325. "description": "Webman console",
  4326. "homepage": "http://www.workerman.net",
  4327. "keywords": [
  4328. "webman console"
  4329. ],
  4330. "support": {
  4331. "email": "walkor@workerman.net",
  4332. "forum": "http://www.workerman.net/questions",
  4333. "issues": "https://github.com/webman-php/console/issues",
  4334. "source": "https://github.com/webman-php/console",
  4335. "wiki": "http://www.workerman.net/doc/webman"
  4336. },
  4337. "time": "2024-06-12T01:30:26+00:00"
  4338. },
  4339. {
  4340. "name": "webman/event",
  4341. "version": "v1.0.5",
  4342. "source": {
  4343. "type": "git",
  4344. "url": "https://github.com/webman-php/event.git",
  4345. "reference": "b1c3f6b70fd290e48288703d59bead0e28f9fb84"
  4346. },
  4347. "dist": {
  4348. "type": "zip",
  4349. "url": "https://api.github.com/repos/webman-php/event/zipball/b1c3f6b70fd290e48288703d59bead0e28f9fb84",
  4350. "reference": "b1c3f6b70fd290e48288703d59bead0e28f9fb84",
  4351. "shasum": ""
  4352. },
  4353. "type": "library",
  4354. "autoload": {
  4355. "psr-4": {
  4356. "Webman\\Event\\": "src"
  4357. }
  4358. },
  4359. "notification-url": "https://packagist.org/downloads/",
  4360. "license": [
  4361. "MIT"
  4362. ],
  4363. "description": "Webman event plugin",
  4364. "support": {
  4365. "issues": "https://github.com/webman-php/event/issues",
  4366. "source": "https://github.com/webman-php/event/tree/v1.0.5"
  4367. },
  4368. "time": "2023-12-04T09:22:12+00:00"
  4369. },
  4370. {
  4371. "name": "workerman/crontab",
  4372. "version": "v1.0.6",
  4373. "source": {
  4374. "type": "git",
  4375. "url": "https://github.com/walkor/crontab.git",
  4376. "reference": "b78f1556f2977715b9cb5653129e6d9cf160d966"
  4377. },
  4378. "dist": {
  4379. "type": "zip",
  4380. "url": "https://api.github.com/repos/walkor/crontab/zipball/b78f1556f2977715b9cb5653129e6d9cf160d966",
  4381. "reference": "b78f1556f2977715b9cb5653129e6d9cf160d966",
  4382. "shasum": ""
  4383. },
  4384. "require": {
  4385. "php": ">=7.0",
  4386. "workerman/workerman": ">=4.0.20"
  4387. },
  4388. "type": "library",
  4389. "autoload": {
  4390. "psr-4": {
  4391. "Workerman\\Crontab\\": "./src"
  4392. }
  4393. },
  4394. "notification-url": "https://packagist.org/downloads/",
  4395. "license": [
  4396. "MIT"
  4397. ],
  4398. "authors": [
  4399. {
  4400. "name": "walkor",
  4401. "email": "walkor@workerman.net",
  4402. "homepage": "http://www.workerman.net",
  4403. "role": "Developer"
  4404. }
  4405. ],
  4406. "description": "A crontab written in PHP based on workerman",
  4407. "homepage": "http://www.workerman.net",
  4408. "keywords": [
  4409. "crontab"
  4410. ],
  4411. "support": {
  4412. "email": "walkor@workerman.net",
  4413. "forum": "http://wenda.workerman.net/",
  4414. "issues": "https://github.com/walkor/workerman/issues",
  4415. "source": "https://github.com/walkor/crontab",
  4416. "wiki": "http://doc.workerman.net/"
  4417. },
  4418. "time": "2022-10-17T01:59:19+00:00"
  4419. },
  4420. {
  4421. "name": "workerman/validation",
  4422. "version": "v3.1.2",
  4423. "source": {
  4424. "type": "git",
  4425. "url": "https://github.com/walkor/validation.git",
  4426. "reference": "a4e9896e76b2fac92aff9a9f784df55f615571a0"
  4427. },
  4428. "dist": {
  4429. "type": "zip",
  4430. "url": "https://api.github.com/repos/walkor/validation/zipball/a4e9896e76b2fac92aff9a9f784df55f615571a0",
  4431. "reference": "a4e9896e76b2fac92aff9a9f784df55f615571a0",
  4432. "shasum": ""
  4433. },
  4434. "require": {
  4435. "php": "^8.0 || ^8.1 || ^8.2",
  4436. "respect/stringifier": "^0.2.0",
  4437. "symfony/polyfill-mbstring": "^1.2"
  4438. },
  4439. "require-dev": {
  4440. "egulias/email-validator": "^3.0",
  4441. "giggsey/libphonenumber-for-php-lite": "^8.13",
  4442. "malukenho/docheader": "^1.0",
  4443. "mikey179/vfsstream": "^1.6",
  4444. "phpstan/phpstan": "^1.9",
  4445. "phpstan/phpstan-deprecation-rules": "^1.1",
  4446. "phpstan/phpstan-phpunit": "^1.3",
  4447. "phpunit/phpunit": "^9.6",
  4448. "psr/http-message": "^1.0",
  4449. "respect/coding-standard": "^3.0",
  4450. "squizlabs/php_codesniffer": "^3.7"
  4451. },
  4452. "suggest": {
  4453. "egulias/email-validator": "Improves the Email rule if available",
  4454. "ext-bcmath": "Arbitrary Precision Mathematics",
  4455. "ext-fileinfo": "File Information",
  4456. "ext-mbstring": "Multibyte String Functions",
  4457. "giggsey/libphonenumber-for-php-lite": "Enables the phone rule if available"
  4458. },
  4459. "type": "library",
  4460. "autoload": {
  4461. "psr-4": {
  4462. "Respect\\Validation\\": "library/"
  4463. }
  4464. },
  4465. "notification-url": "https://packagist.org/downloads/",
  4466. "license": [
  4467. "MIT"
  4468. ],
  4469. "authors": [
  4470. {
  4471. "name": "Respect/Validation Contributors",
  4472. "homepage": "https://github.com/Respect/Validation/graphs/contributors"
  4473. }
  4474. ],
  4475. "description": "The most awesome validation engine ever created for PHP. Respect/Validation 汉化版本",
  4476. "homepage": "http://respect.github.io/Validation/",
  4477. "keywords": [
  4478. "respect",
  4479. "validation",
  4480. "validator"
  4481. ],
  4482. "support": {
  4483. "source": "https://github.com/walkor/validation/tree/v3.1.2"
  4484. },
  4485. "time": "2023-12-07T06:19:04+00:00"
  4486. },
  4487. {
  4488. "name": "workerman/webman-framework",
  4489. "version": "v1.5.20",
  4490. "source": {
  4491. "type": "git",
  4492. "url": "https://github.com/walkor/webman-framework.git",
  4493. "reference": "6fcbf1b2a2eb448a09d1cbe44fdc4deb1516f7f8"
  4494. },
  4495. "dist": {
  4496. "type": "zip",
  4497. "url": "https://api.github.com/repos/walkor/webman-framework/zipball/6fcbf1b2a2eb448a09d1cbe44fdc4deb1516f7f8",
  4498. "reference": "6fcbf1b2a2eb448a09d1cbe44fdc4deb1516f7f8",
  4499. "shasum": ""
  4500. },
  4501. "require": {
  4502. "ext-json": "*",
  4503. "nikic/fast-route": "^1.3",
  4504. "php": ">=7.2",
  4505. "psr/container": ">=1.0",
  4506. "workerman/workerman": "^4.0.4 || ^5.0.0"
  4507. },
  4508. "suggest": {
  4509. "ext-event": "For better performance. "
  4510. },
  4511. "type": "library",
  4512. "autoload": {
  4513. "psr-4": {
  4514. "Webman\\": "./src",
  4515. "Support\\": "./src/support",
  4516. "support\\": "./src/support",
  4517. "Support\\View\\": "./src/support/view",
  4518. "Support\\Bootstrap\\": "./src/support/bootstrap",
  4519. "Support\\Exception\\": "./src/support/exception"
  4520. }
  4521. },
  4522. "notification-url": "https://packagist.org/downloads/",
  4523. "license": [
  4524. "MIT"
  4525. ],
  4526. "authors": [
  4527. {
  4528. "name": "walkor",
  4529. "email": "walkor@workerman.net",
  4530. "homepage": "https://www.workerman.net",
  4531. "role": "Developer"
  4532. }
  4533. ],
  4534. "description": "High performance HTTP Service Framework.",
  4535. "homepage": "https://www.workerman.net",
  4536. "keywords": [
  4537. "High Performance",
  4538. "http service"
  4539. ],
  4540. "support": {
  4541. "email": "walkor@workerman.net",
  4542. "forum": "https://wenda.workerman.net/",
  4543. "issues": "https://github.com/walkor/webman/issues",
  4544. "source": "https://github.com/walkor/webman-framework",
  4545. "wiki": "https://doc.workerman.net/"
  4546. },
  4547. "time": "2024-07-04T07:12:58+00:00"
  4548. },
  4549. {
  4550. "name": "workerman/workerman",
  4551. "version": "v4.1.16",
  4552. "source": {
  4553. "type": "git",
  4554. "url": "https://github.com/walkor/workerman.git",
  4555. "reference": "405d904d33026e19497dffc3d085bbc16e66534e"
  4556. },
  4557. "dist": {
  4558. "type": "zip",
  4559. "url": "https://api.github.com/repos/walkor/workerman/zipball/405d904d33026e19497dffc3d085bbc16e66534e",
  4560. "reference": "405d904d33026e19497dffc3d085bbc16e66534e",
  4561. "shasum": ""
  4562. },
  4563. "require": {
  4564. "php": ">=7.0"
  4565. },
  4566. "suggest": {
  4567. "ext-event": "For better performance. "
  4568. },
  4569. "type": "library",
  4570. "autoload": {
  4571. "psr-4": {
  4572. "Workerman\\": "./"
  4573. }
  4574. },
  4575. "notification-url": "https://packagist.org/downloads/",
  4576. "license": [
  4577. "MIT"
  4578. ],
  4579. "authors": [
  4580. {
  4581. "name": "walkor",
  4582. "email": "walkor@workerman.net",
  4583. "homepage": "http://www.workerman.net",
  4584. "role": "Developer"
  4585. }
  4586. ],
  4587. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  4588. "homepage": "http://www.workerman.net",
  4589. "keywords": [
  4590. "asynchronous",
  4591. "event-loop"
  4592. ],
  4593. "support": {
  4594. "email": "walkor@workerman.net",
  4595. "forum": "http://wenda.workerman.net/",
  4596. "issues": "https://github.com/walkor/workerman/issues",
  4597. "source": "https://github.com/walkor/workerman",
  4598. "wiki": "http://doc.workerman.net/"
  4599. },
  4600. "funding": [
  4601. {
  4602. "url": "https://opencollective.com/workerman",
  4603. "type": "open_collective"
  4604. },
  4605. {
  4606. "url": "https://www.patreon.com/walkor",
  4607. "type": "patreon"
  4608. }
  4609. ],
  4610. "time": "2024-07-04T08:26:39+00:00"
  4611. },
  4612. {
  4613. "name": "yzh52521/easyhttp",
  4614. "version": "v1.1.3",
  4615. "source": {
  4616. "type": "git",
  4617. "url": "https://github.com/yuanzhihai/easyhttp.git",
  4618. "reference": "02bcf47eaf723520fa3905d0e6f1852168fe646c"
  4619. },
  4620. "dist": {
  4621. "type": "zip",
  4622. "url": "https://api.github.com/repos/yuanzhihai/easyhttp/zipball/02bcf47eaf723520fa3905d0e6f1852168fe646c",
  4623. "reference": "02bcf47eaf723520fa3905d0e6f1852168fe646c",
  4624. "shasum": ""
  4625. },
  4626. "require": {
  4627. "guzzlehttp/guzzle": "^6.0|^7.0",
  4628. "php": ">=7.2.5",
  4629. "psr/log": "^1.0|^2.0|^3.0"
  4630. },
  4631. "type": "library",
  4632. "autoload": {
  4633. "psr-4": {
  4634. "yzh52521\\EasyHttp\\": "src/"
  4635. }
  4636. },
  4637. "notification-url": "https://packagist.org/downloads/",
  4638. "license": [
  4639. "MIT"
  4640. ],
  4641. "authors": [
  4642. {
  4643. "name": "yzh52521",
  4644. "email": "396751927@qq.com"
  4645. }
  4646. ],
  4647. "description": "EasyHttp 是一个轻量级、语义化、对IDE友好的HTTP客户端,支持常见的HTTP请求、异步请求和并发请求,让你可以快速地使用 HTTP 请求与其他 Web 应用进行通信。",
  4648. "homepage": "https://github.com/yzh52521/easyhttp",
  4649. "keywords": [
  4650. "EasyHttp",
  4651. "curl",
  4652. "easy-http",
  4653. "http",
  4654. "php",
  4655. "php-http",
  4656. "phphttp"
  4657. ],
  4658. "support": {
  4659. "issues": "https://github.com/yuanzhihai/easyhttp/issues",
  4660. "source": "https://github.com/yuanzhihai/easyhttp/tree/v1.1.3"
  4661. },
  4662. "time": "2023-11-14T05:49:02+00:00"
  4663. }
  4664. ],
  4665. "packages-dev": [
  4666. {
  4667. "name": "doctrine/instantiator",
  4668. "version": "2.0.0",
  4669. "source": {
  4670. "type": "git",
  4671. "url": "https://github.com/doctrine/instantiator.git",
  4672. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  4673. },
  4674. "dist": {
  4675. "type": "zip",
  4676. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  4677. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  4678. "shasum": ""
  4679. },
  4680. "require": {
  4681. "php": "^8.1"
  4682. },
  4683. "require-dev": {
  4684. "doctrine/coding-standard": "^11",
  4685. "ext-pdo": "*",
  4686. "ext-phar": "*",
  4687. "phpbench/phpbench": "^1.2",
  4688. "phpstan/phpstan": "^1.9.4",
  4689. "phpstan/phpstan-phpunit": "^1.3",
  4690. "phpunit/phpunit": "^9.5.27",
  4691. "vimeo/psalm": "^5.4"
  4692. },
  4693. "type": "library",
  4694. "autoload": {
  4695. "psr-4": {
  4696. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  4697. }
  4698. },
  4699. "notification-url": "https://packagist.org/downloads/",
  4700. "license": [
  4701. "MIT"
  4702. ],
  4703. "authors": [
  4704. {
  4705. "name": "Marco Pivetta",
  4706. "email": "ocramius@gmail.com",
  4707. "homepage": "https://ocramius.github.io/"
  4708. }
  4709. ],
  4710. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  4711. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  4712. "keywords": [
  4713. "constructor",
  4714. "instantiate"
  4715. ],
  4716. "support": {
  4717. "issues": "https://github.com/doctrine/instantiator/issues",
  4718. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  4719. },
  4720. "funding": [
  4721. {
  4722. "url": "https://www.doctrine-project.org/sponsorship.html",
  4723. "type": "custom"
  4724. },
  4725. {
  4726. "url": "https://www.patreon.com/phpdoctrine",
  4727. "type": "patreon"
  4728. },
  4729. {
  4730. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  4731. "type": "tidelift"
  4732. }
  4733. ],
  4734. "time": "2022-12-30T00:23:10+00:00"
  4735. },
  4736. {
  4737. "name": "myclabs/deep-copy",
  4738. "version": "1.12.0",
  4739. "source": {
  4740. "type": "git",
  4741. "url": "https://github.com/myclabs/DeepCopy.git",
  4742. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  4743. },
  4744. "dist": {
  4745. "type": "zip",
  4746. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  4747. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  4748. "shasum": ""
  4749. },
  4750. "require": {
  4751. "php": "^7.1 || ^8.0"
  4752. },
  4753. "conflict": {
  4754. "doctrine/collections": "<1.6.8",
  4755. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  4756. },
  4757. "require-dev": {
  4758. "doctrine/collections": "^1.6.8",
  4759. "doctrine/common": "^2.13.3 || ^3.2.2",
  4760. "phpspec/prophecy": "^1.10",
  4761. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  4762. },
  4763. "type": "library",
  4764. "autoload": {
  4765. "files": [
  4766. "src/DeepCopy/deep_copy.php"
  4767. ],
  4768. "psr-4": {
  4769. "DeepCopy\\": "src/DeepCopy/"
  4770. }
  4771. },
  4772. "notification-url": "https://packagist.org/downloads/",
  4773. "license": [
  4774. "MIT"
  4775. ],
  4776. "description": "Create deep copies (clones) of your objects",
  4777. "keywords": [
  4778. "clone",
  4779. "copy",
  4780. "duplicate",
  4781. "object",
  4782. "object graph"
  4783. ],
  4784. "support": {
  4785. "issues": "https://github.com/myclabs/DeepCopy/issues",
  4786. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  4787. },
  4788. "funding": [
  4789. {
  4790. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  4791. "type": "tidelift"
  4792. }
  4793. ],
  4794. "time": "2024-06-12T14:39:25+00:00"
  4795. },
  4796. {
  4797. "name": "nikic/php-parser",
  4798. "version": "v5.1.0",
  4799. "source": {
  4800. "type": "git",
  4801. "url": "https://github.com/nikic/PHP-Parser.git",
  4802. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1"
  4803. },
  4804. "dist": {
  4805. "type": "zip",
  4806. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  4807. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  4808. "shasum": ""
  4809. },
  4810. "require": {
  4811. "ext-ctype": "*",
  4812. "ext-json": "*",
  4813. "ext-tokenizer": "*",
  4814. "php": ">=7.4"
  4815. },
  4816. "require-dev": {
  4817. "ircmaxell/php-yacc": "^0.0.7",
  4818. "phpunit/phpunit": "^9.0"
  4819. },
  4820. "bin": [
  4821. "bin/php-parse"
  4822. ],
  4823. "type": "library",
  4824. "extra": {
  4825. "branch-alias": {
  4826. "dev-master": "5.0-dev"
  4827. }
  4828. },
  4829. "autoload": {
  4830. "psr-4": {
  4831. "PhpParser\\": "lib/PhpParser"
  4832. }
  4833. },
  4834. "notification-url": "https://packagist.org/downloads/",
  4835. "license": [
  4836. "BSD-3-Clause"
  4837. ],
  4838. "authors": [
  4839. {
  4840. "name": "Nikita Popov"
  4841. }
  4842. ],
  4843. "description": "A PHP parser written in PHP",
  4844. "keywords": [
  4845. "parser",
  4846. "php"
  4847. ],
  4848. "support": {
  4849. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4850. "source": "https://github.com/nikic/PHP-Parser/tree/v5.1.0"
  4851. },
  4852. "time": "2024-07-01T20:03:41+00:00"
  4853. },
  4854. {
  4855. "name": "phar-io/manifest",
  4856. "version": "2.0.4",
  4857. "source": {
  4858. "type": "git",
  4859. "url": "https://github.com/phar-io/manifest.git",
  4860. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  4861. },
  4862. "dist": {
  4863. "type": "zip",
  4864. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  4865. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  4866. "shasum": ""
  4867. },
  4868. "require": {
  4869. "ext-dom": "*",
  4870. "ext-libxml": "*",
  4871. "ext-phar": "*",
  4872. "ext-xmlwriter": "*",
  4873. "phar-io/version": "^3.0.1",
  4874. "php": "^7.2 || ^8.0"
  4875. },
  4876. "type": "library",
  4877. "extra": {
  4878. "branch-alias": {
  4879. "dev-master": "2.0.x-dev"
  4880. }
  4881. },
  4882. "autoload": {
  4883. "classmap": [
  4884. "src/"
  4885. ]
  4886. },
  4887. "notification-url": "https://packagist.org/downloads/",
  4888. "license": [
  4889. "BSD-3-Clause"
  4890. ],
  4891. "authors": [
  4892. {
  4893. "name": "Arne Blankerts",
  4894. "email": "arne@blankerts.de",
  4895. "role": "Developer"
  4896. },
  4897. {
  4898. "name": "Sebastian Heuer",
  4899. "email": "sebastian@phpeople.de",
  4900. "role": "Developer"
  4901. },
  4902. {
  4903. "name": "Sebastian Bergmann",
  4904. "email": "sebastian@phpunit.de",
  4905. "role": "Developer"
  4906. }
  4907. ],
  4908. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  4909. "support": {
  4910. "issues": "https://github.com/phar-io/manifest/issues",
  4911. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  4912. },
  4913. "funding": [
  4914. {
  4915. "url": "https://github.com/theseer",
  4916. "type": "github"
  4917. }
  4918. ],
  4919. "time": "2024-03-03T12:33:53+00:00"
  4920. },
  4921. {
  4922. "name": "phar-io/version",
  4923. "version": "3.2.1",
  4924. "source": {
  4925. "type": "git",
  4926. "url": "https://github.com/phar-io/version.git",
  4927. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  4928. },
  4929. "dist": {
  4930. "type": "zip",
  4931. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  4932. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  4933. "shasum": ""
  4934. },
  4935. "require": {
  4936. "php": "^7.2 || ^8.0"
  4937. },
  4938. "type": "library",
  4939. "autoload": {
  4940. "classmap": [
  4941. "src/"
  4942. ]
  4943. },
  4944. "notification-url": "https://packagist.org/downloads/",
  4945. "license": [
  4946. "BSD-3-Clause"
  4947. ],
  4948. "authors": [
  4949. {
  4950. "name": "Arne Blankerts",
  4951. "email": "arne@blankerts.de",
  4952. "role": "Developer"
  4953. },
  4954. {
  4955. "name": "Sebastian Heuer",
  4956. "email": "sebastian@phpeople.de",
  4957. "role": "Developer"
  4958. },
  4959. {
  4960. "name": "Sebastian Bergmann",
  4961. "email": "sebastian@phpunit.de",
  4962. "role": "Developer"
  4963. }
  4964. ],
  4965. "description": "Library for handling version information and constraints",
  4966. "support": {
  4967. "issues": "https://github.com/phar-io/version/issues",
  4968. "source": "https://github.com/phar-io/version/tree/3.2.1"
  4969. },
  4970. "time": "2022-02-21T01:04:05+00:00"
  4971. },
  4972. {
  4973. "name": "phpunit/php-code-coverage",
  4974. "version": "9.2.31",
  4975. "source": {
  4976. "type": "git",
  4977. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4978. "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965"
  4979. },
  4980. "dist": {
  4981. "type": "zip",
  4982. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/48c34b5d8d983006bd2adc2d0de92963b9155965",
  4983. "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965",
  4984. "shasum": ""
  4985. },
  4986. "require": {
  4987. "ext-dom": "*",
  4988. "ext-libxml": "*",
  4989. "ext-xmlwriter": "*",
  4990. "nikic/php-parser": "^4.18 || ^5.0",
  4991. "php": ">=7.3",
  4992. "phpunit/php-file-iterator": "^3.0.3",
  4993. "phpunit/php-text-template": "^2.0.2",
  4994. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  4995. "sebastian/complexity": "^2.0",
  4996. "sebastian/environment": "^5.1.2",
  4997. "sebastian/lines-of-code": "^1.0.3",
  4998. "sebastian/version": "^3.0.1",
  4999. "theseer/tokenizer": "^1.2.0"
  5000. },
  5001. "require-dev": {
  5002. "phpunit/phpunit": "^9.3"
  5003. },
  5004. "suggest": {
  5005. "ext-pcov": "PHP extension that provides line coverage",
  5006. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  5007. },
  5008. "type": "library",
  5009. "extra": {
  5010. "branch-alias": {
  5011. "dev-master": "9.2-dev"
  5012. }
  5013. },
  5014. "autoload": {
  5015. "classmap": [
  5016. "src/"
  5017. ]
  5018. },
  5019. "notification-url": "https://packagist.org/downloads/",
  5020. "license": [
  5021. "BSD-3-Clause"
  5022. ],
  5023. "authors": [
  5024. {
  5025. "name": "Sebastian Bergmann",
  5026. "email": "sebastian@phpunit.de",
  5027. "role": "lead"
  5028. }
  5029. ],
  5030. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5031. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5032. "keywords": [
  5033. "coverage",
  5034. "testing",
  5035. "xunit"
  5036. ],
  5037. "support": {
  5038. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  5039. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  5040. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.31"
  5041. },
  5042. "funding": [
  5043. {
  5044. "url": "https://github.com/sebastianbergmann",
  5045. "type": "github"
  5046. }
  5047. ],
  5048. "time": "2024-03-02T06:37:42+00:00"
  5049. },
  5050. {
  5051. "name": "phpunit/php-file-iterator",
  5052. "version": "3.0.6",
  5053. "source": {
  5054. "type": "git",
  5055. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  5056. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  5057. },
  5058. "dist": {
  5059. "type": "zip",
  5060. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  5061. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  5062. "shasum": ""
  5063. },
  5064. "require": {
  5065. "php": ">=7.3"
  5066. },
  5067. "require-dev": {
  5068. "phpunit/phpunit": "^9.3"
  5069. },
  5070. "type": "library",
  5071. "extra": {
  5072. "branch-alias": {
  5073. "dev-master": "3.0-dev"
  5074. }
  5075. },
  5076. "autoload": {
  5077. "classmap": [
  5078. "src/"
  5079. ]
  5080. },
  5081. "notification-url": "https://packagist.org/downloads/",
  5082. "license": [
  5083. "BSD-3-Clause"
  5084. ],
  5085. "authors": [
  5086. {
  5087. "name": "Sebastian Bergmann",
  5088. "email": "sebastian@phpunit.de",
  5089. "role": "lead"
  5090. }
  5091. ],
  5092. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5093. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5094. "keywords": [
  5095. "filesystem",
  5096. "iterator"
  5097. ],
  5098. "support": {
  5099. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  5100. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  5101. },
  5102. "funding": [
  5103. {
  5104. "url": "https://github.com/sebastianbergmann",
  5105. "type": "github"
  5106. }
  5107. ],
  5108. "time": "2021-12-02T12:48:52+00:00"
  5109. },
  5110. {
  5111. "name": "phpunit/php-invoker",
  5112. "version": "3.1.1",
  5113. "source": {
  5114. "type": "git",
  5115. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  5116. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  5117. },
  5118. "dist": {
  5119. "type": "zip",
  5120. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  5121. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  5122. "shasum": ""
  5123. },
  5124. "require": {
  5125. "php": ">=7.3"
  5126. },
  5127. "require-dev": {
  5128. "ext-pcntl": "*",
  5129. "phpunit/phpunit": "^9.3"
  5130. },
  5131. "suggest": {
  5132. "ext-pcntl": "*"
  5133. },
  5134. "type": "library",
  5135. "extra": {
  5136. "branch-alias": {
  5137. "dev-master": "3.1-dev"
  5138. }
  5139. },
  5140. "autoload": {
  5141. "classmap": [
  5142. "src/"
  5143. ]
  5144. },
  5145. "notification-url": "https://packagist.org/downloads/",
  5146. "license": [
  5147. "BSD-3-Clause"
  5148. ],
  5149. "authors": [
  5150. {
  5151. "name": "Sebastian Bergmann",
  5152. "email": "sebastian@phpunit.de",
  5153. "role": "lead"
  5154. }
  5155. ],
  5156. "description": "Invoke callables with a timeout",
  5157. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  5158. "keywords": [
  5159. "process"
  5160. ],
  5161. "support": {
  5162. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  5163. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  5164. },
  5165. "funding": [
  5166. {
  5167. "url": "https://github.com/sebastianbergmann",
  5168. "type": "github"
  5169. }
  5170. ],
  5171. "time": "2020-09-28T05:58:55+00:00"
  5172. },
  5173. {
  5174. "name": "phpunit/php-text-template",
  5175. "version": "2.0.4",
  5176. "source": {
  5177. "type": "git",
  5178. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  5179. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  5180. },
  5181. "dist": {
  5182. "type": "zip",
  5183. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  5184. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  5185. "shasum": ""
  5186. },
  5187. "require": {
  5188. "php": ">=7.3"
  5189. },
  5190. "require-dev": {
  5191. "phpunit/phpunit": "^9.3"
  5192. },
  5193. "type": "library",
  5194. "extra": {
  5195. "branch-alias": {
  5196. "dev-master": "2.0-dev"
  5197. }
  5198. },
  5199. "autoload": {
  5200. "classmap": [
  5201. "src/"
  5202. ]
  5203. },
  5204. "notification-url": "https://packagist.org/downloads/",
  5205. "license": [
  5206. "BSD-3-Clause"
  5207. ],
  5208. "authors": [
  5209. {
  5210. "name": "Sebastian Bergmann",
  5211. "email": "sebastian@phpunit.de",
  5212. "role": "lead"
  5213. }
  5214. ],
  5215. "description": "Simple template engine.",
  5216. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  5217. "keywords": [
  5218. "template"
  5219. ],
  5220. "support": {
  5221. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  5222. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  5223. },
  5224. "funding": [
  5225. {
  5226. "url": "https://github.com/sebastianbergmann",
  5227. "type": "github"
  5228. }
  5229. ],
  5230. "time": "2020-10-26T05:33:50+00:00"
  5231. },
  5232. {
  5233. "name": "phpunit/php-timer",
  5234. "version": "5.0.3",
  5235. "source": {
  5236. "type": "git",
  5237. "url": "https://github.com/sebastianbergmann/php-timer.git",
  5238. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  5239. },
  5240. "dist": {
  5241. "type": "zip",
  5242. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  5243. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  5244. "shasum": ""
  5245. },
  5246. "require": {
  5247. "php": ">=7.3"
  5248. },
  5249. "require-dev": {
  5250. "phpunit/phpunit": "^9.3"
  5251. },
  5252. "type": "library",
  5253. "extra": {
  5254. "branch-alias": {
  5255. "dev-master": "5.0-dev"
  5256. }
  5257. },
  5258. "autoload": {
  5259. "classmap": [
  5260. "src/"
  5261. ]
  5262. },
  5263. "notification-url": "https://packagist.org/downloads/",
  5264. "license": [
  5265. "BSD-3-Clause"
  5266. ],
  5267. "authors": [
  5268. {
  5269. "name": "Sebastian Bergmann",
  5270. "email": "sebastian@phpunit.de",
  5271. "role": "lead"
  5272. }
  5273. ],
  5274. "description": "Utility class for timing",
  5275. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  5276. "keywords": [
  5277. "timer"
  5278. ],
  5279. "support": {
  5280. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  5281. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  5282. },
  5283. "funding": [
  5284. {
  5285. "url": "https://github.com/sebastianbergmann",
  5286. "type": "github"
  5287. }
  5288. ],
  5289. "time": "2020-10-26T13:16:10+00:00"
  5290. },
  5291. {
  5292. "name": "phpunit/phpunit",
  5293. "version": "9.6.8",
  5294. "source": {
  5295. "type": "git",
  5296. "url": "https://github.com/sebastianbergmann/phpunit.git",
  5297. "reference": "17d621b3aff84d0c8b62539e269e87d8d5baa76e"
  5298. },
  5299. "dist": {
  5300. "type": "zip",
  5301. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/17d621b3aff84d0c8b62539e269e87d8d5baa76e",
  5302. "reference": "17d621b3aff84d0c8b62539e269e87d8d5baa76e",
  5303. "shasum": ""
  5304. },
  5305. "require": {
  5306. "doctrine/instantiator": "^1.3.1 || ^2",
  5307. "ext-dom": "*",
  5308. "ext-json": "*",
  5309. "ext-libxml": "*",
  5310. "ext-mbstring": "*",
  5311. "ext-xml": "*",
  5312. "ext-xmlwriter": "*",
  5313. "myclabs/deep-copy": "^1.10.1",
  5314. "phar-io/manifest": "^2.0.3",
  5315. "phar-io/version": "^3.0.2",
  5316. "php": ">=7.3",
  5317. "phpunit/php-code-coverage": "^9.2.13",
  5318. "phpunit/php-file-iterator": "^3.0.5",
  5319. "phpunit/php-invoker": "^3.1.1",
  5320. "phpunit/php-text-template": "^2.0.3",
  5321. "phpunit/php-timer": "^5.0.2",
  5322. "sebastian/cli-parser": "^1.0.1",
  5323. "sebastian/code-unit": "^1.0.6",
  5324. "sebastian/comparator": "^4.0.8",
  5325. "sebastian/diff": "^4.0.3",
  5326. "sebastian/environment": "^5.1.3",
  5327. "sebastian/exporter": "^4.0.5",
  5328. "sebastian/global-state": "^5.0.1",
  5329. "sebastian/object-enumerator": "^4.0.3",
  5330. "sebastian/resource-operations": "^3.0.3",
  5331. "sebastian/type": "^3.2",
  5332. "sebastian/version": "^3.0.2"
  5333. },
  5334. "suggest": {
  5335. "ext-soap": "To be able to generate mocks based on WSDL files",
  5336. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  5337. },
  5338. "bin": [
  5339. "phpunit"
  5340. ],
  5341. "type": "library",
  5342. "extra": {
  5343. "branch-alias": {
  5344. "dev-master": "9.6-dev"
  5345. }
  5346. },
  5347. "autoload": {
  5348. "files": [
  5349. "src/Framework/Assert/Functions.php"
  5350. ],
  5351. "classmap": [
  5352. "src/"
  5353. ]
  5354. },
  5355. "notification-url": "https://packagist.org/downloads/",
  5356. "license": [
  5357. "BSD-3-Clause"
  5358. ],
  5359. "authors": [
  5360. {
  5361. "name": "Sebastian Bergmann",
  5362. "email": "sebastian@phpunit.de",
  5363. "role": "lead"
  5364. }
  5365. ],
  5366. "description": "The PHP Unit Testing framework.",
  5367. "homepage": "https://phpunit.de/",
  5368. "keywords": [
  5369. "phpunit",
  5370. "testing",
  5371. "xunit"
  5372. ],
  5373. "support": {
  5374. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  5375. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  5376. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.8"
  5377. },
  5378. "funding": [
  5379. {
  5380. "url": "https://phpunit.de/sponsors.html",
  5381. "type": "custom"
  5382. },
  5383. {
  5384. "url": "https://github.com/sebastianbergmann",
  5385. "type": "github"
  5386. },
  5387. {
  5388. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  5389. "type": "tidelift"
  5390. }
  5391. ],
  5392. "time": "2023-05-11T05:14:45+00:00"
  5393. },
  5394. {
  5395. "name": "sebastian/cli-parser",
  5396. "version": "1.0.2",
  5397. "source": {
  5398. "type": "git",
  5399. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  5400. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  5401. },
  5402. "dist": {
  5403. "type": "zip",
  5404. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  5405. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  5406. "shasum": ""
  5407. },
  5408. "require": {
  5409. "php": ">=7.3"
  5410. },
  5411. "require-dev": {
  5412. "phpunit/phpunit": "^9.3"
  5413. },
  5414. "type": "library",
  5415. "extra": {
  5416. "branch-alias": {
  5417. "dev-master": "1.0-dev"
  5418. }
  5419. },
  5420. "autoload": {
  5421. "classmap": [
  5422. "src/"
  5423. ]
  5424. },
  5425. "notification-url": "https://packagist.org/downloads/",
  5426. "license": [
  5427. "BSD-3-Clause"
  5428. ],
  5429. "authors": [
  5430. {
  5431. "name": "Sebastian Bergmann",
  5432. "email": "sebastian@phpunit.de",
  5433. "role": "lead"
  5434. }
  5435. ],
  5436. "description": "Library for parsing CLI options",
  5437. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  5438. "support": {
  5439. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  5440. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  5441. },
  5442. "funding": [
  5443. {
  5444. "url": "https://github.com/sebastianbergmann",
  5445. "type": "github"
  5446. }
  5447. ],
  5448. "time": "2024-03-02T06:27:43+00:00"
  5449. },
  5450. {
  5451. "name": "sebastian/code-unit",
  5452. "version": "1.0.8",
  5453. "source": {
  5454. "type": "git",
  5455. "url": "https://github.com/sebastianbergmann/code-unit.git",
  5456. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  5457. },
  5458. "dist": {
  5459. "type": "zip",
  5460. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  5461. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  5462. "shasum": ""
  5463. },
  5464. "require": {
  5465. "php": ">=7.3"
  5466. },
  5467. "require-dev": {
  5468. "phpunit/phpunit": "^9.3"
  5469. },
  5470. "type": "library",
  5471. "extra": {
  5472. "branch-alias": {
  5473. "dev-master": "1.0-dev"
  5474. }
  5475. },
  5476. "autoload": {
  5477. "classmap": [
  5478. "src/"
  5479. ]
  5480. },
  5481. "notification-url": "https://packagist.org/downloads/",
  5482. "license": [
  5483. "BSD-3-Clause"
  5484. ],
  5485. "authors": [
  5486. {
  5487. "name": "Sebastian Bergmann",
  5488. "email": "sebastian@phpunit.de",
  5489. "role": "lead"
  5490. }
  5491. ],
  5492. "description": "Collection of value objects that represent the PHP code units",
  5493. "homepage": "https://github.com/sebastianbergmann/code-unit",
  5494. "support": {
  5495. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  5496. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  5497. },
  5498. "funding": [
  5499. {
  5500. "url": "https://github.com/sebastianbergmann",
  5501. "type": "github"
  5502. }
  5503. ],
  5504. "time": "2020-10-26T13:08:54+00:00"
  5505. },
  5506. {
  5507. "name": "sebastian/code-unit-reverse-lookup",
  5508. "version": "2.0.3",
  5509. "source": {
  5510. "type": "git",
  5511. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5512. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  5513. },
  5514. "dist": {
  5515. "type": "zip",
  5516. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  5517. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  5518. "shasum": ""
  5519. },
  5520. "require": {
  5521. "php": ">=7.3"
  5522. },
  5523. "require-dev": {
  5524. "phpunit/phpunit": "^9.3"
  5525. },
  5526. "type": "library",
  5527. "extra": {
  5528. "branch-alias": {
  5529. "dev-master": "2.0-dev"
  5530. }
  5531. },
  5532. "autoload": {
  5533. "classmap": [
  5534. "src/"
  5535. ]
  5536. },
  5537. "notification-url": "https://packagist.org/downloads/",
  5538. "license": [
  5539. "BSD-3-Clause"
  5540. ],
  5541. "authors": [
  5542. {
  5543. "name": "Sebastian Bergmann",
  5544. "email": "sebastian@phpunit.de"
  5545. }
  5546. ],
  5547. "description": "Looks up which function or method a line of code belongs to",
  5548. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  5549. "support": {
  5550. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  5551. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  5552. },
  5553. "funding": [
  5554. {
  5555. "url": "https://github.com/sebastianbergmann",
  5556. "type": "github"
  5557. }
  5558. ],
  5559. "time": "2020-09-28T05:30:19+00:00"
  5560. },
  5561. {
  5562. "name": "sebastian/comparator",
  5563. "version": "4.0.8",
  5564. "source": {
  5565. "type": "git",
  5566. "url": "https://github.com/sebastianbergmann/comparator.git",
  5567. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  5568. },
  5569. "dist": {
  5570. "type": "zip",
  5571. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  5572. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  5573. "shasum": ""
  5574. },
  5575. "require": {
  5576. "php": ">=7.3",
  5577. "sebastian/diff": "^4.0",
  5578. "sebastian/exporter": "^4.0"
  5579. },
  5580. "require-dev": {
  5581. "phpunit/phpunit": "^9.3"
  5582. },
  5583. "type": "library",
  5584. "extra": {
  5585. "branch-alias": {
  5586. "dev-master": "4.0-dev"
  5587. }
  5588. },
  5589. "autoload": {
  5590. "classmap": [
  5591. "src/"
  5592. ]
  5593. },
  5594. "notification-url": "https://packagist.org/downloads/",
  5595. "license": [
  5596. "BSD-3-Clause"
  5597. ],
  5598. "authors": [
  5599. {
  5600. "name": "Sebastian Bergmann",
  5601. "email": "sebastian@phpunit.de"
  5602. },
  5603. {
  5604. "name": "Jeff Welch",
  5605. "email": "whatthejeff@gmail.com"
  5606. },
  5607. {
  5608. "name": "Volker Dusch",
  5609. "email": "github@wallbash.com"
  5610. },
  5611. {
  5612. "name": "Bernhard Schussek",
  5613. "email": "bschussek@2bepublished.at"
  5614. }
  5615. ],
  5616. "description": "Provides the functionality to compare PHP values for equality",
  5617. "homepage": "https://github.com/sebastianbergmann/comparator",
  5618. "keywords": [
  5619. "comparator",
  5620. "compare",
  5621. "equality"
  5622. ],
  5623. "support": {
  5624. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  5625. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  5626. },
  5627. "funding": [
  5628. {
  5629. "url": "https://github.com/sebastianbergmann",
  5630. "type": "github"
  5631. }
  5632. ],
  5633. "time": "2022-09-14T12:41:17+00:00"
  5634. },
  5635. {
  5636. "name": "sebastian/complexity",
  5637. "version": "2.0.3",
  5638. "source": {
  5639. "type": "git",
  5640. "url": "https://github.com/sebastianbergmann/complexity.git",
  5641. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  5642. },
  5643. "dist": {
  5644. "type": "zip",
  5645. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  5646. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  5647. "shasum": ""
  5648. },
  5649. "require": {
  5650. "nikic/php-parser": "^4.18 || ^5.0",
  5651. "php": ">=7.3"
  5652. },
  5653. "require-dev": {
  5654. "phpunit/phpunit": "^9.3"
  5655. },
  5656. "type": "library",
  5657. "extra": {
  5658. "branch-alias": {
  5659. "dev-master": "2.0-dev"
  5660. }
  5661. },
  5662. "autoload": {
  5663. "classmap": [
  5664. "src/"
  5665. ]
  5666. },
  5667. "notification-url": "https://packagist.org/downloads/",
  5668. "license": [
  5669. "BSD-3-Clause"
  5670. ],
  5671. "authors": [
  5672. {
  5673. "name": "Sebastian Bergmann",
  5674. "email": "sebastian@phpunit.de",
  5675. "role": "lead"
  5676. }
  5677. ],
  5678. "description": "Library for calculating the complexity of PHP code units",
  5679. "homepage": "https://github.com/sebastianbergmann/complexity",
  5680. "support": {
  5681. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  5682. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  5683. },
  5684. "funding": [
  5685. {
  5686. "url": "https://github.com/sebastianbergmann",
  5687. "type": "github"
  5688. }
  5689. ],
  5690. "time": "2023-12-22T06:19:30+00:00"
  5691. },
  5692. {
  5693. "name": "sebastian/diff",
  5694. "version": "4.0.6",
  5695. "source": {
  5696. "type": "git",
  5697. "url": "https://github.com/sebastianbergmann/diff.git",
  5698. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  5699. },
  5700. "dist": {
  5701. "type": "zip",
  5702. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  5703. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  5704. "shasum": ""
  5705. },
  5706. "require": {
  5707. "php": ">=7.3"
  5708. },
  5709. "require-dev": {
  5710. "phpunit/phpunit": "^9.3",
  5711. "symfony/process": "^4.2 || ^5"
  5712. },
  5713. "type": "library",
  5714. "extra": {
  5715. "branch-alias": {
  5716. "dev-master": "4.0-dev"
  5717. }
  5718. },
  5719. "autoload": {
  5720. "classmap": [
  5721. "src/"
  5722. ]
  5723. },
  5724. "notification-url": "https://packagist.org/downloads/",
  5725. "license": [
  5726. "BSD-3-Clause"
  5727. ],
  5728. "authors": [
  5729. {
  5730. "name": "Sebastian Bergmann",
  5731. "email": "sebastian@phpunit.de"
  5732. },
  5733. {
  5734. "name": "Kore Nordmann",
  5735. "email": "mail@kore-nordmann.de"
  5736. }
  5737. ],
  5738. "description": "Diff implementation",
  5739. "homepage": "https://github.com/sebastianbergmann/diff",
  5740. "keywords": [
  5741. "diff",
  5742. "udiff",
  5743. "unidiff",
  5744. "unified diff"
  5745. ],
  5746. "support": {
  5747. "issues": "https://github.com/sebastianbergmann/diff/issues",
  5748. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  5749. },
  5750. "funding": [
  5751. {
  5752. "url": "https://github.com/sebastianbergmann",
  5753. "type": "github"
  5754. }
  5755. ],
  5756. "time": "2024-03-02T06:30:58+00:00"
  5757. },
  5758. {
  5759. "name": "sebastian/environment",
  5760. "version": "5.1.5",
  5761. "source": {
  5762. "type": "git",
  5763. "url": "https://github.com/sebastianbergmann/environment.git",
  5764. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  5765. },
  5766. "dist": {
  5767. "type": "zip",
  5768. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  5769. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  5770. "shasum": ""
  5771. },
  5772. "require": {
  5773. "php": ">=7.3"
  5774. },
  5775. "require-dev": {
  5776. "phpunit/phpunit": "^9.3"
  5777. },
  5778. "suggest": {
  5779. "ext-posix": "*"
  5780. },
  5781. "type": "library",
  5782. "extra": {
  5783. "branch-alias": {
  5784. "dev-master": "5.1-dev"
  5785. }
  5786. },
  5787. "autoload": {
  5788. "classmap": [
  5789. "src/"
  5790. ]
  5791. },
  5792. "notification-url": "https://packagist.org/downloads/",
  5793. "license": [
  5794. "BSD-3-Clause"
  5795. ],
  5796. "authors": [
  5797. {
  5798. "name": "Sebastian Bergmann",
  5799. "email": "sebastian@phpunit.de"
  5800. }
  5801. ],
  5802. "description": "Provides functionality to handle HHVM/PHP environments",
  5803. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5804. "keywords": [
  5805. "Xdebug",
  5806. "environment",
  5807. "hhvm"
  5808. ],
  5809. "support": {
  5810. "issues": "https://github.com/sebastianbergmann/environment/issues",
  5811. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  5812. },
  5813. "funding": [
  5814. {
  5815. "url": "https://github.com/sebastianbergmann",
  5816. "type": "github"
  5817. }
  5818. ],
  5819. "time": "2023-02-03T06:03:51+00:00"
  5820. },
  5821. {
  5822. "name": "sebastian/exporter",
  5823. "version": "4.0.6",
  5824. "source": {
  5825. "type": "git",
  5826. "url": "https://github.com/sebastianbergmann/exporter.git",
  5827. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  5828. },
  5829. "dist": {
  5830. "type": "zip",
  5831. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  5832. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  5833. "shasum": ""
  5834. },
  5835. "require": {
  5836. "php": ">=7.3",
  5837. "sebastian/recursion-context": "^4.0"
  5838. },
  5839. "require-dev": {
  5840. "ext-mbstring": "*",
  5841. "phpunit/phpunit": "^9.3"
  5842. },
  5843. "type": "library",
  5844. "extra": {
  5845. "branch-alias": {
  5846. "dev-master": "4.0-dev"
  5847. }
  5848. },
  5849. "autoload": {
  5850. "classmap": [
  5851. "src/"
  5852. ]
  5853. },
  5854. "notification-url": "https://packagist.org/downloads/",
  5855. "license": [
  5856. "BSD-3-Clause"
  5857. ],
  5858. "authors": [
  5859. {
  5860. "name": "Sebastian Bergmann",
  5861. "email": "sebastian@phpunit.de"
  5862. },
  5863. {
  5864. "name": "Jeff Welch",
  5865. "email": "whatthejeff@gmail.com"
  5866. },
  5867. {
  5868. "name": "Volker Dusch",
  5869. "email": "github@wallbash.com"
  5870. },
  5871. {
  5872. "name": "Adam Harvey",
  5873. "email": "aharvey@php.net"
  5874. },
  5875. {
  5876. "name": "Bernhard Schussek",
  5877. "email": "bschussek@gmail.com"
  5878. }
  5879. ],
  5880. "description": "Provides the functionality to export PHP variables for visualization",
  5881. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  5882. "keywords": [
  5883. "export",
  5884. "exporter"
  5885. ],
  5886. "support": {
  5887. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  5888. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  5889. },
  5890. "funding": [
  5891. {
  5892. "url": "https://github.com/sebastianbergmann",
  5893. "type": "github"
  5894. }
  5895. ],
  5896. "time": "2024-03-02T06:33:00+00:00"
  5897. },
  5898. {
  5899. "name": "sebastian/global-state",
  5900. "version": "5.0.7",
  5901. "source": {
  5902. "type": "git",
  5903. "url": "https://github.com/sebastianbergmann/global-state.git",
  5904. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  5905. },
  5906. "dist": {
  5907. "type": "zip",
  5908. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  5909. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  5910. "shasum": ""
  5911. },
  5912. "require": {
  5913. "php": ">=7.3",
  5914. "sebastian/object-reflector": "^2.0",
  5915. "sebastian/recursion-context": "^4.0"
  5916. },
  5917. "require-dev": {
  5918. "ext-dom": "*",
  5919. "phpunit/phpunit": "^9.3"
  5920. },
  5921. "suggest": {
  5922. "ext-uopz": "*"
  5923. },
  5924. "type": "library",
  5925. "extra": {
  5926. "branch-alias": {
  5927. "dev-master": "5.0-dev"
  5928. }
  5929. },
  5930. "autoload": {
  5931. "classmap": [
  5932. "src/"
  5933. ]
  5934. },
  5935. "notification-url": "https://packagist.org/downloads/",
  5936. "license": [
  5937. "BSD-3-Clause"
  5938. ],
  5939. "authors": [
  5940. {
  5941. "name": "Sebastian Bergmann",
  5942. "email": "sebastian@phpunit.de"
  5943. }
  5944. ],
  5945. "description": "Snapshotting of global state",
  5946. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5947. "keywords": [
  5948. "global state"
  5949. ],
  5950. "support": {
  5951. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  5952. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  5953. },
  5954. "funding": [
  5955. {
  5956. "url": "https://github.com/sebastianbergmann",
  5957. "type": "github"
  5958. }
  5959. ],
  5960. "time": "2024-03-02T06:35:11+00:00"
  5961. },
  5962. {
  5963. "name": "sebastian/lines-of-code",
  5964. "version": "1.0.4",
  5965. "source": {
  5966. "type": "git",
  5967. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  5968. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  5969. },
  5970. "dist": {
  5971. "type": "zip",
  5972. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  5973. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  5974. "shasum": ""
  5975. },
  5976. "require": {
  5977. "nikic/php-parser": "^4.18 || ^5.0",
  5978. "php": ">=7.3"
  5979. },
  5980. "require-dev": {
  5981. "phpunit/phpunit": "^9.3"
  5982. },
  5983. "type": "library",
  5984. "extra": {
  5985. "branch-alias": {
  5986. "dev-master": "1.0-dev"
  5987. }
  5988. },
  5989. "autoload": {
  5990. "classmap": [
  5991. "src/"
  5992. ]
  5993. },
  5994. "notification-url": "https://packagist.org/downloads/",
  5995. "license": [
  5996. "BSD-3-Clause"
  5997. ],
  5998. "authors": [
  5999. {
  6000. "name": "Sebastian Bergmann",
  6001. "email": "sebastian@phpunit.de",
  6002. "role": "lead"
  6003. }
  6004. ],
  6005. "description": "Library for counting the lines of code in PHP source code",
  6006. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  6007. "support": {
  6008. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  6009. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  6010. },
  6011. "funding": [
  6012. {
  6013. "url": "https://github.com/sebastianbergmann",
  6014. "type": "github"
  6015. }
  6016. ],
  6017. "time": "2023-12-22T06:20:34+00:00"
  6018. },
  6019. {
  6020. "name": "sebastian/object-enumerator",
  6021. "version": "4.0.4",
  6022. "source": {
  6023. "type": "git",
  6024. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  6025. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  6026. },
  6027. "dist": {
  6028. "type": "zip",
  6029. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  6030. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  6031. "shasum": ""
  6032. },
  6033. "require": {
  6034. "php": ">=7.3",
  6035. "sebastian/object-reflector": "^2.0",
  6036. "sebastian/recursion-context": "^4.0"
  6037. },
  6038. "require-dev": {
  6039. "phpunit/phpunit": "^9.3"
  6040. },
  6041. "type": "library",
  6042. "extra": {
  6043. "branch-alias": {
  6044. "dev-master": "4.0-dev"
  6045. }
  6046. },
  6047. "autoload": {
  6048. "classmap": [
  6049. "src/"
  6050. ]
  6051. },
  6052. "notification-url": "https://packagist.org/downloads/",
  6053. "license": [
  6054. "BSD-3-Clause"
  6055. ],
  6056. "authors": [
  6057. {
  6058. "name": "Sebastian Bergmann",
  6059. "email": "sebastian@phpunit.de"
  6060. }
  6061. ],
  6062. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6063. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6064. "support": {
  6065. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  6066. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  6067. },
  6068. "funding": [
  6069. {
  6070. "url": "https://github.com/sebastianbergmann",
  6071. "type": "github"
  6072. }
  6073. ],
  6074. "time": "2020-10-26T13:12:34+00:00"
  6075. },
  6076. {
  6077. "name": "sebastian/object-reflector",
  6078. "version": "2.0.4",
  6079. "source": {
  6080. "type": "git",
  6081. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  6082. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  6083. },
  6084. "dist": {
  6085. "type": "zip",
  6086. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  6087. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  6088. "shasum": ""
  6089. },
  6090. "require": {
  6091. "php": ">=7.3"
  6092. },
  6093. "require-dev": {
  6094. "phpunit/phpunit": "^9.3"
  6095. },
  6096. "type": "library",
  6097. "extra": {
  6098. "branch-alias": {
  6099. "dev-master": "2.0-dev"
  6100. }
  6101. },
  6102. "autoload": {
  6103. "classmap": [
  6104. "src/"
  6105. ]
  6106. },
  6107. "notification-url": "https://packagist.org/downloads/",
  6108. "license": [
  6109. "BSD-3-Clause"
  6110. ],
  6111. "authors": [
  6112. {
  6113. "name": "Sebastian Bergmann",
  6114. "email": "sebastian@phpunit.de"
  6115. }
  6116. ],
  6117. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6118. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6119. "support": {
  6120. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  6121. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  6122. },
  6123. "funding": [
  6124. {
  6125. "url": "https://github.com/sebastianbergmann",
  6126. "type": "github"
  6127. }
  6128. ],
  6129. "time": "2020-10-26T13:14:26+00:00"
  6130. },
  6131. {
  6132. "name": "sebastian/recursion-context",
  6133. "version": "4.0.5",
  6134. "source": {
  6135. "type": "git",
  6136. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  6137. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  6138. },
  6139. "dist": {
  6140. "type": "zip",
  6141. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  6142. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  6143. "shasum": ""
  6144. },
  6145. "require": {
  6146. "php": ">=7.3"
  6147. },
  6148. "require-dev": {
  6149. "phpunit/phpunit": "^9.3"
  6150. },
  6151. "type": "library",
  6152. "extra": {
  6153. "branch-alias": {
  6154. "dev-master": "4.0-dev"
  6155. }
  6156. },
  6157. "autoload": {
  6158. "classmap": [
  6159. "src/"
  6160. ]
  6161. },
  6162. "notification-url": "https://packagist.org/downloads/",
  6163. "license": [
  6164. "BSD-3-Clause"
  6165. ],
  6166. "authors": [
  6167. {
  6168. "name": "Sebastian Bergmann",
  6169. "email": "sebastian@phpunit.de"
  6170. },
  6171. {
  6172. "name": "Jeff Welch",
  6173. "email": "whatthejeff@gmail.com"
  6174. },
  6175. {
  6176. "name": "Adam Harvey",
  6177. "email": "aharvey@php.net"
  6178. }
  6179. ],
  6180. "description": "Provides functionality to recursively process PHP variables",
  6181. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  6182. "support": {
  6183. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  6184. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  6185. },
  6186. "funding": [
  6187. {
  6188. "url": "https://github.com/sebastianbergmann",
  6189. "type": "github"
  6190. }
  6191. ],
  6192. "time": "2023-02-03T06:07:39+00:00"
  6193. },
  6194. {
  6195. "name": "sebastian/resource-operations",
  6196. "version": "3.0.4",
  6197. "source": {
  6198. "type": "git",
  6199. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  6200. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  6201. },
  6202. "dist": {
  6203. "type": "zip",
  6204. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  6205. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  6206. "shasum": ""
  6207. },
  6208. "require": {
  6209. "php": ">=7.3"
  6210. },
  6211. "require-dev": {
  6212. "phpunit/phpunit": "^9.0"
  6213. },
  6214. "type": "library",
  6215. "extra": {
  6216. "branch-alias": {
  6217. "dev-main": "3.0-dev"
  6218. }
  6219. },
  6220. "autoload": {
  6221. "classmap": [
  6222. "src/"
  6223. ]
  6224. },
  6225. "notification-url": "https://packagist.org/downloads/",
  6226. "license": [
  6227. "BSD-3-Clause"
  6228. ],
  6229. "authors": [
  6230. {
  6231. "name": "Sebastian Bergmann",
  6232. "email": "sebastian@phpunit.de"
  6233. }
  6234. ],
  6235. "description": "Provides a list of PHP built-in functions that operate on resources",
  6236. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  6237. "support": {
  6238. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  6239. },
  6240. "funding": [
  6241. {
  6242. "url": "https://github.com/sebastianbergmann",
  6243. "type": "github"
  6244. }
  6245. ],
  6246. "time": "2024-03-14T16:00:52+00:00"
  6247. },
  6248. {
  6249. "name": "sebastian/type",
  6250. "version": "3.2.1",
  6251. "source": {
  6252. "type": "git",
  6253. "url": "https://github.com/sebastianbergmann/type.git",
  6254. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  6255. },
  6256. "dist": {
  6257. "type": "zip",
  6258. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  6259. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  6260. "shasum": ""
  6261. },
  6262. "require": {
  6263. "php": ">=7.3"
  6264. },
  6265. "require-dev": {
  6266. "phpunit/phpunit": "^9.5"
  6267. },
  6268. "type": "library",
  6269. "extra": {
  6270. "branch-alias": {
  6271. "dev-master": "3.2-dev"
  6272. }
  6273. },
  6274. "autoload": {
  6275. "classmap": [
  6276. "src/"
  6277. ]
  6278. },
  6279. "notification-url": "https://packagist.org/downloads/",
  6280. "license": [
  6281. "BSD-3-Clause"
  6282. ],
  6283. "authors": [
  6284. {
  6285. "name": "Sebastian Bergmann",
  6286. "email": "sebastian@phpunit.de",
  6287. "role": "lead"
  6288. }
  6289. ],
  6290. "description": "Collection of value objects that represent the types of the PHP type system",
  6291. "homepage": "https://github.com/sebastianbergmann/type",
  6292. "support": {
  6293. "issues": "https://github.com/sebastianbergmann/type/issues",
  6294. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  6295. },
  6296. "funding": [
  6297. {
  6298. "url": "https://github.com/sebastianbergmann",
  6299. "type": "github"
  6300. }
  6301. ],
  6302. "time": "2023-02-03T06:13:03+00:00"
  6303. },
  6304. {
  6305. "name": "sebastian/version",
  6306. "version": "3.0.2",
  6307. "source": {
  6308. "type": "git",
  6309. "url": "https://github.com/sebastianbergmann/version.git",
  6310. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  6311. },
  6312. "dist": {
  6313. "type": "zip",
  6314. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  6315. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  6316. "shasum": ""
  6317. },
  6318. "require": {
  6319. "php": ">=7.3"
  6320. },
  6321. "type": "library",
  6322. "extra": {
  6323. "branch-alias": {
  6324. "dev-master": "3.0-dev"
  6325. }
  6326. },
  6327. "autoload": {
  6328. "classmap": [
  6329. "src/"
  6330. ]
  6331. },
  6332. "notification-url": "https://packagist.org/downloads/",
  6333. "license": [
  6334. "BSD-3-Clause"
  6335. ],
  6336. "authors": [
  6337. {
  6338. "name": "Sebastian Bergmann",
  6339. "email": "sebastian@phpunit.de",
  6340. "role": "lead"
  6341. }
  6342. ],
  6343. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6344. "homepage": "https://github.com/sebastianbergmann/version",
  6345. "support": {
  6346. "issues": "https://github.com/sebastianbergmann/version/issues",
  6347. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  6348. },
  6349. "funding": [
  6350. {
  6351. "url": "https://github.com/sebastianbergmann",
  6352. "type": "github"
  6353. }
  6354. ],
  6355. "time": "2020-09-28T06:39:44+00:00"
  6356. },
  6357. {
  6358. "name": "theseer/tokenizer",
  6359. "version": "1.2.3",
  6360. "source": {
  6361. "type": "git",
  6362. "url": "https://github.com/theseer/tokenizer.git",
  6363. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  6364. },
  6365. "dist": {
  6366. "type": "zip",
  6367. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  6368. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  6369. "shasum": ""
  6370. },
  6371. "require": {
  6372. "ext-dom": "*",
  6373. "ext-tokenizer": "*",
  6374. "ext-xmlwriter": "*",
  6375. "php": "^7.2 || ^8.0"
  6376. },
  6377. "type": "library",
  6378. "autoload": {
  6379. "classmap": [
  6380. "src/"
  6381. ]
  6382. },
  6383. "notification-url": "https://packagist.org/downloads/",
  6384. "license": [
  6385. "BSD-3-Clause"
  6386. ],
  6387. "authors": [
  6388. {
  6389. "name": "Arne Blankerts",
  6390. "email": "arne@blankerts.de",
  6391. "role": "Developer"
  6392. }
  6393. ],
  6394. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6395. "support": {
  6396. "issues": "https://github.com/theseer/tokenizer/issues",
  6397. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  6398. },
  6399. "funding": [
  6400. {
  6401. "url": "https://github.com/theseer",
  6402. "type": "github"
  6403. }
  6404. ],
  6405. "time": "2024-03-03T12:36:25+00:00"
  6406. }
  6407. ],
  6408. "aliases": [],
  6409. "minimum-stability": "stable",
  6410. "stability-flags": [],
  6411. "prefer-stable": false,
  6412. "prefer-lowest": false,
  6413. "platform": {
  6414. "php": ">=7.2"
  6415. },
  6416. "platform-dev": [],
  6417. "plugin-api-version": "2.6.0"
  6418. }