composer.lock 316 KB

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