composer.lock 393 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997
  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": "44486a9a1b206d281de829f0a81c5ef3",
  8. "packages": [
  9. {
  10. "name": "aws/aws-crt-php",
  11. "version": "v1.2.7",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/awslabs/aws-crt-php.git",
  15. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/d71d9906c7bb63a28295447ba12e74723bd3730e",
  20. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  28. "yoast/phpunit-polyfills": "^1.0"
  29. },
  30. "suggest": {
  31. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "classmap": [
  36. "src/"
  37. ]
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "Apache-2.0"
  42. ],
  43. "authors": [
  44. {
  45. "name": "AWS SDK Common Runtime Team",
  46. "email": "aws-sdk-common-runtime@amazon.com"
  47. }
  48. ],
  49. "description": "AWS Common Runtime for PHP",
  50. "homepage": "https://github.com/awslabs/aws-crt-php",
  51. "keywords": [
  52. "amazon",
  53. "aws",
  54. "crt",
  55. "sdk"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  59. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.7"
  60. },
  61. "time": "2024-10-18T22:15:13+00:00"
  62. },
  63. {
  64. "name": "aws/aws-sdk-php",
  65. "version": "3.333.0",
  66. "source": {
  67. "type": "git",
  68. "url": "https://github.com/aws/aws-sdk-php.git",
  69. "reference": "11bb2709885c9954004620d3648e9355feb92a41"
  70. },
  71. "dist": {
  72. "type": "zip",
  73. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/11bb2709885c9954004620d3648e9355feb92a41",
  74. "reference": "11bb2709885c9954004620d3648e9355feb92a41",
  75. "shasum": ""
  76. },
  77. "require": {
  78. "aws/aws-crt-php": "^1.2.3",
  79. "ext-json": "*",
  80. "ext-pcre": "*",
  81. "ext-simplexml": "*",
  82. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  83. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  84. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  85. "mtdowling/jmespath.php": "^2.6",
  86. "php": ">=7.2.5",
  87. "psr/http-message": "^1.0 || ^2.0"
  88. },
  89. "require-dev": {
  90. "andrewsville/php-token-reflection": "^1.4",
  91. "aws/aws-php-sns-message-validator": "~1.0",
  92. "behat/behat": "~3.0",
  93. "composer/composer": "^1.10.22",
  94. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  95. "doctrine/cache": "~1.4",
  96. "ext-dom": "*",
  97. "ext-openssl": "*",
  98. "ext-pcntl": "*",
  99. "ext-sockets": "*",
  100. "nette/neon": "^2.3",
  101. "paragonie/random_compat": ">= 2",
  102. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  103. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  104. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
  105. "sebastian/comparator": "^1.2.3 || ^4.0",
  106. "yoast/phpunit-polyfills": "^1.0"
  107. },
  108. "suggest": {
  109. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  110. "doctrine/cache": "To use the DoctrineCacheAdapter",
  111. "ext-curl": "To send requests using cURL",
  112. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  113. "ext-sockets": "To use client-side monitoring"
  114. },
  115. "type": "library",
  116. "extra": {
  117. "branch-alias": {
  118. "dev-master": "3.0-dev"
  119. }
  120. },
  121. "autoload": {
  122. "files": [
  123. "src/functions.php"
  124. ],
  125. "psr-4": {
  126. "Aws\\": "src/"
  127. },
  128. "exclude-from-classmap": [
  129. "src/data/"
  130. ]
  131. },
  132. "notification-url": "https://packagist.org/downloads/",
  133. "license": [
  134. "Apache-2.0"
  135. ],
  136. "authors": [
  137. {
  138. "name": "Amazon Web Services",
  139. "homepage": "http://aws.amazon.com"
  140. }
  141. ],
  142. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  143. "homepage": "http://aws.amazon.com/sdkforphp",
  144. "keywords": [
  145. "amazon",
  146. "aws",
  147. "cloud",
  148. "dynamodb",
  149. "ec2",
  150. "glacier",
  151. "s3",
  152. "sdk"
  153. ],
  154. "support": {
  155. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  156. "issues": "https://github.com/aws/aws-sdk-php/issues",
  157. "source": "https://github.com/aws/aws-sdk-php/tree/3.333.0"
  158. },
  159. "time": "2024-12-03T19:06:47+00:00"
  160. },
  161. {
  162. "name": "bacon/bacon-qr-code",
  163. "version": "2.0.8",
  164. "source": {
  165. "type": "git",
  166. "url": "https://github.com/Bacon/BaconQrCode.git",
  167. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  168. },
  169. "dist": {
  170. "type": "zip",
  171. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  172. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  173. "shasum": ""
  174. },
  175. "require": {
  176. "dasprid/enum": "^1.0.3",
  177. "ext-iconv": "*",
  178. "php": "^7.1 || ^8.0"
  179. },
  180. "require-dev": {
  181. "phly/keep-a-changelog": "^2.1",
  182. "phpunit/phpunit": "^7 | ^8 | ^9",
  183. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  184. "squizlabs/php_codesniffer": "^3.4"
  185. },
  186. "suggest": {
  187. "ext-imagick": "to generate QR code images"
  188. },
  189. "type": "library",
  190. "autoload": {
  191. "psr-4": {
  192. "BaconQrCode\\": "src/"
  193. }
  194. },
  195. "notification-url": "https://packagist.org/downloads/",
  196. "license": [
  197. "BSD-2-Clause"
  198. ],
  199. "authors": [
  200. {
  201. "name": "Ben Scholzen 'DASPRiD'",
  202. "email": "mail@dasprids.de",
  203. "homepage": "https://dasprids.de/",
  204. "role": "Developer"
  205. }
  206. ],
  207. "description": "BaconQrCode is a QR code generator for PHP.",
  208. "homepage": "https://github.com/Bacon/BaconQrCode",
  209. "support": {
  210. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  211. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  212. },
  213. "time": "2022-12-07T17:46:57+00:00"
  214. },
  215. {
  216. "name": "brick/math",
  217. "version": "0.12.1",
  218. "source": {
  219. "type": "git",
  220. "url": "https://github.com/brick/math.git",
  221. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  222. },
  223. "dist": {
  224. "type": "zip",
  225. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  226. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  227. "shasum": ""
  228. },
  229. "require": {
  230. "php": "^8.1"
  231. },
  232. "require-dev": {
  233. "php-coveralls/php-coveralls": "^2.2",
  234. "phpunit/phpunit": "^10.1",
  235. "vimeo/psalm": "5.16.0"
  236. },
  237. "type": "library",
  238. "autoload": {
  239. "psr-4": {
  240. "Brick\\Math\\": "src/"
  241. }
  242. },
  243. "notification-url": "https://packagist.org/downloads/",
  244. "license": [
  245. "MIT"
  246. ],
  247. "description": "Arbitrary-precision arithmetic library",
  248. "keywords": [
  249. "Arbitrary-precision",
  250. "BigInteger",
  251. "BigRational",
  252. "arithmetic",
  253. "bigdecimal",
  254. "bignum",
  255. "bignumber",
  256. "brick",
  257. "decimal",
  258. "integer",
  259. "math",
  260. "mathematics",
  261. "rational"
  262. ],
  263. "support": {
  264. "issues": "https://github.com/brick/math/issues",
  265. "source": "https://github.com/brick/math/tree/0.12.1"
  266. },
  267. "funding": [
  268. {
  269. "url": "https://github.com/BenMorel",
  270. "type": "github"
  271. }
  272. ],
  273. "time": "2023-11-29T23:19:16+00:00"
  274. },
  275. {
  276. "name": "carbonphp/carbon-doctrine-types",
  277. "version": "3.2.0",
  278. "source": {
  279. "type": "git",
  280. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  281. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  282. },
  283. "dist": {
  284. "type": "zip",
  285. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  286. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  287. "shasum": ""
  288. },
  289. "require": {
  290. "php": "^8.1"
  291. },
  292. "conflict": {
  293. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  294. },
  295. "require-dev": {
  296. "doctrine/dbal": "^4.0.0",
  297. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  298. "phpunit/phpunit": "^10.3"
  299. },
  300. "type": "library",
  301. "autoload": {
  302. "psr-4": {
  303. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  304. }
  305. },
  306. "notification-url": "https://packagist.org/downloads/",
  307. "license": [
  308. "MIT"
  309. ],
  310. "authors": [
  311. {
  312. "name": "KyleKatarn",
  313. "email": "kylekatarnls@gmail.com"
  314. }
  315. ],
  316. "description": "Types to use Carbon in Doctrine",
  317. "keywords": [
  318. "carbon",
  319. "date",
  320. "datetime",
  321. "doctrine",
  322. "time"
  323. ],
  324. "support": {
  325. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  326. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  327. },
  328. "funding": [
  329. {
  330. "url": "https://github.com/kylekatarnls",
  331. "type": "github"
  332. },
  333. {
  334. "url": "https://opencollective.com/Carbon",
  335. "type": "open_collective"
  336. },
  337. {
  338. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  339. "type": "tidelift"
  340. }
  341. ],
  342. "time": "2024-02-09T16:56:22+00:00"
  343. },
  344. {
  345. "name": "dasprid/enum",
  346. "version": "1.0.6",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/DASPRiD/Enum.git",
  350. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  355. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  356. "shasum": ""
  357. },
  358. "require": {
  359. "php": ">=7.1 <9.0"
  360. },
  361. "require-dev": {
  362. "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
  363. "squizlabs/php_codesniffer": "*"
  364. },
  365. "type": "library",
  366. "autoload": {
  367. "psr-4": {
  368. "DASPRiD\\Enum\\": "src/"
  369. }
  370. },
  371. "notification-url": "https://packagist.org/downloads/",
  372. "license": [
  373. "BSD-2-Clause"
  374. ],
  375. "authors": [
  376. {
  377. "name": "Ben Scholzen 'DASPRiD'",
  378. "email": "mail@dasprids.de",
  379. "homepage": "https://dasprids.de/",
  380. "role": "Developer"
  381. }
  382. ],
  383. "description": "PHP 7.1 enum implementation",
  384. "keywords": [
  385. "enum",
  386. "map"
  387. ],
  388. "support": {
  389. "issues": "https://github.com/DASPRiD/Enum/issues",
  390. "source": "https://github.com/DASPRiD/Enum/tree/1.0.6"
  391. },
  392. "time": "2024-08-09T14:30:48+00:00"
  393. },
  394. {
  395. "name": "dflydev/dot-access-data",
  396. "version": "v3.0.3",
  397. "source": {
  398. "type": "git",
  399. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  400. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  401. },
  402. "dist": {
  403. "type": "zip",
  404. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  405. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  406. "shasum": ""
  407. },
  408. "require": {
  409. "php": "^7.1 || ^8.0"
  410. },
  411. "require-dev": {
  412. "phpstan/phpstan": "^0.12.42",
  413. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  414. "scrutinizer/ocular": "1.6.0",
  415. "squizlabs/php_codesniffer": "^3.5",
  416. "vimeo/psalm": "^4.0.0"
  417. },
  418. "type": "library",
  419. "extra": {
  420. "branch-alias": {
  421. "dev-main": "3.x-dev"
  422. }
  423. },
  424. "autoload": {
  425. "psr-4": {
  426. "Dflydev\\DotAccessData\\": "src/"
  427. }
  428. },
  429. "notification-url": "https://packagist.org/downloads/",
  430. "license": [
  431. "MIT"
  432. ],
  433. "authors": [
  434. {
  435. "name": "Dragonfly Development Inc.",
  436. "email": "info@dflydev.com",
  437. "homepage": "http://dflydev.com"
  438. },
  439. {
  440. "name": "Beau Simensen",
  441. "email": "beau@dflydev.com",
  442. "homepage": "http://beausimensen.com"
  443. },
  444. {
  445. "name": "Carlos Frutos",
  446. "email": "carlos@kiwing.it",
  447. "homepage": "https://github.com/cfrutos"
  448. },
  449. {
  450. "name": "Colin O'Dell",
  451. "email": "colinodell@gmail.com",
  452. "homepage": "https://www.colinodell.com"
  453. }
  454. ],
  455. "description": "Given a deep data structure, access data by dot notation.",
  456. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  457. "keywords": [
  458. "access",
  459. "data",
  460. "dot",
  461. "notation"
  462. ],
  463. "support": {
  464. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  465. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  466. },
  467. "time": "2024-07-08T12:26:09+00:00"
  468. },
  469. {
  470. "name": "doctrine/inflector",
  471. "version": "2.0.10",
  472. "source": {
  473. "type": "git",
  474. "url": "https://github.com/doctrine/inflector.git",
  475. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  476. },
  477. "dist": {
  478. "type": "zip",
  479. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  480. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  481. "shasum": ""
  482. },
  483. "require": {
  484. "php": "^7.2 || ^8.0"
  485. },
  486. "require-dev": {
  487. "doctrine/coding-standard": "^11.0",
  488. "phpstan/phpstan": "^1.8",
  489. "phpstan/phpstan-phpunit": "^1.1",
  490. "phpstan/phpstan-strict-rules": "^1.3",
  491. "phpunit/phpunit": "^8.5 || ^9.5",
  492. "vimeo/psalm": "^4.25 || ^5.4"
  493. },
  494. "type": "library",
  495. "autoload": {
  496. "psr-4": {
  497. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  498. }
  499. },
  500. "notification-url": "https://packagist.org/downloads/",
  501. "license": [
  502. "MIT"
  503. ],
  504. "authors": [
  505. {
  506. "name": "Guilherme Blanco",
  507. "email": "guilhermeblanco@gmail.com"
  508. },
  509. {
  510. "name": "Roman Borschel",
  511. "email": "roman@code-factory.org"
  512. },
  513. {
  514. "name": "Benjamin Eberlei",
  515. "email": "kontakt@beberlei.de"
  516. },
  517. {
  518. "name": "Jonathan Wage",
  519. "email": "jonwage@gmail.com"
  520. },
  521. {
  522. "name": "Johannes Schmitt",
  523. "email": "schmittjoh@gmail.com"
  524. }
  525. ],
  526. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  527. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  528. "keywords": [
  529. "inflection",
  530. "inflector",
  531. "lowercase",
  532. "manipulation",
  533. "php",
  534. "plural",
  535. "singular",
  536. "strings",
  537. "uppercase",
  538. "words"
  539. ],
  540. "support": {
  541. "issues": "https://github.com/doctrine/inflector/issues",
  542. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  543. },
  544. "funding": [
  545. {
  546. "url": "https://www.doctrine-project.org/sponsorship.html",
  547. "type": "custom"
  548. },
  549. {
  550. "url": "https://www.patreon.com/phpdoctrine",
  551. "type": "patreon"
  552. },
  553. {
  554. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  555. "type": "tidelift"
  556. }
  557. ],
  558. "time": "2024-02-18T20:23:39+00:00"
  559. },
  560. {
  561. "name": "doctrine/lexer",
  562. "version": "3.0.1",
  563. "source": {
  564. "type": "git",
  565. "url": "https://github.com/doctrine/lexer.git",
  566. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  567. },
  568. "dist": {
  569. "type": "zip",
  570. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  571. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  572. "shasum": ""
  573. },
  574. "require": {
  575. "php": "^8.1"
  576. },
  577. "require-dev": {
  578. "doctrine/coding-standard": "^12",
  579. "phpstan/phpstan": "^1.10",
  580. "phpunit/phpunit": "^10.5",
  581. "psalm/plugin-phpunit": "^0.18.3",
  582. "vimeo/psalm": "^5.21"
  583. },
  584. "type": "library",
  585. "autoload": {
  586. "psr-4": {
  587. "Doctrine\\Common\\Lexer\\": "src"
  588. }
  589. },
  590. "notification-url": "https://packagist.org/downloads/",
  591. "license": [
  592. "MIT"
  593. ],
  594. "authors": [
  595. {
  596. "name": "Guilherme Blanco",
  597. "email": "guilhermeblanco@gmail.com"
  598. },
  599. {
  600. "name": "Roman Borschel",
  601. "email": "roman@code-factory.org"
  602. },
  603. {
  604. "name": "Johannes Schmitt",
  605. "email": "schmittjoh@gmail.com"
  606. }
  607. ],
  608. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  609. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  610. "keywords": [
  611. "annotations",
  612. "docblock",
  613. "lexer",
  614. "parser",
  615. "php"
  616. ],
  617. "support": {
  618. "issues": "https://github.com/doctrine/lexer/issues",
  619. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  620. },
  621. "funding": [
  622. {
  623. "url": "https://www.doctrine-project.org/sponsorship.html",
  624. "type": "custom"
  625. },
  626. {
  627. "url": "https://www.patreon.com/phpdoctrine",
  628. "type": "patreon"
  629. },
  630. {
  631. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  632. "type": "tidelift"
  633. }
  634. ],
  635. "time": "2024-02-05T11:56:58+00:00"
  636. },
  637. {
  638. "name": "dragonmantank/cron-expression",
  639. "version": "v3.4.0",
  640. "source": {
  641. "type": "git",
  642. "url": "https://github.com/dragonmantank/cron-expression.git",
  643. "reference": "8c784d071debd117328803d86b2097615b457500"
  644. },
  645. "dist": {
  646. "type": "zip",
  647. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  648. "reference": "8c784d071debd117328803d86b2097615b457500",
  649. "shasum": ""
  650. },
  651. "require": {
  652. "php": "^7.2|^8.0",
  653. "webmozart/assert": "^1.0"
  654. },
  655. "replace": {
  656. "mtdowling/cron-expression": "^1.0"
  657. },
  658. "require-dev": {
  659. "phpstan/extension-installer": "^1.0",
  660. "phpstan/phpstan": "^1.0",
  661. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  662. },
  663. "type": "library",
  664. "extra": {
  665. "branch-alias": {
  666. "dev-master": "3.x-dev"
  667. }
  668. },
  669. "autoload": {
  670. "psr-4": {
  671. "Cron\\": "src/Cron/"
  672. }
  673. },
  674. "notification-url": "https://packagist.org/downloads/",
  675. "license": [
  676. "MIT"
  677. ],
  678. "authors": [
  679. {
  680. "name": "Chris Tankersley",
  681. "email": "chris@ctankersley.com",
  682. "homepage": "https://github.com/dragonmantank"
  683. }
  684. ],
  685. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  686. "keywords": [
  687. "cron",
  688. "schedule"
  689. ],
  690. "support": {
  691. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  692. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  693. },
  694. "funding": [
  695. {
  696. "url": "https://github.com/dragonmantank",
  697. "type": "github"
  698. }
  699. ],
  700. "time": "2024-10-09T13:47:03+00:00"
  701. },
  702. {
  703. "name": "egulias/email-validator",
  704. "version": "4.0.2",
  705. "source": {
  706. "type": "git",
  707. "url": "https://github.com/egulias/EmailValidator.git",
  708. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  709. },
  710. "dist": {
  711. "type": "zip",
  712. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  713. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  714. "shasum": ""
  715. },
  716. "require": {
  717. "doctrine/lexer": "^2.0 || ^3.0",
  718. "php": ">=8.1",
  719. "symfony/polyfill-intl-idn": "^1.26"
  720. },
  721. "require-dev": {
  722. "phpunit/phpunit": "^10.2",
  723. "vimeo/psalm": "^5.12"
  724. },
  725. "suggest": {
  726. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  727. },
  728. "type": "library",
  729. "extra": {
  730. "branch-alias": {
  731. "dev-master": "4.0.x-dev"
  732. }
  733. },
  734. "autoload": {
  735. "psr-4": {
  736. "Egulias\\EmailValidator\\": "src"
  737. }
  738. },
  739. "notification-url": "https://packagist.org/downloads/",
  740. "license": [
  741. "MIT"
  742. ],
  743. "authors": [
  744. {
  745. "name": "Eduardo Gulias Davis"
  746. }
  747. ],
  748. "description": "A library for validating emails against several RFCs",
  749. "homepage": "https://github.com/egulias/EmailValidator",
  750. "keywords": [
  751. "email",
  752. "emailvalidation",
  753. "emailvalidator",
  754. "validation",
  755. "validator"
  756. ],
  757. "support": {
  758. "issues": "https://github.com/egulias/EmailValidator/issues",
  759. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  760. },
  761. "funding": [
  762. {
  763. "url": "https://github.com/egulias",
  764. "type": "github"
  765. }
  766. ],
  767. "time": "2023-10-06T06:47:41+00:00"
  768. },
  769. {
  770. "name": "erusev/parsedown",
  771. "version": "1.7.4",
  772. "source": {
  773. "type": "git",
  774. "url": "https://github.com/erusev/parsedown.git",
  775. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  776. },
  777. "dist": {
  778. "type": "zip",
  779. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  780. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  781. "shasum": ""
  782. },
  783. "require": {
  784. "ext-mbstring": "*",
  785. "php": ">=5.3.0"
  786. },
  787. "require-dev": {
  788. "phpunit/phpunit": "^4.8.35"
  789. },
  790. "type": "library",
  791. "autoload": {
  792. "psr-0": {
  793. "Parsedown": ""
  794. }
  795. },
  796. "notification-url": "https://packagist.org/downloads/",
  797. "license": [
  798. "MIT"
  799. ],
  800. "authors": [
  801. {
  802. "name": "Emanuil Rusev",
  803. "email": "hello@erusev.com",
  804. "homepage": "http://erusev.com"
  805. }
  806. ],
  807. "description": "Parser for Markdown.",
  808. "homepage": "http://parsedown.org",
  809. "keywords": [
  810. "markdown",
  811. "parser"
  812. ],
  813. "support": {
  814. "issues": "https://github.com/erusev/parsedown/issues",
  815. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  816. },
  817. "time": "2019-12-30T22:54:17+00:00"
  818. },
  819. {
  820. "name": "fakerphp/faker",
  821. "version": "v1.24.1",
  822. "source": {
  823. "type": "git",
  824. "url": "https://github.com/FakerPHP/Faker.git",
  825. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  826. },
  827. "dist": {
  828. "type": "zip",
  829. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  830. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  831. "shasum": ""
  832. },
  833. "require": {
  834. "php": "^7.4 || ^8.0",
  835. "psr/container": "^1.0 || ^2.0",
  836. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  837. },
  838. "conflict": {
  839. "fzaninotto/faker": "*"
  840. },
  841. "require-dev": {
  842. "bamarni/composer-bin-plugin": "^1.4.1",
  843. "doctrine/persistence": "^1.3 || ^2.0",
  844. "ext-intl": "*",
  845. "phpunit/phpunit": "^9.5.26",
  846. "symfony/phpunit-bridge": "^5.4.16"
  847. },
  848. "suggest": {
  849. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  850. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  851. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  852. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  853. "ext-mbstring": "Required for multibyte Unicode string functionality."
  854. },
  855. "type": "library",
  856. "autoload": {
  857. "psr-4": {
  858. "Faker\\": "src/Faker/"
  859. }
  860. },
  861. "notification-url": "https://packagist.org/downloads/",
  862. "license": [
  863. "MIT"
  864. ],
  865. "authors": [
  866. {
  867. "name": "François Zaninotto"
  868. }
  869. ],
  870. "description": "Faker is a PHP library that generates fake data for you.",
  871. "keywords": [
  872. "data",
  873. "faker",
  874. "fixtures"
  875. ],
  876. "support": {
  877. "issues": "https://github.com/FakerPHP/Faker/issues",
  878. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  879. },
  880. "time": "2024-11-21T13:46:39+00:00"
  881. },
  882. {
  883. "name": "filp/whoops",
  884. "version": "2.16.0",
  885. "source": {
  886. "type": "git",
  887. "url": "https://github.com/filp/whoops.git",
  888. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  889. },
  890. "dist": {
  891. "type": "zip",
  892. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  893. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  894. "shasum": ""
  895. },
  896. "require": {
  897. "php": "^7.1 || ^8.0",
  898. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  899. },
  900. "require-dev": {
  901. "mockery/mockery": "^1.0",
  902. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  903. "symfony/var-dumper": "^4.0 || ^5.0"
  904. },
  905. "suggest": {
  906. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  907. "whoops/soap": "Formats errors as SOAP responses"
  908. },
  909. "type": "library",
  910. "extra": {
  911. "branch-alias": {
  912. "dev-master": "2.7-dev"
  913. }
  914. },
  915. "autoload": {
  916. "psr-4": {
  917. "Whoops\\": "src/Whoops/"
  918. }
  919. },
  920. "notification-url": "https://packagist.org/downloads/",
  921. "license": [
  922. "MIT"
  923. ],
  924. "authors": [
  925. {
  926. "name": "Filipe Dobreira",
  927. "homepage": "https://github.com/filp",
  928. "role": "Developer"
  929. }
  930. ],
  931. "description": "php error handling for cool kids",
  932. "homepage": "https://filp.github.io/whoops/",
  933. "keywords": [
  934. "error",
  935. "exception",
  936. "handling",
  937. "library",
  938. "throwable",
  939. "whoops"
  940. ],
  941. "support": {
  942. "issues": "https://github.com/filp/whoops/issues",
  943. "source": "https://github.com/filp/whoops/tree/2.16.0"
  944. },
  945. "funding": [
  946. {
  947. "url": "https://github.com/denis-sokolov",
  948. "type": "github"
  949. }
  950. ],
  951. "time": "2024-09-25T12:00:00+00:00"
  952. },
  953. {
  954. "name": "fruitcake/php-cors",
  955. "version": "v1.3.0",
  956. "source": {
  957. "type": "git",
  958. "url": "https://github.com/fruitcake/php-cors.git",
  959. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  960. },
  961. "dist": {
  962. "type": "zip",
  963. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  964. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  965. "shasum": ""
  966. },
  967. "require": {
  968. "php": "^7.4|^8.0",
  969. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  970. },
  971. "require-dev": {
  972. "phpstan/phpstan": "^1.4",
  973. "phpunit/phpunit": "^9",
  974. "squizlabs/php_codesniffer": "^3.5"
  975. },
  976. "type": "library",
  977. "extra": {
  978. "branch-alias": {
  979. "dev-master": "1.2-dev"
  980. }
  981. },
  982. "autoload": {
  983. "psr-4": {
  984. "Fruitcake\\Cors\\": "src/"
  985. }
  986. },
  987. "notification-url": "https://packagist.org/downloads/",
  988. "license": [
  989. "MIT"
  990. ],
  991. "authors": [
  992. {
  993. "name": "Fruitcake",
  994. "homepage": "https://fruitcake.nl"
  995. },
  996. {
  997. "name": "Barryvdh",
  998. "email": "barryvdh@gmail.com"
  999. }
  1000. ],
  1001. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1002. "homepage": "https://github.com/fruitcake/php-cors",
  1003. "keywords": [
  1004. "cors",
  1005. "laravel",
  1006. "symfony"
  1007. ],
  1008. "support": {
  1009. "issues": "https://github.com/fruitcake/php-cors/issues",
  1010. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  1011. },
  1012. "funding": [
  1013. {
  1014. "url": "https://fruitcake.nl",
  1015. "type": "custom"
  1016. },
  1017. {
  1018. "url": "https://github.com/barryvdh",
  1019. "type": "github"
  1020. }
  1021. ],
  1022. "time": "2023-10-12T05:21:21+00:00"
  1023. },
  1024. {
  1025. "name": "graham-campbell/result-type",
  1026. "version": "v1.1.3",
  1027. "source": {
  1028. "type": "git",
  1029. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1030. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  1031. },
  1032. "dist": {
  1033. "type": "zip",
  1034. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  1035. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  1036. "shasum": ""
  1037. },
  1038. "require": {
  1039. "php": "^7.2.5 || ^8.0",
  1040. "phpoption/phpoption": "^1.9.3"
  1041. },
  1042. "require-dev": {
  1043. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  1044. },
  1045. "type": "library",
  1046. "autoload": {
  1047. "psr-4": {
  1048. "GrahamCampbell\\ResultType\\": "src/"
  1049. }
  1050. },
  1051. "notification-url": "https://packagist.org/downloads/",
  1052. "license": [
  1053. "MIT"
  1054. ],
  1055. "authors": [
  1056. {
  1057. "name": "Graham Campbell",
  1058. "email": "hello@gjcampbell.co.uk",
  1059. "homepage": "https://github.com/GrahamCampbell"
  1060. }
  1061. ],
  1062. "description": "An Implementation Of The Result Type",
  1063. "keywords": [
  1064. "Graham Campbell",
  1065. "GrahamCampbell",
  1066. "Result Type",
  1067. "Result-Type",
  1068. "result"
  1069. ],
  1070. "support": {
  1071. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1072. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  1073. },
  1074. "funding": [
  1075. {
  1076. "url": "https://github.com/GrahamCampbell",
  1077. "type": "github"
  1078. },
  1079. {
  1080. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1081. "type": "tidelift"
  1082. }
  1083. ],
  1084. "time": "2024-07-20T21:45:45+00:00"
  1085. },
  1086. {
  1087. "name": "guzzlehttp/guzzle",
  1088. "version": "7.9.2",
  1089. "source": {
  1090. "type": "git",
  1091. "url": "https://github.com/guzzle/guzzle.git",
  1092. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1093. },
  1094. "dist": {
  1095. "type": "zip",
  1096. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1097. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1098. "shasum": ""
  1099. },
  1100. "require": {
  1101. "ext-json": "*",
  1102. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1103. "guzzlehttp/psr7": "^2.7.0",
  1104. "php": "^7.2.5 || ^8.0",
  1105. "psr/http-client": "^1.0",
  1106. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1107. },
  1108. "provide": {
  1109. "psr/http-client-implementation": "1.0"
  1110. },
  1111. "require-dev": {
  1112. "bamarni/composer-bin-plugin": "^1.8.2",
  1113. "ext-curl": "*",
  1114. "guzzle/client-integration-tests": "3.0.2",
  1115. "php-http/message-factory": "^1.1",
  1116. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1117. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1118. },
  1119. "suggest": {
  1120. "ext-curl": "Required for CURL handler support",
  1121. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1122. "psr/log": "Required for using the Log middleware"
  1123. },
  1124. "type": "library",
  1125. "extra": {
  1126. "bamarni-bin": {
  1127. "bin-links": true,
  1128. "forward-command": false
  1129. }
  1130. },
  1131. "autoload": {
  1132. "files": [
  1133. "src/functions_include.php"
  1134. ],
  1135. "psr-4": {
  1136. "GuzzleHttp\\": "src/"
  1137. }
  1138. },
  1139. "notification-url": "https://packagist.org/downloads/",
  1140. "license": [
  1141. "MIT"
  1142. ],
  1143. "authors": [
  1144. {
  1145. "name": "Graham Campbell",
  1146. "email": "hello@gjcampbell.co.uk",
  1147. "homepage": "https://github.com/GrahamCampbell"
  1148. },
  1149. {
  1150. "name": "Michael Dowling",
  1151. "email": "mtdowling@gmail.com",
  1152. "homepage": "https://github.com/mtdowling"
  1153. },
  1154. {
  1155. "name": "Jeremy Lindblom",
  1156. "email": "jeremeamia@gmail.com",
  1157. "homepage": "https://github.com/jeremeamia"
  1158. },
  1159. {
  1160. "name": "George Mponos",
  1161. "email": "gmponos@gmail.com",
  1162. "homepage": "https://github.com/gmponos"
  1163. },
  1164. {
  1165. "name": "Tobias Nyholm",
  1166. "email": "tobias.nyholm@gmail.com",
  1167. "homepage": "https://github.com/Nyholm"
  1168. },
  1169. {
  1170. "name": "Márk Sági-Kazár",
  1171. "email": "mark.sagikazar@gmail.com",
  1172. "homepage": "https://github.com/sagikazarmark"
  1173. },
  1174. {
  1175. "name": "Tobias Schultze",
  1176. "email": "webmaster@tubo-world.de",
  1177. "homepage": "https://github.com/Tobion"
  1178. }
  1179. ],
  1180. "description": "Guzzle is a PHP HTTP client library",
  1181. "keywords": [
  1182. "client",
  1183. "curl",
  1184. "framework",
  1185. "http",
  1186. "http client",
  1187. "psr-18",
  1188. "psr-7",
  1189. "rest",
  1190. "web service"
  1191. ],
  1192. "support": {
  1193. "issues": "https://github.com/guzzle/guzzle/issues",
  1194. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1195. },
  1196. "funding": [
  1197. {
  1198. "url": "https://github.com/GrahamCampbell",
  1199. "type": "github"
  1200. },
  1201. {
  1202. "url": "https://github.com/Nyholm",
  1203. "type": "github"
  1204. },
  1205. {
  1206. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1207. "type": "tidelift"
  1208. }
  1209. ],
  1210. "time": "2024-07-24T11:22:20+00:00"
  1211. },
  1212. {
  1213. "name": "guzzlehttp/promises",
  1214. "version": "2.0.4",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/guzzle/promises.git",
  1218. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1223. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1224. "shasum": ""
  1225. },
  1226. "require": {
  1227. "php": "^7.2.5 || ^8.0"
  1228. },
  1229. "require-dev": {
  1230. "bamarni/composer-bin-plugin": "^1.8.2",
  1231. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1232. },
  1233. "type": "library",
  1234. "extra": {
  1235. "bamarni-bin": {
  1236. "bin-links": true,
  1237. "forward-command": false
  1238. }
  1239. },
  1240. "autoload": {
  1241. "psr-4": {
  1242. "GuzzleHttp\\Promise\\": "src/"
  1243. }
  1244. },
  1245. "notification-url": "https://packagist.org/downloads/",
  1246. "license": [
  1247. "MIT"
  1248. ],
  1249. "authors": [
  1250. {
  1251. "name": "Graham Campbell",
  1252. "email": "hello@gjcampbell.co.uk",
  1253. "homepage": "https://github.com/GrahamCampbell"
  1254. },
  1255. {
  1256. "name": "Michael Dowling",
  1257. "email": "mtdowling@gmail.com",
  1258. "homepage": "https://github.com/mtdowling"
  1259. },
  1260. {
  1261. "name": "Tobias Nyholm",
  1262. "email": "tobias.nyholm@gmail.com",
  1263. "homepage": "https://github.com/Nyholm"
  1264. },
  1265. {
  1266. "name": "Tobias Schultze",
  1267. "email": "webmaster@tubo-world.de",
  1268. "homepage": "https://github.com/Tobion"
  1269. }
  1270. ],
  1271. "description": "Guzzle promises library",
  1272. "keywords": [
  1273. "promise"
  1274. ],
  1275. "support": {
  1276. "issues": "https://github.com/guzzle/promises/issues",
  1277. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  1278. },
  1279. "funding": [
  1280. {
  1281. "url": "https://github.com/GrahamCampbell",
  1282. "type": "github"
  1283. },
  1284. {
  1285. "url": "https://github.com/Nyholm",
  1286. "type": "github"
  1287. },
  1288. {
  1289. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1290. "type": "tidelift"
  1291. }
  1292. ],
  1293. "time": "2024-10-17T10:06:22+00:00"
  1294. },
  1295. {
  1296. "name": "guzzlehttp/psr7",
  1297. "version": "2.7.0",
  1298. "source": {
  1299. "type": "git",
  1300. "url": "https://github.com/guzzle/psr7.git",
  1301. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1302. },
  1303. "dist": {
  1304. "type": "zip",
  1305. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1306. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1307. "shasum": ""
  1308. },
  1309. "require": {
  1310. "php": "^7.2.5 || ^8.0",
  1311. "psr/http-factory": "^1.0",
  1312. "psr/http-message": "^1.1 || ^2.0",
  1313. "ralouphie/getallheaders": "^3.0"
  1314. },
  1315. "provide": {
  1316. "psr/http-factory-implementation": "1.0",
  1317. "psr/http-message-implementation": "1.0"
  1318. },
  1319. "require-dev": {
  1320. "bamarni/composer-bin-plugin": "^1.8.2",
  1321. "http-interop/http-factory-tests": "0.9.0",
  1322. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1323. },
  1324. "suggest": {
  1325. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1326. },
  1327. "type": "library",
  1328. "extra": {
  1329. "bamarni-bin": {
  1330. "bin-links": true,
  1331. "forward-command": false
  1332. }
  1333. },
  1334. "autoload": {
  1335. "psr-4": {
  1336. "GuzzleHttp\\Psr7\\": "src/"
  1337. }
  1338. },
  1339. "notification-url": "https://packagist.org/downloads/",
  1340. "license": [
  1341. "MIT"
  1342. ],
  1343. "authors": [
  1344. {
  1345. "name": "Graham Campbell",
  1346. "email": "hello@gjcampbell.co.uk",
  1347. "homepage": "https://github.com/GrahamCampbell"
  1348. },
  1349. {
  1350. "name": "Michael Dowling",
  1351. "email": "mtdowling@gmail.com",
  1352. "homepage": "https://github.com/mtdowling"
  1353. },
  1354. {
  1355. "name": "George Mponos",
  1356. "email": "gmponos@gmail.com",
  1357. "homepage": "https://github.com/gmponos"
  1358. },
  1359. {
  1360. "name": "Tobias Nyholm",
  1361. "email": "tobias.nyholm@gmail.com",
  1362. "homepage": "https://github.com/Nyholm"
  1363. },
  1364. {
  1365. "name": "Márk Sági-Kazár",
  1366. "email": "mark.sagikazar@gmail.com",
  1367. "homepage": "https://github.com/sagikazarmark"
  1368. },
  1369. {
  1370. "name": "Tobias Schultze",
  1371. "email": "webmaster@tubo-world.de",
  1372. "homepage": "https://github.com/Tobion"
  1373. },
  1374. {
  1375. "name": "Márk Sági-Kazár",
  1376. "email": "mark.sagikazar@gmail.com",
  1377. "homepage": "https://sagikazarmark.hu"
  1378. }
  1379. ],
  1380. "description": "PSR-7 message implementation that also provides common utility methods",
  1381. "keywords": [
  1382. "http",
  1383. "message",
  1384. "psr-7",
  1385. "request",
  1386. "response",
  1387. "stream",
  1388. "uri",
  1389. "url"
  1390. ],
  1391. "support": {
  1392. "issues": "https://github.com/guzzle/psr7/issues",
  1393. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1394. },
  1395. "funding": [
  1396. {
  1397. "url": "https://github.com/GrahamCampbell",
  1398. "type": "github"
  1399. },
  1400. {
  1401. "url": "https://github.com/Nyholm",
  1402. "type": "github"
  1403. },
  1404. {
  1405. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1406. "type": "tidelift"
  1407. }
  1408. ],
  1409. "time": "2024-07-18T11:15:46+00:00"
  1410. },
  1411. {
  1412. "name": "guzzlehttp/uri-template",
  1413. "version": "v1.0.3",
  1414. "source": {
  1415. "type": "git",
  1416. "url": "https://github.com/guzzle/uri-template.git",
  1417. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  1418. },
  1419. "dist": {
  1420. "type": "zip",
  1421. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1422. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1423. "shasum": ""
  1424. },
  1425. "require": {
  1426. "php": "^7.2.5 || ^8.0",
  1427. "symfony/polyfill-php80": "^1.24"
  1428. },
  1429. "require-dev": {
  1430. "bamarni/composer-bin-plugin": "^1.8.2",
  1431. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1432. "uri-template/tests": "1.0.0"
  1433. },
  1434. "type": "library",
  1435. "extra": {
  1436. "bamarni-bin": {
  1437. "bin-links": true,
  1438. "forward-command": false
  1439. }
  1440. },
  1441. "autoload": {
  1442. "psr-4": {
  1443. "GuzzleHttp\\UriTemplate\\": "src"
  1444. }
  1445. },
  1446. "notification-url": "https://packagist.org/downloads/",
  1447. "license": [
  1448. "MIT"
  1449. ],
  1450. "authors": [
  1451. {
  1452. "name": "Graham Campbell",
  1453. "email": "hello@gjcampbell.co.uk",
  1454. "homepage": "https://github.com/GrahamCampbell"
  1455. },
  1456. {
  1457. "name": "Michael Dowling",
  1458. "email": "mtdowling@gmail.com",
  1459. "homepage": "https://github.com/mtdowling"
  1460. },
  1461. {
  1462. "name": "George Mponos",
  1463. "email": "gmponos@gmail.com",
  1464. "homepage": "https://github.com/gmponos"
  1465. },
  1466. {
  1467. "name": "Tobias Nyholm",
  1468. "email": "tobias.nyholm@gmail.com",
  1469. "homepage": "https://github.com/Nyholm"
  1470. }
  1471. ],
  1472. "description": "A polyfill class for uri_template of PHP",
  1473. "keywords": [
  1474. "guzzlehttp",
  1475. "uri-template"
  1476. ],
  1477. "support": {
  1478. "issues": "https://github.com/guzzle/uri-template/issues",
  1479. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  1480. },
  1481. "funding": [
  1482. {
  1483. "url": "https://github.com/GrahamCampbell",
  1484. "type": "github"
  1485. },
  1486. {
  1487. "url": "https://github.com/Nyholm",
  1488. "type": "github"
  1489. },
  1490. {
  1491. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1492. "type": "tidelift"
  1493. }
  1494. ],
  1495. "time": "2023-12-03T19:50:20+00:00"
  1496. },
  1497. {
  1498. "name": "huifurepo/dg-php-sdk",
  1499. "version": "2.0.14",
  1500. "source": {
  1501. "type": "git",
  1502. "url": "https://github.com/huifurepo/bspay-php-sdk.git",
  1503. "reference": "b64924cbd9dfd7490164eff926bf651e48f8ae2c"
  1504. },
  1505. "dist": {
  1506. "type": "zip",
  1507. "url": "https://api.github.com/repos/huifurepo/bspay-php-sdk/zipball/b64924cbd9dfd7490164eff926bf651e48f8ae2c",
  1508. "reference": "b64924cbd9dfd7490164eff926bf651e48f8ae2c",
  1509. "shasum": ""
  1510. },
  1511. "type": "library",
  1512. "notification-url": "https://packagist.org/downloads/",
  1513. "license": [
  1514. "MIT"
  1515. ],
  1516. "description": "汇付天下斗拱SDK-PHP版",
  1517. "support": {
  1518. "issues": "https://github.com/huifurepo/bspay-php-sdk/issues",
  1519. "source": "https://github.com/huifurepo/bspay-php-sdk/tree/2.0.14"
  1520. },
  1521. "time": "2024-11-07T10:27:56+00:00"
  1522. },
  1523. {
  1524. "name": "iconify/json",
  1525. "version": "2.2.276",
  1526. "source": {
  1527. "type": "git",
  1528. "url": "https://github.com/iconify/icon-sets.git",
  1529. "reference": "aea1e648b6d28c7f95c3afb0eaf1338cffb0d980"
  1530. },
  1531. "dist": {
  1532. "type": "zip",
  1533. "url": "https://api.github.com/repos/iconify/icon-sets/zipball/aea1e648b6d28c7f95c3afb0eaf1338cffb0d980",
  1534. "reference": "aea1e648b6d28c7f95c3afb0eaf1338cffb0d980",
  1535. "shasum": ""
  1536. },
  1537. "type": "library",
  1538. "autoload": {
  1539. "psr-4": {
  1540. "Iconify\\IconsJSON\\": "lib"
  1541. }
  1542. },
  1543. "notification-url": "https://packagist.org/downloads/",
  1544. "license": [
  1545. "MIT"
  1546. ],
  1547. "description": "Iconify icons collection in JSON format",
  1548. "homepage": "https://iconify.design/icon-sets/",
  1549. "support": {
  1550. "issues": "https://github.com/iconify/icon-sets/issues",
  1551. "source": "https://github.com/iconify/icon-sets/tree/2.2.276"
  1552. },
  1553. "time": "2024-11-25T06:57:03+00:00"
  1554. },
  1555. {
  1556. "name": "iwzh/owl-scheduling",
  1557. "version": "1.0.2",
  1558. "source": {
  1559. "type": "git",
  1560. "url": "https://gitee.com/wzhec/owl-scheduling",
  1561. "reference": "61478147d286fddb2e0634c4d11acda862db851d"
  1562. },
  1563. "require": {
  1564. "php": ">=8.0",
  1565. "slowlyo/owl-admin": "*"
  1566. },
  1567. "type": "library",
  1568. "extra": {
  1569. "owl-admin": "Iwzh\\owlScheduling\\OwlSchedulingServiceProvider",
  1570. "laravel": {
  1571. "providers": [
  1572. "Iwzh\\owlScheduling\\OwlSchedulingServiceProvider"
  1573. ]
  1574. }
  1575. },
  1576. "autoload": {
  1577. "psr-4": {
  1578. "Iwzh\\owlScheduling\\": "src/"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "wzh",
  1588. "email": "wzhec@foxmail.com"
  1589. }
  1590. ],
  1591. "description": "OwlAdmin扩展:方便管理 laravel 的定时任务",
  1592. "homepage": "https://gitee.com/wzhec/owl-scheduling",
  1593. "keywords": [
  1594. "extension",
  1595. "owl-admin"
  1596. ],
  1597. "time": "2023-05-12T02:57:41+00:00"
  1598. },
  1599. {
  1600. "name": "knuckleswtf/scribe",
  1601. "version": "4.38.0",
  1602. "source": {
  1603. "type": "git",
  1604. "url": "https://github.com/knuckleswtf/scribe.git",
  1605. "reference": "da667aafb6804b4b599ac6506bb178bfa5434802"
  1606. },
  1607. "dist": {
  1608. "type": "zip",
  1609. "url": "https://api.github.com/repos/knuckleswtf/scribe/zipball/da667aafb6804b4b599ac6506bb178bfa5434802",
  1610. "reference": "da667aafb6804b4b599ac6506bb178bfa5434802",
  1611. "shasum": ""
  1612. },
  1613. "require": {
  1614. "erusev/parsedown": "1.7.4",
  1615. "ext-fileinfo": "*",
  1616. "ext-json": "*",
  1617. "ext-pdo": "*",
  1618. "fakerphp/faker": "^1.9.1",
  1619. "illuminate/console": "^8.0|^9.0|^10.0|^11.0",
  1620. "illuminate/routing": "^8.0|^9.0|^10.0|^11.0",
  1621. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  1622. "league/flysystem": "^1.1.4|^2.1.1|^3.0",
  1623. "mpociot/reflection-docblock": "^1.0.1",
  1624. "nikic/php-parser": "^5.0",
  1625. "nunomaduro/collision": "^5.10|^6.0|^7.0|^8.0",
  1626. "php": ">=8.0",
  1627. "ramsey/uuid": "^4.2.2",
  1628. "shalvah/clara": "^3.1.0",
  1629. "shalvah/upgrader": ">=0.6.0",
  1630. "spatie/data-transfer-object": "^2.6|^3.0",
  1631. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  1632. "symfony/yaml": "^5.4|^6.0|^7.0"
  1633. },
  1634. "replace": {
  1635. "mpociot/laravel-apidoc-generator": "*"
  1636. },
  1637. "require-dev": {
  1638. "brianium/paratest": "^6.0",
  1639. "dms/phpunit-arraysubset-asserts": "^0.4",
  1640. "laravel/legacy-factories": "^1.3.0",
  1641. "laravel/lumen-framework": "^8.0|^9.0|^10.0",
  1642. "league/fractal": "^0.20",
  1643. "nikic/fast-route": "^1.3",
  1644. "orchestra/testbench": "^6.0|^7.0|^8.0",
  1645. "pestphp/pest": "^1.21",
  1646. "phpstan/phpstan": "^1.0",
  1647. "phpunit/phpunit": "^9.0|^10.0",
  1648. "symfony/css-selector": "^5.4|^6.0",
  1649. "symfony/dom-crawler": "^5.4|^6.0"
  1650. },
  1651. "type": "library",
  1652. "extra": {
  1653. "laravel": {
  1654. "providers": [
  1655. "Knuckles\\Scribe\\ScribeServiceProvider"
  1656. ]
  1657. }
  1658. },
  1659. "autoload": {
  1660. "psr-4": {
  1661. "Knuckles\\Camel\\": "camel/",
  1662. "Knuckles\\Scribe\\": "src/"
  1663. }
  1664. },
  1665. "notification-url": "https://packagist.org/downloads/",
  1666. "license": [
  1667. "MIT"
  1668. ],
  1669. "authors": [
  1670. {
  1671. "name": "Shalvah"
  1672. }
  1673. ],
  1674. "description": "Generate API documentation for humans from your Laravel codebase.✍",
  1675. "homepage": "http://github.com/knuckleswtf/scribe",
  1676. "keywords": [
  1677. "api",
  1678. "dingo",
  1679. "documentation",
  1680. "laravel"
  1681. ],
  1682. "support": {
  1683. "issues": "https://github.com/knuckleswtf/scribe/issues",
  1684. "source": "https://github.com/knuckleswtf/scribe/tree/4.38.0"
  1685. },
  1686. "funding": [
  1687. {
  1688. "url": "https://patreon.com/shalvah",
  1689. "type": "patreon"
  1690. }
  1691. ],
  1692. "time": "2024-10-18T20:16:40+00:00"
  1693. },
  1694. {
  1695. "name": "laravel/framework",
  1696. "version": "v11.30.0",
  1697. "source": {
  1698. "type": "git",
  1699. "url": "https://github.com/laravel/framework.git",
  1700. "reference": "dff716442d9c229d716be82ccc9a7de52eb97193"
  1701. },
  1702. "dist": {
  1703. "type": "zip",
  1704. "url": "https://api.github.com/repos/laravel/framework/zipball/dff716442d9c229d716be82ccc9a7de52eb97193",
  1705. "reference": "dff716442d9c229d716be82ccc9a7de52eb97193",
  1706. "shasum": ""
  1707. },
  1708. "require": {
  1709. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  1710. "composer-runtime-api": "^2.2",
  1711. "doctrine/inflector": "^2.0.5",
  1712. "dragonmantank/cron-expression": "^3.3.2",
  1713. "egulias/email-validator": "^3.2.1|^4.0",
  1714. "ext-ctype": "*",
  1715. "ext-filter": "*",
  1716. "ext-hash": "*",
  1717. "ext-mbstring": "*",
  1718. "ext-openssl": "*",
  1719. "ext-session": "*",
  1720. "ext-tokenizer": "*",
  1721. "fruitcake/php-cors": "^1.3",
  1722. "guzzlehttp/guzzle": "^7.8",
  1723. "guzzlehttp/uri-template": "^1.0",
  1724. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  1725. "laravel/serializable-closure": "^1.3",
  1726. "league/commonmark": "^2.2.1",
  1727. "league/flysystem": "^3.8.0",
  1728. "monolog/monolog": "^3.0",
  1729. "nesbot/carbon": "^2.72.2|^3.0",
  1730. "nunomaduro/termwind": "^2.0",
  1731. "php": "^8.2",
  1732. "psr/container": "^1.1.1|^2.0.1",
  1733. "psr/log": "^1.0|^2.0|^3.0",
  1734. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1735. "ramsey/uuid": "^4.7",
  1736. "symfony/console": "^7.0",
  1737. "symfony/error-handler": "^7.0",
  1738. "symfony/finder": "^7.0",
  1739. "symfony/http-foundation": "^7.0",
  1740. "symfony/http-kernel": "^7.0",
  1741. "symfony/mailer": "^7.0",
  1742. "symfony/mime": "^7.0",
  1743. "symfony/polyfill-php83": "^1.28",
  1744. "symfony/process": "^7.0",
  1745. "symfony/routing": "^7.0",
  1746. "symfony/uid": "^7.0",
  1747. "symfony/var-dumper": "^7.0",
  1748. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1749. "vlucas/phpdotenv": "^5.4.1",
  1750. "voku/portable-ascii": "^2.0"
  1751. },
  1752. "conflict": {
  1753. "mockery/mockery": "1.6.8",
  1754. "tightenco/collect": "<5.5.33"
  1755. },
  1756. "provide": {
  1757. "psr/container-implementation": "1.1|2.0",
  1758. "psr/log-implementation": "1.0|2.0|3.0",
  1759. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1760. },
  1761. "replace": {
  1762. "illuminate/auth": "self.version",
  1763. "illuminate/broadcasting": "self.version",
  1764. "illuminate/bus": "self.version",
  1765. "illuminate/cache": "self.version",
  1766. "illuminate/collections": "self.version",
  1767. "illuminate/concurrency": "self.version",
  1768. "illuminate/conditionable": "self.version",
  1769. "illuminate/config": "self.version",
  1770. "illuminate/console": "self.version",
  1771. "illuminate/container": "self.version",
  1772. "illuminate/contracts": "self.version",
  1773. "illuminate/cookie": "self.version",
  1774. "illuminate/database": "self.version",
  1775. "illuminate/encryption": "self.version",
  1776. "illuminate/events": "self.version",
  1777. "illuminate/filesystem": "self.version",
  1778. "illuminate/hashing": "self.version",
  1779. "illuminate/http": "self.version",
  1780. "illuminate/log": "self.version",
  1781. "illuminate/macroable": "self.version",
  1782. "illuminate/mail": "self.version",
  1783. "illuminate/notifications": "self.version",
  1784. "illuminate/pagination": "self.version",
  1785. "illuminate/pipeline": "self.version",
  1786. "illuminate/process": "self.version",
  1787. "illuminate/queue": "self.version",
  1788. "illuminate/redis": "self.version",
  1789. "illuminate/routing": "self.version",
  1790. "illuminate/session": "self.version",
  1791. "illuminate/support": "self.version",
  1792. "illuminate/testing": "self.version",
  1793. "illuminate/translation": "self.version",
  1794. "illuminate/validation": "self.version",
  1795. "illuminate/view": "self.version",
  1796. "spatie/once": "*"
  1797. },
  1798. "require-dev": {
  1799. "ably/ably-php": "^1.0",
  1800. "aws/aws-sdk-php": "^3.235.5",
  1801. "ext-gmp": "*",
  1802. "fakerphp/faker": "^1.23",
  1803. "league/flysystem-aws-s3-v3": "^3.0",
  1804. "league/flysystem-ftp": "^3.0",
  1805. "league/flysystem-path-prefixing": "^3.3",
  1806. "league/flysystem-read-only": "^3.3",
  1807. "league/flysystem-sftp-v3": "^3.0",
  1808. "mockery/mockery": "^1.6",
  1809. "nyholm/psr7": "^1.2",
  1810. "orchestra/testbench-core": "^9.5",
  1811. "pda/pheanstalk": "^5.0",
  1812. "phpstan/phpstan": "^1.11.5",
  1813. "phpunit/phpunit": "^10.5|^11.0",
  1814. "predis/predis": "^2.0.2",
  1815. "resend/resend-php": "^0.10.0",
  1816. "symfony/cache": "^7.0",
  1817. "symfony/http-client": "^7.0",
  1818. "symfony/psr-http-message-bridge": "^7.0"
  1819. },
  1820. "suggest": {
  1821. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1822. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  1823. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  1824. "ext-apcu": "Required to use the APC cache driver.",
  1825. "ext-fileinfo": "Required to use the Filesystem class.",
  1826. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1827. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1828. "ext-memcached": "Required to use the memcache cache driver.",
  1829. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  1830. "ext-pdo": "Required to use all database features.",
  1831. "ext-posix": "Required to use all features of the queue worker.",
  1832. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  1833. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1834. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1835. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1836. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  1837. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  1838. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  1839. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  1840. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  1841. "mockery/mockery": "Required to use mocking (^1.6).",
  1842. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1843. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  1844. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  1845. "predis/predis": "Required to use the predis connector (^2.0.2).",
  1846. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1847. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  1848. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  1849. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  1850. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  1851. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  1852. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  1853. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  1854. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  1855. },
  1856. "type": "library",
  1857. "extra": {
  1858. "branch-alias": {
  1859. "dev-master": "11.x-dev"
  1860. }
  1861. },
  1862. "autoload": {
  1863. "files": [
  1864. "src/Illuminate/Collections/helpers.php",
  1865. "src/Illuminate/Events/functions.php",
  1866. "src/Illuminate/Filesystem/functions.php",
  1867. "src/Illuminate/Foundation/helpers.php",
  1868. "src/Illuminate/Log/functions.php",
  1869. "src/Illuminate/Support/functions.php",
  1870. "src/Illuminate/Support/helpers.php"
  1871. ],
  1872. "psr-4": {
  1873. "Illuminate\\": "src/Illuminate/",
  1874. "Illuminate\\Support\\": [
  1875. "src/Illuminate/Macroable/",
  1876. "src/Illuminate/Collections/",
  1877. "src/Illuminate/Conditionable/"
  1878. ]
  1879. }
  1880. },
  1881. "notification-url": "https://packagist.org/downloads/",
  1882. "license": [
  1883. "MIT"
  1884. ],
  1885. "authors": [
  1886. {
  1887. "name": "Taylor Otwell",
  1888. "email": "taylor@laravel.com"
  1889. }
  1890. ],
  1891. "description": "The Laravel Framework.",
  1892. "homepage": "https://laravel.com",
  1893. "keywords": [
  1894. "framework",
  1895. "laravel"
  1896. ],
  1897. "support": {
  1898. "issues": "https://github.com/laravel/framework/issues",
  1899. "source": "https://github.com/laravel/framework"
  1900. },
  1901. "time": "2024-10-30T15:00:34+00:00"
  1902. },
  1903. {
  1904. "name": "laravel/prompts",
  1905. "version": "v0.3.2",
  1906. "source": {
  1907. "type": "git",
  1908. "url": "https://github.com/laravel/prompts.git",
  1909. "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f"
  1910. },
  1911. "dist": {
  1912. "type": "zip",
  1913. "url": "https://api.github.com/repos/laravel/prompts/zipball/0e0535747c6b8d6d10adca8b68293cf4517abb0f",
  1914. "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f",
  1915. "shasum": ""
  1916. },
  1917. "require": {
  1918. "composer-runtime-api": "^2.2",
  1919. "ext-mbstring": "*",
  1920. "php": "^8.1",
  1921. "symfony/console": "^6.2|^7.0"
  1922. },
  1923. "conflict": {
  1924. "illuminate/console": ">=10.17.0 <10.25.0",
  1925. "laravel/framework": ">=10.17.0 <10.25.0"
  1926. },
  1927. "require-dev": {
  1928. "illuminate/collections": "^10.0|^11.0",
  1929. "mockery/mockery": "^1.5",
  1930. "pestphp/pest": "^2.3|^3.4",
  1931. "phpstan/phpstan": "^1.11",
  1932. "phpstan/phpstan-mockery": "^1.1"
  1933. },
  1934. "suggest": {
  1935. "ext-pcntl": "Required for the spinner to be animated."
  1936. },
  1937. "type": "library",
  1938. "extra": {
  1939. "branch-alias": {
  1940. "dev-main": "0.3.x-dev"
  1941. }
  1942. },
  1943. "autoload": {
  1944. "files": [
  1945. "src/helpers.php"
  1946. ],
  1947. "psr-4": {
  1948. "Laravel\\Prompts\\": "src/"
  1949. }
  1950. },
  1951. "notification-url": "https://packagist.org/downloads/",
  1952. "license": [
  1953. "MIT"
  1954. ],
  1955. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  1956. "support": {
  1957. "issues": "https://github.com/laravel/prompts/issues",
  1958. "source": "https://github.com/laravel/prompts/tree/v0.3.2"
  1959. },
  1960. "time": "2024-11-12T14:59:47+00:00"
  1961. },
  1962. {
  1963. "name": "laravel/sanctum",
  1964. "version": "v4.0.5",
  1965. "source": {
  1966. "type": "git",
  1967. "url": "https://github.com/laravel/sanctum.git",
  1968. "reference": "fe361b9a63407a228f884eb78d7217f680b50140"
  1969. },
  1970. "dist": {
  1971. "type": "zip",
  1972. "url": "https://api.github.com/repos/laravel/sanctum/zipball/fe361b9a63407a228f884eb78d7217f680b50140",
  1973. "reference": "fe361b9a63407a228f884eb78d7217f680b50140",
  1974. "shasum": ""
  1975. },
  1976. "require": {
  1977. "ext-json": "*",
  1978. "illuminate/console": "^11.0",
  1979. "illuminate/contracts": "^11.0",
  1980. "illuminate/database": "^11.0",
  1981. "illuminate/support": "^11.0",
  1982. "php": "^8.2",
  1983. "symfony/console": "^7.0"
  1984. },
  1985. "require-dev": {
  1986. "mockery/mockery": "^1.6",
  1987. "orchestra/testbench": "^9.0",
  1988. "phpstan/phpstan": "^1.10",
  1989. "phpunit/phpunit": "^10.5"
  1990. },
  1991. "type": "library",
  1992. "extra": {
  1993. "laravel": {
  1994. "providers": [
  1995. "Laravel\\Sanctum\\SanctumServiceProvider"
  1996. ]
  1997. }
  1998. },
  1999. "autoload": {
  2000. "psr-4": {
  2001. "Laravel\\Sanctum\\": "src/"
  2002. }
  2003. },
  2004. "notification-url": "https://packagist.org/downloads/",
  2005. "license": [
  2006. "MIT"
  2007. ],
  2008. "authors": [
  2009. {
  2010. "name": "Taylor Otwell",
  2011. "email": "taylor@laravel.com"
  2012. }
  2013. ],
  2014. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2015. "keywords": [
  2016. "auth",
  2017. "laravel",
  2018. "sanctum"
  2019. ],
  2020. "support": {
  2021. "issues": "https://github.com/laravel/sanctum/issues",
  2022. "source": "https://github.com/laravel/sanctum"
  2023. },
  2024. "time": "2024-11-26T14:36:23+00:00"
  2025. },
  2026. {
  2027. "name": "laravel/serializable-closure",
  2028. "version": "v1.3.7",
  2029. "source": {
  2030. "type": "git",
  2031. "url": "https://github.com/laravel/serializable-closure.git",
  2032. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
  2033. },
  2034. "dist": {
  2035. "type": "zip",
  2036. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
  2037. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
  2038. "shasum": ""
  2039. },
  2040. "require": {
  2041. "php": "^7.3|^8.0"
  2042. },
  2043. "require-dev": {
  2044. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  2045. "nesbot/carbon": "^2.61|^3.0",
  2046. "pestphp/pest": "^1.21.3",
  2047. "phpstan/phpstan": "^1.8.2",
  2048. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  2049. },
  2050. "type": "library",
  2051. "extra": {
  2052. "branch-alias": {
  2053. "dev-master": "1.x-dev"
  2054. }
  2055. },
  2056. "autoload": {
  2057. "psr-4": {
  2058. "Laravel\\SerializableClosure\\": "src/"
  2059. }
  2060. },
  2061. "notification-url": "https://packagist.org/downloads/",
  2062. "license": [
  2063. "MIT"
  2064. ],
  2065. "authors": [
  2066. {
  2067. "name": "Taylor Otwell",
  2068. "email": "taylor@laravel.com"
  2069. },
  2070. {
  2071. "name": "Nuno Maduro",
  2072. "email": "nuno@laravel.com"
  2073. }
  2074. ],
  2075. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2076. "keywords": [
  2077. "closure",
  2078. "laravel",
  2079. "serializable"
  2080. ],
  2081. "support": {
  2082. "issues": "https://github.com/laravel/serializable-closure/issues",
  2083. "source": "https://github.com/laravel/serializable-closure"
  2084. },
  2085. "time": "2024-11-14T18:34:49+00:00"
  2086. },
  2087. {
  2088. "name": "laravel/tinker",
  2089. "version": "v2.10.0",
  2090. "source": {
  2091. "type": "git",
  2092. "url": "https://github.com/laravel/tinker.git",
  2093. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  2094. },
  2095. "dist": {
  2096. "type": "zip",
  2097. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2098. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2099. "shasum": ""
  2100. },
  2101. "require": {
  2102. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2103. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2104. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2105. "php": "^7.2.5|^8.0",
  2106. "psy/psysh": "^0.11.1|^0.12.0",
  2107. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2108. },
  2109. "require-dev": {
  2110. "mockery/mockery": "~1.3.3|^1.4.2",
  2111. "phpstan/phpstan": "^1.10",
  2112. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2113. },
  2114. "suggest": {
  2115. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2116. },
  2117. "type": "library",
  2118. "extra": {
  2119. "laravel": {
  2120. "providers": [
  2121. "Laravel\\Tinker\\TinkerServiceProvider"
  2122. ]
  2123. }
  2124. },
  2125. "autoload": {
  2126. "psr-4": {
  2127. "Laravel\\Tinker\\": "src/"
  2128. }
  2129. },
  2130. "notification-url": "https://packagist.org/downloads/",
  2131. "license": [
  2132. "MIT"
  2133. ],
  2134. "authors": [
  2135. {
  2136. "name": "Taylor Otwell",
  2137. "email": "taylor@laravel.com"
  2138. }
  2139. ],
  2140. "description": "Powerful REPL for the Laravel framework.",
  2141. "keywords": [
  2142. "REPL",
  2143. "Tinker",
  2144. "laravel",
  2145. "psysh"
  2146. ],
  2147. "support": {
  2148. "issues": "https://github.com/laravel/tinker/issues",
  2149. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  2150. },
  2151. "time": "2024-09-23T13:32:56+00:00"
  2152. },
  2153. {
  2154. "name": "league/commonmark",
  2155. "version": "2.5.3",
  2156. "source": {
  2157. "type": "git",
  2158. "url": "https://github.com/thephpleague/commonmark.git",
  2159. "reference": "b650144166dfa7703e62a22e493b853b58d874b0"
  2160. },
  2161. "dist": {
  2162. "type": "zip",
  2163. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
  2164. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  2165. "shasum": ""
  2166. },
  2167. "require": {
  2168. "ext-mbstring": "*",
  2169. "league/config": "^1.1.1",
  2170. "php": "^7.4 || ^8.0",
  2171. "psr/event-dispatcher": "^1.0",
  2172. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2173. "symfony/polyfill-php80": "^1.16"
  2174. },
  2175. "require-dev": {
  2176. "cebe/markdown": "^1.0",
  2177. "commonmark/cmark": "0.31.1",
  2178. "commonmark/commonmark.js": "0.31.1",
  2179. "composer/package-versions-deprecated": "^1.8",
  2180. "embed/embed": "^4.4",
  2181. "erusev/parsedown": "^1.0",
  2182. "ext-json": "*",
  2183. "github/gfm": "0.29.0",
  2184. "michelf/php-markdown": "^1.4 || ^2.0",
  2185. "nyholm/psr7": "^1.5",
  2186. "phpstan/phpstan": "^1.8.2",
  2187. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2188. "scrutinizer/ocular": "^1.8.1",
  2189. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  2190. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  2191. "unleashedtech/php-coding-standard": "^3.1.1",
  2192. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2193. },
  2194. "suggest": {
  2195. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2196. },
  2197. "type": "library",
  2198. "extra": {
  2199. "branch-alias": {
  2200. "dev-main": "2.6-dev"
  2201. }
  2202. },
  2203. "autoload": {
  2204. "psr-4": {
  2205. "League\\CommonMark\\": "src"
  2206. }
  2207. },
  2208. "notification-url": "https://packagist.org/downloads/",
  2209. "license": [
  2210. "BSD-3-Clause"
  2211. ],
  2212. "authors": [
  2213. {
  2214. "name": "Colin O'Dell",
  2215. "email": "colinodell@gmail.com",
  2216. "homepage": "https://www.colinodell.com",
  2217. "role": "Lead Developer"
  2218. }
  2219. ],
  2220. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2221. "homepage": "https://commonmark.thephpleague.com",
  2222. "keywords": [
  2223. "commonmark",
  2224. "flavored",
  2225. "gfm",
  2226. "github",
  2227. "github-flavored",
  2228. "markdown",
  2229. "md",
  2230. "parser"
  2231. ],
  2232. "support": {
  2233. "docs": "https://commonmark.thephpleague.com/",
  2234. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2235. "issues": "https://github.com/thephpleague/commonmark/issues",
  2236. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2237. "source": "https://github.com/thephpleague/commonmark"
  2238. },
  2239. "funding": [
  2240. {
  2241. "url": "https://www.colinodell.com/sponsor",
  2242. "type": "custom"
  2243. },
  2244. {
  2245. "url": "https://www.paypal.me/colinpodell/10.00",
  2246. "type": "custom"
  2247. },
  2248. {
  2249. "url": "https://github.com/colinodell",
  2250. "type": "github"
  2251. },
  2252. {
  2253. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2254. "type": "tidelift"
  2255. }
  2256. ],
  2257. "time": "2024-08-16T11:46:16+00:00"
  2258. },
  2259. {
  2260. "name": "league/config",
  2261. "version": "v1.2.0",
  2262. "source": {
  2263. "type": "git",
  2264. "url": "https://github.com/thephpleague/config.git",
  2265. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2266. },
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2270. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2271. "shasum": ""
  2272. },
  2273. "require": {
  2274. "dflydev/dot-access-data": "^3.0.1",
  2275. "nette/schema": "^1.2",
  2276. "php": "^7.4 || ^8.0"
  2277. },
  2278. "require-dev": {
  2279. "phpstan/phpstan": "^1.8.2",
  2280. "phpunit/phpunit": "^9.5.5",
  2281. "scrutinizer/ocular": "^1.8.1",
  2282. "unleashedtech/php-coding-standard": "^3.1",
  2283. "vimeo/psalm": "^4.7.3"
  2284. },
  2285. "type": "library",
  2286. "extra": {
  2287. "branch-alias": {
  2288. "dev-main": "1.2-dev"
  2289. }
  2290. },
  2291. "autoload": {
  2292. "psr-4": {
  2293. "League\\Config\\": "src"
  2294. }
  2295. },
  2296. "notification-url": "https://packagist.org/downloads/",
  2297. "license": [
  2298. "BSD-3-Clause"
  2299. ],
  2300. "authors": [
  2301. {
  2302. "name": "Colin O'Dell",
  2303. "email": "colinodell@gmail.com",
  2304. "homepage": "https://www.colinodell.com",
  2305. "role": "Lead Developer"
  2306. }
  2307. ],
  2308. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2309. "homepage": "https://config.thephpleague.com",
  2310. "keywords": [
  2311. "array",
  2312. "config",
  2313. "configuration",
  2314. "dot",
  2315. "dot-access",
  2316. "nested",
  2317. "schema"
  2318. ],
  2319. "support": {
  2320. "docs": "https://config.thephpleague.com/",
  2321. "issues": "https://github.com/thephpleague/config/issues",
  2322. "rss": "https://github.com/thephpleague/config/releases.atom",
  2323. "source": "https://github.com/thephpleague/config"
  2324. },
  2325. "funding": [
  2326. {
  2327. "url": "https://www.colinodell.com/sponsor",
  2328. "type": "custom"
  2329. },
  2330. {
  2331. "url": "https://www.paypal.me/colinpodell/10.00",
  2332. "type": "custom"
  2333. },
  2334. {
  2335. "url": "https://github.com/colinodell",
  2336. "type": "github"
  2337. }
  2338. ],
  2339. "time": "2022-12-11T20:36:23+00:00"
  2340. },
  2341. {
  2342. "name": "league/flysystem",
  2343. "version": "3.29.1",
  2344. "source": {
  2345. "type": "git",
  2346. "url": "https://github.com/thephpleague/flysystem.git",
  2347. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  2348. },
  2349. "dist": {
  2350. "type": "zip",
  2351. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2352. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2353. "shasum": ""
  2354. },
  2355. "require": {
  2356. "league/flysystem-local": "^3.0.0",
  2357. "league/mime-type-detection": "^1.0.0",
  2358. "php": "^8.0.2"
  2359. },
  2360. "conflict": {
  2361. "async-aws/core": "<1.19.0",
  2362. "async-aws/s3": "<1.14.0",
  2363. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2364. "guzzlehttp/guzzle": "<7.0",
  2365. "guzzlehttp/ringphp": "<1.1.1",
  2366. "phpseclib/phpseclib": "3.0.15",
  2367. "symfony/http-client": "<5.2"
  2368. },
  2369. "require-dev": {
  2370. "async-aws/s3": "^1.5 || ^2.0",
  2371. "async-aws/simple-s3": "^1.1 || ^2.0",
  2372. "aws/aws-sdk-php": "^3.295.10",
  2373. "composer/semver": "^3.0",
  2374. "ext-fileinfo": "*",
  2375. "ext-ftp": "*",
  2376. "ext-mongodb": "^1.3",
  2377. "ext-zip": "*",
  2378. "friendsofphp/php-cs-fixer": "^3.5",
  2379. "google/cloud-storage": "^1.23",
  2380. "guzzlehttp/psr7": "^2.6",
  2381. "microsoft/azure-storage-blob": "^1.1",
  2382. "mongodb/mongodb": "^1.2",
  2383. "phpseclib/phpseclib": "^3.0.36",
  2384. "phpstan/phpstan": "^1.10",
  2385. "phpunit/phpunit": "^9.5.11|^10.0",
  2386. "sabre/dav": "^4.6.0"
  2387. },
  2388. "type": "library",
  2389. "autoload": {
  2390. "psr-4": {
  2391. "League\\Flysystem\\": "src"
  2392. }
  2393. },
  2394. "notification-url": "https://packagist.org/downloads/",
  2395. "license": [
  2396. "MIT"
  2397. ],
  2398. "authors": [
  2399. {
  2400. "name": "Frank de Jonge",
  2401. "email": "info@frankdejonge.nl"
  2402. }
  2403. ],
  2404. "description": "File storage abstraction for PHP",
  2405. "keywords": [
  2406. "WebDAV",
  2407. "aws",
  2408. "cloud",
  2409. "file",
  2410. "files",
  2411. "filesystem",
  2412. "filesystems",
  2413. "ftp",
  2414. "s3",
  2415. "sftp",
  2416. "storage"
  2417. ],
  2418. "support": {
  2419. "issues": "https://github.com/thephpleague/flysystem/issues",
  2420. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  2421. },
  2422. "time": "2024-10-08T08:58:34+00:00"
  2423. },
  2424. {
  2425. "name": "league/flysystem-aws-s3-v3",
  2426. "version": "3.29.0",
  2427. "source": {
  2428. "type": "git",
  2429. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  2430. "reference": "c6ff6d4606e48249b63f269eba7fabdb584e76a9"
  2431. },
  2432. "dist": {
  2433. "type": "zip",
  2434. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/c6ff6d4606e48249b63f269eba7fabdb584e76a9",
  2435. "reference": "c6ff6d4606e48249b63f269eba7fabdb584e76a9",
  2436. "shasum": ""
  2437. },
  2438. "require": {
  2439. "aws/aws-sdk-php": "^3.295.10",
  2440. "league/flysystem": "^3.10.0",
  2441. "league/mime-type-detection": "^1.0.0",
  2442. "php": "^8.0.2"
  2443. },
  2444. "conflict": {
  2445. "guzzlehttp/guzzle": "<7.0",
  2446. "guzzlehttp/ringphp": "<1.1.1"
  2447. },
  2448. "type": "library",
  2449. "autoload": {
  2450. "psr-4": {
  2451. "League\\Flysystem\\AwsS3V3\\": ""
  2452. }
  2453. },
  2454. "notification-url": "https://packagist.org/downloads/",
  2455. "license": [
  2456. "MIT"
  2457. ],
  2458. "authors": [
  2459. {
  2460. "name": "Frank de Jonge",
  2461. "email": "info@frankdejonge.nl"
  2462. }
  2463. ],
  2464. "description": "AWS S3 filesystem adapter for Flysystem.",
  2465. "keywords": [
  2466. "Flysystem",
  2467. "aws",
  2468. "file",
  2469. "files",
  2470. "filesystem",
  2471. "s3",
  2472. "storage"
  2473. ],
  2474. "support": {
  2475. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.29.0"
  2476. },
  2477. "time": "2024-08-17T13:10:48+00:00"
  2478. },
  2479. {
  2480. "name": "league/flysystem-local",
  2481. "version": "3.29.0",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://github.com/thephpleague/flysystem-local.git",
  2485. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2490. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2491. "shasum": ""
  2492. },
  2493. "require": {
  2494. "ext-fileinfo": "*",
  2495. "league/flysystem": "^3.0.0",
  2496. "league/mime-type-detection": "^1.0.0",
  2497. "php": "^8.0.2"
  2498. },
  2499. "type": "library",
  2500. "autoload": {
  2501. "psr-4": {
  2502. "League\\Flysystem\\Local\\": ""
  2503. }
  2504. },
  2505. "notification-url": "https://packagist.org/downloads/",
  2506. "license": [
  2507. "MIT"
  2508. ],
  2509. "authors": [
  2510. {
  2511. "name": "Frank de Jonge",
  2512. "email": "info@frankdejonge.nl"
  2513. }
  2514. ],
  2515. "description": "Local filesystem adapter for Flysystem.",
  2516. "keywords": [
  2517. "Flysystem",
  2518. "file",
  2519. "files",
  2520. "filesystem",
  2521. "local"
  2522. ],
  2523. "support": {
  2524. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  2525. },
  2526. "time": "2024-08-09T21:24:39+00:00"
  2527. },
  2528. {
  2529. "name": "league/mime-type-detection",
  2530. "version": "1.16.0",
  2531. "source": {
  2532. "type": "git",
  2533. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2534. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  2535. },
  2536. "dist": {
  2537. "type": "zip",
  2538. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  2539. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  2540. "shasum": ""
  2541. },
  2542. "require": {
  2543. "ext-fileinfo": "*",
  2544. "php": "^7.4 || ^8.0"
  2545. },
  2546. "require-dev": {
  2547. "friendsofphp/php-cs-fixer": "^3.2",
  2548. "phpstan/phpstan": "^0.12.68",
  2549. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2550. },
  2551. "type": "library",
  2552. "autoload": {
  2553. "psr-4": {
  2554. "League\\MimeTypeDetection\\": "src"
  2555. }
  2556. },
  2557. "notification-url": "https://packagist.org/downloads/",
  2558. "license": [
  2559. "MIT"
  2560. ],
  2561. "authors": [
  2562. {
  2563. "name": "Frank de Jonge",
  2564. "email": "info@frankdejonge.nl"
  2565. }
  2566. ],
  2567. "description": "Mime-type detection for Flysystem",
  2568. "support": {
  2569. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2570. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  2571. },
  2572. "funding": [
  2573. {
  2574. "url": "https://github.com/frankdejonge",
  2575. "type": "github"
  2576. },
  2577. {
  2578. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2579. "type": "tidelift"
  2580. }
  2581. ],
  2582. "time": "2024-09-21T08:32:55+00:00"
  2583. },
  2584. {
  2585. "name": "monolog/monolog",
  2586. "version": "3.8.0",
  2587. "source": {
  2588. "type": "git",
  2589. "url": "https://github.com/Seldaek/monolog.git",
  2590. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67"
  2591. },
  2592. "dist": {
  2593. "type": "zip",
  2594. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/32e515fdc02cdafbe4593e30a9350d486b125b67",
  2595. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67",
  2596. "shasum": ""
  2597. },
  2598. "require": {
  2599. "php": ">=8.1",
  2600. "psr/log": "^2.0 || ^3.0"
  2601. },
  2602. "provide": {
  2603. "psr/log-implementation": "3.0.0"
  2604. },
  2605. "require-dev": {
  2606. "aws/aws-sdk-php": "^3.0",
  2607. "doctrine/couchdb": "~1.0@dev",
  2608. "elasticsearch/elasticsearch": "^7 || ^8",
  2609. "ext-json": "*",
  2610. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2611. "guzzlehttp/guzzle": "^7.4.5",
  2612. "guzzlehttp/psr7": "^2.2",
  2613. "mongodb/mongodb": "^1.8",
  2614. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2615. "php-console/php-console": "^3.1.8",
  2616. "phpstan/phpstan": "^2",
  2617. "phpstan/phpstan-deprecation-rules": "^2",
  2618. "phpstan/phpstan-strict-rules": "^2",
  2619. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  2620. "predis/predis": "^1.1 || ^2",
  2621. "rollbar/rollbar": "^4.0",
  2622. "ruflin/elastica": "^7 || ^8",
  2623. "symfony/mailer": "^5.4 || ^6",
  2624. "symfony/mime": "^5.4 || ^6"
  2625. },
  2626. "suggest": {
  2627. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2628. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2629. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2630. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2631. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2632. "ext-mbstring": "Allow to work properly with unicode symbols",
  2633. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2634. "ext-openssl": "Required to send log messages using SSL",
  2635. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2636. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2637. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2638. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2639. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2640. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2641. },
  2642. "type": "library",
  2643. "extra": {
  2644. "branch-alias": {
  2645. "dev-main": "3.x-dev"
  2646. }
  2647. },
  2648. "autoload": {
  2649. "psr-4": {
  2650. "Monolog\\": "src/Monolog"
  2651. }
  2652. },
  2653. "notification-url": "https://packagist.org/downloads/",
  2654. "license": [
  2655. "MIT"
  2656. ],
  2657. "authors": [
  2658. {
  2659. "name": "Jordi Boggiano",
  2660. "email": "j.boggiano@seld.be",
  2661. "homepage": "https://seld.be"
  2662. }
  2663. ],
  2664. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2665. "homepage": "https://github.com/Seldaek/monolog",
  2666. "keywords": [
  2667. "log",
  2668. "logging",
  2669. "psr-3"
  2670. ],
  2671. "support": {
  2672. "issues": "https://github.com/Seldaek/monolog/issues",
  2673. "source": "https://github.com/Seldaek/monolog/tree/3.8.0"
  2674. },
  2675. "funding": [
  2676. {
  2677. "url": "https://github.com/Seldaek",
  2678. "type": "github"
  2679. },
  2680. {
  2681. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2682. "type": "tidelift"
  2683. }
  2684. ],
  2685. "time": "2024-11-12T13:57:08+00:00"
  2686. },
  2687. {
  2688. "name": "mpociot/reflection-docblock",
  2689. "version": "1.0.1",
  2690. "source": {
  2691. "type": "git",
  2692. "url": "https://github.com/mpociot/reflection-docblock.git",
  2693. "reference": "c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587"
  2694. },
  2695. "dist": {
  2696. "type": "zip",
  2697. "url": "https://api.github.com/repos/mpociot/reflection-docblock/zipball/c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587",
  2698. "reference": "c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587",
  2699. "shasum": ""
  2700. },
  2701. "require": {
  2702. "php": ">=5.3.3"
  2703. },
  2704. "require-dev": {
  2705. "phpunit/phpunit": "~4.0"
  2706. },
  2707. "suggest": {
  2708. "dflydev/markdown": "~1.0",
  2709. "erusev/parsedown": "~1.0"
  2710. },
  2711. "type": "library",
  2712. "extra": {
  2713. "branch-alias": {
  2714. "dev-master": "2.0.x-dev"
  2715. }
  2716. },
  2717. "autoload": {
  2718. "psr-0": {
  2719. "Mpociot": [
  2720. "src/"
  2721. ]
  2722. }
  2723. },
  2724. "notification-url": "https://packagist.org/downloads/",
  2725. "license": [
  2726. "MIT"
  2727. ],
  2728. "authors": [
  2729. {
  2730. "name": "Mike van Riel",
  2731. "email": "mike.vanriel@naenius.com"
  2732. }
  2733. ],
  2734. "support": {
  2735. "issues": "https://github.com/mpociot/reflection-docblock/issues",
  2736. "source": "https://github.com/mpociot/reflection-docblock/tree/master"
  2737. },
  2738. "time": "2016-06-20T20:53:12+00:00"
  2739. },
  2740. {
  2741. "name": "mtdowling/jmespath.php",
  2742. "version": "2.8.0",
  2743. "source": {
  2744. "type": "git",
  2745. "url": "https://github.com/jmespath/jmespath.php.git",
  2746. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  2747. },
  2748. "dist": {
  2749. "type": "zip",
  2750. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  2751. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  2752. "shasum": ""
  2753. },
  2754. "require": {
  2755. "php": "^7.2.5 || ^8.0",
  2756. "symfony/polyfill-mbstring": "^1.17"
  2757. },
  2758. "require-dev": {
  2759. "composer/xdebug-handler": "^3.0.3",
  2760. "phpunit/phpunit": "^8.5.33"
  2761. },
  2762. "bin": [
  2763. "bin/jp.php"
  2764. ],
  2765. "type": "library",
  2766. "extra": {
  2767. "branch-alias": {
  2768. "dev-master": "2.8-dev"
  2769. }
  2770. },
  2771. "autoload": {
  2772. "files": [
  2773. "src/JmesPath.php"
  2774. ],
  2775. "psr-4": {
  2776. "JmesPath\\": "src/"
  2777. }
  2778. },
  2779. "notification-url": "https://packagist.org/downloads/",
  2780. "license": [
  2781. "MIT"
  2782. ],
  2783. "authors": [
  2784. {
  2785. "name": "Graham Campbell",
  2786. "email": "hello@gjcampbell.co.uk",
  2787. "homepage": "https://github.com/GrahamCampbell"
  2788. },
  2789. {
  2790. "name": "Michael Dowling",
  2791. "email": "mtdowling@gmail.com",
  2792. "homepage": "https://github.com/mtdowling"
  2793. }
  2794. ],
  2795. "description": "Declaratively specify how to extract elements from a JSON document",
  2796. "keywords": [
  2797. "json",
  2798. "jsonpath"
  2799. ],
  2800. "support": {
  2801. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2802. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  2803. },
  2804. "time": "2024-09-04T18:46:31+00:00"
  2805. },
  2806. {
  2807. "name": "nesbot/carbon",
  2808. "version": "3.8.2",
  2809. "source": {
  2810. "type": "git",
  2811. "url": "https://github.com/briannesbitt/Carbon.git",
  2812. "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947"
  2813. },
  2814. "dist": {
  2815. "type": "zip",
  2816. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/e1268cdbc486d97ce23fef2c666dc3c6b6de9947",
  2817. "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947",
  2818. "shasum": ""
  2819. },
  2820. "require": {
  2821. "carbonphp/carbon-doctrine-types": "<100.0",
  2822. "ext-json": "*",
  2823. "php": "^8.1",
  2824. "psr/clock": "^1.0",
  2825. "symfony/clock": "^6.3 || ^7.0",
  2826. "symfony/polyfill-mbstring": "^1.0",
  2827. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  2828. },
  2829. "provide": {
  2830. "psr/clock-implementation": "1.0"
  2831. },
  2832. "require-dev": {
  2833. "doctrine/dbal": "^3.6.3 || ^4.0",
  2834. "doctrine/orm": "^2.15.2 || ^3.0",
  2835. "friendsofphp/php-cs-fixer": "^3.57.2",
  2836. "kylekatarnls/multi-tester": "^2.5.3",
  2837. "ondrejmirtes/better-reflection": "^6.25.0.4",
  2838. "phpmd/phpmd": "^2.15.0",
  2839. "phpstan/extension-installer": "^1.3.1",
  2840. "phpstan/phpstan": "^1.11.2",
  2841. "phpunit/phpunit": "^10.5.20",
  2842. "squizlabs/php_codesniffer": "^3.9.0"
  2843. },
  2844. "bin": [
  2845. "bin/carbon"
  2846. ],
  2847. "type": "library",
  2848. "extra": {
  2849. "branch-alias": {
  2850. "dev-master": "3.x-dev",
  2851. "dev-2.x": "2.x-dev"
  2852. },
  2853. "laravel": {
  2854. "providers": [
  2855. "Carbon\\Laravel\\ServiceProvider"
  2856. ]
  2857. },
  2858. "phpstan": {
  2859. "includes": [
  2860. "extension.neon"
  2861. ]
  2862. }
  2863. },
  2864. "autoload": {
  2865. "psr-4": {
  2866. "Carbon\\": "src/Carbon/"
  2867. }
  2868. },
  2869. "notification-url": "https://packagist.org/downloads/",
  2870. "license": [
  2871. "MIT"
  2872. ],
  2873. "authors": [
  2874. {
  2875. "name": "Brian Nesbitt",
  2876. "email": "brian@nesbot.com",
  2877. "homepage": "https://markido.com"
  2878. },
  2879. {
  2880. "name": "kylekatarnls",
  2881. "homepage": "https://github.com/kylekatarnls"
  2882. }
  2883. ],
  2884. "description": "An API extension for DateTime that supports 281 different languages.",
  2885. "homepage": "https://carbon.nesbot.com",
  2886. "keywords": [
  2887. "date",
  2888. "datetime",
  2889. "time"
  2890. ],
  2891. "support": {
  2892. "docs": "https://carbon.nesbot.com/docs",
  2893. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2894. "source": "https://github.com/briannesbitt/Carbon"
  2895. },
  2896. "funding": [
  2897. {
  2898. "url": "https://github.com/sponsors/kylekatarnls",
  2899. "type": "github"
  2900. },
  2901. {
  2902. "url": "https://opencollective.com/Carbon#sponsor",
  2903. "type": "opencollective"
  2904. },
  2905. {
  2906. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2907. "type": "tidelift"
  2908. }
  2909. ],
  2910. "time": "2024-11-07T17:46:48+00:00"
  2911. },
  2912. {
  2913. "name": "nette/schema",
  2914. "version": "v1.3.2",
  2915. "source": {
  2916. "type": "git",
  2917. "url": "https://github.com/nette/schema.git",
  2918. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  2919. },
  2920. "dist": {
  2921. "type": "zip",
  2922. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  2923. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  2924. "shasum": ""
  2925. },
  2926. "require": {
  2927. "nette/utils": "^4.0",
  2928. "php": "8.1 - 8.4"
  2929. },
  2930. "require-dev": {
  2931. "nette/tester": "^2.5.2",
  2932. "phpstan/phpstan-nette": "^1.0",
  2933. "tracy/tracy": "^2.8"
  2934. },
  2935. "type": "library",
  2936. "extra": {
  2937. "branch-alias": {
  2938. "dev-master": "1.3-dev"
  2939. }
  2940. },
  2941. "autoload": {
  2942. "classmap": [
  2943. "src/"
  2944. ]
  2945. },
  2946. "notification-url": "https://packagist.org/downloads/",
  2947. "license": [
  2948. "BSD-3-Clause",
  2949. "GPL-2.0-only",
  2950. "GPL-3.0-only"
  2951. ],
  2952. "authors": [
  2953. {
  2954. "name": "David Grudl",
  2955. "homepage": "https://davidgrudl.com"
  2956. },
  2957. {
  2958. "name": "Nette Community",
  2959. "homepage": "https://nette.org/contributors"
  2960. }
  2961. ],
  2962. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2963. "homepage": "https://nette.org",
  2964. "keywords": [
  2965. "config",
  2966. "nette"
  2967. ],
  2968. "support": {
  2969. "issues": "https://github.com/nette/schema/issues",
  2970. "source": "https://github.com/nette/schema/tree/v1.3.2"
  2971. },
  2972. "time": "2024-10-06T23:10:23+00:00"
  2973. },
  2974. {
  2975. "name": "nette/utils",
  2976. "version": "v4.0.5",
  2977. "source": {
  2978. "type": "git",
  2979. "url": "https://github.com/nette/utils.git",
  2980. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  2981. },
  2982. "dist": {
  2983. "type": "zip",
  2984. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2985. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2986. "shasum": ""
  2987. },
  2988. "require": {
  2989. "php": "8.0 - 8.4"
  2990. },
  2991. "conflict": {
  2992. "nette/finder": "<3",
  2993. "nette/schema": "<1.2.2"
  2994. },
  2995. "require-dev": {
  2996. "jetbrains/phpstorm-attributes": "dev-master",
  2997. "nette/tester": "^2.5",
  2998. "phpstan/phpstan": "^1.0",
  2999. "tracy/tracy": "^2.9"
  3000. },
  3001. "suggest": {
  3002. "ext-gd": "to use Image",
  3003. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3004. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3005. "ext-json": "to use Nette\\Utils\\Json",
  3006. "ext-mbstring": "to use Strings::lower() etc...",
  3007. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3008. },
  3009. "type": "library",
  3010. "extra": {
  3011. "branch-alias": {
  3012. "dev-master": "4.0-dev"
  3013. }
  3014. },
  3015. "autoload": {
  3016. "classmap": [
  3017. "src/"
  3018. ]
  3019. },
  3020. "notification-url": "https://packagist.org/downloads/",
  3021. "license": [
  3022. "BSD-3-Clause",
  3023. "GPL-2.0-only",
  3024. "GPL-3.0-only"
  3025. ],
  3026. "authors": [
  3027. {
  3028. "name": "David Grudl",
  3029. "homepage": "https://davidgrudl.com"
  3030. },
  3031. {
  3032. "name": "Nette Community",
  3033. "homepage": "https://nette.org/contributors"
  3034. }
  3035. ],
  3036. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3037. "homepage": "https://nette.org",
  3038. "keywords": [
  3039. "array",
  3040. "core",
  3041. "datetime",
  3042. "images",
  3043. "json",
  3044. "nette",
  3045. "paginator",
  3046. "password",
  3047. "slugify",
  3048. "string",
  3049. "unicode",
  3050. "utf-8",
  3051. "utility",
  3052. "validation"
  3053. ],
  3054. "support": {
  3055. "issues": "https://github.com/nette/utils/issues",
  3056. "source": "https://github.com/nette/utils/tree/v4.0.5"
  3057. },
  3058. "time": "2024-08-07T15:39:19+00:00"
  3059. },
  3060. {
  3061. "name": "nikic/php-parser",
  3062. "version": "v5.3.1",
  3063. "source": {
  3064. "type": "git",
  3065. "url": "https://github.com/nikic/PHP-Parser.git",
  3066. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  3067. },
  3068. "dist": {
  3069. "type": "zip",
  3070. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  3071. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  3072. "shasum": ""
  3073. },
  3074. "require": {
  3075. "ext-ctype": "*",
  3076. "ext-json": "*",
  3077. "ext-tokenizer": "*",
  3078. "php": ">=7.4"
  3079. },
  3080. "require-dev": {
  3081. "ircmaxell/php-yacc": "^0.0.7",
  3082. "phpunit/phpunit": "^9.0"
  3083. },
  3084. "bin": [
  3085. "bin/php-parse"
  3086. ],
  3087. "type": "library",
  3088. "extra": {
  3089. "branch-alias": {
  3090. "dev-master": "5.0-dev"
  3091. }
  3092. },
  3093. "autoload": {
  3094. "psr-4": {
  3095. "PhpParser\\": "lib/PhpParser"
  3096. }
  3097. },
  3098. "notification-url": "https://packagist.org/downloads/",
  3099. "license": [
  3100. "BSD-3-Clause"
  3101. ],
  3102. "authors": [
  3103. {
  3104. "name": "Nikita Popov"
  3105. }
  3106. ],
  3107. "description": "A PHP parser written in PHP",
  3108. "keywords": [
  3109. "parser",
  3110. "php"
  3111. ],
  3112. "support": {
  3113. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3114. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  3115. },
  3116. "time": "2024-10-08T18:51:32+00:00"
  3117. },
  3118. {
  3119. "name": "nunomaduro/collision",
  3120. "version": "v8.5.0",
  3121. "source": {
  3122. "type": "git",
  3123. "url": "https://github.com/nunomaduro/collision.git",
  3124. "reference": "f5c101b929c958e849a633283adff296ed5f38f5"
  3125. },
  3126. "dist": {
  3127. "type": "zip",
  3128. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f5c101b929c958e849a633283adff296ed5f38f5",
  3129. "reference": "f5c101b929c958e849a633283adff296ed5f38f5",
  3130. "shasum": ""
  3131. },
  3132. "require": {
  3133. "filp/whoops": "^2.16.0",
  3134. "nunomaduro/termwind": "^2.1.0",
  3135. "php": "^8.2.0",
  3136. "symfony/console": "^7.1.5"
  3137. },
  3138. "conflict": {
  3139. "laravel/framework": "<11.0.0 || >=12.0.0",
  3140. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  3141. },
  3142. "require-dev": {
  3143. "larastan/larastan": "^2.9.8",
  3144. "laravel/framework": "^11.28.0",
  3145. "laravel/pint": "^1.18.1",
  3146. "laravel/sail": "^1.36.0",
  3147. "laravel/sanctum": "^4.0.3",
  3148. "laravel/tinker": "^2.10.0",
  3149. "orchestra/testbench-core": "^9.5.3",
  3150. "pestphp/pest": "^2.36.0 || ^3.4.0",
  3151. "sebastian/environment": "^6.1.0 || ^7.2.0"
  3152. },
  3153. "type": "library",
  3154. "extra": {
  3155. "laravel": {
  3156. "providers": [
  3157. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  3158. ]
  3159. },
  3160. "branch-alias": {
  3161. "dev-8.x": "8.x-dev"
  3162. }
  3163. },
  3164. "autoload": {
  3165. "files": [
  3166. "./src/Adapters/Phpunit/Autoload.php"
  3167. ],
  3168. "psr-4": {
  3169. "NunoMaduro\\Collision\\": "src/"
  3170. }
  3171. },
  3172. "notification-url": "https://packagist.org/downloads/",
  3173. "license": [
  3174. "MIT"
  3175. ],
  3176. "authors": [
  3177. {
  3178. "name": "Nuno Maduro",
  3179. "email": "enunomaduro@gmail.com"
  3180. }
  3181. ],
  3182. "description": "Cli error handling for console/command-line PHP applications.",
  3183. "keywords": [
  3184. "artisan",
  3185. "cli",
  3186. "command-line",
  3187. "console",
  3188. "error",
  3189. "handling",
  3190. "laravel",
  3191. "laravel-zero",
  3192. "php",
  3193. "symfony"
  3194. ],
  3195. "support": {
  3196. "issues": "https://github.com/nunomaduro/collision/issues",
  3197. "source": "https://github.com/nunomaduro/collision"
  3198. },
  3199. "funding": [
  3200. {
  3201. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3202. "type": "custom"
  3203. },
  3204. {
  3205. "url": "https://github.com/nunomaduro",
  3206. "type": "github"
  3207. },
  3208. {
  3209. "url": "https://www.patreon.com/nunomaduro",
  3210. "type": "patreon"
  3211. }
  3212. ],
  3213. "time": "2024-10-15T16:06:32+00:00"
  3214. },
  3215. {
  3216. "name": "nunomaduro/termwind",
  3217. "version": "v2.3.0",
  3218. "source": {
  3219. "type": "git",
  3220. "url": "https://github.com/nunomaduro/termwind.git",
  3221. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda"
  3222. },
  3223. "dist": {
  3224. "type": "zip",
  3225. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  3226. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  3227. "shasum": ""
  3228. },
  3229. "require": {
  3230. "ext-mbstring": "*",
  3231. "php": "^8.2",
  3232. "symfony/console": "^7.1.8"
  3233. },
  3234. "require-dev": {
  3235. "illuminate/console": "^11.33.2",
  3236. "laravel/pint": "^1.18.2",
  3237. "mockery/mockery": "^1.6.12",
  3238. "pestphp/pest": "^2.36.0",
  3239. "phpstan/phpstan": "^1.12.11",
  3240. "phpstan/phpstan-strict-rules": "^1.6.1",
  3241. "symfony/var-dumper": "^7.1.8",
  3242. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3243. },
  3244. "type": "library",
  3245. "extra": {
  3246. "laravel": {
  3247. "providers": [
  3248. "Termwind\\Laravel\\TermwindServiceProvider"
  3249. ]
  3250. },
  3251. "branch-alias": {
  3252. "dev-2.x": "2.x-dev"
  3253. }
  3254. },
  3255. "autoload": {
  3256. "files": [
  3257. "src/Functions.php"
  3258. ],
  3259. "psr-4": {
  3260. "Termwind\\": "src/"
  3261. }
  3262. },
  3263. "notification-url": "https://packagist.org/downloads/",
  3264. "license": [
  3265. "MIT"
  3266. ],
  3267. "authors": [
  3268. {
  3269. "name": "Nuno Maduro",
  3270. "email": "enunomaduro@gmail.com"
  3271. }
  3272. ],
  3273. "description": "Its like Tailwind CSS, but for the console.",
  3274. "keywords": [
  3275. "cli",
  3276. "console",
  3277. "css",
  3278. "package",
  3279. "php",
  3280. "style"
  3281. ],
  3282. "support": {
  3283. "issues": "https://github.com/nunomaduro/termwind/issues",
  3284. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0"
  3285. },
  3286. "funding": [
  3287. {
  3288. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3289. "type": "custom"
  3290. },
  3291. {
  3292. "url": "https://github.com/nunomaduro",
  3293. "type": "github"
  3294. },
  3295. {
  3296. "url": "https://github.com/xiCO2k",
  3297. "type": "github"
  3298. }
  3299. ],
  3300. "time": "2024-11-21T10:39:51+00:00"
  3301. },
  3302. {
  3303. "name": "nyholm/psr7",
  3304. "version": "1.8.2",
  3305. "source": {
  3306. "type": "git",
  3307. "url": "https://github.com/Nyholm/psr7.git",
  3308. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3"
  3309. },
  3310. "dist": {
  3311. "type": "zip",
  3312. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  3313. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  3314. "shasum": ""
  3315. },
  3316. "require": {
  3317. "php": ">=7.2",
  3318. "psr/http-factory": "^1.0",
  3319. "psr/http-message": "^1.1 || ^2.0"
  3320. },
  3321. "provide": {
  3322. "php-http/message-factory-implementation": "1.0",
  3323. "psr/http-factory-implementation": "1.0",
  3324. "psr/http-message-implementation": "1.0"
  3325. },
  3326. "require-dev": {
  3327. "http-interop/http-factory-tests": "^0.9",
  3328. "php-http/message-factory": "^1.0",
  3329. "php-http/psr7-integration-tests": "^1.0",
  3330. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  3331. "symfony/error-handler": "^4.4"
  3332. },
  3333. "type": "library",
  3334. "extra": {
  3335. "branch-alias": {
  3336. "dev-master": "1.8-dev"
  3337. }
  3338. },
  3339. "autoload": {
  3340. "psr-4": {
  3341. "Nyholm\\Psr7\\": "src/"
  3342. }
  3343. },
  3344. "notification-url": "https://packagist.org/downloads/",
  3345. "license": [
  3346. "MIT"
  3347. ],
  3348. "authors": [
  3349. {
  3350. "name": "Tobias Nyholm",
  3351. "email": "tobias.nyholm@gmail.com"
  3352. },
  3353. {
  3354. "name": "Martijn van der Ven",
  3355. "email": "martijn@vanderven.se"
  3356. }
  3357. ],
  3358. "description": "A fast PHP7 implementation of PSR-7",
  3359. "homepage": "https://tnyholm.se",
  3360. "keywords": [
  3361. "psr-17",
  3362. "psr-7"
  3363. ],
  3364. "support": {
  3365. "issues": "https://github.com/Nyholm/psr7/issues",
  3366. "source": "https://github.com/Nyholm/psr7/tree/1.8.2"
  3367. },
  3368. "funding": [
  3369. {
  3370. "url": "https://github.com/Zegnat",
  3371. "type": "github"
  3372. },
  3373. {
  3374. "url": "https://github.com/nyholm",
  3375. "type": "github"
  3376. }
  3377. ],
  3378. "time": "2024-09-09T07:06:30+00:00"
  3379. },
  3380. {
  3381. "name": "nyholm/psr7-server",
  3382. "version": "1.1.0",
  3383. "source": {
  3384. "type": "git",
  3385. "url": "https://github.com/Nyholm/psr7-server.git",
  3386. "reference": "4335801d851f554ca43fa6e7d2602141538854dc"
  3387. },
  3388. "dist": {
  3389. "type": "zip",
  3390. "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/4335801d851f554ca43fa6e7d2602141538854dc",
  3391. "reference": "4335801d851f554ca43fa6e7d2602141538854dc",
  3392. "shasum": ""
  3393. },
  3394. "require": {
  3395. "php": "^7.1 || ^8.0",
  3396. "psr/http-factory": "^1.0",
  3397. "psr/http-message": "^1.0 || ^2.0"
  3398. },
  3399. "require-dev": {
  3400. "nyholm/nsa": "^1.1",
  3401. "nyholm/psr7": "^1.3",
  3402. "phpunit/phpunit": "^7.0 || ^8.5 || ^9.3"
  3403. },
  3404. "type": "library",
  3405. "autoload": {
  3406. "psr-4": {
  3407. "Nyholm\\Psr7Server\\": "src/"
  3408. }
  3409. },
  3410. "notification-url": "https://packagist.org/downloads/",
  3411. "license": [
  3412. "MIT"
  3413. ],
  3414. "authors": [
  3415. {
  3416. "name": "Tobias Nyholm",
  3417. "email": "tobias.nyholm@gmail.com"
  3418. },
  3419. {
  3420. "name": "Martijn van der Ven",
  3421. "email": "martijn@vanderven.se"
  3422. }
  3423. ],
  3424. "description": "Helper classes to handle PSR-7 server requests",
  3425. "homepage": "http://tnyholm.se",
  3426. "keywords": [
  3427. "psr-17",
  3428. "psr-7"
  3429. ],
  3430. "support": {
  3431. "issues": "https://github.com/Nyholm/psr7-server/issues",
  3432. "source": "https://github.com/Nyholm/psr7-server/tree/1.1.0"
  3433. },
  3434. "funding": [
  3435. {
  3436. "url": "https://github.com/Zegnat",
  3437. "type": "github"
  3438. },
  3439. {
  3440. "url": "https://github.com/nyholm",
  3441. "type": "github"
  3442. }
  3443. ],
  3444. "time": "2023-11-08T09:30:43+00:00"
  3445. },
  3446. {
  3447. "name": "overtrue/easy-sms",
  3448. "version": "3.0.1",
  3449. "source": {
  3450. "type": "git",
  3451. "url": "https://github.com/overtrue/easy-sms.git",
  3452. "reference": "b97d8b785ae07fe8c181de8d9d1f7f146a5977f7"
  3453. },
  3454. "dist": {
  3455. "type": "zip",
  3456. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/b97d8b785ae07fe8c181de8d9d1f7f146a5977f7",
  3457. "reference": "b97d8b785ae07fe8c181de8d9d1f7f146a5977f7",
  3458. "shasum": ""
  3459. },
  3460. "require": {
  3461. "ext-json": "*",
  3462. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3463. "php": ">=8.0"
  3464. },
  3465. "require-dev": {
  3466. "friendsofphp/php-cs-fixer": "^3.54",
  3467. "jetbrains/phpstorm-attributes": "^1.0",
  3468. "mockery/mockery": "^1.4.2",
  3469. "phpunit/phpunit": "^9.5.8"
  3470. },
  3471. "type": "library",
  3472. "autoload": {
  3473. "psr-4": {
  3474. "Overtrue\\EasySms\\": "src"
  3475. }
  3476. },
  3477. "notification-url": "https://packagist.org/downloads/",
  3478. "license": [
  3479. "MIT"
  3480. ],
  3481. "authors": [
  3482. {
  3483. "name": "overtrue",
  3484. "email": "i@overtrue.me"
  3485. }
  3486. ],
  3487. "description": "The easiest way to send short message.",
  3488. "support": {
  3489. "issues": "https://github.com/overtrue/easy-sms/issues",
  3490. "source": "https://github.com/overtrue/easy-sms/tree/3.0.1"
  3491. },
  3492. "funding": [
  3493. {
  3494. "url": "https://github.com/overtrue",
  3495. "type": "github"
  3496. }
  3497. ],
  3498. "time": "2024-07-16T06:07:02+00:00"
  3499. },
  3500. {
  3501. "name": "overtrue/laravel-wechat",
  3502. "version": "7.3.0",
  3503. "source": {
  3504. "type": "git",
  3505. "url": "https://github.com/overtrue/laravel-wechat.git",
  3506. "reference": "b3e89dddc45da4eb3d5322a10dee9dc65e619579"
  3507. },
  3508. "dist": {
  3509. "type": "zip",
  3510. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/b3e89dddc45da4eb3d5322a10dee9dc65e619579",
  3511. "reference": "b3e89dddc45da4eb3d5322a10dee9dc65e619579",
  3512. "shasum": ""
  3513. },
  3514. "require": {
  3515. "illuminate/container": "^9.0|^10.0|^11.0",
  3516. "w7corp/easywechat": "^6.0.0"
  3517. },
  3518. "require-dev": {
  3519. "brainmaestro/composer-git-hooks": "dev-master",
  3520. "jetbrains/phpstorm-attributes": "^1.0",
  3521. "laravel/framework": "^10.0",
  3522. "laravel/pint": "^1.5"
  3523. },
  3524. "type": "library",
  3525. "extra": {
  3526. "laravel": {
  3527. "providers": [
  3528. "Overtrue\\LaravelWeChat\\ServiceProvider"
  3529. ]
  3530. },
  3531. "hooks": {
  3532. "pre-commit": [
  3533. "composer check-style"
  3534. ],
  3535. "pre-push": [
  3536. "composer check-style"
  3537. ]
  3538. }
  3539. },
  3540. "autoload": {
  3541. "psr-4": {
  3542. "Overtrue\\LaravelWeChat\\": "src/"
  3543. }
  3544. },
  3545. "notification-url": "https://packagist.org/downloads/",
  3546. "license": [
  3547. "MIT"
  3548. ],
  3549. "authors": [
  3550. {
  3551. "name": "overtrue",
  3552. "email": "anzhengchao@gmail.com"
  3553. }
  3554. ],
  3555. "description": "微信 SDK for Laravel",
  3556. "keywords": [
  3557. "laravel",
  3558. "sdk",
  3559. "wechat",
  3560. "weixin"
  3561. ],
  3562. "support": {
  3563. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  3564. "source": "https://github.com/overtrue/laravel-wechat/tree/7.3.0"
  3565. },
  3566. "funding": [
  3567. {
  3568. "url": "https://github.com/overtrue",
  3569. "type": "github"
  3570. }
  3571. ],
  3572. "time": "2024-03-13T02:06:36+00:00"
  3573. },
  3574. {
  3575. "name": "overtrue/socialite",
  3576. "version": "4.11.2",
  3577. "source": {
  3578. "type": "git",
  3579. "url": "https://github.com/overtrue/socialite.git",
  3580. "reference": "83dd537a88b30cd9204ee2c46a5b2e181bc1fa66"
  3581. },
  3582. "dist": {
  3583. "type": "zip",
  3584. "url": "https://api.github.com/repos/overtrue/socialite/zipball/83dd537a88b30cd9204ee2c46a5b2e181bc1fa66",
  3585. "reference": "83dd537a88b30cd9204ee2c46a5b2e181bc1fa66",
  3586. "shasum": ""
  3587. },
  3588. "require": {
  3589. "ext-json": "*",
  3590. "ext-openssl": "*",
  3591. "guzzlehttp/guzzle": "^7.0",
  3592. "php": ">=8.0.2"
  3593. },
  3594. "require-dev": {
  3595. "jetbrains/phpstorm-attributes": "^1.0",
  3596. "laravel/pint": "^1.2",
  3597. "mockery/mockery": "^1.3",
  3598. "phpstan/phpstan": "^1.7",
  3599. "phpunit/phpunit": "^11.3"
  3600. },
  3601. "type": "library",
  3602. "autoload": {
  3603. "files": [
  3604. "src/Contracts/FactoryInterface.php",
  3605. "src/Contracts/UserInterface.php",
  3606. "src/Contracts/ProviderInterface.php"
  3607. ],
  3608. "psr-4": {
  3609. "Overtrue\\Socialite\\": "src/"
  3610. }
  3611. },
  3612. "notification-url": "https://packagist.org/downloads/",
  3613. "license": [
  3614. "MIT"
  3615. ],
  3616. "authors": [
  3617. {
  3618. "name": "overtrue",
  3619. "email": "anzhengchao@gmail.com"
  3620. }
  3621. ],
  3622. "description": "A collection of OAuth 2 packages.",
  3623. "keywords": [
  3624. "Feishu",
  3625. "login",
  3626. "oauth",
  3627. "qcloud",
  3628. "qq",
  3629. "social",
  3630. "wechat",
  3631. "weibo"
  3632. ],
  3633. "support": {
  3634. "issues": "https://github.com/overtrue/socialite/issues",
  3635. "source": "https://github.com/overtrue/socialite/tree/4.11.2"
  3636. },
  3637. "funding": [
  3638. {
  3639. "url": "https://github.com/overtrue",
  3640. "type": "github"
  3641. }
  3642. ],
  3643. "time": "2024-10-08T16:23:14+00:00"
  3644. },
  3645. {
  3646. "name": "phpoption/phpoption",
  3647. "version": "1.9.3",
  3648. "source": {
  3649. "type": "git",
  3650. "url": "https://github.com/schmittjoh/php-option.git",
  3651. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3652. },
  3653. "dist": {
  3654. "type": "zip",
  3655. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3656. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3657. "shasum": ""
  3658. },
  3659. "require": {
  3660. "php": "^7.2.5 || ^8.0"
  3661. },
  3662. "require-dev": {
  3663. "bamarni/composer-bin-plugin": "^1.8.2",
  3664. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3665. },
  3666. "type": "library",
  3667. "extra": {
  3668. "bamarni-bin": {
  3669. "bin-links": true,
  3670. "forward-command": false
  3671. },
  3672. "branch-alias": {
  3673. "dev-master": "1.9-dev"
  3674. }
  3675. },
  3676. "autoload": {
  3677. "psr-4": {
  3678. "PhpOption\\": "src/PhpOption/"
  3679. }
  3680. },
  3681. "notification-url": "https://packagist.org/downloads/",
  3682. "license": [
  3683. "Apache-2.0"
  3684. ],
  3685. "authors": [
  3686. {
  3687. "name": "Johannes M. Schmitt",
  3688. "email": "schmittjoh@gmail.com",
  3689. "homepage": "https://github.com/schmittjoh"
  3690. },
  3691. {
  3692. "name": "Graham Campbell",
  3693. "email": "hello@gjcampbell.co.uk",
  3694. "homepage": "https://github.com/GrahamCampbell"
  3695. }
  3696. ],
  3697. "description": "Option Type for PHP",
  3698. "keywords": [
  3699. "language",
  3700. "option",
  3701. "php",
  3702. "type"
  3703. ],
  3704. "support": {
  3705. "issues": "https://github.com/schmittjoh/php-option/issues",
  3706. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3707. },
  3708. "funding": [
  3709. {
  3710. "url": "https://github.com/GrahamCampbell",
  3711. "type": "github"
  3712. },
  3713. {
  3714. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3715. "type": "tidelift"
  3716. }
  3717. ],
  3718. "time": "2024-07-20T21:41:07+00:00"
  3719. },
  3720. {
  3721. "name": "psr/cache",
  3722. "version": "3.0.0",
  3723. "source": {
  3724. "type": "git",
  3725. "url": "https://github.com/php-fig/cache.git",
  3726. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  3727. },
  3728. "dist": {
  3729. "type": "zip",
  3730. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3731. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3732. "shasum": ""
  3733. },
  3734. "require": {
  3735. "php": ">=8.0.0"
  3736. },
  3737. "type": "library",
  3738. "extra": {
  3739. "branch-alias": {
  3740. "dev-master": "1.0.x-dev"
  3741. }
  3742. },
  3743. "autoload": {
  3744. "psr-4": {
  3745. "Psr\\Cache\\": "src/"
  3746. }
  3747. },
  3748. "notification-url": "https://packagist.org/downloads/",
  3749. "license": [
  3750. "MIT"
  3751. ],
  3752. "authors": [
  3753. {
  3754. "name": "PHP-FIG",
  3755. "homepage": "https://www.php-fig.org/"
  3756. }
  3757. ],
  3758. "description": "Common interface for caching libraries",
  3759. "keywords": [
  3760. "cache",
  3761. "psr",
  3762. "psr-6"
  3763. ],
  3764. "support": {
  3765. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  3766. },
  3767. "time": "2021-02-03T23:26:27+00:00"
  3768. },
  3769. {
  3770. "name": "psr/clock",
  3771. "version": "1.0.0",
  3772. "source": {
  3773. "type": "git",
  3774. "url": "https://github.com/php-fig/clock.git",
  3775. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3776. },
  3777. "dist": {
  3778. "type": "zip",
  3779. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3780. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3781. "shasum": ""
  3782. },
  3783. "require": {
  3784. "php": "^7.0 || ^8.0"
  3785. },
  3786. "type": "library",
  3787. "autoload": {
  3788. "psr-4": {
  3789. "Psr\\Clock\\": "src/"
  3790. }
  3791. },
  3792. "notification-url": "https://packagist.org/downloads/",
  3793. "license": [
  3794. "MIT"
  3795. ],
  3796. "authors": [
  3797. {
  3798. "name": "PHP-FIG",
  3799. "homepage": "https://www.php-fig.org/"
  3800. }
  3801. ],
  3802. "description": "Common interface for reading the clock.",
  3803. "homepage": "https://github.com/php-fig/clock",
  3804. "keywords": [
  3805. "clock",
  3806. "now",
  3807. "psr",
  3808. "psr-20",
  3809. "time"
  3810. ],
  3811. "support": {
  3812. "issues": "https://github.com/php-fig/clock/issues",
  3813. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3814. },
  3815. "time": "2022-11-25T14:36:26+00:00"
  3816. },
  3817. {
  3818. "name": "psr/container",
  3819. "version": "2.0.2",
  3820. "source": {
  3821. "type": "git",
  3822. "url": "https://github.com/php-fig/container.git",
  3823. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3824. },
  3825. "dist": {
  3826. "type": "zip",
  3827. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3828. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3829. "shasum": ""
  3830. },
  3831. "require": {
  3832. "php": ">=7.4.0"
  3833. },
  3834. "type": "library",
  3835. "extra": {
  3836. "branch-alias": {
  3837. "dev-master": "2.0.x-dev"
  3838. }
  3839. },
  3840. "autoload": {
  3841. "psr-4": {
  3842. "Psr\\Container\\": "src/"
  3843. }
  3844. },
  3845. "notification-url": "https://packagist.org/downloads/",
  3846. "license": [
  3847. "MIT"
  3848. ],
  3849. "authors": [
  3850. {
  3851. "name": "PHP-FIG",
  3852. "homepage": "https://www.php-fig.org/"
  3853. }
  3854. ],
  3855. "description": "Common Container Interface (PHP FIG PSR-11)",
  3856. "homepage": "https://github.com/php-fig/container",
  3857. "keywords": [
  3858. "PSR-11",
  3859. "container",
  3860. "container-interface",
  3861. "container-interop",
  3862. "psr"
  3863. ],
  3864. "support": {
  3865. "issues": "https://github.com/php-fig/container/issues",
  3866. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3867. },
  3868. "time": "2021-11-05T16:47:00+00:00"
  3869. },
  3870. {
  3871. "name": "psr/event-dispatcher",
  3872. "version": "1.0.0",
  3873. "source": {
  3874. "type": "git",
  3875. "url": "https://github.com/php-fig/event-dispatcher.git",
  3876. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3877. },
  3878. "dist": {
  3879. "type": "zip",
  3880. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3881. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3882. "shasum": ""
  3883. },
  3884. "require": {
  3885. "php": ">=7.2.0"
  3886. },
  3887. "type": "library",
  3888. "extra": {
  3889. "branch-alias": {
  3890. "dev-master": "1.0.x-dev"
  3891. }
  3892. },
  3893. "autoload": {
  3894. "psr-4": {
  3895. "Psr\\EventDispatcher\\": "src/"
  3896. }
  3897. },
  3898. "notification-url": "https://packagist.org/downloads/",
  3899. "license": [
  3900. "MIT"
  3901. ],
  3902. "authors": [
  3903. {
  3904. "name": "PHP-FIG",
  3905. "homepage": "http://www.php-fig.org/"
  3906. }
  3907. ],
  3908. "description": "Standard interfaces for event handling.",
  3909. "keywords": [
  3910. "events",
  3911. "psr",
  3912. "psr-14"
  3913. ],
  3914. "support": {
  3915. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3916. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3917. },
  3918. "time": "2019-01-08T18:20:26+00:00"
  3919. },
  3920. {
  3921. "name": "psr/http-client",
  3922. "version": "1.0.3",
  3923. "source": {
  3924. "type": "git",
  3925. "url": "https://github.com/php-fig/http-client.git",
  3926. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3927. },
  3928. "dist": {
  3929. "type": "zip",
  3930. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3931. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3932. "shasum": ""
  3933. },
  3934. "require": {
  3935. "php": "^7.0 || ^8.0",
  3936. "psr/http-message": "^1.0 || ^2.0"
  3937. },
  3938. "type": "library",
  3939. "extra": {
  3940. "branch-alias": {
  3941. "dev-master": "1.0.x-dev"
  3942. }
  3943. },
  3944. "autoload": {
  3945. "psr-4": {
  3946. "Psr\\Http\\Client\\": "src/"
  3947. }
  3948. },
  3949. "notification-url": "https://packagist.org/downloads/",
  3950. "license": [
  3951. "MIT"
  3952. ],
  3953. "authors": [
  3954. {
  3955. "name": "PHP-FIG",
  3956. "homepage": "https://www.php-fig.org/"
  3957. }
  3958. ],
  3959. "description": "Common interface for HTTP clients",
  3960. "homepage": "https://github.com/php-fig/http-client",
  3961. "keywords": [
  3962. "http",
  3963. "http-client",
  3964. "psr",
  3965. "psr-18"
  3966. ],
  3967. "support": {
  3968. "source": "https://github.com/php-fig/http-client"
  3969. },
  3970. "time": "2023-09-23T14:17:50+00:00"
  3971. },
  3972. {
  3973. "name": "psr/http-factory",
  3974. "version": "1.1.0",
  3975. "source": {
  3976. "type": "git",
  3977. "url": "https://github.com/php-fig/http-factory.git",
  3978. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  3979. },
  3980. "dist": {
  3981. "type": "zip",
  3982. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3983. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3984. "shasum": ""
  3985. },
  3986. "require": {
  3987. "php": ">=7.1",
  3988. "psr/http-message": "^1.0 || ^2.0"
  3989. },
  3990. "type": "library",
  3991. "extra": {
  3992. "branch-alias": {
  3993. "dev-master": "1.0.x-dev"
  3994. }
  3995. },
  3996. "autoload": {
  3997. "psr-4": {
  3998. "Psr\\Http\\Message\\": "src/"
  3999. }
  4000. },
  4001. "notification-url": "https://packagist.org/downloads/",
  4002. "license": [
  4003. "MIT"
  4004. ],
  4005. "authors": [
  4006. {
  4007. "name": "PHP-FIG",
  4008. "homepage": "https://www.php-fig.org/"
  4009. }
  4010. ],
  4011. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  4012. "keywords": [
  4013. "factory",
  4014. "http",
  4015. "message",
  4016. "psr",
  4017. "psr-17",
  4018. "psr-7",
  4019. "request",
  4020. "response"
  4021. ],
  4022. "support": {
  4023. "source": "https://github.com/php-fig/http-factory"
  4024. },
  4025. "time": "2024-04-15T12:06:14+00:00"
  4026. },
  4027. {
  4028. "name": "psr/http-message",
  4029. "version": "2.0",
  4030. "source": {
  4031. "type": "git",
  4032. "url": "https://github.com/php-fig/http-message.git",
  4033. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4034. },
  4035. "dist": {
  4036. "type": "zip",
  4037. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4038. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4039. "shasum": ""
  4040. },
  4041. "require": {
  4042. "php": "^7.2 || ^8.0"
  4043. },
  4044. "type": "library",
  4045. "extra": {
  4046. "branch-alias": {
  4047. "dev-master": "2.0.x-dev"
  4048. }
  4049. },
  4050. "autoload": {
  4051. "psr-4": {
  4052. "Psr\\Http\\Message\\": "src/"
  4053. }
  4054. },
  4055. "notification-url": "https://packagist.org/downloads/",
  4056. "license": [
  4057. "MIT"
  4058. ],
  4059. "authors": [
  4060. {
  4061. "name": "PHP-FIG",
  4062. "homepage": "https://www.php-fig.org/"
  4063. }
  4064. ],
  4065. "description": "Common interface for HTTP messages",
  4066. "homepage": "https://github.com/php-fig/http-message",
  4067. "keywords": [
  4068. "http",
  4069. "http-message",
  4070. "psr",
  4071. "psr-7",
  4072. "request",
  4073. "response"
  4074. ],
  4075. "support": {
  4076. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4077. },
  4078. "time": "2023-04-04T09:54:51+00:00"
  4079. },
  4080. {
  4081. "name": "psr/log",
  4082. "version": "3.0.2",
  4083. "source": {
  4084. "type": "git",
  4085. "url": "https://github.com/php-fig/log.git",
  4086. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  4087. },
  4088. "dist": {
  4089. "type": "zip",
  4090. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  4091. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  4092. "shasum": ""
  4093. },
  4094. "require": {
  4095. "php": ">=8.0.0"
  4096. },
  4097. "type": "library",
  4098. "extra": {
  4099. "branch-alias": {
  4100. "dev-master": "3.x-dev"
  4101. }
  4102. },
  4103. "autoload": {
  4104. "psr-4": {
  4105. "Psr\\Log\\": "src"
  4106. }
  4107. },
  4108. "notification-url": "https://packagist.org/downloads/",
  4109. "license": [
  4110. "MIT"
  4111. ],
  4112. "authors": [
  4113. {
  4114. "name": "PHP-FIG",
  4115. "homepage": "https://www.php-fig.org/"
  4116. }
  4117. ],
  4118. "description": "Common interface for logging libraries",
  4119. "homepage": "https://github.com/php-fig/log",
  4120. "keywords": [
  4121. "log",
  4122. "psr",
  4123. "psr-3"
  4124. ],
  4125. "support": {
  4126. "source": "https://github.com/php-fig/log/tree/3.0.2"
  4127. },
  4128. "time": "2024-09-11T13:17:53+00:00"
  4129. },
  4130. {
  4131. "name": "psr/simple-cache",
  4132. "version": "3.0.0",
  4133. "source": {
  4134. "type": "git",
  4135. "url": "https://github.com/php-fig/simple-cache.git",
  4136. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4137. },
  4138. "dist": {
  4139. "type": "zip",
  4140. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4141. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4142. "shasum": ""
  4143. },
  4144. "require": {
  4145. "php": ">=8.0.0"
  4146. },
  4147. "type": "library",
  4148. "extra": {
  4149. "branch-alias": {
  4150. "dev-master": "3.0.x-dev"
  4151. }
  4152. },
  4153. "autoload": {
  4154. "psr-4": {
  4155. "Psr\\SimpleCache\\": "src/"
  4156. }
  4157. },
  4158. "notification-url": "https://packagist.org/downloads/",
  4159. "license": [
  4160. "MIT"
  4161. ],
  4162. "authors": [
  4163. {
  4164. "name": "PHP-FIG",
  4165. "homepage": "https://www.php-fig.org/"
  4166. }
  4167. ],
  4168. "description": "Common interfaces for simple caching",
  4169. "keywords": [
  4170. "cache",
  4171. "caching",
  4172. "psr",
  4173. "psr-16",
  4174. "simple-cache"
  4175. ],
  4176. "support": {
  4177. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4178. },
  4179. "time": "2021-10-29T13:26:27+00:00"
  4180. },
  4181. {
  4182. "name": "psy/psysh",
  4183. "version": "v0.12.4",
  4184. "source": {
  4185. "type": "git",
  4186. "url": "https://github.com/bobthecow/psysh.git",
  4187. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  4188. },
  4189. "dist": {
  4190. "type": "zip",
  4191. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  4192. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  4193. "shasum": ""
  4194. },
  4195. "require": {
  4196. "ext-json": "*",
  4197. "ext-tokenizer": "*",
  4198. "nikic/php-parser": "^5.0 || ^4.0",
  4199. "php": "^8.0 || ^7.4",
  4200. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4201. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4202. },
  4203. "conflict": {
  4204. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4205. },
  4206. "require-dev": {
  4207. "bamarni/composer-bin-plugin": "^1.2"
  4208. },
  4209. "suggest": {
  4210. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4211. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4212. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4213. },
  4214. "bin": [
  4215. "bin/psysh"
  4216. ],
  4217. "type": "library",
  4218. "extra": {
  4219. "branch-alias": {
  4220. "dev-main": "0.12.x-dev"
  4221. },
  4222. "bamarni-bin": {
  4223. "bin-links": false,
  4224. "forward-command": false
  4225. }
  4226. },
  4227. "autoload": {
  4228. "files": [
  4229. "src/functions.php"
  4230. ],
  4231. "psr-4": {
  4232. "Psy\\": "src/"
  4233. }
  4234. },
  4235. "notification-url": "https://packagist.org/downloads/",
  4236. "license": [
  4237. "MIT"
  4238. ],
  4239. "authors": [
  4240. {
  4241. "name": "Justin Hileman",
  4242. "email": "justin@justinhileman.info",
  4243. "homepage": "http://justinhileman.com"
  4244. }
  4245. ],
  4246. "description": "An interactive shell for modern PHP.",
  4247. "homepage": "http://psysh.org",
  4248. "keywords": [
  4249. "REPL",
  4250. "console",
  4251. "interactive",
  4252. "shell"
  4253. ],
  4254. "support": {
  4255. "issues": "https://github.com/bobthecow/psysh/issues",
  4256. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  4257. },
  4258. "time": "2024-06-10T01:18:23+00:00"
  4259. },
  4260. {
  4261. "name": "ralouphie/getallheaders",
  4262. "version": "3.0.3",
  4263. "source": {
  4264. "type": "git",
  4265. "url": "https://github.com/ralouphie/getallheaders.git",
  4266. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4267. },
  4268. "dist": {
  4269. "type": "zip",
  4270. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4271. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4272. "shasum": ""
  4273. },
  4274. "require": {
  4275. "php": ">=5.6"
  4276. },
  4277. "require-dev": {
  4278. "php-coveralls/php-coveralls": "^2.1",
  4279. "phpunit/phpunit": "^5 || ^6.5"
  4280. },
  4281. "type": "library",
  4282. "autoload": {
  4283. "files": [
  4284. "src/getallheaders.php"
  4285. ]
  4286. },
  4287. "notification-url": "https://packagist.org/downloads/",
  4288. "license": [
  4289. "MIT"
  4290. ],
  4291. "authors": [
  4292. {
  4293. "name": "Ralph Khattar",
  4294. "email": "ralph.khattar@gmail.com"
  4295. }
  4296. ],
  4297. "description": "A polyfill for getallheaders.",
  4298. "support": {
  4299. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4300. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4301. },
  4302. "time": "2019-03-08T08:55:37+00:00"
  4303. },
  4304. {
  4305. "name": "ramsey/collection",
  4306. "version": "2.0.0",
  4307. "source": {
  4308. "type": "git",
  4309. "url": "https://github.com/ramsey/collection.git",
  4310. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4311. },
  4312. "dist": {
  4313. "type": "zip",
  4314. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4315. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4316. "shasum": ""
  4317. },
  4318. "require": {
  4319. "php": "^8.1"
  4320. },
  4321. "require-dev": {
  4322. "captainhook/plugin-composer": "^5.3",
  4323. "ergebnis/composer-normalize": "^2.28.3",
  4324. "fakerphp/faker": "^1.21",
  4325. "hamcrest/hamcrest-php": "^2.0",
  4326. "jangregor/phpstan-prophecy": "^1.0",
  4327. "mockery/mockery": "^1.5",
  4328. "php-parallel-lint/php-console-highlighter": "^1.0",
  4329. "php-parallel-lint/php-parallel-lint": "^1.3",
  4330. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4331. "phpspec/prophecy-phpunit": "^2.0",
  4332. "phpstan/extension-installer": "^1.2",
  4333. "phpstan/phpstan": "^1.9",
  4334. "phpstan/phpstan-mockery": "^1.1",
  4335. "phpstan/phpstan-phpunit": "^1.3",
  4336. "phpunit/phpunit": "^9.5",
  4337. "psalm/plugin-mockery": "^1.1",
  4338. "psalm/plugin-phpunit": "^0.18.4",
  4339. "ramsey/coding-standard": "^2.0.3",
  4340. "ramsey/conventional-commits": "^1.3",
  4341. "vimeo/psalm": "^5.4"
  4342. },
  4343. "type": "library",
  4344. "extra": {
  4345. "captainhook": {
  4346. "force-install": true
  4347. },
  4348. "ramsey/conventional-commits": {
  4349. "configFile": "conventional-commits.json"
  4350. }
  4351. },
  4352. "autoload": {
  4353. "psr-4": {
  4354. "Ramsey\\Collection\\": "src/"
  4355. }
  4356. },
  4357. "notification-url": "https://packagist.org/downloads/",
  4358. "license": [
  4359. "MIT"
  4360. ],
  4361. "authors": [
  4362. {
  4363. "name": "Ben Ramsey",
  4364. "email": "ben@benramsey.com",
  4365. "homepage": "https://benramsey.com"
  4366. }
  4367. ],
  4368. "description": "A PHP library for representing and manipulating collections.",
  4369. "keywords": [
  4370. "array",
  4371. "collection",
  4372. "hash",
  4373. "map",
  4374. "queue",
  4375. "set"
  4376. ],
  4377. "support": {
  4378. "issues": "https://github.com/ramsey/collection/issues",
  4379. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4380. },
  4381. "funding": [
  4382. {
  4383. "url": "https://github.com/ramsey",
  4384. "type": "github"
  4385. },
  4386. {
  4387. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4388. "type": "tidelift"
  4389. }
  4390. ],
  4391. "time": "2022-12-31T21:50:55+00:00"
  4392. },
  4393. {
  4394. "name": "ramsey/uuid",
  4395. "version": "4.7.6",
  4396. "source": {
  4397. "type": "git",
  4398. "url": "https://github.com/ramsey/uuid.git",
  4399. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  4400. },
  4401. "dist": {
  4402. "type": "zip",
  4403. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  4404. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  4405. "shasum": ""
  4406. },
  4407. "require": {
  4408. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  4409. "ext-json": "*",
  4410. "php": "^8.0",
  4411. "ramsey/collection": "^1.2 || ^2.0"
  4412. },
  4413. "replace": {
  4414. "rhumsaa/uuid": "self.version"
  4415. },
  4416. "require-dev": {
  4417. "captainhook/captainhook": "^5.10",
  4418. "captainhook/plugin-composer": "^5.3",
  4419. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4420. "doctrine/annotations": "^1.8",
  4421. "ergebnis/composer-normalize": "^2.15",
  4422. "mockery/mockery": "^1.3",
  4423. "paragonie/random-lib": "^2",
  4424. "php-mock/php-mock": "^2.2",
  4425. "php-mock/php-mock-mockery": "^1.3",
  4426. "php-parallel-lint/php-parallel-lint": "^1.1",
  4427. "phpbench/phpbench": "^1.0",
  4428. "phpstan/extension-installer": "^1.1",
  4429. "phpstan/phpstan": "^1.8",
  4430. "phpstan/phpstan-mockery": "^1.1",
  4431. "phpstan/phpstan-phpunit": "^1.1",
  4432. "phpunit/phpunit": "^8.5 || ^9",
  4433. "ramsey/composer-repl": "^1.4",
  4434. "slevomat/coding-standard": "^8.4",
  4435. "squizlabs/php_codesniffer": "^3.5",
  4436. "vimeo/psalm": "^4.9"
  4437. },
  4438. "suggest": {
  4439. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4440. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4441. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4442. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4443. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4444. },
  4445. "type": "library",
  4446. "extra": {
  4447. "captainhook": {
  4448. "force-install": true
  4449. }
  4450. },
  4451. "autoload": {
  4452. "files": [
  4453. "src/functions.php"
  4454. ],
  4455. "psr-4": {
  4456. "Ramsey\\Uuid\\": "src/"
  4457. }
  4458. },
  4459. "notification-url": "https://packagist.org/downloads/",
  4460. "license": [
  4461. "MIT"
  4462. ],
  4463. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4464. "keywords": [
  4465. "guid",
  4466. "identifier",
  4467. "uuid"
  4468. ],
  4469. "support": {
  4470. "issues": "https://github.com/ramsey/uuid/issues",
  4471. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  4472. },
  4473. "funding": [
  4474. {
  4475. "url": "https://github.com/ramsey",
  4476. "type": "github"
  4477. },
  4478. {
  4479. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4480. "type": "tidelift"
  4481. }
  4482. ],
  4483. "time": "2024-04-27T21:32:50+00:00"
  4484. },
  4485. {
  4486. "name": "rap2hpoutre/laravel-log-viewer",
  4487. "version": "v2.4.0",
  4488. "source": {
  4489. "type": "git",
  4490. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4491. "reference": "49c52ae197b3d4f7f9e43d328628edc4bc529afa"
  4492. },
  4493. "dist": {
  4494. "type": "zip",
  4495. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/49c52ae197b3d4f7f9e43d328628edc4bc529afa",
  4496. "reference": "49c52ae197b3d4f7f9e43d328628edc4bc529afa",
  4497. "shasum": ""
  4498. },
  4499. "require": {
  4500. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  4501. "php": "^7.2|^8.0"
  4502. },
  4503. "require-dev": {
  4504. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  4505. "phpunit/phpunit": "^7||^8.4|^9.3.3|^10.1"
  4506. },
  4507. "type": "laravel-package",
  4508. "extra": {
  4509. "laravel": {
  4510. "providers": [
  4511. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4512. ]
  4513. }
  4514. },
  4515. "autoload": {
  4516. "psr-0": {
  4517. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4518. },
  4519. "classmap": [
  4520. "src/controllers"
  4521. ]
  4522. },
  4523. "notification-url": "https://packagist.org/downloads/",
  4524. "license": [
  4525. "MIT"
  4526. ],
  4527. "authors": [
  4528. {
  4529. "name": "rap2hpoutre",
  4530. "email": "raphaelht@gmail.com"
  4531. }
  4532. ],
  4533. "description": "A Laravel log reader",
  4534. "keywords": [
  4535. "laravel",
  4536. "log",
  4537. "log-reader",
  4538. "log-viewer",
  4539. "logging",
  4540. "lumen"
  4541. ],
  4542. "support": {
  4543. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4544. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/v2.4.0"
  4545. },
  4546. "time": "2024-03-20T08:49:53+00:00"
  4547. },
  4548. {
  4549. "name": "shalvah/clara",
  4550. "version": "3.2.0",
  4551. "source": {
  4552. "type": "git",
  4553. "url": "https://github.com/shalvah/clara.git",
  4554. "reference": "cdbb5737cbdd101756d97dd2279a979a1af7710b"
  4555. },
  4556. "dist": {
  4557. "type": "zip",
  4558. "url": "https://api.github.com/repos/shalvah/clara/zipball/cdbb5737cbdd101756d97dd2279a979a1af7710b",
  4559. "reference": "cdbb5737cbdd101756d97dd2279a979a1af7710b",
  4560. "shasum": ""
  4561. },
  4562. "require": {
  4563. "php": ">=7.4",
  4564. "symfony/console": "^4.0|^5.0|^6.0|^7.0"
  4565. },
  4566. "require-dev": {
  4567. "eloquent/phony-phpunit": "^7.0",
  4568. "phpunit/phpunit": "^9.1"
  4569. },
  4570. "type": "library",
  4571. "autoload": {
  4572. "files": [
  4573. "helpers.php"
  4574. ],
  4575. "psr-4": {
  4576. "Shalvah\\Clara\\": "src/"
  4577. }
  4578. },
  4579. "notification-url": "https://packagist.org/downloads/",
  4580. "license": [
  4581. "MIT"
  4582. ],
  4583. "description": "🔊 Simple, pretty, testable console output for CLI apps.",
  4584. "keywords": [
  4585. "cli",
  4586. "log",
  4587. "logging"
  4588. ],
  4589. "support": {
  4590. "issues": "https://github.com/shalvah/clara/issues",
  4591. "source": "https://github.com/shalvah/clara/tree/3.2.0"
  4592. },
  4593. "time": "2024-02-27T20:30:59+00:00"
  4594. },
  4595. {
  4596. "name": "shalvah/upgrader",
  4597. "version": "0.6.0",
  4598. "source": {
  4599. "type": "git",
  4600. "url": "https://github.com/shalvah/upgrader.git",
  4601. "reference": "d95ed17fe9f5e1ee7d47ad835595f1af080a867f"
  4602. },
  4603. "dist": {
  4604. "type": "zip",
  4605. "url": "https://api.github.com/repos/shalvah/upgrader/zipball/d95ed17fe9f5e1ee7d47ad835595f1af080a867f",
  4606. "reference": "d95ed17fe9f5e1ee7d47ad835595f1af080a867f",
  4607. "shasum": ""
  4608. },
  4609. "require": {
  4610. "illuminate/support": ">=8.0",
  4611. "nikic/php-parser": "^5.0",
  4612. "php": ">=8.0"
  4613. },
  4614. "require-dev": {
  4615. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  4616. "pestphp/pest": "^1.21",
  4617. "phpstan/phpstan": "^1.0",
  4618. "spatie/ray": "^1.33"
  4619. },
  4620. "type": "library",
  4621. "autoload": {
  4622. "psr-4": {
  4623. "Shalvah\\Upgrader\\": "src/"
  4624. }
  4625. },
  4626. "notification-url": "https://packagist.org/downloads/",
  4627. "license": [
  4628. "MIT"
  4629. ],
  4630. "authors": [
  4631. {
  4632. "name": "Shalvah",
  4633. "email": "hello@shalvah.me"
  4634. }
  4635. ],
  4636. "description": "Create automatic upgrades for your package.",
  4637. "homepage": "http://github.com/shalvah/upgrader",
  4638. "keywords": [
  4639. "upgrade"
  4640. ],
  4641. "support": {
  4642. "issues": "https://github.com/shalvah/upgrader/issues",
  4643. "source": "https://github.com/shalvah/upgrader/tree/0.6.0"
  4644. },
  4645. "funding": [
  4646. {
  4647. "url": "https://patreon.com/shalvah",
  4648. "type": "patreon"
  4649. }
  4650. ],
  4651. "time": "2024-02-20T11:51:46+00:00"
  4652. },
  4653. {
  4654. "name": "simplesoftwareio/simple-qrcode",
  4655. "version": "4.2.0",
  4656. "source": {
  4657. "type": "git",
  4658. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  4659. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537"
  4660. },
  4661. "dist": {
  4662. "type": "zip",
  4663. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/916db7948ca6772d54bb617259c768c9cdc8d537",
  4664. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537",
  4665. "shasum": ""
  4666. },
  4667. "require": {
  4668. "bacon/bacon-qr-code": "^2.0",
  4669. "ext-gd": "*",
  4670. "php": ">=7.2|^8.0"
  4671. },
  4672. "require-dev": {
  4673. "mockery/mockery": "~1",
  4674. "phpunit/phpunit": "~9"
  4675. },
  4676. "suggest": {
  4677. "ext-imagick": "Allows the generation of PNG QrCodes.",
  4678. "illuminate/support": "Allows for use within Laravel."
  4679. },
  4680. "type": "library",
  4681. "extra": {
  4682. "laravel": {
  4683. "providers": [
  4684. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  4685. ],
  4686. "aliases": {
  4687. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  4688. }
  4689. }
  4690. },
  4691. "autoload": {
  4692. "psr-4": {
  4693. "SimpleSoftwareIO\\QrCode\\": "src"
  4694. }
  4695. },
  4696. "notification-url": "https://packagist.org/downloads/",
  4697. "license": [
  4698. "MIT"
  4699. ],
  4700. "authors": [
  4701. {
  4702. "name": "Simple Software LLC",
  4703. "email": "support@simplesoftware.io"
  4704. }
  4705. ],
  4706. "description": "Simple QrCode is a QR code generator made for Laravel.",
  4707. "homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
  4708. "keywords": [
  4709. "Simple",
  4710. "generator",
  4711. "laravel",
  4712. "qrcode",
  4713. "wrapper"
  4714. ],
  4715. "support": {
  4716. "issues": "https://github.com/SimpleSoftwareIO/simple-qrcode/issues",
  4717. "source": "https://github.com/SimpleSoftwareIO/simple-qrcode/tree/4.2.0"
  4718. },
  4719. "time": "2021-02-08T20:43:55+00:00"
  4720. },
  4721. {
  4722. "name": "slowlyo/laravel-support",
  4723. "version": "v0.0.6",
  4724. "source": {
  4725. "type": "git",
  4726. "url": "https://github.com/slowlyo/laravel-support.git",
  4727. "reference": "71cd69f7ffd6eec829afb970733b54c8d860b29f"
  4728. },
  4729. "dist": {
  4730. "type": "zip",
  4731. "url": "https://api.github.com/repos/slowlyo/laravel-support/zipball/71cd69f7ffd6eec829afb970733b54c8d860b29f",
  4732. "reference": "71cd69f7ffd6eec829afb970733b54c8d860b29f",
  4733. "shasum": ""
  4734. },
  4735. "require": {
  4736. "ext-bcmath": "*",
  4737. "ext-json": "*",
  4738. "laravel/framework": ">=8",
  4739. "php": ">=7.4.0"
  4740. },
  4741. "type": "library",
  4742. "extra": {
  4743. "laravel": {
  4744. "providers": [
  4745. "Slowlyo\\Support\\SupportServiceProvider"
  4746. ]
  4747. }
  4748. },
  4749. "autoload": {
  4750. "files": [
  4751. "./src/functions.php"
  4752. ],
  4753. "psr-4": {
  4754. "Slowlyo\\Support\\": "src/"
  4755. }
  4756. },
  4757. "notification-url": "https://packagist.org/downloads/",
  4758. "license": [
  4759. "MIT"
  4760. ],
  4761. "authors": [
  4762. {
  4763. "name": "Slowlyo",
  4764. "email": "slowlyo_email@qq.com"
  4765. }
  4766. ],
  4767. "description": "php/laravel部分代码封装",
  4768. "support": {
  4769. "issues": "https://github.com/slowlyo/laravel-support/issues",
  4770. "source": "https://github.com/slowlyo/laravel-support/tree/v0.0.6"
  4771. },
  4772. "time": "2024-11-21T07:33:06+00:00"
  4773. },
  4774. {
  4775. "name": "slowlyo/owl-admin",
  4776. "version": "v4.0.6",
  4777. "source": {
  4778. "type": "git",
  4779. "url": "https://github.com/slowlyo/owl-admin.git",
  4780. "reference": "f9e20279301ac9255b54e6398397662ecb379460"
  4781. },
  4782. "dist": {
  4783. "type": "zip",
  4784. "url": "https://api.github.com/repos/slowlyo/owl-admin/zipball/f9e20279301ac9255b54e6398397662ecb379460",
  4785. "reference": "f9e20279301ac9255b54e6398397662ecb379460",
  4786. "shasum": ""
  4787. },
  4788. "require": {
  4789. "ext-gd": "*",
  4790. "ext-zip": "*",
  4791. "illuminate/support": ">=11",
  4792. "php": ">=8.2",
  4793. "slowlyo/laravel-support": "*"
  4794. },
  4795. "type": "library",
  4796. "extra": {
  4797. "laravel": {
  4798. "providers": [
  4799. "Slowlyo\\OwlAdmin\\AdminServiceProvider"
  4800. ],
  4801. "aliases": {
  4802. "OwlAdmin": "Slowlyo\\OwlAdmin\\Facades\\OwlAdmin"
  4803. }
  4804. }
  4805. },
  4806. "autoload": {
  4807. "files": [
  4808. "src/Support/helpers.php"
  4809. ],
  4810. "psr-4": {
  4811. "Slowlyo\\OwlAdmin\\": "src/"
  4812. }
  4813. },
  4814. "notification-url": "https://packagist.org/downloads/",
  4815. "license": [
  4816. "MIT"
  4817. ],
  4818. "authors": [
  4819. {
  4820. "name": "slowlyo",
  4821. "email": "slowlyo_email@qq.com",
  4822. "homepage": "https://github.com/slowlyo"
  4823. }
  4824. ],
  4825. "description": "基于 laravel、amis 开发的后台框架~",
  4826. "homepage": "https://github.com/slowlyo/owl-admin",
  4827. "keywords": [
  4828. "admin",
  4829. "amis",
  4830. "laravel",
  4831. "owl-admin"
  4832. ],
  4833. "support": {
  4834. "email": "slowlyo_email@qq.com",
  4835. "forum": "https://github.com/orgs/owl-admin/discussions",
  4836. "issues": "https://github.com/Slowlyo/owl-admin/issues",
  4837. "source": "https://github.com/slowlyo/owl-admin/tree/v4.0.6",
  4838. "wiki": "https://doc.owladmin.com/"
  4839. },
  4840. "time": "2024-11-16T05:34:20+00:00"
  4841. },
  4842. {
  4843. "name": "slowlyo/owl-amis-json-parse",
  4844. "version": "v1.1.4",
  4845. "source": {
  4846. "type": "git",
  4847. "url": "https://github.com/Slowlyo/owl-amis-json-parse.git",
  4848. "reference": "14d1ba8b1abca2e1b716ce4ef21b0f2bb8eba2b5"
  4849. },
  4850. "dist": {
  4851. "type": "zip",
  4852. "url": "https://api.github.com/repos/Slowlyo/owl-amis-json-parse/zipball/14d1ba8b1abca2e1b716ce4ef21b0f2bb8eba2b5",
  4853. "reference": "14d1ba8b1abca2e1b716ce4ef21b0f2bb8eba2b5",
  4854. "shasum": "",
  4855. "mirrors": [
  4856. {
  4857. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4858. "preferred": true
  4859. }
  4860. ]
  4861. },
  4862. "require": {
  4863. "php": ">=8.0",
  4864. "slowlyo/owl-admin": "*"
  4865. },
  4866. "type": "library",
  4867. "extra": {
  4868. "owl-admin": "Slowlyo\\OwlAmisJsonParse\\OwlAmisJsonParseServiceProvider",
  4869. "laravel": {
  4870. "providers": [
  4871. "Slowlyo\\OwlAmisJsonParse\\OwlAmisJsonParseServiceProvider"
  4872. ]
  4873. }
  4874. },
  4875. "autoload": {
  4876. "psr-4": {
  4877. "Slowlyo\\OwlAmisJsonParse\\": "src/"
  4878. }
  4879. },
  4880. "notification-url": "https://packagist.org/downloads/",
  4881. "license": [
  4882. "MIT"
  4883. ],
  4884. "authors": [
  4885. {
  4886. "name": "slowlyo",
  4887. "email": "slowlyo_email@qq.com"
  4888. }
  4889. ],
  4890. "description": "将 amis 的 json 结构转换为 OwlAdmin 代码",
  4891. "homepage": "https://gitee.com/slowlyo/slow-amis-json-parse",
  4892. "keywords": [
  4893. "amis",
  4894. "extension",
  4895. "json-parse",
  4896. "owl-admin"
  4897. ],
  4898. "support": {
  4899. "issues": "https://github.com/Slowlyo/owl-amis-json-parse/issues",
  4900. "source": "https://github.com/Slowlyo/owl-amis-json-parse/tree/v1.1.4"
  4901. },
  4902. "time": "2023-04-27T01:57:14+00:00"
  4903. },
  4904. {
  4905. "name": "slowlyo/owl-dict",
  4906. "version": "v1.3.2",
  4907. "source": {
  4908. "type": "git",
  4909. "url": "https://github.com/owl-admin/dict.git",
  4910. "reference": "8754d9258a11175ec17f30e698b6489abade11ef"
  4911. },
  4912. "dist": {
  4913. "type": "zip",
  4914. "url": "https://api.github.com/repos/owl-admin/dict/zipball/8754d9258a11175ec17f30e698b6489abade11ef",
  4915. "reference": "8754d9258a11175ec17f30e698b6489abade11ef",
  4916. "shasum": ""
  4917. },
  4918. "require": {
  4919. "php": ">=8.0",
  4920. "slowlyo/owl-admin": "*"
  4921. },
  4922. "type": "library",
  4923. "extra": {
  4924. "owl-admin": "Slowlyo\\OwlDict\\OwlDictServiceProvider",
  4925. "laravel": {
  4926. "providers": [
  4927. "Slowlyo\\OwlDict\\OwlDictServiceProvider"
  4928. ]
  4929. }
  4930. },
  4931. "autoload": {
  4932. "files": [
  4933. "src/helpers.php"
  4934. ],
  4935. "psr-4": {
  4936. "Slowlyo\\OwlDict\\": "src/"
  4937. }
  4938. },
  4939. "notification-url": "https://packagist.org/downloads/",
  4940. "license": [
  4941. "MIT"
  4942. ],
  4943. "authors": [
  4944. {
  4945. "name": "slowlyo",
  4946. "email": "slowlyo_email@qq.com"
  4947. }
  4948. ],
  4949. "description": "OwlAdmin 数据字典扩展",
  4950. "homepage": "https://gitee.com/slowlyo/owl-dict",
  4951. "keywords": [
  4952. "Dict",
  4953. "extension",
  4954. "owl-admin"
  4955. ],
  4956. "support": {
  4957. "issues": "https://github.com/owl-admin/dict/issues",
  4958. "source": "https://github.com/owl-admin/dict/tree/v1.3.2"
  4959. },
  4960. "time": "2024-07-08T03:05:14+00:00"
  4961. },
  4962. {
  4963. "name": "slowlyo/owl-icon-cache",
  4964. "version": "v0.1.0",
  4965. "source": {
  4966. "type": "git",
  4967. "url": "https://github.com/slowlyo/owl-icon-cache.git",
  4968. "reference": "696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28"
  4969. },
  4970. "dist": {
  4971. "type": "zip",
  4972. "url": "https://api.github.com/repos/slowlyo/owl-icon-cache/zipball/696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28",
  4973. "reference": "696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28",
  4974. "shasum": ""
  4975. },
  4976. "require": {
  4977. "iconify/json": "*",
  4978. "php": ">=8.0",
  4979. "slowlyo/owl-admin": "*"
  4980. },
  4981. "type": "library",
  4982. "extra": {
  4983. "owl-admin": "Slowlyo\\OwlIconCache\\OwlIconCacheServiceProvider",
  4984. "laravel": {
  4985. "providers": [
  4986. "Slowlyo\\OwlIconCache\\OwlIconCacheServiceProvider"
  4987. ]
  4988. }
  4989. },
  4990. "autoload": {
  4991. "psr-4": {
  4992. "Slowlyo\\OwlIconCache\\": "src/"
  4993. }
  4994. },
  4995. "notification-url": "https://packagist.org/downloads/",
  4996. "license": [
  4997. "MIT"
  4998. ],
  4999. "authors": [
  5000. {
  5001. "name": "slowlyo",
  5002. "email": "slowlyo_email@qq.com"
  5003. }
  5004. ],
  5005. "description": "让 iconify 图标可以离线使用",
  5006. "homepage": "https://github.com/slowlyo/owl-icon-cache",
  5007. "keywords": [
  5008. "extension",
  5009. "icon",
  5010. "owl-admin"
  5011. ],
  5012. "support": {
  5013. "issues": "https://github.com/slowlyo/owl-icon-cache/issues",
  5014. "source": "https://github.com/slowlyo/owl-icon-cache/tree/v0.1.0"
  5015. },
  5016. "time": "2024-05-01T08:30:19+00:00"
  5017. },
  5018. {
  5019. "name": "slowlyo/owl-log-viewer",
  5020. "version": "1.0.0",
  5021. "source": {
  5022. "type": "git",
  5023. "url": "https://github.com/owl-admin/log-viewer.git",
  5024. "reference": "d249c011dd7febe2f7be5bf800b42ed325b02d40"
  5025. },
  5026. "dist": {
  5027. "type": "zip",
  5028. "url": "https://api.github.com/repos/owl-admin/log-viewer/zipball/d249c011dd7febe2f7be5bf800b42ed325b02d40",
  5029. "reference": "d249c011dd7febe2f7be5bf800b42ed325b02d40",
  5030. "shasum": ""
  5031. },
  5032. "require": {
  5033. "php": ">=8.0",
  5034. "slowlyo/owl-admin": "*"
  5035. },
  5036. "type": "library",
  5037. "extra": {
  5038. "owl-admin": "Slowlyo\\OwlLogViewer\\OwlLogViewerServiceProvider",
  5039. "laravel": {
  5040. "providers": [
  5041. "Slowlyo\\OwlLogViewer\\OwlLogViewerServiceProvider"
  5042. ]
  5043. }
  5044. },
  5045. "autoload": {
  5046. "psr-4": {
  5047. "Slowlyo\\OwlLogViewer\\": "src/"
  5048. }
  5049. },
  5050. "notification-url": "https://packagist.org/downloads/",
  5051. "license": [
  5052. "MIT"
  5053. ],
  5054. "authors": [
  5055. {
  5056. "name": "slowlyo",
  5057. "email": "slowlyo_email@qq.com"
  5058. }
  5059. ],
  5060. "description": "更方便的查看laravel日志",
  5061. "homepage": "https://github.com/slowlyo/owl-log-viewer",
  5062. "keywords": [
  5063. "extension",
  5064. "owl-admin"
  5065. ],
  5066. "support": {
  5067. "issues": "https://github.com/owl-admin/log-viewer/issues",
  5068. "source": "https://github.com/owl-admin/log-viewer/tree/v1.0.0"
  5069. },
  5070. "time": "2024-03-10T13:57:59+00:00"
  5071. },
  5072. {
  5073. "name": "slowlyo/owl-module-notice",
  5074. "version": "v1.1.3",
  5075. "source": {
  5076. "type": "git",
  5077. "url": "https://gitee.com/slowlyo/owl-module-notice",
  5078. "reference": "8410e77a08cee435055f8d8cf6f57cfac5b86e3f"
  5079. },
  5080. "require": {
  5081. "php": ">=8.0",
  5082. "slowlyo/owl-admin": "*"
  5083. },
  5084. "type": "library",
  5085. "extra": {
  5086. "owl-admin": "Slowlyo\\Notice\\NoticeServiceProvider",
  5087. "laravel": {
  5088. "providers": [
  5089. "Slowlyo\\Notice\\NoticeServiceProvider"
  5090. ]
  5091. }
  5092. },
  5093. "autoload": {
  5094. "psr-4": {
  5095. "Slowlyo\\Notice\\": "src/"
  5096. }
  5097. },
  5098. "notification-url": "https://packagist.org/downloads/",
  5099. "license": [
  5100. "MIT"
  5101. ],
  5102. "authors": [
  5103. {
  5104. "name": "slowlyo",
  5105. "email": "slowlyo_email@qq.com"
  5106. }
  5107. ],
  5108. "description": "OwlAdmin 扩展: 后台功能-通知公告管理",
  5109. "homepage": "https://gitee.com/slowlyo/notice",
  5110. "keywords": [
  5111. "extension",
  5112. "notice",
  5113. "owl-admin"
  5114. ],
  5115. "time": "2023-04-10T06:25:51+00:00"
  5116. },
  5117. {
  5118. "name": "slowlyo/owl-operation-log",
  5119. "version": "v0.2.3",
  5120. "source": {
  5121. "type": "git",
  5122. "url": "https://github.com/slowlyo/owl-operation-log.git",
  5123. "reference": "fe03f85e940e069ebc024f8c257da2c44939c78d"
  5124. },
  5125. "dist": {
  5126. "type": "zip",
  5127. "url": "https://api.github.com/repos/slowlyo/owl-operation-log/zipball/fe03f85e940e069ebc024f8c257da2c44939c78d",
  5128. "reference": "fe03f85e940e069ebc024f8c257da2c44939c78d",
  5129. "shasum": ""
  5130. },
  5131. "require": {
  5132. "php": ">=8.0",
  5133. "slowlyo/owl-admin": "*"
  5134. },
  5135. "type": "library",
  5136. "extra": {
  5137. "owl-admin": "Slowlyo\\OwlOperationLog\\OwlOperationLogServiceProvider",
  5138. "laravel": {
  5139. "providers": [
  5140. "Slowlyo\\OwlOperationLog\\OwlOperationLogServiceProvider"
  5141. ]
  5142. }
  5143. },
  5144. "autoload": {
  5145. "psr-4": {
  5146. "Slowlyo\\OwlOperationLog\\": "src/"
  5147. }
  5148. },
  5149. "notification-url": "https://packagist.org/downloads/",
  5150. "license": [
  5151. "MIT"
  5152. ],
  5153. "authors": [
  5154. {
  5155. "name": "slowlyo",
  5156. "email": "slowlyo_email@qq.com"
  5157. }
  5158. ],
  5159. "description": "OwlAdmin 扩展包,用于记录用户操作日志",
  5160. "homepage": "https://github.com/slowlyo/owl-operation-log",
  5161. "keywords": [
  5162. "extension",
  5163. "owl-admin"
  5164. ],
  5165. "support": {
  5166. "issues": "https://github.com/slowlyo/owl-operation-log/issues",
  5167. "source": "https://github.com/slowlyo/owl-operation-log/tree/v0.2.3"
  5168. },
  5169. "time": "2024-03-28T06:49:24+00:00"
  5170. },
  5171. {
  5172. "name": "slowlyo/owl-system-backup",
  5173. "version": "v0.3.1",
  5174. "source": {
  5175. "type": "git",
  5176. "url": "https://github.com/owl-admin/system-backup.git",
  5177. "reference": "3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3"
  5178. },
  5179. "dist": {
  5180. "type": "zip",
  5181. "url": "https://api.github.com/repos/owl-admin/system-backup/zipball/3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3",
  5182. "reference": "3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3",
  5183. "shasum": ""
  5184. },
  5185. "require": {
  5186. "php": ">=8.0",
  5187. "slowlyo/owl-admin": "*"
  5188. },
  5189. "type": "library",
  5190. "extra": {
  5191. "owl-admin": "Slowlyo\\OwlSystemBackup\\OwlSystemBackupServiceProvider",
  5192. "laravel": {
  5193. "providers": [
  5194. "Slowlyo\\OwlSystemBackup\\OwlSystemBackupServiceProvider"
  5195. ]
  5196. }
  5197. },
  5198. "autoload": {
  5199. "psr-4": {
  5200. "Slowlyo\\OwlSystemBackup\\": "src/"
  5201. }
  5202. },
  5203. "notification-url": "https://packagist.org/downloads/",
  5204. "license": [
  5205. "MIT"
  5206. ],
  5207. "authors": [
  5208. {
  5209. "name": "slowlyo",
  5210. "email": "slowlyo_email@qq.com"
  5211. }
  5212. ],
  5213. "description": "Owl Admin 系统备份扩展",
  5214. "homepage": "https://github.com/slowlyo/owl-system-backup",
  5215. "keywords": [
  5216. "extension",
  5217. "owl-admin"
  5218. ],
  5219. "support": {
  5220. "issues": "https://github.com/owl-admin/system-backup/issues",
  5221. "source": "https://github.com/owl-admin/system-backup/tree/v0.3.1"
  5222. },
  5223. "time": "2024-05-22T02:58:47+00:00"
  5224. },
  5225. {
  5226. "name": "spatie/data-transfer-object",
  5227. "version": "3.9.1",
  5228. "source": {
  5229. "type": "git",
  5230. "url": "https://github.com/spatie/data-transfer-object.git",
  5231. "reference": "1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8"
  5232. },
  5233. "dist": {
  5234. "type": "zip",
  5235. "url": "https://api.github.com/repos/spatie/data-transfer-object/zipball/1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8",
  5236. "reference": "1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8",
  5237. "shasum": ""
  5238. },
  5239. "require": {
  5240. "php": "^8.0"
  5241. },
  5242. "require-dev": {
  5243. "illuminate/collections": "^8.36",
  5244. "jetbrains/phpstorm-attributes": "^1.0",
  5245. "larapack/dd": "^1.1",
  5246. "phpunit/phpunit": "^9.5.5"
  5247. },
  5248. "type": "library",
  5249. "autoload": {
  5250. "psr-4": {
  5251. "Spatie\\DataTransferObject\\": "src"
  5252. }
  5253. },
  5254. "notification-url": "https://packagist.org/downloads/",
  5255. "license": [
  5256. "MIT"
  5257. ],
  5258. "authors": [
  5259. {
  5260. "name": "Brent Roose",
  5261. "email": "brent@spatie.be",
  5262. "homepage": "https://spatie.be",
  5263. "role": "Developer"
  5264. }
  5265. ],
  5266. "description": "Data transfer objects with batteries included",
  5267. "homepage": "https://github.com/spatie/data-transfer-object",
  5268. "keywords": [
  5269. "data-transfer-object",
  5270. "spatie"
  5271. ],
  5272. "support": {
  5273. "issues": "https://github.com/spatie/data-transfer-object/issues",
  5274. "source": "https://github.com/spatie/data-transfer-object/tree/3.9.1"
  5275. },
  5276. "funding": [
  5277. {
  5278. "url": "https://spatie.be/open-source/support-us",
  5279. "type": "custom"
  5280. },
  5281. {
  5282. "url": "https://github.com/spatie",
  5283. "type": "github"
  5284. }
  5285. ],
  5286. "abandoned": "spatie/laravel-data",
  5287. "time": "2022-09-16T13:34:38+00:00"
  5288. },
  5289. {
  5290. "name": "symfony/cache",
  5291. "version": "v7.1.7",
  5292. "source": {
  5293. "type": "git",
  5294. "url": "https://github.com/symfony/cache.git",
  5295. "reference": "23b61c9592ee72233c31625f0ae805dd1571e928"
  5296. },
  5297. "dist": {
  5298. "type": "zip",
  5299. "url": "https://api.github.com/repos/symfony/cache/zipball/23b61c9592ee72233c31625f0ae805dd1571e928",
  5300. "reference": "23b61c9592ee72233c31625f0ae805dd1571e928",
  5301. "shasum": ""
  5302. },
  5303. "require": {
  5304. "php": ">=8.2",
  5305. "psr/cache": "^2.0|^3.0",
  5306. "psr/log": "^1.1|^2|^3",
  5307. "symfony/cache-contracts": "^2.5|^3",
  5308. "symfony/deprecation-contracts": "^2.5|^3.0",
  5309. "symfony/service-contracts": "^2.5|^3",
  5310. "symfony/var-exporter": "^6.4|^7.0"
  5311. },
  5312. "conflict": {
  5313. "doctrine/dbal": "<3.6",
  5314. "symfony/dependency-injection": "<6.4",
  5315. "symfony/http-kernel": "<6.4",
  5316. "symfony/var-dumper": "<6.4"
  5317. },
  5318. "provide": {
  5319. "psr/cache-implementation": "2.0|3.0",
  5320. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  5321. "symfony/cache-implementation": "1.1|2.0|3.0"
  5322. },
  5323. "require-dev": {
  5324. "cache/integration-tests": "dev-master",
  5325. "doctrine/dbal": "^3.6|^4",
  5326. "predis/predis": "^1.1|^2.0",
  5327. "psr/simple-cache": "^1.0|^2.0|^3.0",
  5328. "symfony/config": "^6.4|^7.0",
  5329. "symfony/dependency-injection": "^6.4|^7.0",
  5330. "symfony/filesystem": "^6.4|^7.0",
  5331. "symfony/http-kernel": "^6.4|^7.0",
  5332. "symfony/messenger": "^6.4|^7.0",
  5333. "symfony/var-dumper": "^6.4|^7.0"
  5334. },
  5335. "type": "library",
  5336. "autoload": {
  5337. "psr-4": {
  5338. "Symfony\\Component\\Cache\\": ""
  5339. },
  5340. "classmap": [
  5341. "Traits/ValueWrapper.php"
  5342. ],
  5343. "exclude-from-classmap": [
  5344. "/Tests/"
  5345. ]
  5346. },
  5347. "notification-url": "https://packagist.org/downloads/",
  5348. "license": [
  5349. "MIT"
  5350. ],
  5351. "authors": [
  5352. {
  5353. "name": "Nicolas Grekas",
  5354. "email": "p@tchwork.com"
  5355. },
  5356. {
  5357. "name": "Symfony Community",
  5358. "homepage": "https://symfony.com/contributors"
  5359. }
  5360. ],
  5361. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5362. "homepage": "https://symfony.com",
  5363. "keywords": [
  5364. "caching",
  5365. "psr6"
  5366. ],
  5367. "support": {
  5368. "source": "https://github.com/symfony/cache/tree/v7.1.7"
  5369. },
  5370. "funding": [
  5371. {
  5372. "url": "https://symfony.com/sponsor",
  5373. "type": "custom"
  5374. },
  5375. {
  5376. "url": "https://github.com/fabpot",
  5377. "type": "github"
  5378. },
  5379. {
  5380. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5381. "type": "tidelift"
  5382. }
  5383. ],
  5384. "time": "2024-11-05T15:34:55+00:00"
  5385. },
  5386. {
  5387. "name": "symfony/cache-contracts",
  5388. "version": "v3.5.0",
  5389. "source": {
  5390. "type": "git",
  5391. "url": "https://github.com/symfony/cache-contracts.git",
  5392. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  5393. },
  5394. "dist": {
  5395. "type": "zip",
  5396. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  5397. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  5398. "shasum": ""
  5399. },
  5400. "require": {
  5401. "php": ">=8.1",
  5402. "psr/cache": "^3.0"
  5403. },
  5404. "type": "library",
  5405. "extra": {
  5406. "branch-alias": {
  5407. "dev-main": "3.5-dev"
  5408. },
  5409. "thanks": {
  5410. "name": "symfony/contracts",
  5411. "url": "https://github.com/symfony/contracts"
  5412. }
  5413. },
  5414. "autoload": {
  5415. "psr-4": {
  5416. "Symfony\\Contracts\\Cache\\": ""
  5417. }
  5418. },
  5419. "notification-url": "https://packagist.org/downloads/",
  5420. "license": [
  5421. "MIT"
  5422. ],
  5423. "authors": [
  5424. {
  5425. "name": "Nicolas Grekas",
  5426. "email": "p@tchwork.com"
  5427. },
  5428. {
  5429. "name": "Symfony Community",
  5430. "homepage": "https://symfony.com/contributors"
  5431. }
  5432. ],
  5433. "description": "Generic abstractions related to caching",
  5434. "homepage": "https://symfony.com",
  5435. "keywords": [
  5436. "abstractions",
  5437. "contracts",
  5438. "decoupling",
  5439. "interfaces",
  5440. "interoperability",
  5441. "standards"
  5442. ],
  5443. "support": {
  5444. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  5445. },
  5446. "funding": [
  5447. {
  5448. "url": "https://symfony.com/sponsor",
  5449. "type": "custom"
  5450. },
  5451. {
  5452. "url": "https://github.com/fabpot",
  5453. "type": "github"
  5454. },
  5455. {
  5456. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5457. "type": "tidelift"
  5458. }
  5459. ],
  5460. "time": "2024-04-18T09:32:20+00:00"
  5461. },
  5462. {
  5463. "name": "symfony/clock",
  5464. "version": "v7.1.6",
  5465. "source": {
  5466. "type": "git",
  5467. "url": "https://github.com/symfony/clock.git",
  5468. "reference": "97bebc53548684c17ed696bc8af016880f0f098d"
  5469. },
  5470. "dist": {
  5471. "type": "zip",
  5472. "url": "https://api.github.com/repos/symfony/clock/zipball/97bebc53548684c17ed696bc8af016880f0f098d",
  5473. "reference": "97bebc53548684c17ed696bc8af016880f0f098d",
  5474. "shasum": ""
  5475. },
  5476. "require": {
  5477. "php": ">=8.2",
  5478. "psr/clock": "^1.0",
  5479. "symfony/polyfill-php83": "^1.28"
  5480. },
  5481. "provide": {
  5482. "psr/clock-implementation": "1.0"
  5483. },
  5484. "type": "library",
  5485. "autoload": {
  5486. "files": [
  5487. "Resources/now.php"
  5488. ],
  5489. "psr-4": {
  5490. "Symfony\\Component\\Clock\\": ""
  5491. },
  5492. "exclude-from-classmap": [
  5493. "/Tests/"
  5494. ]
  5495. },
  5496. "notification-url": "https://packagist.org/downloads/",
  5497. "license": [
  5498. "MIT"
  5499. ],
  5500. "authors": [
  5501. {
  5502. "name": "Nicolas Grekas",
  5503. "email": "p@tchwork.com"
  5504. },
  5505. {
  5506. "name": "Symfony Community",
  5507. "homepage": "https://symfony.com/contributors"
  5508. }
  5509. ],
  5510. "description": "Decouples applications from the system clock",
  5511. "homepage": "https://symfony.com",
  5512. "keywords": [
  5513. "clock",
  5514. "psr20",
  5515. "time"
  5516. ],
  5517. "support": {
  5518. "source": "https://github.com/symfony/clock/tree/v7.1.6"
  5519. },
  5520. "funding": [
  5521. {
  5522. "url": "https://symfony.com/sponsor",
  5523. "type": "custom"
  5524. },
  5525. {
  5526. "url": "https://github.com/fabpot",
  5527. "type": "github"
  5528. },
  5529. {
  5530. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5531. "type": "tidelift"
  5532. }
  5533. ],
  5534. "time": "2024-09-25T14:20:29+00:00"
  5535. },
  5536. {
  5537. "name": "symfony/console",
  5538. "version": "v7.1.8",
  5539. "source": {
  5540. "type": "git",
  5541. "url": "https://github.com/symfony/console.git",
  5542. "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5"
  5543. },
  5544. "dist": {
  5545. "type": "zip",
  5546. "url": "https://api.github.com/repos/symfony/console/zipball/ff04e5b5ba043d2badfb308197b9e6b42883fcd5",
  5547. "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5",
  5548. "shasum": ""
  5549. },
  5550. "require": {
  5551. "php": ">=8.2",
  5552. "symfony/polyfill-mbstring": "~1.0",
  5553. "symfony/service-contracts": "^2.5|^3",
  5554. "symfony/string": "^6.4|^7.0"
  5555. },
  5556. "conflict": {
  5557. "symfony/dependency-injection": "<6.4",
  5558. "symfony/dotenv": "<6.4",
  5559. "symfony/event-dispatcher": "<6.4",
  5560. "symfony/lock": "<6.4",
  5561. "symfony/process": "<6.4"
  5562. },
  5563. "provide": {
  5564. "psr/log-implementation": "1.0|2.0|3.0"
  5565. },
  5566. "require-dev": {
  5567. "psr/log": "^1|^2|^3",
  5568. "symfony/config": "^6.4|^7.0",
  5569. "symfony/dependency-injection": "^6.4|^7.0",
  5570. "symfony/event-dispatcher": "^6.4|^7.0",
  5571. "symfony/http-foundation": "^6.4|^7.0",
  5572. "symfony/http-kernel": "^6.4|^7.0",
  5573. "symfony/lock": "^6.4|^7.0",
  5574. "symfony/messenger": "^6.4|^7.0",
  5575. "symfony/process": "^6.4|^7.0",
  5576. "symfony/stopwatch": "^6.4|^7.0",
  5577. "symfony/var-dumper": "^6.4|^7.0"
  5578. },
  5579. "type": "library",
  5580. "autoload": {
  5581. "psr-4": {
  5582. "Symfony\\Component\\Console\\": ""
  5583. },
  5584. "exclude-from-classmap": [
  5585. "/Tests/"
  5586. ]
  5587. },
  5588. "notification-url": "https://packagist.org/downloads/",
  5589. "license": [
  5590. "MIT"
  5591. ],
  5592. "authors": [
  5593. {
  5594. "name": "Fabien Potencier",
  5595. "email": "fabien@symfony.com"
  5596. },
  5597. {
  5598. "name": "Symfony Community",
  5599. "homepage": "https://symfony.com/contributors"
  5600. }
  5601. ],
  5602. "description": "Eases the creation of beautiful and testable command line interfaces",
  5603. "homepage": "https://symfony.com",
  5604. "keywords": [
  5605. "cli",
  5606. "command-line",
  5607. "console",
  5608. "terminal"
  5609. ],
  5610. "support": {
  5611. "source": "https://github.com/symfony/console/tree/v7.1.8"
  5612. },
  5613. "funding": [
  5614. {
  5615. "url": "https://symfony.com/sponsor",
  5616. "type": "custom"
  5617. },
  5618. {
  5619. "url": "https://github.com/fabpot",
  5620. "type": "github"
  5621. },
  5622. {
  5623. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5624. "type": "tidelift"
  5625. }
  5626. ],
  5627. "time": "2024-11-06T14:23:19+00:00"
  5628. },
  5629. {
  5630. "name": "symfony/css-selector",
  5631. "version": "v7.1.6",
  5632. "source": {
  5633. "type": "git",
  5634. "url": "https://github.com/symfony/css-selector.git",
  5635. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66"
  5636. },
  5637. "dist": {
  5638. "type": "zip",
  5639. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  5640. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  5641. "shasum": ""
  5642. },
  5643. "require": {
  5644. "php": ">=8.2"
  5645. },
  5646. "type": "library",
  5647. "autoload": {
  5648. "psr-4": {
  5649. "Symfony\\Component\\CssSelector\\": ""
  5650. },
  5651. "exclude-from-classmap": [
  5652. "/Tests/"
  5653. ]
  5654. },
  5655. "notification-url": "https://packagist.org/downloads/",
  5656. "license": [
  5657. "MIT"
  5658. ],
  5659. "authors": [
  5660. {
  5661. "name": "Fabien Potencier",
  5662. "email": "fabien@symfony.com"
  5663. },
  5664. {
  5665. "name": "Jean-François Simon",
  5666. "email": "jeanfrancois.simon@sensiolabs.com"
  5667. },
  5668. {
  5669. "name": "Symfony Community",
  5670. "homepage": "https://symfony.com/contributors"
  5671. }
  5672. ],
  5673. "description": "Converts CSS selectors to XPath expressions",
  5674. "homepage": "https://symfony.com",
  5675. "support": {
  5676. "source": "https://github.com/symfony/css-selector/tree/v7.1.6"
  5677. },
  5678. "funding": [
  5679. {
  5680. "url": "https://symfony.com/sponsor",
  5681. "type": "custom"
  5682. },
  5683. {
  5684. "url": "https://github.com/fabpot",
  5685. "type": "github"
  5686. },
  5687. {
  5688. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5689. "type": "tidelift"
  5690. }
  5691. ],
  5692. "time": "2024-09-25T14:20:29+00:00"
  5693. },
  5694. {
  5695. "name": "symfony/deprecation-contracts",
  5696. "version": "v3.5.0",
  5697. "source": {
  5698. "type": "git",
  5699. "url": "https://github.com/symfony/deprecation-contracts.git",
  5700. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  5701. },
  5702. "dist": {
  5703. "type": "zip",
  5704. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5705. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5706. "shasum": ""
  5707. },
  5708. "require": {
  5709. "php": ">=8.1"
  5710. },
  5711. "type": "library",
  5712. "extra": {
  5713. "branch-alias": {
  5714. "dev-main": "3.5-dev"
  5715. },
  5716. "thanks": {
  5717. "name": "symfony/contracts",
  5718. "url": "https://github.com/symfony/contracts"
  5719. }
  5720. },
  5721. "autoload": {
  5722. "files": [
  5723. "function.php"
  5724. ]
  5725. },
  5726. "notification-url": "https://packagist.org/downloads/",
  5727. "license": [
  5728. "MIT"
  5729. ],
  5730. "authors": [
  5731. {
  5732. "name": "Nicolas Grekas",
  5733. "email": "p@tchwork.com"
  5734. },
  5735. {
  5736. "name": "Symfony Community",
  5737. "homepage": "https://symfony.com/contributors"
  5738. }
  5739. ],
  5740. "description": "A generic function and convention to trigger deprecation notices",
  5741. "homepage": "https://symfony.com",
  5742. "support": {
  5743. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  5744. },
  5745. "funding": [
  5746. {
  5747. "url": "https://symfony.com/sponsor",
  5748. "type": "custom"
  5749. },
  5750. {
  5751. "url": "https://github.com/fabpot",
  5752. "type": "github"
  5753. },
  5754. {
  5755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5756. "type": "tidelift"
  5757. }
  5758. ],
  5759. "time": "2024-04-18T09:32:20+00:00"
  5760. },
  5761. {
  5762. "name": "symfony/error-handler",
  5763. "version": "v7.1.7",
  5764. "source": {
  5765. "type": "git",
  5766. "url": "https://github.com/symfony/error-handler.git",
  5767. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342"
  5768. },
  5769. "dist": {
  5770. "type": "zip",
  5771. "url": "https://api.github.com/repos/symfony/error-handler/zipball/010e44661f4c6babaf8c4862fe68c24a53903342",
  5772. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342",
  5773. "shasum": ""
  5774. },
  5775. "require": {
  5776. "php": ">=8.2",
  5777. "psr/log": "^1|^2|^3",
  5778. "symfony/var-dumper": "^6.4|^7.0"
  5779. },
  5780. "conflict": {
  5781. "symfony/deprecation-contracts": "<2.5",
  5782. "symfony/http-kernel": "<6.4"
  5783. },
  5784. "require-dev": {
  5785. "symfony/deprecation-contracts": "^2.5|^3",
  5786. "symfony/http-kernel": "^6.4|^7.0",
  5787. "symfony/serializer": "^6.4|^7.0"
  5788. },
  5789. "bin": [
  5790. "Resources/bin/patch-type-declarations"
  5791. ],
  5792. "type": "library",
  5793. "autoload": {
  5794. "psr-4": {
  5795. "Symfony\\Component\\ErrorHandler\\": ""
  5796. },
  5797. "exclude-from-classmap": [
  5798. "/Tests/"
  5799. ]
  5800. },
  5801. "notification-url": "https://packagist.org/downloads/",
  5802. "license": [
  5803. "MIT"
  5804. ],
  5805. "authors": [
  5806. {
  5807. "name": "Fabien Potencier",
  5808. "email": "fabien@symfony.com"
  5809. },
  5810. {
  5811. "name": "Symfony Community",
  5812. "homepage": "https://symfony.com/contributors"
  5813. }
  5814. ],
  5815. "description": "Provides tools to manage errors and ease debugging PHP code",
  5816. "homepage": "https://symfony.com",
  5817. "support": {
  5818. "source": "https://github.com/symfony/error-handler/tree/v7.1.7"
  5819. },
  5820. "funding": [
  5821. {
  5822. "url": "https://symfony.com/sponsor",
  5823. "type": "custom"
  5824. },
  5825. {
  5826. "url": "https://github.com/fabpot",
  5827. "type": "github"
  5828. },
  5829. {
  5830. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5831. "type": "tidelift"
  5832. }
  5833. ],
  5834. "time": "2024-11-05T15:34:55+00:00"
  5835. },
  5836. {
  5837. "name": "symfony/event-dispatcher",
  5838. "version": "v7.1.6",
  5839. "source": {
  5840. "type": "git",
  5841. "url": "https://github.com/symfony/event-dispatcher.git",
  5842. "reference": "87254c78dd50721cfd015b62277a8281c5589702"
  5843. },
  5844. "dist": {
  5845. "type": "zip",
  5846. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/87254c78dd50721cfd015b62277a8281c5589702",
  5847. "reference": "87254c78dd50721cfd015b62277a8281c5589702",
  5848. "shasum": ""
  5849. },
  5850. "require": {
  5851. "php": ">=8.2",
  5852. "symfony/event-dispatcher-contracts": "^2.5|^3"
  5853. },
  5854. "conflict": {
  5855. "symfony/dependency-injection": "<6.4",
  5856. "symfony/service-contracts": "<2.5"
  5857. },
  5858. "provide": {
  5859. "psr/event-dispatcher-implementation": "1.0",
  5860. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5861. },
  5862. "require-dev": {
  5863. "psr/log": "^1|^2|^3",
  5864. "symfony/config": "^6.4|^7.0",
  5865. "symfony/dependency-injection": "^6.4|^7.0",
  5866. "symfony/error-handler": "^6.4|^7.0",
  5867. "symfony/expression-language": "^6.4|^7.0",
  5868. "symfony/http-foundation": "^6.4|^7.0",
  5869. "symfony/service-contracts": "^2.5|^3",
  5870. "symfony/stopwatch": "^6.4|^7.0"
  5871. },
  5872. "type": "library",
  5873. "autoload": {
  5874. "psr-4": {
  5875. "Symfony\\Component\\EventDispatcher\\": ""
  5876. },
  5877. "exclude-from-classmap": [
  5878. "/Tests/"
  5879. ]
  5880. },
  5881. "notification-url": "https://packagist.org/downloads/",
  5882. "license": [
  5883. "MIT"
  5884. ],
  5885. "authors": [
  5886. {
  5887. "name": "Fabien Potencier",
  5888. "email": "fabien@symfony.com"
  5889. },
  5890. {
  5891. "name": "Symfony Community",
  5892. "homepage": "https://symfony.com/contributors"
  5893. }
  5894. ],
  5895. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5896. "homepage": "https://symfony.com",
  5897. "support": {
  5898. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.6"
  5899. },
  5900. "funding": [
  5901. {
  5902. "url": "https://symfony.com/sponsor",
  5903. "type": "custom"
  5904. },
  5905. {
  5906. "url": "https://github.com/fabpot",
  5907. "type": "github"
  5908. },
  5909. {
  5910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5911. "type": "tidelift"
  5912. }
  5913. ],
  5914. "time": "2024-09-25T14:20:29+00:00"
  5915. },
  5916. {
  5917. "name": "symfony/event-dispatcher-contracts",
  5918. "version": "v3.5.0",
  5919. "source": {
  5920. "type": "git",
  5921. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5922. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  5923. },
  5924. "dist": {
  5925. "type": "zip",
  5926. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  5927. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  5928. "shasum": ""
  5929. },
  5930. "require": {
  5931. "php": ">=8.1",
  5932. "psr/event-dispatcher": "^1"
  5933. },
  5934. "type": "library",
  5935. "extra": {
  5936. "branch-alias": {
  5937. "dev-main": "3.5-dev"
  5938. },
  5939. "thanks": {
  5940. "name": "symfony/contracts",
  5941. "url": "https://github.com/symfony/contracts"
  5942. }
  5943. },
  5944. "autoload": {
  5945. "psr-4": {
  5946. "Symfony\\Contracts\\EventDispatcher\\": ""
  5947. }
  5948. },
  5949. "notification-url": "https://packagist.org/downloads/",
  5950. "license": [
  5951. "MIT"
  5952. ],
  5953. "authors": [
  5954. {
  5955. "name": "Nicolas Grekas",
  5956. "email": "p@tchwork.com"
  5957. },
  5958. {
  5959. "name": "Symfony Community",
  5960. "homepage": "https://symfony.com/contributors"
  5961. }
  5962. ],
  5963. "description": "Generic abstractions related to dispatching event",
  5964. "homepage": "https://symfony.com",
  5965. "keywords": [
  5966. "abstractions",
  5967. "contracts",
  5968. "decoupling",
  5969. "interfaces",
  5970. "interoperability",
  5971. "standards"
  5972. ],
  5973. "support": {
  5974. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  5975. },
  5976. "funding": [
  5977. {
  5978. "url": "https://symfony.com/sponsor",
  5979. "type": "custom"
  5980. },
  5981. {
  5982. "url": "https://github.com/fabpot",
  5983. "type": "github"
  5984. },
  5985. {
  5986. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5987. "type": "tidelift"
  5988. }
  5989. ],
  5990. "time": "2024-04-18T09:32:20+00:00"
  5991. },
  5992. {
  5993. "name": "symfony/finder",
  5994. "version": "v7.1.6",
  5995. "source": {
  5996. "type": "git",
  5997. "url": "https://github.com/symfony/finder.git",
  5998. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8"
  5999. },
  6000. "dist": {
  6001. "type": "zip",
  6002. "url": "https://api.github.com/repos/symfony/finder/zipball/2cb89664897be33f78c65d3d2845954c8d7a43b8",
  6003. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8",
  6004. "shasum": ""
  6005. },
  6006. "require": {
  6007. "php": ">=8.2"
  6008. },
  6009. "require-dev": {
  6010. "symfony/filesystem": "^6.4|^7.0"
  6011. },
  6012. "type": "library",
  6013. "autoload": {
  6014. "psr-4": {
  6015. "Symfony\\Component\\Finder\\": ""
  6016. },
  6017. "exclude-from-classmap": [
  6018. "/Tests/"
  6019. ]
  6020. },
  6021. "notification-url": "https://packagist.org/downloads/",
  6022. "license": [
  6023. "MIT"
  6024. ],
  6025. "authors": [
  6026. {
  6027. "name": "Fabien Potencier",
  6028. "email": "fabien@symfony.com"
  6029. },
  6030. {
  6031. "name": "Symfony Community",
  6032. "homepage": "https://symfony.com/contributors"
  6033. }
  6034. ],
  6035. "description": "Finds files and directories via an intuitive fluent interface",
  6036. "homepage": "https://symfony.com",
  6037. "support": {
  6038. "source": "https://github.com/symfony/finder/tree/v7.1.6"
  6039. },
  6040. "funding": [
  6041. {
  6042. "url": "https://symfony.com/sponsor",
  6043. "type": "custom"
  6044. },
  6045. {
  6046. "url": "https://github.com/fabpot",
  6047. "type": "github"
  6048. },
  6049. {
  6050. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6051. "type": "tidelift"
  6052. }
  6053. ],
  6054. "time": "2024-10-01T08:31:23+00:00"
  6055. },
  6056. {
  6057. "name": "symfony/http-client",
  6058. "version": "v7.1.8",
  6059. "source": {
  6060. "type": "git",
  6061. "url": "https://github.com/symfony/http-client.git",
  6062. "reference": "c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a"
  6063. },
  6064. "dist": {
  6065. "type": "zip",
  6066. "url": "https://api.github.com/repos/symfony/http-client/zipball/c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a",
  6067. "reference": "c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a",
  6068. "shasum": ""
  6069. },
  6070. "require": {
  6071. "php": ">=8.2",
  6072. "psr/log": "^1|^2|^3",
  6073. "symfony/deprecation-contracts": "^2.5|^3",
  6074. "symfony/http-client-contracts": "^3.4.1",
  6075. "symfony/service-contracts": "^2.5|^3"
  6076. },
  6077. "conflict": {
  6078. "php-http/discovery": "<1.15",
  6079. "symfony/http-foundation": "<6.4"
  6080. },
  6081. "provide": {
  6082. "php-http/async-client-implementation": "*",
  6083. "php-http/client-implementation": "*",
  6084. "psr/http-client-implementation": "1.0",
  6085. "symfony/http-client-implementation": "3.0"
  6086. },
  6087. "require-dev": {
  6088. "amphp/amp": "^2.5",
  6089. "amphp/http-client": "^4.2.1",
  6090. "amphp/http-tunnel": "^1.0",
  6091. "amphp/socket": "^1.1",
  6092. "guzzlehttp/promises": "^1.4|^2.0",
  6093. "nyholm/psr7": "^1.0",
  6094. "php-http/httplug": "^1.0|^2.0",
  6095. "psr/http-client": "^1.0",
  6096. "symfony/dependency-injection": "^6.4|^7.0",
  6097. "symfony/http-kernel": "^6.4|^7.0",
  6098. "symfony/messenger": "^6.4|^7.0",
  6099. "symfony/process": "^6.4|^7.0",
  6100. "symfony/rate-limiter": "^6.4|^7.0",
  6101. "symfony/stopwatch": "^6.4|^7.0"
  6102. },
  6103. "type": "library",
  6104. "autoload": {
  6105. "psr-4": {
  6106. "Symfony\\Component\\HttpClient\\": ""
  6107. },
  6108. "exclude-from-classmap": [
  6109. "/Tests/"
  6110. ]
  6111. },
  6112. "notification-url": "https://packagist.org/downloads/",
  6113. "license": [
  6114. "MIT"
  6115. ],
  6116. "authors": [
  6117. {
  6118. "name": "Nicolas Grekas",
  6119. "email": "p@tchwork.com"
  6120. },
  6121. {
  6122. "name": "Symfony Community",
  6123. "homepage": "https://symfony.com/contributors"
  6124. }
  6125. ],
  6126. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  6127. "homepage": "https://symfony.com",
  6128. "keywords": [
  6129. "http"
  6130. ],
  6131. "support": {
  6132. "source": "https://github.com/symfony/http-client/tree/v7.1.8"
  6133. },
  6134. "funding": [
  6135. {
  6136. "url": "https://symfony.com/sponsor",
  6137. "type": "custom"
  6138. },
  6139. {
  6140. "url": "https://github.com/fabpot",
  6141. "type": "github"
  6142. },
  6143. {
  6144. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6145. "type": "tidelift"
  6146. }
  6147. ],
  6148. "time": "2024-11-13T13:40:27+00:00"
  6149. },
  6150. {
  6151. "name": "symfony/http-client-contracts",
  6152. "version": "v3.5.0",
  6153. "source": {
  6154. "type": "git",
  6155. "url": "https://github.com/symfony/http-client-contracts.git",
  6156. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  6157. },
  6158. "dist": {
  6159. "type": "zip",
  6160. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  6161. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  6162. "shasum": ""
  6163. },
  6164. "require": {
  6165. "php": ">=8.1"
  6166. },
  6167. "type": "library",
  6168. "extra": {
  6169. "branch-alias": {
  6170. "dev-main": "3.5-dev"
  6171. },
  6172. "thanks": {
  6173. "name": "symfony/contracts",
  6174. "url": "https://github.com/symfony/contracts"
  6175. }
  6176. },
  6177. "autoload": {
  6178. "psr-4": {
  6179. "Symfony\\Contracts\\HttpClient\\": ""
  6180. },
  6181. "exclude-from-classmap": [
  6182. "/Test/"
  6183. ]
  6184. },
  6185. "notification-url": "https://packagist.org/downloads/",
  6186. "license": [
  6187. "MIT"
  6188. ],
  6189. "authors": [
  6190. {
  6191. "name": "Nicolas Grekas",
  6192. "email": "p@tchwork.com"
  6193. },
  6194. {
  6195. "name": "Symfony Community",
  6196. "homepage": "https://symfony.com/contributors"
  6197. }
  6198. ],
  6199. "description": "Generic abstractions related to HTTP clients",
  6200. "homepage": "https://symfony.com",
  6201. "keywords": [
  6202. "abstractions",
  6203. "contracts",
  6204. "decoupling",
  6205. "interfaces",
  6206. "interoperability",
  6207. "standards"
  6208. ],
  6209. "support": {
  6210. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  6211. },
  6212. "funding": [
  6213. {
  6214. "url": "https://symfony.com/sponsor",
  6215. "type": "custom"
  6216. },
  6217. {
  6218. "url": "https://github.com/fabpot",
  6219. "type": "github"
  6220. },
  6221. {
  6222. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6223. "type": "tidelift"
  6224. }
  6225. ],
  6226. "time": "2024-04-18T09:32:20+00:00"
  6227. },
  6228. {
  6229. "name": "symfony/http-foundation",
  6230. "version": "v7.1.8",
  6231. "source": {
  6232. "type": "git",
  6233. "url": "https://github.com/symfony/http-foundation.git",
  6234. "reference": "f4419ec69ccfc3f725a4de7c20e4e57626d10112"
  6235. },
  6236. "dist": {
  6237. "type": "zip",
  6238. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f4419ec69ccfc3f725a4de7c20e4e57626d10112",
  6239. "reference": "f4419ec69ccfc3f725a4de7c20e4e57626d10112",
  6240. "shasum": ""
  6241. },
  6242. "require": {
  6243. "php": ">=8.2",
  6244. "symfony/polyfill-mbstring": "~1.1",
  6245. "symfony/polyfill-php83": "^1.27"
  6246. },
  6247. "conflict": {
  6248. "doctrine/dbal": "<3.6",
  6249. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  6250. },
  6251. "require-dev": {
  6252. "doctrine/dbal": "^3.6|^4",
  6253. "predis/predis": "^1.1|^2.0",
  6254. "symfony/cache": "^6.4.12|^7.1.5",
  6255. "symfony/dependency-injection": "^6.4|^7.0",
  6256. "symfony/expression-language": "^6.4|^7.0",
  6257. "symfony/http-kernel": "^6.4|^7.0",
  6258. "symfony/mime": "^6.4|^7.0",
  6259. "symfony/rate-limiter": "^6.4|^7.0"
  6260. },
  6261. "type": "library",
  6262. "autoload": {
  6263. "psr-4": {
  6264. "Symfony\\Component\\HttpFoundation\\": ""
  6265. },
  6266. "exclude-from-classmap": [
  6267. "/Tests/"
  6268. ]
  6269. },
  6270. "notification-url": "https://packagist.org/downloads/",
  6271. "license": [
  6272. "MIT"
  6273. ],
  6274. "authors": [
  6275. {
  6276. "name": "Fabien Potencier",
  6277. "email": "fabien@symfony.com"
  6278. },
  6279. {
  6280. "name": "Symfony Community",
  6281. "homepage": "https://symfony.com/contributors"
  6282. }
  6283. ],
  6284. "description": "Defines an object-oriented layer for the HTTP specification",
  6285. "homepage": "https://symfony.com",
  6286. "support": {
  6287. "source": "https://github.com/symfony/http-foundation/tree/v7.1.8"
  6288. },
  6289. "funding": [
  6290. {
  6291. "url": "https://symfony.com/sponsor",
  6292. "type": "custom"
  6293. },
  6294. {
  6295. "url": "https://github.com/fabpot",
  6296. "type": "github"
  6297. },
  6298. {
  6299. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6300. "type": "tidelift"
  6301. }
  6302. ],
  6303. "time": "2024-11-09T09:16:45+00:00"
  6304. },
  6305. {
  6306. "name": "symfony/http-kernel",
  6307. "version": "v7.1.8",
  6308. "source": {
  6309. "type": "git",
  6310. "url": "https://github.com/symfony/http-kernel.git",
  6311. "reference": "33fef24e3dc79d6d30bf4936531f2f4bd2ca189e"
  6312. },
  6313. "dist": {
  6314. "type": "zip",
  6315. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/33fef24e3dc79d6d30bf4936531f2f4bd2ca189e",
  6316. "reference": "33fef24e3dc79d6d30bf4936531f2f4bd2ca189e",
  6317. "shasum": ""
  6318. },
  6319. "require": {
  6320. "php": ">=8.2",
  6321. "psr/log": "^1|^2|^3",
  6322. "symfony/deprecation-contracts": "^2.5|^3",
  6323. "symfony/error-handler": "^6.4|^7.0",
  6324. "symfony/event-dispatcher": "^6.4|^7.0",
  6325. "symfony/http-foundation": "^6.4|^7.0",
  6326. "symfony/polyfill-ctype": "^1.8"
  6327. },
  6328. "conflict": {
  6329. "symfony/browser-kit": "<6.4",
  6330. "symfony/cache": "<6.4",
  6331. "symfony/config": "<6.4",
  6332. "symfony/console": "<6.4",
  6333. "symfony/dependency-injection": "<6.4",
  6334. "symfony/doctrine-bridge": "<6.4",
  6335. "symfony/form": "<6.4",
  6336. "symfony/http-client": "<6.4",
  6337. "symfony/http-client-contracts": "<2.5",
  6338. "symfony/mailer": "<6.4",
  6339. "symfony/messenger": "<6.4",
  6340. "symfony/translation": "<6.4",
  6341. "symfony/translation-contracts": "<2.5",
  6342. "symfony/twig-bridge": "<6.4",
  6343. "symfony/validator": "<6.4",
  6344. "symfony/var-dumper": "<6.4",
  6345. "twig/twig": "<3.0.4"
  6346. },
  6347. "provide": {
  6348. "psr/log-implementation": "1.0|2.0|3.0"
  6349. },
  6350. "require-dev": {
  6351. "psr/cache": "^1.0|^2.0|^3.0",
  6352. "symfony/browser-kit": "^6.4|^7.0",
  6353. "symfony/clock": "^6.4|^7.0",
  6354. "symfony/config": "^6.4|^7.0",
  6355. "symfony/console": "^6.4|^7.0",
  6356. "symfony/css-selector": "^6.4|^7.0",
  6357. "symfony/dependency-injection": "^6.4|^7.0",
  6358. "symfony/dom-crawler": "^6.4|^7.0",
  6359. "symfony/expression-language": "^6.4|^7.0",
  6360. "symfony/finder": "^6.4|^7.0",
  6361. "symfony/http-client-contracts": "^2.5|^3",
  6362. "symfony/process": "^6.4|^7.0",
  6363. "symfony/property-access": "^7.1",
  6364. "symfony/routing": "^6.4|^7.0",
  6365. "symfony/serializer": "^7.1",
  6366. "symfony/stopwatch": "^6.4|^7.0",
  6367. "symfony/translation": "^6.4|^7.0",
  6368. "symfony/translation-contracts": "^2.5|^3",
  6369. "symfony/uid": "^6.4|^7.0",
  6370. "symfony/validator": "^6.4|^7.0",
  6371. "symfony/var-dumper": "^6.4|^7.0",
  6372. "symfony/var-exporter": "^6.4|^7.0",
  6373. "twig/twig": "^3.0.4"
  6374. },
  6375. "type": "library",
  6376. "autoload": {
  6377. "psr-4": {
  6378. "Symfony\\Component\\HttpKernel\\": ""
  6379. },
  6380. "exclude-from-classmap": [
  6381. "/Tests/"
  6382. ]
  6383. },
  6384. "notification-url": "https://packagist.org/downloads/",
  6385. "license": [
  6386. "MIT"
  6387. ],
  6388. "authors": [
  6389. {
  6390. "name": "Fabien Potencier",
  6391. "email": "fabien@symfony.com"
  6392. },
  6393. {
  6394. "name": "Symfony Community",
  6395. "homepage": "https://symfony.com/contributors"
  6396. }
  6397. ],
  6398. "description": "Provides a structured process for converting a Request into a Response",
  6399. "homepage": "https://symfony.com",
  6400. "support": {
  6401. "source": "https://github.com/symfony/http-kernel/tree/v7.1.8"
  6402. },
  6403. "funding": [
  6404. {
  6405. "url": "https://symfony.com/sponsor",
  6406. "type": "custom"
  6407. },
  6408. {
  6409. "url": "https://github.com/fabpot",
  6410. "type": "github"
  6411. },
  6412. {
  6413. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6414. "type": "tidelift"
  6415. }
  6416. ],
  6417. "time": "2024-11-13T14:25:32+00:00"
  6418. },
  6419. {
  6420. "name": "symfony/mailer",
  6421. "version": "v7.1.6",
  6422. "source": {
  6423. "type": "git",
  6424. "url": "https://github.com/symfony/mailer.git",
  6425. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd"
  6426. },
  6427. "dist": {
  6428. "type": "zip",
  6429. "url": "https://api.github.com/repos/symfony/mailer/zipball/69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  6430. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  6431. "shasum": ""
  6432. },
  6433. "require": {
  6434. "egulias/email-validator": "^2.1.10|^3|^4",
  6435. "php": ">=8.2",
  6436. "psr/event-dispatcher": "^1",
  6437. "psr/log": "^1|^2|^3",
  6438. "symfony/event-dispatcher": "^6.4|^7.0",
  6439. "symfony/mime": "^6.4|^7.0",
  6440. "symfony/service-contracts": "^2.5|^3"
  6441. },
  6442. "conflict": {
  6443. "symfony/http-client-contracts": "<2.5",
  6444. "symfony/http-kernel": "<6.4",
  6445. "symfony/messenger": "<6.4",
  6446. "symfony/mime": "<6.4",
  6447. "symfony/twig-bridge": "<6.4"
  6448. },
  6449. "require-dev": {
  6450. "symfony/console": "^6.4|^7.0",
  6451. "symfony/http-client": "^6.4|^7.0",
  6452. "symfony/messenger": "^6.4|^7.0",
  6453. "symfony/twig-bridge": "^6.4|^7.0"
  6454. },
  6455. "type": "library",
  6456. "autoload": {
  6457. "psr-4": {
  6458. "Symfony\\Component\\Mailer\\": ""
  6459. },
  6460. "exclude-from-classmap": [
  6461. "/Tests/"
  6462. ]
  6463. },
  6464. "notification-url": "https://packagist.org/downloads/",
  6465. "license": [
  6466. "MIT"
  6467. ],
  6468. "authors": [
  6469. {
  6470. "name": "Fabien Potencier",
  6471. "email": "fabien@symfony.com"
  6472. },
  6473. {
  6474. "name": "Symfony Community",
  6475. "homepage": "https://symfony.com/contributors"
  6476. }
  6477. ],
  6478. "description": "Helps sending emails",
  6479. "homepage": "https://symfony.com",
  6480. "support": {
  6481. "source": "https://github.com/symfony/mailer/tree/v7.1.6"
  6482. },
  6483. "funding": [
  6484. {
  6485. "url": "https://symfony.com/sponsor",
  6486. "type": "custom"
  6487. },
  6488. {
  6489. "url": "https://github.com/fabpot",
  6490. "type": "github"
  6491. },
  6492. {
  6493. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6494. "type": "tidelift"
  6495. }
  6496. ],
  6497. "time": "2024-09-25T14:20:29+00:00"
  6498. },
  6499. {
  6500. "name": "symfony/mime",
  6501. "version": "v7.1.6",
  6502. "source": {
  6503. "type": "git",
  6504. "url": "https://github.com/symfony/mime.git",
  6505. "reference": "caa1e521edb2650b8470918dfe51708c237f0598"
  6506. },
  6507. "dist": {
  6508. "type": "zip",
  6509. "url": "https://api.github.com/repos/symfony/mime/zipball/caa1e521edb2650b8470918dfe51708c237f0598",
  6510. "reference": "caa1e521edb2650b8470918dfe51708c237f0598",
  6511. "shasum": ""
  6512. },
  6513. "require": {
  6514. "php": ">=8.2",
  6515. "symfony/polyfill-intl-idn": "^1.10",
  6516. "symfony/polyfill-mbstring": "^1.0"
  6517. },
  6518. "conflict": {
  6519. "egulias/email-validator": "~3.0.0",
  6520. "phpdocumentor/reflection-docblock": "<3.2.2",
  6521. "phpdocumentor/type-resolver": "<1.4.0",
  6522. "symfony/mailer": "<6.4",
  6523. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  6524. },
  6525. "require-dev": {
  6526. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6527. "league/html-to-markdown": "^5.0",
  6528. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6529. "symfony/dependency-injection": "^6.4|^7.0",
  6530. "symfony/process": "^6.4|^7.0",
  6531. "symfony/property-access": "^6.4|^7.0",
  6532. "symfony/property-info": "^6.4|^7.0",
  6533. "symfony/serializer": "^6.4.3|^7.0.3"
  6534. },
  6535. "type": "library",
  6536. "autoload": {
  6537. "psr-4": {
  6538. "Symfony\\Component\\Mime\\": ""
  6539. },
  6540. "exclude-from-classmap": [
  6541. "/Tests/"
  6542. ]
  6543. },
  6544. "notification-url": "https://packagist.org/downloads/",
  6545. "license": [
  6546. "MIT"
  6547. ],
  6548. "authors": [
  6549. {
  6550. "name": "Fabien Potencier",
  6551. "email": "fabien@symfony.com"
  6552. },
  6553. {
  6554. "name": "Symfony Community",
  6555. "homepage": "https://symfony.com/contributors"
  6556. }
  6557. ],
  6558. "description": "Allows manipulating MIME messages",
  6559. "homepage": "https://symfony.com",
  6560. "keywords": [
  6561. "mime",
  6562. "mime-type"
  6563. ],
  6564. "support": {
  6565. "source": "https://github.com/symfony/mime/tree/v7.1.6"
  6566. },
  6567. "funding": [
  6568. {
  6569. "url": "https://symfony.com/sponsor",
  6570. "type": "custom"
  6571. },
  6572. {
  6573. "url": "https://github.com/fabpot",
  6574. "type": "github"
  6575. },
  6576. {
  6577. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6578. "type": "tidelift"
  6579. }
  6580. ],
  6581. "time": "2024-10-25T15:11:02+00:00"
  6582. },
  6583. {
  6584. "name": "symfony/polyfill-ctype",
  6585. "version": "v1.31.0",
  6586. "source": {
  6587. "type": "git",
  6588. "url": "https://github.com/symfony/polyfill-ctype.git",
  6589. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6590. },
  6591. "dist": {
  6592. "type": "zip",
  6593. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6594. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6595. "shasum": ""
  6596. },
  6597. "require": {
  6598. "php": ">=7.2"
  6599. },
  6600. "provide": {
  6601. "ext-ctype": "*"
  6602. },
  6603. "suggest": {
  6604. "ext-ctype": "For best performance"
  6605. },
  6606. "type": "library",
  6607. "extra": {
  6608. "thanks": {
  6609. "name": "symfony/polyfill",
  6610. "url": "https://github.com/symfony/polyfill"
  6611. }
  6612. },
  6613. "autoload": {
  6614. "files": [
  6615. "bootstrap.php"
  6616. ],
  6617. "psr-4": {
  6618. "Symfony\\Polyfill\\Ctype\\": ""
  6619. }
  6620. },
  6621. "notification-url": "https://packagist.org/downloads/",
  6622. "license": [
  6623. "MIT"
  6624. ],
  6625. "authors": [
  6626. {
  6627. "name": "Gert de Pagter",
  6628. "email": "BackEndTea@gmail.com"
  6629. },
  6630. {
  6631. "name": "Symfony Community",
  6632. "homepage": "https://symfony.com/contributors"
  6633. }
  6634. ],
  6635. "description": "Symfony polyfill for ctype functions",
  6636. "homepage": "https://symfony.com",
  6637. "keywords": [
  6638. "compatibility",
  6639. "ctype",
  6640. "polyfill",
  6641. "portable"
  6642. ],
  6643. "support": {
  6644. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  6645. },
  6646. "funding": [
  6647. {
  6648. "url": "https://symfony.com/sponsor",
  6649. "type": "custom"
  6650. },
  6651. {
  6652. "url": "https://github.com/fabpot",
  6653. "type": "github"
  6654. },
  6655. {
  6656. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6657. "type": "tidelift"
  6658. }
  6659. ],
  6660. "time": "2024-09-09T11:45:10+00:00"
  6661. },
  6662. {
  6663. "name": "symfony/polyfill-intl-grapheme",
  6664. "version": "v1.31.0",
  6665. "source": {
  6666. "type": "git",
  6667. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6668. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6669. },
  6670. "dist": {
  6671. "type": "zip",
  6672. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6673. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6674. "shasum": ""
  6675. },
  6676. "require": {
  6677. "php": ">=7.2"
  6678. },
  6679. "suggest": {
  6680. "ext-intl": "For best performance"
  6681. },
  6682. "type": "library",
  6683. "extra": {
  6684. "thanks": {
  6685. "name": "symfony/polyfill",
  6686. "url": "https://github.com/symfony/polyfill"
  6687. }
  6688. },
  6689. "autoload": {
  6690. "files": [
  6691. "bootstrap.php"
  6692. ],
  6693. "psr-4": {
  6694. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6695. }
  6696. },
  6697. "notification-url": "https://packagist.org/downloads/",
  6698. "license": [
  6699. "MIT"
  6700. ],
  6701. "authors": [
  6702. {
  6703. "name": "Nicolas Grekas",
  6704. "email": "p@tchwork.com"
  6705. },
  6706. {
  6707. "name": "Symfony Community",
  6708. "homepage": "https://symfony.com/contributors"
  6709. }
  6710. ],
  6711. "description": "Symfony polyfill for intl's grapheme_* functions",
  6712. "homepage": "https://symfony.com",
  6713. "keywords": [
  6714. "compatibility",
  6715. "grapheme",
  6716. "intl",
  6717. "polyfill",
  6718. "portable",
  6719. "shim"
  6720. ],
  6721. "support": {
  6722. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6723. },
  6724. "funding": [
  6725. {
  6726. "url": "https://symfony.com/sponsor",
  6727. "type": "custom"
  6728. },
  6729. {
  6730. "url": "https://github.com/fabpot",
  6731. "type": "github"
  6732. },
  6733. {
  6734. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6735. "type": "tidelift"
  6736. }
  6737. ],
  6738. "time": "2024-09-09T11:45:10+00:00"
  6739. },
  6740. {
  6741. "name": "symfony/polyfill-intl-idn",
  6742. "version": "v1.31.0",
  6743. "source": {
  6744. "type": "git",
  6745. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6746. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  6747. },
  6748. "dist": {
  6749. "type": "zip",
  6750. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  6751. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  6752. "shasum": ""
  6753. },
  6754. "require": {
  6755. "php": ">=7.2",
  6756. "symfony/polyfill-intl-normalizer": "^1.10"
  6757. },
  6758. "suggest": {
  6759. "ext-intl": "For best performance"
  6760. },
  6761. "type": "library",
  6762. "extra": {
  6763. "thanks": {
  6764. "name": "symfony/polyfill",
  6765. "url": "https://github.com/symfony/polyfill"
  6766. }
  6767. },
  6768. "autoload": {
  6769. "files": [
  6770. "bootstrap.php"
  6771. ],
  6772. "psr-4": {
  6773. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6774. }
  6775. },
  6776. "notification-url": "https://packagist.org/downloads/",
  6777. "license": [
  6778. "MIT"
  6779. ],
  6780. "authors": [
  6781. {
  6782. "name": "Laurent Bassin",
  6783. "email": "laurent@bassin.info"
  6784. },
  6785. {
  6786. "name": "Trevor Rowbotham",
  6787. "email": "trevor.rowbotham@pm.me"
  6788. },
  6789. {
  6790. "name": "Symfony Community",
  6791. "homepage": "https://symfony.com/contributors"
  6792. }
  6793. ],
  6794. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6795. "homepage": "https://symfony.com",
  6796. "keywords": [
  6797. "compatibility",
  6798. "idn",
  6799. "intl",
  6800. "polyfill",
  6801. "portable",
  6802. "shim"
  6803. ],
  6804. "support": {
  6805. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  6806. },
  6807. "funding": [
  6808. {
  6809. "url": "https://symfony.com/sponsor",
  6810. "type": "custom"
  6811. },
  6812. {
  6813. "url": "https://github.com/fabpot",
  6814. "type": "github"
  6815. },
  6816. {
  6817. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6818. "type": "tidelift"
  6819. }
  6820. ],
  6821. "time": "2024-09-09T11:45:10+00:00"
  6822. },
  6823. {
  6824. "name": "symfony/polyfill-intl-normalizer",
  6825. "version": "v1.31.0",
  6826. "source": {
  6827. "type": "git",
  6828. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6829. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6830. },
  6831. "dist": {
  6832. "type": "zip",
  6833. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6834. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6835. "shasum": ""
  6836. },
  6837. "require": {
  6838. "php": ">=7.2"
  6839. },
  6840. "suggest": {
  6841. "ext-intl": "For best performance"
  6842. },
  6843. "type": "library",
  6844. "extra": {
  6845. "thanks": {
  6846. "name": "symfony/polyfill",
  6847. "url": "https://github.com/symfony/polyfill"
  6848. }
  6849. },
  6850. "autoload": {
  6851. "files": [
  6852. "bootstrap.php"
  6853. ],
  6854. "psr-4": {
  6855. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6856. },
  6857. "classmap": [
  6858. "Resources/stubs"
  6859. ]
  6860. },
  6861. "notification-url": "https://packagist.org/downloads/",
  6862. "license": [
  6863. "MIT"
  6864. ],
  6865. "authors": [
  6866. {
  6867. "name": "Nicolas Grekas",
  6868. "email": "p@tchwork.com"
  6869. },
  6870. {
  6871. "name": "Symfony Community",
  6872. "homepage": "https://symfony.com/contributors"
  6873. }
  6874. ],
  6875. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6876. "homepage": "https://symfony.com",
  6877. "keywords": [
  6878. "compatibility",
  6879. "intl",
  6880. "normalizer",
  6881. "polyfill",
  6882. "portable",
  6883. "shim"
  6884. ],
  6885. "support": {
  6886. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6887. },
  6888. "funding": [
  6889. {
  6890. "url": "https://symfony.com/sponsor",
  6891. "type": "custom"
  6892. },
  6893. {
  6894. "url": "https://github.com/fabpot",
  6895. "type": "github"
  6896. },
  6897. {
  6898. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6899. "type": "tidelift"
  6900. }
  6901. ],
  6902. "time": "2024-09-09T11:45:10+00:00"
  6903. },
  6904. {
  6905. "name": "symfony/polyfill-mbstring",
  6906. "version": "v1.31.0",
  6907. "source": {
  6908. "type": "git",
  6909. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6910. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6911. },
  6912. "dist": {
  6913. "type": "zip",
  6914. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6915. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6916. "shasum": ""
  6917. },
  6918. "require": {
  6919. "php": ">=7.2"
  6920. },
  6921. "provide": {
  6922. "ext-mbstring": "*"
  6923. },
  6924. "suggest": {
  6925. "ext-mbstring": "For best performance"
  6926. },
  6927. "type": "library",
  6928. "extra": {
  6929. "thanks": {
  6930. "name": "symfony/polyfill",
  6931. "url": "https://github.com/symfony/polyfill"
  6932. }
  6933. },
  6934. "autoload": {
  6935. "files": [
  6936. "bootstrap.php"
  6937. ],
  6938. "psr-4": {
  6939. "Symfony\\Polyfill\\Mbstring\\": ""
  6940. }
  6941. },
  6942. "notification-url": "https://packagist.org/downloads/",
  6943. "license": [
  6944. "MIT"
  6945. ],
  6946. "authors": [
  6947. {
  6948. "name": "Nicolas Grekas",
  6949. "email": "p@tchwork.com"
  6950. },
  6951. {
  6952. "name": "Symfony Community",
  6953. "homepage": "https://symfony.com/contributors"
  6954. }
  6955. ],
  6956. "description": "Symfony polyfill for the Mbstring extension",
  6957. "homepage": "https://symfony.com",
  6958. "keywords": [
  6959. "compatibility",
  6960. "mbstring",
  6961. "polyfill",
  6962. "portable",
  6963. "shim"
  6964. ],
  6965. "support": {
  6966. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6967. },
  6968. "funding": [
  6969. {
  6970. "url": "https://symfony.com/sponsor",
  6971. "type": "custom"
  6972. },
  6973. {
  6974. "url": "https://github.com/fabpot",
  6975. "type": "github"
  6976. },
  6977. {
  6978. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6979. "type": "tidelift"
  6980. }
  6981. ],
  6982. "time": "2024-09-09T11:45:10+00:00"
  6983. },
  6984. {
  6985. "name": "symfony/polyfill-php80",
  6986. "version": "v1.31.0",
  6987. "source": {
  6988. "type": "git",
  6989. "url": "https://github.com/symfony/polyfill-php80.git",
  6990. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  6991. },
  6992. "dist": {
  6993. "type": "zip",
  6994. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6995. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6996. "shasum": ""
  6997. },
  6998. "require": {
  6999. "php": ">=7.2"
  7000. },
  7001. "type": "library",
  7002. "extra": {
  7003. "thanks": {
  7004. "name": "symfony/polyfill",
  7005. "url": "https://github.com/symfony/polyfill"
  7006. }
  7007. },
  7008. "autoload": {
  7009. "files": [
  7010. "bootstrap.php"
  7011. ],
  7012. "psr-4": {
  7013. "Symfony\\Polyfill\\Php80\\": ""
  7014. },
  7015. "classmap": [
  7016. "Resources/stubs"
  7017. ]
  7018. },
  7019. "notification-url": "https://packagist.org/downloads/",
  7020. "license": [
  7021. "MIT"
  7022. ],
  7023. "authors": [
  7024. {
  7025. "name": "Ion Bazan",
  7026. "email": "ion.bazan@gmail.com"
  7027. },
  7028. {
  7029. "name": "Nicolas Grekas",
  7030. "email": "p@tchwork.com"
  7031. },
  7032. {
  7033. "name": "Symfony Community",
  7034. "homepage": "https://symfony.com/contributors"
  7035. }
  7036. ],
  7037. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7038. "homepage": "https://symfony.com",
  7039. "keywords": [
  7040. "compatibility",
  7041. "polyfill",
  7042. "portable",
  7043. "shim"
  7044. ],
  7045. "support": {
  7046. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7047. },
  7048. "funding": [
  7049. {
  7050. "url": "https://symfony.com/sponsor",
  7051. "type": "custom"
  7052. },
  7053. {
  7054. "url": "https://github.com/fabpot",
  7055. "type": "github"
  7056. },
  7057. {
  7058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7059. "type": "tidelift"
  7060. }
  7061. ],
  7062. "time": "2024-09-09T11:45:10+00:00"
  7063. },
  7064. {
  7065. "name": "symfony/polyfill-php81",
  7066. "version": "v1.31.0",
  7067. "source": {
  7068. "type": "git",
  7069. "url": "https://github.com/symfony/polyfill-php81.git",
  7070. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  7071. },
  7072. "dist": {
  7073. "type": "zip",
  7074. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  7075. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  7076. "shasum": ""
  7077. },
  7078. "require": {
  7079. "php": ">=7.2"
  7080. },
  7081. "type": "library",
  7082. "extra": {
  7083. "thanks": {
  7084. "name": "symfony/polyfill",
  7085. "url": "https://github.com/symfony/polyfill"
  7086. }
  7087. },
  7088. "autoload": {
  7089. "files": [
  7090. "bootstrap.php"
  7091. ],
  7092. "psr-4": {
  7093. "Symfony\\Polyfill\\Php81\\": ""
  7094. },
  7095. "classmap": [
  7096. "Resources/stubs"
  7097. ]
  7098. },
  7099. "notification-url": "https://packagist.org/downloads/",
  7100. "license": [
  7101. "MIT"
  7102. ],
  7103. "authors": [
  7104. {
  7105. "name": "Nicolas Grekas",
  7106. "email": "p@tchwork.com"
  7107. },
  7108. {
  7109. "name": "Symfony Community",
  7110. "homepage": "https://symfony.com/contributors"
  7111. }
  7112. ],
  7113. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7114. "homepage": "https://symfony.com",
  7115. "keywords": [
  7116. "compatibility",
  7117. "polyfill",
  7118. "portable",
  7119. "shim"
  7120. ],
  7121. "support": {
  7122. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  7123. },
  7124. "funding": [
  7125. {
  7126. "url": "https://symfony.com/sponsor",
  7127. "type": "custom"
  7128. },
  7129. {
  7130. "url": "https://github.com/fabpot",
  7131. "type": "github"
  7132. },
  7133. {
  7134. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7135. "type": "tidelift"
  7136. }
  7137. ],
  7138. "time": "2024-09-09T11:45:10+00:00"
  7139. },
  7140. {
  7141. "name": "symfony/polyfill-php83",
  7142. "version": "v1.31.0",
  7143. "source": {
  7144. "type": "git",
  7145. "url": "https://github.com/symfony/polyfill-php83.git",
  7146. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  7147. },
  7148. "dist": {
  7149. "type": "zip",
  7150. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  7151. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  7152. "shasum": ""
  7153. },
  7154. "require": {
  7155. "php": ">=7.2"
  7156. },
  7157. "type": "library",
  7158. "extra": {
  7159. "thanks": {
  7160. "name": "symfony/polyfill",
  7161. "url": "https://github.com/symfony/polyfill"
  7162. }
  7163. },
  7164. "autoload": {
  7165. "files": [
  7166. "bootstrap.php"
  7167. ],
  7168. "psr-4": {
  7169. "Symfony\\Polyfill\\Php83\\": ""
  7170. },
  7171. "classmap": [
  7172. "Resources/stubs"
  7173. ]
  7174. },
  7175. "notification-url": "https://packagist.org/downloads/",
  7176. "license": [
  7177. "MIT"
  7178. ],
  7179. "authors": [
  7180. {
  7181. "name": "Nicolas Grekas",
  7182. "email": "p@tchwork.com"
  7183. },
  7184. {
  7185. "name": "Symfony Community",
  7186. "homepage": "https://symfony.com/contributors"
  7187. }
  7188. ],
  7189. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  7190. "homepage": "https://symfony.com",
  7191. "keywords": [
  7192. "compatibility",
  7193. "polyfill",
  7194. "portable",
  7195. "shim"
  7196. ],
  7197. "support": {
  7198. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  7199. },
  7200. "funding": [
  7201. {
  7202. "url": "https://symfony.com/sponsor",
  7203. "type": "custom"
  7204. },
  7205. {
  7206. "url": "https://github.com/fabpot",
  7207. "type": "github"
  7208. },
  7209. {
  7210. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7211. "type": "tidelift"
  7212. }
  7213. ],
  7214. "time": "2024-09-09T11:45:10+00:00"
  7215. },
  7216. {
  7217. "name": "symfony/polyfill-uuid",
  7218. "version": "v1.31.0",
  7219. "source": {
  7220. "type": "git",
  7221. "url": "https://github.com/symfony/polyfill-uuid.git",
  7222. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  7223. },
  7224. "dist": {
  7225. "type": "zip",
  7226. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  7227. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  7228. "shasum": ""
  7229. },
  7230. "require": {
  7231. "php": ">=7.2"
  7232. },
  7233. "provide": {
  7234. "ext-uuid": "*"
  7235. },
  7236. "suggest": {
  7237. "ext-uuid": "For best performance"
  7238. },
  7239. "type": "library",
  7240. "extra": {
  7241. "thanks": {
  7242. "name": "symfony/polyfill",
  7243. "url": "https://github.com/symfony/polyfill"
  7244. }
  7245. },
  7246. "autoload": {
  7247. "files": [
  7248. "bootstrap.php"
  7249. ],
  7250. "psr-4": {
  7251. "Symfony\\Polyfill\\Uuid\\": ""
  7252. }
  7253. },
  7254. "notification-url": "https://packagist.org/downloads/",
  7255. "license": [
  7256. "MIT"
  7257. ],
  7258. "authors": [
  7259. {
  7260. "name": "Grégoire Pineau",
  7261. "email": "lyrixx@lyrixx.info"
  7262. },
  7263. {
  7264. "name": "Symfony Community",
  7265. "homepage": "https://symfony.com/contributors"
  7266. }
  7267. ],
  7268. "description": "Symfony polyfill for uuid functions",
  7269. "homepage": "https://symfony.com",
  7270. "keywords": [
  7271. "compatibility",
  7272. "polyfill",
  7273. "portable",
  7274. "uuid"
  7275. ],
  7276. "support": {
  7277. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  7278. },
  7279. "funding": [
  7280. {
  7281. "url": "https://symfony.com/sponsor",
  7282. "type": "custom"
  7283. },
  7284. {
  7285. "url": "https://github.com/fabpot",
  7286. "type": "github"
  7287. },
  7288. {
  7289. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7290. "type": "tidelift"
  7291. }
  7292. ],
  7293. "time": "2024-09-09T11:45:10+00:00"
  7294. },
  7295. {
  7296. "name": "symfony/process",
  7297. "version": "v7.1.8",
  7298. "source": {
  7299. "type": "git",
  7300. "url": "https://github.com/symfony/process.git",
  7301. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892"
  7302. },
  7303. "dist": {
  7304. "type": "zip",
  7305. "url": "https://api.github.com/repos/symfony/process/zipball/42783370fda6e538771f7c7a36e9fa2ee3a84892",
  7306. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892",
  7307. "shasum": ""
  7308. },
  7309. "require": {
  7310. "php": ">=8.2"
  7311. },
  7312. "type": "library",
  7313. "autoload": {
  7314. "psr-4": {
  7315. "Symfony\\Component\\Process\\": ""
  7316. },
  7317. "exclude-from-classmap": [
  7318. "/Tests/"
  7319. ]
  7320. },
  7321. "notification-url": "https://packagist.org/downloads/",
  7322. "license": [
  7323. "MIT"
  7324. ],
  7325. "authors": [
  7326. {
  7327. "name": "Fabien Potencier",
  7328. "email": "fabien@symfony.com"
  7329. },
  7330. {
  7331. "name": "Symfony Community",
  7332. "homepage": "https://symfony.com/contributors"
  7333. }
  7334. ],
  7335. "description": "Executes commands in sub-processes",
  7336. "homepage": "https://symfony.com",
  7337. "support": {
  7338. "source": "https://github.com/symfony/process/tree/v7.1.8"
  7339. },
  7340. "funding": [
  7341. {
  7342. "url": "https://symfony.com/sponsor",
  7343. "type": "custom"
  7344. },
  7345. {
  7346. "url": "https://github.com/fabpot",
  7347. "type": "github"
  7348. },
  7349. {
  7350. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7351. "type": "tidelift"
  7352. }
  7353. ],
  7354. "time": "2024-11-06T14:23:19+00:00"
  7355. },
  7356. {
  7357. "name": "symfony/psr-http-message-bridge",
  7358. "version": "v7.1.6",
  7359. "source": {
  7360. "type": "git",
  7361. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7362. "reference": "f16471bb19f6685b9ccf0a2c03c213840ae68cd6"
  7363. },
  7364. "dist": {
  7365. "type": "zip",
  7366. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/f16471bb19f6685b9ccf0a2c03c213840ae68cd6",
  7367. "reference": "f16471bb19f6685b9ccf0a2c03c213840ae68cd6",
  7368. "shasum": ""
  7369. },
  7370. "require": {
  7371. "php": ">=8.2",
  7372. "psr/http-message": "^1.0|^2.0",
  7373. "symfony/http-foundation": "^6.4|^7.0"
  7374. },
  7375. "conflict": {
  7376. "php-http/discovery": "<1.15",
  7377. "symfony/http-kernel": "<6.4"
  7378. },
  7379. "require-dev": {
  7380. "nyholm/psr7": "^1.1",
  7381. "php-http/discovery": "^1.15",
  7382. "psr/log": "^1.1.4|^2|^3",
  7383. "symfony/browser-kit": "^6.4|^7.0",
  7384. "symfony/config": "^6.4|^7.0",
  7385. "symfony/event-dispatcher": "^6.4|^7.0",
  7386. "symfony/framework-bundle": "^6.4|^7.0",
  7387. "symfony/http-kernel": "^6.4|^7.0"
  7388. },
  7389. "type": "symfony-bridge",
  7390. "autoload": {
  7391. "psr-4": {
  7392. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7393. },
  7394. "exclude-from-classmap": [
  7395. "/Tests/"
  7396. ]
  7397. },
  7398. "notification-url": "https://packagist.org/downloads/",
  7399. "license": [
  7400. "MIT"
  7401. ],
  7402. "authors": [
  7403. {
  7404. "name": "Fabien Potencier",
  7405. "email": "fabien@symfony.com"
  7406. },
  7407. {
  7408. "name": "Symfony Community",
  7409. "homepage": "https://symfony.com/contributors"
  7410. }
  7411. ],
  7412. "description": "PSR HTTP message bridge",
  7413. "homepage": "https://symfony.com",
  7414. "keywords": [
  7415. "http",
  7416. "http-message",
  7417. "psr-17",
  7418. "psr-7"
  7419. ],
  7420. "support": {
  7421. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.1.6"
  7422. },
  7423. "funding": [
  7424. {
  7425. "url": "https://symfony.com/sponsor",
  7426. "type": "custom"
  7427. },
  7428. {
  7429. "url": "https://github.com/fabpot",
  7430. "type": "github"
  7431. },
  7432. {
  7433. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7434. "type": "tidelift"
  7435. }
  7436. ],
  7437. "time": "2024-09-25T14:20:29+00:00"
  7438. },
  7439. {
  7440. "name": "symfony/routing",
  7441. "version": "v7.1.6",
  7442. "source": {
  7443. "type": "git",
  7444. "url": "https://github.com/symfony/routing.git",
  7445. "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a"
  7446. },
  7447. "dist": {
  7448. "type": "zip",
  7449. "url": "https://api.github.com/repos/symfony/routing/zipball/66a2c469f6c22d08603235c46a20007c0701ea0a",
  7450. "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a",
  7451. "shasum": ""
  7452. },
  7453. "require": {
  7454. "php": ">=8.2",
  7455. "symfony/deprecation-contracts": "^2.5|^3"
  7456. },
  7457. "conflict": {
  7458. "symfony/config": "<6.4",
  7459. "symfony/dependency-injection": "<6.4",
  7460. "symfony/yaml": "<6.4"
  7461. },
  7462. "require-dev": {
  7463. "psr/log": "^1|^2|^3",
  7464. "symfony/config": "^6.4|^7.0",
  7465. "symfony/dependency-injection": "^6.4|^7.0",
  7466. "symfony/expression-language": "^6.4|^7.0",
  7467. "symfony/http-foundation": "^6.4|^7.0",
  7468. "symfony/yaml": "^6.4|^7.0"
  7469. },
  7470. "type": "library",
  7471. "autoload": {
  7472. "psr-4": {
  7473. "Symfony\\Component\\Routing\\": ""
  7474. },
  7475. "exclude-from-classmap": [
  7476. "/Tests/"
  7477. ]
  7478. },
  7479. "notification-url": "https://packagist.org/downloads/",
  7480. "license": [
  7481. "MIT"
  7482. ],
  7483. "authors": [
  7484. {
  7485. "name": "Fabien Potencier",
  7486. "email": "fabien@symfony.com"
  7487. },
  7488. {
  7489. "name": "Symfony Community",
  7490. "homepage": "https://symfony.com/contributors"
  7491. }
  7492. ],
  7493. "description": "Maps an HTTP request to a set of configuration variables",
  7494. "homepage": "https://symfony.com",
  7495. "keywords": [
  7496. "router",
  7497. "routing",
  7498. "uri",
  7499. "url"
  7500. ],
  7501. "support": {
  7502. "source": "https://github.com/symfony/routing/tree/v7.1.6"
  7503. },
  7504. "funding": [
  7505. {
  7506. "url": "https://symfony.com/sponsor",
  7507. "type": "custom"
  7508. },
  7509. {
  7510. "url": "https://github.com/fabpot",
  7511. "type": "github"
  7512. },
  7513. {
  7514. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7515. "type": "tidelift"
  7516. }
  7517. ],
  7518. "time": "2024-10-01T08:31:23+00:00"
  7519. },
  7520. {
  7521. "name": "symfony/service-contracts",
  7522. "version": "v3.5.0",
  7523. "source": {
  7524. "type": "git",
  7525. "url": "https://github.com/symfony/service-contracts.git",
  7526. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7527. },
  7528. "dist": {
  7529. "type": "zip",
  7530. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7531. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7532. "shasum": ""
  7533. },
  7534. "require": {
  7535. "php": ">=8.1",
  7536. "psr/container": "^1.1|^2.0",
  7537. "symfony/deprecation-contracts": "^2.5|^3"
  7538. },
  7539. "conflict": {
  7540. "ext-psr": "<1.1|>=2"
  7541. },
  7542. "type": "library",
  7543. "extra": {
  7544. "branch-alias": {
  7545. "dev-main": "3.5-dev"
  7546. },
  7547. "thanks": {
  7548. "name": "symfony/contracts",
  7549. "url": "https://github.com/symfony/contracts"
  7550. }
  7551. },
  7552. "autoload": {
  7553. "psr-4": {
  7554. "Symfony\\Contracts\\Service\\": ""
  7555. },
  7556. "exclude-from-classmap": [
  7557. "/Test/"
  7558. ]
  7559. },
  7560. "notification-url": "https://packagist.org/downloads/",
  7561. "license": [
  7562. "MIT"
  7563. ],
  7564. "authors": [
  7565. {
  7566. "name": "Nicolas Grekas",
  7567. "email": "p@tchwork.com"
  7568. },
  7569. {
  7570. "name": "Symfony Community",
  7571. "homepage": "https://symfony.com/contributors"
  7572. }
  7573. ],
  7574. "description": "Generic abstractions related to writing services",
  7575. "homepage": "https://symfony.com",
  7576. "keywords": [
  7577. "abstractions",
  7578. "contracts",
  7579. "decoupling",
  7580. "interfaces",
  7581. "interoperability",
  7582. "standards"
  7583. ],
  7584. "support": {
  7585. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7586. },
  7587. "funding": [
  7588. {
  7589. "url": "https://symfony.com/sponsor",
  7590. "type": "custom"
  7591. },
  7592. {
  7593. "url": "https://github.com/fabpot",
  7594. "type": "github"
  7595. },
  7596. {
  7597. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7598. "type": "tidelift"
  7599. }
  7600. ],
  7601. "time": "2024-04-18T09:32:20+00:00"
  7602. },
  7603. {
  7604. "name": "symfony/string",
  7605. "version": "v7.1.8",
  7606. "source": {
  7607. "type": "git",
  7608. "url": "https://github.com/symfony/string.git",
  7609. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281"
  7610. },
  7611. "dist": {
  7612. "type": "zip",
  7613. "url": "https://api.github.com/repos/symfony/string/zipball/591ebd41565f356fcd8b090fe64dbb5878f50281",
  7614. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281",
  7615. "shasum": ""
  7616. },
  7617. "require": {
  7618. "php": ">=8.2",
  7619. "symfony/polyfill-ctype": "~1.8",
  7620. "symfony/polyfill-intl-grapheme": "~1.0",
  7621. "symfony/polyfill-intl-normalizer": "~1.0",
  7622. "symfony/polyfill-mbstring": "~1.0"
  7623. },
  7624. "conflict": {
  7625. "symfony/translation-contracts": "<2.5"
  7626. },
  7627. "require-dev": {
  7628. "symfony/emoji": "^7.1",
  7629. "symfony/error-handler": "^6.4|^7.0",
  7630. "symfony/http-client": "^6.4|^7.0",
  7631. "symfony/intl": "^6.4|^7.0",
  7632. "symfony/translation-contracts": "^2.5|^3.0",
  7633. "symfony/var-exporter": "^6.4|^7.0"
  7634. },
  7635. "type": "library",
  7636. "autoload": {
  7637. "files": [
  7638. "Resources/functions.php"
  7639. ],
  7640. "psr-4": {
  7641. "Symfony\\Component\\String\\": ""
  7642. },
  7643. "exclude-from-classmap": [
  7644. "/Tests/"
  7645. ]
  7646. },
  7647. "notification-url": "https://packagist.org/downloads/",
  7648. "license": [
  7649. "MIT"
  7650. ],
  7651. "authors": [
  7652. {
  7653. "name": "Nicolas Grekas",
  7654. "email": "p@tchwork.com"
  7655. },
  7656. {
  7657. "name": "Symfony Community",
  7658. "homepage": "https://symfony.com/contributors"
  7659. }
  7660. ],
  7661. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7662. "homepage": "https://symfony.com",
  7663. "keywords": [
  7664. "grapheme",
  7665. "i18n",
  7666. "string",
  7667. "unicode",
  7668. "utf-8",
  7669. "utf8"
  7670. ],
  7671. "support": {
  7672. "source": "https://github.com/symfony/string/tree/v7.1.8"
  7673. },
  7674. "funding": [
  7675. {
  7676. "url": "https://symfony.com/sponsor",
  7677. "type": "custom"
  7678. },
  7679. {
  7680. "url": "https://github.com/fabpot",
  7681. "type": "github"
  7682. },
  7683. {
  7684. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7685. "type": "tidelift"
  7686. }
  7687. ],
  7688. "time": "2024-11-13T13:31:21+00:00"
  7689. },
  7690. {
  7691. "name": "symfony/translation",
  7692. "version": "v7.1.6",
  7693. "source": {
  7694. "type": "git",
  7695. "url": "https://github.com/symfony/translation.git",
  7696. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f"
  7697. },
  7698. "dist": {
  7699. "type": "zip",
  7700. "url": "https://api.github.com/repos/symfony/translation/zipball/b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7701. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7702. "shasum": ""
  7703. },
  7704. "require": {
  7705. "php": ">=8.2",
  7706. "symfony/polyfill-mbstring": "~1.0",
  7707. "symfony/translation-contracts": "^2.5|^3.0"
  7708. },
  7709. "conflict": {
  7710. "symfony/config": "<6.4",
  7711. "symfony/console": "<6.4",
  7712. "symfony/dependency-injection": "<6.4",
  7713. "symfony/http-client-contracts": "<2.5",
  7714. "symfony/http-kernel": "<6.4",
  7715. "symfony/service-contracts": "<2.5",
  7716. "symfony/twig-bundle": "<6.4",
  7717. "symfony/yaml": "<6.4"
  7718. },
  7719. "provide": {
  7720. "symfony/translation-implementation": "2.3|3.0"
  7721. },
  7722. "require-dev": {
  7723. "nikic/php-parser": "^4.18|^5.0",
  7724. "psr/log": "^1|^2|^3",
  7725. "symfony/config": "^6.4|^7.0",
  7726. "symfony/console": "^6.4|^7.0",
  7727. "symfony/dependency-injection": "^6.4|^7.0",
  7728. "symfony/finder": "^6.4|^7.0",
  7729. "symfony/http-client-contracts": "^2.5|^3.0",
  7730. "symfony/http-kernel": "^6.4|^7.0",
  7731. "symfony/intl": "^6.4|^7.0",
  7732. "symfony/polyfill-intl-icu": "^1.21",
  7733. "symfony/routing": "^6.4|^7.0",
  7734. "symfony/service-contracts": "^2.5|^3",
  7735. "symfony/yaml": "^6.4|^7.0"
  7736. },
  7737. "type": "library",
  7738. "autoload": {
  7739. "files": [
  7740. "Resources/functions.php"
  7741. ],
  7742. "psr-4": {
  7743. "Symfony\\Component\\Translation\\": ""
  7744. },
  7745. "exclude-from-classmap": [
  7746. "/Tests/"
  7747. ]
  7748. },
  7749. "notification-url": "https://packagist.org/downloads/",
  7750. "license": [
  7751. "MIT"
  7752. ],
  7753. "authors": [
  7754. {
  7755. "name": "Fabien Potencier",
  7756. "email": "fabien@symfony.com"
  7757. },
  7758. {
  7759. "name": "Symfony Community",
  7760. "homepage": "https://symfony.com/contributors"
  7761. }
  7762. ],
  7763. "description": "Provides tools to internationalize your application",
  7764. "homepage": "https://symfony.com",
  7765. "support": {
  7766. "source": "https://github.com/symfony/translation/tree/v7.1.6"
  7767. },
  7768. "funding": [
  7769. {
  7770. "url": "https://symfony.com/sponsor",
  7771. "type": "custom"
  7772. },
  7773. {
  7774. "url": "https://github.com/fabpot",
  7775. "type": "github"
  7776. },
  7777. {
  7778. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7779. "type": "tidelift"
  7780. }
  7781. ],
  7782. "time": "2024-09-28T12:35:13+00:00"
  7783. },
  7784. {
  7785. "name": "symfony/translation-contracts",
  7786. "version": "v3.5.0",
  7787. "source": {
  7788. "type": "git",
  7789. "url": "https://github.com/symfony/translation-contracts.git",
  7790. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7791. },
  7792. "dist": {
  7793. "type": "zip",
  7794. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7795. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7796. "shasum": ""
  7797. },
  7798. "require": {
  7799. "php": ">=8.1"
  7800. },
  7801. "type": "library",
  7802. "extra": {
  7803. "branch-alias": {
  7804. "dev-main": "3.5-dev"
  7805. },
  7806. "thanks": {
  7807. "name": "symfony/contracts",
  7808. "url": "https://github.com/symfony/contracts"
  7809. }
  7810. },
  7811. "autoload": {
  7812. "psr-4": {
  7813. "Symfony\\Contracts\\Translation\\": ""
  7814. },
  7815. "exclude-from-classmap": [
  7816. "/Test/"
  7817. ]
  7818. },
  7819. "notification-url": "https://packagist.org/downloads/",
  7820. "license": [
  7821. "MIT"
  7822. ],
  7823. "authors": [
  7824. {
  7825. "name": "Nicolas Grekas",
  7826. "email": "p@tchwork.com"
  7827. },
  7828. {
  7829. "name": "Symfony Community",
  7830. "homepage": "https://symfony.com/contributors"
  7831. }
  7832. ],
  7833. "description": "Generic abstractions related to translation",
  7834. "homepage": "https://symfony.com",
  7835. "keywords": [
  7836. "abstractions",
  7837. "contracts",
  7838. "decoupling",
  7839. "interfaces",
  7840. "interoperability",
  7841. "standards"
  7842. ],
  7843. "support": {
  7844. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7845. },
  7846. "funding": [
  7847. {
  7848. "url": "https://symfony.com/sponsor",
  7849. "type": "custom"
  7850. },
  7851. {
  7852. "url": "https://github.com/fabpot",
  7853. "type": "github"
  7854. },
  7855. {
  7856. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7857. "type": "tidelift"
  7858. }
  7859. ],
  7860. "time": "2024-04-18T09:32:20+00:00"
  7861. },
  7862. {
  7863. "name": "symfony/uid",
  7864. "version": "v7.1.6",
  7865. "source": {
  7866. "type": "git",
  7867. "url": "https://github.com/symfony/uid.git",
  7868. "reference": "65befb3bb2d503bbffbd08c815aa38b472999917"
  7869. },
  7870. "dist": {
  7871. "type": "zip",
  7872. "url": "https://api.github.com/repos/symfony/uid/zipball/65befb3bb2d503bbffbd08c815aa38b472999917",
  7873. "reference": "65befb3bb2d503bbffbd08c815aa38b472999917",
  7874. "shasum": ""
  7875. },
  7876. "require": {
  7877. "php": ">=8.2",
  7878. "symfony/polyfill-uuid": "^1.15"
  7879. },
  7880. "require-dev": {
  7881. "symfony/console": "^6.4|^7.0"
  7882. },
  7883. "type": "library",
  7884. "autoload": {
  7885. "psr-4": {
  7886. "Symfony\\Component\\Uid\\": ""
  7887. },
  7888. "exclude-from-classmap": [
  7889. "/Tests/"
  7890. ]
  7891. },
  7892. "notification-url": "https://packagist.org/downloads/",
  7893. "license": [
  7894. "MIT"
  7895. ],
  7896. "authors": [
  7897. {
  7898. "name": "Grégoire Pineau",
  7899. "email": "lyrixx@lyrixx.info"
  7900. },
  7901. {
  7902. "name": "Nicolas Grekas",
  7903. "email": "p@tchwork.com"
  7904. },
  7905. {
  7906. "name": "Symfony Community",
  7907. "homepage": "https://symfony.com/contributors"
  7908. }
  7909. ],
  7910. "description": "Provides an object-oriented API to generate and represent UIDs",
  7911. "homepage": "https://symfony.com",
  7912. "keywords": [
  7913. "UID",
  7914. "ulid",
  7915. "uuid"
  7916. ],
  7917. "support": {
  7918. "source": "https://github.com/symfony/uid/tree/v7.1.6"
  7919. },
  7920. "funding": [
  7921. {
  7922. "url": "https://symfony.com/sponsor",
  7923. "type": "custom"
  7924. },
  7925. {
  7926. "url": "https://github.com/fabpot",
  7927. "type": "github"
  7928. },
  7929. {
  7930. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7931. "type": "tidelift"
  7932. }
  7933. ],
  7934. "time": "2024-09-25T14:20:29+00:00"
  7935. },
  7936. {
  7937. "name": "symfony/var-dumper",
  7938. "version": "v7.1.8",
  7939. "source": {
  7940. "type": "git",
  7941. "url": "https://github.com/symfony/var-dumper.git",
  7942. "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8"
  7943. },
  7944. "dist": {
  7945. "type": "zip",
  7946. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8",
  7947. "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8",
  7948. "shasum": ""
  7949. },
  7950. "require": {
  7951. "php": ">=8.2",
  7952. "symfony/polyfill-mbstring": "~1.0"
  7953. },
  7954. "conflict": {
  7955. "symfony/console": "<6.4"
  7956. },
  7957. "require-dev": {
  7958. "ext-iconv": "*",
  7959. "symfony/console": "^6.4|^7.0",
  7960. "symfony/http-kernel": "^6.4|^7.0",
  7961. "symfony/process": "^6.4|^7.0",
  7962. "symfony/uid": "^6.4|^7.0",
  7963. "twig/twig": "^3.0.4"
  7964. },
  7965. "bin": [
  7966. "Resources/bin/var-dump-server"
  7967. ],
  7968. "type": "library",
  7969. "autoload": {
  7970. "files": [
  7971. "Resources/functions/dump.php"
  7972. ],
  7973. "psr-4": {
  7974. "Symfony\\Component\\VarDumper\\": ""
  7975. },
  7976. "exclude-from-classmap": [
  7977. "/Tests/"
  7978. ]
  7979. },
  7980. "notification-url": "https://packagist.org/downloads/",
  7981. "license": [
  7982. "MIT"
  7983. ],
  7984. "authors": [
  7985. {
  7986. "name": "Nicolas Grekas",
  7987. "email": "p@tchwork.com"
  7988. },
  7989. {
  7990. "name": "Symfony Community",
  7991. "homepage": "https://symfony.com/contributors"
  7992. }
  7993. ],
  7994. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7995. "homepage": "https://symfony.com",
  7996. "keywords": [
  7997. "debug",
  7998. "dump"
  7999. ],
  8000. "support": {
  8001. "source": "https://github.com/symfony/var-dumper/tree/v7.1.8"
  8002. },
  8003. "funding": [
  8004. {
  8005. "url": "https://symfony.com/sponsor",
  8006. "type": "custom"
  8007. },
  8008. {
  8009. "url": "https://github.com/fabpot",
  8010. "type": "github"
  8011. },
  8012. {
  8013. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8014. "type": "tidelift"
  8015. }
  8016. ],
  8017. "time": "2024-11-08T15:46:42+00:00"
  8018. },
  8019. {
  8020. "name": "symfony/var-exporter",
  8021. "version": "v7.1.6",
  8022. "source": {
  8023. "type": "git",
  8024. "url": "https://github.com/symfony/var-exporter.git",
  8025. "reference": "90173ef89c40e7c8c616653241048705f84130ef"
  8026. },
  8027. "dist": {
  8028. "type": "zip",
  8029. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/90173ef89c40e7c8c616653241048705f84130ef",
  8030. "reference": "90173ef89c40e7c8c616653241048705f84130ef",
  8031. "shasum": ""
  8032. },
  8033. "require": {
  8034. "php": ">=8.2"
  8035. },
  8036. "require-dev": {
  8037. "symfony/property-access": "^6.4|^7.0",
  8038. "symfony/serializer": "^6.4|^7.0",
  8039. "symfony/var-dumper": "^6.4|^7.0"
  8040. },
  8041. "type": "library",
  8042. "autoload": {
  8043. "psr-4": {
  8044. "Symfony\\Component\\VarExporter\\": ""
  8045. },
  8046. "exclude-from-classmap": [
  8047. "/Tests/"
  8048. ]
  8049. },
  8050. "notification-url": "https://packagist.org/downloads/",
  8051. "license": [
  8052. "MIT"
  8053. ],
  8054. "authors": [
  8055. {
  8056. "name": "Nicolas Grekas",
  8057. "email": "p@tchwork.com"
  8058. },
  8059. {
  8060. "name": "Symfony Community",
  8061. "homepage": "https://symfony.com/contributors"
  8062. }
  8063. ],
  8064. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8065. "homepage": "https://symfony.com",
  8066. "keywords": [
  8067. "clone",
  8068. "construct",
  8069. "export",
  8070. "hydrate",
  8071. "instantiate",
  8072. "lazy-loading",
  8073. "proxy",
  8074. "serialize"
  8075. ],
  8076. "support": {
  8077. "source": "https://github.com/symfony/var-exporter/tree/v7.1.6"
  8078. },
  8079. "funding": [
  8080. {
  8081. "url": "https://symfony.com/sponsor",
  8082. "type": "custom"
  8083. },
  8084. {
  8085. "url": "https://github.com/fabpot",
  8086. "type": "github"
  8087. },
  8088. {
  8089. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8090. "type": "tidelift"
  8091. }
  8092. ],
  8093. "time": "2024-09-25T14:20:29+00:00"
  8094. },
  8095. {
  8096. "name": "symfony/yaml",
  8097. "version": "v7.1.6",
  8098. "source": {
  8099. "type": "git",
  8100. "url": "https://github.com/symfony/yaml.git",
  8101. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671"
  8102. },
  8103. "dist": {
  8104. "type": "zip",
  8105. "url": "https://api.github.com/repos/symfony/yaml/zipball/3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  8106. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  8107. "shasum": ""
  8108. },
  8109. "require": {
  8110. "php": ">=8.2",
  8111. "symfony/polyfill-ctype": "^1.8"
  8112. },
  8113. "conflict": {
  8114. "symfony/console": "<6.4"
  8115. },
  8116. "require-dev": {
  8117. "symfony/console": "^6.4|^7.0"
  8118. },
  8119. "bin": [
  8120. "Resources/bin/yaml-lint"
  8121. ],
  8122. "type": "library",
  8123. "autoload": {
  8124. "psr-4": {
  8125. "Symfony\\Component\\Yaml\\": ""
  8126. },
  8127. "exclude-from-classmap": [
  8128. "/Tests/"
  8129. ]
  8130. },
  8131. "notification-url": "https://packagist.org/downloads/",
  8132. "license": [
  8133. "MIT"
  8134. ],
  8135. "authors": [
  8136. {
  8137. "name": "Fabien Potencier",
  8138. "email": "fabien@symfony.com"
  8139. },
  8140. {
  8141. "name": "Symfony Community",
  8142. "homepage": "https://symfony.com/contributors"
  8143. }
  8144. ],
  8145. "description": "Loads and dumps YAML files",
  8146. "homepage": "https://symfony.com",
  8147. "support": {
  8148. "source": "https://github.com/symfony/yaml/tree/v7.1.6"
  8149. },
  8150. "funding": [
  8151. {
  8152. "url": "https://symfony.com/sponsor",
  8153. "type": "custom"
  8154. },
  8155. {
  8156. "url": "https://github.com/fabpot",
  8157. "type": "github"
  8158. },
  8159. {
  8160. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8161. "type": "tidelift"
  8162. }
  8163. ],
  8164. "time": "2024-09-25T14:20:29+00:00"
  8165. },
  8166. {
  8167. "name": "thenorthmemory/xml",
  8168. "version": "1.1.1",
  8169. "source": {
  8170. "type": "git",
  8171. "url": "https://github.com/TheNorthMemory/xml.git",
  8172. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb"
  8173. },
  8174. "dist": {
  8175. "type": "zip",
  8176. "url": "https://api.github.com/repos/TheNorthMemory/xml/zipball/6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  8177. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  8178. "shasum": ""
  8179. },
  8180. "require": {
  8181. "ext-libxml": "*",
  8182. "ext-simplexml": "*",
  8183. "php": ">=7.1.2"
  8184. },
  8185. "require-dev": {
  8186. "phpstan/phpstan": "^0.12.89 || ^1.0",
  8187. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  8188. },
  8189. "type": "library",
  8190. "autoload": {
  8191. "psr-4": {
  8192. "TheNorthMemory\\Xml\\": "src/"
  8193. }
  8194. },
  8195. "notification-url": "https://packagist.org/downloads/",
  8196. "license": [
  8197. "Apache-2.0"
  8198. ],
  8199. "authors": [
  8200. {
  8201. "name": "James ZHANG",
  8202. "homepage": "https://github.com/TheNorthMemory"
  8203. }
  8204. ],
  8205. "description": "A wrapper of the XML parser and builder",
  8206. "homepage": "https://github.com/TheNorthMemory/xml",
  8207. "keywords": [
  8208. "xml-builder",
  8209. "xml-parser"
  8210. ],
  8211. "support": {
  8212. "issues": "https://github.com/TheNorthMemory/xml/issues",
  8213. "source": "https://github.com/TheNorthMemory/xml/tree/1.1.1"
  8214. },
  8215. "time": "2023-01-15T06:01:13+00:00"
  8216. },
  8217. {
  8218. "name": "tijsverkoyen/css-to-inline-styles",
  8219. "version": "v2.2.7",
  8220. "source": {
  8221. "type": "git",
  8222. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8223. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  8224. },
  8225. "dist": {
  8226. "type": "zip",
  8227. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8228. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8229. "shasum": ""
  8230. },
  8231. "require": {
  8232. "ext-dom": "*",
  8233. "ext-libxml": "*",
  8234. "php": "^5.5 || ^7.0 || ^8.0",
  8235. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  8236. },
  8237. "require-dev": {
  8238. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8239. },
  8240. "type": "library",
  8241. "extra": {
  8242. "branch-alias": {
  8243. "dev-master": "2.2.x-dev"
  8244. }
  8245. },
  8246. "autoload": {
  8247. "psr-4": {
  8248. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8249. }
  8250. },
  8251. "notification-url": "https://packagist.org/downloads/",
  8252. "license": [
  8253. "BSD-3-Clause"
  8254. ],
  8255. "authors": [
  8256. {
  8257. "name": "Tijs Verkoyen",
  8258. "email": "css_to_inline_styles@verkoyen.eu",
  8259. "role": "Developer"
  8260. }
  8261. ],
  8262. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  8263. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8264. "support": {
  8265. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8266. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  8267. },
  8268. "time": "2023-12-08T13:03:43+00:00"
  8269. },
  8270. {
  8271. "name": "vlucas/phpdotenv",
  8272. "version": "v5.6.1",
  8273. "source": {
  8274. "type": "git",
  8275. "url": "https://github.com/vlucas/phpdotenv.git",
  8276. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  8277. },
  8278. "dist": {
  8279. "type": "zip",
  8280. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8281. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8282. "shasum": ""
  8283. },
  8284. "require": {
  8285. "ext-pcre": "*",
  8286. "graham-campbell/result-type": "^1.1.3",
  8287. "php": "^7.2.5 || ^8.0",
  8288. "phpoption/phpoption": "^1.9.3",
  8289. "symfony/polyfill-ctype": "^1.24",
  8290. "symfony/polyfill-mbstring": "^1.24",
  8291. "symfony/polyfill-php80": "^1.24"
  8292. },
  8293. "require-dev": {
  8294. "bamarni/composer-bin-plugin": "^1.8.2",
  8295. "ext-filter": "*",
  8296. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8297. },
  8298. "suggest": {
  8299. "ext-filter": "Required to use the boolean validator."
  8300. },
  8301. "type": "library",
  8302. "extra": {
  8303. "bamarni-bin": {
  8304. "bin-links": true,
  8305. "forward-command": false
  8306. },
  8307. "branch-alias": {
  8308. "dev-master": "5.6-dev"
  8309. }
  8310. },
  8311. "autoload": {
  8312. "psr-4": {
  8313. "Dotenv\\": "src/"
  8314. }
  8315. },
  8316. "notification-url": "https://packagist.org/downloads/",
  8317. "license": [
  8318. "BSD-3-Clause"
  8319. ],
  8320. "authors": [
  8321. {
  8322. "name": "Graham Campbell",
  8323. "email": "hello@gjcampbell.co.uk",
  8324. "homepage": "https://github.com/GrahamCampbell"
  8325. },
  8326. {
  8327. "name": "Vance Lucas",
  8328. "email": "vance@vancelucas.com",
  8329. "homepage": "https://github.com/vlucas"
  8330. }
  8331. ],
  8332. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8333. "keywords": [
  8334. "dotenv",
  8335. "env",
  8336. "environment"
  8337. ],
  8338. "support": {
  8339. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8340. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8341. },
  8342. "funding": [
  8343. {
  8344. "url": "https://github.com/GrahamCampbell",
  8345. "type": "github"
  8346. },
  8347. {
  8348. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8349. "type": "tidelift"
  8350. }
  8351. ],
  8352. "time": "2024-07-20T21:52:34+00:00"
  8353. },
  8354. {
  8355. "name": "voku/portable-ascii",
  8356. "version": "2.0.3",
  8357. "source": {
  8358. "type": "git",
  8359. "url": "https://github.com/voku/portable-ascii.git",
  8360. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  8361. },
  8362. "dist": {
  8363. "type": "zip",
  8364. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  8365. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  8366. "shasum": ""
  8367. },
  8368. "require": {
  8369. "php": ">=7.0.0"
  8370. },
  8371. "require-dev": {
  8372. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8373. },
  8374. "suggest": {
  8375. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8376. },
  8377. "type": "library",
  8378. "autoload": {
  8379. "psr-4": {
  8380. "voku\\": "src/voku/"
  8381. }
  8382. },
  8383. "notification-url": "https://packagist.org/downloads/",
  8384. "license": [
  8385. "MIT"
  8386. ],
  8387. "authors": [
  8388. {
  8389. "name": "Lars Moelleken",
  8390. "homepage": "https://www.moelleken.org/"
  8391. }
  8392. ],
  8393. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8394. "homepage": "https://github.com/voku/portable-ascii",
  8395. "keywords": [
  8396. "ascii",
  8397. "clean",
  8398. "php"
  8399. ],
  8400. "support": {
  8401. "issues": "https://github.com/voku/portable-ascii/issues",
  8402. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  8403. },
  8404. "funding": [
  8405. {
  8406. "url": "https://www.paypal.me/moelleken",
  8407. "type": "custom"
  8408. },
  8409. {
  8410. "url": "https://github.com/voku",
  8411. "type": "github"
  8412. },
  8413. {
  8414. "url": "https://opencollective.com/portable-ascii",
  8415. "type": "open_collective"
  8416. },
  8417. {
  8418. "url": "https://www.patreon.com/voku",
  8419. "type": "patreon"
  8420. },
  8421. {
  8422. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8423. "type": "tidelift"
  8424. }
  8425. ],
  8426. "time": "2024-11-21T01:49:47+00:00"
  8427. },
  8428. {
  8429. "name": "w7corp/easywechat",
  8430. "version": "6.15.5",
  8431. "source": {
  8432. "type": "git",
  8433. "url": "https://github.com/w7corp/easywechat.git",
  8434. "reference": "d643084ba958ba8ca077e82b805748dfeb5aa44d"
  8435. },
  8436. "dist": {
  8437. "type": "zip",
  8438. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/d643084ba958ba8ca077e82b805748dfeb5aa44d",
  8439. "reference": "d643084ba958ba8ca077e82b805748dfeb5aa44d",
  8440. "shasum": ""
  8441. },
  8442. "require": {
  8443. "ext-curl": "*",
  8444. "ext-fileinfo": "*",
  8445. "ext-libxml": "*",
  8446. "ext-openssl": "*",
  8447. "ext-simplexml": "*",
  8448. "ext-sodium": "*",
  8449. "nyholm/psr7": "^1.5",
  8450. "nyholm/psr7-server": "^1.0",
  8451. "overtrue/socialite": "^3.5.4|^4.0.1",
  8452. "php": ">=8.0.2",
  8453. "psr/http-client": "^1.0",
  8454. "psr/simple-cache": "^1.0|^2.0|^3.0",
  8455. "symfony/cache": "^5.4|^6.0|^7.0",
  8456. "symfony/http-client": "^5.4|^6.0|^7.0",
  8457. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8458. "symfony/mime": "^5.4|^6.0|^7.0",
  8459. "symfony/polyfill-php81": "^1.25",
  8460. "symfony/psr-http-message-bridge": "^2.1.2|^6.4.0|^7.1",
  8461. "thenorthmemory/xml": "^1.0"
  8462. },
  8463. "require-dev": {
  8464. "jetbrains/phpstorm-attributes": "^1.0",
  8465. "laravel/pint": "^1.2",
  8466. "mikey179/vfsstream": "^1.6",
  8467. "mockery/mockery": "^1.4.4",
  8468. "phpstan/phpstan": "^1.0",
  8469. "phpunit/phpunit": "^9.5",
  8470. "symfony/var-dumper": "^5.2"
  8471. },
  8472. "type": "library",
  8473. "autoload": {
  8474. "psr-4": {
  8475. "EasyWeChat\\": "src/"
  8476. }
  8477. },
  8478. "notification-url": "https://packagist.org/downloads/",
  8479. "license": [
  8480. "MIT"
  8481. ],
  8482. "authors": [
  8483. {
  8484. "name": "overtrue",
  8485. "email": "anzhengchao@gmail.com"
  8486. }
  8487. ],
  8488. "description": "微信SDK",
  8489. "keywords": [
  8490. "easywechat",
  8491. "sdk",
  8492. "wechat",
  8493. "weixin",
  8494. "weixin-sdk"
  8495. ],
  8496. "support": {
  8497. "issues": "https://github.com/w7corp/easywechat/issues",
  8498. "source": "https://github.com/w7corp/easywechat/tree/6.15.5"
  8499. },
  8500. "funding": [
  8501. {
  8502. "url": "https://github.com/overtrue",
  8503. "type": "github"
  8504. }
  8505. ],
  8506. "time": "2024-11-15T04:34:15+00:00"
  8507. },
  8508. {
  8509. "name": "webmozart/assert",
  8510. "version": "1.11.0",
  8511. "source": {
  8512. "type": "git",
  8513. "url": "https://github.com/webmozarts/assert.git",
  8514. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8515. },
  8516. "dist": {
  8517. "type": "zip",
  8518. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8519. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8520. "shasum": ""
  8521. },
  8522. "require": {
  8523. "ext-ctype": "*",
  8524. "php": "^7.2 || ^8.0"
  8525. },
  8526. "conflict": {
  8527. "phpstan/phpstan": "<0.12.20",
  8528. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8529. },
  8530. "require-dev": {
  8531. "phpunit/phpunit": "^8.5.13"
  8532. },
  8533. "type": "library",
  8534. "extra": {
  8535. "branch-alias": {
  8536. "dev-master": "1.10-dev"
  8537. }
  8538. },
  8539. "autoload": {
  8540. "psr-4": {
  8541. "Webmozart\\Assert\\": "src/"
  8542. }
  8543. },
  8544. "notification-url": "https://packagist.org/downloads/",
  8545. "license": [
  8546. "MIT"
  8547. ],
  8548. "authors": [
  8549. {
  8550. "name": "Bernhard Schussek",
  8551. "email": "bschussek@gmail.com"
  8552. }
  8553. ],
  8554. "description": "Assertions to validate method input/output with nice error messages.",
  8555. "keywords": [
  8556. "assert",
  8557. "check",
  8558. "validate"
  8559. ],
  8560. "support": {
  8561. "issues": "https://github.com/webmozarts/assert/issues",
  8562. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8563. },
  8564. "time": "2022-06-03T18:03:27+00:00"
  8565. }
  8566. ],
  8567. "packages-dev": [
  8568. {
  8569. "name": "barryvdh/laravel-ide-helper",
  8570. "version": "v3.2.2",
  8571. "source": {
  8572. "type": "git",
  8573. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  8574. "reference": "07e3bd8796f3d1414801a03d3783f9d3ec9efc08"
  8575. },
  8576. "dist": {
  8577. "type": "zip",
  8578. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/07e3bd8796f3d1414801a03d3783f9d3ec9efc08",
  8579. "reference": "07e3bd8796f3d1414801a03d3783f9d3ec9efc08",
  8580. "shasum": ""
  8581. },
  8582. "require": {
  8583. "barryvdh/reflection-docblock": "^2.1.2",
  8584. "composer/class-map-generator": "^1.0",
  8585. "ext-json": "*",
  8586. "illuminate/console": "^11.15",
  8587. "illuminate/database": "^11.15",
  8588. "illuminate/filesystem": "^11.15",
  8589. "illuminate/support": "^11.15",
  8590. "nikic/php-parser": "^4.18 || ^5",
  8591. "php": "^8.2",
  8592. "phpdocumentor/type-resolver": "^1.1.0"
  8593. },
  8594. "require-dev": {
  8595. "ext-pdo_sqlite": "*",
  8596. "friendsofphp/php-cs-fixer": "^3",
  8597. "illuminate/config": "^11.15",
  8598. "illuminate/view": "^11.15",
  8599. "mockery/mockery": "^1.4",
  8600. "orchestra/testbench": "^9.2",
  8601. "phpunit/phpunit": "^10.5",
  8602. "spatie/phpunit-snapshot-assertions": "^4 || ^5",
  8603. "vimeo/psalm": "^5.4"
  8604. },
  8605. "suggest": {
  8606. "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9|^10|^11)."
  8607. },
  8608. "type": "library",
  8609. "extra": {
  8610. "branch-alias": {
  8611. "dev-master": "3.2-dev"
  8612. },
  8613. "laravel": {
  8614. "providers": [
  8615. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  8616. ]
  8617. }
  8618. },
  8619. "autoload": {
  8620. "psr-4": {
  8621. "Barryvdh\\LaravelIdeHelper\\": "src"
  8622. }
  8623. },
  8624. "notification-url": "https://packagist.org/downloads/",
  8625. "license": [
  8626. "MIT"
  8627. ],
  8628. "authors": [
  8629. {
  8630. "name": "Barry vd. Heuvel",
  8631. "email": "barryvdh@gmail.com"
  8632. }
  8633. ],
  8634. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  8635. "keywords": [
  8636. "autocomplete",
  8637. "codeintel",
  8638. "helper",
  8639. "ide",
  8640. "laravel",
  8641. "netbeans",
  8642. "phpdoc",
  8643. "phpstorm",
  8644. "sublime"
  8645. ],
  8646. "support": {
  8647. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  8648. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v3.2.2"
  8649. },
  8650. "funding": [
  8651. {
  8652. "url": "https://fruitcake.nl",
  8653. "type": "custom"
  8654. },
  8655. {
  8656. "url": "https://github.com/barryvdh",
  8657. "type": "github"
  8658. }
  8659. ],
  8660. "time": "2024-10-29T14:00:16+00:00"
  8661. },
  8662. {
  8663. "name": "barryvdh/reflection-docblock",
  8664. "version": "v2.1.3",
  8665. "source": {
  8666. "type": "git",
  8667. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  8668. "reference": "c6fad15f7c878be21650c51e1f841bca7e49752e"
  8669. },
  8670. "dist": {
  8671. "type": "zip",
  8672. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/c6fad15f7c878be21650c51e1f841bca7e49752e",
  8673. "reference": "c6fad15f7c878be21650c51e1f841bca7e49752e",
  8674. "shasum": ""
  8675. },
  8676. "require": {
  8677. "php": ">=5.3.3"
  8678. },
  8679. "require-dev": {
  8680. "phpunit/phpunit": "^8.5.14|^9"
  8681. },
  8682. "suggest": {
  8683. "dflydev/markdown": "~1.0",
  8684. "erusev/parsedown": "~1.0"
  8685. },
  8686. "type": "library",
  8687. "extra": {
  8688. "branch-alias": {
  8689. "dev-master": "2.0.x-dev"
  8690. }
  8691. },
  8692. "autoload": {
  8693. "psr-0": {
  8694. "Barryvdh": [
  8695. "src/"
  8696. ]
  8697. }
  8698. },
  8699. "notification-url": "https://packagist.org/downloads/",
  8700. "license": [
  8701. "MIT"
  8702. ],
  8703. "authors": [
  8704. {
  8705. "name": "Mike van Riel",
  8706. "email": "mike.vanriel@naenius.com"
  8707. }
  8708. ],
  8709. "support": {
  8710. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.1.3"
  8711. },
  8712. "time": "2024-10-23T11:41:03+00:00"
  8713. },
  8714. {
  8715. "name": "composer/class-map-generator",
  8716. "version": "1.5.0",
  8717. "source": {
  8718. "type": "git",
  8719. "url": "https://github.com/composer/class-map-generator.git",
  8720. "reference": "4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915"
  8721. },
  8722. "dist": {
  8723. "type": "zip",
  8724. "url": "https://api.github.com/repos/composer/class-map-generator/zipball/4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915",
  8725. "reference": "4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915",
  8726. "shasum": ""
  8727. },
  8728. "require": {
  8729. "composer/pcre": "^2.1 || ^3.1",
  8730. "php": "^7.2 || ^8.0",
  8731. "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
  8732. },
  8733. "require-dev": {
  8734. "phpstan/phpstan": "^1.12 || ^2",
  8735. "phpstan/phpstan-deprecation-rules": "^1 || ^2",
  8736. "phpstan/phpstan-phpunit": "^1 || ^2",
  8737. "phpstan/phpstan-strict-rules": "^1.1 || ^2",
  8738. "phpunit/phpunit": "^8",
  8739. "symfony/filesystem": "^5.4 || ^6"
  8740. },
  8741. "type": "library",
  8742. "extra": {
  8743. "branch-alias": {
  8744. "dev-main": "1.x-dev"
  8745. }
  8746. },
  8747. "autoload": {
  8748. "psr-4": {
  8749. "Composer\\ClassMapGenerator\\": "src"
  8750. }
  8751. },
  8752. "notification-url": "https://packagist.org/downloads/",
  8753. "license": [
  8754. "MIT"
  8755. ],
  8756. "authors": [
  8757. {
  8758. "name": "Jordi Boggiano",
  8759. "email": "j.boggiano@seld.be",
  8760. "homepage": "https://seld.be"
  8761. }
  8762. ],
  8763. "description": "Utilities to scan PHP code and generate class maps.",
  8764. "keywords": [
  8765. "classmap"
  8766. ],
  8767. "support": {
  8768. "issues": "https://github.com/composer/class-map-generator/issues",
  8769. "source": "https://github.com/composer/class-map-generator/tree/1.5.0"
  8770. },
  8771. "funding": [
  8772. {
  8773. "url": "https://packagist.com",
  8774. "type": "custom"
  8775. },
  8776. {
  8777. "url": "https://github.com/composer",
  8778. "type": "github"
  8779. },
  8780. {
  8781. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8782. "type": "tidelift"
  8783. }
  8784. ],
  8785. "time": "2024-11-25T16:11:06+00:00"
  8786. },
  8787. {
  8788. "name": "composer/pcre",
  8789. "version": "3.3.2",
  8790. "source": {
  8791. "type": "git",
  8792. "url": "https://github.com/composer/pcre.git",
  8793. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8794. },
  8795. "dist": {
  8796. "type": "zip",
  8797. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8798. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8799. "shasum": ""
  8800. },
  8801. "require": {
  8802. "php": "^7.4 || ^8.0"
  8803. },
  8804. "conflict": {
  8805. "phpstan/phpstan": "<1.11.10"
  8806. },
  8807. "require-dev": {
  8808. "phpstan/phpstan": "^1.12 || ^2",
  8809. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8810. "phpunit/phpunit": "^8 || ^9"
  8811. },
  8812. "type": "library",
  8813. "extra": {
  8814. "branch-alias": {
  8815. "dev-main": "3.x-dev"
  8816. },
  8817. "phpstan": {
  8818. "includes": [
  8819. "extension.neon"
  8820. ]
  8821. }
  8822. },
  8823. "autoload": {
  8824. "psr-4": {
  8825. "Composer\\Pcre\\": "src"
  8826. }
  8827. },
  8828. "notification-url": "https://packagist.org/downloads/",
  8829. "license": [
  8830. "MIT"
  8831. ],
  8832. "authors": [
  8833. {
  8834. "name": "Jordi Boggiano",
  8835. "email": "j.boggiano@seld.be",
  8836. "homepage": "http://seld.be"
  8837. }
  8838. ],
  8839. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8840. "keywords": [
  8841. "PCRE",
  8842. "preg",
  8843. "regex",
  8844. "regular expression"
  8845. ],
  8846. "support": {
  8847. "issues": "https://github.com/composer/pcre/issues",
  8848. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8849. },
  8850. "funding": [
  8851. {
  8852. "url": "https://packagist.com",
  8853. "type": "custom"
  8854. },
  8855. {
  8856. "url": "https://github.com/composer",
  8857. "type": "github"
  8858. },
  8859. {
  8860. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8861. "type": "tidelift"
  8862. }
  8863. ],
  8864. "time": "2024-11-12T16:29:46+00:00"
  8865. },
  8866. {
  8867. "name": "doctrine/deprecations",
  8868. "version": "1.1.3",
  8869. "source": {
  8870. "type": "git",
  8871. "url": "https://github.com/doctrine/deprecations.git",
  8872. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  8873. },
  8874. "dist": {
  8875. "type": "zip",
  8876. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  8877. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  8878. "shasum": ""
  8879. },
  8880. "require": {
  8881. "php": "^7.1 || ^8.0"
  8882. },
  8883. "require-dev": {
  8884. "doctrine/coding-standard": "^9",
  8885. "phpstan/phpstan": "1.4.10 || 1.10.15",
  8886. "phpstan/phpstan-phpunit": "^1.0",
  8887. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8888. "psalm/plugin-phpunit": "0.18.4",
  8889. "psr/log": "^1 || ^2 || ^3",
  8890. "vimeo/psalm": "4.30.0 || 5.12.0"
  8891. },
  8892. "suggest": {
  8893. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  8894. },
  8895. "type": "library",
  8896. "autoload": {
  8897. "psr-4": {
  8898. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  8899. }
  8900. },
  8901. "notification-url": "https://packagist.org/downloads/",
  8902. "license": [
  8903. "MIT"
  8904. ],
  8905. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  8906. "homepage": "https://www.doctrine-project.org/",
  8907. "support": {
  8908. "issues": "https://github.com/doctrine/deprecations/issues",
  8909. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  8910. },
  8911. "time": "2024-01-30T19:34:25+00:00"
  8912. },
  8913. {
  8914. "name": "hamcrest/hamcrest-php",
  8915. "version": "v2.0.1",
  8916. "source": {
  8917. "type": "git",
  8918. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8919. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8920. },
  8921. "dist": {
  8922. "type": "zip",
  8923. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8924. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8925. "shasum": ""
  8926. },
  8927. "require": {
  8928. "php": "^5.3|^7.0|^8.0"
  8929. },
  8930. "replace": {
  8931. "cordoval/hamcrest-php": "*",
  8932. "davedevelopment/hamcrest-php": "*",
  8933. "kodova/hamcrest-php": "*"
  8934. },
  8935. "require-dev": {
  8936. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8937. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8938. },
  8939. "type": "library",
  8940. "extra": {
  8941. "branch-alias": {
  8942. "dev-master": "2.1-dev"
  8943. }
  8944. },
  8945. "autoload": {
  8946. "classmap": [
  8947. "hamcrest"
  8948. ]
  8949. },
  8950. "notification-url": "https://packagist.org/downloads/",
  8951. "license": [
  8952. "BSD-3-Clause"
  8953. ],
  8954. "description": "This is the PHP port of Hamcrest Matchers",
  8955. "keywords": [
  8956. "test"
  8957. ],
  8958. "support": {
  8959. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8960. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8961. },
  8962. "time": "2020-07-09T08:09:16+00:00"
  8963. },
  8964. {
  8965. "name": "laravel/pail",
  8966. "version": "v1.2.1",
  8967. "source": {
  8968. "type": "git",
  8969. "url": "https://github.com/laravel/pail.git",
  8970. "reference": "353ac12134b98e2e7c3333d916bd3e523931e583"
  8971. },
  8972. "dist": {
  8973. "type": "zip",
  8974. "url": "https://api.github.com/repos/laravel/pail/zipball/353ac12134b98e2e7c3333d916bd3e523931e583",
  8975. "reference": "353ac12134b98e2e7c3333d916bd3e523931e583",
  8976. "shasum": ""
  8977. },
  8978. "require": {
  8979. "ext-mbstring": "*",
  8980. "illuminate/console": "^10.24|^11.0",
  8981. "illuminate/contracts": "^10.24|^11.0",
  8982. "illuminate/log": "^10.24|^11.0",
  8983. "illuminate/process": "^10.24|^11.0",
  8984. "illuminate/support": "^10.24|^11.0",
  8985. "nunomaduro/termwind": "^1.15|^2.0",
  8986. "php": "^8.2",
  8987. "symfony/console": "^6.0|^7.0"
  8988. },
  8989. "require-dev": {
  8990. "laravel/framework": "^10.24|^11.0",
  8991. "laravel/pint": "^1.13",
  8992. "orchestra/testbench-core": "^8.12|^9.0",
  8993. "pestphp/pest": "^2.20",
  8994. "pestphp/pest-plugin-type-coverage": "^2.3",
  8995. "phpstan/phpstan": "^1.10",
  8996. "symfony/var-dumper": "^6.3|^7.0"
  8997. },
  8998. "type": "library",
  8999. "extra": {
  9000. "branch-alias": {
  9001. "dev-main": "1.x-dev"
  9002. },
  9003. "laravel": {
  9004. "providers": [
  9005. "Laravel\\Pail\\PailServiceProvider"
  9006. ]
  9007. }
  9008. },
  9009. "autoload": {
  9010. "psr-4": {
  9011. "Laravel\\Pail\\": "src/"
  9012. }
  9013. },
  9014. "notification-url": "https://packagist.org/downloads/",
  9015. "license": [
  9016. "MIT"
  9017. ],
  9018. "authors": [
  9019. {
  9020. "name": "Taylor Otwell",
  9021. "email": "taylor@laravel.com"
  9022. },
  9023. {
  9024. "name": "Nuno Maduro",
  9025. "email": "enunomaduro@gmail.com"
  9026. }
  9027. ],
  9028. "description": "Easily delve into your Laravel application's log files directly from the command line.",
  9029. "homepage": "https://github.com/laravel/pail",
  9030. "keywords": [
  9031. "laravel",
  9032. "logs",
  9033. "php",
  9034. "tail"
  9035. ],
  9036. "support": {
  9037. "issues": "https://github.com/laravel/pail/issues",
  9038. "source": "https://github.com/laravel/pail"
  9039. },
  9040. "time": "2024-10-23T12:56:23+00:00"
  9041. },
  9042. {
  9043. "name": "laravel/pint",
  9044. "version": "v1.18.3",
  9045. "source": {
  9046. "type": "git",
  9047. "url": "https://github.com/laravel/pint.git",
  9048. "reference": "cef51821608239040ab841ad6e1c6ae502ae3026"
  9049. },
  9050. "dist": {
  9051. "type": "zip",
  9052. "url": "https://api.github.com/repos/laravel/pint/zipball/cef51821608239040ab841ad6e1c6ae502ae3026",
  9053. "reference": "cef51821608239040ab841ad6e1c6ae502ae3026",
  9054. "shasum": ""
  9055. },
  9056. "require": {
  9057. "ext-json": "*",
  9058. "ext-mbstring": "*",
  9059. "ext-tokenizer": "*",
  9060. "ext-xml": "*",
  9061. "php": "^8.1.0"
  9062. },
  9063. "require-dev": {
  9064. "friendsofphp/php-cs-fixer": "^3.65.0",
  9065. "illuminate/view": "^10.48.24",
  9066. "larastan/larastan": "^2.9.11",
  9067. "laravel-zero/framework": "^10.4.0",
  9068. "mockery/mockery": "^1.6.12",
  9069. "nunomaduro/termwind": "^1.17.0",
  9070. "pestphp/pest": "^2.36.0"
  9071. },
  9072. "bin": [
  9073. "builds/pint"
  9074. ],
  9075. "type": "project",
  9076. "autoload": {
  9077. "psr-4": {
  9078. "App\\": "app/",
  9079. "Database\\Seeders\\": "database/seeders/",
  9080. "Database\\Factories\\": "database/factories/"
  9081. }
  9082. },
  9083. "notification-url": "https://packagist.org/downloads/",
  9084. "license": [
  9085. "MIT"
  9086. ],
  9087. "authors": [
  9088. {
  9089. "name": "Nuno Maduro",
  9090. "email": "enunomaduro@gmail.com"
  9091. }
  9092. ],
  9093. "description": "An opinionated code formatter for PHP.",
  9094. "homepage": "https://laravel.com",
  9095. "keywords": [
  9096. "format",
  9097. "formatter",
  9098. "lint",
  9099. "linter",
  9100. "php"
  9101. ],
  9102. "support": {
  9103. "issues": "https://github.com/laravel/pint/issues",
  9104. "source": "https://github.com/laravel/pint"
  9105. },
  9106. "time": "2024-11-26T15:34:00+00:00"
  9107. },
  9108. {
  9109. "name": "laravel/sail",
  9110. "version": "v1.39.0",
  9111. "source": {
  9112. "type": "git",
  9113. "url": "https://github.com/laravel/sail.git",
  9114. "reference": "be9d67a11133535811f9ec4ab5c176a2f47250fc"
  9115. },
  9116. "dist": {
  9117. "type": "zip",
  9118. "url": "https://api.github.com/repos/laravel/sail/zipball/be9d67a11133535811f9ec4ab5c176a2f47250fc",
  9119. "reference": "be9d67a11133535811f9ec4ab5c176a2f47250fc",
  9120. "shasum": ""
  9121. },
  9122. "require": {
  9123. "illuminate/console": "^9.52.16|^10.0|^11.0",
  9124. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  9125. "illuminate/support": "^9.52.16|^10.0|^11.0",
  9126. "php": "^8.0",
  9127. "symfony/console": "^6.0|^7.0",
  9128. "symfony/yaml": "^6.0|^7.0"
  9129. },
  9130. "require-dev": {
  9131. "orchestra/testbench": "^7.0|^8.0|^9.0",
  9132. "phpstan/phpstan": "^1.10"
  9133. },
  9134. "bin": [
  9135. "bin/sail"
  9136. ],
  9137. "type": "library",
  9138. "extra": {
  9139. "laravel": {
  9140. "providers": [
  9141. "Laravel\\Sail\\SailServiceProvider"
  9142. ]
  9143. }
  9144. },
  9145. "autoload": {
  9146. "psr-4": {
  9147. "Laravel\\Sail\\": "src/"
  9148. }
  9149. },
  9150. "notification-url": "https://packagist.org/downloads/",
  9151. "license": [
  9152. "MIT"
  9153. ],
  9154. "authors": [
  9155. {
  9156. "name": "Taylor Otwell",
  9157. "email": "taylor@laravel.com"
  9158. }
  9159. ],
  9160. "description": "Docker files for running a basic Laravel application.",
  9161. "keywords": [
  9162. "docker",
  9163. "laravel"
  9164. ],
  9165. "support": {
  9166. "issues": "https://github.com/laravel/sail/issues",
  9167. "source": "https://github.com/laravel/sail"
  9168. },
  9169. "time": "2024-11-25T23:48:26+00:00"
  9170. },
  9171. {
  9172. "name": "mockery/mockery",
  9173. "version": "1.6.12",
  9174. "source": {
  9175. "type": "git",
  9176. "url": "https://github.com/mockery/mockery.git",
  9177. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9178. },
  9179. "dist": {
  9180. "type": "zip",
  9181. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9182. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9183. "shasum": ""
  9184. },
  9185. "require": {
  9186. "hamcrest/hamcrest-php": "^2.0.1",
  9187. "lib-pcre": ">=7.0",
  9188. "php": ">=7.3"
  9189. },
  9190. "conflict": {
  9191. "phpunit/phpunit": "<8.0"
  9192. },
  9193. "require-dev": {
  9194. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9195. "symplify/easy-coding-standard": "^12.1.14"
  9196. },
  9197. "type": "library",
  9198. "autoload": {
  9199. "files": [
  9200. "library/helpers.php",
  9201. "library/Mockery.php"
  9202. ],
  9203. "psr-4": {
  9204. "Mockery\\": "library/Mockery"
  9205. }
  9206. },
  9207. "notification-url": "https://packagist.org/downloads/",
  9208. "license": [
  9209. "BSD-3-Clause"
  9210. ],
  9211. "authors": [
  9212. {
  9213. "name": "Pádraic Brady",
  9214. "email": "padraic.brady@gmail.com",
  9215. "homepage": "https://github.com/padraic",
  9216. "role": "Author"
  9217. },
  9218. {
  9219. "name": "Dave Marshall",
  9220. "email": "dave.marshall@atstsolutions.co.uk",
  9221. "homepage": "https://davedevelopment.co.uk",
  9222. "role": "Developer"
  9223. },
  9224. {
  9225. "name": "Nathanael Esayeas",
  9226. "email": "nathanael.esayeas@protonmail.com",
  9227. "homepage": "https://github.com/ghostwriter",
  9228. "role": "Lead Developer"
  9229. }
  9230. ],
  9231. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9232. "homepage": "https://github.com/mockery/mockery",
  9233. "keywords": [
  9234. "BDD",
  9235. "TDD",
  9236. "library",
  9237. "mock",
  9238. "mock objects",
  9239. "mockery",
  9240. "stub",
  9241. "test",
  9242. "test double",
  9243. "testing"
  9244. ],
  9245. "support": {
  9246. "docs": "https://docs.mockery.io/",
  9247. "issues": "https://github.com/mockery/mockery/issues",
  9248. "rss": "https://github.com/mockery/mockery/releases.atom",
  9249. "security": "https://github.com/mockery/mockery/security/advisories",
  9250. "source": "https://github.com/mockery/mockery"
  9251. },
  9252. "time": "2024-05-16T03:13:13+00:00"
  9253. },
  9254. {
  9255. "name": "myclabs/deep-copy",
  9256. "version": "1.12.1",
  9257. "source": {
  9258. "type": "git",
  9259. "url": "https://github.com/myclabs/DeepCopy.git",
  9260. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  9261. },
  9262. "dist": {
  9263. "type": "zip",
  9264. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  9265. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  9266. "shasum": ""
  9267. },
  9268. "require": {
  9269. "php": "^7.1 || ^8.0"
  9270. },
  9271. "conflict": {
  9272. "doctrine/collections": "<1.6.8",
  9273. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9274. },
  9275. "require-dev": {
  9276. "doctrine/collections": "^1.6.8",
  9277. "doctrine/common": "^2.13.3 || ^3.2.2",
  9278. "phpspec/prophecy": "^1.10",
  9279. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9280. },
  9281. "type": "library",
  9282. "autoload": {
  9283. "files": [
  9284. "src/DeepCopy/deep_copy.php"
  9285. ],
  9286. "psr-4": {
  9287. "DeepCopy\\": "src/DeepCopy/"
  9288. }
  9289. },
  9290. "notification-url": "https://packagist.org/downloads/",
  9291. "license": [
  9292. "MIT"
  9293. ],
  9294. "description": "Create deep copies (clones) of your objects",
  9295. "keywords": [
  9296. "clone",
  9297. "copy",
  9298. "duplicate",
  9299. "object",
  9300. "object graph"
  9301. ],
  9302. "support": {
  9303. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9304. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  9305. },
  9306. "funding": [
  9307. {
  9308. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9309. "type": "tidelift"
  9310. }
  9311. ],
  9312. "time": "2024-11-08T17:47:46+00:00"
  9313. },
  9314. {
  9315. "name": "phar-io/manifest",
  9316. "version": "2.0.4",
  9317. "source": {
  9318. "type": "git",
  9319. "url": "https://github.com/phar-io/manifest.git",
  9320. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9321. },
  9322. "dist": {
  9323. "type": "zip",
  9324. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9325. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9326. "shasum": ""
  9327. },
  9328. "require": {
  9329. "ext-dom": "*",
  9330. "ext-libxml": "*",
  9331. "ext-phar": "*",
  9332. "ext-xmlwriter": "*",
  9333. "phar-io/version": "^3.0.1",
  9334. "php": "^7.2 || ^8.0"
  9335. },
  9336. "type": "library",
  9337. "extra": {
  9338. "branch-alias": {
  9339. "dev-master": "2.0.x-dev"
  9340. }
  9341. },
  9342. "autoload": {
  9343. "classmap": [
  9344. "src/"
  9345. ]
  9346. },
  9347. "notification-url": "https://packagist.org/downloads/",
  9348. "license": [
  9349. "BSD-3-Clause"
  9350. ],
  9351. "authors": [
  9352. {
  9353. "name": "Arne Blankerts",
  9354. "email": "arne@blankerts.de",
  9355. "role": "Developer"
  9356. },
  9357. {
  9358. "name": "Sebastian Heuer",
  9359. "email": "sebastian@phpeople.de",
  9360. "role": "Developer"
  9361. },
  9362. {
  9363. "name": "Sebastian Bergmann",
  9364. "email": "sebastian@phpunit.de",
  9365. "role": "Developer"
  9366. }
  9367. ],
  9368. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9369. "support": {
  9370. "issues": "https://github.com/phar-io/manifest/issues",
  9371. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9372. },
  9373. "funding": [
  9374. {
  9375. "url": "https://github.com/theseer",
  9376. "type": "github"
  9377. }
  9378. ],
  9379. "time": "2024-03-03T12:33:53+00:00"
  9380. },
  9381. {
  9382. "name": "phar-io/version",
  9383. "version": "3.2.1",
  9384. "source": {
  9385. "type": "git",
  9386. "url": "https://github.com/phar-io/version.git",
  9387. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9388. },
  9389. "dist": {
  9390. "type": "zip",
  9391. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9392. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9393. "shasum": ""
  9394. },
  9395. "require": {
  9396. "php": "^7.2 || ^8.0"
  9397. },
  9398. "type": "library",
  9399. "autoload": {
  9400. "classmap": [
  9401. "src/"
  9402. ]
  9403. },
  9404. "notification-url": "https://packagist.org/downloads/",
  9405. "license": [
  9406. "BSD-3-Clause"
  9407. ],
  9408. "authors": [
  9409. {
  9410. "name": "Arne Blankerts",
  9411. "email": "arne@blankerts.de",
  9412. "role": "Developer"
  9413. },
  9414. {
  9415. "name": "Sebastian Heuer",
  9416. "email": "sebastian@phpeople.de",
  9417. "role": "Developer"
  9418. },
  9419. {
  9420. "name": "Sebastian Bergmann",
  9421. "email": "sebastian@phpunit.de",
  9422. "role": "Developer"
  9423. }
  9424. ],
  9425. "description": "Library for handling version information and constraints",
  9426. "support": {
  9427. "issues": "https://github.com/phar-io/version/issues",
  9428. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9429. },
  9430. "time": "2022-02-21T01:04:05+00:00"
  9431. },
  9432. {
  9433. "name": "phpdocumentor/reflection-common",
  9434. "version": "2.2.0",
  9435. "source": {
  9436. "type": "git",
  9437. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9438. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9439. },
  9440. "dist": {
  9441. "type": "zip",
  9442. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9443. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9444. "shasum": ""
  9445. },
  9446. "require": {
  9447. "php": "^7.2 || ^8.0"
  9448. },
  9449. "type": "library",
  9450. "extra": {
  9451. "branch-alias": {
  9452. "dev-2.x": "2.x-dev"
  9453. }
  9454. },
  9455. "autoload": {
  9456. "psr-4": {
  9457. "phpDocumentor\\Reflection\\": "src/"
  9458. }
  9459. },
  9460. "notification-url": "https://packagist.org/downloads/",
  9461. "license": [
  9462. "MIT"
  9463. ],
  9464. "authors": [
  9465. {
  9466. "name": "Jaap van Otterdijk",
  9467. "email": "opensource@ijaap.nl"
  9468. }
  9469. ],
  9470. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9471. "homepage": "http://www.phpdoc.org",
  9472. "keywords": [
  9473. "FQSEN",
  9474. "phpDocumentor",
  9475. "phpdoc",
  9476. "reflection",
  9477. "static analysis"
  9478. ],
  9479. "support": {
  9480. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9481. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9482. },
  9483. "time": "2020-06-27T09:03:43+00:00"
  9484. },
  9485. {
  9486. "name": "phpdocumentor/type-resolver",
  9487. "version": "1.10.0",
  9488. "source": {
  9489. "type": "git",
  9490. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9491. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  9492. },
  9493. "dist": {
  9494. "type": "zip",
  9495. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  9496. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  9497. "shasum": ""
  9498. },
  9499. "require": {
  9500. "doctrine/deprecations": "^1.0",
  9501. "php": "^7.3 || ^8.0",
  9502. "phpdocumentor/reflection-common": "^2.0",
  9503. "phpstan/phpdoc-parser": "^1.18|^2.0"
  9504. },
  9505. "require-dev": {
  9506. "ext-tokenizer": "*",
  9507. "phpbench/phpbench": "^1.2",
  9508. "phpstan/extension-installer": "^1.1",
  9509. "phpstan/phpstan": "^1.8",
  9510. "phpstan/phpstan-phpunit": "^1.1",
  9511. "phpunit/phpunit": "^9.5",
  9512. "rector/rector": "^0.13.9",
  9513. "vimeo/psalm": "^4.25"
  9514. },
  9515. "type": "library",
  9516. "extra": {
  9517. "branch-alias": {
  9518. "dev-1.x": "1.x-dev"
  9519. }
  9520. },
  9521. "autoload": {
  9522. "psr-4": {
  9523. "phpDocumentor\\Reflection\\": "src"
  9524. }
  9525. },
  9526. "notification-url": "https://packagist.org/downloads/",
  9527. "license": [
  9528. "MIT"
  9529. ],
  9530. "authors": [
  9531. {
  9532. "name": "Mike van Riel",
  9533. "email": "me@mikevanriel.com"
  9534. }
  9535. ],
  9536. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9537. "support": {
  9538. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9539. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  9540. },
  9541. "time": "2024-11-09T15:12:26+00:00"
  9542. },
  9543. {
  9544. "name": "phpstan/phpdoc-parser",
  9545. "version": "2.0.0",
  9546. "source": {
  9547. "type": "git",
  9548. "url": "https://github.com/phpstan/phpdoc-parser.git",
  9549. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299"
  9550. },
  9551. "dist": {
  9552. "type": "zip",
  9553. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/c00d78fb6b29658347f9d37ebe104bffadf36299",
  9554. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299",
  9555. "shasum": ""
  9556. },
  9557. "require": {
  9558. "php": "^7.4 || ^8.0"
  9559. },
  9560. "require-dev": {
  9561. "doctrine/annotations": "^2.0",
  9562. "nikic/php-parser": "^5.3.0",
  9563. "php-parallel-lint/php-parallel-lint": "^1.2",
  9564. "phpstan/extension-installer": "^1.0",
  9565. "phpstan/phpstan": "^2.0",
  9566. "phpstan/phpstan-phpunit": "^2.0",
  9567. "phpstan/phpstan-strict-rules": "^2.0",
  9568. "phpunit/phpunit": "^9.6",
  9569. "symfony/process": "^5.2"
  9570. },
  9571. "type": "library",
  9572. "autoload": {
  9573. "psr-4": {
  9574. "PHPStan\\PhpDocParser\\": [
  9575. "src/"
  9576. ]
  9577. }
  9578. },
  9579. "notification-url": "https://packagist.org/downloads/",
  9580. "license": [
  9581. "MIT"
  9582. ],
  9583. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  9584. "support": {
  9585. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  9586. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.0.0"
  9587. },
  9588. "time": "2024-10-13T11:29:49+00:00"
  9589. },
  9590. {
  9591. "name": "phpunit/php-code-coverage",
  9592. "version": "11.0.7",
  9593. "source": {
  9594. "type": "git",
  9595. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9596. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca"
  9597. },
  9598. "dist": {
  9599. "type": "zip",
  9600. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  9601. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  9602. "shasum": ""
  9603. },
  9604. "require": {
  9605. "ext-dom": "*",
  9606. "ext-libxml": "*",
  9607. "ext-xmlwriter": "*",
  9608. "nikic/php-parser": "^5.3.1",
  9609. "php": ">=8.2",
  9610. "phpunit/php-file-iterator": "^5.1.0",
  9611. "phpunit/php-text-template": "^4.0.1",
  9612. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  9613. "sebastian/complexity": "^4.0.1",
  9614. "sebastian/environment": "^7.2.0",
  9615. "sebastian/lines-of-code": "^3.0.1",
  9616. "sebastian/version": "^5.0.2",
  9617. "theseer/tokenizer": "^1.2.3"
  9618. },
  9619. "require-dev": {
  9620. "phpunit/phpunit": "^11.4.1"
  9621. },
  9622. "suggest": {
  9623. "ext-pcov": "PHP extension that provides line coverage",
  9624. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9625. },
  9626. "type": "library",
  9627. "extra": {
  9628. "branch-alias": {
  9629. "dev-main": "11.0.x-dev"
  9630. }
  9631. },
  9632. "autoload": {
  9633. "classmap": [
  9634. "src/"
  9635. ]
  9636. },
  9637. "notification-url": "https://packagist.org/downloads/",
  9638. "license": [
  9639. "BSD-3-Clause"
  9640. ],
  9641. "authors": [
  9642. {
  9643. "name": "Sebastian Bergmann",
  9644. "email": "sebastian@phpunit.de",
  9645. "role": "lead"
  9646. }
  9647. ],
  9648. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9649. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9650. "keywords": [
  9651. "coverage",
  9652. "testing",
  9653. "xunit"
  9654. ],
  9655. "support": {
  9656. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9657. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9658. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.7"
  9659. },
  9660. "funding": [
  9661. {
  9662. "url": "https://github.com/sebastianbergmann",
  9663. "type": "github"
  9664. }
  9665. ],
  9666. "time": "2024-10-09T06:21:38+00:00"
  9667. },
  9668. {
  9669. "name": "phpunit/php-file-iterator",
  9670. "version": "5.1.0",
  9671. "source": {
  9672. "type": "git",
  9673. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9674. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  9675. },
  9676. "dist": {
  9677. "type": "zip",
  9678. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  9679. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  9680. "shasum": ""
  9681. },
  9682. "require": {
  9683. "php": ">=8.2"
  9684. },
  9685. "require-dev": {
  9686. "phpunit/phpunit": "^11.0"
  9687. },
  9688. "type": "library",
  9689. "extra": {
  9690. "branch-alias": {
  9691. "dev-main": "5.0-dev"
  9692. }
  9693. },
  9694. "autoload": {
  9695. "classmap": [
  9696. "src/"
  9697. ]
  9698. },
  9699. "notification-url": "https://packagist.org/downloads/",
  9700. "license": [
  9701. "BSD-3-Clause"
  9702. ],
  9703. "authors": [
  9704. {
  9705. "name": "Sebastian Bergmann",
  9706. "email": "sebastian@phpunit.de",
  9707. "role": "lead"
  9708. }
  9709. ],
  9710. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9711. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9712. "keywords": [
  9713. "filesystem",
  9714. "iterator"
  9715. ],
  9716. "support": {
  9717. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9718. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9719. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  9720. },
  9721. "funding": [
  9722. {
  9723. "url": "https://github.com/sebastianbergmann",
  9724. "type": "github"
  9725. }
  9726. ],
  9727. "time": "2024-08-27T05:02:59+00:00"
  9728. },
  9729. {
  9730. "name": "phpunit/php-invoker",
  9731. "version": "5.0.1",
  9732. "source": {
  9733. "type": "git",
  9734. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9735. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  9736. },
  9737. "dist": {
  9738. "type": "zip",
  9739. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  9740. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  9741. "shasum": ""
  9742. },
  9743. "require": {
  9744. "php": ">=8.2"
  9745. },
  9746. "require-dev": {
  9747. "ext-pcntl": "*",
  9748. "phpunit/phpunit": "^11.0"
  9749. },
  9750. "suggest": {
  9751. "ext-pcntl": "*"
  9752. },
  9753. "type": "library",
  9754. "extra": {
  9755. "branch-alias": {
  9756. "dev-main": "5.0-dev"
  9757. }
  9758. },
  9759. "autoload": {
  9760. "classmap": [
  9761. "src/"
  9762. ]
  9763. },
  9764. "notification-url": "https://packagist.org/downloads/",
  9765. "license": [
  9766. "BSD-3-Clause"
  9767. ],
  9768. "authors": [
  9769. {
  9770. "name": "Sebastian Bergmann",
  9771. "email": "sebastian@phpunit.de",
  9772. "role": "lead"
  9773. }
  9774. ],
  9775. "description": "Invoke callables with a timeout",
  9776. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9777. "keywords": [
  9778. "process"
  9779. ],
  9780. "support": {
  9781. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9782. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  9783. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  9784. },
  9785. "funding": [
  9786. {
  9787. "url": "https://github.com/sebastianbergmann",
  9788. "type": "github"
  9789. }
  9790. ],
  9791. "time": "2024-07-03T05:07:44+00:00"
  9792. },
  9793. {
  9794. "name": "phpunit/php-text-template",
  9795. "version": "4.0.1",
  9796. "source": {
  9797. "type": "git",
  9798. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9799. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  9800. },
  9801. "dist": {
  9802. "type": "zip",
  9803. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  9804. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  9805. "shasum": ""
  9806. },
  9807. "require": {
  9808. "php": ">=8.2"
  9809. },
  9810. "require-dev": {
  9811. "phpunit/phpunit": "^11.0"
  9812. },
  9813. "type": "library",
  9814. "extra": {
  9815. "branch-alias": {
  9816. "dev-main": "4.0-dev"
  9817. }
  9818. },
  9819. "autoload": {
  9820. "classmap": [
  9821. "src/"
  9822. ]
  9823. },
  9824. "notification-url": "https://packagist.org/downloads/",
  9825. "license": [
  9826. "BSD-3-Clause"
  9827. ],
  9828. "authors": [
  9829. {
  9830. "name": "Sebastian Bergmann",
  9831. "email": "sebastian@phpunit.de",
  9832. "role": "lead"
  9833. }
  9834. ],
  9835. "description": "Simple template engine.",
  9836. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9837. "keywords": [
  9838. "template"
  9839. ],
  9840. "support": {
  9841. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9842. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9843. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  9844. },
  9845. "funding": [
  9846. {
  9847. "url": "https://github.com/sebastianbergmann",
  9848. "type": "github"
  9849. }
  9850. ],
  9851. "time": "2024-07-03T05:08:43+00:00"
  9852. },
  9853. {
  9854. "name": "phpunit/php-timer",
  9855. "version": "7.0.1",
  9856. "source": {
  9857. "type": "git",
  9858. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9859. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  9860. },
  9861. "dist": {
  9862. "type": "zip",
  9863. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  9864. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  9865. "shasum": ""
  9866. },
  9867. "require": {
  9868. "php": ">=8.2"
  9869. },
  9870. "require-dev": {
  9871. "phpunit/phpunit": "^11.0"
  9872. },
  9873. "type": "library",
  9874. "extra": {
  9875. "branch-alias": {
  9876. "dev-main": "7.0-dev"
  9877. }
  9878. },
  9879. "autoload": {
  9880. "classmap": [
  9881. "src/"
  9882. ]
  9883. },
  9884. "notification-url": "https://packagist.org/downloads/",
  9885. "license": [
  9886. "BSD-3-Clause"
  9887. ],
  9888. "authors": [
  9889. {
  9890. "name": "Sebastian Bergmann",
  9891. "email": "sebastian@phpunit.de",
  9892. "role": "lead"
  9893. }
  9894. ],
  9895. "description": "Utility class for timing",
  9896. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9897. "keywords": [
  9898. "timer"
  9899. ],
  9900. "support": {
  9901. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9902. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  9903. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  9904. },
  9905. "funding": [
  9906. {
  9907. "url": "https://github.com/sebastianbergmann",
  9908. "type": "github"
  9909. }
  9910. ],
  9911. "time": "2024-07-03T05:09:35+00:00"
  9912. },
  9913. {
  9914. "name": "phpunit/phpunit",
  9915. "version": "11.4.3",
  9916. "source": {
  9917. "type": "git",
  9918. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9919. "reference": "e8e8ed1854de5d36c088ec1833beae40d2dedd76"
  9920. },
  9921. "dist": {
  9922. "type": "zip",
  9923. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e8e8ed1854de5d36c088ec1833beae40d2dedd76",
  9924. "reference": "e8e8ed1854de5d36c088ec1833beae40d2dedd76",
  9925. "shasum": ""
  9926. },
  9927. "require": {
  9928. "ext-dom": "*",
  9929. "ext-json": "*",
  9930. "ext-libxml": "*",
  9931. "ext-mbstring": "*",
  9932. "ext-xml": "*",
  9933. "ext-xmlwriter": "*",
  9934. "myclabs/deep-copy": "^1.12.0",
  9935. "phar-io/manifest": "^2.0.4",
  9936. "phar-io/version": "^3.2.1",
  9937. "php": ">=8.2",
  9938. "phpunit/php-code-coverage": "^11.0.7",
  9939. "phpunit/php-file-iterator": "^5.1.0",
  9940. "phpunit/php-invoker": "^5.0.1",
  9941. "phpunit/php-text-template": "^4.0.1",
  9942. "phpunit/php-timer": "^7.0.1",
  9943. "sebastian/cli-parser": "^3.0.2",
  9944. "sebastian/code-unit": "^3.0.1",
  9945. "sebastian/comparator": "^6.1.1",
  9946. "sebastian/diff": "^6.0.2",
  9947. "sebastian/environment": "^7.2.0",
  9948. "sebastian/exporter": "^6.1.3",
  9949. "sebastian/global-state": "^7.0.2",
  9950. "sebastian/object-enumerator": "^6.0.1",
  9951. "sebastian/type": "^5.1.0",
  9952. "sebastian/version": "^5.0.2"
  9953. },
  9954. "suggest": {
  9955. "ext-soap": "To be able to generate mocks based on WSDL files"
  9956. },
  9957. "bin": [
  9958. "phpunit"
  9959. ],
  9960. "type": "library",
  9961. "extra": {
  9962. "branch-alias": {
  9963. "dev-main": "11.4-dev"
  9964. }
  9965. },
  9966. "autoload": {
  9967. "files": [
  9968. "src/Framework/Assert/Functions.php"
  9969. ],
  9970. "classmap": [
  9971. "src/"
  9972. ]
  9973. },
  9974. "notification-url": "https://packagist.org/downloads/",
  9975. "license": [
  9976. "BSD-3-Clause"
  9977. ],
  9978. "authors": [
  9979. {
  9980. "name": "Sebastian Bergmann",
  9981. "email": "sebastian@phpunit.de",
  9982. "role": "lead"
  9983. }
  9984. ],
  9985. "description": "The PHP Unit Testing framework.",
  9986. "homepage": "https://phpunit.de/",
  9987. "keywords": [
  9988. "phpunit",
  9989. "testing",
  9990. "xunit"
  9991. ],
  9992. "support": {
  9993. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9994. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9995. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.4.3"
  9996. },
  9997. "funding": [
  9998. {
  9999. "url": "https://phpunit.de/sponsors.html",
  10000. "type": "custom"
  10001. },
  10002. {
  10003. "url": "https://github.com/sebastianbergmann",
  10004. "type": "github"
  10005. },
  10006. {
  10007. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10008. "type": "tidelift"
  10009. }
  10010. ],
  10011. "time": "2024-10-28T13:07:50+00:00"
  10012. },
  10013. {
  10014. "name": "sebastian/cli-parser",
  10015. "version": "3.0.2",
  10016. "source": {
  10017. "type": "git",
  10018. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10019. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  10020. },
  10021. "dist": {
  10022. "type": "zip",
  10023. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  10024. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  10025. "shasum": ""
  10026. },
  10027. "require": {
  10028. "php": ">=8.2"
  10029. },
  10030. "require-dev": {
  10031. "phpunit/phpunit": "^11.0"
  10032. },
  10033. "type": "library",
  10034. "extra": {
  10035. "branch-alias": {
  10036. "dev-main": "3.0-dev"
  10037. }
  10038. },
  10039. "autoload": {
  10040. "classmap": [
  10041. "src/"
  10042. ]
  10043. },
  10044. "notification-url": "https://packagist.org/downloads/",
  10045. "license": [
  10046. "BSD-3-Clause"
  10047. ],
  10048. "authors": [
  10049. {
  10050. "name": "Sebastian Bergmann",
  10051. "email": "sebastian@phpunit.de",
  10052. "role": "lead"
  10053. }
  10054. ],
  10055. "description": "Library for parsing CLI options",
  10056. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10057. "support": {
  10058. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10059. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10060. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  10061. },
  10062. "funding": [
  10063. {
  10064. "url": "https://github.com/sebastianbergmann",
  10065. "type": "github"
  10066. }
  10067. ],
  10068. "time": "2024-07-03T04:41:36+00:00"
  10069. },
  10070. {
  10071. "name": "sebastian/code-unit",
  10072. "version": "3.0.1",
  10073. "source": {
  10074. "type": "git",
  10075. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10076. "reference": "6bb7d09d6623567178cf54126afa9c2310114268"
  10077. },
  10078. "dist": {
  10079. "type": "zip",
  10080. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/6bb7d09d6623567178cf54126afa9c2310114268",
  10081. "reference": "6bb7d09d6623567178cf54126afa9c2310114268",
  10082. "shasum": ""
  10083. },
  10084. "require": {
  10085. "php": ">=8.2"
  10086. },
  10087. "require-dev": {
  10088. "phpunit/phpunit": "^11.0"
  10089. },
  10090. "type": "library",
  10091. "extra": {
  10092. "branch-alias": {
  10093. "dev-main": "3.0-dev"
  10094. }
  10095. },
  10096. "autoload": {
  10097. "classmap": [
  10098. "src/"
  10099. ]
  10100. },
  10101. "notification-url": "https://packagist.org/downloads/",
  10102. "license": [
  10103. "BSD-3-Clause"
  10104. ],
  10105. "authors": [
  10106. {
  10107. "name": "Sebastian Bergmann",
  10108. "email": "sebastian@phpunit.de",
  10109. "role": "lead"
  10110. }
  10111. ],
  10112. "description": "Collection of value objects that represent the PHP code units",
  10113. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10114. "support": {
  10115. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10116. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  10117. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.1"
  10118. },
  10119. "funding": [
  10120. {
  10121. "url": "https://github.com/sebastianbergmann",
  10122. "type": "github"
  10123. }
  10124. ],
  10125. "time": "2024-07-03T04:44:28+00:00"
  10126. },
  10127. {
  10128. "name": "sebastian/code-unit-reverse-lookup",
  10129. "version": "4.0.1",
  10130. "source": {
  10131. "type": "git",
  10132. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10133. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  10134. },
  10135. "dist": {
  10136. "type": "zip",
  10137. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  10138. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  10139. "shasum": ""
  10140. },
  10141. "require": {
  10142. "php": ">=8.2"
  10143. },
  10144. "require-dev": {
  10145. "phpunit/phpunit": "^11.0"
  10146. },
  10147. "type": "library",
  10148. "extra": {
  10149. "branch-alias": {
  10150. "dev-main": "4.0-dev"
  10151. }
  10152. },
  10153. "autoload": {
  10154. "classmap": [
  10155. "src/"
  10156. ]
  10157. },
  10158. "notification-url": "https://packagist.org/downloads/",
  10159. "license": [
  10160. "BSD-3-Clause"
  10161. ],
  10162. "authors": [
  10163. {
  10164. "name": "Sebastian Bergmann",
  10165. "email": "sebastian@phpunit.de"
  10166. }
  10167. ],
  10168. "description": "Looks up which function or method a line of code belongs to",
  10169. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10170. "support": {
  10171. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10172. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  10173. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  10174. },
  10175. "funding": [
  10176. {
  10177. "url": "https://github.com/sebastianbergmann",
  10178. "type": "github"
  10179. }
  10180. ],
  10181. "time": "2024-07-03T04:45:54+00:00"
  10182. },
  10183. {
  10184. "name": "sebastian/comparator",
  10185. "version": "6.2.1",
  10186. "source": {
  10187. "type": "git",
  10188. "url": "https://github.com/sebastianbergmann/comparator.git",
  10189. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739"
  10190. },
  10191. "dist": {
  10192. "type": "zip",
  10193. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/43d129d6a0f81c78bee378b46688293eb7ea3739",
  10194. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739",
  10195. "shasum": ""
  10196. },
  10197. "require": {
  10198. "ext-dom": "*",
  10199. "ext-mbstring": "*",
  10200. "php": ">=8.2",
  10201. "sebastian/diff": "^6.0",
  10202. "sebastian/exporter": "^6.0"
  10203. },
  10204. "require-dev": {
  10205. "phpunit/phpunit": "^11.4"
  10206. },
  10207. "type": "library",
  10208. "extra": {
  10209. "branch-alias": {
  10210. "dev-main": "6.2-dev"
  10211. }
  10212. },
  10213. "autoload": {
  10214. "classmap": [
  10215. "src/"
  10216. ]
  10217. },
  10218. "notification-url": "https://packagist.org/downloads/",
  10219. "license": [
  10220. "BSD-3-Clause"
  10221. ],
  10222. "authors": [
  10223. {
  10224. "name": "Sebastian Bergmann",
  10225. "email": "sebastian@phpunit.de"
  10226. },
  10227. {
  10228. "name": "Jeff Welch",
  10229. "email": "whatthejeff@gmail.com"
  10230. },
  10231. {
  10232. "name": "Volker Dusch",
  10233. "email": "github@wallbash.com"
  10234. },
  10235. {
  10236. "name": "Bernhard Schussek",
  10237. "email": "bschussek@2bepublished.at"
  10238. }
  10239. ],
  10240. "description": "Provides the functionality to compare PHP values for equality",
  10241. "homepage": "https://github.com/sebastianbergmann/comparator",
  10242. "keywords": [
  10243. "comparator",
  10244. "compare",
  10245. "equality"
  10246. ],
  10247. "support": {
  10248. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10249. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10250. "source": "https://github.com/sebastianbergmann/comparator/tree/6.2.1"
  10251. },
  10252. "funding": [
  10253. {
  10254. "url": "https://github.com/sebastianbergmann",
  10255. "type": "github"
  10256. }
  10257. ],
  10258. "time": "2024-10-31T05:30:08+00:00"
  10259. },
  10260. {
  10261. "name": "sebastian/complexity",
  10262. "version": "4.0.1",
  10263. "source": {
  10264. "type": "git",
  10265. "url": "https://github.com/sebastianbergmann/complexity.git",
  10266. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  10267. },
  10268. "dist": {
  10269. "type": "zip",
  10270. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  10271. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  10272. "shasum": ""
  10273. },
  10274. "require": {
  10275. "nikic/php-parser": "^5.0",
  10276. "php": ">=8.2"
  10277. },
  10278. "require-dev": {
  10279. "phpunit/phpunit": "^11.0"
  10280. },
  10281. "type": "library",
  10282. "extra": {
  10283. "branch-alias": {
  10284. "dev-main": "4.0-dev"
  10285. }
  10286. },
  10287. "autoload": {
  10288. "classmap": [
  10289. "src/"
  10290. ]
  10291. },
  10292. "notification-url": "https://packagist.org/downloads/",
  10293. "license": [
  10294. "BSD-3-Clause"
  10295. ],
  10296. "authors": [
  10297. {
  10298. "name": "Sebastian Bergmann",
  10299. "email": "sebastian@phpunit.de",
  10300. "role": "lead"
  10301. }
  10302. ],
  10303. "description": "Library for calculating the complexity of PHP code units",
  10304. "homepage": "https://github.com/sebastianbergmann/complexity",
  10305. "support": {
  10306. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10307. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10308. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  10309. },
  10310. "funding": [
  10311. {
  10312. "url": "https://github.com/sebastianbergmann",
  10313. "type": "github"
  10314. }
  10315. ],
  10316. "time": "2024-07-03T04:49:50+00:00"
  10317. },
  10318. {
  10319. "name": "sebastian/diff",
  10320. "version": "6.0.2",
  10321. "source": {
  10322. "type": "git",
  10323. "url": "https://github.com/sebastianbergmann/diff.git",
  10324. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  10325. },
  10326. "dist": {
  10327. "type": "zip",
  10328. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  10329. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  10330. "shasum": ""
  10331. },
  10332. "require": {
  10333. "php": ">=8.2"
  10334. },
  10335. "require-dev": {
  10336. "phpunit/phpunit": "^11.0",
  10337. "symfony/process": "^4.2 || ^5"
  10338. },
  10339. "type": "library",
  10340. "extra": {
  10341. "branch-alias": {
  10342. "dev-main": "6.0-dev"
  10343. }
  10344. },
  10345. "autoload": {
  10346. "classmap": [
  10347. "src/"
  10348. ]
  10349. },
  10350. "notification-url": "https://packagist.org/downloads/",
  10351. "license": [
  10352. "BSD-3-Clause"
  10353. ],
  10354. "authors": [
  10355. {
  10356. "name": "Sebastian Bergmann",
  10357. "email": "sebastian@phpunit.de"
  10358. },
  10359. {
  10360. "name": "Kore Nordmann",
  10361. "email": "mail@kore-nordmann.de"
  10362. }
  10363. ],
  10364. "description": "Diff implementation",
  10365. "homepage": "https://github.com/sebastianbergmann/diff",
  10366. "keywords": [
  10367. "diff",
  10368. "udiff",
  10369. "unidiff",
  10370. "unified diff"
  10371. ],
  10372. "support": {
  10373. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10374. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10375. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  10376. },
  10377. "funding": [
  10378. {
  10379. "url": "https://github.com/sebastianbergmann",
  10380. "type": "github"
  10381. }
  10382. ],
  10383. "time": "2024-07-03T04:53:05+00:00"
  10384. },
  10385. {
  10386. "name": "sebastian/environment",
  10387. "version": "7.2.0",
  10388. "source": {
  10389. "type": "git",
  10390. "url": "https://github.com/sebastianbergmann/environment.git",
  10391. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  10392. },
  10393. "dist": {
  10394. "type": "zip",
  10395. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  10396. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  10397. "shasum": ""
  10398. },
  10399. "require": {
  10400. "php": ">=8.2"
  10401. },
  10402. "require-dev": {
  10403. "phpunit/phpunit": "^11.0"
  10404. },
  10405. "suggest": {
  10406. "ext-posix": "*"
  10407. },
  10408. "type": "library",
  10409. "extra": {
  10410. "branch-alias": {
  10411. "dev-main": "7.2-dev"
  10412. }
  10413. },
  10414. "autoload": {
  10415. "classmap": [
  10416. "src/"
  10417. ]
  10418. },
  10419. "notification-url": "https://packagist.org/downloads/",
  10420. "license": [
  10421. "BSD-3-Clause"
  10422. ],
  10423. "authors": [
  10424. {
  10425. "name": "Sebastian Bergmann",
  10426. "email": "sebastian@phpunit.de"
  10427. }
  10428. ],
  10429. "description": "Provides functionality to handle HHVM/PHP environments",
  10430. "homepage": "https://github.com/sebastianbergmann/environment",
  10431. "keywords": [
  10432. "Xdebug",
  10433. "environment",
  10434. "hhvm"
  10435. ],
  10436. "support": {
  10437. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10438. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10439. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  10440. },
  10441. "funding": [
  10442. {
  10443. "url": "https://github.com/sebastianbergmann",
  10444. "type": "github"
  10445. }
  10446. ],
  10447. "time": "2024-07-03T04:54:44+00:00"
  10448. },
  10449. {
  10450. "name": "sebastian/exporter",
  10451. "version": "6.1.3",
  10452. "source": {
  10453. "type": "git",
  10454. "url": "https://github.com/sebastianbergmann/exporter.git",
  10455. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e"
  10456. },
  10457. "dist": {
  10458. "type": "zip",
  10459. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  10460. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  10461. "shasum": ""
  10462. },
  10463. "require": {
  10464. "ext-mbstring": "*",
  10465. "php": ">=8.2",
  10466. "sebastian/recursion-context": "^6.0"
  10467. },
  10468. "require-dev": {
  10469. "phpunit/phpunit": "^11.2"
  10470. },
  10471. "type": "library",
  10472. "extra": {
  10473. "branch-alias": {
  10474. "dev-main": "6.1-dev"
  10475. }
  10476. },
  10477. "autoload": {
  10478. "classmap": [
  10479. "src/"
  10480. ]
  10481. },
  10482. "notification-url": "https://packagist.org/downloads/",
  10483. "license": [
  10484. "BSD-3-Clause"
  10485. ],
  10486. "authors": [
  10487. {
  10488. "name": "Sebastian Bergmann",
  10489. "email": "sebastian@phpunit.de"
  10490. },
  10491. {
  10492. "name": "Jeff Welch",
  10493. "email": "whatthejeff@gmail.com"
  10494. },
  10495. {
  10496. "name": "Volker Dusch",
  10497. "email": "github@wallbash.com"
  10498. },
  10499. {
  10500. "name": "Adam Harvey",
  10501. "email": "aharvey@php.net"
  10502. },
  10503. {
  10504. "name": "Bernhard Schussek",
  10505. "email": "bschussek@gmail.com"
  10506. }
  10507. ],
  10508. "description": "Provides the functionality to export PHP variables for visualization",
  10509. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10510. "keywords": [
  10511. "export",
  10512. "exporter"
  10513. ],
  10514. "support": {
  10515. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10516. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10517. "source": "https://github.com/sebastianbergmann/exporter/tree/6.1.3"
  10518. },
  10519. "funding": [
  10520. {
  10521. "url": "https://github.com/sebastianbergmann",
  10522. "type": "github"
  10523. }
  10524. ],
  10525. "time": "2024-07-03T04:56:19+00:00"
  10526. },
  10527. {
  10528. "name": "sebastian/global-state",
  10529. "version": "7.0.2",
  10530. "source": {
  10531. "type": "git",
  10532. "url": "https://github.com/sebastianbergmann/global-state.git",
  10533. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  10534. },
  10535. "dist": {
  10536. "type": "zip",
  10537. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  10538. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  10539. "shasum": ""
  10540. },
  10541. "require": {
  10542. "php": ">=8.2",
  10543. "sebastian/object-reflector": "^4.0",
  10544. "sebastian/recursion-context": "^6.0"
  10545. },
  10546. "require-dev": {
  10547. "ext-dom": "*",
  10548. "phpunit/phpunit": "^11.0"
  10549. },
  10550. "type": "library",
  10551. "extra": {
  10552. "branch-alias": {
  10553. "dev-main": "7.0-dev"
  10554. }
  10555. },
  10556. "autoload": {
  10557. "classmap": [
  10558. "src/"
  10559. ]
  10560. },
  10561. "notification-url": "https://packagist.org/downloads/",
  10562. "license": [
  10563. "BSD-3-Clause"
  10564. ],
  10565. "authors": [
  10566. {
  10567. "name": "Sebastian Bergmann",
  10568. "email": "sebastian@phpunit.de"
  10569. }
  10570. ],
  10571. "description": "Snapshotting of global state",
  10572. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10573. "keywords": [
  10574. "global state"
  10575. ],
  10576. "support": {
  10577. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10578. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10579. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  10580. },
  10581. "funding": [
  10582. {
  10583. "url": "https://github.com/sebastianbergmann",
  10584. "type": "github"
  10585. }
  10586. ],
  10587. "time": "2024-07-03T04:57:36+00:00"
  10588. },
  10589. {
  10590. "name": "sebastian/lines-of-code",
  10591. "version": "3.0.1",
  10592. "source": {
  10593. "type": "git",
  10594. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10595. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  10596. },
  10597. "dist": {
  10598. "type": "zip",
  10599. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  10600. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  10601. "shasum": ""
  10602. },
  10603. "require": {
  10604. "nikic/php-parser": "^5.0",
  10605. "php": ">=8.2"
  10606. },
  10607. "require-dev": {
  10608. "phpunit/phpunit": "^11.0"
  10609. },
  10610. "type": "library",
  10611. "extra": {
  10612. "branch-alias": {
  10613. "dev-main": "3.0-dev"
  10614. }
  10615. },
  10616. "autoload": {
  10617. "classmap": [
  10618. "src/"
  10619. ]
  10620. },
  10621. "notification-url": "https://packagist.org/downloads/",
  10622. "license": [
  10623. "BSD-3-Clause"
  10624. ],
  10625. "authors": [
  10626. {
  10627. "name": "Sebastian Bergmann",
  10628. "email": "sebastian@phpunit.de",
  10629. "role": "lead"
  10630. }
  10631. ],
  10632. "description": "Library for counting the lines of code in PHP source code",
  10633. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10634. "support": {
  10635. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10636. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10637. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  10638. },
  10639. "funding": [
  10640. {
  10641. "url": "https://github.com/sebastianbergmann",
  10642. "type": "github"
  10643. }
  10644. ],
  10645. "time": "2024-07-03T04:58:38+00:00"
  10646. },
  10647. {
  10648. "name": "sebastian/object-enumerator",
  10649. "version": "6.0.1",
  10650. "source": {
  10651. "type": "git",
  10652. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10653. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  10654. },
  10655. "dist": {
  10656. "type": "zip",
  10657. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  10658. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  10659. "shasum": ""
  10660. },
  10661. "require": {
  10662. "php": ">=8.2",
  10663. "sebastian/object-reflector": "^4.0",
  10664. "sebastian/recursion-context": "^6.0"
  10665. },
  10666. "require-dev": {
  10667. "phpunit/phpunit": "^11.0"
  10668. },
  10669. "type": "library",
  10670. "extra": {
  10671. "branch-alias": {
  10672. "dev-main": "6.0-dev"
  10673. }
  10674. },
  10675. "autoload": {
  10676. "classmap": [
  10677. "src/"
  10678. ]
  10679. },
  10680. "notification-url": "https://packagist.org/downloads/",
  10681. "license": [
  10682. "BSD-3-Clause"
  10683. ],
  10684. "authors": [
  10685. {
  10686. "name": "Sebastian Bergmann",
  10687. "email": "sebastian@phpunit.de"
  10688. }
  10689. ],
  10690. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10691. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10692. "support": {
  10693. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10694. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  10695. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  10696. },
  10697. "funding": [
  10698. {
  10699. "url": "https://github.com/sebastianbergmann",
  10700. "type": "github"
  10701. }
  10702. ],
  10703. "time": "2024-07-03T05:00:13+00:00"
  10704. },
  10705. {
  10706. "name": "sebastian/object-reflector",
  10707. "version": "4.0.1",
  10708. "source": {
  10709. "type": "git",
  10710. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10711. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  10712. },
  10713. "dist": {
  10714. "type": "zip",
  10715. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  10716. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  10717. "shasum": ""
  10718. },
  10719. "require": {
  10720. "php": ">=8.2"
  10721. },
  10722. "require-dev": {
  10723. "phpunit/phpunit": "^11.0"
  10724. },
  10725. "type": "library",
  10726. "extra": {
  10727. "branch-alias": {
  10728. "dev-main": "4.0-dev"
  10729. }
  10730. },
  10731. "autoload": {
  10732. "classmap": [
  10733. "src/"
  10734. ]
  10735. },
  10736. "notification-url": "https://packagist.org/downloads/",
  10737. "license": [
  10738. "BSD-3-Clause"
  10739. ],
  10740. "authors": [
  10741. {
  10742. "name": "Sebastian Bergmann",
  10743. "email": "sebastian@phpunit.de"
  10744. }
  10745. ],
  10746. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10747. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10748. "support": {
  10749. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10750. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  10751. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  10752. },
  10753. "funding": [
  10754. {
  10755. "url": "https://github.com/sebastianbergmann",
  10756. "type": "github"
  10757. }
  10758. ],
  10759. "time": "2024-07-03T05:01:32+00:00"
  10760. },
  10761. {
  10762. "name": "sebastian/recursion-context",
  10763. "version": "6.0.2",
  10764. "source": {
  10765. "type": "git",
  10766. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10767. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  10768. },
  10769. "dist": {
  10770. "type": "zip",
  10771. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  10772. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  10773. "shasum": ""
  10774. },
  10775. "require": {
  10776. "php": ">=8.2"
  10777. },
  10778. "require-dev": {
  10779. "phpunit/phpunit": "^11.0"
  10780. },
  10781. "type": "library",
  10782. "extra": {
  10783. "branch-alias": {
  10784. "dev-main": "6.0-dev"
  10785. }
  10786. },
  10787. "autoload": {
  10788. "classmap": [
  10789. "src/"
  10790. ]
  10791. },
  10792. "notification-url": "https://packagist.org/downloads/",
  10793. "license": [
  10794. "BSD-3-Clause"
  10795. ],
  10796. "authors": [
  10797. {
  10798. "name": "Sebastian Bergmann",
  10799. "email": "sebastian@phpunit.de"
  10800. },
  10801. {
  10802. "name": "Jeff Welch",
  10803. "email": "whatthejeff@gmail.com"
  10804. },
  10805. {
  10806. "name": "Adam Harvey",
  10807. "email": "aharvey@php.net"
  10808. }
  10809. ],
  10810. "description": "Provides functionality to recursively process PHP variables",
  10811. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10812. "support": {
  10813. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10814. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  10815. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  10816. },
  10817. "funding": [
  10818. {
  10819. "url": "https://github.com/sebastianbergmann",
  10820. "type": "github"
  10821. }
  10822. ],
  10823. "time": "2024-07-03T05:10:34+00:00"
  10824. },
  10825. {
  10826. "name": "sebastian/type",
  10827. "version": "5.1.0",
  10828. "source": {
  10829. "type": "git",
  10830. "url": "https://github.com/sebastianbergmann/type.git",
  10831. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac"
  10832. },
  10833. "dist": {
  10834. "type": "zip",
  10835. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  10836. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  10837. "shasum": ""
  10838. },
  10839. "require": {
  10840. "php": ">=8.2"
  10841. },
  10842. "require-dev": {
  10843. "phpunit/phpunit": "^11.3"
  10844. },
  10845. "type": "library",
  10846. "extra": {
  10847. "branch-alias": {
  10848. "dev-main": "5.1-dev"
  10849. }
  10850. },
  10851. "autoload": {
  10852. "classmap": [
  10853. "src/"
  10854. ]
  10855. },
  10856. "notification-url": "https://packagist.org/downloads/",
  10857. "license": [
  10858. "BSD-3-Clause"
  10859. ],
  10860. "authors": [
  10861. {
  10862. "name": "Sebastian Bergmann",
  10863. "email": "sebastian@phpunit.de",
  10864. "role": "lead"
  10865. }
  10866. ],
  10867. "description": "Collection of value objects that represent the types of the PHP type system",
  10868. "homepage": "https://github.com/sebastianbergmann/type",
  10869. "support": {
  10870. "issues": "https://github.com/sebastianbergmann/type/issues",
  10871. "security": "https://github.com/sebastianbergmann/type/security/policy",
  10872. "source": "https://github.com/sebastianbergmann/type/tree/5.1.0"
  10873. },
  10874. "funding": [
  10875. {
  10876. "url": "https://github.com/sebastianbergmann",
  10877. "type": "github"
  10878. }
  10879. ],
  10880. "time": "2024-09-17T13:12:04+00:00"
  10881. },
  10882. {
  10883. "name": "sebastian/version",
  10884. "version": "5.0.2",
  10885. "source": {
  10886. "type": "git",
  10887. "url": "https://github.com/sebastianbergmann/version.git",
  10888. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  10889. },
  10890. "dist": {
  10891. "type": "zip",
  10892. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  10893. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  10894. "shasum": ""
  10895. },
  10896. "require": {
  10897. "php": ">=8.2"
  10898. },
  10899. "type": "library",
  10900. "extra": {
  10901. "branch-alias": {
  10902. "dev-main": "5.0-dev"
  10903. }
  10904. },
  10905. "autoload": {
  10906. "classmap": [
  10907. "src/"
  10908. ]
  10909. },
  10910. "notification-url": "https://packagist.org/downloads/",
  10911. "license": [
  10912. "BSD-3-Clause"
  10913. ],
  10914. "authors": [
  10915. {
  10916. "name": "Sebastian Bergmann",
  10917. "email": "sebastian@phpunit.de",
  10918. "role": "lead"
  10919. }
  10920. ],
  10921. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10922. "homepage": "https://github.com/sebastianbergmann/version",
  10923. "support": {
  10924. "issues": "https://github.com/sebastianbergmann/version/issues",
  10925. "security": "https://github.com/sebastianbergmann/version/security/policy",
  10926. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  10927. },
  10928. "funding": [
  10929. {
  10930. "url": "https://github.com/sebastianbergmann",
  10931. "type": "github"
  10932. }
  10933. ],
  10934. "time": "2024-10-09T05:16:32+00:00"
  10935. },
  10936. {
  10937. "name": "theseer/tokenizer",
  10938. "version": "1.2.3",
  10939. "source": {
  10940. "type": "git",
  10941. "url": "https://github.com/theseer/tokenizer.git",
  10942. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10943. },
  10944. "dist": {
  10945. "type": "zip",
  10946. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10947. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10948. "shasum": ""
  10949. },
  10950. "require": {
  10951. "ext-dom": "*",
  10952. "ext-tokenizer": "*",
  10953. "ext-xmlwriter": "*",
  10954. "php": "^7.2 || ^8.0"
  10955. },
  10956. "type": "library",
  10957. "autoload": {
  10958. "classmap": [
  10959. "src/"
  10960. ]
  10961. },
  10962. "notification-url": "https://packagist.org/downloads/",
  10963. "license": [
  10964. "BSD-3-Clause"
  10965. ],
  10966. "authors": [
  10967. {
  10968. "name": "Arne Blankerts",
  10969. "email": "arne@blankerts.de",
  10970. "role": "Developer"
  10971. }
  10972. ],
  10973. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10974. "support": {
  10975. "issues": "https://github.com/theseer/tokenizer/issues",
  10976. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10977. },
  10978. "funding": [
  10979. {
  10980. "url": "https://github.com/theseer",
  10981. "type": "github"
  10982. }
  10983. ],
  10984. "time": "2024-03-03T12:36:25+00:00"
  10985. }
  10986. ],
  10987. "aliases": [],
  10988. "minimum-stability": "stable",
  10989. "stability-flags": {},
  10990. "prefer-stable": true,
  10991. "prefer-lowest": false,
  10992. "platform": {
  10993. "php": "^8.2"
  10994. },
  10995. "platform-dev": {},
  10996. "plugin-api-version": "2.6.0"
  10997. }