composer.lock 378 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490
  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": "bb170ad88f957224499b4e3f561ecb2f",
  8. "packages": [
  9. {
  10. "name": "composer/package-versions-deprecated",
  11. "version": "1.11.99.5",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/package-versions-deprecated.git",
  15. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
  20. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "composer-plugin-api": "^1.1.0 || ^2.0",
  25. "php": "^7 || ^8"
  26. },
  27. "replace": {
  28. "ocramius/package-versions": "1.11.99"
  29. },
  30. "require-dev": {
  31. "composer/composer": "^1.9.3 || ^2.0@dev",
  32. "ext-zip": "^1.13",
  33. "phpunit/phpunit": "^6.5 || ^7"
  34. },
  35. "type": "composer-plugin",
  36. "extra": {
  37. "class": "PackageVersions\\Installer",
  38. "branch-alias": {
  39. "dev-master": "1.x-dev"
  40. }
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "PackageVersions\\": "src/PackageVersions"
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Marco Pivetta",
  54. "email": "ocramius@gmail.com"
  55. },
  56. {
  57. "name": "Jordi Boggiano",
  58. "email": "j.boggiano@seld.be"
  59. }
  60. ],
  61. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  62. "support": {
  63. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  64. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5"
  65. },
  66. "funding": [
  67. {
  68. "url": "https://packagist.com",
  69. "type": "custom"
  70. },
  71. {
  72. "url": "https://github.com/composer",
  73. "type": "github"
  74. },
  75. {
  76. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  77. "type": "tidelift"
  78. }
  79. ],
  80. "time": "2022-01-17T14:14:24+00:00"
  81. },
  82. {
  83. "name": "dflydev/dot-access-data",
  84. "version": "v3.0.3",
  85. "source": {
  86. "type": "git",
  87. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  88. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  89. },
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  93. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  94. "shasum": ""
  95. },
  96. "require": {
  97. "php": "^7.1 || ^8.0"
  98. },
  99. "require-dev": {
  100. "phpstan/phpstan": "^0.12.42",
  101. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  102. "scrutinizer/ocular": "1.6.0",
  103. "squizlabs/php_codesniffer": "^3.5",
  104. "vimeo/psalm": "^4.0.0"
  105. },
  106. "type": "library",
  107. "extra": {
  108. "branch-alias": {
  109. "dev-main": "3.x-dev"
  110. }
  111. },
  112. "autoload": {
  113. "psr-4": {
  114. "Dflydev\\DotAccessData\\": "src/"
  115. }
  116. },
  117. "notification-url": "https://packagist.org/downloads/",
  118. "license": [
  119. "MIT"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Dragonfly Development Inc.",
  124. "email": "info@dflydev.com",
  125. "homepage": "http://dflydev.com"
  126. },
  127. {
  128. "name": "Beau Simensen",
  129. "email": "beau@dflydev.com",
  130. "homepage": "http://beausimensen.com"
  131. },
  132. {
  133. "name": "Carlos Frutos",
  134. "email": "carlos@kiwing.it",
  135. "homepage": "https://github.com/cfrutos"
  136. },
  137. {
  138. "name": "Colin O'Dell",
  139. "email": "colinodell@gmail.com",
  140. "homepage": "https://www.colinodell.com"
  141. }
  142. ],
  143. "description": "Given a deep data structure, access data by dot notation.",
  144. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  145. "keywords": [
  146. "access",
  147. "data",
  148. "dot",
  149. "notation"
  150. ],
  151. "support": {
  152. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  153. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  154. },
  155. "time": "2024-07-08T12:26:09+00:00"
  156. },
  157. {
  158. "name": "doctrine/annotations",
  159. "version": "2.0.1",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/doctrine/annotations.git",
  163. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  168. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "doctrine/lexer": "^2 || ^3",
  173. "ext-tokenizer": "*",
  174. "php": "^7.2 || ^8.0",
  175. "psr/cache": "^1 || ^2 || ^3"
  176. },
  177. "require-dev": {
  178. "doctrine/cache": "^2.0",
  179. "doctrine/coding-standard": "^10",
  180. "phpstan/phpstan": "^1.8.0",
  181. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  182. "symfony/cache": "^5.4 || ^6",
  183. "vimeo/psalm": "^4.10"
  184. },
  185. "suggest": {
  186. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  187. },
  188. "type": "library",
  189. "autoload": {
  190. "psr-4": {
  191. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  192. }
  193. },
  194. "notification-url": "https://packagist.org/downloads/",
  195. "license": [
  196. "MIT"
  197. ],
  198. "authors": [
  199. {
  200. "name": "Guilherme Blanco",
  201. "email": "guilhermeblanco@gmail.com"
  202. },
  203. {
  204. "name": "Roman Borschel",
  205. "email": "roman@code-factory.org"
  206. },
  207. {
  208. "name": "Benjamin Eberlei",
  209. "email": "kontakt@beberlei.de"
  210. },
  211. {
  212. "name": "Jonathan Wage",
  213. "email": "jonwage@gmail.com"
  214. },
  215. {
  216. "name": "Johannes Schmitt",
  217. "email": "schmittjoh@gmail.com"
  218. }
  219. ],
  220. "description": "Docblock Annotations Parser",
  221. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  222. "keywords": [
  223. "annotations",
  224. "docblock",
  225. "parser"
  226. ],
  227. "support": {
  228. "issues": "https://github.com/doctrine/annotations/issues",
  229. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  230. },
  231. "time": "2023-02-02T22:02:53+00:00"
  232. },
  233. {
  234. "name": "doctrine/cache",
  235. "version": "2.2.0",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/doctrine/cache.git",
  239. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  244. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  245. "shasum": ""
  246. },
  247. "require": {
  248. "php": "~7.1 || ^8.0"
  249. },
  250. "conflict": {
  251. "doctrine/common": ">2.2,<2.4"
  252. },
  253. "require-dev": {
  254. "cache/integration-tests": "dev-master",
  255. "doctrine/coding-standard": "^9",
  256. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  257. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  258. "symfony/cache": "^4.4 || ^5.4 || ^6",
  259. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  260. },
  261. "type": "library",
  262. "autoload": {
  263. "psr-4": {
  264. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  265. }
  266. },
  267. "notification-url": "https://packagist.org/downloads/",
  268. "license": [
  269. "MIT"
  270. ],
  271. "authors": [
  272. {
  273. "name": "Guilherme Blanco",
  274. "email": "guilhermeblanco@gmail.com"
  275. },
  276. {
  277. "name": "Roman Borschel",
  278. "email": "roman@code-factory.org"
  279. },
  280. {
  281. "name": "Benjamin Eberlei",
  282. "email": "kontakt@beberlei.de"
  283. },
  284. {
  285. "name": "Jonathan Wage",
  286. "email": "jonwage@gmail.com"
  287. },
  288. {
  289. "name": "Johannes Schmitt",
  290. "email": "schmittjoh@gmail.com"
  291. }
  292. ],
  293. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  294. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  295. "keywords": [
  296. "abstraction",
  297. "apcu",
  298. "cache",
  299. "caching",
  300. "couchdb",
  301. "memcached",
  302. "php",
  303. "redis",
  304. "xcache"
  305. ],
  306. "support": {
  307. "issues": "https://github.com/doctrine/cache/issues",
  308. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  309. },
  310. "funding": [
  311. {
  312. "url": "https://www.doctrine-project.org/sponsorship.html",
  313. "type": "custom"
  314. },
  315. {
  316. "url": "https://www.patreon.com/phpdoctrine",
  317. "type": "patreon"
  318. },
  319. {
  320. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  321. "type": "tidelift"
  322. }
  323. ],
  324. "time": "2022-05-20T20:07:39+00:00"
  325. },
  326. {
  327. "name": "doctrine/collections",
  328. "version": "2.2.2",
  329. "source": {
  330. "type": "git",
  331. "url": "https://github.com/doctrine/collections.git",
  332. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59"
  333. },
  334. "dist": {
  335. "type": "zip",
  336. "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59",
  337. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59",
  338. "shasum": ""
  339. },
  340. "require": {
  341. "doctrine/deprecations": "^1",
  342. "php": "^8.1"
  343. },
  344. "require-dev": {
  345. "doctrine/coding-standard": "^12",
  346. "ext-json": "*",
  347. "phpstan/phpstan": "^1.8",
  348. "phpstan/phpstan-phpunit": "^1.0",
  349. "phpunit/phpunit": "^10.5",
  350. "vimeo/psalm": "^5.11"
  351. },
  352. "type": "library",
  353. "autoload": {
  354. "psr-4": {
  355. "Doctrine\\Common\\Collections\\": "src"
  356. }
  357. },
  358. "notification-url": "https://packagist.org/downloads/",
  359. "license": [
  360. "MIT"
  361. ],
  362. "authors": [
  363. {
  364. "name": "Guilherme Blanco",
  365. "email": "guilhermeblanco@gmail.com"
  366. },
  367. {
  368. "name": "Roman Borschel",
  369. "email": "roman@code-factory.org"
  370. },
  371. {
  372. "name": "Benjamin Eberlei",
  373. "email": "kontakt@beberlei.de"
  374. },
  375. {
  376. "name": "Jonathan Wage",
  377. "email": "jonwage@gmail.com"
  378. },
  379. {
  380. "name": "Johannes Schmitt",
  381. "email": "schmittjoh@gmail.com"
  382. }
  383. ],
  384. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  385. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  386. "keywords": [
  387. "array",
  388. "collections",
  389. "iterators",
  390. "php"
  391. ],
  392. "support": {
  393. "issues": "https://github.com/doctrine/collections/issues",
  394. "source": "https://github.com/doctrine/collections/tree/2.2.2"
  395. },
  396. "funding": [
  397. {
  398. "url": "https://www.doctrine-project.org/sponsorship.html",
  399. "type": "custom"
  400. },
  401. {
  402. "url": "https://www.patreon.com/phpdoctrine",
  403. "type": "patreon"
  404. },
  405. {
  406. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  407. "type": "tidelift"
  408. }
  409. ],
  410. "time": "2024-04-18T06:56:21+00:00"
  411. },
  412. {
  413. "name": "doctrine/dbal",
  414. "version": "4.0.4",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/doctrine/dbal.git",
  418. "reference": "50fda19f80724b55ff770bb4ff352407008e63c5"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/doctrine/dbal/zipball/50fda19f80724b55ff770bb4ff352407008e63c5",
  423. "reference": "50fda19f80724b55ff770bb4ff352407008e63c5",
  424. "shasum": ""
  425. },
  426. "require": {
  427. "doctrine/deprecations": "^0.5.3|^1",
  428. "php": "^8.1",
  429. "psr/cache": "^1|^2|^3",
  430. "psr/log": "^1|^2|^3"
  431. },
  432. "require-dev": {
  433. "doctrine/coding-standard": "12.0.0",
  434. "fig/log-test": "^1",
  435. "jetbrains/phpstorm-stubs": "2023.2",
  436. "phpstan/phpstan": "1.11.5",
  437. "phpstan/phpstan-phpunit": "1.4.0",
  438. "phpstan/phpstan-strict-rules": "^1.6",
  439. "phpunit/phpunit": "10.5.22",
  440. "psalm/plugin-phpunit": "0.19.0",
  441. "slevomat/coding-standard": "8.13.1",
  442. "squizlabs/php_codesniffer": "3.10.1",
  443. "symfony/cache": "^6.3.8|^7.0",
  444. "symfony/console": "^5.4|^6.3|^7.0",
  445. "vimeo/psalm": "5.24.0"
  446. },
  447. "suggest": {
  448. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  449. },
  450. "type": "library",
  451. "autoload": {
  452. "psr-4": {
  453. "Doctrine\\DBAL\\": "src"
  454. }
  455. },
  456. "notification-url": "https://packagist.org/downloads/",
  457. "license": [
  458. "MIT"
  459. ],
  460. "authors": [
  461. {
  462. "name": "Guilherme Blanco",
  463. "email": "guilhermeblanco@gmail.com"
  464. },
  465. {
  466. "name": "Roman Borschel",
  467. "email": "roman@code-factory.org"
  468. },
  469. {
  470. "name": "Benjamin Eberlei",
  471. "email": "kontakt@beberlei.de"
  472. },
  473. {
  474. "name": "Jonathan Wage",
  475. "email": "jonwage@gmail.com"
  476. }
  477. ],
  478. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  479. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  480. "keywords": [
  481. "abstraction",
  482. "database",
  483. "db2",
  484. "dbal",
  485. "mariadb",
  486. "mssql",
  487. "mysql",
  488. "oci8",
  489. "oracle",
  490. "pdo",
  491. "pgsql",
  492. "postgresql",
  493. "queryobject",
  494. "sasql",
  495. "sql",
  496. "sqlite",
  497. "sqlserver",
  498. "sqlsrv"
  499. ],
  500. "support": {
  501. "issues": "https://github.com/doctrine/dbal/issues",
  502. "source": "https://github.com/doctrine/dbal/tree/4.0.4"
  503. },
  504. "funding": [
  505. {
  506. "url": "https://www.doctrine-project.org/sponsorship.html",
  507. "type": "custom"
  508. },
  509. {
  510. "url": "https://www.patreon.com/phpdoctrine",
  511. "type": "patreon"
  512. },
  513. {
  514. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  515. "type": "tidelift"
  516. }
  517. ],
  518. "time": "2024-06-19T11:57:23+00:00"
  519. },
  520. {
  521. "name": "doctrine/deprecations",
  522. "version": "1.1.3",
  523. "source": {
  524. "type": "git",
  525. "url": "https://github.com/doctrine/deprecations.git",
  526. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  527. },
  528. "dist": {
  529. "type": "zip",
  530. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  531. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  532. "shasum": ""
  533. },
  534. "require": {
  535. "php": "^7.1 || ^8.0"
  536. },
  537. "require-dev": {
  538. "doctrine/coding-standard": "^9",
  539. "phpstan/phpstan": "1.4.10 || 1.10.15",
  540. "phpstan/phpstan-phpunit": "^1.0",
  541. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  542. "psalm/plugin-phpunit": "0.18.4",
  543. "psr/log": "^1 || ^2 || ^3",
  544. "vimeo/psalm": "4.30.0 || 5.12.0"
  545. },
  546. "suggest": {
  547. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  548. },
  549. "type": "library",
  550. "autoload": {
  551. "psr-4": {
  552. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  553. }
  554. },
  555. "notification-url": "https://packagist.org/downloads/",
  556. "license": [
  557. "MIT"
  558. ],
  559. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  560. "homepage": "https://www.doctrine-project.org/",
  561. "support": {
  562. "issues": "https://github.com/doctrine/deprecations/issues",
  563. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  564. },
  565. "time": "2024-01-30T19:34:25+00:00"
  566. },
  567. {
  568. "name": "doctrine/doctrine-bundle",
  569. "version": "2.12.0",
  570. "source": {
  571. "type": "git",
  572. "url": "https://github.com/doctrine/DoctrineBundle.git",
  573. "reference": "5418e811a14724068e95e0ba43353b903ada530f"
  574. },
  575. "dist": {
  576. "type": "zip",
  577. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/5418e811a14724068e95e0ba43353b903ada530f",
  578. "reference": "5418e811a14724068e95e0ba43353b903ada530f",
  579. "shasum": ""
  580. },
  581. "require": {
  582. "doctrine/cache": "^1.11 || ^2.0",
  583. "doctrine/dbal": "^3.7.0 || ^4.0",
  584. "doctrine/persistence": "^2.2 || ^3",
  585. "doctrine/sql-formatter": "^1.0.1",
  586. "php": "^7.4 || ^8.0",
  587. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  588. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  589. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  590. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  591. "symfony/deprecation-contracts": "^2.1 || ^3",
  592. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
  593. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  594. "symfony/polyfill-php80": "^1.15",
  595. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  596. },
  597. "conflict": {
  598. "doctrine/annotations": ">=3.0",
  599. "doctrine/orm": "<2.17 || >=4.0",
  600. "twig/twig": "<1.34 || >=2.0 <2.4"
  601. },
  602. "require-dev": {
  603. "doctrine/annotations": "^1 || ^2",
  604. "doctrine/coding-standard": "^12",
  605. "doctrine/deprecations": "^1.0",
  606. "doctrine/orm": "^2.17 || ^3.0",
  607. "friendsofphp/proxy-manager-lts": "^1.0",
  608. "phpunit/phpunit": "^9.5.26",
  609. "psalm/plugin-phpunit": "^0.18.4",
  610. "psalm/plugin-symfony": "^5",
  611. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  612. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  613. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  614. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  615. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  616. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  617. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  618. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  619. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  620. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  621. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  622. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  623. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  624. "vimeo/psalm": "^5.15"
  625. },
  626. "suggest": {
  627. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  628. "ext-pdo": "*",
  629. "symfony/web-profiler-bundle": "To use the data collector."
  630. },
  631. "type": "symfony-bundle",
  632. "autoload": {
  633. "psr-4": {
  634. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  635. }
  636. },
  637. "notification-url": "https://packagist.org/downloads/",
  638. "license": [
  639. "MIT"
  640. ],
  641. "authors": [
  642. {
  643. "name": "Fabien Potencier",
  644. "email": "fabien@symfony.com"
  645. },
  646. {
  647. "name": "Benjamin Eberlei",
  648. "email": "kontakt@beberlei.de"
  649. },
  650. {
  651. "name": "Symfony Community",
  652. "homepage": "https://symfony.com/contributors"
  653. },
  654. {
  655. "name": "Doctrine Project",
  656. "homepage": "https://www.doctrine-project.org/"
  657. }
  658. ],
  659. "description": "Symfony DoctrineBundle",
  660. "homepage": "https://www.doctrine-project.org",
  661. "keywords": [
  662. "database",
  663. "dbal",
  664. "orm",
  665. "persistence"
  666. ],
  667. "support": {
  668. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  669. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.12.0"
  670. },
  671. "funding": [
  672. {
  673. "url": "https://www.doctrine-project.org/sponsorship.html",
  674. "type": "custom"
  675. },
  676. {
  677. "url": "https://www.patreon.com/phpdoctrine",
  678. "type": "patreon"
  679. },
  680. {
  681. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  682. "type": "tidelift"
  683. }
  684. ],
  685. "time": "2024-03-19T07:20:37+00:00"
  686. },
  687. {
  688. "name": "doctrine/doctrine-migrations-bundle",
  689. "version": "3.3.1",
  690. "source": {
  691. "type": "git",
  692. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  693. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0"
  694. },
  695. "dist": {
  696. "type": "zip",
  697. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  698. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  699. "shasum": ""
  700. },
  701. "require": {
  702. "doctrine/doctrine-bundle": "^2.4",
  703. "doctrine/migrations": "^3.2",
  704. "php": "^7.2|^8.0",
  705. "symfony/deprecation-contracts": "^2.1 || ^3",
  706. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  707. },
  708. "require-dev": {
  709. "composer/semver": "^3.0",
  710. "doctrine/coding-standard": "^12",
  711. "doctrine/orm": "^2.6 || ^3",
  712. "doctrine/persistence": "^2.0 || ^3 ",
  713. "phpstan/phpstan": "^1.4",
  714. "phpstan/phpstan-deprecation-rules": "^1",
  715. "phpstan/phpstan-phpunit": "^1",
  716. "phpstan/phpstan-strict-rules": "^1.1",
  717. "phpstan/phpstan-symfony": "^1.3",
  718. "phpunit/phpunit": "^8.5|^9.5",
  719. "psalm/plugin-phpunit": "^0.18.4",
  720. "psalm/plugin-symfony": "^3 || ^5",
  721. "symfony/phpunit-bridge": "^6.3 || ^7",
  722. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  723. "vimeo/psalm": "^4.30 || ^5.15"
  724. },
  725. "type": "symfony-bundle",
  726. "autoload": {
  727. "psr-4": {
  728. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  729. },
  730. "exclude-from-classmap": [
  731. "/Tests/"
  732. ]
  733. },
  734. "notification-url": "https://packagist.org/downloads/",
  735. "license": [
  736. "MIT"
  737. ],
  738. "authors": [
  739. {
  740. "name": "Fabien Potencier",
  741. "email": "fabien@symfony.com"
  742. },
  743. {
  744. "name": "Doctrine Project",
  745. "homepage": "https://www.doctrine-project.org"
  746. },
  747. {
  748. "name": "Symfony Community",
  749. "homepage": "https://symfony.com/contributors"
  750. }
  751. ],
  752. "description": "Symfony DoctrineMigrationsBundle",
  753. "homepage": "https://www.doctrine-project.org",
  754. "keywords": [
  755. "dbal",
  756. "migrations",
  757. "schema"
  758. ],
  759. "support": {
  760. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  761. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.1"
  762. },
  763. "funding": [
  764. {
  765. "url": "https://www.doctrine-project.org/sponsorship.html",
  766. "type": "custom"
  767. },
  768. {
  769. "url": "https://www.patreon.com/phpdoctrine",
  770. "type": "patreon"
  771. },
  772. {
  773. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  774. "type": "tidelift"
  775. }
  776. ],
  777. "time": "2024-05-14T20:32:18+00:00"
  778. },
  779. {
  780. "name": "doctrine/event-manager",
  781. "version": "2.0.1",
  782. "source": {
  783. "type": "git",
  784. "url": "https://github.com/doctrine/event-manager.git",
  785. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  786. },
  787. "dist": {
  788. "type": "zip",
  789. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  790. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  791. "shasum": ""
  792. },
  793. "require": {
  794. "php": "^8.1"
  795. },
  796. "conflict": {
  797. "doctrine/common": "<2.9"
  798. },
  799. "require-dev": {
  800. "doctrine/coding-standard": "^12",
  801. "phpstan/phpstan": "^1.8.8",
  802. "phpunit/phpunit": "^10.5",
  803. "vimeo/psalm": "^5.24"
  804. },
  805. "type": "library",
  806. "autoload": {
  807. "psr-4": {
  808. "Doctrine\\Common\\": "src"
  809. }
  810. },
  811. "notification-url": "https://packagist.org/downloads/",
  812. "license": [
  813. "MIT"
  814. ],
  815. "authors": [
  816. {
  817. "name": "Guilherme Blanco",
  818. "email": "guilhermeblanco@gmail.com"
  819. },
  820. {
  821. "name": "Roman Borschel",
  822. "email": "roman@code-factory.org"
  823. },
  824. {
  825. "name": "Benjamin Eberlei",
  826. "email": "kontakt@beberlei.de"
  827. },
  828. {
  829. "name": "Jonathan Wage",
  830. "email": "jonwage@gmail.com"
  831. },
  832. {
  833. "name": "Johannes Schmitt",
  834. "email": "schmittjoh@gmail.com"
  835. },
  836. {
  837. "name": "Marco Pivetta",
  838. "email": "ocramius@gmail.com"
  839. }
  840. ],
  841. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  842. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  843. "keywords": [
  844. "event",
  845. "event dispatcher",
  846. "event manager",
  847. "event system",
  848. "events"
  849. ],
  850. "support": {
  851. "issues": "https://github.com/doctrine/event-manager/issues",
  852. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  853. },
  854. "funding": [
  855. {
  856. "url": "https://www.doctrine-project.org/sponsorship.html",
  857. "type": "custom"
  858. },
  859. {
  860. "url": "https://www.patreon.com/phpdoctrine",
  861. "type": "patreon"
  862. },
  863. {
  864. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  865. "type": "tidelift"
  866. }
  867. ],
  868. "time": "2024-05-22T20:47:39+00:00"
  869. },
  870. {
  871. "name": "doctrine/inflector",
  872. "version": "2.0.10",
  873. "source": {
  874. "type": "git",
  875. "url": "https://github.com/doctrine/inflector.git",
  876. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  877. },
  878. "dist": {
  879. "type": "zip",
  880. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  881. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  882. "shasum": ""
  883. },
  884. "require": {
  885. "php": "^7.2 || ^8.0"
  886. },
  887. "require-dev": {
  888. "doctrine/coding-standard": "^11.0",
  889. "phpstan/phpstan": "^1.8",
  890. "phpstan/phpstan-phpunit": "^1.1",
  891. "phpstan/phpstan-strict-rules": "^1.3",
  892. "phpunit/phpunit": "^8.5 || ^9.5",
  893. "vimeo/psalm": "^4.25 || ^5.4"
  894. },
  895. "type": "library",
  896. "autoload": {
  897. "psr-4": {
  898. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  899. }
  900. },
  901. "notification-url": "https://packagist.org/downloads/",
  902. "license": [
  903. "MIT"
  904. ],
  905. "authors": [
  906. {
  907. "name": "Guilherme Blanco",
  908. "email": "guilhermeblanco@gmail.com"
  909. },
  910. {
  911. "name": "Roman Borschel",
  912. "email": "roman@code-factory.org"
  913. },
  914. {
  915. "name": "Benjamin Eberlei",
  916. "email": "kontakt@beberlei.de"
  917. },
  918. {
  919. "name": "Jonathan Wage",
  920. "email": "jonwage@gmail.com"
  921. },
  922. {
  923. "name": "Johannes Schmitt",
  924. "email": "schmittjoh@gmail.com"
  925. }
  926. ],
  927. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  928. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  929. "keywords": [
  930. "inflection",
  931. "inflector",
  932. "lowercase",
  933. "manipulation",
  934. "php",
  935. "plural",
  936. "singular",
  937. "strings",
  938. "uppercase",
  939. "words"
  940. ],
  941. "support": {
  942. "issues": "https://github.com/doctrine/inflector/issues",
  943. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  944. },
  945. "funding": [
  946. {
  947. "url": "https://www.doctrine-project.org/sponsorship.html",
  948. "type": "custom"
  949. },
  950. {
  951. "url": "https://www.patreon.com/phpdoctrine",
  952. "type": "patreon"
  953. },
  954. {
  955. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  956. "type": "tidelift"
  957. }
  958. ],
  959. "time": "2024-02-18T20:23:39+00:00"
  960. },
  961. {
  962. "name": "doctrine/instantiator",
  963. "version": "2.0.0",
  964. "source": {
  965. "type": "git",
  966. "url": "https://github.com/doctrine/instantiator.git",
  967. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  968. },
  969. "dist": {
  970. "type": "zip",
  971. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  972. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  973. "shasum": ""
  974. },
  975. "require": {
  976. "php": "^8.1"
  977. },
  978. "require-dev": {
  979. "doctrine/coding-standard": "^11",
  980. "ext-pdo": "*",
  981. "ext-phar": "*",
  982. "phpbench/phpbench": "^1.2",
  983. "phpstan/phpstan": "^1.9.4",
  984. "phpstan/phpstan-phpunit": "^1.3",
  985. "phpunit/phpunit": "^9.5.27",
  986. "vimeo/psalm": "^5.4"
  987. },
  988. "type": "library",
  989. "autoload": {
  990. "psr-4": {
  991. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  992. }
  993. },
  994. "notification-url": "https://packagist.org/downloads/",
  995. "license": [
  996. "MIT"
  997. ],
  998. "authors": [
  999. {
  1000. "name": "Marco Pivetta",
  1001. "email": "ocramius@gmail.com",
  1002. "homepage": "https://ocramius.github.io/"
  1003. }
  1004. ],
  1005. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1006. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1007. "keywords": [
  1008. "constructor",
  1009. "instantiate"
  1010. ],
  1011. "support": {
  1012. "issues": "https://github.com/doctrine/instantiator/issues",
  1013. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  1014. },
  1015. "funding": [
  1016. {
  1017. "url": "https://www.doctrine-project.org/sponsorship.html",
  1018. "type": "custom"
  1019. },
  1020. {
  1021. "url": "https://www.patreon.com/phpdoctrine",
  1022. "type": "patreon"
  1023. },
  1024. {
  1025. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1026. "type": "tidelift"
  1027. }
  1028. ],
  1029. "time": "2022-12-30T00:23:10+00:00"
  1030. },
  1031. {
  1032. "name": "doctrine/lexer",
  1033. "version": "3.0.1",
  1034. "source": {
  1035. "type": "git",
  1036. "url": "https://github.com/doctrine/lexer.git",
  1037. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1038. },
  1039. "dist": {
  1040. "type": "zip",
  1041. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1042. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1043. "shasum": ""
  1044. },
  1045. "require": {
  1046. "php": "^8.1"
  1047. },
  1048. "require-dev": {
  1049. "doctrine/coding-standard": "^12",
  1050. "phpstan/phpstan": "^1.10",
  1051. "phpunit/phpunit": "^10.5",
  1052. "psalm/plugin-phpunit": "^0.18.3",
  1053. "vimeo/psalm": "^5.21"
  1054. },
  1055. "type": "library",
  1056. "autoload": {
  1057. "psr-4": {
  1058. "Doctrine\\Common\\Lexer\\": "src"
  1059. }
  1060. },
  1061. "notification-url": "https://packagist.org/downloads/",
  1062. "license": [
  1063. "MIT"
  1064. ],
  1065. "authors": [
  1066. {
  1067. "name": "Guilherme Blanco",
  1068. "email": "guilhermeblanco@gmail.com"
  1069. },
  1070. {
  1071. "name": "Roman Borschel",
  1072. "email": "roman@code-factory.org"
  1073. },
  1074. {
  1075. "name": "Johannes Schmitt",
  1076. "email": "schmittjoh@gmail.com"
  1077. }
  1078. ],
  1079. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1080. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1081. "keywords": [
  1082. "annotations",
  1083. "docblock",
  1084. "lexer",
  1085. "parser",
  1086. "php"
  1087. ],
  1088. "support": {
  1089. "issues": "https://github.com/doctrine/lexer/issues",
  1090. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1091. },
  1092. "funding": [
  1093. {
  1094. "url": "https://www.doctrine-project.org/sponsorship.html",
  1095. "type": "custom"
  1096. },
  1097. {
  1098. "url": "https://www.patreon.com/phpdoctrine",
  1099. "type": "patreon"
  1100. },
  1101. {
  1102. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1103. "type": "tidelift"
  1104. }
  1105. ],
  1106. "time": "2024-02-05T11:56:58+00:00"
  1107. },
  1108. {
  1109. "name": "doctrine/migrations",
  1110. "version": "3.8.0",
  1111. "source": {
  1112. "type": "git",
  1113. "url": "https://github.com/doctrine/migrations.git",
  1114. "reference": "535a70dcbd88b8c6ba945be050977457f4f4c06c"
  1115. },
  1116. "dist": {
  1117. "type": "zip",
  1118. "url": "https://api.github.com/repos/doctrine/migrations/zipball/535a70dcbd88b8c6ba945be050977457f4f4c06c",
  1119. "reference": "535a70dcbd88b8c6ba945be050977457f4f4c06c",
  1120. "shasum": ""
  1121. },
  1122. "require": {
  1123. "composer-runtime-api": "^2",
  1124. "doctrine/dbal": "^3.6 || ^4",
  1125. "doctrine/deprecations": "^0.5.3 || ^1",
  1126. "doctrine/event-manager": "^1.2 || ^2.0",
  1127. "php": "^8.1",
  1128. "psr/log": "^1.1.3 || ^2 || ^3",
  1129. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1130. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  1131. "symfony/var-exporter": "^6.2 || ^7.0"
  1132. },
  1133. "conflict": {
  1134. "doctrine/orm": "<2.12 || >=4"
  1135. },
  1136. "require-dev": {
  1137. "doctrine/coding-standard": "^12",
  1138. "doctrine/orm": "^2.13 || ^3",
  1139. "doctrine/persistence": "^2 || ^3",
  1140. "doctrine/sql-formatter": "^1.0",
  1141. "ext-pdo_sqlite": "*",
  1142. "phpstan/phpstan": "^1.10",
  1143. "phpstan/phpstan-deprecation-rules": "^1.1",
  1144. "phpstan/phpstan-phpunit": "^1.3",
  1145. "phpstan/phpstan-strict-rules": "^1.4",
  1146. "phpstan/phpstan-symfony": "^1.3",
  1147. "phpunit/phpunit": "^10.3",
  1148. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1149. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1150. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1151. },
  1152. "suggest": {
  1153. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1154. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1155. },
  1156. "bin": [
  1157. "bin/doctrine-migrations"
  1158. ],
  1159. "type": "library",
  1160. "autoload": {
  1161. "psr-4": {
  1162. "Doctrine\\Migrations\\": "src"
  1163. }
  1164. },
  1165. "notification-url": "https://packagist.org/downloads/",
  1166. "license": [
  1167. "MIT"
  1168. ],
  1169. "authors": [
  1170. {
  1171. "name": "Benjamin Eberlei",
  1172. "email": "kontakt@beberlei.de"
  1173. },
  1174. {
  1175. "name": "Jonathan Wage",
  1176. "email": "jonwage@gmail.com"
  1177. },
  1178. {
  1179. "name": "Michael Simonson",
  1180. "email": "contact@mikesimonson.com"
  1181. }
  1182. ],
  1183. "description": "PHP Doctrine Migrations project offer additional functionality on top of the database abstraction layer (DBAL) for versioning your database schema and easily deploying changes to it. It is a very easy to use and a powerful tool.",
  1184. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1185. "keywords": [
  1186. "database",
  1187. "dbal",
  1188. "migrations"
  1189. ],
  1190. "support": {
  1191. "issues": "https://github.com/doctrine/migrations/issues",
  1192. "source": "https://github.com/doctrine/migrations/tree/3.8.0"
  1193. },
  1194. "funding": [
  1195. {
  1196. "url": "https://www.doctrine-project.org/sponsorship.html",
  1197. "type": "custom"
  1198. },
  1199. {
  1200. "url": "https://www.patreon.com/phpdoctrine",
  1201. "type": "patreon"
  1202. },
  1203. {
  1204. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1205. "type": "tidelift"
  1206. }
  1207. ],
  1208. "time": "2024-06-26T14:12:46+00:00"
  1209. },
  1210. {
  1211. "name": "doctrine/orm",
  1212. "version": "3.2.1",
  1213. "source": {
  1214. "type": "git",
  1215. "url": "https://github.com/doctrine/orm.git",
  1216. "reference": "722cea6536775206e81744542b36fa7c9a4ea3e5"
  1217. },
  1218. "dist": {
  1219. "type": "zip",
  1220. "url": "https://api.github.com/repos/doctrine/orm/zipball/722cea6536775206e81744542b36fa7c9a4ea3e5",
  1221. "reference": "722cea6536775206e81744542b36fa7c9a4ea3e5",
  1222. "shasum": ""
  1223. },
  1224. "require": {
  1225. "composer-runtime-api": "^2",
  1226. "doctrine/collections": "^2.2",
  1227. "doctrine/dbal": "^3.8.2 || ^4",
  1228. "doctrine/deprecations": "^0.5.3 || ^1",
  1229. "doctrine/event-manager": "^1.2 || ^2",
  1230. "doctrine/inflector": "^1.4 || ^2.0",
  1231. "doctrine/instantiator": "^1.3 || ^2",
  1232. "doctrine/lexer": "^3",
  1233. "doctrine/persistence": "^3.3.1",
  1234. "ext-ctype": "*",
  1235. "php": "^8.1",
  1236. "psr/cache": "^1 || ^2 || ^3",
  1237. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1238. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1239. },
  1240. "require-dev": {
  1241. "doctrine/coding-standard": "^12.0",
  1242. "phpbench/phpbench": "^1.0",
  1243. "phpstan/phpstan": "1.11.1",
  1244. "phpunit/phpunit": "^10.4.0",
  1245. "psr/log": "^1 || ^2 || ^3",
  1246. "squizlabs/php_codesniffer": "3.7.2",
  1247. "symfony/cache": "^5.4 || ^6.2 || ^7.0",
  1248. "vimeo/psalm": "5.24.0"
  1249. },
  1250. "suggest": {
  1251. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1252. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1253. },
  1254. "type": "library",
  1255. "autoload": {
  1256. "psr-4": {
  1257. "Doctrine\\ORM\\": "src"
  1258. }
  1259. },
  1260. "notification-url": "https://packagist.org/downloads/",
  1261. "license": [
  1262. "MIT"
  1263. ],
  1264. "authors": [
  1265. {
  1266. "name": "Guilherme Blanco",
  1267. "email": "guilhermeblanco@gmail.com"
  1268. },
  1269. {
  1270. "name": "Roman Borschel",
  1271. "email": "roman@code-factory.org"
  1272. },
  1273. {
  1274. "name": "Benjamin Eberlei",
  1275. "email": "kontakt@beberlei.de"
  1276. },
  1277. {
  1278. "name": "Jonathan Wage",
  1279. "email": "jonwage@gmail.com"
  1280. },
  1281. {
  1282. "name": "Marco Pivetta",
  1283. "email": "ocramius@gmail.com"
  1284. }
  1285. ],
  1286. "description": "Object-Relational-Mapper for PHP",
  1287. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1288. "keywords": [
  1289. "database",
  1290. "orm"
  1291. ],
  1292. "support": {
  1293. "issues": "https://github.com/doctrine/orm/issues",
  1294. "source": "https://github.com/doctrine/orm/tree/3.2.1"
  1295. },
  1296. "time": "2024-06-26T21:48:58+00:00"
  1297. },
  1298. {
  1299. "name": "doctrine/persistence",
  1300. "version": "3.3.3",
  1301. "source": {
  1302. "type": "git",
  1303. "url": "https://github.com/doctrine/persistence.git",
  1304. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1305. },
  1306. "dist": {
  1307. "type": "zip",
  1308. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1309. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1310. "shasum": ""
  1311. },
  1312. "require": {
  1313. "doctrine/event-manager": "^1 || ^2",
  1314. "php": "^7.2 || ^8.0",
  1315. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1316. },
  1317. "conflict": {
  1318. "doctrine/common": "<2.10"
  1319. },
  1320. "require-dev": {
  1321. "doctrine/coding-standard": "^12",
  1322. "doctrine/common": "^3.0",
  1323. "phpstan/phpstan": "1.11.1",
  1324. "phpstan/phpstan-phpunit": "^1",
  1325. "phpstan/phpstan-strict-rules": "^1.1",
  1326. "phpunit/phpunit": "^8.5 || ^9.5",
  1327. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1328. "vimeo/psalm": "4.30.0 || 5.24.0"
  1329. },
  1330. "type": "library",
  1331. "autoload": {
  1332. "psr-4": {
  1333. "Doctrine\\Persistence\\": "src/Persistence"
  1334. }
  1335. },
  1336. "notification-url": "https://packagist.org/downloads/",
  1337. "license": [
  1338. "MIT"
  1339. ],
  1340. "authors": [
  1341. {
  1342. "name": "Guilherme Blanco",
  1343. "email": "guilhermeblanco@gmail.com"
  1344. },
  1345. {
  1346. "name": "Roman Borschel",
  1347. "email": "roman@code-factory.org"
  1348. },
  1349. {
  1350. "name": "Benjamin Eberlei",
  1351. "email": "kontakt@beberlei.de"
  1352. },
  1353. {
  1354. "name": "Jonathan Wage",
  1355. "email": "jonwage@gmail.com"
  1356. },
  1357. {
  1358. "name": "Johannes Schmitt",
  1359. "email": "schmittjoh@gmail.com"
  1360. },
  1361. {
  1362. "name": "Marco Pivetta",
  1363. "email": "ocramius@gmail.com"
  1364. }
  1365. ],
  1366. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1367. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1368. "keywords": [
  1369. "mapper",
  1370. "object",
  1371. "odm",
  1372. "orm",
  1373. "persistence"
  1374. ],
  1375. "support": {
  1376. "issues": "https://github.com/doctrine/persistence/issues",
  1377. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1378. },
  1379. "funding": [
  1380. {
  1381. "url": "https://www.doctrine-project.org/sponsorship.html",
  1382. "type": "custom"
  1383. },
  1384. {
  1385. "url": "https://www.patreon.com/phpdoctrine",
  1386. "type": "patreon"
  1387. },
  1388. {
  1389. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1390. "type": "tidelift"
  1391. }
  1392. ],
  1393. "time": "2024-06-20T10:14:30+00:00"
  1394. },
  1395. {
  1396. "name": "doctrine/sql-formatter",
  1397. "version": "1.4.0",
  1398. "source": {
  1399. "type": "git",
  1400. "url": "https://github.com/doctrine/sql-formatter.git",
  1401. "reference": "d1ac84aef745c69ea034929eb6d65a6908b675cc"
  1402. },
  1403. "dist": {
  1404. "type": "zip",
  1405. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/d1ac84aef745c69ea034929eb6d65a6908b675cc",
  1406. "reference": "d1ac84aef745c69ea034929eb6d65a6908b675cc",
  1407. "shasum": ""
  1408. },
  1409. "require": {
  1410. "php": "^8.1"
  1411. },
  1412. "require-dev": {
  1413. "doctrine/coding-standard": "^12",
  1414. "phpstan/phpstan": "^1.10",
  1415. "phpunit/phpunit": "^10.5",
  1416. "vimeo/psalm": "^5.24"
  1417. },
  1418. "bin": [
  1419. "bin/sql-formatter"
  1420. ],
  1421. "type": "library",
  1422. "autoload": {
  1423. "psr-4": {
  1424. "Doctrine\\SqlFormatter\\": "src"
  1425. }
  1426. },
  1427. "notification-url": "https://packagist.org/downloads/",
  1428. "license": [
  1429. "MIT"
  1430. ],
  1431. "authors": [
  1432. {
  1433. "name": "Jeremy Dorn",
  1434. "email": "jeremy@jeremydorn.com",
  1435. "homepage": "https://jeremydorn.com/"
  1436. }
  1437. ],
  1438. "description": "a PHP SQL highlighting library",
  1439. "homepage": "https://github.com/doctrine/sql-formatter/",
  1440. "keywords": [
  1441. "highlight",
  1442. "sql"
  1443. ],
  1444. "support": {
  1445. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1446. "source": "https://github.com/doctrine/sql-formatter/tree/1.4.0"
  1447. },
  1448. "time": "2024-05-08T08:12:09+00:00"
  1449. },
  1450. {
  1451. "name": "egulias/email-validator",
  1452. "version": "4.0.2",
  1453. "source": {
  1454. "type": "git",
  1455. "url": "https://github.com/egulias/EmailValidator.git",
  1456. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1457. },
  1458. "dist": {
  1459. "type": "zip",
  1460. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1461. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1462. "shasum": ""
  1463. },
  1464. "require": {
  1465. "doctrine/lexer": "^2.0 || ^3.0",
  1466. "php": ">=8.1",
  1467. "symfony/polyfill-intl-idn": "^1.26"
  1468. },
  1469. "require-dev": {
  1470. "phpunit/phpunit": "^10.2",
  1471. "vimeo/psalm": "^5.12"
  1472. },
  1473. "suggest": {
  1474. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1475. },
  1476. "type": "library",
  1477. "extra": {
  1478. "branch-alias": {
  1479. "dev-master": "4.0.x-dev"
  1480. }
  1481. },
  1482. "autoload": {
  1483. "psr-4": {
  1484. "Egulias\\EmailValidator\\": "src"
  1485. }
  1486. },
  1487. "notification-url": "https://packagist.org/downloads/",
  1488. "license": [
  1489. "MIT"
  1490. ],
  1491. "authors": [
  1492. {
  1493. "name": "Eduardo Gulias Davis"
  1494. }
  1495. ],
  1496. "description": "A library for validating emails against several RFCs",
  1497. "homepage": "https://github.com/egulias/EmailValidator",
  1498. "keywords": [
  1499. "email",
  1500. "emailvalidation",
  1501. "emailvalidator",
  1502. "validation",
  1503. "validator"
  1504. ],
  1505. "support": {
  1506. "issues": "https://github.com/egulias/EmailValidator/issues",
  1507. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1508. },
  1509. "funding": [
  1510. {
  1511. "url": "https://github.com/egulias",
  1512. "type": "github"
  1513. }
  1514. ],
  1515. "time": "2023-10-06T06:47:41+00:00"
  1516. },
  1517. {
  1518. "name": "league/commonmark",
  1519. "version": "2.5.1",
  1520. "source": {
  1521. "type": "git",
  1522. "url": "https://github.com/thephpleague/commonmark.git",
  1523. "reference": "ac815920de0eff6de947eac0a6a94e5ed0fb147c"
  1524. },
  1525. "dist": {
  1526. "type": "zip",
  1527. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/ac815920de0eff6de947eac0a6a94e5ed0fb147c",
  1528. "reference": "ac815920de0eff6de947eac0a6a94e5ed0fb147c",
  1529. "shasum": ""
  1530. },
  1531. "require": {
  1532. "ext-mbstring": "*",
  1533. "league/config": "^1.1.1",
  1534. "php": "^7.4 || ^8.0",
  1535. "psr/event-dispatcher": "^1.0",
  1536. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1537. "symfony/polyfill-php80": "^1.16"
  1538. },
  1539. "require-dev": {
  1540. "cebe/markdown": "^1.0",
  1541. "commonmark/cmark": "0.31.0",
  1542. "commonmark/commonmark.js": "0.31.0",
  1543. "composer/package-versions-deprecated": "^1.8",
  1544. "embed/embed": "^4.4",
  1545. "erusev/parsedown": "^1.0",
  1546. "ext-json": "*",
  1547. "github/gfm": "0.29.0",
  1548. "michelf/php-markdown": "^1.4 || ^2.0",
  1549. "nyholm/psr7": "^1.5",
  1550. "phpstan/phpstan": "^1.8.2",
  1551. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1552. "scrutinizer/ocular": "^1.8.1",
  1553. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  1554. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  1555. "unleashedtech/php-coding-standard": "^3.1.1",
  1556. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1557. },
  1558. "suggest": {
  1559. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1560. },
  1561. "type": "library",
  1562. "extra": {
  1563. "branch-alias": {
  1564. "dev-main": "2.6-dev"
  1565. }
  1566. },
  1567. "autoload": {
  1568. "psr-4": {
  1569. "League\\CommonMark\\": "src"
  1570. }
  1571. },
  1572. "notification-url": "https://packagist.org/downloads/",
  1573. "license": [
  1574. "BSD-3-Clause"
  1575. ],
  1576. "authors": [
  1577. {
  1578. "name": "Colin O'Dell",
  1579. "email": "colinodell@gmail.com",
  1580. "homepage": "https://www.colinodell.com",
  1581. "role": "Lead Developer"
  1582. }
  1583. ],
  1584. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1585. "homepage": "https://commonmark.thephpleague.com",
  1586. "keywords": [
  1587. "commonmark",
  1588. "flavored",
  1589. "gfm",
  1590. "github",
  1591. "github-flavored",
  1592. "markdown",
  1593. "md",
  1594. "parser"
  1595. ],
  1596. "support": {
  1597. "docs": "https://commonmark.thephpleague.com/",
  1598. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1599. "issues": "https://github.com/thephpleague/commonmark/issues",
  1600. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1601. "source": "https://github.com/thephpleague/commonmark"
  1602. },
  1603. "funding": [
  1604. {
  1605. "url": "https://www.colinodell.com/sponsor",
  1606. "type": "custom"
  1607. },
  1608. {
  1609. "url": "https://www.paypal.me/colinpodell/10.00",
  1610. "type": "custom"
  1611. },
  1612. {
  1613. "url": "https://github.com/colinodell",
  1614. "type": "github"
  1615. },
  1616. {
  1617. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1618. "type": "tidelift"
  1619. }
  1620. ],
  1621. "time": "2024-07-24T12:52:09+00:00"
  1622. },
  1623. {
  1624. "name": "league/config",
  1625. "version": "v1.2.0",
  1626. "source": {
  1627. "type": "git",
  1628. "url": "https://github.com/thephpleague/config.git",
  1629. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1630. },
  1631. "dist": {
  1632. "type": "zip",
  1633. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1634. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1635. "shasum": ""
  1636. },
  1637. "require": {
  1638. "dflydev/dot-access-data": "^3.0.1",
  1639. "nette/schema": "^1.2",
  1640. "php": "^7.4 || ^8.0"
  1641. },
  1642. "require-dev": {
  1643. "phpstan/phpstan": "^1.8.2",
  1644. "phpunit/phpunit": "^9.5.5",
  1645. "scrutinizer/ocular": "^1.8.1",
  1646. "unleashedtech/php-coding-standard": "^3.1",
  1647. "vimeo/psalm": "^4.7.3"
  1648. },
  1649. "type": "library",
  1650. "extra": {
  1651. "branch-alias": {
  1652. "dev-main": "1.2-dev"
  1653. }
  1654. },
  1655. "autoload": {
  1656. "psr-4": {
  1657. "League\\Config\\": "src"
  1658. }
  1659. },
  1660. "notification-url": "https://packagist.org/downloads/",
  1661. "license": [
  1662. "BSD-3-Clause"
  1663. ],
  1664. "authors": [
  1665. {
  1666. "name": "Colin O'Dell",
  1667. "email": "colinodell@gmail.com",
  1668. "homepage": "https://www.colinodell.com",
  1669. "role": "Lead Developer"
  1670. }
  1671. ],
  1672. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1673. "homepage": "https://config.thephpleague.com",
  1674. "keywords": [
  1675. "array",
  1676. "config",
  1677. "configuration",
  1678. "dot",
  1679. "dot-access",
  1680. "nested",
  1681. "schema"
  1682. ],
  1683. "support": {
  1684. "docs": "https://config.thephpleague.com/",
  1685. "issues": "https://github.com/thephpleague/config/issues",
  1686. "rss": "https://github.com/thephpleague/config/releases.atom",
  1687. "source": "https://github.com/thephpleague/config"
  1688. },
  1689. "funding": [
  1690. {
  1691. "url": "https://www.colinodell.com/sponsor",
  1692. "type": "custom"
  1693. },
  1694. {
  1695. "url": "https://www.paypal.me/colinpodell/10.00",
  1696. "type": "custom"
  1697. },
  1698. {
  1699. "url": "https://github.com/colinodell",
  1700. "type": "github"
  1701. }
  1702. ],
  1703. "time": "2022-12-11T20:36:23+00:00"
  1704. },
  1705. {
  1706. "name": "league/uri",
  1707. "version": "7.4.1",
  1708. "source": {
  1709. "type": "git",
  1710. "url": "https://github.com/thephpleague/uri.git",
  1711. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4"
  1712. },
  1713. "dist": {
  1714. "type": "zip",
  1715. "url": "https://api.github.com/repos/thephpleague/uri/zipball/bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  1716. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  1717. "shasum": ""
  1718. },
  1719. "require": {
  1720. "league/uri-interfaces": "^7.3",
  1721. "php": "^8.1"
  1722. },
  1723. "conflict": {
  1724. "league/uri-schemes": "^1.0"
  1725. },
  1726. "suggest": {
  1727. "ext-bcmath": "to improve IPV4 host parsing",
  1728. "ext-fileinfo": "to create Data URI from file contennts",
  1729. "ext-gmp": "to improve IPV4 host parsing",
  1730. "ext-intl": "to handle IDN host with the best performance",
  1731. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  1732. "league/uri-components": "Needed to easily manipulate URI objects components",
  1733. "php-64bit": "to improve IPV4 host parsing",
  1734. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1735. },
  1736. "type": "library",
  1737. "extra": {
  1738. "branch-alias": {
  1739. "dev-master": "7.x-dev"
  1740. }
  1741. },
  1742. "autoload": {
  1743. "psr-4": {
  1744. "League\\Uri\\": ""
  1745. }
  1746. },
  1747. "notification-url": "https://packagist.org/downloads/",
  1748. "license": [
  1749. "MIT"
  1750. ],
  1751. "authors": [
  1752. {
  1753. "name": "Ignace Nyamagana Butera",
  1754. "email": "nyamsprod@gmail.com",
  1755. "homepage": "https://nyamsprod.com"
  1756. }
  1757. ],
  1758. "description": "URI manipulation library",
  1759. "homepage": "https://uri.thephpleague.com",
  1760. "keywords": [
  1761. "data-uri",
  1762. "file-uri",
  1763. "ftp",
  1764. "hostname",
  1765. "http",
  1766. "https",
  1767. "middleware",
  1768. "parse_str",
  1769. "parse_url",
  1770. "psr-7",
  1771. "query-string",
  1772. "querystring",
  1773. "rfc3986",
  1774. "rfc3987",
  1775. "rfc6570",
  1776. "uri",
  1777. "uri-template",
  1778. "url",
  1779. "ws"
  1780. ],
  1781. "support": {
  1782. "docs": "https://uri.thephpleague.com",
  1783. "forum": "https://thephpleague.slack.com",
  1784. "issues": "https://github.com/thephpleague/uri-src/issues",
  1785. "source": "https://github.com/thephpleague/uri/tree/7.4.1"
  1786. },
  1787. "funding": [
  1788. {
  1789. "url": "https://github.com/sponsors/nyamsprod",
  1790. "type": "github"
  1791. }
  1792. ],
  1793. "time": "2024-03-23T07:42:40+00:00"
  1794. },
  1795. {
  1796. "name": "league/uri-interfaces",
  1797. "version": "7.4.1",
  1798. "source": {
  1799. "type": "git",
  1800. "url": "https://github.com/thephpleague/uri-interfaces.git",
  1801. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718"
  1802. },
  1803. "dist": {
  1804. "type": "zip",
  1805. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718",
  1806. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718",
  1807. "shasum": ""
  1808. },
  1809. "require": {
  1810. "ext-filter": "*",
  1811. "php": "^8.1",
  1812. "psr/http-factory": "^1",
  1813. "psr/http-message": "^1.1 || ^2.0"
  1814. },
  1815. "suggest": {
  1816. "ext-bcmath": "to improve IPV4 host parsing",
  1817. "ext-gmp": "to improve IPV4 host parsing",
  1818. "ext-intl": "to handle IDN host with the best performance",
  1819. "php-64bit": "to improve IPV4 host parsing",
  1820. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1821. },
  1822. "type": "library",
  1823. "extra": {
  1824. "branch-alias": {
  1825. "dev-master": "7.x-dev"
  1826. }
  1827. },
  1828. "autoload": {
  1829. "psr-4": {
  1830. "League\\Uri\\": ""
  1831. }
  1832. },
  1833. "notification-url": "https://packagist.org/downloads/",
  1834. "license": [
  1835. "MIT"
  1836. ],
  1837. "authors": [
  1838. {
  1839. "name": "Ignace Nyamagana Butera",
  1840. "email": "nyamsprod@gmail.com",
  1841. "homepage": "https://nyamsprod.com"
  1842. }
  1843. ],
  1844. "description": "Common interfaces and classes for URI representation and interaction",
  1845. "homepage": "https://uri.thephpleague.com",
  1846. "keywords": [
  1847. "data-uri",
  1848. "file-uri",
  1849. "ftp",
  1850. "hostname",
  1851. "http",
  1852. "https",
  1853. "parse_str",
  1854. "parse_url",
  1855. "psr-7",
  1856. "query-string",
  1857. "querystring",
  1858. "rfc3986",
  1859. "rfc3987",
  1860. "rfc6570",
  1861. "uri",
  1862. "url",
  1863. "ws"
  1864. ],
  1865. "support": {
  1866. "docs": "https://uri.thephpleague.com",
  1867. "forum": "https://thephpleague.slack.com",
  1868. "issues": "https://github.com/thephpleague/uri-src/issues",
  1869. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.1"
  1870. },
  1871. "funding": [
  1872. {
  1873. "url": "https://github.com/sponsors/nyamsprod",
  1874. "type": "github"
  1875. }
  1876. ],
  1877. "time": "2024-03-23T07:42:40+00:00"
  1878. },
  1879. {
  1880. "name": "masterminds/html5",
  1881. "version": "2.9.0",
  1882. "source": {
  1883. "type": "git",
  1884. "url": "https://github.com/Masterminds/html5-php.git",
  1885. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  1886. },
  1887. "dist": {
  1888. "type": "zip",
  1889. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  1890. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  1891. "shasum": ""
  1892. },
  1893. "require": {
  1894. "ext-dom": "*",
  1895. "php": ">=5.3.0"
  1896. },
  1897. "require-dev": {
  1898. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  1899. },
  1900. "type": "library",
  1901. "extra": {
  1902. "branch-alias": {
  1903. "dev-master": "2.7-dev"
  1904. }
  1905. },
  1906. "autoload": {
  1907. "psr-4": {
  1908. "Masterminds\\": "src"
  1909. }
  1910. },
  1911. "notification-url": "https://packagist.org/downloads/",
  1912. "license": [
  1913. "MIT"
  1914. ],
  1915. "authors": [
  1916. {
  1917. "name": "Matt Butcher",
  1918. "email": "technosophos@gmail.com"
  1919. },
  1920. {
  1921. "name": "Matt Farina",
  1922. "email": "matt@mattfarina.com"
  1923. },
  1924. {
  1925. "name": "Asmir Mustafic",
  1926. "email": "goetas@gmail.com"
  1927. }
  1928. ],
  1929. "description": "An HTML5 parser and serializer.",
  1930. "homepage": "http://masterminds.github.io/html5-php",
  1931. "keywords": [
  1932. "HTML5",
  1933. "dom",
  1934. "html",
  1935. "parser",
  1936. "querypath",
  1937. "serializer",
  1938. "xml"
  1939. ],
  1940. "support": {
  1941. "issues": "https://github.com/Masterminds/html5-php/issues",
  1942. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  1943. },
  1944. "time": "2024-03-31T07:05:07+00:00"
  1945. },
  1946. {
  1947. "name": "monolog/monolog",
  1948. "version": "3.7.0",
  1949. "source": {
  1950. "type": "git",
  1951. "url": "https://github.com/Seldaek/monolog.git",
  1952. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  1953. },
  1954. "dist": {
  1955. "type": "zip",
  1956. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  1957. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  1958. "shasum": ""
  1959. },
  1960. "require": {
  1961. "php": ">=8.1",
  1962. "psr/log": "^2.0 || ^3.0"
  1963. },
  1964. "provide": {
  1965. "psr/log-implementation": "3.0.0"
  1966. },
  1967. "require-dev": {
  1968. "aws/aws-sdk-php": "^3.0",
  1969. "doctrine/couchdb": "~1.0@dev",
  1970. "elasticsearch/elasticsearch": "^7 || ^8",
  1971. "ext-json": "*",
  1972. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1973. "guzzlehttp/guzzle": "^7.4.5",
  1974. "guzzlehttp/psr7": "^2.2",
  1975. "mongodb/mongodb": "^1.8",
  1976. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1977. "phpstan/phpstan": "^1.9",
  1978. "phpstan/phpstan-deprecation-rules": "^1.0",
  1979. "phpstan/phpstan-strict-rules": "^1.4",
  1980. "phpunit/phpunit": "^10.5.17",
  1981. "predis/predis": "^1.1 || ^2",
  1982. "ruflin/elastica": "^7",
  1983. "symfony/mailer": "^5.4 || ^6",
  1984. "symfony/mime": "^5.4 || ^6"
  1985. },
  1986. "suggest": {
  1987. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1988. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1989. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1990. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1991. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1992. "ext-mbstring": "Allow to work properly with unicode symbols",
  1993. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1994. "ext-openssl": "Required to send log messages using SSL",
  1995. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1996. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1997. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1998. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1999. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2000. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2001. },
  2002. "type": "library",
  2003. "extra": {
  2004. "branch-alias": {
  2005. "dev-main": "3.x-dev"
  2006. }
  2007. },
  2008. "autoload": {
  2009. "psr-4": {
  2010. "Monolog\\": "src/Monolog"
  2011. }
  2012. },
  2013. "notification-url": "https://packagist.org/downloads/",
  2014. "license": [
  2015. "MIT"
  2016. ],
  2017. "authors": [
  2018. {
  2019. "name": "Jordi Boggiano",
  2020. "email": "j.boggiano@seld.be",
  2021. "homepage": "https://seld.be"
  2022. }
  2023. ],
  2024. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2025. "homepage": "https://github.com/Seldaek/monolog",
  2026. "keywords": [
  2027. "log",
  2028. "logging",
  2029. "psr-3"
  2030. ],
  2031. "support": {
  2032. "issues": "https://github.com/Seldaek/monolog/issues",
  2033. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  2034. },
  2035. "funding": [
  2036. {
  2037. "url": "https://github.com/Seldaek",
  2038. "type": "github"
  2039. },
  2040. {
  2041. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2042. "type": "tidelift"
  2043. }
  2044. ],
  2045. "time": "2024-06-28T09:40:51+00:00"
  2046. },
  2047. {
  2048. "name": "nette/schema",
  2049. "version": "v1.3.0",
  2050. "source": {
  2051. "type": "git",
  2052. "url": "https://github.com/nette/schema.git",
  2053. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188"
  2054. },
  2055. "dist": {
  2056. "type": "zip",
  2057. "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  2058. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  2059. "shasum": ""
  2060. },
  2061. "require": {
  2062. "nette/utils": "^4.0",
  2063. "php": "8.1 - 8.3"
  2064. },
  2065. "require-dev": {
  2066. "nette/tester": "^2.4",
  2067. "phpstan/phpstan-nette": "^1.0",
  2068. "tracy/tracy": "^2.8"
  2069. },
  2070. "type": "library",
  2071. "extra": {
  2072. "branch-alias": {
  2073. "dev-master": "1.3-dev"
  2074. }
  2075. },
  2076. "autoload": {
  2077. "classmap": [
  2078. "src/"
  2079. ]
  2080. },
  2081. "notification-url": "https://packagist.org/downloads/",
  2082. "license": [
  2083. "BSD-3-Clause",
  2084. "GPL-2.0-only",
  2085. "GPL-3.0-only"
  2086. ],
  2087. "authors": [
  2088. {
  2089. "name": "David Grudl",
  2090. "homepage": "https://davidgrudl.com"
  2091. },
  2092. {
  2093. "name": "Nette Community",
  2094. "homepage": "https://nette.org/contributors"
  2095. }
  2096. ],
  2097. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2098. "homepage": "https://nette.org",
  2099. "keywords": [
  2100. "config",
  2101. "nette"
  2102. ],
  2103. "support": {
  2104. "issues": "https://github.com/nette/schema/issues",
  2105. "source": "https://github.com/nette/schema/tree/v1.3.0"
  2106. },
  2107. "time": "2023-12-11T11:54:22+00:00"
  2108. },
  2109. {
  2110. "name": "nette/utils",
  2111. "version": "v4.0.4",
  2112. "source": {
  2113. "type": "git",
  2114. "url": "https://github.com/nette/utils.git",
  2115. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218"
  2116. },
  2117. "dist": {
  2118. "type": "zip",
  2119. "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  2120. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  2121. "shasum": ""
  2122. },
  2123. "require": {
  2124. "php": ">=8.0 <8.4"
  2125. },
  2126. "conflict": {
  2127. "nette/finder": "<3",
  2128. "nette/schema": "<1.2.2"
  2129. },
  2130. "require-dev": {
  2131. "jetbrains/phpstorm-attributes": "dev-master",
  2132. "nette/tester": "^2.5",
  2133. "phpstan/phpstan": "^1.0",
  2134. "tracy/tracy": "^2.9"
  2135. },
  2136. "suggest": {
  2137. "ext-gd": "to use Image",
  2138. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2139. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2140. "ext-json": "to use Nette\\Utils\\Json",
  2141. "ext-mbstring": "to use Strings::lower() etc...",
  2142. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2143. },
  2144. "type": "library",
  2145. "extra": {
  2146. "branch-alias": {
  2147. "dev-master": "4.0-dev"
  2148. }
  2149. },
  2150. "autoload": {
  2151. "classmap": [
  2152. "src/"
  2153. ]
  2154. },
  2155. "notification-url": "https://packagist.org/downloads/",
  2156. "license": [
  2157. "BSD-3-Clause",
  2158. "GPL-2.0-only",
  2159. "GPL-3.0-only"
  2160. ],
  2161. "authors": [
  2162. {
  2163. "name": "David Grudl",
  2164. "homepage": "https://davidgrudl.com"
  2165. },
  2166. {
  2167. "name": "Nette Community",
  2168. "homepage": "https://nette.org/contributors"
  2169. }
  2170. ],
  2171. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2172. "homepage": "https://nette.org",
  2173. "keywords": [
  2174. "array",
  2175. "core",
  2176. "datetime",
  2177. "images",
  2178. "json",
  2179. "nette",
  2180. "paginator",
  2181. "password",
  2182. "slugify",
  2183. "string",
  2184. "unicode",
  2185. "utf-8",
  2186. "utility",
  2187. "validation"
  2188. ],
  2189. "support": {
  2190. "issues": "https://github.com/nette/utils/issues",
  2191. "source": "https://github.com/nette/utils/tree/v4.0.4"
  2192. },
  2193. "time": "2024-01-17T16:50:36+00:00"
  2194. },
  2195. {
  2196. "name": "phpdocumentor/reflection-common",
  2197. "version": "2.2.0",
  2198. "source": {
  2199. "type": "git",
  2200. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2201. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2202. },
  2203. "dist": {
  2204. "type": "zip",
  2205. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2206. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2207. "shasum": ""
  2208. },
  2209. "require": {
  2210. "php": "^7.2 || ^8.0"
  2211. },
  2212. "type": "library",
  2213. "extra": {
  2214. "branch-alias": {
  2215. "dev-2.x": "2.x-dev"
  2216. }
  2217. },
  2218. "autoload": {
  2219. "psr-4": {
  2220. "phpDocumentor\\Reflection\\": "src/"
  2221. }
  2222. },
  2223. "notification-url": "https://packagist.org/downloads/",
  2224. "license": [
  2225. "MIT"
  2226. ],
  2227. "authors": [
  2228. {
  2229. "name": "Jaap van Otterdijk",
  2230. "email": "opensource@ijaap.nl"
  2231. }
  2232. ],
  2233. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2234. "homepage": "http://www.phpdoc.org",
  2235. "keywords": [
  2236. "FQSEN",
  2237. "phpDocumentor",
  2238. "phpdoc",
  2239. "reflection",
  2240. "static analysis"
  2241. ],
  2242. "support": {
  2243. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2244. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2245. },
  2246. "time": "2020-06-27T09:03:43+00:00"
  2247. },
  2248. {
  2249. "name": "phpdocumentor/reflection-docblock",
  2250. "version": "5.4.1",
  2251. "source": {
  2252. "type": "git",
  2253. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2254. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c"
  2255. },
  2256. "dist": {
  2257. "type": "zip",
  2258. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  2259. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  2260. "shasum": ""
  2261. },
  2262. "require": {
  2263. "doctrine/deprecations": "^1.1",
  2264. "ext-filter": "*",
  2265. "php": "^7.4 || ^8.0",
  2266. "phpdocumentor/reflection-common": "^2.2",
  2267. "phpdocumentor/type-resolver": "^1.7",
  2268. "phpstan/phpdoc-parser": "^1.7",
  2269. "webmozart/assert": "^1.9.1"
  2270. },
  2271. "require-dev": {
  2272. "mockery/mockery": "~1.3.5",
  2273. "phpstan/extension-installer": "^1.1",
  2274. "phpstan/phpstan": "^1.8",
  2275. "phpstan/phpstan-mockery": "^1.1",
  2276. "phpstan/phpstan-webmozart-assert": "^1.2",
  2277. "phpunit/phpunit": "^9.5",
  2278. "vimeo/psalm": "^5.13"
  2279. },
  2280. "type": "library",
  2281. "extra": {
  2282. "branch-alias": {
  2283. "dev-master": "5.x-dev"
  2284. }
  2285. },
  2286. "autoload": {
  2287. "psr-4": {
  2288. "phpDocumentor\\Reflection\\": "src"
  2289. }
  2290. },
  2291. "notification-url": "https://packagist.org/downloads/",
  2292. "license": [
  2293. "MIT"
  2294. ],
  2295. "authors": [
  2296. {
  2297. "name": "Mike van Riel",
  2298. "email": "me@mikevanriel.com"
  2299. },
  2300. {
  2301. "name": "Jaap van Otterdijk",
  2302. "email": "opensource@ijaap.nl"
  2303. }
  2304. ],
  2305. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2306. "support": {
  2307. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2308. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1"
  2309. },
  2310. "time": "2024-05-21T05:55:05+00:00"
  2311. },
  2312. {
  2313. "name": "phpdocumentor/type-resolver",
  2314. "version": "1.8.2",
  2315. "source": {
  2316. "type": "git",
  2317. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2318. "reference": "153ae662783729388a584b4361f2545e4d841e3c"
  2319. },
  2320. "dist": {
  2321. "type": "zip",
  2322. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
  2323. "reference": "153ae662783729388a584b4361f2545e4d841e3c",
  2324. "shasum": ""
  2325. },
  2326. "require": {
  2327. "doctrine/deprecations": "^1.0",
  2328. "php": "^7.3 || ^8.0",
  2329. "phpdocumentor/reflection-common": "^2.0",
  2330. "phpstan/phpdoc-parser": "^1.13"
  2331. },
  2332. "require-dev": {
  2333. "ext-tokenizer": "*",
  2334. "phpbench/phpbench": "^1.2",
  2335. "phpstan/extension-installer": "^1.1",
  2336. "phpstan/phpstan": "^1.8",
  2337. "phpstan/phpstan-phpunit": "^1.1",
  2338. "phpunit/phpunit": "^9.5",
  2339. "rector/rector": "^0.13.9",
  2340. "vimeo/psalm": "^4.25"
  2341. },
  2342. "type": "library",
  2343. "extra": {
  2344. "branch-alias": {
  2345. "dev-1.x": "1.x-dev"
  2346. }
  2347. },
  2348. "autoload": {
  2349. "psr-4": {
  2350. "phpDocumentor\\Reflection\\": "src"
  2351. }
  2352. },
  2353. "notification-url": "https://packagist.org/downloads/",
  2354. "license": [
  2355. "MIT"
  2356. ],
  2357. "authors": [
  2358. {
  2359. "name": "Mike van Riel",
  2360. "email": "me@mikevanriel.com"
  2361. }
  2362. ],
  2363. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2364. "support": {
  2365. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2366. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
  2367. },
  2368. "time": "2024-02-23T11:10:43+00:00"
  2369. },
  2370. {
  2371. "name": "phpstan/phpdoc-parser",
  2372. "version": "1.29.1",
  2373. "source": {
  2374. "type": "git",
  2375. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2376. "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4"
  2377. },
  2378. "dist": {
  2379. "type": "zip",
  2380. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/fcaefacf2d5c417e928405b71b400d4ce10daaf4",
  2381. "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4",
  2382. "shasum": ""
  2383. },
  2384. "require": {
  2385. "php": "^7.2 || ^8.0"
  2386. },
  2387. "require-dev": {
  2388. "doctrine/annotations": "^2.0",
  2389. "nikic/php-parser": "^4.15",
  2390. "php-parallel-lint/php-parallel-lint": "^1.2",
  2391. "phpstan/extension-installer": "^1.0",
  2392. "phpstan/phpstan": "^1.5",
  2393. "phpstan/phpstan-phpunit": "^1.1",
  2394. "phpstan/phpstan-strict-rules": "^1.0",
  2395. "phpunit/phpunit": "^9.5",
  2396. "symfony/process": "^5.2"
  2397. },
  2398. "type": "library",
  2399. "autoload": {
  2400. "psr-4": {
  2401. "PHPStan\\PhpDocParser\\": [
  2402. "src/"
  2403. ]
  2404. }
  2405. },
  2406. "notification-url": "https://packagist.org/downloads/",
  2407. "license": [
  2408. "MIT"
  2409. ],
  2410. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2411. "support": {
  2412. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2413. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.29.1"
  2414. },
  2415. "time": "2024-05-31T08:52:43+00:00"
  2416. },
  2417. {
  2418. "name": "psr/cache",
  2419. "version": "3.0.0",
  2420. "source": {
  2421. "type": "git",
  2422. "url": "https://github.com/php-fig/cache.git",
  2423. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2424. },
  2425. "dist": {
  2426. "type": "zip",
  2427. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2428. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2429. "shasum": ""
  2430. },
  2431. "require": {
  2432. "php": ">=8.0.0"
  2433. },
  2434. "type": "library",
  2435. "extra": {
  2436. "branch-alias": {
  2437. "dev-master": "1.0.x-dev"
  2438. }
  2439. },
  2440. "autoload": {
  2441. "psr-4": {
  2442. "Psr\\Cache\\": "src/"
  2443. }
  2444. },
  2445. "notification-url": "https://packagist.org/downloads/",
  2446. "license": [
  2447. "MIT"
  2448. ],
  2449. "authors": [
  2450. {
  2451. "name": "PHP-FIG",
  2452. "homepage": "https://www.php-fig.org/"
  2453. }
  2454. ],
  2455. "description": "Common interface for caching libraries",
  2456. "keywords": [
  2457. "cache",
  2458. "psr",
  2459. "psr-6"
  2460. ],
  2461. "support": {
  2462. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2463. },
  2464. "time": "2021-02-03T23:26:27+00:00"
  2465. },
  2466. {
  2467. "name": "psr/clock",
  2468. "version": "1.0.0",
  2469. "source": {
  2470. "type": "git",
  2471. "url": "https://github.com/php-fig/clock.git",
  2472. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2473. },
  2474. "dist": {
  2475. "type": "zip",
  2476. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2477. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2478. "shasum": ""
  2479. },
  2480. "require": {
  2481. "php": "^7.0 || ^8.0"
  2482. },
  2483. "type": "library",
  2484. "autoload": {
  2485. "psr-4": {
  2486. "Psr\\Clock\\": "src/"
  2487. }
  2488. },
  2489. "notification-url": "https://packagist.org/downloads/",
  2490. "license": [
  2491. "MIT"
  2492. ],
  2493. "authors": [
  2494. {
  2495. "name": "PHP-FIG",
  2496. "homepage": "https://www.php-fig.org/"
  2497. }
  2498. ],
  2499. "description": "Common interface for reading the clock.",
  2500. "homepage": "https://github.com/php-fig/clock",
  2501. "keywords": [
  2502. "clock",
  2503. "now",
  2504. "psr",
  2505. "psr-20",
  2506. "time"
  2507. ],
  2508. "support": {
  2509. "issues": "https://github.com/php-fig/clock/issues",
  2510. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2511. },
  2512. "time": "2022-11-25T14:36:26+00:00"
  2513. },
  2514. {
  2515. "name": "psr/container",
  2516. "version": "2.0.2",
  2517. "source": {
  2518. "type": "git",
  2519. "url": "https://github.com/php-fig/container.git",
  2520. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2521. },
  2522. "dist": {
  2523. "type": "zip",
  2524. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2525. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2526. "shasum": ""
  2527. },
  2528. "require": {
  2529. "php": ">=7.4.0"
  2530. },
  2531. "type": "library",
  2532. "extra": {
  2533. "branch-alias": {
  2534. "dev-master": "2.0.x-dev"
  2535. }
  2536. },
  2537. "autoload": {
  2538. "psr-4": {
  2539. "Psr\\Container\\": "src/"
  2540. }
  2541. },
  2542. "notification-url": "https://packagist.org/downloads/",
  2543. "license": [
  2544. "MIT"
  2545. ],
  2546. "authors": [
  2547. {
  2548. "name": "PHP-FIG",
  2549. "homepage": "https://www.php-fig.org/"
  2550. }
  2551. ],
  2552. "description": "Common Container Interface (PHP FIG PSR-11)",
  2553. "homepage": "https://github.com/php-fig/container",
  2554. "keywords": [
  2555. "PSR-11",
  2556. "container",
  2557. "container-interface",
  2558. "container-interop",
  2559. "psr"
  2560. ],
  2561. "support": {
  2562. "issues": "https://github.com/php-fig/container/issues",
  2563. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2564. },
  2565. "time": "2021-11-05T16:47:00+00:00"
  2566. },
  2567. {
  2568. "name": "psr/event-dispatcher",
  2569. "version": "1.0.0",
  2570. "source": {
  2571. "type": "git",
  2572. "url": "https://github.com/php-fig/event-dispatcher.git",
  2573. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2574. },
  2575. "dist": {
  2576. "type": "zip",
  2577. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2578. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2579. "shasum": ""
  2580. },
  2581. "require": {
  2582. "php": ">=7.2.0"
  2583. },
  2584. "type": "library",
  2585. "extra": {
  2586. "branch-alias": {
  2587. "dev-master": "1.0.x-dev"
  2588. }
  2589. },
  2590. "autoload": {
  2591. "psr-4": {
  2592. "Psr\\EventDispatcher\\": "src/"
  2593. }
  2594. },
  2595. "notification-url": "https://packagist.org/downloads/",
  2596. "license": [
  2597. "MIT"
  2598. ],
  2599. "authors": [
  2600. {
  2601. "name": "PHP-FIG",
  2602. "homepage": "http://www.php-fig.org/"
  2603. }
  2604. ],
  2605. "description": "Standard interfaces for event handling.",
  2606. "keywords": [
  2607. "events",
  2608. "psr",
  2609. "psr-14"
  2610. ],
  2611. "support": {
  2612. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2613. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2614. },
  2615. "time": "2019-01-08T18:20:26+00:00"
  2616. },
  2617. {
  2618. "name": "psr/http-factory",
  2619. "version": "1.1.0",
  2620. "source": {
  2621. "type": "git",
  2622. "url": "https://github.com/php-fig/http-factory.git",
  2623. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  2624. },
  2625. "dist": {
  2626. "type": "zip",
  2627. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2628. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2629. "shasum": ""
  2630. },
  2631. "require": {
  2632. "php": ">=7.1",
  2633. "psr/http-message": "^1.0 || ^2.0"
  2634. },
  2635. "type": "library",
  2636. "extra": {
  2637. "branch-alias": {
  2638. "dev-master": "1.0.x-dev"
  2639. }
  2640. },
  2641. "autoload": {
  2642. "psr-4": {
  2643. "Psr\\Http\\Message\\": "src/"
  2644. }
  2645. },
  2646. "notification-url": "https://packagist.org/downloads/",
  2647. "license": [
  2648. "MIT"
  2649. ],
  2650. "authors": [
  2651. {
  2652. "name": "PHP-FIG",
  2653. "homepage": "https://www.php-fig.org/"
  2654. }
  2655. ],
  2656. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  2657. "keywords": [
  2658. "factory",
  2659. "http",
  2660. "message",
  2661. "psr",
  2662. "psr-17",
  2663. "psr-7",
  2664. "request",
  2665. "response"
  2666. ],
  2667. "support": {
  2668. "source": "https://github.com/php-fig/http-factory"
  2669. },
  2670. "time": "2024-04-15T12:06:14+00:00"
  2671. },
  2672. {
  2673. "name": "psr/http-message",
  2674. "version": "2.0",
  2675. "source": {
  2676. "type": "git",
  2677. "url": "https://github.com/php-fig/http-message.git",
  2678. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  2679. },
  2680. "dist": {
  2681. "type": "zip",
  2682. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2683. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2684. "shasum": ""
  2685. },
  2686. "require": {
  2687. "php": "^7.2 || ^8.0"
  2688. },
  2689. "type": "library",
  2690. "extra": {
  2691. "branch-alias": {
  2692. "dev-master": "2.0.x-dev"
  2693. }
  2694. },
  2695. "autoload": {
  2696. "psr-4": {
  2697. "Psr\\Http\\Message\\": "src/"
  2698. }
  2699. },
  2700. "notification-url": "https://packagist.org/downloads/",
  2701. "license": [
  2702. "MIT"
  2703. ],
  2704. "authors": [
  2705. {
  2706. "name": "PHP-FIG",
  2707. "homepage": "https://www.php-fig.org/"
  2708. }
  2709. ],
  2710. "description": "Common interface for HTTP messages",
  2711. "homepage": "https://github.com/php-fig/http-message",
  2712. "keywords": [
  2713. "http",
  2714. "http-message",
  2715. "psr",
  2716. "psr-7",
  2717. "request",
  2718. "response"
  2719. ],
  2720. "support": {
  2721. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2722. },
  2723. "time": "2023-04-04T09:54:51+00:00"
  2724. },
  2725. {
  2726. "name": "psr/link",
  2727. "version": "2.0.1",
  2728. "source": {
  2729. "type": "git",
  2730. "url": "https://github.com/php-fig/link.git",
  2731. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2732. },
  2733. "dist": {
  2734. "type": "zip",
  2735. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2736. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2737. "shasum": ""
  2738. },
  2739. "require": {
  2740. "php": ">=8.0.0"
  2741. },
  2742. "suggest": {
  2743. "fig/link-util": "Provides some useful PSR-13 utilities"
  2744. },
  2745. "type": "library",
  2746. "extra": {
  2747. "branch-alias": {
  2748. "dev-master": "2.0.x-dev"
  2749. }
  2750. },
  2751. "autoload": {
  2752. "psr-4": {
  2753. "Psr\\Link\\": "src/"
  2754. }
  2755. },
  2756. "notification-url": "https://packagist.org/downloads/",
  2757. "license": [
  2758. "MIT"
  2759. ],
  2760. "authors": [
  2761. {
  2762. "name": "PHP-FIG",
  2763. "homepage": "http://www.php-fig.org/"
  2764. }
  2765. ],
  2766. "description": "Common interfaces for HTTP links",
  2767. "homepage": "https://github.com/php-fig/link",
  2768. "keywords": [
  2769. "http",
  2770. "http-link",
  2771. "link",
  2772. "psr",
  2773. "psr-13",
  2774. "rest"
  2775. ],
  2776. "support": {
  2777. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2778. },
  2779. "time": "2021-03-11T23:00:27+00:00"
  2780. },
  2781. {
  2782. "name": "psr/log",
  2783. "version": "3.0.0",
  2784. "source": {
  2785. "type": "git",
  2786. "url": "https://github.com/php-fig/log.git",
  2787. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  2788. },
  2789. "dist": {
  2790. "type": "zip",
  2791. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2792. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2793. "shasum": ""
  2794. },
  2795. "require": {
  2796. "php": ">=8.0.0"
  2797. },
  2798. "type": "library",
  2799. "extra": {
  2800. "branch-alias": {
  2801. "dev-master": "3.x-dev"
  2802. }
  2803. },
  2804. "autoload": {
  2805. "psr-4": {
  2806. "Psr\\Log\\": "src"
  2807. }
  2808. },
  2809. "notification-url": "https://packagist.org/downloads/",
  2810. "license": [
  2811. "MIT"
  2812. ],
  2813. "authors": [
  2814. {
  2815. "name": "PHP-FIG",
  2816. "homepage": "https://www.php-fig.org/"
  2817. }
  2818. ],
  2819. "description": "Common interface for logging libraries",
  2820. "homepage": "https://github.com/php-fig/log",
  2821. "keywords": [
  2822. "log",
  2823. "psr",
  2824. "psr-3"
  2825. ],
  2826. "support": {
  2827. "source": "https://github.com/php-fig/log/tree/3.0.0"
  2828. },
  2829. "time": "2021-07-14T16:46:02+00:00"
  2830. },
  2831. {
  2832. "name": "symfony/apache-pack",
  2833. "version": "v1.0.1",
  2834. "source": {
  2835. "type": "git",
  2836. "url": "https://github.com/symfony/apache-pack.git",
  2837. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2838. },
  2839. "dist": {
  2840. "type": "zip",
  2841. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2842. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2843. "shasum": ""
  2844. },
  2845. "type": "symfony-pack",
  2846. "notification-url": "https://packagist.org/downloads/",
  2847. "license": [
  2848. "MIT"
  2849. ],
  2850. "description": "A pack for Apache support in Symfony",
  2851. "support": {
  2852. "issues": "https://github.com/symfony/apache-pack/issues",
  2853. "source": "https://github.com/symfony/apache-pack/tree/master"
  2854. },
  2855. "time": "2017-12-12T01:46:35+00:00"
  2856. },
  2857. {
  2858. "name": "symfony/asset",
  2859. "version": "v7.1.1",
  2860. "source": {
  2861. "type": "git",
  2862. "url": "https://github.com/symfony/asset.git",
  2863. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43"
  2864. },
  2865. "dist": {
  2866. "type": "zip",
  2867. "url": "https://api.github.com/repos/symfony/asset/zipball/8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2868. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2869. "shasum": ""
  2870. },
  2871. "require": {
  2872. "php": ">=8.2"
  2873. },
  2874. "conflict": {
  2875. "symfony/http-foundation": "<6.4"
  2876. },
  2877. "require-dev": {
  2878. "symfony/http-client": "^6.4|^7.0",
  2879. "symfony/http-foundation": "^6.4|^7.0",
  2880. "symfony/http-kernel": "^6.4|^7.0"
  2881. },
  2882. "type": "library",
  2883. "autoload": {
  2884. "psr-4": {
  2885. "Symfony\\Component\\Asset\\": ""
  2886. },
  2887. "exclude-from-classmap": [
  2888. "/Tests/"
  2889. ]
  2890. },
  2891. "notification-url": "https://packagist.org/downloads/",
  2892. "license": [
  2893. "MIT"
  2894. ],
  2895. "authors": [
  2896. {
  2897. "name": "Fabien Potencier",
  2898. "email": "fabien@symfony.com"
  2899. },
  2900. {
  2901. "name": "Symfony Community",
  2902. "homepage": "https://symfony.com/contributors"
  2903. }
  2904. ],
  2905. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2906. "homepage": "https://symfony.com",
  2907. "support": {
  2908. "source": "https://github.com/symfony/asset/tree/v7.1.1"
  2909. },
  2910. "funding": [
  2911. {
  2912. "url": "https://symfony.com/sponsor",
  2913. "type": "custom"
  2914. },
  2915. {
  2916. "url": "https://github.com/fabpot",
  2917. "type": "github"
  2918. },
  2919. {
  2920. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2921. "type": "tidelift"
  2922. }
  2923. ],
  2924. "time": "2024-05-31T14:57:53+00:00"
  2925. },
  2926. {
  2927. "name": "symfony/cache",
  2928. "version": "v7.1.3",
  2929. "source": {
  2930. "type": "git",
  2931. "url": "https://github.com/symfony/cache.git",
  2932. "reference": "8ac37acee794372f9732fe8a61a8221f6762148e"
  2933. },
  2934. "dist": {
  2935. "type": "zip",
  2936. "url": "https://api.github.com/repos/symfony/cache/zipball/8ac37acee794372f9732fe8a61a8221f6762148e",
  2937. "reference": "8ac37acee794372f9732fe8a61a8221f6762148e",
  2938. "shasum": ""
  2939. },
  2940. "require": {
  2941. "php": ">=8.2",
  2942. "psr/cache": "^2.0|^3.0",
  2943. "psr/log": "^1.1|^2|^3",
  2944. "symfony/cache-contracts": "^2.5|^3",
  2945. "symfony/deprecation-contracts": "^2.5|^3.0",
  2946. "symfony/service-contracts": "^2.5|^3",
  2947. "symfony/var-exporter": "^6.4|^7.0"
  2948. },
  2949. "conflict": {
  2950. "doctrine/dbal": "<3.6",
  2951. "symfony/dependency-injection": "<6.4",
  2952. "symfony/http-kernel": "<6.4",
  2953. "symfony/var-dumper": "<6.4"
  2954. },
  2955. "provide": {
  2956. "psr/cache-implementation": "2.0|3.0",
  2957. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2958. "symfony/cache-implementation": "1.1|2.0|3.0"
  2959. },
  2960. "require-dev": {
  2961. "cache/integration-tests": "dev-master",
  2962. "doctrine/dbal": "^3.6|^4",
  2963. "predis/predis": "^1.1|^2.0",
  2964. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2965. "symfony/config": "^6.4|^7.0",
  2966. "symfony/dependency-injection": "^6.4|^7.0",
  2967. "symfony/filesystem": "^6.4|^7.0",
  2968. "symfony/http-kernel": "^6.4|^7.0",
  2969. "symfony/messenger": "^6.4|^7.0",
  2970. "symfony/var-dumper": "^6.4|^7.0"
  2971. },
  2972. "type": "library",
  2973. "autoload": {
  2974. "psr-4": {
  2975. "Symfony\\Component\\Cache\\": ""
  2976. },
  2977. "classmap": [
  2978. "Traits/ValueWrapper.php"
  2979. ],
  2980. "exclude-from-classmap": [
  2981. "/Tests/"
  2982. ]
  2983. },
  2984. "notification-url": "https://packagist.org/downloads/",
  2985. "license": [
  2986. "MIT"
  2987. ],
  2988. "authors": [
  2989. {
  2990. "name": "Nicolas Grekas",
  2991. "email": "p@tchwork.com"
  2992. },
  2993. {
  2994. "name": "Symfony Community",
  2995. "homepage": "https://symfony.com/contributors"
  2996. }
  2997. ],
  2998. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2999. "homepage": "https://symfony.com",
  3000. "keywords": [
  3001. "caching",
  3002. "psr6"
  3003. ],
  3004. "support": {
  3005. "source": "https://github.com/symfony/cache/tree/v7.1.3"
  3006. },
  3007. "funding": [
  3008. {
  3009. "url": "https://symfony.com/sponsor",
  3010. "type": "custom"
  3011. },
  3012. {
  3013. "url": "https://github.com/fabpot",
  3014. "type": "github"
  3015. },
  3016. {
  3017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3018. "type": "tidelift"
  3019. }
  3020. ],
  3021. "time": "2024-07-17T06:10:24+00:00"
  3022. },
  3023. {
  3024. "name": "symfony/cache-contracts",
  3025. "version": "v3.5.0",
  3026. "source": {
  3027. "type": "git",
  3028. "url": "https://github.com/symfony/cache-contracts.git",
  3029. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  3030. },
  3031. "dist": {
  3032. "type": "zip",
  3033. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  3034. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  3035. "shasum": ""
  3036. },
  3037. "require": {
  3038. "php": ">=8.1",
  3039. "psr/cache": "^3.0"
  3040. },
  3041. "type": "library",
  3042. "extra": {
  3043. "branch-alias": {
  3044. "dev-main": "3.5-dev"
  3045. },
  3046. "thanks": {
  3047. "name": "symfony/contracts",
  3048. "url": "https://github.com/symfony/contracts"
  3049. }
  3050. },
  3051. "autoload": {
  3052. "psr-4": {
  3053. "Symfony\\Contracts\\Cache\\": ""
  3054. }
  3055. },
  3056. "notification-url": "https://packagist.org/downloads/",
  3057. "license": [
  3058. "MIT"
  3059. ],
  3060. "authors": [
  3061. {
  3062. "name": "Nicolas Grekas",
  3063. "email": "p@tchwork.com"
  3064. },
  3065. {
  3066. "name": "Symfony Community",
  3067. "homepage": "https://symfony.com/contributors"
  3068. }
  3069. ],
  3070. "description": "Generic abstractions related to caching",
  3071. "homepage": "https://symfony.com",
  3072. "keywords": [
  3073. "abstractions",
  3074. "contracts",
  3075. "decoupling",
  3076. "interfaces",
  3077. "interoperability",
  3078. "standards"
  3079. ],
  3080. "support": {
  3081. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  3082. },
  3083. "funding": [
  3084. {
  3085. "url": "https://symfony.com/sponsor",
  3086. "type": "custom"
  3087. },
  3088. {
  3089. "url": "https://github.com/fabpot",
  3090. "type": "github"
  3091. },
  3092. {
  3093. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3094. "type": "tidelift"
  3095. }
  3096. ],
  3097. "time": "2024-04-18T09:32:20+00:00"
  3098. },
  3099. {
  3100. "name": "symfony/clock",
  3101. "version": "v7.1.1",
  3102. "source": {
  3103. "type": "git",
  3104. "url": "https://github.com/symfony/clock.git",
  3105. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  3106. },
  3107. "dist": {
  3108. "type": "zip",
  3109. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  3110. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  3111. "shasum": ""
  3112. },
  3113. "require": {
  3114. "php": ">=8.2",
  3115. "psr/clock": "^1.0",
  3116. "symfony/polyfill-php83": "^1.28"
  3117. },
  3118. "provide": {
  3119. "psr/clock-implementation": "1.0"
  3120. },
  3121. "type": "library",
  3122. "autoload": {
  3123. "files": [
  3124. "Resources/now.php"
  3125. ],
  3126. "psr-4": {
  3127. "Symfony\\Component\\Clock\\": ""
  3128. },
  3129. "exclude-from-classmap": [
  3130. "/Tests/"
  3131. ]
  3132. },
  3133. "notification-url": "https://packagist.org/downloads/",
  3134. "license": [
  3135. "MIT"
  3136. ],
  3137. "authors": [
  3138. {
  3139. "name": "Nicolas Grekas",
  3140. "email": "p@tchwork.com"
  3141. },
  3142. {
  3143. "name": "Symfony Community",
  3144. "homepage": "https://symfony.com/contributors"
  3145. }
  3146. ],
  3147. "description": "Decouples applications from the system clock",
  3148. "homepage": "https://symfony.com",
  3149. "keywords": [
  3150. "clock",
  3151. "psr20",
  3152. "time"
  3153. ],
  3154. "support": {
  3155. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  3156. },
  3157. "funding": [
  3158. {
  3159. "url": "https://symfony.com/sponsor",
  3160. "type": "custom"
  3161. },
  3162. {
  3163. "url": "https://github.com/fabpot",
  3164. "type": "github"
  3165. },
  3166. {
  3167. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3168. "type": "tidelift"
  3169. }
  3170. ],
  3171. "time": "2024-05-31T14:57:53+00:00"
  3172. },
  3173. {
  3174. "name": "symfony/config",
  3175. "version": "v7.1.1",
  3176. "source": {
  3177. "type": "git",
  3178. "url": "https://github.com/symfony/config.git",
  3179. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2"
  3180. },
  3181. "dist": {
  3182. "type": "zip",
  3183. "url": "https://api.github.com/repos/symfony/config/zipball/2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  3184. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  3185. "shasum": ""
  3186. },
  3187. "require": {
  3188. "php": ">=8.2",
  3189. "symfony/deprecation-contracts": "^2.5|^3",
  3190. "symfony/filesystem": "^7.1",
  3191. "symfony/polyfill-ctype": "~1.8"
  3192. },
  3193. "conflict": {
  3194. "symfony/finder": "<6.4",
  3195. "symfony/service-contracts": "<2.5"
  3196. },
  3197. "require-dev": {
  3198. "symfony/event-dispatcher": "^6.4|^7.0",
  3199. "symfony/finder": "^6.4|^7.0",
  3200. "symfony/messenger": "^6.4|^7.0",
  3201. "symfony/service-contracts": "^2.5|^3",
  3202. "symfony/yaml": "^6.4|^7.0"
  3203. },
  3204. "type": "library",
  3205. "autoload": {
  3206. "psr-4": {
  3207. "Symfony\\Component\\Config\\": ""
  3208. },
  3209. "exclude-from-classmap": [
  3210. "/Tests/"
  3211. ]
  3212. },
  3213. "notification-url": "https://packagist.org/downloads/",
  3214. "license": [
  3215. "MIT"
  3216. ],
  3217. "authors": [
  3218. {
  3219. "name": "Fabien Potencier",
  3220. "email": "fabien@symfony.com"
  3221. },
  3222. {
  3223. "name": "Symfony Community",
  3224. "homepage": "https://symfony.com/contributors"
  3225. }
  3226. ],
  3227. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3228. "homepage": "https://symfony.com",
  3229. "support": {
  3230. "source": "https://github.com/symfony/config/tree/v7.1.1"
  3231. },
  3232. "funding": [
  3233. {
  3234. "url": "https://symfony.com/sponsor",
  3235. "type": "custom"
  3236. },
  3237. {
  3238. "url": "https://github.com/fabpot",
  3239. "type": "github"
  3240. },
  3241. {
  3242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3243. "type": "tidelift"
  3244. }
  3245. ],
  3246. "time": "2024-05-31T14:57:53+00:00"
  3247. },
  3248. {
  3249. "name": "symfony/console",
  3250. "version": "v7.1.3",
  3251. "source": {
  3252. "type": "git",
  3253. "url": "https://github.com/symfony/console.git",
  3254. "reference": "cb1dcb30ebc7005c29864ee78adb47b5fb7c3cd9"
  3255. },
  3256. "dist": {
  3257. "type": "zip",
  3258. "url": "https://api.github.com/repos/symfony/console/zipball/cb1dcb30ebc7005c29864ee78adb47b5fb7c3cd9",
  3259. "reference": "cb1dcb30ebc7005c29864ee78adb47b5fb7c3cd9",
  3260. "shasum": ""
  3261. },
  3262. "require": {
  3263. "php": ">=8.2",
  3264. "symfony/polyfill-mbstring": "~1.0",
  3265. "symfony/service-contracts": "^2.5|^3",
  3266. "symfony/string": "^6.4|^7.0"
  3267. },
  3268. "conflict": {
  3269. "symfony/dependency-injection": "<6.4",
  3270. "symfony/dotenv": "<6.4",
  3271. "symfony/event-dispatcher": "<6.4",
  3272. "symfony/lock": "<6.4",
  3273. "symfony/process": "<6.4"
  3274. },
  3275. "provide": {
  3276. "psr/log-implementation": "1.0|2.0|3.0"
  3277. },
  3278. "require-dev": {
  3279. "psr/log": "^1|^2|^3",
  3280. "symfony/config": "^6.4|^7.0",
  3281. "symfony/dependency-injection": "^6.4|^7.0",
  3282. "symfony/event-dispatcher": "^6.4|^7.0",
  3283. "symfony/http-foundation": "^6.4|^7.0",
  3284. "symfony/http-kernel": "^6.4|^7.0",
  3285. "symfony/lock": "^6.4|^7.0",
  3286. "symfony/messenger": "^6.4|^7.0",
  3287. "symfony/process": "^6.4|^7.0",
  3288. "symfony/stopwatch": "^6.4|^7.0",
  3289. "symfony/var-dumper": "^6.4|^7.0"
  3290. },
  3291. "type": "library",
  3292. "autoload": {
  3293. "psr-4": {
  3294. "Symfony\\Component\\Console\\": ""
  3295. },
  3296. "exclude-from-classmap": [
  3297. "/Tests/"
  3298. ]
  3299. },
  3300. "notification-url": "https://packagist.org/downloads/",
  3301. "license": [
  3302. "MIT"
  3303. ],
  3304. "authors": [
  3305. {
  3306. "name": "Fabien Potencier",
  3307. "email": "fabien@symfony.com"
  3308. },
  3309. {
  3310. "name": "Symfony Community",
  3311. "homepage": "https://symfony.com/contributors"
  3312. }
  3313. ],
  3314. "description": "Eases the creation of beautiful and testable command line interfaces",
  3315. "homepage": "https://symfony.com",
  3316. "keywords": [
  3317. "cli",
  3318. "command-line",
  3319. "console",
  3320. "terminal"
  3321. ],
  3322. "support": {
  3323. "source": "https://github.com/symfony/console/tree/v7.1.3"
  3324. },
  3325. "funding": [
  3326. {
  3327. "url": "https://symfony.com/sponsor",
  3328. "type": "custom"
  3329. },
  3330. {
  3331. "url": "https://github.com/fabpot",
  3332. "type": "github"
  3333. },
  3334. {
  3335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3336. "type": "tidelift"
  3337. }
  3338. ],
  3339. "time": "2024-07-26T12:41:01+00:00"
  3340. },
  3341. {
  3342. "name": "symfony/dependency-injection",
  3343. "version": "v7.1.3",
  3344. "source": {
  3345. "type": "git",
  3346. "url": "https://github.com/symfony/dependency-injection.git",
  3347. "reference": "8126f0be4ff984e4db0140e60917900a53facb49"
  3348. },
  3349. "dist": {
  3350. "type": "zip",
  3351. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/8126f0be4ff984e4db0140e60917900a53facb49",
  3352. "reference": "8126f0be4ff984e4db0140e60917900a53facb49",
  3353. "shasum": ""
  3354. },
  3355. "require": {
  3356. "php": ">=8.2",
  3357. "psr/container": "^1.1|^2.0",
  3358. "symfony/deprecation-contracts": "^2.5|^3",
  3359. "symfony/service-contracts": "^3.5",
  3360. "symfony/var-exporter": "^6.4|^7.0"
  3361. },
  3362. "conflict": {
  3363. "ext-psr": "<1.1|>=2",
  3364. "symfony/config": "<6.4",
  3365. "symfony/finder": "<6.4",
  3366. "symfony/yaml": "<6.4"
  3367. },
  3368. "provide": {
  3369. "psr/container-implementation": "1.1|2.0",
  3370. "symfony/service-implementation": "1.1|2.0|3.0"
  3371. },
  3372. "require-dev": {
  3373. "symfony/config": "^6.4|^7.0",
  3374. "symfony/expression-language": "^6.4|^7.0",
  3375. "symfony/yaml": "^6.4|^7.0"
  3376. },
  3377. "type": "library",
  3378. "autoload": {
  3379. "psr-4": {
  3380. "Symfony\\Component\\DependencyInjection\\": ""
  3381. },
  3382. "exclude-from-classmap": [
  3383. "/Tests/"
  3384. ]
  3385. },
  3386. "notification-url": "https://packagist.org/downloads/",
  3387. "license": [
  3388. "MIT"
  3389. ],
  3390. "authors": [
  3391. {
  3392. "name": "Fabien Potencier",
  3393. "email": "fabien@symfony.com"
  3394. },
  3395. {
  3396. "name": "Symfony Community",
  3397. "homepage": "https://symfony.com/contributors"
  3398. }
  3399. ],
  3400. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3401. "homepage": "https://symfony.com",
  3402. "support": {
  3403. "source": "https://github.com/symfony/dependency-injection/tree/v7.1.3"
  3404. },
  3405. "funding": [
  3406. {
  3407. "url": "https://symfony.com/sponsor",
  3408. "type": "custom"
  3409. },
  3410. {
  3411. "url": "https://github.com/fabpot",
  3412. "type": "github"
  3413. },
  3414. {
  3415. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3416. "type": "tidelift"
  3417. }
  3418. ],
  3419. "time": "2024-07-26T07:35:39+00:00"
  3420. },
  3421. {
  3422. "name": "symfony/deprecation-contracts",
  3423. "version": "v3.5.0",
  3424. "source": {
  3425. "type": "git",
  3426. "url": "https://github.com/symfony/deprecation-contracts.git",
  3427. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  3428. },
  3429. "dist": {
  3430. "type": "zip",
  3431. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3432. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3433. "shasum": ""
  3434. },
  3435. "require": {
  3436. "php": ">=8.1"
  3437. },
  3438. "type": "library",
  3439. "extra": {
  3440. "branch-alias": {
  3441. "dev-main": "3.5-dev"
  3442. },
  3443. "thanks": {
  3444. "name": "symfony/contracts",
  3445. "url": "https://github.com/symfony/contracts"
  3446. }
  3447. },
  3448. "autoload": {
  3449. "files": [
  3450. "function.php"
  3451. ]
  3452. },
  3453. "notification-url": "https://packagist.org/downloads/",
  3454. "license": [
  3455. "MIT"
  3456. ],
  3457. "authors": [
  3458. {
  3459. "name": "Nicolas Grekas",
  3460. "email": "p@tchwork.com"
  3461. },
  3462. {
  3463. "name": "Symfony Community",
  3464. "homepage": "https://symfony.com/contributors"
  3465. }
  3466. ],
  3467. "description": "A generic function and convention to trigger deprecation notices",
  3468. "homepage": "https://symfony.com",
  3469. "support": {
  3470. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  3471. },
  3472. "funding": [
  3473. {
  3474. "url": "https://symfony.com/sponsor",
  3475. "type": "custom"
  3476. },
  3477. {
  3478. "url": "https://github.com/fabpot",
  3479. "type": "github"
  3480. },
  3481. {
  3482. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3483. "type": "tidelift"
  3484. }
  3485. ],
  3486. "time": "2024-04-18T09:32:20+00:00"
  3487. },
  3488. {
  3489. "name": "symfony/doctrine-bridge",
  3490. "version": "v7.1.3",
  3491. "source": {
  3492. "type": "git",
  3493. "url": "https://github.com/symfony/doctrine-bridge.git",
  3494. "reference": "b526822483124b62ff3cda14237418408f444e4d"
  3495. },
  3496. "dist": {
  3497. "type": "zip",
  3498. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/b526822483124b62ff3cda14237418408f444e4d",
  3499. "reference": "b526822483124b62ff3cda14237418408f444e4d",
  3500. "shasum": ""
  3501. },
  3502. "require": {
  3503. "doctrine/event-manager": "^2",
  3504. "doctrine/persistence": "^3.1",
  3505. "php": ">=8.2",
  3506. "symfony/deprecation-contracts": "^2.5|^3",
  3507. "symfony/polyfill-ctype": "~1.8",
  3508. "symfony/polyfill-mbstring": "~1.0",
  3509. "symfony/service-contracts": "^2.5|^3"
  3510. },
  3511. "conflict": {
  3512. "doctrine/dbal": "<3.6",
  3513. "doctrine/lexer": "<1.1",
  3514. "doctrine/orm": "<2.15",
  3515. "symfony/cache": "<6.4",
  3516. "symfony/dependency-injection": "<6.4",
  3517. "symfony/form": "<6.4.6|>=7,<7.0.6",
  3518. "symfony/http-foundation": "<6.4",
  3519. "symfony/http-kernel": "<6.4",
  3520. "symfony/lock": "<6.4",
  3521. "symfony/messenger": "<6.4",
  3522. "symfony/property-info": "<6.4",
  3523. "symfony/security-bundle": "<6.4",
  3524. "symfony/security-core": "<6.4",
  3525. "symfony/validator": "<6.4"
  3526. },
  3527. "require-dev": {
  3528. "doctrine/collections": "^1.0|^2.0",
  3529. "doctrine/data-fixtures": "^1.1",
  3530. "doctrine/dbal": "^3.6|^4",
  3531. "doctrine/orm": "^2.15|^3",
  3532. "psr/log": "^1|^2|^3",
  3533. "symfony/cache": "^6.4|^7.0",
  3534. "symfony/config": "^6.4|^7.0",
  3535. "symfony/dependency-injection": "^6.4|^7.0",
  3536. "symfony/doctrine-messenger": "^6.4|^7.0",
  3537. "symfony/expression-language": "^6.4|^7.0",
  3538. "symfony/form": "^6.4.6|^7.0.6",
  3539. "symfony/http-kernel": "^6.4|^7.0",
  3540. "symfony/lock": "^6.4|^7.0",
  3541. "symfony/messenger": "^6.4|^7.0",
  3542. "symfony/property-access": "^6.4|^7.0",
  3543. "symfony/property-info": "^6.4|^7.0",
  3544. "symfony/security-core": "^6.4|^7.0",
  3545. "symfony/stopwatch": "^6.4|^7.0",
  3546. "symfony/translation": "^6.4|^7.0",
  3547. "symfony/type-info": "^7.1",
  3548. "symfony/uid": "^6.4|^7.0",
  3549. "symfony/validator": "^6.4|^7.0",
  3550. "symfony/var-dumper": "^6.4|^7.0"
  3551. },
  3552. "type": "symfony-bridge",
  3553. "autoload": {
  3554. "psr-4": {
  3555. "Symfony\\Bridge\\Doctrine\\": ""
  3556. },
  3557. "exclude-from-classmap": [
  3558. "/Tests/"
  3559. ]
  3560. },
  3561. "notification-url": "https://packagist.org/downloads/",
  3562. "license": [
  3563. "MIT"
  3564. ],
  3565. "authors": [
  3566. {
  3567. "name": "Fabien Potencier",
  3568. "email": "fabien@symfony.com"
  3569. },
  3570. {
  3571. "name": "Symfony Community",
  3572. "homepage": "https://symfony.com/contributors"
  3573. }
  3574. ],
  3575. "description": "Provides integration for Doctrine with various Symfony components",
  3576. "homepage": "https://symfony.com",
  3577. "support": {
  3578. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.1.3"
  3579. },
  3580. "funding": [
  3581. {
  3582. "url": "https://symfony.com/sponsor",
  3583. "type": "custom"
  3584. },
  3585. {
  3586. "url": "https://github.com/fabpot",
  3587. "type": "github"
  3588. },
  3589. {
  3590. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3591. "type": "tidelift"
  3592. }
  3593. ],
  3594. "time": "2024-07-26T12:41:01+00:00"
  3595. },
  3596. {
  3597. "name": "symfony/dotenv",
  3598. "version": "v7.1.3",
  3599. "source": {
  3600. "type": "git",
  3601. "url": "https://github.com/symfony/dotenv.git",
  3602. "reference": "a26be30fd61678dab694a18a85084cea7673bbf3"
  3603. },
  3604. "dist": {
  3605. "type": "zip",
  3606. "url": "https://api.github.com/repos/symfony/dotenv/zipball/a26be30fd61678dab694a18a85084cea7673bbf3",
  3607. "reference": "a26be30fd61678dab694a18a85084cea7673bbf3",
  3608. "shasum": ""
  3609. },
  3610. "require": {
  3611. "php": ">=8.2"
  3612. },
  3613. "conflict": {
  3614. "symfony/console": "<6.4",
  3615. "symfony/process": "<6.4"
  3616. },
  3617. "require-dev": {
  3618. "symfony/console": "^6.4|^7.0",
  3619. "symfony/process": "^6.4|^7.0"
  3620. },
  3621. "type": "library",
  3622. "autoload": {
  3623. "psr-4": {
  3624. "Symfony\\Component\\Dotenv\\": ""
  3625. },
  3626. "exclude-from-classmap": [
  3627. "/Tests/"
  3628. ]
  3629. },
  3630. "notification-url": "https://packagist.org/downloads/",
  3631. "license": [
  3632. "MIT"
  3633. ],
  3634. "authors": [
  3635. {
  3636. "name": "Fabien Potencier",
  3637. "email": "fabien@symfony.com"
  3638. },
  3639. {
  3640. "name": "Symfony Community",
  3641. "homepage": "https://symfony.com/contributors"
  3642. }
  3643. ],
  3644. "description": "Registers environment variables from a .env file",
  3645. "homepage": "https://symfony.com",
  3646. "keywords": [
  3647. "dotenv",
  3648. "env",
  3649. "environment"
  3650. ],
  3651. "support": {
  3652. "source": "https://github.com/symfony/dotenv/tree/v7.1.3"
  3653. },
  3654. "funding": [
  3655. {
  3656. "url": "https://symfony.com/sponsor",
  3657. "type": "custom"
  3658. },
  3659. {
  3660. "url": "https://github.com/fabpot",
  3661. "type": "github"
  3662. },
  3663. {
  3664. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3665. "type": "tidelift"
  3666. }
  3667. ],
  3668. "time": "2024-07-09T19:36:07+00:00"
  3669. },
  3670. {
  3671. "name": "symfony/error-handler",
  3672. "version": "v7.1.3",
  3673. "source": {
  3674. "type": "git",
  3675. "url": "https://github.com/symfony/error-handler.git",
  3676. "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
  3677. },
  3678. "dist": {
  3679. "type": "zip",
  3680. "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
  3681. "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
  3682. "shasum": ""
  3683. },
  3684. "require": {
  3685. "php": ">=8.2",
  3686. "psr/log": "^1|^2|^3",
  3687. "symfony/var-dumper": "^6.4|^7.0"
  3688. },
  3689. "conflict": {
  3690. "symfony/deprecation-contracts": "<2.5",
  3691. "symfony/http-kernel": "<6.4"
  3692. },
  3693. "require-dev": {
  3694. "symfony/deprecation-contracts": "^2.5|^3",
  3695. "symfony/http-kernel": "^6.4|^7.0",
  3696. "symfony/serializer": "^6.4|^7.0"
  3697. },
  3698. "bin": [
  3699. "Resources/bin/patch-type-declarations"
  3700. ],
  3701. "type": "library",
  3702. "autoload": {
  3703. "psr-4": {
  3704. "Symfony\\Component\\ErrorHandler\\": ""
  3705. },
  3706. "exclude-from-classmap": [
  3707. "/Tests/"
  3708. ]
  3709. },
  3710. "notification-url": "https://packagist.org/downloads/",
  3711. "license": [
  3712. "MIT"
  3713. ],
  3714. "authors": [
  3715. {
  3716. "name": "Fabien Potencier",
  3717. "email": "fabien@symfony.com"
  3718. },
  3719. {
  3720. "name": "Symfony Community",
  3721. "homepage": "https://symfony.com/contributors"
  3722. }
  3723. ],
  3724. "description": "Provides tools to manage errors and ease debugging PHP code",
  3725. "homepage": "https://symfony.com",
  3726. "support": {
  3727. "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
  3728. },
  3729. "funding": [
  3730. {
  3731. "url": "https://symfony.com/sponsor",
  3732. "type": "custom"
  3733. },
  3734. {
  3735. "url": "https://github.com/fabpot",
  3736. "type": "github"
  3737. },
  3738. {
  3739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3740. "type": "tidelift"
  3741. }
  3742. ],
  3743. "time": "2024-07-26T13:02:51+00:00"
  3744. },
  3745. {
  3746. "name": "symfony/event-dispatcher",
  3747. "version": "v7.1.1",
  3748. "source": {
  3749. "type": "git",
  3750. "url": "https://github.com/symfony/event-dispatcher.git",
  3751. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  3752. },
  3753. "dist": {
  3754. "type": "zip",
  3755. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3756. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3757. "shasum": ""
  3758. },
  3759. "require": {
  3760. "php": ">=8.2",
  3761. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3762. },
  3763. "conflict": {
  3764. "symfony/dependency-injection": "<6.4",
  3765. "symfony/service-contracts": "<2.5"
  3766. },
  3767. "provide": {
  3768. "psr/event-dispatcher-implementation": "1.0",
  3769. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3770. },
  3771. "require-dev": {
  3772. "psr/log": "^1|^2|^3",
  3773. "symfony/config": "^6.4|^7.0",
  3774. "symfony/dependency-injection": "^6.4|^7.0",
  3775. "symfony/error-handler": "^6.4|^7.0",
  3776. "symfony/expression-language": "^6.4|^7.0",
  3777. "symfony/http-foundation": "^6.4|^7.0",
  3778. "symfony/service-contracts": "^2.5|^3",
  3779. "symfony/stopwatch": "^6.4|^7.0"
  3780. },
  3781. "type": "library",
  3782. "autoload": {
  3783. "psr-4": {
  3784. "Symfony\\Component\\EventDispatcher\\": ""
  3785. },
  3786. "exclude-from-classmap": [
  3787. "/Tests/"
  3788. ]
  3789. },
  3790. "notification-url": "https://packagist.org/downloads/",
  3791. "license": [
  3792. "MIT"
  3793. ],
  3794. "authors": [
  3795. {
  3796. "name": "Fabien Potencier",
  3797. "email": "fabien@symfony.com"
  3798. },
  3799. {
  3800. "name": "Symfony Community",
  3801. "homepage": "https://symfony.com/contributors"
  3802. }
  3803. ],
  3804. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3805. "homepage": "https://symfony.com",
  3806. "support": {
  3807. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  3808. },
  3809. "funding": [
  3810. {
  3811. "url": "https://symfony.com/sponsor",
  3812. "type": "custom"
  3813. },
  3814. {
  3815. "url": "https://github.com/fabpot",
  3816. "type": "github"
  3817. },
  3818. {
  3819. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3820. "type": "tidelift"
  3821. }
  3822. ],
  3823. "time": "2024-05-31T14:57:53+00:00"
  3824. },
  3825. {
  3826. "name": "symfony/event-dispatcher-contracts",
  3827. "version": "v3.5.0",
  3828. "source": {
  3829. "type": "git",
  3830. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3831. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  3832. },
  3833. "dist": {
  3834. "type": "zip",
  3835. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  3836. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  3837. "shasum": ""
  3838. },
  3839. "require": {
  3840. "php": ">=8.1",
  3841. "psr/event-dispatcher": "^1"
  3842. },
  3843. "type": "library",
  3844. "extra": {
  3845. "branch-alias": {
  3846. "dev-main": "3.5-dev"
  3847. },
  3848. "thanks": {
  3849. "name": "symfony/contracts",
  3850. "url": "https://github.com/symfony/contracts"
  3851. }
  3852. },
  3853. "autoload": {
  3854. "psr-4": {
  3855. "Symfony\\Contracts\\EventDispatcher\\": ""
  3856. }
  3857. },
  3858. "notification-url": "https://packagist.org/downloads/",
  3859. "license": [
  3860. "MIT"
  3861. ],
  3862. "authors": [
  3863. {
  3864. "name": "Nicolas Grekas",
  3865. "email": "p@tchwork.com"
  3866. },
  3867. {
  3868. "name": "Symfony Community",
  3869. "homepage": "https://symfony.com/contributors"
  3870. }
  3871. ],
  3872. "description": "Generic abstractions related to dispatching event",
  3873. "homepage": "https://symfony.com",
  3874. "keywords": [
  3875. "abstractions",
  3876. "contracts",
  3877. "decoupling",
  3878. "interfaces",
  3879. "interoperability",
  3880. "standards"
  3881. ],
  3882. "support": {
  3883. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  3884. },
  3885. "funding": [
  3886. {
  3887. "url": "https://symfony.com/sponsor",
  3888. "type": "custom"
  3889. },
  3890. {
  3891. "url": "https://github.com/fabpot",
  3892. "type": "github"
  3893. },
  3894. {
  3895. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3896. "type": "tidelift"
  3897. }
  3898. ],
  3899. "time": "2024-04-18T09:32:20+00:00"
  3900. },
  3901. {
  3902. "name": "symfony/expression-language",
  3903. "version": "v7.1.1",
  3904. "source": {
  3905. "type": "git",
  3906. "url": "https://github.com/symfony/expression-language.git",
  3907. "reference": "463cb95f80c14136175f4e03f7f6199b01c6b8b4"
  3908. },
  3909. "dist": {
  3910. "type": "zip",
  3911. "url": "https://api.github.com/repos/symfony/expression-language/zipball/463cb95f80c14136175f4e03f7f6199b01c6b8b4",
  3912. "reference": "463cb95f80c14136175f4e03f7f6199b01c6b8b4",
  3913. "shasum": ""
  3914. },
  3915. "require": {
  3916. "php": ">=8.2",
  3917. "symfony/cache": "^6.4|^7.0",
  3918. "symfony/deprecation-contracts": "^2.5|^3",
  3919. "symfony/service-contracts": "^2.5|^3"
  3920. },
  3921. "type": "library",
  3922. "autoload": {
  3923. "psr-4": {
  3924. "Symfony\\Component\\ExpressionLanguage\\": ""
  3925. },
  3926. "exclude-from-classmap": [
  3927. "/Tests/"
  3928. ]
  3929. },
  3930. "notification-url": "https://packagist.org/downloads/",
  3931. "license": [
  3932. "MIT"
  3933. ],
  3934. "authors": [
  3935. {
  3936. "name": "Fabien Potencier",
  3937. "email": "fabien@symfony.com"
  3938. },
  3939. {
  3940. "name": "Symfony Community",
  3941. "homepage": "https://symfony.com/contributors"
  3942. }
  3943. ],
  3944. "description": "Provides an engine that can compile and evaluate expressions",
  3945. "homepage": "https://symfony.com",
  3946. "support": {
  3947. "source": "https://github.com/symfony/expression-language/tree/v7.1.1"
  3948. },
  3949. "funding": [
  3950. {
  3951. "url": "https://symfony.com/sponsor",
  3952. "type": "custom"
  3953. },
  3954. {
  3955. "url": "https://github.com/fabpot",
  3956. "type": "github"
  3957. },
  3958. {
  3959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3960. "type": "tidelift"
  3961. }
  3962. ],
  3963. "time": "2024-05-31T14:57:53+00:00"
  3964. },
  3965. {
  3966. "name": "symfony/filesystem",
  3967. "version": "v7.1.2",
  3968. "source": {
  3969. "type": "git",
  3970. "url": "https://github.com/symfony/filesystem.git",
  3971. "reference": "92a91985250c251de9b947a14bb2c9390b1a562c"
  3972. },
  3973. "dist": {
  3974. "type": "zip",
  3975. "url": "https://api.github.com/repos/symfony/filesystem/zipball/92a91985250c251de9b947a14bb2c9390b1a562c",
  3976. "reference": "92a91985250c251de9b947a14bb2c9390b1a562c",
  3977. "shasum": ""
  3978. },
  3979. "require": {
  3980. "php": ">=8.2",
  3981. "symfony/polyfill-ctype": "~1.8",
  3982. "symfony/polyfill-mbstring": "~1.8"
  3983. },
  3984. "require-dev": {
  3985. "symfony/process": "^6.4|^7.0"
  3986. },
  3987. "type": "library",
  3988. "autoload": {
  3989. "psr-4": {
  3990. "Symfony\\Component\\Filesystem\\": ""
  3991. },
  3992. "exclude-from-classmap": [
  3993. "/Tests/"
  3994. ]
  3995. },
  3996. "notification-url": "https://packagist.org/downloads/",
  3997. "license": [
  3998. "MIT"
  3999. ],
  4000. "authors": [
  4001. {
  4002. "name": "Fabien Potencier",
  4003. "email": "fabien@symfony.com"
  4004. },
  4005. {
  4006. "name": "Symfony Community",
  4007. "homepage": "https://symfony.com/contributors"
  4008. }
  4009. ],
  4010. "description": "Provides basic utilities for the filesystem",
  4011. "homepage": "https://symfony.com",
  4012. "support": {
  4013. "source": "https://github.com/symfony/filesystem/tree/v7.1.2"
  4014. },
  4015. "funding": [
  4016. {
  4017. "url": "https://symfony.com/sponsor",
  4018. "type": "custom"
  4019. },
  4020. {
  4021. "url": "https://github.com/fabpot",
  4022. "type": "github"
  4023. },
  4024. {
  4025. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4026. "type": "tidelift"
  4027. }
  4028. ],
  4029. "time": "2024-06-28T10:03:55+00:00"
  4030. },
  4031. {
  4032. "name": "symfony/finder",
  4033. "version": "v7.1.3",
  4034. "source": {
  4035. "type": "git",
  4036. "url": "https://github.com/symfony/finder.git",
  4037. "reference": "717c6329886f32dc65e27461f80f2a465412fdca"
  4038. },
  4039. "dist": {
  4040. "type": "zip",
  4041. "url": "https://api.github.com/repos/symfony/finder/zipball/717c6329886f32dc65e27461f80f2a465412fdca",
  4042. "reference": "717c6329886f32dc65e27461f80f2a465412fdca",
  4043. "shasum": ""
  4044. },
  4045. "require": {
  4046. "php": ">=8.2"
  4047. },
  4048. "require-dev": {
  4049. "symfony/filesystem": "^6.4|^7.0"
  4050. },
  4051. "type": "library",
  4052. "autoload": {
  4053. "psr-4": {
  4054. "Symfony\\Component\\Finder\\": ""
  4055. },
  4056. "exclude-from-classmap": [
  4057. "/Tests/"
  4058. ]
  4059. },
  4060. "notification-url": "https://packagist.org/downloads/",
  4061. "license": [
  4062. "MIT"
  4063. ],
  4064. "authors": [
  4065. {
  4066. "name": "Fabien Potencier",
  4067. "email": "fabien@symfony.com"
  4068. },
  4069. {
  4070. "name": "Symfony Community",
  4071. "homepage": "https://symfony.com/contributors"
  4072. }
  4073. ],
  4074. "description": "Finds files and directories via an intuitive fluent interface",
  4075. "homepage": "https://symfony.com",
  4076. "support": {
  4077. "source": "https://github.com/symfony/finder/tree/v7.1.3"
  4078. },
  4079. "funding": [
  4080. {
  4081. "url": "https://symfony.com/sponsor",
  4082. "type": "custom"
  4083. },
  4084. {
  4085. "url": "https://github.com/fabpot",
  4086. "type": "github"
  4087. },
  4088. {
  4089. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4090. "type": "tidelift"
  4091. }
  4092. ],
  4093. "time": "2024-07-24T07:08:44+00:00"
  4094. },
  4095. {
  4096. "name": "symfony/flex",
  4097. "version": "v2.4.6",
  4098. "source": {
  4099. "type": "git",
  4100. "url": "https://github.com/symfony/flex.git",
  4101. "reference": "4dc11919791f81d087a12db2ab4c7e044431ef6b"
  4102. },
  4103. "dist": {
  4104. "type": "zip",
  4105. "url": "https://api.github.com/repos/symfony/flex/zipball/4dc11919791f81d087a12db2ab4c7e044431ef6b",
  4106. "reference": "4dc11919791f81d087a12db2ab4c7e044431ef6b",
  4107. "shasum": ""
  4108. },
  4109. "require": {
  4110. "composer-plugin-api": "^2.1",
  4111. "php": ">=8.0"
  4112. },
  4113. "require-dev": {
  4114. "composer/composer": "^2.1",
  4115. "symfony/dotenv": "^5.4|^6.0",
  4116. "symfony/filesystem": "^5.4|^6.0",
  4117. "symfony/phpunit-bridge": "^5.4|^6.0",
  4118. "symfony/process": "^5.4|^6.0"
  4119. },
  4120. "type": "composer-plugin",
  4121. "extra": {
  4122. "class": "Symfony\\Flex\\Flex"
  4123. },
  4124. "autoload": {
  4125. "psr-4": {
  4126. "Symfony\\Flex\\": "src"
  4127. }
  4128. },
  4129. "notification-url": "https://packagist.org/downloads/",
  4130. "license": [
  4131. "MIT"
  4132. ],
  4133. "authors": [
  4134. {
  4135. "name": "Fabien Potencier",
  4136. "email": "fabien.potencier@gmail.com"
  4137. }
  4138. ],
  4139. "description": "Composer plugin for Symfony",
  4140. "support": {
  4141. "issues": "https://github.com/symfony/flex/issues",
  4142. "source": "https://github.com/symfony/flex/tree/v2.4.6"
  4143. },
  4144. "funding": [
  4145. {
  4146. "url": "https://symfony.com/sponsor",
  4147. "type": "custom"
  4148. },
  4149. {
  4150. "url": "https://github.com/fabpot",
  4151. "type": "github"
  4152. },
  4153. {
  4154. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4155. "type": "tidelift"
  4156. }
  4157. ],
  4158. "time": "2024-04-27T10:22:22+00:00"
  4159. },
  4160. {
  4161. "name": "symfony/form",
  4162. "version": "v7.1.3",
  4163. "source": {
  4164. "type": "git",
  4165. "url": "https://github.com/symfony/form.git",
  4166. "reference": "11df2e2e142161824eb341e96cbb3c56c3bb57dc"
  4167. },
  4168. "dist": {
  4169. "type": "zip",
  4170. "url": "https://api.github.com/repos/symfony/form/zipball/11df2e2e142161824eb341e96cbb3c56c3bb57dc",
  4171. "reference": "11df2e2e142161824eb341e96cbb3c56c3bb57dc",
  4172. "shasum": ""
  4173. },
  4174. "require": {
  4175. "php": ">=8.2",
  4176. "symfony/deprecation-contracts": "^2.5|^3",
  4177. "symfony/event-dispatcher": "^6.4|^7.0",
  4178. "symfony/options-resolver": "^6.4|^7.0",
  4179. "symfony/polyfill-ctype": "~1.8",
  4180. "symfony/polyfill-intl-icu": "^1.21",
  4181. "symfony/polyfill-mbstring": "~1.0",
  4182. "symfony/property-access": "^6.4|^7.0",
  4183. "symfony/service-contracts": "^2.5|^3"
  4184. },
  4185. "conflict": {
  4186. "symfony/console": "<6.4",
  4187. "symfony/dependency-injection": "<6.4",
  4188. "symfony/doctrine-bridge": "<6.4",
  4189. "symfony/error-handler": "<6.4",
  4190. "symfony/framework-bundle": "<6.4",
  4191. "symfony/http-kernel": "<6.4",
  4192. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  4193. "symfony/translation-contracts": "<2.5",
  4194. "symfony/twig-bridge": "<6.4"
  4195. },
  4196. "require-dev": {
  4197. "doctrine/collections": "^1.0|^2.0",
  4198. "symfony/config": "^6.4|^7.0",
  4199. "symfony/console": "^6.4|^7.0",
  4200. "symfony/dependency-injection": "^6.4|^7.0",
  4201. "symfony/expression-language": "^6.4|^7.0",
  4202. "symfony/html-sanitizer": "^6.4|^7.0",
  4203. "symfony/http-foundation": "^6.4|^7.0",
  4204. "symfony/http-kernel": "^6.4|^7.0",
  4205. "symfony/intl": "^6.4|^7.0",
  4206. "symfony/security-core": "^6.4|^7.0",
  4207. "symfony/security-csrf": "^6.4|^7.0",
  4208. "symfony/translation": "^6.4.3|^7.0.3",
  4209. "symfony/uid": "^6.4|^7.0",
  4210. "symfony/validator": "^6.4|^7.0",
  4211. "symfony/var-dumper": "^6.4|^7.0"
  4212. },
  4213. "type": "library",
  4214. "autoload": {
  4215. "psr-4": {
  4216. "Symfony\\Component\\Form\\": ""
  4217. },
  4218. "exclude-from-classmap": [
  4219. "/Tests/"
  4220. ]
  4221. },
  4222. "notification-url": "https://packagist.org/downloads/",
  4223. "license": [
  4224. "MIT"
  4225. ],
  4226. "authors": [
  4227. {
  4228. "name": "Fabien Potencier",
  4229. "email": "fabien@symfony.com"
  4230. },
  4231. {
  4232. "name": "Symfony Community",
  4233. "homepage": "https://symfony.com/contributors"
  4234. }
  4235. ],
  4236. "description": "Allows to easily create, process and reuse HTML forms",
  4237. "homepage": "https://symfony.com",
  4238. "support": {
  4239. "source": "https://github.com/symfony/form/tree/v7.1.3"
  4240. },
  4241. "funding": [
  4242. {
  4243. "url": "https://symfony.com/sponsor",
  4244. "type": "custom"
  4245. },
  4246. {
  4247. "url": "https://github.com/fabpot",
  4248. "type": "github"
  4249. },
  4250. {
  4251. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4252. "type": "tidelift"
  4253. }
  4254. ],
  4255. "time": "2024-07-19T08:30:01+00:00"
  4256. },
  4257. {
  4258. "name": "symfony/framework-bundle",
  4259. "version": "v7.1.3",
  4260. "source": {
  4261. "type": "git",
  4262. "url": "https://github.com/symfony/framework-bundle.git",
  4263. "reference": "a32ec544bd501eb4619eb977860ad3076ee55061"
  4264. },
  4265. "dist": {
  4266. "type": "zip",
  4267. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/a32ec544bd501eb4619eb977860ad3076ee55061",
  4268. "reference": "a32ec544bd501eb4619eb977860ad3076ee55061",
  4269. "shasum": ""
  4270. },
  4271. "require": {
  4272. "composer-runtime-api": ">=2.1",
  4273. "ext-xml": "*",
  4274. "php": ">=8.2",
  4275. "symfony/cache": "^6.4|^7.0",
  4276. "symfony/config": "^6.4|^7.0",
  4277. "symfony/dependency-injection": "^7.1",
  4278. "symfony/deprecation-contracts": "^2.5|^3",
  4279. "symfony/error-handler": "^6.4|^7.0",
  4280. "symfony/event-dispatcher": "^6.4|^7.0",
  4281. "symfony/filesystem": "^7.1",
  4282. "symfony/finder": "^6.4|^7.0",
  4283. "symfony/http-foundation": "^6.4|^7.0",
  4284. "symfony/http-kernel": "^6.4|^7.0",
  4285. "symfony/polyfill-mbstring": "~1.0",
  4286. "symfony/routing": "^6.4|^7.0"
  4287. },
  4288. "conflict": {
  4289. "doctrine/persistence": "<1.3",
  4290. "phpdocumentor/reflection-docblock": "<3.2.2",
  4291. "phpdocumentor/type-resolver": "<1.4.0",
  4292. "symfony/asset": "<6.4",
  4293. "symfony/asset-mapper": "<6.4",
  4294. "symfony/clock": "<6.4",
  4295. "symfony/console": "<6.4",
  4296. "symfony/dom-crawler": "<6.4",
  4297. "symfony/dotenv": "<6.4",
  4298. "symfony/form": "<6.4",
  4299. "symfony/http-client": "<6.4",
  4300. "symfony/lock": "<6.4",
  4301. "symfony/mailer": "<6.4",
  4302. "symfony/messenger": "<6.4",
  4303. "symfony/mime": "<6.4",
  4304. "symfony/property-access": "<6.4",
  4305. "symfony/property-info": "<6.4",
  4306. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  4307. "symfony/security-core": "<6.4",
  4308. "symfony/security-csrf": "<6.4",
  4309. "symfony/serializer": "<6.4",
  4310. "symfony/stopwatch": "<6.4",
  4311. "symfony/translation": "<6.4",
  4312. "symfony/twig-bridge": "<6.4",
  4313. "symfony/twig-bundle": "<6.4",
  4314. "symfony/validator": "<6.4",
  4315. "symfony/web-profiler-bundle": "<6.4",
  4316. "symfony/workflow": "<6.4"
  4317. },
  4318. "require-dev": {
  4319. "doctrine/persistence": "^1.3|^2|^3",
  4320. "dragonmantank/cron-expression": "^3.1",
  4321. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4322. "seld/jsonlint": "^1.10",
  4323. "symfony/asset": "^6.4|^7.0",
  4324. "symfony/asset-mapper": "^6.4|^7.0",
  4325. "symfony/browser-kit": "^6.4|^7.0",
  4326. "symfony/clock": "^6.4|^7.0",
  4327. "symfony/console": "^6.4|^7.0",
  4328. "symfony/css-selector": "^6.4|^7.0",
  4329. "symfony/dom-crawler": "^6.4|^7.0",
  4330. "symfony/dotenv": "^6.4|^7.0",
  4331. "symfony/expression-language": "^6.4|^7.0",
  4332. "symfony/form": "^6.4|^7.0",
  4333. "symfony/html-sanitizer": "^6.4|^7.0",
  4334. "symfony/http-client": "^6.4|^7.0",
  4335. "symfony/lock": "^6.4|^7.0",
  4336. "symfony/mailer": "^6.4|^7.0",
  4337. "symfony/messenger": "^6.4|^7.0",
  4338. "symfony/mime": "^6.4|^7.0",
  4339. "symfony/notifier": "^6.4|^7.0",
  4340. "symfony/polyfill-intl-icu": "~1.0",
  4341. "symfony/process": "^6.4|^7.0",
  4342. "symfony/property-info": "^6.4|^7.0",
  4343. "symfony/rate-limiter": "^6.4|^7.0",
  4344. "symfony/scheduler": "^6.4.4|^7.0.4",
  4345. "symfony/security-bundle": "^6.4|^7.0",
  4346. "symfony/semaphore": "^6.4|^7.0",
  4347. "symfony/serializer": "^6.4|^7.0",
  4348. "symfony/stopwatch": "^6.4|^7.0",
  4349. "symfony/string": "^6.4|^7.0",
  4350. "symfony/translation": "^6.4|^7.0",
  4351. "symfony/twig-bundle": "^6.4|^7.0",
  4352. "symfony/type-info": "^7.1",
  4353. "symfony/uid": "^6.4|^7.0",
  4354. "symfony/validator": "^6.4|^7.0",
  4355. "symfony/web-link": "^6.4|^7.0",
  4356. "symfony/workflow": "^6.4|^7.0",
  4357. "symfony/yaml": "^6.4|^7.0",
  4358. "twig/twig": "^3.0.4"
  4359. },
  4360. "type": "symfony-bundle",
  4361. "autoload": {
  4362. "psr-4": {
  4363. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4364. },
  4365. "exclude-from-classmap": [
  4366. "/Tests/"
  4367. ]
  4368. },
  4369. "notification-url": "https://packagist.org/downloads/",
  4370. "license": [
  4371. "MIT"
  4372. ],
  4373. "authors": [
  4374. {
  4375. "name": "Fabien Potencier",
  4376. "email": "fabien@symfony.com"
  4377. },
  4378. {
  4379. "name": "Symfony Community",
  4380. "homepage": "https://symfony.com/contributors"
  4381. }
  4382. ],
  4383. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4384. "homepage": "https://symfony.com",
  4385. "support": {
  4386. "source": "https://github.com/symfony/framework-bundle/tree/v7.1.3"
  4387. },
  4388. "funding": [
  4389. {
  4390. "url": "https://symfony.com/sponsor",
  4391. "type": "custom"
  4392. },
  4393. {
  4394. "url": "https://github.com/fabpot",
  4395. "type": "github"
  4396. },
  4397. {
  4398. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4399. "type": "tidelift"
  4400. }
  4401. ],
  4402. "time": "2024-07-26T13:24:34+00:00"
  4403. },
  4404. {
  4405. "name": "symfony/html-sanitizer",
  4406. "version": "v7.1.1",
  4407. "source": {
  4408. "type": "git",
  4409. "url": "https://github.com/symfony/html-sanitizer.git",
  4410. "reference": "737cbaa8082b696d0574afd91b9f471eca67fc65"
  4411. },
  4412. "dist": {
  4413. "type": "zip",
  4414. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/737cbaa8082b696d0574afd91b9f471eca67fc65",
  4415. "reference": "737cbaa8082b696d0574afd91b9f471eca67fc65",
  4416. "shasum": ""
  4417. },
  4418. "require": {
  4419. "ext-dom": "*",
  4420. "league/uri": "^6.5|^7.0",
  4421. "masterminds/html5": "^2.7.2",
  4422. "php": ">=8.2"
  4423. },
  4424. "type": "library",
  4425. "autoload": {
  4426. "psr-4": {
  4427. "Symfony\\Component\\HtmlSanitizer\\": ""
  4428. },
  4429. "exclude-from-classmap": [
  4430. "/Tests/"
  4431. ]
  4432. },
  4433. "notification-url": "https://packagist.org/downloads/",
  4434. "license": [
  4435. "MIT"
  4436. ],
  4437. "authors": [
  4438. {
  4439. "name": "Titouan Galopin",
  4440. "email": "galopintitouan@gmail.com"
  4441. },
  4442. {
  4443. "name": "Symfony Community",
  4444. "homepage": "https://symfony.com/contributors"
  4445. }
  4446. ],
  4447. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  4448. "homepage": "https://symfony.com",
  4449. "keywords": [
  4450. "Purifier",
  4451. "html",
  4452. "sanitizer"
  4453. ],
  4454. "support": {
  4455. "source": "https://github.com/symfony/html-sanitizer/tree/v7.1.1"
  4456. },
  4457. "funding": [
  4458. {
  4459. "url": "https://symfony.com/sponsor",
  4460. "type": "custom"
  4461. },
  4462. {
  4463. "url": "https://github.com/fabpot",
  4464. "type": "github"
  4465. },
  4466. {
  4467. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4468. "type": "tidelift"
  4469. }
  4470. ],
  4471. "time": "2024-05-31T14:55:39+00:00"
  4472. },
  4473. {
  4474. "name": "symfony/http-client",
  4475. "version": "v7.1.3",
  4476. "source": {
  4477. "type": "git",
  4478. "url": "https://github.com/symfony/http-client.git",
  4479. "reference": "b79858aa7a051ea791b0d50269a234a0b50cb231"
  4480. },
  4481. "dist": {
  4482. "type": "zip",
  4483. "url": "https://api.github.com/repos/symfony/http-client/zipball/b79858aa7a051ea791b0d50269a234a0b50cb231",
  4484. "reference": "b79858aa7a051ea791b0d50269a234a0b50cb231",
  4485. "shasum": ""
  4486. },
  4487. "require": {
  4488. "php": ">=8.2",
  4489. "psr/log": "^1|^2|^3",
  4490. "symfony/deprecation-contracts": "^2.5|^3",
  4491. "symfony/http-client-contracts": "^3.4.1",
  4492. "symfony/service-contracts": "^2.5|^3"
  4493. },
  4494. "conflict": {
  4495. "php-http/discovery": "<1.15",
  4496. "symfony/http-foundation": "<6.4"
  4497. },
  4498. "provide": {
  4499. "php-http/async-client-implementation": "*",
  4500. "php-http/client-implementation": "*",
  4501. "psr/http-client-implementation": "1.0",
  4502. "symfony/http-client-implementation": "3.0"
  4503. },
  4504. "require-dev": {
  4505. "amphp/amp": "^2.5",
  4506. "amphp/http-client": "^4.2.1",
  4507. "amphp/http-tunnel": "^1.0",
  4508. "amphp/socket": "^1.1",
  4509. "guzzlehttp/promises": "^1.4|^2.0",
  4510. "nyholm/psr7": "^1.0",
  4511. "php-http/httplug": "^1.0|^2.0",
  4512. "psr/http-client": "^1.0",
  4513. "symfony/dependency-injection": "^6.4|^7.0",
  4514. "symfony/http-kernel": "^6.4|^7.0",
  4515. "symfony/messenger": "^6.4|^7.0",
  4516. "symfony/process": "^6.4|^7.0",
  4517. "symfony/rate-limiter": "^6.4|^7.0",
  4518. "symfony/stopwatch": "^6.4|^7.0"
  4519. },
  4520. "type": "library",
  4521. "autoload": {
  4522. "psr-4": {
  4523. "Symfony\\Component\\HttpClient\\": ""
  4524. },
  4525. "exclude-from-classmap": [
  4526. "/Tests/"
  4527. ]
  4528. },
  4529. "notification-url": "https://packagist.org/downloads/",
  4530. "license": [
  4531. "MIT"
  4532. ],
  4533. "authors": [
  4534. {
  4535. "name": "Nicolas Grekas",
  4536. "email": "p@tchwork.com"
  4537. },
  4538. {
  4539. "name": "Symfony Community",
  4540. "homepage": "https://symfony.com/contributors"
  4541. }
  4542. ],
  4543. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4544. "homepage": "https://symfony.com",
  4545. "keywords": [
  4546. "http"
  4547. ],
  4548. "support": {
  4549. "source": "https://github.com/symfony/http-client/tree/v7.1.3"
  4550. },
  4551. "funding": [
  4552. {
  4553. "url": "https://symfony.com/sponsor",
  4554. "type": "custom"
  4555. },
  4556. {
  4557. "url": "https://github.com/fabpot",
  4558. "type": "github"
  4559. },
  4560. {
  4561. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4562. "type": "tidelift"
  4563. }
  4564. ],
  4565. "time": "2024-07-17T06:10:24+00:00"
  4566. },
  4567. {
  4568. "name": "symfony/http-client-contracts",
  4569. "version": "v3.5.0",
  4570. "source": {
  4571. "type": "git",
  4572. "url": "https://github.com/symfony/http-client-contracts.git",
  4573. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  4574. },
  4575. "dist": {
  4576. "type": "zip",
  4577. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  4578. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  4579. "shasum": ""
  4580. },
  4581. "require": {
  4582. "php": ">=8.1"
  4583. },
  4584. "type": "library",
  4585. "extra": {
  4586. "branch-alias": {
  4587. "dev-main": "3.5-dev"
  4588. },
  4589. "thanks": {
  4590. "name": "symfony/contracts",
  4591. "url": "https://github.com/symfony/contracts"
  4592. }
  4593. },
  4594. "autoload": {
  4595. "psr-4": {
  4596. "Symfony\\Contracts\\HttpClient\\": ""
  4597. },
  4598. "exclude-from-classmap": [
  4599. "/Test/"
  4600. ]
  4601. },
  4602. "notification-url": "https://packagist.org/downloads/",
  4603. "license": [
  4604. "MIT"
  4605. ],
  4606. "authors": [
  4607. {
  4608. "name": "Nicolas Grekas",
  4609. "email": "p@tchwork.com"
  4610. },
  4611. {
  4612. "name": "Symfony Community",
  4613. "homepage": "https://symfony.com/contributors"
  4614. }
  4615. ],
  4616. "description": "Generic abstractions related to HTTP clients",
  4617. "homepage": "https://symfony.com",
  4618. "keywords": [
  4619. "abstractions",
  4620. "contracts",
  4621. "decoupling",
  4622. "interfaces",
  4623. "interoperability",
  4624. "standards"
  4625. ],
  4626. "support": {
  4627. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  4628. },
  4629. "funding": [
  4630. {
  4631. "url": "https://symfony.com/sponsor",
  4632. "type": "custom"
  4633. },
  4634. {
  4635. "url": "https://github.com/fabpot",
  4636. "type": "github"
  4637. },
  4638. {
  4639. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4640. "type": "tidelift"
  4641. }
  4642. ],
  4643. "time": "2024-04-18T09:32:20+00:00"
  4644. },
  4645. {
  4646. "name": "symfony/http-foundation",
  4647. "version": "v7.1.3",
  4648. "source": {
  4649. "type": "git",
  4650. "url": "https://github.com/symfony/http-foundation.git",
  4651. "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a"
  4652. },
  4653. "dist": {
  4654. "type": "zip",
  4655. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
  4656. "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
  4657. "shasum": ""
  4658. },
  4659. "require": {
  4660. "php": ">=8.2",
  4661. "symfony/polyfill-mbstring": "~1.1",
  4662. "symfony/polyfill-php83": "^1.27"
  4663. },
  4664. "conflict": {
  4665. "doctrine/dbal": "<3.6",
  4666. "symfony/cache": "<6.4"
  4667. },
  4668. "require-dev": {
  4669. "doctrine/dbal": "^3.6|^4",
  4670. "predis/predis": "^1.1|^2.0",
  4671. "symfony/cache": "^6.4|^7.0",
  4672. "symfony/dependency-injection": "^6.4|^7.0",
  4673. "symfony/expression-language": "^6.4|^7.0",
  4674. "symfony/http-kernel": "^6.4|^7.0",
  4675. "symfony/mime": "^6.4|^7.0",
  4676. "symfony/rate-limiter": "^6.4|^7.0"
  4677. },
  4678. "type": "library",
  4679. "autoload": {
  4680. "psr-4": {
  4681. "Symfony\\Component\\HttpFoundation\\": ""
  4682. },
  4683. "exclude-from-classmap": [
  4684. "/Tests/"
  4685. ]
  4686. },
  4687. "notification-url": "https://packagist.org/downloads/",
  4688. "license": [
  4689. "MIT"
  4690. ],
  4691. "authors": [
  4692. {
  4693. "name": "Fabien Potencier",
  4694. "email": "fabien@symfony.com"
  4695. },
  4696. {
  4697. "name": "Symfony Community",
  4698. "homepage": "https://symfony.com/contributors"
  4699. }
  4700. ],
  4701. "description": "Defines an object-oriented layer for the HTTP specification",
  4702. "homepage": "https://symfony.com",
  4703. "support": {
  4704. "source": "https://github.com/symfony/http-foundation/tree/v7.1.3"
  4705. },
  4706. "funding": [
  4707. {
  4708. "url": "https://symfony.com/sponsor",
  4709. "type": "custom"
  4710. },
  4711. {
  4712. "url": "https://github.com/fabpot",
  4713. "type": "github"
  4714. },
  4715. {
  4716. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4717. "type": "tidelift"
  4718. }
  4719. ],
  4720. "time": "2024-07-26T12:41:01+00:00"
  4721. },
  4722. {
  4723. "name": "symfony/http-kernel",
  4724. "version": "v7.1.3",
  4725. "source": {
  4726. "type": "git",
  4727. "url": "https://github.com/symfony/http-kernel.git",
  4728. "reference": "db9702f3a04cc471ec8c70e881825db26ac5f186"
  4729. },
  4730. "dist": {
  4731. "type": "zip",
  4732. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/db9702f3a04cc471ec8c70e881825db26ac5f186",
  4733. "reference": "db9702f3a04cc471ec8c70e881825db26ac5f186",
  4734. "shasum": ""
  4735. },
  4736. "require": {
  4737. "php": ">=8.2",
  4738. "psr/log": "^1|^2|^3",
  4739. "symfony/deprecation-contracts": "^2.5|^3",
  4740. "symfony/error-handler": "^6.4|^7.0",
  4741. "symfony/event-dispatcher": "^6.4|^7.0",
  4742. "symfony/http-foundation": "^6.4|^7.0",
  4743. "symfony/polyfill-ctype": "^1.8"
  4744. },
  4745. "conflict": {
  4746. "symfony/browser-kit": "<6.4",
  4747. "symfony/cache": "<6.4",
  4748. "symfony/config": "<6.4",
  4749. "symfony/console": "<6.4",
  4750. "symfony/dependency-injection": "<6.4",
  4751. "symfony/doctrine-bridge": "<6.4",
  4752. "symfony/form": "<6.4",
  4753. "symfony/http-client": "<6.4",
  4754. "symfony/http-client-contracts": "<2.5",
  4755. "symfony/mailer": "<6.4",
  4756. "symfony/messenger": "<6.4",
  4757. "symfony/translation": "<6.4",
  4758. "symfony/translation-contracts": "<2.5",
  4759. "symfony/twig-bridge": "<6.4",
  4760. "symfony/validator": "<6.4",
  4761. "symfony/var-dumper": "<6.4",
  4762. "twig/twig": "<3.0.4"
  4763. },
  4764. "provide": {
  4765. "psr/log-implementation": "1.0|2.0|3.0"
  4766. },
  4767. "require-dev": {
  4768. "psr/cache": "^1.0|^2.0|^3.0",
  4769. "symfony/browser-kit": "^6.4|^7.0",
  4770. "symfony/clock": "^6.4|^7.0",
  4771. "symfony/config": "^6.4|^7.0",
  4772. "symfony/console": "^6.4|^7.0",
  4773. "symfony/css-selector": "^6.4|^7.0",
  4774. "symfony/dependency-injection": "^6.4|^7.0",
  4775. "symfony/dom-crawler": "^6.4|^7.0",
  4776. "symfony/expression-language": "^6.4|^7.0",
  4777. "symfony/finder": "^6.4|^7.0",
  4778. "symfony/http-client-contracts": "^2.5|^3",
  4779. "symfony/process": "^6.4|^7.0",
  4780. "symfony/property-access": "^7.1",
  4781. "symfony/routing": "^6.4|^7.0",
  4782. "symfony/serializer": "^7.1",
  4783. "symfony/stopwatch": "^6.4|^7.0",
  4784. "symfony/translation": "^6.4|^7.0",
  4785. "symfony/translation-contracts": "^2.5|^3",
  4786. "symfony/uid": "^6.4|^7.0",
  4787. "symfony/validator": "^6.4|^7.0",
  4788. "symfony/var-dumper": "^6.4|^7.0",
  4789. "symfony/var-exporter": "^6.4|^7.0",
  4790. "twig/twig": "^3.0.4"
  4791. },
  4792. "type": "library",
  4793. "autoload": {
  4794. "psr-4": {
  4795. "Symfony\\Component\\HttpKernel\\": ""
  4796. },
  4797. "exclude-from-classmap": [
  4798. "/Tests/"
  4799. ]
  4800. },
  4801. "notification-url": "https://packagist.org/downloads/",
  4802. "license": [
  4803. "MIT"
  4804. ],
  4805. "authors": [
  4806. {
  4807. "name": "Fabien Potencier",
  4808. "email": "fabien@symfony.com"
  4809. },
  4810. {
  4811. "name": "Symfony Community",
  4812. "homepage": "https://symfony.com/contributors"
  4813. }
  4814. ],
  4815. "description": "Provides a structured process for converting a Request into a Response",
  4816. "homepage": "https://symfony.com",
  4817. "support": {
  4818. "source": "https://github.com/symfony/http-kernel/tree/v7.1.3"
  4819. },
  4820. "funding": [
  4821. {
  4822. "url": "https://symfony.com/sponsor",
  4823. "type": "custom"
  4824. },
  4825. {
  4826. "url": "https://github.com/fabpot",
  4827. "type": "github"
  4828. },
  4829. {
  4830. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4831. "type": "tidelift"
  4832. }
  4833. ],
  4834. "time": "2024-07-26T14:58:15+00:00"
  4835. },
  4836. {
  4837. "name": "symfony/mailer",
  4838. "version": "v7.1.2",
  4839. "source": {
  4840. "type": "git",
  4841. "url": "https://github.com/symfony/mailer.git",
  4842. "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee"
  4843. },
  4844. "dist": {
  4845. "type": "zip",
  4846. "url": "https://api.github.com/repos/symfony/mailer/zipball/8fcff0af9043c8f8a8e229437cea363e282f9aee",
  4847. "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee",
  4848. "shasum": ""
  4849. },
  4850. "require": {
  4851. "egulias/email-validator": "^2.1.10|^3|^4",
  4852. "php": ">=8.2",
  4853. "psr/event-dispatcher": "^1",
  4854. "psr/log": "^1|^2|^3",
  4855. "symfony/event-dispatcher": "^6.4|^7.0",
  4856. "symfony/mime": "^6.4|^7.0",
  4857. "symfony/service-contracts": "^2.5|^3"
  4858. },
  4859. "conflict": {
  4860. "symfony/http-client-contracts": "<2.5",
  4861. "symfony/http-kernel": "<6.4",
  4862. "symfony/messenger": "<6.4",
  4863. "symfony/mime": "<6.4",
  4864. "symfony/twig-bridge": "<6.4"
  4865. },
  4866. "require-dev": {
  4867. "symfony/console": "^6.4|^7.0",
  4868. "symfony/http-client": "^6.4|^7.0",
  4869. "symfony/messenger": "^6.4|^7.0",
  4870. "symfony/twig-bridge": "^6.4|^7.0"
  4871. },
  4872. "type": "library",
  4873. "autoload": {
  4874. "psr-4": {
  4875. "Symfony\\Component\\Mailer\\": ""
  4876. },
  4877. "exclude-from-classmap": [
  4878. "/Tests/"
  4879. ]
  4880. },
  4881. "notification-url": "https://packagist.org/downloads/",
  4882. "license": [
  4883. "MIT"
  4884. ],
  4885. "authors": [
  4886. {
  4887. "name": "Fabien Potencier",
  4888. "email": "fabien@symfony.com"
  4889. },
  4890. {
  4891. "name": "Symfony Community",
  4892. "homepage": "https://symfony.com/contributors"
  4893. }
  4894. ],
  4895. "description": "Helps sending emails",
  4896. "homepage": "https://symfony.com",
  4897. "support": {
  4898. "source": "https://github.com/symfony/mailer/tree/v7.1.2"
  4899. },
  4900. "funding": [
  4901. {
  4902. "url": "https://symfony.com/sponsor",
  4903. "type": "custom"
  4904. },
  4905. {
  4906. "url": "https://github.com/fabpot",
  4907. "type": "github"
  4908. },
  4909. {
  4910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4911. "type": "tidelift"
  4912. }
  4913. ],
  4914. "time": "2024-06-28T08:00:31+00:00"
  4915. },
  4916. {
  4917. "name": "symfony/mime",
  4918. "version": "v7.1.2",
  4919. "source": {
  4920. "type": "git",
  4921. "url": "https://github.com/symfony/mime.git",
  4922. "reference": "26a00b85477e69a4bab63b66c5dce64f18b0cbfc"
  4923. },
  4924. "dist": {
  4925. "type": "zip",
  4926. "url": "https://api.github.com/repos/symfony/mime/zipball/26a00b85477e69a4bab63b66c5dce64f18b0cbfc",
  4927. "reference": "26a00b85477e69a4bab63b66c5dce64f18b0cbfc",
  4928. "shasum": ""
  4929. },
  4930. "require": {
  4931. "php": ">=8.2",
  4932. "symfony/polyfill-intl-idn": "^1.10",
  4933. "symfony/polyfill-mbstring": "^1.0"
  4934. },
  4935. "conflict": {
  4936. "egulias/email-validator": "~3.0.0",
  4937. "phpdocumentor/reflection-docblock": "<3.2.2",
  4938. "phpdocumentor/type-resolver": "<1.4.0",
  4939. "symfony/mailer": "<6.4",
  4940. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4941. },
  4942. "require-dev": {
  4943. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4944. "league/html-to-markdown": "^5.0",
  4945. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4946. "symfony/dependency-injection": "^6.4|^7.0",
  4947. "symfony/process": "^6.4|^7.0",
  4948. "symfony/property-access": "^6.4|^7.0",
  4949. "symfony/property-info": "^6.4|^7.0",
  4950. "symfony/serializer": "^6.4.3|^7.0.3"
  4951. },
  4952. "type": "library",
  4953. "autoload": {
  4954. "psr-4": {
  4955. "Symfony\\Component\\Mime\\": ""
  4956. },
  4957. "exclude-from-classmap": [
  4958. "/Tests/"
  4959. ]
  4960. },
  4961. "notification-url": "https://packagist.org/downloads/",
  4962. "license": [
  4963. "MIT"
  4964. ],
  4965. "authors": [
  4966. {
  4967. "name": "Fabien Potencier",
  4968. "email": "fabien@symfony.com"
  4969. },
  4970. {
  4971. "name": "Symfony Community",
  4972. "homepage": "https://symfony.com/contributors"
  4973. }
  4974. ],
  4975. "description": "Allows manipulating MIME messages",
  4976. "homepage": "https://symfony.com",
  4977. "keywords": [
  4978. "mime",
  4979. "mime-type"
  4980. ],
  4981. "support": {
  4982. "source": "https://github.com/symfony/mime/tree/v7.1.2"
  4983. },
  4984. "funding": [
  4985. {
  4986. "url": "https://symfony.com/sponsor",
  4987. "type": "custom"
  4988. },
  4989. {
  4990. "url": "https://github.com/fabpot",
  4991. "type": "github"
  4992. },
  4993. {
  4994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4995. "type": "tidelift"
  4996. }
  4997. ],
  4998. "time": "2024-06-28T10:03:55+00:00"
  4999. },
  5000. {
  5001. "name": "symfony/monolog-bridge",
  5002. "version": "v7.1.1",
  5003. "source": {
  5004. "type": "git",
  5005. "url": "https://github.com/symfony/monolog-bridge.git",
  5006. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8"
  5007. },
  5008. "dist": {
  5009. "type": "zip",
  5010. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  5011. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  5012. "shasum": ""
  5013. },
  5014. "require": {
  5015. "monolog/monolog": "^3",
  5016. "php": ">=8.2",
  5017. "symfony/http-kernel": "^6.4|^7.0",
  5018. "symfony/service-contracts": "^2.5|^3"
  5019. },
  5020. "conflict": {
  5021. "symfony/console": "<6.4",
  5022. "symfony/http-foundation": "<6.4",
  5023. "symfony/security-core": "<6.4"
  5024. },
  5025. "require-dev": {
  5026. "symfony/console": "^6.4|^7.0",
  5027. "symfony/http-client": "^6.4|^7.0",
  5028. "symfony/mailer": "^6.4|^7.0",
  5029. "symfony/messenger": "^6.4|^7.0",
  5030. "symfony/mime": "^6.4|^7.0",
  5031. "symfony/security-core": "^6.4|^7.0",
  5032. "symfony/var-dumper": "^6.4|^7.0"
  5033. },
  5034. "type": "symfony-bridge",
  5035. "autoload": {
  5036. "psr-4": {
  5037. "Symfony\\Bridge\\Monolog\\": ""
  5038. },
  5039. "exclude-from-classmap": [
  5040. "/Tests/"
  5041. ]
  5042. },
  5043. "notification-url": "https://packagist.org/downloads/",
  5044. "license": [
  5045. "MIT"
  5046. ],
  5047. "authors": [
  5048. {
  5049. "name": "Fabien Potencier",
  5050. "email": "fabien@symfony.com"
  5051. },
  5052. {
  5053. "name": "Symfony Community",
  5054. "homepage": "https://symfony.com/contributors"
  5055. }
  5056. ],
  5057. "description": "Provides integration for Monolog with various Symfony components",
  5058. "homepage": "https://symfony.com",
  5059. "support": {
  5060. "source": "https://github.com/symfony/monolog-bridge/tree/v7.1.1"
  5061. },
  5062. "funding": [
  5063. {
  5064. "url": "https://symfony.com/sponsor",
  5065. "type": "custom"
  5066. },
  5067. {
  5068. "url": "https://github.com/fabpot",
  5069. "type": "github"
  5070. },
  5071. {
  5072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5073. "type": "tidelift"
  5074. }
  5075. ],
  5076. "time": "2024-05-31T14:57:53+00:00"
  5077. },
  5078. {
  5079. "name": "symfony/monolog-bundle",
  5080. "version": "v3.10.0",
  5081. "source": {
  5082. "type": "git",
  5083. "url": "https://github.com/symfony/monolog-bundle.git",
  5084. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  5085. },
  5086. "dist": {
  5087. "type": "zip",
  5088. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5089. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5090. "shasum": ""
  5091. },
  5092. "require": {
  5093. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5094. "php": ">=7.2.5",
  5095. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  5096. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  5097. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  5098. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  5099. },
  5100. "require-dev": {
  5101. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  5102. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  5103. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  5104. },
  5105. "type": "symfony-bundle",
  5106. "extra": {
  5107. "branch-alias": {
  5108. "dev-master": "3.x-dev"
  5109. }
  5110. },
  5111. "autoload": {
  5112. "psr-4": {
  5113. "Symfony\\Bundle\\MonologBundle\\": ""
  5114. },
  5115. "exclude-from-classmap": [
  5116. "/Tests/"
  5117. ]
  5118. },
  5119. "notification-url": "https://packagist.org/downloads/",
  5120. "license": [
  5121. "MIT"
  5122. ],
  5123. "authors": [
  5124. {
  5125. "name": "Fabien Potencier",
  5126. "email": "fabien@symfony.com"
  5127. },
  5128. {
  5129. "name": "Symfony Community",
  5130. "homepage": "https://symfony.com/contributors"
  5131. }
  5132. ],
  5133. "description": "Symfony MonologBundle",
  5134. "homepage": "https://symfony.com",
  5135. "keywords": [
  5136. "log",
  5137. "logging"
  5138. ],
  5139. "support": {
  5140. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5141. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  5142. },
  5143. "funding": [
  5144. {
  5145. "url": "https://symfony.com/sponsor",
  5146. "type": "custom"
  5147. },
  5148. {
  5149. "url": "https://github.com/fabpot",
  5150. "type": "github"
  5151. },
  5152. {
  5153. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5154. "type": "tidelift"
  5155. }
  5156. ],
  5157. "time": "2023-11-06T17:08:13+00:00"
  5158. },
  5159. {
  5160. "name": "symfony/options-resolver",
  5161. "version": "v7.1.1",
  5162. "source": {
  5163. "type": "git",
  5164. "url": "https://github.com/symfony/options-resolver.git",
  5165. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55"
  5166. },
  5167. "dist": {
  5168. "type": "zip",
  5169. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  5170. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  5171. "shasum": ""
  5172. },
  5173. "require": {
  5174. "php": ">=8.2",
  5175. "symfony/deprecation-contracts": "^2.5|^3"
  5176. },
  5177. "type": "library",
  5178. "autoload": {
  5179. "psr-4": {
  5180. "Symfony\\Component\\OptionsResolver\\": ""
  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": "Provides an improved replacement for the array_replace PHP function",
  5201. "homepage": "https://symfony.com",
  5202. "keywords": [
  5203. "config",
  5204. "configuration",
  5205. "options"
  5206. ],
  5207. "support": {
  5208. "source": "https://github.com/symfony/options-resolver/tree/v7.1.1"
  5209. },
  5210. "funding": [
  5211. {
  5212. "url": "https://symfony.com/sponsor",
  5213. "type": "custom"
  5214. },
  5215. {
  5216. "url": "https://github.com/fabpot",
  5217. "type": "github"
  5218. },
  5219. {
  5220. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5221. "type": "tidelift"
  5222. }
  5223. ],
  5224. "time": "2024-05-31T14:57:53+00:00"
  5225. },
  5226. {
  5227. "name": "symfony/password-hasher",
  5228. "version": "v7.1.1",
  5229. "source": {
  5230. "type": "git",
  5231. "url": "https://github.com/symfony/password-hasher.git",
  5232. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662"
  5233. },
  5234. "dist": {
  5235. "type": "zip",
  5236. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  5237. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  5238. "shasum": ""
  5239. },
  5240. "require": {
  5241. "php": ">=8.2"
  5242. },
  5243. "conflict": {
  5244. "symfony/security-core": "<6.4"
  5245. },
  5246. "require-dev": {
  5247. "symfony/console": "^6.4|^7.0",
  5248. "symfony/security-core": "^6.4|^7.0"
  5249. },
  5250. "type": "library",
  5251. "autoload": {
  5252. "psr-4": {
  5253. "Symfony\\Component\\PasswordHasher\\": ""
  5254. },
  5255. "exclude-from-classmap": [
  5256. "/Tests/"
  5257. ]
  5258. },
  5259. "notification-url": "https://packagist.org/downloads/",
  5260. "license": [
  5261. "MIT"
  5262. ],
  5263. "authors": [
  5264. {
  5265. "name": "Robin Chalas",
  5266. "email": "robin.chalas@gmail.com"
  5267. },
  5268. {
  5269. "name": "Symfony Community",
  5270. "homepage": "https://symfony.com/contributors"
  5271. }
  5272. ],
  5273. "description": "Provides password hashing utilities",
  5274. "homepage": "https://symfony.com",
  5275. "keywords": [
  5276. "hashing",
  5277. "password"
  5278. ],
  5279. "support": {
  5280. "source": "https://github.com/symfony/password-hasher/tree/v7.1.1"
  5281. },
  5282. "funding": [
  5283. {
  5284. "url": "https://symfony.com/sponsor",
  5285. "type": "custom"
  5286. },
  5287. {
  5288. "url": "https://github.com/fabpot",
  5289. "type": "github"
  5290. },
  5291. {
  5292. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5293. "type": "tidelift"
  5294. }
  5295. ],
  5296. "time": "2024-05-31T14:57:53+00:00"
  5297. },
  5298. {
  5299. "name": "symfony/polyfill-intl-grapheme",
  5300. "version": "v1.30.0",
  5301. "source": {
  5302. "type": "git",
  5303. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5304. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a"
  5305. },
  5306. "dist": {
  5307. "type": "zip",
  5308. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a",
  5309. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a",
  5310. "shasum": ""
  5311. },
  5312. "require": {
  5313. "php": ">=7.1"
  5314. },
  5315. "suggest": {
  5316. "ext-intl": "For best performance"
  5317. },
  5318. "type": "library",
  5319. "extra": {
  5320. "thanks": {
  5321. "name": "symfony/polyfill",
  5322. "url": "https://github.com/symfony/polyfill"
  5323. }
  5324. },
  5325. "autoload": {
  5326. "files": [
  5327. "bootstrap.php"
  5328. ],
  5329. "psr-4": {
  5330. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5331. }
  5332. },
  5333. "notification-url": "https://packagist.org/downloads/",
  5334. "license": [
  5335. "MIT"
  5336. ],
  5337. "authors": [
  5338. {
  5339. "name": "Nicolas Grekas",
  5340. "email": "p@tchwork.com"
  5341. },
  5342. {
  5343. "name": "Symfony Community",
  5344. "homepage": "https://symfony.com/contributors"
  5345. }
  5346. ],
  5347. "description": "Symfony polyfill for intl's grapheme_* functions",
  5348. "homepage": "https://symfony.com",
  5349. "keywords": [
  5350. "compatibility",
  5351. "grapheme",
  5352. "intl",
  5353. "polyfill",
  5354. "portable",
  5355. "shim"
  5356. ],
  5357. "support": {
  5358. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0"
  5359. },
  5360. "funding": [
  5361. {
  5362. "url": "https://symfony.com/sponsor",
  5363. "type": "custom"
  5364. },
  5365. {
  5366. "url": "https://github.com/fabpot",
  5367. "type": "github"
  5368. },
  5369. {
  5370. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5371. "type": "tidelift"
  5372. }
  5373. ],
  5374. "time": "2024-05-31T15:07:36+00:00"
  5375. },
  5376. {
  5377. "name": "symfony/polyfill-intl-icu",
  5378. "version": "v1.30.0",
  5379. "source": {
  5380. "type": "git",
  5381. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5382. "reference": "e76343c631b453088e2260ac41dfebe21954de81"
  5383. },
  5384. "dist": {
  5385. "type": "zip",
  5386. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e76343c631b453088e2260ac41dfebe21954de81",
  5387. "reference": "e76343c631b453088e2260ac41dfebe21954de81",
  5388. "shasum": ""
  5389. },
  5390. "require": {
  5391. "php": ">=7.1"
  5392. },
  5393. "suggest": {
  5394. "ext-intl": "For best performance and support of other locales than \"en\""
  5395. },
  5396. "type": "library",
  5397. "extra": {
  5398. "thanks": {
  5399. "name": "symfony/polyfill",
  5400. "url": "https://github.com/symfony/polyfill"
  5401. }
  5402. },
  5403. "autoload": {
  5404. "files": [
  5405. "bootstrap.php"
  5406. ],
  5407. "psr-4": {
  5408. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5409. },
  5410. "classmap": [
  5411. "Resources/stubs"
  5412. ],
  5413. "exclude-from-classmap": [
  5414. "/Tests/"
  5415. ]
  5416. },
  5417. "notification-url": "https://packagist.org/downloads/",
  5418. "license": [
  5419. "MIT"
  5420. ],
  5421. "authors": [
  5422. {
  5423. "name": "Nicolas Grekas",
  5424. "email": "p@tchwork.com"
  5425. },
  5426. {
  5427. "name": "Symfony Community",
  5428. "homepage": "https://symfony.com/contributors"
  5429. }
  5430. ],
  5431. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5432. "homepage": "https://symfony.com",
  5433. "keywords": [
  5434. "compatibility",
  5435. "icu",
  5436. "intl",
  5437. "polyfill",
  5438. "portable",
  5439. "shim"
  5440. ],
  5441. "support": {
  5442. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.30.0"
  5443. },
  5444. "funding": [
  5445. {
  5446. "url": "https://symfony.com/sponsor",
  5447. "type": "custom"
  5448. },
  5449. {
  5450. "url": "https://github.com/fabpot",
  5451. "type": "github"
  5452. },
  5453. {
  5454. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5455. "type": "tidelift"
  5456. }
  5457. ],
  5458. "time": "2024-05-31T15:07:36+00:00"
  5459. },
  5460. {
  5461. "name": "symfony/polyfill-intl-idn",
  5462. "version": "v1.30.0",
  5463. "source": {
  5464. "type": "git",
  5465. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5466. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c"
  5467. },
  5468. "dist": {
  5469. "type": "zip",
  5470. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  5471. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  5472. "shasum": ""
  5473. },
  5474. "require": {
  5475. "php": ">=7.1",
  5476. "symfony/polyfill-intl-normalizer": "^1.10",
  5477. "symfony/polyfill-php72": "^1.10"
  5478. },
  5479. "suggest": {
  5480. "ext-intl": "For best performance"
  5481. },
  5482. "type": "library",
  5483. "extra": {
  5484. "thanks": {
  5485. "name": "symfony/polyfill",
  5486. "url": "https://github.com/symfony/polyfill"
  5487. }
  5488. },
  5489. "autoload": {
  5490. "files": [
  5491. "bootstrap.php"
  5492. ],
  5493. "psr-4": {
  5494. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5495. }
  5496. },
  5497. "notification-url": "https://packagist.org/downloads/",
  5498. "license": [
  5499. "MIT"
  5500. ],
  5501. "authors": [
  5502. {
  5503. "name": "Laurent Bassin",
  5504. "email": "laurent@bassin.info"
  5505. },
  5506. {
  5507. "name": "Trevor Rowbotham",
  5508. "email": "trevor.rowbotham@pm.me"
  5509. },
  5510. {
  5511. "name": "Symfony Community",
  5512. "homepage": "https://symfony.com/contributors"
  5513. }
  5514. ],
  5515. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5516. "homepage": "https://symfony.com",
  5517. "keywords": [
  5518. "compatibility",
  5519. "idn",
  5520. "intl",
  5521. "polyfill",
  5522. "portable",
  5523. "shim"
  5524. ],
  5525. "support": {
  5526. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0"
  5527. },
  5528. "funding": [
  5529. {
  5530. "url": "https://symfony.com/sponsor",
  5531. "type": "custom"
  5532. },
  5533. {
  5534. "url": "https://github.com/fabpot",
  5535. "type": "github"
  5536. },
  5537. {
  5538. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5539. "type": "tidelift"
  5540. }
  5541. ],
  5542. "time": "2024-05-31T15:07:36+00:00"
  5543. },
  5544. {
  5545. "name": "symfony/polyfill-intl-normalizer",
  5546. "version": "v1.30.0",
  5547. "source": {
  5548. "type": "git",
  5549. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5550. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb"
  5551. },
  5552. "dist": {
  5553. "type": "zip",
  5554. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  5555. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  5556. "shasum": ""
  5557. },
  5558. "require": {
  5559. "php": ">=7.1"
  5560. },
  5561. "suggest": {
  5562. "ext-intl": "For best performance"
  5563. },
  5564. "type": "library",
  5565. "extra": {
  5566. "thanks": {
  5567. "name": "symfony/polyfill",
  5568. "url": "https://github.com/symfony/polyfill"
  5569. }
  5570. },
  5571. "autoload": {
  5572. "files": [
  5573. "bootstrap.php"
  5574. ],
  5575. "psr-4": {
  5576. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5577. },
  5578. "classmap": [
  5579. "Resources/stubs"
  5580. ]
  5581. },
  5582. "notification-url": "https://packagist.org/downloads/",
  5583. "license": [
  5584. "MIT"
  5585. ],
  5586. "authors": [
  5587. {
  5588. "name": "Nicolas Grekas",
  5589. "email": "p@tchwork.com"
  5590. },
  5591. {
  5592. "name": "Symfony Community",
  5593. "homepage": "https://symfony.com/contributors"
  5594. }
  5595. ],
  5596. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5597. "homepage": "https://symfony.com",
  5598. "keywords": [
  5599. "compatibility",
  5600. "intl",
  5601. "normalizer",
  5602. "polyfill",
  5603. "portable",
  5604. "shim"
  5605. ],
  5606. "support": {
  5607. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0"
  5608. },
  5609. "funding": [
  5610. {
  5611. "url": "https://symfony.com/sponsor",
  5612. "type": "custom"
  5613. },
  5614. {
  5615. "url": "https://github.com/fabpot",
  5616. "type": "github"
  5617. },
  5618. {
  5619. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5620. "type": "tidelift"
  5621. }
  5622. ],
  5623. "time": "2024-05-31T15:07:36+00:00"
  5624. },
  5625. {
  5626. "name": "symfony/polyfill-mbstring",
  5627. "version": "v1.30.0",
  5628. "source": {
  5629. "type": "git",
  5630. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5631. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
  5632. },
  5633. "dist": {
  5634. "type": "zip",
  5635. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  5636. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  5637. "shasum": ""
  5638. },
  5639. "require": {
  5640. "php": ">=7.1"
  5641. },
  5642. "provide": {
  5643. "ext-mbstring": "*"
  5644. },
  5645. "suggest": {
  5646. "ext-mbstring": "For best performance"
  5647. },
  5648. "type": "library",
  5649. "extra": {
  5650. "thanks": {
  5651. "name": "symfony/polyfill",
  5652. "url": "https://github.com/symfony/polyfill"
  5653. }
  5654. },
  5655. "autoload": {
  5656. "files": [
  5657. "bootstrap.php"
  5658. ],
  5659. "psr-4": {
  5660. "Symfony\\Polyfill\\Mbstring\\": ""
  5661. }
  5662. },
  5663. "notification-url": "https://packagist.org/downloads/",
  5664. "license": [
  5665. "MIT"
  5666. ],
  5667. "authors": [
  5668. {
  5669. "name": "Nicolas Grekas",
  5670. "email": "p@tchwork.com"
  5671. },
  5672. {
  5673. "name": "Symfony Community",
  5674. "homepage": "https://symfony.com/contributors"
  5675. }
  5676. ],
  5677. "description": "Symfony polyfill for the Mbstring extension",
  5678. "homepage": "https://symfony.com",
  5679. "keywords": [
  5680. "compatibility",
  5681. "mbstring",
  5682. "polyfill",
  5683. "portable",
  5684. "shim"
  5685. ],
  5686. "support": {
  5687. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0"
  5688. },
  5689. "funding": [
  5690. {
  5691. "url": "https://symfony.com/sponsor",
  5692. "type": "custom"
  5693. },
  5694. {
  5695. "url": "https://github.com/fabpot",
  5696. "type": "github"
  5697. },
  5698. {
  5699. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5700. "type": "tidelift"
  5701. }
  5702. ],
  5703. "time": "2024-06-19T12:30:46+00:00"
  5704. },
  5705. {
  5706. "name": "symfony/polyfill-php72",
  5707. "version": "v1.30.0",
  5708. "source": {
  5709. "type": "git",
  5710. "url": "https://github.com/symfony/polyfill-php72.git",
  5711. "reference": "10112722600777e02d2745716b70c5db4ca70442"
  5712. },
  5713. "dist": {
  5714. "type": "zip",
  5715. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442",
  5716. "reference": "10112722600777e02d2745716b70c5db4ca70442",
  5717. "shasum": ""
  5718. },
  5719. "require": {
  5720. "php": ">=7.1"
  5721. },
  5722. "type": "library",
  5723. "extra": {
  5724. "thanks": {
  5725. "name": "symfony/polyfill",
  5726. "url": "https://github.com/symfony/polyfill"
  5727. }
  5728. },
  5729. "autoload": {
  5730. "files": [
  5731. "bootstrap.php"
  5732. ],
  5733. "psr-4": {
  5734. "Symfony\\Polyfill\\Php72\\": ""
  5735. }
  5736. },
  5737. "notification-url": "https://packagist.org/downloads/",
  5738. "license": [
  5739. "MIT"
  5740. ],
  5741. "authors": [
  5742. {
  5743. "name": "Nicolas Grekas",
  5744. "email": "p@tchwork.com"
  5745. },
  5746. {
  5747. "name": "Symfony Community",
  5748. "homepage": "https://symfony.com/contributors"
  5749. }
  5750. ],
  5751. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5752. "homepage": "https://symfony.com",
  5753. "keywords": [
  5754. "compatibility",
  5755. "polyfill",
  5756. "portable",
  5757. "shim"
  5758. ],
  5759. "support": {
  5760. "source": "https://github.com/symfony/polyfill-php72/tree/v1.30.0"
  5761. },
  5762. "funding": [
  5763. {
  5764. "url": "https://symfony.com/sponsor",
  5765. "type": "custom"
  5766. },
  5767. {
  5768. "url": "https://github.com/fabpot",
  5769. "type": "github"
  5770. },
  5771. {
  5772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5773. "type": "tidelift"
  5774. }
  5775. ],
  5776. "time": "2024-06-19T12:30:46+00:00"
  5777. },
  5778. {
  5779. "name": "symfony/polyfill-php80",
  5780. "version": "v1.30.0",
  5781. "source": {
  5782. "type": "git",
  5783. "url": "https://github.com/symfony/polyfill-php80.git",
  5784. "reference": "77fa7995ac1b21ab60769b7323d600a991a90433"
  5785. },
  5786. "dist": {
  5787. "type": "zip",
  5788. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433",
  5789. "reference": "77fa7995ac1b21ab60769b7323d600a991a90433",
  5790. "shasum": ""
  5791. },
  5792. "require": {
  5793. "php": ">=7.1"
  5794. },
  5795. "type": "library",
  5796. "extra": {
  5797. "thanks": {
  5798. "name": "symfony/polyfill",
  5799. "url": "https://github.com/symfony/polyfill"
  5800. }
  5801. },
  5802. "autoload": {
  5803. "files": [
  5804. "bootstrap.php"
  5805. ],
  5806. "psr-4": {
  5807. "Symfony\\Polyfill\\Php80\\": ""
  5808. },
  5809. "classmap": [
  5810. "Resources/stubs"
  5811. ]
  5812. },
  5813. "notification-url": "https://packagist.org/downloads/",
  5814. "license": [
  5815. "MIT"
  5816. ],
  5817. "authors": [
  5818. {
  5819. "name": "Ion Bazan",
  5820. "email": "ion.bazan@gmail.com"
  5821. },
  5822. {
  5823. "name": "Nicolas Grekas",
  5824. "email": "p@tchwork.com"
  5825. },
  5826. {
  5827. "name": "Symfony Community",
  5828. "homepage": "https://symfony.com/contributors"
  5829. }
  5830. ],
  5831. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5832. "homepage": "https://symfony.com",
  5833. "keywords": [
  5834. "compatibility",
  5835. "polyfill",
  5836. "portable",
  5837. "shim"
  5838. ],
  5839. "support": {
  5840. "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0"
  5841. },
  5842. "funding": [
  5843. {
  5844. "url": "https://symfony.com/sponsor",
  5845. "type": "custom"
  5846. },
  5847. {
  5848. "url": "https://github.com/fabpot",
  5849. "type": "github"
  5850. },
  5851. {
  5852. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5853. "type": "tidelift"
  5854. }
  5855. ],
  5856. "time": "2024-05-31T15:07:36+00:00"
  5857. },
  5858. {
  5859. "name": "symfony/polyfill-php83",
  5860. "version": "v1.30.0",
  5861. "source": {
  5862. "type": "git",
  5863. "url": "https://github.com/symfony/polyfill-php83.git",
  5864. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9"
  5865. },
  5866. "dist": {
  5867. "type": "zip",
  5868. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  5869. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  5870. "shasum": ""
  5871. },
  5872. "require": {
  5873. "php": ">=7.1"
  5874. },
  5875. "type": "library",
  5876. "extra": {
  5877. "thanks": {
  5878. "name": "symfony/polyfill",
  5879. "url": "https://github.com/symfony/polyfill"
  5880. }
  5881. },
  5882. "autoload": {
  5883. "files": [
  5884. "bootstrap.php"
  5885. ],
  5886. "psr-4": {
  5887. "Symfony\\Polyfill\\Php83\\": ""
  5888. },
  5889. "classmap": [
  5890. "Resources/stubs"
  5891. ]
  5892. },
  5893. "notification-url": "https://packagist.org/downloads/",
  5894. "license": [
  5895. "MIT"
  5896. ],
  5897. "authors": [
  5898. {
  5899. "name": "Nicolas Grekas",
  5900. "email": "p@tchwork.com"
  5901. },
  5902. {
  5903. "name": "Symfony Community",
  5904. "homepage": "https://symfony.com/contributors"
  5905. }
  5906. ],
  5907. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5908. "homepage": "https://symfony.com",
  5909. "keywords": [
  5910. "compatibility",
  5911. "polyfill",
  5912. "portable",
  5913. "shim"
  5914. ],
  5915. "support": {
  5916. "source": "https://github.com/symfony/polyfill-php83/tree/v1.30.0"
  5917. },
  5918. "funding": [
  5919. {
  5920. "url": "https://symfony.com/sponsor",
  5921. "type": "custom"
  5922. },
  5923. {
  5924. "url": "https://github.com/fabpot",
  5925. "type": "github"
  5926. },
  5927. {
  5928. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5929. "type": "tidelift"
  5930. }
  5931. ],
  5932. "time": "2024-06-19T12:35:24+00:00"
  5933. },
  5934. {
  5935. "name": "symfony/process",
  5936. "version": "v7.1.3",
  5937. "source": {
  5938. "type": "git",
  5939. "url": "https://github.com/symfony/process.git",
  5940. "reference": "7f2f542c668ad6c313dc4a5e9c3321f733197eca"
  5941. },
  5942. "dist": {
  5943. "type": "zip",
  5944. "url": "https://api.github.com/repos/symfony/process/zipball/7f2f542c668ad6c313dc4a5e9c3321f733197eca",
  5945. "reference": "7f2f542c668ad6c313dc4a5e9c3321f733197eca",
  5946. "shasum": ""
  5947. },
  5948. "require": {
  5949. "php": ">=8.2"
  5950. },
  5951. "type": "library",
  5952. "autoload": {
  5953. "psr-4": {
  5954. "Symfony\\Component\\Process\\": ""
  5955. },
  5956. "exclude-from-classmap": [
  5957. "/Tests/"
  5958. ]
  5959. },
  5960. "notification-url": "https://packagist.org/downloads/",
  5961. "license": [
  5962. "MIT"
  5963. ],
  5964. "authors": [
  5965. {
  5966. "name": "Fabien Potencier",
  5967. "email": "fabien@symfony.com"
  5968. },
  5969. {
  5970. "name": "Symfony Community",
  5971. "homepage": "https://symfony.com/contributors"
  5972. }
  5973. ],
  5974. "description": "Executes commands in sub-processes",
  5975. "homepage": "https://symfony.com",
  5976. "support": {
  5977. "source": "https://github.com/symfony/process/tree/v7.1.3"
  5978. },
  5979. "funding": [
  5980. {
  5981. "url": "https://symfony.com/sponsor",
  5982. "type": "custom"
  5983. },
  5984. {
  5985. "url": "https://github.com/fabpot",
  5986. "type": "github"
  5987. },
  5988. {
  5989. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5990. "type": "tidelift"
  5991. }
  5992. ],
  5993. "time": "2024-07-26T12:44:47+00:00"
  5994. },
  5995. {
  5996. "name": "symfony/property-access",
  5997. "version": "v7.1.1",
  5998. "source": {
  5999. "type": "git",
  6000. "url": "https://github.com/symfony/property-access.git",
  6001. "reference": "74e39e6a6276b8e384f34c6ddbc10a6c9a60193a"
  6002. },
  6003. "dist": {
  6004. "type": "zip",
  6005. "url": "https://api.github.com/repos/symfony/property-access/zipball/74e39e6a6276b8e384f34c6ddbc10a6c9a60193a",
  6006. "reference": "74e39e6a6276b8e384f34c6ddbc10a6c9a60193a",
  6007. "shasum": ""
  6008. },
  6009. "require": {
  6010. "php": ">=8.2",
  6011. "symfony/property-info": "^6.4|^7.0"
  6012. },
  6013. "require-dev": {
  6014. "symfony/cache": "^6.4|^7.0"
  6015. },
  6016. "type": "library",
  6017. "autoload": {
  6018. "psr-4": {
  6019. "Symfony\\Component\\PropertyAccess\\": ""
  6020. },
  6021. "exclude-from-classmap": [
  6022. "/Tests/"
  6023. ]
  6024. },
  6025. "notification-url": "https://packagist.org/downloads/",
  6026. "license": [
  6027. "MIT"
  6028. ],
  6029. "authors": [
  6030. {
  6031. "name": "Fabien Potencier",
  6032. "email": "fabien@symfony.com"
  6033. },
  6034. {
  6035. "name": "Symfony Community",
  6036. "homepage": "https://symfony.com/contributors"
  6037. }
  6038. ],
  6039. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6040. "homepage": "https://symfony.com",
  6041. "keywords": [
  6042. "access",
  6043. "array",
  6044. "extraction",
  6045. "index",
  6046. "injection",
  6047. "object",
  6048. "property",
  6049. "property-path",
  6050. "reflection"
  6051. ],
  6052. "support": {
  6053. "source": "https://github.com/symfony/property-access/tree/v7.1.1"
  6054. },
  6055. "funding": [
  6056. {
  6057. "url": "https://symfony.com/sponsor",
  6058. "type": "custom"
  6059. },
  6060. {
  6061. "url": "https://github.com/fabpot",
  6062. "type": "github"
  6063. },
  6064. {
  6065. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6066. "type": "tidelift"
  6067. }
  6068. ],
  6069. "time": "2024-05-31T14:57:53+00:00"
  6070. },
  6071. {
  6072. "name": "symfony/property-info",
  6073. "version": "v7.1.3",
  6074. "source": {
  6075. "type": "git",
  6076. "url": "https://github.com/symfony/property-info.git",
  6077. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b"
  6078. },
  6079. "dist": {
  6080. "type": "zip",
  6081. "url": "https://api.github.com/repos/symfony/property-info/zipball/88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  6082. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  6083. "shasum": ""
  6084. },
  6085. "require": {
  6086. "php": ">=8.2",
  6087. "symfony/string": "^6.4|^7.0",
  6088. "symfony/type-info": "^7.1"
  6089. },
  6090. "conflict": {
  6091. "phpdocumentor/reflection-docblock": "<5.2",
  6092. "phpdocumentor/type-resolver": "<1.5.1",
  6093. "symfony/dependency-injection": "<6.4",
  6094. "symfony/serializer": "<6.4"
  6095. },
  6096. "require-dev": {
  6097. "phpdocumentor/reflection-docblock": "^5.2",
  6098. "phpstan/phpdoc-parser": "^1.0",
  6099. "symfony/cache": "^6.4|^7.0",
  6100. "symfony/dependency-injection": "^6.4|^7.0",
  6101. "symfony/serializer": "^6.4|^7.0"
  6102. },
  6103. "type": "library",
  6104. "autoload": {
  6105. "psr-4": {
  6106. "Symfony\\Component\\PropertyInfo\\": ""
  6107. },
  6108. "exclude-from-classmap": [
  6109. "/Tests/"
  6110. ]
  6111. },
  6112. "notification-url": "https://packagist.org/downloads/",
  6113. "license": [
  6114. "MIT"
  6115. ],
  6116. "authors": [
  6117. {
  6118. "name": "Kévin Dunglas",
  6119. "email": "dunglas@gmail.com"
  6120. },
  6121. {
  6122. "name": "Symfony Community",
  6123. "homepage": "https://symfony.com/contributors"
  6124. }
  6125. ],
  6126. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6127. "homepage": "https://symfony.com",
  6128. "keywords": [
  6129. "doctrine",
  6130. "phpdoc",
  6131. "property",
  6132. "symfony",
  6133. "type",
  6134. "validator"
  6135. ],
  6136. "support": {
  6137. "source": "https://github.com/symfony/property-info/tree/v7.1.3"
  6138. },
  6139. "funding": [
  6140. {
  6141. "url": "https://symfony.com/sponsor",
  6142. "type": "custom"
  6143. },
  6144. {
  6145. "url": "https://github.com/fabpot",
  6146. "type": "github"
  6147. },
  6148. {
  6149. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6150. "type": "tidelift"
  6151. }
  6152. ],
  6153. "time": "2024-07-26T07:36:36+00:00"
  6154. },
  6155. {
  6156. "name": "symfony/routing",
  6157. "version": "v7.1.3",
  6158. "source": {
  6159. "type": "git",
  6160. "url": "https://github.com/symfony/routing.git",
  6161. "reference": "8a908a3f22d5a1b5d297578c2ceb41b02fa916d0"
  6162. },
  6163. "dist": {
  6164. "type": "zip",
  6165. "url": "https://api.github.com/repos/symfony/routing/zipball/8a908a3f22d5a1b5d297578c2ceb41b02fa916d0",
  6166. "reference": "8a908a3f22d5a1b5d297578c2ceb41b02fa916d0",
  6167. "shasum": ""
  6168. },
  6169. "require": {
  6170. "php": ">=8.2",
  6171. "symfony/deprecation-contracts": "^2.5|^3"
  6172. },
  6173. "conflict": {
  6174. "symfony/config": "<6.4",
  6175. "symfony/dependency-injection": "<6.4",
  6176. "symfony/yaml": "<6.4"
  6177. },
  6178. "require-dev": {
  6179. "psr/log": "^1|^2|^3",
  6180. "symfony/config": "^6.4|^7.0",
  6181. "symfony/dependency-injection": "^6.4|^7.0",
  6182. "symfony/expression-language": "^6.4|^7.0",
  6183. "symfony/http-foundation": "^6.4|^7.0",
  6184. "symfony/yaml": "^6.4|^7.0"
  6185. },
  6186. "type": "library",
  6187. "autoload": {
  6188. "psr-4": {
  6189. "Symfony\\Component\\Routing\\": ""
  6190. },
  6191. "exclude-from-classmap": [
  6192. "/Tests/"
  6193. ]
  6194. },
  6195. "notification-url": "https://packagist.org/downloads/",
  6196. "license": [
  6197. "MIT"
  6198. ],
  6199. "authors": [
  6200. {
  6201. "name": "Fabien Potencier",
  6202. "email": "fabien@symfony.com"
  6203. },
  6204. {
  6205. "name": "Symfony Community",
  6206. "homepage": "https://symfony.com/contributors"
  6207. }
  6208. ],
  6209. "description": "Maps an HTTP request to a set of configuration variables",
  6210. "homepage": "https://symfony.com",
  6211. "keywords": [
  6212. "router",
  6213. "routing",
  6214. "uri",
  6215. "url"
  6216. ],
  6217. "support": {
  6218. "source": "https://github.com/symfony/routing/tree/v7.1.3"
  6219. },
  6220. "funding": [
  6221. {
  6222. "url": "https://symfony.com/sponsor",
  6223. "type": "custom"
  6224. },
  6225. {
  6226. "url": "https://github.com/fabpot",
  6227. "type": "github"
  6228. },
  6229. {
  6230. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6231. "type": "tidelift"
  6232. }
  6233. ],
  6234. "time": "2024-07-17T06:10:24+00:00"
  6235. },
  6236. {
  6237. "name": "symfony/runtime",
  6238. "version": "v7.1.1",
  6239. "source": {
  6240. "type": "git",
  6241. "url": "https://github.com/symfony/runtime.git",
  6242. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6"
  6243. },
  6244. "dist": {
  6245. "type": "zip",
  6246. "url": "https://api.github.com/repos/symfony/runtime/zipball/ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  6247. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  6248. "shasum": ""
  6249. },
  6250. "require": {
  6251. "composer-plugin-api": "^1.0|^2.0",
  6252. "php": ">=8.2"
  6253. },
  6254. "conflict": {
  6255. "symfony/dotenv": "<6.4"
  6256. },
  6257. "require-dev": {
  6258. "composer/composer": "^2.6",
  6259. "symfony/console": "^6.4|^7.0",
  6260. "symfony/dotenv": "^6.4|^7.0",
  6261. "symfony/http-foundation": "^6.4|^7.0",
  6262. "symfony/http-kernel": "^6.4|^7.0"
  6263. },
  6264. "type": "composer-plugin",
  6265. "extra": {
  6266. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6267. },
  6268. "autoload": {
  6269. "psr-4": {
  6270. "Symfony\\Component\\Runtime\\": "",
  6271. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6272. },
  6273. "exclude-from-classmap": [
  6274. "/Tests/"
  6275. ]
  6276. },
  6277. "notification-url": "https://packagist.org/downloads/",
  6278. "license": [
  6279. "MIT"
  6280. ],
  6281. "authors": [
  6282. {
  6283. "name": "Nicolas Grekas",
  6284. "email": "p@tchwork.com"
  6285. },
  6286. {
  6287. "name": "Symfony Community",
  6288. "homepage": "https://symfony.com/contributors"
  6289. }
  6290. ],
  6291. "description": "Enables decoupling PHP applications from global state",
  6292. "homepage": "https://symfony.com",
  6293. "keywords": [
  6294. "runtime"
  6295. ],
  6296. "support": {
  6297. "source": "https://github.com/symfony/runtime/tree/v7.1.1"
  6298. },
  6299. "funding": [
  6300. {
  6301. "url": "https://symfony.com/sponsor",
  6302. "type": "custom"
  6303. },
  6304. {
  6305. "url": "https://github.com/fabpot",
  6306. "type": "github"
  6307. },
  6308. {
  6309. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6310. "type": "tidelift"
  6311. }
  6312. ],
  6313. "time": "2024-05-31T14:55:39+00:00"
  6314. },
  6315. {
  6316. "name": "symfony/security-bundle",
  6317. "version": "v7.1.3",
  6318. "source": {
  6319. "type": "git",
  6320. "url": "https://github.com/symfony/security-bundle.git",
  6321. "reference": "4f77a89e21c2e700b5fbbf3c1eccd71b9a5d69ad"
  6322. },
  6323. "dist": {
  6324. "type": "zip",
  6325. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/4f77a89e21c2e700b5fbbf3c1eccd71b9a5d69ad",
  6326. "reference": "4f77a89e21c2e700b5fbbf3c1eccd71b9a5d69ad",
  6327. "shasum": ""
  6328. },
  6329. "require": {
  6330. "composer-runtime-api": ">=2.1",
  6331. "ext-xml": "*",
  6332. "php": ">=8.2",
  6333. "symfony/clock": "^6.4|^7.0",
  6334. "symfony/config": "^6.4|^7.0",
  6335. "symfony/dependency-injection": "^6.4|^7.0",
  6336. "symfony/event-dispatcher": "^6.4|^7.0",
  6337. "symfony/http-foundation": "^6.4|^7.0",
  6338. "symfony/http-kernel": "^6.4|^7.0",
  6339. "symfony/password-hasher": "^6.4|^7.0",
  6340. "symfony/security-core": "^6.4|^7.0",
  6341. "symfony/security-csrf": "^6.4|^7.0",
  6342. "symfony/security-http": "^7.1",
  6343. "symfony/service-contracts": "^2.5|^3"
  6344. },
  6345. "conflict": {
  6346. "symfony/browser-kit": "<6.4",
  6347. "symfony/console": "<6.4",
  6348. "symfony/framework-bundle": "<6.4",
  6349. "symfony/http-client": "<6.4",
  6350. "symfony/ldap": "<6.4",
  6351. "symfony/serializer": "<6.4",
  6352. "symfony/twig-bundle": "<6.4",
  6353. "symfony/validator": "<6.4"
  6354. },
  6355. "require-dev": {
  6356. "symfony/asset": "^6.4|^7.0",
  6357. "symfony/browser-kit": "^6.4|^7.0",
  6358. "symfony/console": "^6.4|^7.0",
  6359. "symfony/css-selector": "^6.4|^7.0",
  6360. "symfony/dom-crawler": "^6.4|^7.0",
  6361. "symfony/expression-language": "^6.4|^7.0",
  6362. "symfony/form": "^6.4|^7.0",
  6363. "symfony/framework-bundle": "^6.4|^7.0",
  6364. "symfony/http-client": "^6.4|^7.0",
  6365. "symfony/ldap": "^6.4|^7.0",
  6366. "symfony/process": "^6.4|^7.0",
  6367. "symfony/rate-limiter": "^6.4|^7.0",
  6368. "symfony/serializer": "^6.4|^7.0",
  6369. "symfony/translation": "^6.4|^7.0",
  6370. "symfony/twig-bridge": "^6.4|^7.0",
  6371. "symfony/twig-bundle": "^6.4|^7.0",
  6372. "symfony/validator": "^6.4|^7.0",
  6373. "symfony/yaml": "^6.4|^7.0",
  6374. "twig/twig": "^3.0.4",
  6375. "web-token/jwt-library": "^3.3.2|^4.0"
  6376. },
  6377. "type": "symfony-bundle",
  6378. "autoload": {
  6379. "psr-4": {
  6380. "Symfony\\Bundle\\SecurityBundle\\": ""
  6381. },
  6382. "exclude-from-classmap": [
  6383. "/Tests/"
  6384. ]
  6385. },
  6386. "notification-url": "https://packagist.org/downloads/",
  6387. "license": [
  6388. "MIT"
  6389. ],
  6390. "authors": [
  6391. {
  6392. "name": "Fabien Potencier",
  6393. "email": "fabien@symfony.com"
  6394. },
  6395. {
  6396. "name": "Symfony Community",
  6397. "homepage": "https://symfony.com/contributors"
  6398. }
  6399. ],
  6400. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6401. "homepage": "https://symfony.com",
  6402. "support": {
  6403. "source": "https://github.com/symfony/security-bundle/tree/v7.1.3"
  6404. },
  6405. "funding": [
  6406. {
  6407. "url": "https://symfony.com/sponsor",
  6408. "type": "custom"
  6409. },
  6410. {
  6411. "url": "https://github.com/fabpot",
  6412. "type": "github"
  6413. },
  6414. {
  6415. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6416. "type": "tidelift"
  6417. }
  6418. ],
  6419. "time": "2024-07-26T07:24:20+00:00"
  6420. },
  6421. {
  6422. "name": "symfony/security-core",
  6423. "version": "v7.1.3",
  6424. "source": {
  6425. "type": "git",
  6426. "url": "https://github.com/symfony/security-core.git",
  6427. "reference": "aa4f432586a129017ce0ba34e2b1bfe6babfe8c7"
  6428. },
  6429. "dist": {
  6430. "type": "zip",
  6431. "url": "https://api.github.com/repos/symfony/security-core/zipball/aa4f432586a129017ce0ba34e2b1bfe6babfe8c7",
  6432. "reference": "aa4f432586a129017ce0ba34e2b1bfe6babfe8c7",
  6433. "shasum": ""
  6434. },
  6435. "require": {
  6436. "php": ">=8.2",
  6437. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6438. "symfony/password-hasher": "^6.4|^7.0",
  6439. "symfony/service-contracts": "^2.5|^3"
  6440. },
  6441. "conflict": {
  6442. "symfony/dependency-injection": "<6.4",
  6443. "symfony/event-dispatcher": "<6.4",
  6444. "symfony/http-foundation": "<6.4",
  6445. "symfony/ldap": "<6.4",
  6446. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  6447. "symfony/validator": "<6.4"
  6448. },
  6449. "require-dev": {
  6450. "psr/cache": "^1.0|^2.0|^3.0",
  6451. "psr/container": "^1.1|^2.0",
  6452. "psr/log": "^1|^2|^3",
  6453. "symfony/cache": "^6.4|^7.0",
  6454. "symfony/dependency-injection": "^6.4|^7.0",
  6455. "symfony/event-dispatcher": "^6.4|^7.0",
  6456. "symfony/expression-language": "^6.4|^7.0",
  6457. "symfony/http-foundation": "^6.4|^7.0",
  6458. "symfony/ldap": "^6.4|^7.0",
  6459. "symfony/string": "^6.4|^7.0",
  6460. "symfony/translation": "^6.4.3|^7.0.3",
  6461. "symfony/validator": "^6.4|^7.0"
  6462. },
  6463. "type": "library",
  6464. "autoload": {
  6465. "psr-4": {
  6466. "Symfony\\Component\\Security\\Core\\": ""
  6467. },
  6468. "exclude-from-classmap": [
  6469. "/Tests/"
  6470. ]
  6471. },
  6472. "notification-url": "https://packagist.org/downloads/",
  6473. "license": [
  6474. "MIT"
  6475. ],
  6476. "authors": [
  6477. {
  6478. "name": "Fabien Potencier",
  6479. "email": "fabien@symfony.com"
  6480. },
  6481. {
  6482. "name": "Symfony Community",
  6483. "homepage": "https://symfony.com/contributors"
  6484. }
  6485. ],
  6486. "description": "Symfony Security Component - Core Library",
  6487. "homepage": "https://symfony.com",
  6488. "support": {
  6489. "source": "https://github.com/symfony/security-core/tree/v7.1.3"
  6490. },
  6491. "funding": [
  6492. {
  6493. "url": "https://symfony.com/sponsor",
  6494. "type": "custom"
  6495. },
  6496. {
  6497. "url": "https://github.com/fabpot",
  6498. "type": "github"
  6499. },
  6500. {
  6501. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6502. "type": "tidelift"
  6503. }
  6504. ],
  6505. "time": "2024-07-26T12:41:01+00:00"
  6506. },
  6507. {
  6508. "name": "symfony/security-csrf",
  6509. "version": "v7.1.1",
  6510. "source": {
  6511. "type": "git",
  6512. "url": "https://github.com/symfony/security-csrf.git",
  6513. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21"
  6514. },
  6515. "dist": {
  6516. "type": "zip",
  6517. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  6518. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  6519. "shasum": ""
  6520. },
  6521. "require": {
  6522. "php": ">=8.2",
  6523. "symfony/security-core": "^6.4|^7.0"
  6524. },
  6525. "conflict": {
  6526. "symfony/http-foundation": "<6.4"
  6527. },
  6528. "require-dev": {
  6529. "symfony/http-foundation": "^6.4|^7.0"
  6530. },
  6531. "type": "library",
  6532. "autoload": {
  6533. "psr-4": {
  6534. "Symfony\\Component\\Security\\Csrf\\": ""
  6535. },
  6536. "exclude-from-classmap": [
  6537. "/Tests/"
  6538. ]
  6539. },
  6540. "notification-url": "https://packagist.org/downloads/",
  6541. "license": [
  6542. "MIT"
  6543. ],
  6544. "authors": [
  6545. {
  6546. "name": "Fabien Potencier",
  6547. "email": "fabien@symfony.com"
  6548. },
  6549. {
  6550. "name": "Symfony Community",
  6551. "homepage": "https://symfony.com/contributors"
  6552. }
  6553. ],
  6554. "description": "Symfony Security Component - CSRF Library",
  6555. "homepage": "https://symfony.com",
  6556. "support": {
  6557. "source": "https://github.com/symfony/security-csrf/tree/v7.1.1"
  6558. },
  6559. "funding": [
  6560. {
  6561. "url": "https://symfony.com/sponsor",
  6562. "type": "custom"
  6563. },
  6564. {
  6565. "url": "https://github.com/fabpot",
  6566. "type": "github"
  6567. },
  6568. {
  6569. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6570. "type": "tidelift"
  6571. }
  6572. ],
  6573. "time": "2024-05-31T14:57:53+00:00"
  6574. },
  6575. {
  6576. "name": "symfony/security-http",
  6577. "version": "v7.1.3",
  6578. "source": {
  6579. "type": "git",
  6580. "url": "https://github.com/symfony/security-http.git",
  6581. "reference": "19f07b6530dbb82017c38ee7582b154f5c42b179"
  6582. },
  6583. "dist": {
  6584. "type": "zip",
  6585. "url": "https://api.github.com/repos/symfony/security-http/zipball/19f07b6530dbb82017c38ee7582b154f5c42b179",
  6586. "reference": "19f07b6530dbb82017c38ee7582b154f5c42b179",
  6587. "shasum": ""
  6588. },
  6589. "require": {
  6590. "php": ">=8.2",
  6591. "symfony/deprecation-contracts": "^2.5|^3",
  6592. "symfony/http-foundation": "^6.4|^7.0",
  6593. "symfony/http-kernel": "^6.4|^7.0",
  6594. "symfony/polyfill-mbstring": "~1.0",
  6595. "symfony/property-access": "^6.4|^7.0",
  6596. "symfony/security-core": "^6.4|^7.0",
  6597. "symfony/service-contracts": "^2.5|^3"
  6598. },
  6599. "conflict": {
  6600. "symfony/clock": "<6.4",
  6601. "symfony/event-dispatcher": "<6.4",
  6602. "symfony/http-client-contracts": "<3.0",
  6603. "symfony/security-bundle": "<6.4",
  6604. "symfony/security-csrf": "<6.4"
  6605. },
  6606. "require-dev": {
  6607. "psr/log": "^1|^2|^3",
  6608. "symfony/cache": "^6.4|^7.0",
  6609. "symfony/clock": "^6.4|^7.0",
  6610. "symfony/expression-language": "^6.4|^7.0",
  6611. "symfony/http-client": "^6.4|^7.0",
  6612. "symfony/http-client-contracts": "^3.0",
  6613. "symfony/rate-limiter": "^6.4|^7.0",
  6614. "symfony/routing": "^6.4|^7.0",
  6615. "symfony/security-csrf": "^6.4|^7.0",
  6616. "symfony/translation": "^6.4|^7.0",
  6617. "web-token/jwt-library": "^3.3.2|^4.0"
  6618. },
  6619. "type": "library",
  6620. "autoload": {
  6621. "psr-4": {
  6622. "Symfony\\Component\\Security\\Http\\": ""
  6623. },
  6624. "exclude-from-classmap": [
  6625. "/Tests/"
  6626. ]
  6627. },
  6628. "notification-url": "https://packagist.org/downloads/",
  6629. "license": [
  6630. "MIT"
  6631. ],
  6632. "authors": [
  6633. {
  6634. "name": "Fabien Potencier",
  6635. "email": "fabien@symfony.com"
  6636. },
  6637. {
  6638. "name": "Symfony Community",
  6639. "homepage": "https://symfony.com/contributors"
  6640. }
  6641. ],
  6642. "description": "Symfony Security Component - HTTP Integration",
  6643. "homepage": "https://symfony.com",
  6644. "support": {
  6645. "source": "https://github.com/symfony/security-http/tree/v7.1.3"
  6646. },
  6647. "funding": [
  6648. {
  6649. "url": "https://symfony.com/sponsor",
  6650. "type": "custom"
  6651. },
  6652. {
  6653. "url": "https://github.com/fabpot",
  6654. "type": "github"
  6655. },
  6656. {
  6657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6658. "type": "tidelift"
  6659. }
  6660. ],
  6661. "time": "2024-07-26T07:24:20+00:00"
  6662. },
  6663. {
  6664. "name": "symfony/serializer",
  6665. "version": "v7.1.3",
  6666. "source": {
  6667. "type": "git",
  6668. "url": "https://github.com/symfony/serializer.git",
  6669. "reference": "0d5ddac365fbfffc30ca9bc944ad3eb9b3763c09"
  6670. },
  6671. "dist": {
  6672. "type": "zip",
  6673. "url": "https://api.github.com/repos/symfony/serializer/zipball/0d5ddac365fbfffc30ca9bc944ad3eb9b3763c09",
  6674. "reference": "0d5ddac365fbfffc30ca9bc944ad3eb9b3763c09",
  6675. "shasum": ""
  6676. },
  6677. "require": {
  6678. "php": ">=8.2",
  6679. "symfony/deprecation-contracts": "^2.5|^3",
  6680. "symfony/polyfill-ctype": "~1.8"
  6681. },
  6682. "conflict": {
  6683. "phpdocumentor/reflection-docblock": "<3.2.2",
  6684. "phpdocumentor/type-resolver": "<1.4.0",
  6685. "symfony/dependency-injection": "<6.4",
  6686. "symfony/property-access": "<6.4",
  6687. "symfony/property-info": "<6.4",
  6688. "symfony/uid": "<6.4",
  6689. "symfony/validator": "<6.4",
  6690. "symfony/yaml": "<6.4"
  6691. },
  6692. "require-dev": {
  6693. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6694. "seld/jsonlint": "^1.10",
  6695. "symfony/cache": "^6.4|^7.0",
  6696. "symfony/config": "^6.4|^7.0",
  6697. "symfony/console": "^6.4|^7.0",
  6698. "symfony/dependency-injection": "^6.4|^7.0",
  6699. "symfony/error-handler": "^6.4|^7.0",
  6700. "symfony/filesystem": "^6.4|^7.0",
  6701. "symfony/form": "^6.4|^7.0",
  6702. "symfony/http-foundation": "^6.4|^7.0",
  6703. "symfony/http-kernel": "^6.4|^7.0",
  6704. "symfony/messenger": "^6.4|^7.0",
  6705. "symfony/mime": "^6.4|^7.0",
  6706. "symfony/property-access": "^6.4|^7.0",
  6707. "symfony/property-info": "^6.4|^7.0",
  6708. "symfony/translation-contracts": "^2.5|^3",
  6709. "symfony/type-info": "^7.1",
  6710. "symfony/uid": "^6.4|^7.0",
  6711. "symfony/validator": "^6.4|^7.0",
  6712. "symfony/var-dumper": "^6.4|^7.0",
  6713. "symfony/var-exporter": "^6.4|^7.0",
  6714. "symfony/yaml": "^6.4|^7.0"
  6715. },
  6716. "type": "library",
  6717. "autoload": {
  6718. "psr-4": {
  6719. "Symfony\\Component\\Serializer\\": ""
  6720. },
  6721. "exclude-from-classmap": [
  6722. "/Tests/"
  6723. ]
  6724. },
  6725. "notification-url": "https://packagist.org/downloads/",
  6726. "license": [
  6727. "MIT"
  6728. ],
  6729. "authors": [
  6730. {
  6731. "name": "Fabien Potencier",
  6732. "email": "fabien@symfony.com"
  6733. },
  6734. {
  6735. "name": "Symfony Community",
  6736. "homepage": "https://symfony.com/contributors"
  6737. }
  6738. ],
  6739. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6740. "homepage": "https://symfony.com",
  6741. "support": {
  6742. "source": "https://github.com/symfony/serializer/tree/v7.1.3"
  6743. },
  6744. "funding": [
  6745. {
  6746. "url": "https://symfony.com/sponsor",
  6747. "type": "custom"
  6748. },
  6749. {
  6750. "url": "https://github.com/fabpot",
  6751. "type": "github"
  6752. },
  6753. {
  6754. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6755. "type": "tidelift"
  6756. }
  6757. ],
  6758. "time": "2024-07-17T06:10:24+00:00"
  6759. },
  6760. {
  6761. "name": "symfony/service-contracts",
  6762. "version": "v3.5.0",
  6763. "source": {
  6764. "type": "git",
  6765. "url": "https://github.com/symfony/service-contracts.git",
  6766. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6767. },
  6768. "dist": {
  6769. "type": "zip",
  6770. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6771. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6772. "shasum": ""
  6773. },
  6774. "require": {
  6775. "php": ">=8.1",
  6776. "psr/container": "^1.1|^2.0",
  6777. "symfony/deprecation-contracts": "^2.5|^3"
  6778. },
  6779. "conflict": {
  6780. "ext-psr": "<1.1|>=2"
  6781. },
  6782. "type": "library",
  6783. "extra": {
  6784. "branch-alias": {
  6785. "dev-main": "3.5-dev"
  6786. },
  6787. "thanks": {
  6788. "name": "symfony/contracts",
  6789. "url": "https://github.com/symfony/contracts"
  6790. }
  6791. },
  6792. "autoload": {
  6793. "psr-4": {
  6794. "Symfony\\Contracts\\Service\\": ""
  6795. },
  6796. "exclude-from-classmap": [
  6797. "/Test/"
  6798. ]
  6799. },
  6800. "notification-url": "https://packagist.org/downloads/",
  6801. "license": [
  6802. "MIT"
  6803. ],
  6804. "authors": [
  6805. {
  6806. "name": "Nicolas Grekas",
  6807. "email": "p@tchwork.com"
  6808. },
  6809. {
  6810. "name": "Symfony Community",
  6811. "homepage": "https://symfony.com/contributors"
  6812. }
  6813. ],
  6814. "description": "Generic abstractions related to writing services",
  6815. "homepage": "https://symfony.com",
  6816. "keywords": [
  6817. "abstractions",
  6818. "contracts",
  6819. "decoupling",
  6820. "interfaces",
  6821. "interoperability",
  6822. "standards"
  6823. ],
  6824. "support": {
  6825. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6826. },
  6827. "funding": [
  6828. {
  6829. "url": "https://symfony.com/sponsor",
  6830. "type": "custom"
  6831. },
  6832. {
  6833. "url": "https://github.com/fabpot",
  6834. "type": "github"
  6835. },
  6836. {
  6837. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6838. "type": "tidelift"
  6839. }
  6840. ],
  6841. "time": "2024-04-18T09:32:20+00:00"
  6842. },
  6843. {
  6844. "name": "symfony/stimulus-bundle",
  6845. "version": "v2.18.1",
  6846. "source": {
  6847. "type": "git",
  6848. "url": "https://github.com/symfony/stimulus-bundle.git",
  6849. "reference": "017b60e036c366c8ce0e77864d5aabab436ad73d"
  6850. },
  6851. "dist": {
  6852. "type": "zip",
  6853. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/017b60e036c366c8ce0e77864d5aabab436ad73d",
  6854. "reference": "017b60e036c366c8ce0e77864d5aabab436ad73d",
  6855. "shasum": ""
  6856. },
  6857. "require": {
  6858. "php": ">=8.1",
  6859. "symfony/config": "^5.4|^6.0|^7.0",
  6860. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6861. "symfony/deprecation-contracts": "^2.0|^3.0",
  6862. "symfony/finder": "^5.4|^6.0|^7.0",
  6863. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6864. "twig/twig": "^2.15.3|^3.8"
  6865. },
  6866. "require-dev": {
  6867. "symfony/asset-mapper": "^6.3|^7.0",
  6868. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6869. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6870. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6871. "zenstruck/browser": "^1.4"
  6872. },
  6873. "type": "symfony-bundle",
  6874. "autoload": {
  6875. "psr-4": {
  6876. "Symfony\\UX\\StimulusBundle\\": "src"
  6877. }
  6878. },
  6879. "notification-url": "https://packagist.org/downloads/",
  6880. "license": [
  6881. "MIT"
  6882. ],
  6883. "authors": [
  6884. {
  6885. "name": "Symfony Community",
  6886. "homepage": "https://symfony.com/contributors"
  6887. }
  6888. ],
  6889. "description": "Integration with your Symfony app & Stimulus!",
  6890. "keywords": [
  6891. "symfony-ux"
  6892. ],
  6893. "support": {
  6894. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.18.1"
  6895. },
  6896. "funding": [
  6897. {
  6898. "url": "https://symfony.com/sponsor",
  6899. "type": "custom"
  6900. },
  6901. {
  6902. "url": "https://github.com/fabpot",
  6903. "type": "github"
  6904. },
  6905. {
  6906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6907. "type": "tidelift"
  6908. }
  6909. ],
  6910. "time": "2024-06-11T13:21:54+00:00"
  6911. },
  6912. {
  6913. "name": "symfony/stopwatch",
  6914. "version": "v7.1.1",
  6915. "source": {
  6916. "type": "git",
  6917. "url": "https://github.com/symfony/stopwatch.git",
  6918. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d"
  6919. },
  6920. "dist": {
  6921. "type": "zip",
  6922. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  6923. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  6924. "shasum": ""
  6925. },
  6926. "require": {
  6927. "php": ">=8.2",
  6928. "symfony/service-contracts": "^2.5|^3"
  6929. },
  6930. "type": "library",
  6931. "autoload": {
  6932. "psr-4": {
  6933. "Symfony\\Component\\Stopwatch\\": ""
  6934. },
  6935. "exclude-from-classmap": [
  6936. "/Tests/"
  6937. ]
  6938. },
  6939. "notification-url": "https://packagist.org/downloads/",
  6940. "license": [
  6941. "MIT"
  6942. ],
  6943. "authors": [
  6944. {
  6945. "name": "Fabien Potencier",
  6946. "email": "fabien@symfony.com"
  6947. },
  6948. {
  6949. "name": "Symfony Community",
  6950. "homepage": "https://symfony.com/contributors"
  6951. }
  6952. ],
  6953. "description": "Provides a way to profile code",
  6954. "homepage": "https://symfony.com",
  6955. "support": {
  6956. "source": "https://github.com/symfony/stopwatch/tree/v7.1.1"
  6957. },
  6958. "funding": [
  6959. {
  6960. "url": "https://symfony.com/sponsor",
  6961. "type": "custom"
  6962. },
  6963. {
  6964. "url": "https://github.com/fabpot",
  6965. "type": "github"
  6966. },
  6967. {
  6968. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6969. "type": "tidelift"
  6970. }
  6971. ],
  6972. "time": "2024-05-31T14:57:53+00:00"
  6973. },
  6974. {
  6975. "name": "symfony/string",
  6976. "version": "v7.1.3",
  6977. "source": {
  6978. "type": "git",
  6979. "url": "https://github.com/symfony/string.git",
  6980. "reference": "ea272a882be7f20cad58d5d78c215001617b7f07"
  6981. },
  6982. "dist": {
  6983. "type": "zip",
  6984. "url": "https://api.github.com/repos/symfony/string/zipball/ea272a882be7f20cad58d5d78c215001617b7f07",
  6985. "reference": "ea272a882be7f20cad58d5d78c215001617b7f07",
  6986. "shasum": ""
  6987. },
  6988. "require": {
  6989. "php": ">=8.2",
  6990. "symfony/polyfill-ctype": "~1.8",
  6991. "symfony/polyfill-intl-grapheme": "~1.0",
  6992. "symfony/polyfill-intl-normalizer": "~1.0",
  6993. "symfony/polyfill-mbstring": "~1.0"
  6994. },
  6995. "conflict": {
  6996. "symfony/translation-contracts": "<2.5"
  6997. },
  6998. "require-dev": {
  6999. "symfony/emoji": "^7.1",
  7000. "symfony/error-handler": "^6.4|^7.0",
  7001. "symfony/http-client": "^6.4|^7.0",
  7002. "symfony/intl": "^6.4|^7.0",
  7003. "symfony/translation-contracts": "^2.5|^3.0",
  7004. "symfony/var-exporter": "^6.4|^7.0"
  7005. },
  7006. "type": "library",
  7007. "autoload": {
  7008. "files": [
  7009. "Resources/functions.php"
  7010. ],
  7011. "psr-4": {
  7012. "Symfony\\Component\\String\\": ""
  7013. },
  7014. "exclude-from-classmap": [
  7015. "/Tests/"
  7016. ]
  7017. },
  7018. "notification-url": "https://packagist.org/downloads/",
  7019. "license": [
  7020. "MIT"
  7021. ],
  7022. "authors": [
  7023. {
  7024. "name": "Nicolas Grekas",
  7025. "email": "p@tchwork.com"
  7026. },
  7027. {
  7028. "name": "Symfony Community",
  7029. "homepage": "https://symfony.com/contributors"
  7030. }
  7031. ],
  7032. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7033. "homepage": "https://symfony.com",
  7034. "keywords": [
  7035. "grapheme",
  7036. "i18n",
  7037. "string",
  7038. "unicode",
  7039. "utf-8",
  7040. "utf8"
  7041. ],
  7042. "support": {
  7043. "source": "https://github.com/symfony/string/tree/v7.1.3"
  7044. },
  7045. "funding": [
  7046. {
  7047. "url": "https://symfony.com/sponsor",
  7048. "type": "custom"
  7049. },
  7050. {
  7051. "url": "https://github.com/fabpot",
  7052. "type": "github"
  7053. },
  7054. {
  7055. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7056. "type": "tidelift"
  7057. }
  7058. ],
  7059. "time": "2024-07-22T10:25:37+00:00"
  7060. },
  7061. {
  7062. "name": "symfony/translation",
  7063. "version": "v7.1.3",
  7064. "source": {
  7065. "type": "git",
  7066. "url": "https://github.com/symfony/translation.git",
  7067. "reference": "8d5e50c813ba2859a6dfc99a0765c550507934a1"
  7068. },
  7069. "dist": {
  7070. "type": "zip",
  7071. "url": "https://api.github.com/repos/symfony/translation/zipball/8d5e50c813ba2859a6dfc99a0765c550507934a1",
  7072. "reference": "8d5e50c813ba2859a6dfc99a0765c550507934a1",
  7073. "shasum": ""
  7074. },
  7075. "require": {
  7076. "php": ">=8.2",
  7077. "symfony/polyfill-mbstring": "~1.0",
  7078. "symfony/translation-contracts": "^2.5|^3.0"
  7079. },
  7080. "conflict": {
  7081. "symfony/config": "<6.4",
  7082. "symfony/console": "<6.4",
  7083. "symfony/dependency-injection": "<6.4",
  7084. "symfony/http-client-contracts": "<2.5",
  7085. "symfony/http-kernel": "<6.4",
  7086. "symfony/service-contracts": "<2.5",
  7087. "symfony/twig-bundle": "<6.4",
  7088. "symfony/yaml": "<6.4"
  7089. },
  7090. "provide": {
  7091. "symfony/translation-implementation": "2.3|3.0"
  7092. },
  7093. "require-dev": {
  7094. "nikic/php-parser": "^4.18|^5.0",
  7095. "psr/log": "^1|^2|^3",
  7096. "symfony/config": "^6.4|^7.0",
  7097. "symfony/console": "^6.4|^7.0",
  7098. "symfony/dependency-injection": "^6.4|^7.0",
  7099. "symfony/finder": "^6.4|^7.0",
  7100. "symfony/http-client-contracts": "^2.5|^3.0",
  7101. "symfony/http-kernel": "^6.4|^7.0",
  7102. "symfony/intl": "^6.4|^7.0",
  7103. "symfony/polyfill-intl-icu": "^1.21",
  7104. "symfony/routing": "^6.4|^7.0",
  7105. "symfony/service-contracts": "^2.5|^3",
  7106. "symfony/yaml": "^6.4|^7.0"
  7107. },
  7108. "type": "library",
  7109. "autoload": {
  7110. "files": [
  7111. "Resources/functions.php"
  7112. ],
  7113. "psr-4": {
  7114. "Symfony\\Component\\Translation\\": ""
  7115. },
  7116. "exclude-from-classmap": [
  7117. "/Tests/"
  7118. ]
  7119. },
  7120. "notification-url": "https://packagist.org/downloads/",
  7121. "license": [
  7122. "MIT"
  7123. ],
  7124. "authors": [
  7125. {
  7126. "name": "Fabien Potencier",
  7127. "email": "fabien@symfony.com"
  7128. },
  7129. {
  7130. "name": "Symfony Community",
  7131. "homepage": "https://symfony.com/contributors"
  7132. }
  7133. ],
  7134. "description": "Provides tools to internationalize your application",
  7135. "homepage": "https://symfony.com",
  7136. "support": {
  7137. "source": "https://github.com/symfony/translation/tree/v7.1.3"
  7138. },
  7139. "funding": [
  7140. {
  7141. "url": "https://symfony.com/sponsor",
  7142. "type": "custom"
  7143. },
  7144. {
  7145. "url": "https://github.com/fabpot",
  7146. "type": "github"
  7147. },
  7148. {
  7149. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7150. "type": "tidelift"
  7151. }
  7152. ],
  7153. "time": "2024-07-26T12:41:01+00:00"
  7154. },
  7155. {
  7156. "name": "symfony/translation-contracts",
  7157. "version": "v3.5.0",
  7158. "source": {
  7159. "type": "git",
  7160. "url": "https://github.com/symfony/translation-contracts.git",
  7161. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7162. },
  7163. "dist": {
  7164. "type": "zip",
  7165. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7166. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7167. "shasum": ""
  7168. },
  7169. "require": {
  7170. "php": ">=8.1"
  7171. },
  7172. "type": "library",
  7173. "extra": {
  7174. "branch-alias": {
  7175. "dev-main": "3.5-dev"
  7176. },
  7177. "thanks": {
  7178. "name": "symfony/contracts",
  7179. "url": "https://github.com/symfony/contracts"
  7180. }
  7181. },
  7182. "autoload": {
  7183. "psr-4": {
  7184. "Symfony\\Contracts\\Translation\\": ""
  7185. },
  7186. "exclude-from-classmap": [
  7187. "/Test/"
  7188. ]
  7189. },
  7190. "notification-url": "https://packagist.org/downloads/",
  7191. "license": [
  7192. "MIT"
  7193. ],
  7194. "authors": [
  7195. {
  7196. "name": "Nicolas Grekas",
  7197. "email": "p@tchwork.com"
  7198. },
  7199. {
  7200. "name": "Symfony Community",
  7201. "homepage": "https://symfony.com/contributors"
  7202. }
  7203. ],
  7204. "description": "Generic abstractions related to translation",
  7205. "homepage": "https://symfony.com",
  7206. "keywords": [
  7207. "abstractions",
  7208. "contracts",
  7209. "decoupling",
  7210. "interfaces",
  7211. "interoperability",
  7212. "standards"
  7213. ],
  7214. "support": {
  7215. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7216. },
  7217. "funding": [
  7218. {
  7219. "url": "https://symfony.com/sponsor",
  7220. "type": "custom"
  7221. },
  7222. {
  7223. "url": "https://github.com/fabpot",
  7224. "type": "github"
  7225. },
  7226. {
  7227. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7228. "type": "tidelift"
  7229. }
  7230. ],
  7231. "time": "2024-04-18T09:32:20+00:00"
  7232. },
  7233. {
  7234. "name": "symfony/twig-bridge",
  7235. "version": "v7.1.1",
  7236. "source": {
  7237. "type": "git",
  7238. "url": "https://github.com/symfony/twig-bridge.git",
  7239. "reference": "96e6e12a63db80bcedefc012042d2cb2d1a015f8"
  7240. },
  7241. "dist": {
  7242. "type": "zip",
  7243. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/96e6e12a63db80bcedefc012042d2cb2d1a015f8",
  7244. "reference": "96e6e12a63db80bcedefc012042d2cb2d1a015f8",
  7245. "shasum": ""
  7246. },
  7247. "require": {
  7248. "php": ">=8.2",
  7249. "symfony/translation-contracts": "^2.5|^3",
  7250. "twig/twig": "^3.9"
  7251. },
  7252. "conflict": {
  7253. "phpdocumentor/reflection-docblock": "<3.2.2",
  7254. "phpdocumentor/type-resolver": "<1.4.0",
  7255. "symfony/console": "<6.4",
  7256. "symfony/form": "<6.4",
  7257. "symfony/http-foundation": "<6.4",
  7258. "symfony/http-kernel": "<6.4",
  7259. "symfony/mime": "<6.4",
  7260. "symfony/serializer": "<6.4",
  7261. "symfony/translation": "<6.4",
  7262. "symfony/workflow": "<6.4"
  7263. },
  7264. "require-dev": {
  7265. "egulias/email-validator": "^2.1.10|^3|^4",
  7266. "league/html-to-markdown": "^5.0",
  7267. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7268. "symfony/asset": "^6.4|^7.0",
  7269. "symfony/asset-mapper": "^6.4|^7.0",
  7270. "symfony/console": "^6.4|^7.0",
  7271. "symfony/dependency-injection": "^6.4|^7.0",
  7272. "symfony/emoji": "^7.1",
  7273. "symfony/expression-language": "^6.4|^7.0",
  7274. "symfony/finder": "^6.4|^7.0",
  7275. "symfony/form": "^6.4|^7.0",
  7276. "symfony/html-sanitizer": "^6.4|^7.0",
  7277. "symfony/http-foundation": "^6.4|^7.0",
  7278. "symfony/http-kernel": "^6.4|^7.0",
  7279. "symfony/intl": "^6.4|^7.0",
  7280. "symfony/mime": "^6.4|^7.0",
  7281. "symfony/polyfill-intl-icu": "~1.0",
  7282. "symfony/property-info": "^6.4|^7.0",
  7283. "symfony/routing": "^6.4|^7.0",
  7284. "symfony/security-acl": "^2.8|^3.0",
  7285. "symfony/security-core": "^6.4|^7.0",
  7286. "symfony/security-csrf": "^6.4|^7.0",
  7287. "symfony/security-http": "^6.4|^7.0",
  7288. "symfony/serializer": "^6.4.3|^7.0.3",
  7289. "symfony/stopwatch": "^6.4|^7.0",
  7290. "symfony/translation": "^6.4|^7.0",
  7291. "symfony/web-link": "^6.4|^7.0",
  7292. "symfony/workflow": "^6.4|^7.0",
  7293. "symfony/yaml": "^6.4|^7.0",
  7294. "twig/cssinliner-extra": "^2.12|^3",
  7295. "twig/inky-extra": "^2.12|^3",
  7296. "twig/markdown-extra": "^2.12|^3"
  7297. },
  7298. "type": "symfony-bridge",
  7299. "autoload": {
  7300. "psr-4": {
  7301. "Symfony\\Bridge\\Twig\\": ""
  7302. },
  7303. "exclude-from-classmap": [
  7304. "/Tests/"
  7305. ]
  7306. },
  7307. "notification-url": "https://packagist.org/downloads/",
  7308. "license": [
  7309. "MIT"
  7310. ],
  7311. "authors": [
  7312. {
  7313. "name": "Fabien Potencier",
  7314. "email": "fabien@symfony.com"
  7315. },
  7316. {
  7317. "name": "Symfony Community",
  7318. "homepage": "https://symfony.com/contributors"
  7319. }
  7320. ],
  7321. "description": "Provides integration for Twig with various Symfony components",
  7322. "homepage": "https://symfony.com",
  7323. "support": {
  7324. "source": "https://github.com/symfony/twig-bridge/tree/v7.1.1"
  7325. },
  7326. "funding": [
  7327. {
  7328. "url": "https://symfony.com/sponsor",
  7329. "type": "custom"
  7330. },
  7331. {
  7332. "url": "https://github.com/fabpot",
  7333. "type": "github"
  7334. },
  7335. {
  7336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7337. "type": "tidelift"
  7338. }
  7339. ],
  7340. "time": "2024-05-31T14:57:53+00:00"
  7341. },
  7342. {
  7343. "name": "symfony/twig-bundle",
  7344. "version": "v7.1.1",
  7345. "source": {
  7346. "type": "git",
  7347. "url": "https://github.com/symfony/twig-bundle.git",
  7348. "reference": "d48c2f08c2f315e749f0e18fc4945b7be8afe1e5"
  7349. },
  7350. "dist": {
  7351. "type": "zip",
  7352. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/d48c2f08c2f315e749f0e18fc4945b7be8afe1e5",
  7353. "reference": "d48c2f08c2f315e749f0e18fc4945b7be8afe1e5",
  7354. "shasum": ""
  7355. },
  7356. "require": {
  7357. "composer-runtime-api": ">=2.1",
  7358. "php": ">=8.2",
  7359. "symfony/config": "^6.4|^7.0",
  7360. "symfony/dependency-injection": "^6.4|^7.0",
  7361. "symfony/http-foundation": "^6.4|^7.0",
  7362. "symfony/http-kernel": "^6.4|^7.0",
  7363. "symfony/twig-bridge": "^6.4|^7.0",
  7364. "twig/twig": "^3.0.4"
  7365. },
  7366. "conflict": {
  7367. "symfony/framework-bundle": "<6.4",
  7368. "symfony/translation": "<6.4"
  7369. },
  7370. "require-dev": {
  7371. "symfony/asset": "^6.4|^7.0",
  7372. "symfony/expression-language": "^6.4|^7.0",
  7373. "symfony/finder": "^6.4|^7.0",
  7374. "symfony/form": "^6.4|^7.0",
  7375. "symfony/framework-bundle": "^6.4|^7.0",
  7376. "symfony/routing": "^6.4|^7.0",
  7377. "symfony/stopwatch": "^6.4|^7.0",
  7378. "symfony/translation": "^6.4|^7.0",
  7379. "symfony/web-link": "^6.4|^7.0",
  7380. "symfony/yaml": "^6.4|^7.0"
  7381. },
  7382. "type": "symfony-bundle",
  7383. "autoload": {
  7384. "psr-4": {
  7385. "Symfony\\Bundle\\TwigBundle\\": ""
  7386. },
  7387. "exclude-from-classmap": [
  7388. "/Tests/"
  7389. ]
  7390. },
  7391. "notification-url": "https://packagist.org/downloads/",
  7392. "license": [
  7393. "MIT"
  7394. ],
  7395. "authors": [
  7396. {
  7397. "name": "Fabien Potencier",
  7398. "email": "fabien@symfony.com"
  7399. },
  7400. {
  7401. "name": "Symfony Community",
  7402. "homepage": "https://symfony.com/contributors"
  7403. }
  7404. ],
  7405. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7406. "homepage": "https://symfony.com",
  7407. "support": {
  7408. "source": "https://github.com/symfony/twig-bundle/tree/v7.1.1"
  7409. },
  7410. "funding": [
  7411. {
  7412. "url": "https://symfony.com/sponsor",
  7413. "type": "custom"
  7414. },
  7415. {
  7416. "url": "https://github.com/fabpot",
  7417. "type": "github"
  7418. },
  7419. {
  7420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7421. "type": "tidelift"
  7422. }
  7423. ],
  7424. "time": "2024-05-31T14:57:53+00:00"
  7425. },
  7426. {
  7427. "name": "symfony/type-info",
  7428. "version": "v7.1.1",
  7429. "source": {
  7430. "type": "git",
  7431. "url": "https://github.com/symfony/type-info.git",
  7432. "reference": "60b28eb733f1453287f1263ed305b96091e0d1dc"
  7433. },
  7434. "dist": {
  7435. "type": "zip",
  7436. "url": "https://api.github.com/repos/symfony/type-info/zipball/60b28eb733f1453287f1263ed305b96091e0d1dc",
  7437. "reference": "60b28eb733f1453287f1263ed305b96091e0d1dc",
  7438. "shasum": ""
  7439. },
  7440. "require": {
  7441. "php": ">=8.2",
  7442. "psr/container": "^1.1|^2.0"
  7443. },
  7444. "conflict": {
  7445. "phpstan/phpdoc-parser": "<1.0",
  7446. "symfony/dependency-injection": "<6.4",
  7447. "symfony/property-info": "<6.4"
  7448. },
  7449. "require-dev": {
  7450. "phpstan/phpdoc-parser": "^1.0",
  7451. "symfony/dependency-injection": "^6.4|^7.0",
  7452. "symfony/property-info": "^6.4|^7.0"
  7453. },
  7454. "type": "library",
  7455. "autoload": {
  7456. "psr-4": {
  7457. "Symfony\\Component\\TypeInfo\\": ""
  7458. },
  7459. "exclude-from-classmap": [
  7460. "/Tests/"
  7461. ]
  7462. },
  7463. "notification-url": "https://packagist.org/downloads/",
  7464. "license": [
  7465. "MIT"
  7466. ],
  7467. "authors": [
  7468. {
  7469. "name": "Mathias Arlaud",
  7470. "email": "mathias.arlaud@gmail.com"
  7471. },
  7472. {
  7473. "name": "Baptiste LEDUC",
  7474. "email": "baptiste.leduc@gmail.com"
  7475. },
  7476. {
  7477. "name": "Symfony Community",
  7478. "homepage": "https://symfony.com/contributors"
  7479. }
  7480. ],
  7481. "description": "Extracts PHP types information.",
  7482. "homepage": "https://symfony.com",
  7483. "keywords": [
  7484. "PHPStan",
  7485. "phpdoc",
  7486. "symfony",
  7487. "type"
  7488. ],
  7489. "support": {
  7490. "source": "https://github.com/symfony/type-info/tree/v7.1.1"
  7491. },
  7492. "funding": [
  7493. {
  7494. "url": "https://symfony.com/sponsor",
  7495. "type": "custom"
  7496. },
  7497. {
  7498. "url": "https://github.com/fabpot",
  7499. "type": "github"
  7500. },
  7501. {
  7502. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7503. "type": "tidelift"
  7504. }
  7505. ],
  7506. "time": "2024-05-31T14:59:31+00:00"
  7507. },
  7508. {
  7509. "name": "symfony/validator",
  7510. "version": "v7.1.3",
  7511. "source": {
  7512. "type": "git",
  7513. "url": "https://github.com/symfony/validator.git",
  7514. "reference": "ba711a6cfc008544dad059abb3c1d997f1472237"
  7515. },
  7516. "dist": {
  7517. "type": "zip",
  7518. "url": "https://api.github.com/repos/symfony/validator/zipball/ba711a6cfc008544dad059abb3c1d997f1472237",
  7519. "reference": "ba711a6cfc008544dad059abb3c1d997f1472237",
  7520. "shasum": ""
  7521. },
  7522. "require": {
  7523. "php": ">=8.2",
  7524. "symfony/deprecation-contracts": "^2.5|^3",
  7525. "symfony/polyfill-ctype": "~1.8",
  7526. "symfony/polyfill-mbstring": "~1.0",
  7527. "symfony/polyfill-php83": "^1.27",
  7528. "symfony/translation-contracts": "^2.5|^3"
  7529. },
  7530. "conflict": {
  7531. "doctrine/lexer": "<1.1",
  7532. "symfony/dependency-injection": "<6.4",
  7533. "symfony/doctrine-bridge": "<7.0",
  7534. "symfony/expression-language": "<6.4",
  7535. "symfony/http-kernel": "<6.4",
  7536. "symfony/intl": "<6.4",
  7537. "symfony/property-info": "<6.4",
  7538. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7539. "symfony/yaml": "<6.4"
  7540. },
  7541. "require-dev": {
  7542. "egulias/email-validator": "^2.1.10|^3|^4",
  7543. "symfony/cache": "^6.4|^7.0",
  7544. "symfony/config": "^6.4|^7.0",
  7545. "symfony/console": "^6.4|^7.0",
  7546. "symfony/dependency-injection": "^6.4|^7.0",
  7547. "symfony/expression-language": "^6.4|^7.0",
  7548. "symfony/finder": "^6.4|^7.0",
  7549. "symfony/http-client": "^6.4|^7.0",
  7550. "symfony/http-foundation": "^6.4|^7.0",
  7551. "symfony/http-kernel": "^6.4|^7.0",
  7552. "symfony/intl": "^6.4|^7.0",
  7553. "symfony/mime": "^6.4|^7.0",
  7554. "symfony/property-access": "^6.4|^7.0",
  7555. "symfony/property-info": "^6.4|^7.0",
  7556. "symfony/translation": "^6.4.3|^7.0.3",
  7557. "symfony/type-info": "^7.1",
  7558. "symfony/yaml": "^6.4|^7.0"
  7559. },
  7560. "type": "library",
  7561. "autoload": {
  7562. "psr-4": {
  7563. "Symfony\\Component\\Validator\\": ""
  7564. },
  7565. "exclude-from-classmap": [
  7566. "/Tests/",
  7567. "/Resources/bin/"
  7568. ]
  7569. },
  7570. "notification-url": "https://packagist.org/downloads/",
  7571. "license": [
  7572. "MIT"
  7573. ],
  7574. "authors": [
  7575. {
  7576. "name": "Fabien Potencier",
  7577. "email": "fabien@symfony.com"
  7578. },
  7579. {
  7580. "name": "Symfony Community",
  7581. "homepage": "https://symfony.com/contributors"
  7582. }
  7583. ],
  7584. "description": "Provides tools to validate values",
  7585. "homepage": "https://symfony.com",
  7586. "support": {
  7587. "source": "https://github.com/symfony/validator/tree/v7.1.3"
  7588. },
  7589. "funding": [
  7590. {
  7591. "url": "https://symfony.com/sponsor",
  7592. "type": "custom"
  7593. },
  7594. {
  7595. "url": "https://github.com/fabpot",
  7596. "type": "github"
  7597. },
  7598. {
  7599. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7600. "type": "tidelift"
  7601. }
  7602. ],
  7603. "time": "2024-07-26T12:41:01+00:00"
  7604. },
  7605. {
  7606. "name": "symfony/var-dumper",
  7607. "version": "v7.1.3",
  7608. "source": {
  7609. "type": "git",
  7610. "url": "https://github.com/symfony/var-dumper.git",
  7611. "reference": "86af4617cca75a6e28598f49ae0690f3b9d4591f"
  7612. },
  7613. "dist": {
  7614. "type": "zip",
  7615. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/86af4617cca75a6e28598f49ae0690f3b9d4591f",
  7616. "reference": "86af4617cca75a6e28598f49ae0690f3b9d4591f",
  7617. "shasum": ""
  7618. },
  7619. "require": {
  7620. "php": ">=8.2",
  7621. "symfony/polyfill-mbstring": "~1.0"
  7622. },
  7623. "conflict": {
  7624. "symfony/console": "<6.4"
  7625. },
  7626. "require-dev": {
  7627. "ext-iconv": "*",
  7628. "symfony/console": "^6.4|^7.0",
  7629. "symfony/http-kernel": "^6.4|^7.0",
  7630. "symfony/process": "^6.4|^7.0",
  7631. "symfony/uid": "^6.4|^7.0",
  7632. "twig/twig": "^3.0.4"
  7633. },
  7634. "bin": [
  7635. "Resources/bin/var-dump-server"
  7636. ],
  7637. "type": "library",
  7638. "autoload": {
  7639. "files": [
  7640. "Resources/functions/dump.php"
  7641. ],
  7642. "psr-4": {
  7643. "Symfony\\Component\\VarDumper\\": ""
  7644. },
  7645. "exclude-from-classmap": [
  7646. "/Tests/"
  7647. ]
  7648. },
  7649. "notification-url": "https://packagist.org/downloads/",
  7650. "license": [
  7651. "MIT"
  7652. ],
  7653. "authors": [
  7654. {
  7655. "name": "Nicolas Grekas",
  7656. "email": "p@tchwork.com"
  7657. },
  7658. {
  7659. "name": "Symfony Community",
  7660. "homepage": "https://symfony.com/contributors"
  7661. }
  7662. ],
  7663. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7664. "homepage": "https://symfony.com",
  7665. "keywords": [
  7666. "debug",
  7667. "dump"
  7668. ],
  7669. "support": {
  7670. "source": "https://github.com/symfony/var-dumper/tree/v7.1.3"
  7671. },
  7672. "funding": [
  7673. {
  7674. "url": "https://symfony.com/sponsor",
  7675. "type": "custom"
  7676. },
  7677. {
  7678. "url": "https://github.com/fabpot",
  7679. "type": "github"
  7680. },
  7681. {
  7682. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7683. "type": "tidelift"
  7684. }
  7685. ],
  7686. "time": "2024-07-26T12:41:01+00:00"
  7687. },
  7688. {
  7689. "name": "symfony/var-exporter",
  7690. "version": "v7.1.2",
  7691. "source": {
  7692. "type": "git",
  7693. "url": "https://github.com/symfony/var-exporter.git",
  7694. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c"
  7695. },
  7696. "dist": {
  7697. "type": "zip",
  7698. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b80a669a2264609f07f1667f891dbfca25eba44c",
  7699. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c",
  7700. "shasum": ""
  7701. },
  7702. "require": {
  7703. "php": ">=8.2"
  7704. },
  7705. "require-dev": {
  7706. "symfony/property-access": "^6.4|^7.0",
  7707. "symfony/serializer": "^6.4|^7.0",
  7708. "symfony/var-dumper": "^6.4|^7.0"
  7709. },
  7710. "type": "library",
  7711. "autoload": {
  7712. "psr-4": {
  7713. "Symfony\\Component\\VarExporter\\": ""
  7714. },
  7715. "exclude-from-classmap": [
  7716. "/Tests/"
  7717. ]
  7718. },
  7719. "notification-url": "https://packagist.org/downloads/",
  7720. "license": [
  7721. "MIT"
  7722. ],
  7723. "authors": [
  7724. {
  7725. "name": "Nicolas Grekas",
  7726. "email": "p@tchwork.com"
  7727. },
  7728. {
  7729. "name": "Symfony Community",
  7730. "homepage": "https://symfony.com/contributors"
  7731. }
  7732. ],
  7733. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7734. "homepage": "https://symfony.com",
  7735. "keywords": [
  7736. "clone",
  7737. "construct",
  7738. "export",
  7739. "hydrate",
  7740. "instantiate",
  7741. "lazy-loading",
  7742. "proxy",
  7743. "serialize"
  7744. ],
  7745. "support": {
  7746. "source": "https://github.com/symfony/var-exporter/tree/v7.1.2"
  7747. },
  7748. "funding": [
  7749. {
  7750. "url": "https://symfony.com/sponsor",
  7751. "type": "custom"
  7752. },
  7753. {
  7754. "url": "https://github.com/fabpot",
  7755. "type": "github"
  7756. },
  7757. {
  7758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7759. "type": "tidelift"
  7760. }
  7761. ],
  7762. "time": "2024-06-28T08:00:31+00:00"
  7763. },
  7764. {
  7765. "name": "symfony/web-link",
  7766. "version": "v7.1.1",
  7767. "source": {
  7768. "type": "git",
  7769. "url": "https://github.com/symfony/web-link.git",
  7770. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f"
  7771. },
  7772. "dist": {
  7773. "type": "zip",
  7774. "url": "https://api.github.com/repos/symfony/web-link/zipball/63f90aa0054bfd9a091d2f5cf465958f1030638f",
  7775. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f",
  7776. "shasum": ""
  7777. },
  7778. "require": {
  7779. "php": ">=8.2",
  7780. "psr/link": "^1.1|^2.0"
  7781. },
  7782. "conflict": {
  7783. "symfony/http-kernel": "<6.4"
  7784. },
  7785. "provide": {
  7786. "psr/link-implementation": "1.0|2.0"
  7787. },
  7788. "require-dev": {
  7789. "symfony/http-kernel": "^6.4|^7.0"
  7790. },
  7791. "type": "library",
  7792. "autoload": {
  7793. "psr-4": {
  7794. "Symfony\\Component\\WebLink\\": ""
  7795. },
  7796. "exclude-from-classmap": [
  7797. "/Tests/"
  7798. ]
  7799. },
  7800. "notification-url": "https://packagist.org/downloads/",
  7801. "license": [
  7802. "MIT"
  7803. ],
  7804. "authors": [
  7805. {
  7806. "name": "Kévin Dunglas",
  7807. "email": "dunglas@gmail.com"
  7808. },
  7809. {
  7810. "name": "Symfony Community",
  7811. "homepage": "https://symfony.com/contributors"
  7812. }
  7813. ],
  7814. "description": "Manages links between resources",
  7815. "homepage": "https://symfony.com",
  7816. "keywords": [
  7817. "dns-prefetch",
  7818. "http",
  7819. "http2",
  7820. "link",
  7821. "performance",
  7822. "prefetch",
  7823. "preload",
  7824. "prerender",
  7825. "psr13",
  7826. "push"
  7827. ],
  7828. "support": {
  7829. "source": "https://github.com/symfony/web-link/tree/v7.1.1"
  7830. },
  7831. "funding": [
  7832. {
  7833. "url": "https://symfony.com/sponsor",
  7834. "type": "custom"
  7835. },
  7836. {
  7837. "url": "https://github.com/fabpot",
  7838. "type": "github"
  7839. },
  7840. {
  7841. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7842. "type": "tidelift"
  7843. }
  7844. ],
  7845. "time": "2024-05-31T14:57:53+00:00"
  7846. },
  7847. {
  7848. "name": "symfony/webpack-encore-bundle",
  7849. "version": "v2.1.1",
  7850. "source": {
  7851. "type": "git",
  7852. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  7853. "reference": "75cb918df3f65e28cf0d4bc03042bc45ccb19dd0"
  7854. },
  7855. "dist": {
  7856. "type": "zip",
  7857. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/75cb918df3f65e28cf0d4bc03042bc45ccb19dd0",
  7858. "reference": "75cb918df3f65e28cf0d4bc03042bc45ccb19dd0",
  7859. "shasum": ""
  7860. },
  7861. "require": {
  7862. "php": ">=8.1.0",
  7863. "symfony/asset": "^5.4 || ^6.2 || ^7.0",
  7864. "symfony/config": "^5.4 || ^6.2 || ^7.0",
  7865. "symfony/dependency-injection": "^5.4 || ^6.2 || ^7.0",
  7866. "symfony/http-kernel": "^5.4 || ^6.2 || ^7.0",
  7867. "symfony/service-contracts": "^1.1.9 || ^2.1.3 || ^3.0"
  7868. },
  7869. "require-dev": {
  7870. "symfony/framework-bundle": "^5.4 || ^6.2 || ^7.0",
  7871. "symfony/phpunit-bridge": "^5.4 || ^6.2 || ^7.0",
  7872. "symfony/twig-bundle": "^5.4 || ^6.2 || ^7.0",
  7873. "symfony/web-link": "^5.4 || ^6.2 || ^7.0"
  7874. },
  7875. "type": "symfony-bundle",
  7876. "extra": {
  7877. "thanks": {
  7878. "name": "symfony/webpack-encore",
  7879. "url": "https://github.com/symfony/webpack-encore"
  7880. }
  7881. },
  7882. "autoload": {
  7883. "psr-4": {
  7884. "Symfony\\WebpackEncoreBundle\\": "src"
  7885. }
  7886. },
  7887. "notification-url": "https://packagist.org/downloads/",
  7888. "license": [
  7889. "MIT"
  7890. ],
  7891. "authors": [
  7892. {
  7893. "name": "Symfony Community",
  7894. "homepage": "https://symfony.com/contributors"
  7895. }
  7896. ],
  7897. "description": "Integration with your Symfony app & Webpack Encore!",
  7898. "support": {
  7899. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  7900. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v2.1.1"
  7901. },
  7902. "funding": [
  7903. {
  7904. "url": "https://symfony.com/sponsor",
  7905. "type": "custom"
  7906. },
  7907. {
  7908. "url": "https://github.com/fabpot",
  7909. "type": "github"
  7910. },
  7911. {
  7912. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7913. "type": "tidelift"
  7914. }
  7915. ],
  7916. "time": "2023-10-22T18:53:08+00:00"
  7917. },
  7918. {
  7919. "name": "symfony/yaml",
  7920. "version": "v7.1.1",
  7921. "source": {
  7922. "type": "git",
  7923. "url": "https://github.com/symfony/yaml.git",
  7924. "reference": "fa34c77015aa6720469db7003567b9f772492bf2"
  7925. },
  7926. "dist": {
  7927. "type": "zip",
  7928. "url": "https://api.github.com/repos/symfony/yaml/zipball/fa34c77015aa6720469db7003567b9f772492bf2",
  7929. "reference": "fa34c77015aa6720469db7003567b9f772492bf2",
  7930. "shasum": ""
  7931. },
  7932. "require": {
  7933. "php": ">=8.2",
  7934. "symfony/polyfill-ctype": "^1.8"
  7935. },
  7936. "conflict": {
  7937. "symfony/console": "<6.4"
  7938. },
  7939. "require-dev": {
  7940. "symfony/console": "^6.4|^7.0"
  7941. },
  7942. "bin": [
  7943. "Resources/bin/yaml-lint"
  7944. ],
  7945. "type": "library",
  7946. "autoload": {
  7947. "psr-4": {
  7948. "Symfony\\Component\\Yaml\\": ""
  7949. },
  7950. "exclude-from-classmap": [
  7951. "/Tests/"
  7952. ]
  7953. },
  7954. "notification-url": "https://packagist.org/downloads/",
  7955. "license": [
  7956. "MIT"
  7957. ],
  7958. "authors": [
  7959. {
  7960. "name": "Fabien Potencier",
  7961. "email": "fabien@symfony.com"
  7962. },
  7963. {
  7964. "name": "Symfony Community",
  7965. "homepage": "https://symfony.com/contributors"
  7966. }
  7967. ],
  7968. "description": "Loads and dumps YAML files",
  7969. "homepage": "https://symfony.com",
  7970. "support": {
  7971. "source": "https://github.com/symfony/yaml/tree/v7.1.1"
  7972. },
  7973. "funding": [
  7974. {
  7975. "url": "https://symfony.com/sponsor",
  7976. "type": "custom"
  7977. },
  7978. {
  7979. "url": "https://github.com/fabpot",
  7980. "type": "github"
  7981. },
  7982. {
  7983. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7984. "type": "tidelift"
  7985. }
  7986. ],
  7987. "time": "2024-05-31T14:57:53+00:00"
  7988. },
  7989. {
  7990. "name": "twig/extra-bundle",
  7991. "version": "v3.10.0",
  7992. "source": {
  7993. "type": "git",
  7994. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  7995. "reference": "cdc6e23aeb7f4953c1039568c3439aab60c56454"
  7996. },
  7997. "dist": {
  7998. "type": "zip",
  7999. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/cdc6e23aeb7f4953c1039568c3439aab60c56454",
  8000. "reference": "cdc6e23aeb7f4953c1039568c3439aab60c56454",
  8001. "shasum": ""
  8002. },
  8003. "require": {
  8004. "php": ">=7.2.5",
  8005. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  8006. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  8007. "twig/twig": "^3.0"
  8008. },
  8009. "require-dev": {
  8010. "league/commonmark": "^1.0|^2.0",
  8011. "symfony/phpunit-bridge": "^6.4|^7.0",
  8012. "twig/cache-extra": "^3.0",
  8013. "twig/cssinliner-extra": "^3.0",
  8014. "twig/html-extra": "^3.0",
  8015. "twig/inky-extra": "^3.0",
  8016. "twig/intl-extra": "^3.0",
  8017. "twig/markdown-extra": "^3.0",
  8018. "twig/string-extra": "^3.0"
  8019. },
  8020. "type": "symfony-bundle",
  8021. "autoload": {
  8022. "psr-4": {
  8023. "Twig\\Extra\\TwigExtraBundle\\": ""
  8024. },
  8025. "exclude-from-classmap": [
  8026. "/Tests/"
  8027. ]
  8028. },
  8029. "notification-url": "https://packagist.org/downloads/",
  8030. "license": [
  8031. "MIT"
  8032. ],
  8033. "authors": [
  8034. {
  8035. "name": "Fabien Potencier",
  8036. "email": "fabien@symfony.com",
  8037. "homepage": "http://fabien.potencier.org",
  8038. "role": "Lead Developer"
  8039. }
  8040. ],
  8041. "description": "A Symfony bundle for extra Twig extensions",
  8042. "homepage": "https://twig.symfony.com",
  8043. "keywords": [
  8044. "bundle",
  8045. "extra",
  8046. "twig"
  8047. ],
  8048. "support": {
  8049. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.10.0"
  8050. },
  8051. "funding": [
  8052. {
  8053. "url": "https://github.com/fabpot",
  8054. "type": "github"
  8055. },
  8056. {
  8057. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8058. "type": "tidelift"
  8059. }
  8060. ],
  8061. "time": "2024-05-11T07:35:57+00:00"
  8062. },
  8063. {
  8064. "name": "twig/markdown-extra",
  8065. "version": "v3.10.0",
  8066. "source": {
  8067. "type": "git",
  8068. "url": "https://github.com/twigphp/markdown-extra.git",
  8069. "reference": "e4bf2419df819dcf9dc7a0b25dd8cd1092cbd86d"
  8070. },
  8071. "dist": {
  8072. "type": "zip",
  8073. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/e4bf2419df819dcf9dc7a0b25dd8cd1092cbd86d",
  8074. "reference": "e4bf2419df819dcf9dc7a0b25dd8cd1092cbd86d",
  8075. "shasum": ""
  8076. },
  8077. "require": {
  8078. "php": ">=7.2.5",
  8079. "symfony/deprecation-contracts": "^2.5|^3",
  8080. "twig/twig": "^3.0"
  8081. },
  8082. "require-dev": {
  8083. "erusev/parsedown": "^1.7",
  8084. "league/commonmark": "^1.0|^2.0",
  8085. "league/html-to-markdown": "^4.8|^5.0",
  8086. "michelf/php-markdown": "^1.8|^2.0",
  8087. "symfony/phpunit-bridge": "^6.4|^7.0"
  8088. },
  8089. "type": "library",
  8090. "autoload": {
  8091. "files": [
  8092. "Resources/functions.php"
  8093. ],
  8094. "psr-4": {
  8095. "Twig\\Extra\\Markdown\\": ""
  8096. },
  8097. "exclude-from-classmap": [
  8098. "/Tests/"
  8099. ]
  8100. },
  8101. "notification-url": "https://packagist.org/downloads/",
  8102. "license": [
  8103. "MIT"
  8104. ],
  8105. "authors": [
  8106. {
  8107. "name": "Fabien Potencier",
  8108. "email": "fabien@symfony.com",
  8109. "homepage": "http://fabien.potencier.org",
  8110. "role": "Lead Developer"
  8111. }
  8112. ],
  8113. "description": "A Twig extension for Markdown",
  8114. "homepage": "https://twig.symfony.com",
  8115. "keywords": [
  8116. "html",
  8117. "markdown",
  8118. "twig"
  8119. ],
  8120. "support": {
  8121. "source": "https://github.com/twigphp/markdown-extra/tree/v3.10.0"
  8122. },
  8123. "funding": [
  8124. {
  8125. "url": "https://github.com/fabpot",
  8126. "type": "github"
  8127. },
  8128. {
  8129. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8130. "type": "tidelift"
  8131. }
  8132. ],
  8133. "time": "2024-05-11T07:35:57+00:00"
  8134. },
  8135. {
  8136. "name": "twig/twig",
  8137. "version": "v3.10.3",
  8138. "source": {
  8139. "type": "git",
  8140. "url": "https://github.com/twigphp/Twig.git",
  8141. "reference": "67f29781ffafa520b0bbfbd8384674b42db04572"
  8142. },
  8143. "dist": {
  8144. "type": "zip",
  8145. "url": "https://api.github.com/repos/twigphp/Twig/zipball/67f29781ffafa520b0bbfbd8384674b42db04572",
  8146. "reference": "67f29781ffafa520b0bbfbd8384674b42db04572",
  8147. "shasum": ""
  8148. },
  8149. "require": {
  8150. "php": ">=7.2.5",
  8151. "symfony/deprecation-contracts": "^2.5|^3",
  8152. "symfony/polyfill-ctype": "^1.8",
  8153. "symfony/polyfill-mbstring": "^1.3",
  8154. "symfony/polyfill-php80": "^1.22"
  8155. },
  8156. "require-dev": {
  8157. "psr/container": "^1.0|^2.0",
  8158. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  8159. },
  8160. "type": "library",
  8161. "autoload": {
  8162. "files": [
  8163. "src/Resources/core.php",
  8164. "src/Resources/debug.php",
  8165. "src/Resources/escaper.php",
  8166. "src/Resources/string_loader.php"
  8167. ],
  8168. "psr-4": {
  8169. "Twig\\": "src/"
  8170. }
  8171. },
  8172. "notification-url": "https://packagist.org/downloads/",
  8173. "license": [
  8174. "BSD-3-Clause"
  8175. ],
  8176. "authors": [
  8177. {
  8178. "name": "Fabien Potencier",
  8179. "email": "fabien@symfony.com",
  8180. "homepage": "http://fabien.potencier.org",
  8181. "role": "Lead Developer"
  8182. },
  8183. {
  8184. "name": "Twig Team",
  8185. "role": "Contributors"
  8186. },
  8187. {
  8188. "name": "Armin Ronacher",
  8189. "email": "armin.ronacher@active-4.com",
  8190. "role": "Project Founder"
  8191. }
  8192. ],
  8193. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8194. "homepage": "https://twig.symfony.com",
  8195. "keywords": [
  8196. "templating"
  8197. ],
  8198. "support": {
  8199. "issues": "https://github.com/twigphp/Twig/issues",
  8200. "source": "https://github.com/twigphp/Twig/tree/v3.10.3"
  8201. },
  8202. "funding": [
  8203. {
  8204. "url": "https://github.com/fabpot",
  8205. "type": "github"
  8206. },
  8207. {
  8208. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8209. "type": "tidelift"
  8210. }
  8211. ],
  8212. "time": "2024-05-16T10:04:27+00:00"
  8213. },
  8214. {
  8215. "name": "webmozart/assert",
  8216. "version": "1.11.0",
  8217. "source": {
  8218. "type": "git",
  8219. "url": "https://github.com/webmozarts/assert.git",
  8220. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8221. },
  8222. "dist": {
  8223. "type": "zip",
  8224. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8225. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8226. "shasum": ""
  8227. },
  8228. "require": {
  8229. "ext-ctype": "*",
  8230. "php": "^7.2 || ^8.0"
  8231. },
  8232. "conflict": {
  8233. "phpstan/phpstan": "<0.12.20",
  8234. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8235. },
  8236. "require-dev": {
  8237. "phpunit/phpunit": "^8.5.13"
  8238. },
  8239. "type": "library",
  8240. "extra": {
  8241. "branch-alias": {
  8242. "dev-master": "1.10-dev"
  8243. }
  8244. },
  8245. "autoload": {
  8246. "psr-4": {
  8247. "Webmozart\\Assert\\": "src/"
  8248. }
  8249. },
  8250. "notification-url": "https://packagist.org/downloads/",
  8251. "license": [
  8252. "MIT"
  8253. ],
  8254. "authors": [
  8255. {
  8256. "name": "Bernhard Schussek",
  8257. "email": "bschussek@gmail.com"
  8258. }
  8259. ],
  8260. "description": "Assertions to validate method input/output with nice error messages.",
  8261. "keywords": [
  8262. "assert",
  8263. "check",
  8264. "validate"
  8265. ],
  8266. "support": {
  8267. "issues": "https://github.com/webmozarts/assert/issues",
  8268. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8269. },
  8270. "time": "2022-06-03T18:03:27+00:00"
  8271. }
  8272. ],
  8273. "packages-dev": [
  8274. {
  8275. "name": "myclabs/deep-copy",
  8276. "version": "1.12.0",
  8277. "source": {
  8278. "type": "git",
  8279. "url": "https://github.com/myclabs/DeepCopy.git",
  8280. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  8281. },
  8282. "dist": {
  8283. "type": "zip",
  8284. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8285. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8286. "shasum": ""
  8287. },
  8288. "require": {
  8289. "php": "^7.1 || ^8.0"
  8290. },
  8291. "conflict": {
  8292. "doctrine/collections": "<1.6.8",
  8293. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8294. },
  8295. "require-dev": {
  8296. "doctrine/collections": "^1.6.8",
  8297. "doctrine/common": "^2.13.3 || ^3.2.2",
  8298. "phpspec/prophecy": "^1.10",
  8299. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8300. },
  8301. "type": "library",
  8302. "autoload": {
  8303. "files": [
  8304. "src/DeepCopy/deep_copy.php"
  8305. ],
  8306. "psr-4": {
  8307. "DeepCopy\\": "src/DeepCopy/"
  8308. }
  8309. },
  8310. "notification-url": "https://packagist.org/downloads/",
  8311. "license": [
  8312. "MIT"
  8313. ],
  8314. "description": "Create deep copies (clones) of your objects",
  8315. "keywords": [
  8316. "clone",
  8317. "copy",
  8318. "duplicate",
  8319. "object",
  8320. "object graph"
  8321. ],
  8322. "support": {
  8323. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8324. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  8325. },
  8326. "funding": [
  8327. {
  8328. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8329. "type": "tidelift"
  8330. }
  8331. ],
  8332. "time": "2024-06-12T14:39:25+00:00"
  8333. },
  8334. {
  8335. "name": "nikic/php-parser",
  8336. "version": "v5.1.0",
  8337. "source": {
  8338. "type": "git",
  8339. "url": "https://github.com/nikic/PHP-Parser.git",
  8340. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1"
  8341. },
  8342. "dist": {
  8343. "type": "zip",
  8344. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  8345. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  8346. "shasum": ""
  8347. },
  8348. "require": {
  8349. "ext-ctype": "*",
  8350. "ext-json": "*",
  8351. "ext-tokenizer": "*",
  8352. "php": ">=7.4"
  8353. },
  8354. "require-dev": {
  8355. "ircmaxell/php-yacc": "^0.0.7",
  8356. "phpunit/phpunit": "^9.0"
  8357. },
  8358. "bin": [
  8359. "bin/php-parse"
  8360. ],
  8361. "type": "library",
  8362. "extra": {
  8363. "branch-alias": {
  8364. "dev-master": "5.0-dev"
  8365. }
  8366. },
  8367. "autoload": {
  8368. "psr-4": {
  8369. "PhpParser\\": "lib/PhpParser"
  8370. }
  8371. },
  8372. "notification-url": "https://packagist.org/downloads/",
  8373. "license": [
  8374. "BSD-3-Clause"
  8375. ],
  8376. "authors": [
  8377. {
  8378. "name": "Nikita Popov"
  8379. }
  8380. ],
  8381. "description": "A PHP parser written in PHP",
  8382. "keywords": [
  8383. "parser",
  8384. "php"
  8385. ],
  8386. "support": {
  8387. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8388. "source": "https://github.com/nikic/PHP-Parser/tree/v5.1.0"
  8389. },
  8390. "time": "2024-07-01T20:03:41+00:00"
  8391. },
  8392. {
  8393. "name": "phar-io/manifest",
  8394. "version": "2.0.4",
  8395. "source": {
  8396. "type": "git",
  8397. "url": "https://github.com/phar-io/manifest.git",
  8398. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8399. },
  8400. "dist": {
  8401. "type": "zip",
  8402. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8403. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8404. "shasum": ""
  8405. },
  8406. "require": {
  8407. "ext-dom": "*",
  8408. "ext-libxml": "*",
  8409. "ext-phar": "*",
  8410. "ext-xmlwriter": "*",
  8411. "phar-io/version": "^3.0.1",
  8412. "php": "^7.2 || ^8.0"
  8413. },
  8414. "type": "library",
  8415. "extra": {
  8416. "branch-alias": {
  8417. "dev-master": "2.0.x-dev"
  8418. }
  8419. },
  8420. "autoload": {
  8421. "classmap": [
  8422. "src/"
  8423. ]
  8424. },
  8425. "notification-url": "https://packagist.org/downloads/",
  8426. "license": [
  8427. "BSD-3-Clause"
  8428. ],
  8429. "authors": [
  8430. {
  8431. "name": "Arne Blankerts",
  8432. "email": "arne@blankerts.de",
  8433. "role": "Developer"
  8434. },
  8435. {
  8436. "name": "Sebastian Heuer",
  8437. "email": "sebastian@phpeople.de",
  8438. "role": "Developer"
  8439. },
  8440. {
  8441. "name": "Sebastian Bergmann",
  8442. "email": "sebastian@phpunit.de",
  8443. "role": "Developer"
  8444. }
  8445. ],
  8446. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8447. "support": {
  8448. "issues": "https://github.com/phar-io/manifest/issues",
  8449. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8450. },
  8451. "funding": [
  8452. {
  8453. "url": "https://github.com/theseer",
  8454. "type": "github"
  8455. }
  8456. ],
  8457. "time": "2024-03-03T12:33:53+00:00"
  8458. },
  8459. {
  8460. "name": "phar-io/version",
  8461. "version": "3.2.1",
  8462. "source": {
  8463. "type": "git",
  8464. "url": "https://github.com/phar-io/version.git",
  8465. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8466. },
  8467. "dist": {
  8468. "type": "zip",
  8469. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8470. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8471. "shasum": ""
  8472. },
  8473. "require": {
  8474. "php": "^7.2 || ^8.0"
  8475. },
  8476. "type": "library",
  8477. "autoload": {
  8478. "classmap": [
  8479. "src/"
  8480. ]
  8481. },
  8482. "notification-url": "https://packagist.org/downloads/",
  8483. "license": [
  8484. "BSD-3-Clause"
  8485. ],
  8486. "authors": [
  8487. {
  8488. "name": "Arne Blankerts",
  8489. "email": "arne@blankerts.de",
  8490. "role": "Developer"
  8491. },
  8492. {
  8493. "name": "Sebastian Heuer",
  8494. "email": "sebastian@phpeople.de",
  8495. "role": "Developer"
  8496. },
  8497. {
  8498. "name": "Sebastian Bergmann",
  8499. "email": "sebastian@phpunit.de",
  8500. "role": "Developer"
  8501. }
  8502. ],
  8503. "description": "Library for handling version information and constraints",
  8504. "support": {
  8505. "issues": "https://github.com/phar-io/version/issues",
  8506. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8507. },
  8508. "time": "2022-02-21T01:04:05+00:00"
  8509. },
  8510. {
  8511. "name": "phpunit/php-code-coverage",
  8512. "version": "9.2.31",
  8513. "source": {
  8514. "type": "git",
  8515. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8516. "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965"
  8517. },
  8518. "dist": {
  8519. "type": "zip",
  8520. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/48c34b5d8d983006bd2adc2d0de92963b9155965",
  8521. "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965",
  8522. "shasum": ""
  8523. },
  8524. "require": {
  8525. "ext-dom": "*",
  8526. "ext-libxml": "*",
  8527. "ext-xmlwriter": "*",
  8528. "nikic/php-parser": "^4.18 || ^5.0",
  8529. "php": ">=7.3",
  8530. "phpunit/php-file-iterator": "^3.0.3",
  8531. "phpunit/php-text-template": "^2.0.2",
  8532. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8533. "sebastian/complexity": "^2.0",
  8534. "sebastian/environment": "^5.1.2",
  8535. "sebastian/lines-of-code": "^1.0.3",
  8536. "sebastian/version": "^3.0.1",
  8537. "theseer/tokenizer": "^1.2.0"
  8538. },
  8539. "require-dev": {
  8540. "phpunit/phpunit": "^9.3"
  8541. },
  8542. "suggest": {
  8543. "ext-pcov": "PHP extension that provides line coverage",
  8544. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8545. },
  8546. "type": "library",
  8547. "extra": {
  8548. "branch-alias": {
  8549. "dev-master": "9.2-dev"
  8550. }
  8551. },
  8552. "autoload": {
  8553. "classmap": [
  8554. "src/"
  8555. ]
  8556. },
  8557. "notification-url": "https://packagist.org/downloads/",
  8558. "license": [
  8559. "BSD-3-Clause"
  8560. ],
  8561. "authors": [
  8562. {
  8563. "name": "Sebastian Bergmann",
  8564. "email": "sebastian@phpunit.de",
  8565. "role": "lead"
  8566. }
  8567. ],
  8568. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8569. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8570. "keywords": [
  8571. "coverage",
  8572. "testing",
  8573. "xunit"
  8574. ],
  8575. "support": {
  8576. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8577. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8578. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.31"
  8579. },
  8580. "funding": [
  8581. {
  8582. "url": "https://github.com/sebastianbergmann",
  8583. "type": "github"
  8584. }
  8585. ],
  8586. "time": "2024-03-02T06:37:42+00:00"
  8587. },
  8588. {
  8589. "name": "phpunit/php-file-iterator",
  8590. "version": "3.0.6",
  8591. "source": {
  8592. "type": "git",
  8593. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8594. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8595. },
  8596. "dist": {
  8597. "type": "zip",
  8598. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8599. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8600. "shasum": ""
  8601. },
  8602. "require": {
  8603. "php": ">=7.3"
  8604. },
  8605. "require-dev": {
  8606. "phpunit/phpunit": "^9.3"
  8607. },
  8608. "type": "library",
  8609. "extra": {
  8610. "branch-alias": {
  8611. "dev-master": "3.0-dev"
  8612. }
  8613. },
  8614. "autoload": {
  8615. "classmap": [
  8616. "src/"
  8617. ]
  8618. },
  8619. "notification-url": "https://packagist.org/downloads/",
  8620. "license": [
  8621. "BSD-3-Clause"
  8622. ],
  8623. "authors": [
  8624. {
  8625. "name": "Sebastian Bergmann",
  8626. "email": "sebastian@phpunit.de",
  8627. "role": "lead"
  8628. }
  8629. ],
  8630. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8631. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8632. "keywords": [
  8633. "filesystem",
  8634. "iterator"
  8635. ],
  8636. "support": {
  8637. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8638. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8639. },
  8640. "funding": [
  8641. {
  8642. "url": "https://github.com/sebastianbergmann",
  8643. "type": "github"
  8644. }
  8645. ],
  8646. "time": "2021-12-02T12:48:52+00:00"
  8647. },
  8648. {
  8649. "name": "phpunit/php-invoker",
  8650. "version": "3.1.1",
  8651. "source": {
  8652. "type": "git",
  8653. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8654. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8655. },
  8656. "dist": {
  8657. "type": "zip",
  8658. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8659. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8660. "shasum": ""
  8661. },
  8662. "require": {
  8663. "php": ">=7.3"
  8664. },
  8665. "require-dev": {
  8666. "ext-pcntl": "*",
  8667. "phpunit/phpunit": "^9.3"
  8668. },
  8669. "suggest": {
  8670. "ext-pcntl": "*"
  8671. },
  8672. "type": "library",
  8673. "extra": {
  8674. "branch-alias": {
  8675. "dev-master": "3.1-dev"
  8676. }
  8677. },
  8678. "autoload": {
  8679. "classmap": [
  8680. "src/"
  8681. ]
  8682. },
  8683. "notification-url": "https://packagist.org/downloads/",
  8684. "license": [
  8685. "BSD-3-Clause"
  8686. ],
  8687. "authors": [
  8688. {
  8689. "name": "Sebastian Bergmann",
  8690. "email": "sebastian@phpunit.de",
  8691. "role": "lead"
  8692. }
  8693. ],
  8694. "description": "Invoke callables with a timeout",
  8695. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8696. "keywords": [
  8697. "process"
  8698. ],
  8699. "support": {
  8700. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8701. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8702. },
  8703. "funding": [
  8704. {
  8705. "url": "https://github.com/sebastianbergmann",
  8706. "type": "github"
  8707. }
  8708. ],
  8709. "time": "2020-09-28T05:58:55+00:00"
  8710. },
  8711. {
  8712. "name": "phpunit/php-text-template",
  8713. "version": "2.0.4",
  8714. "source": {
  8715. "type": "git",
  8716. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8717. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8718. },
  8719. "dist": {
  8720. "type": "zip",
  8721. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8722. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8723. "shasum": ""
  8724. },
  8725. "require": {
  8726. "php": ">=7.3"
  8727. },
  8728. "require-dev": {
  8729. "phpunit/phpunit": "^9.3"
  8730. },
  8731. "type": "library",
  8732. "extra": {
  8733. "branch-alias": {
  8734. "dev-master": "2.0-dev"
  8735. }
  8736. },
  8737. "autoload": {
  8738. "classmap": [
  8739. "src/"
  8740. ]
  8741. },
  8742. "notification-url": "https://packagist.org/downloads/",
  8743. "license": [
  8744. "BSD-3-Clause"
  8745. ],
  8746. "authors": [
  8747. {
  8748. "name": "Sebastian Bergmann",
  8749. "email": "sebastian@phpunit.de",
  8750. "role": "lead"
  8751. }
  8752. ],
  8753. "description": "Simple template engine.",
  8754. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8755. "keywords": [
  8756. "template"
  8757. ],
  8758. "support": {
  8759. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8760. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8761. },
  8762. "funding": [
  8763. {
  8764. "url": "https://github.com/sebastianbergmann",
  8765. "type": "github"
  8766. }
  8767. ],
  8768. "time": "2020-10-26T05:33:50+00:00"
  8769. },
  8770. {
  8771. "name": "phpunit/php-timer",
  8772. "version": "5.0.3",
  8773. "source": {
  8774. "type": "git",
  8775. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8776. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8777. },
  8778. "dist": {
  8779. "type": "zip",
  8780. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8781. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8782. "shasum": ""
  8783. },
  8784. "require": {
  8785. "php": ">=7.3"
  8786. },
  8787. "require-dev": {
  8788. "phpunit/phpunit": "^9.3"
  8789. },
  8790. "type": "library",
  8791. "extra": {
  8792. "branch-alias": {
  8793. "dev-master": "5.0-dev"
  8794. }
  8795. },
  8796. "autoload": {
  8797. "classmap": [
  8798. "src/"
  8799. ]
  8800. },
  8801. "notification-url": "https://packagist.org/downloads/",
  8802. "license": [
  8803. "BSD-3-Clause"
  8804. ],
  8805. "authors": [
  8806. {
  8807. "name": "Sebastian Bergmann",
  8808. "email": "sebastian@phpunit.de",
  8809. "role": "lead"
  8810. }
  8811. ],
  8812. "description": "Utility class for timing",
  8813. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8814. "keywords": [
  8815. "timer"
  8816. ],
  8817. "support": {
  8818. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8819. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8820. },
  8821. "funding": [
  8822. {
  8823. "url": "https://github.com/sebastianbergmann",
  8824. "type": "github"
  8825. }
  8826. ],
  8827. "time": "2020-10-26T13:16:10+00:00"
  8828. },
  8829. {
  8830. "name": "phpunit/phpunit",
  8831. "version": "9.6.20",
  8832. "source": {
  8833. "type": "git",
  8834. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8835. "reference": "49d7820565836236411f5dc002d16dd689cde42f"
  8836. },
  8837. "dist": {
  8838. "type": "zip",
  8839. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/49d7820565836236411f5dc002d16dd689cde42f",
  8840. "reference": "49d7820565836236411f5dc002d16dd689cde42f",
  8841. "shasum": ""
  8842. },
  8843. "require": {
  8844. "doctrine/instantiator": "^1.5.0 || ^2",
  8845. "ext-dom": "*",
  8846. "ext-json": "*",
  8847. "ext-libxml": "*",
  8848. "ext-mbstring": "*",
  8849. "ext-xml": "*",
  8850. "ext-xmlwriter": "*",
  8851. "myclabs/deep-copy": "^1.12.0",
  8852. "phar-io/manifest": "^2.0.4",
  8853. "phar-io/version": "^3.2.1",
  8854. "php": ">=7.3",
  8855. "phpunit/php-code-coverage": "^9.2.31",
  8856. "phpunit/php-file-iterator": "^3.0.6",
  8857. "phpunit/php-invoker": "^3.1.1",
  8858. "phpunit/php-text-template": "^2.0.4",
  8859. "phpunit/php-timer": "^5.0.3",
  8860. "sebastian/cli-parser": "^1.0.2",
  8861. "sebastian/code-unit": "^1.0.8",
  8862. "sebastian/comparator": "^4.0.8",
  8863. "sebastian/diff": "^4.0.6",
  8864. "sebastian/environment": "^5.1.5",
  8865. "sebastian/exporter": "^4.0.6",
  8866. "sebastian/global-state": "^5.0.7",
  8867. "sebastian/object-enumerator": "^4.0.4",
  8868. "sebastian/resource-operations": "^3.0.4",
  8869. "sebastian/type": "^3.2.1",
  8870. "sebastian/version": "^3.0.2"
  8871. },
  8872. "suggest": {
  8873. "ext-soap": "To be able to generate mocks based on WSDL files",
  8874. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8875. },
  8876. "bin": [
  8877. "phpunit"
  8878. ],
  8879. "type": "library",
  8880. "extra": {
  8881. "branch-alias": {
  8882. "dev-master": "9.6-dev"
  8883. }
  8884. },
  8885. "autoload": {
  8886. "files": [
  8887. "src/Framework/Assert/Functions.php"
  8888. ],
  8889. "classmap": [
  8890. "src/"
  8891. ]
  8892. },
  8893. "notification-url": "https://packagist.org/downloads/",
  8894. "license": [
  8895. "BSD-3-Clause"
  8896. ],
  8897. "authors": [
  8898. {
  8899. "name": "Sebastian Bergmann",
  8900. "email": "sebastian@phpunit.de",
  8901. "role": "lead"
  8902. }
  8903. ],
  8904. "description": "The PHP Unit Testing framework.",
  8905. "homepage": "https://phpunit.de/",
  8906. "keywords": [
  8907. "phpunit",
  8908. "testing",
  8909. "xunit"
  8910. ],
  8911. "support": {
  8912. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8913. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8914. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.20"
  8915. },
  8916. "funding": [
  8917. {
  8918. "url": "https://phpunit.de/sponsors.html",
  8919. "type": "custom"
  8920. },
  8921. {
  8922. "url": "https://github.com/sebastianbergmann",
  8923. "type": "github"
  8924. },
  8925. {
  8926. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8927. "type": "tidelift"
  8928. }
  8929. ],
  8930. "time": "2024-07-10T11:45:39+00:00"
  8931. },
  8932. {
  8933. "name": "sebastian/cli-parser",
  8934. "version": "1.0.2",
  8935. "source": {
  8936. "type": "git",
  8937. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8938. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  8939. },
  8940. "dist": {
  8941. "type": "zip",
  8942. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8943. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8944. "shasum": ""
  8945. },
  8946. "require": {
  8947. "php": ">=7.3"
  8948. },
  8949. "require-dev": {
  8950. "phpunit/phpunit": "^9.3"
  8951. },
  8952. "type": "library",
  8953. "extra": {
  8954. "branch-alias": {
  8955. "dev-master": "1.0-dev"
  8956. }
  8957. },
  8958. "autoload": {
  8959. "classmap": [
  8960. "src/"
  8961. ]
  8962. },
  8963. "notification-url": "https://packagist.org/downloads/",
  8964. "license": [
  8965. "BSD-3-Clause"
  8966. ],
  8967. "authors": [
  8968. {
  8969. "name": "Sebastian Bergmann",
  8970. "email": "sebastian@phpunit.de",
  8971. "role": "lead"
  8972. }
  8973. ],
  8974. "description": "Library for parsing CLI options",
  8975. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8976. "support": {
  8977. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8978. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  8979. },
  8980. "funding": [
  8981. {
  8982. "url": "https://github.com/sebastianbergmann",
  8983. "type": "github"
  8984. }
  8985. ],
  8986. "time": "2024-03-02T06:27:43+00:00"
  8987. },
  8988. {
  8989. "name": "sebastian/code-unit",
  8990. "version": "1.0.8",
  8991. "source": {
  8992. "type": "git",
  8993. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8994. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  8995. },
  8996. "dist": {
  8997. "type": "zip",
  8998. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8999. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9000. "shasum": ""
  9001. },
  9002. "require": {
  9003. "php": ">=7.3"
  9004. },
  9005. "require-dev": {
  9006. "phpunit/phpunit": "^9.3"
  9007. },
  9008. "type": "library",
  9009. "extra": {
  9010. "branch-alias": {
  9011. "dev-master": "1.0-dev"
  9012. }
  9013. },
  9014. "autoload": {
  9015. "classmap": [
  9016. "src/"
  9017. ]
  9018. },
  9019. "notification-url": "https://packagist.org/downloads/",
  9020. "license": [
  9021. "BSD-3-Clause"
  9022. ],
  9023. "authors": [
  9024. {
  9025. "name": "Sebastian Bergmann",
  9026. "email": "sebastian@phpunit.de",
  9027. "role": "lead"
  9028. }
  9029. ],
  9030. "description": "Collection of value objects that represent the PHP code units",
  9031. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9032. "support": {
  9033. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9034. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9035. },
  9036. "funding": [
  9037. {
  9038. "url": "https://github.com/sebastianbergmann",
  9039. "type": "github"
  9040. }
  9041. ],
  9042. "time": "2020-10-26T13:08:54+00:00"
  9043. },
  9044. {
  9045. "name": "sebastian/code-unit-reverse-lookup",
  9046. "version": "2.0.3",
  9047. "source": {
  9048. "type": "git",
  9049. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9050. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9051. },
  9052. "dist": {
  9053. "type": "zip",
  9054. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9055. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9056. "shasum": ""
  9057. },
  9058. "require": {
  9059. "php": ">=7.3"
  9060. },
  9061. "require-dev": {
  9062. "phpunit/phpunit": "^9.3"
  9063. },
  9064. "type": "library",
  9065. "extra": {
  9066. "branch-alias": {
  9067. "dev-master": "2.0-dev"
  9068. }
  9069. },
  9070. "autoload": {
  9071. "classmap": [
  9072. "src/"
  9073. ]
  9074. },
  9075. "notification-url": "https://packagist.org/downloads/",
  9076. "license": [
  9077. "BSD-3-Clause"
  9078. ],
  9079. "authors": [
  9080. {
  9081. "name": "Sebastian Bergmann",
  9082. "email": "sebastian@phpunit.de"
  9083. }
  9084. ],
  9085. "description": "Looks up which function or method a line of code belongs to",
  9086. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9087. "support": {
  9088. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9089. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9090. },
  9091. "funding": [
  9092. {
  9093. "url": "https://github.com/sebastianbergmann",
  9094. "type": "github"
  9095. }
  9096. ],
  9097. "time": "2020-09-28T05:30:19+00:00"
  9098. },
  9099. {
  9100. "name": "sebastian/comparator",
  9101. "version": "4.0.8",
  9102. "source": {
  9103. "type": "git",
  9104. "url": "https://github.com/sebastianbergmann/comparator.git",
  9105. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9106. },
  9107. "dist": {
  9108. "type": "zip",
  9109. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9110. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9111. "shasum": ""
  9112. },
  9113. "require": {
  9114. "php": ">=7.3",
  9115. "sebastian/diff": "^4.0",
  9116. "sebastian/exporter": "^4.0"
  9117. },
  9118. "require-dev": {
  9119. "phpunit/phpunit": "^9.3"
  9120. },
  9121. "type": "library",
  9122. "extra": {
  9123. "branch-alias": {
  9124. "dev-master": "4.0-dev"
  9125. }
  9126. },
  9127. "autoload": {
  9128. "classmap": [
  9129. "src/"
  9130. ]
  9131. },
  9132. "notification-url": "https://packagist.org/downloads/",
  9133. "license": [
  9134. "BSD-3-Clause"
  9135. ],
  9136. "authors": [
  9137. {
  9138. "name": "Sebastian Bergmann",
  9139. "email": "sebastian@phpunit.de"
  9140. },
  9141. {
  9142. "name": "Jeff Welch",
  9143. "email": "whatthejeff@gmail.com"
  9144. },
  9145. {
  9146. "name": "Volker Dusch",
  9147. "email": "github@wallbash.com"
  9148. },
  9149. {
  9150. "name": "Bernhard Schussek",
  9151. "email": "bschussek@2bepublished.at"
  9152. }
  9153. ],
  9154. "description": "Provides the functionality to compare PHP values for equality",
  9155. "homepage": "https://github.com/sebastianbergmann/comparator",
  9156. "keywords": [
  9157. "comparator",
  9158. "compare",
  9159. "equality"
  9160. ],
  9161. "support": {
  9162. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9163. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9164. },
  9165. "funding": [
  9166. {
  9167. "url": "https://github.com/sebastianbergmann",
  9168. "type": "github"
  9169. }
  9170. ],
  9171. "time": "2022-09-14T12:41:17+00:00"
  9172. },
  9173. {
  9174. "name": "sebastian/complexity",
  9175. "version": "2.0.3",
  9176. "source": {
  9177. "type": "git",
  9178. "url": "https://github.com/sebastianbergmann/complexity.git",
  9179. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9180. },
  9181. "dist": {
  9182. "type": "zip",
  9183. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9184. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9185. "shasum": ""
  9186. },
  9187. "require": {
  9188. "nikic/php-parser": "^4.18 || ^5.0",
  9189. "php": ">=7.3"
  9190. },
  9191. "require-dev": {
  9192. "phpunit/phpunit": "^9.3"
  9193. },
  9194. "type": "library",
  9195. "extra": {
  9196. "branch-alias": {
  9197. "dev-master": "2.0-dev"
  9198. }
  9199. },
  9200. "autoload": {
  9201. "classmap": [
  9202. "src/"
  9203. ]
  9204. },
  9205. "notification-url": "https://packagist.org/downloads/",
  9206. "license": [
  9207. "BSD-3-Clause"
  9208. ],
  9209. "authors": [
  9210. {
  9211. "name": "Sebastian Bergmann",
  9212. "email": "sebastian@phpunit.de",
  9213. "role": "lead"
  9214. }
  9215. ],
  9216. "description": "Library for calculating the complexity of PHP code units",
  9217. "homepage": "https://github.com/sebastianbergmann/complexity",
  9218. "support": {
  9219. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9220. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9221. },
  9222. "funding": [
  9223. {
  9224. "url": "https://github.com/sebastianbergmann",
  9225. "type": "github"
  9226. }
  9227. ],
  9228. "time": "2023-12-22T06:19:30+00:00"
  9229. },
  9230. {
  9231. "name": "sebastian/diff",
  9232. "version": "4.0.6",
  9233. "source": {
  9234. "type": "git",
  9235. "url": "https://github.com/sebastianbergmann/diff.git",
  9236. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9237. },
  9238. "dist": {
  9239. "type": "zip",
  9240. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9241. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9242. "shasum": ""
  9243. },
  9244. "require": {
  9245. "php": ">=7.3"
  9246. },
  9247. "require-dev": {
  9248. "phpunit/phpunit": "^9.3",
  9249. "symfony/process": "^4.2 || ^5"
  9250. },
  9251. "type": "library",
  9252. "extra": {
  9253. "branch-alias": {
  9254. "dev-master": "4.0-dev"
  9255. }
  9256. },
  9257. "autoload": {
  9258. "classmap": [
  9259. "src/"
  9260. ]
  9261. },
  9262. "notification-url": "https://packagist.org/downloads/",
  9263. "license": [
  9264. "BSD-3-Clause"
  9265. ],
  9266. "authors": [
  9267. {
  9268. "name": "Sebastian Bergmann",
  9269. "email": "sebastian@phpunit.de"
  9270. },
  9271. {
  9272. "name": "Kore Nordmann",
  9273. "email": "mail@kore-nordmann.de"
  9274. }
  9275. ],
  9276. "description": "Diff implementation",
  9277. "homepage": "https://github.com/sebastianbergmann/diff",
  9278. "keywords": [
  9279. "diff",
  9280. "udiff",
  9281. "unidiff",
  9282. "unified diff"
  9283. ],
  9284. "support": {
  9285. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9286. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9287. },
  9288. "funding": [
  9289. {
  9290. "url": "https://github.com/sebastianbergmann",
  9291. "type": "github"
  9292. }
  9293. ],
  9294. "time": "2024-03-02T06:30:58+00:00"
  9295. },
  9296. {
  9297. "name": "sebastian/environment",
  9298. "version": "5.1.5",
  9299. "source": {
  9300. "type": "git",
  9301. "url": "https://github.com/sebastianbergmann/environment.git",
  9302. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9303. },
  9304. "dist": {
  9305. "type": "zip",
  9306. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9307. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9308. "shasum": ""
  9309. },
  9310. "require": {
  9311. "php": ">=7.3"
  9312. },
  9313. "require-dev": {
  9314. "phpunit/phpunit": "^9.3"
  9315. },
  9316. "suggest": {
  9317. "ext-posix": "*"
  9318. },
  9319. "type": "library",
  9320. "extra": {
  9321. "branch-alias": {
  9322. "dev-master": "5.1-dev"
  9323. }
  9324. },
  9325. "autoload": {
  9326. "classmap": [
  9327. "src/"
  9328. ]
  9329. },
  9330. "notification-url": "https://packagist.org/downloads/",
  9331. "license": [
  9332. "BSD-3-Clause"
  9333. ],
  9334. "authors": [
  9335. {
  9336. "name": "Sebastian Bergmann",
  9337. "email": "sebastian@phpunit.de"
  9338. }
  9339. ],
  9340. "description": "Provides functionality to handle HHVM/PHP environments",
  9341. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9342. "keywords": [
  9343. "Xdebug",
  9344. "environment",
  9345. "hhvm"
  9346. ],
  9347. "support": {
  9348. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9349. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9350. },
  9351. "funding": [
  9352. {
  9353. "url": "https://github.com/sebastianbergmann",
  9354. "type": "github"
  9355. }
  9356. ],
  9357. "time": "2023-02-03T06:03:51+00:00"
  9358. },
  9359. {
  9360. "name": "sebastian/exporter",
  9361. "version": "4.0.6",
  9362. "source": {
  9363. "type": "git",
  9364. "url": "https://github.com/sebastianbergmann/exporter.git",
  9365. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  9366. },
  9367. "dist": {
  9368. "type": "zip",
  9369. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  9370. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  9371. "shasum": ""
  9372. },
  9373. "require": {
  9374. "php": ">=7.3",
  9375. "sebastian/recursion-context": "^4.0"
  9376. },
  9377. "require-dev": {
  9378. "ext-mbstring": "*",
  9379. "phpunit/phpunit": "^9.3"
  9380. },
  9381. "type": "library",
  9382. "extra": {
  9383. "branch-alias": {
  9384. "dev-master": "4.0-dev"
  9385. }
  9386. },
  9387. "autoload": {
  9388. "classmap": [
  9389. "src/"
  9390. ]
  9391. },
  9392. "notification-url": "https://packagist.org/downloads/",
  9393. "license": [
  9394. "BSD-3-Clause"
  9395. ],
  9396. "authors": [
  9397. {
  9398. "name": "Sebastian Bergmann",
  9399. "email": "sebastian@phpunit.de"
  9400. },
  9401. {
  9402. "name": "Jeff Welch",
  9403. "email": "whatthejeff@gmail.com"
  9404. },
  9405. {
  9406. "name": "Volker Dusch",
  9407. "email": "github@wallbash.com"
  9408. },
  9409. {
  9410. "name": "Adam Harvey",
  9411. "email": "aharvey@php.net"
  9412. },
  9413. {
  9414. "name": "Bernhard Schussek",
  9415. "email": "bschussek@gmail.com"
  9416. }
  9417. ],
  9418. "description": "Provides the functionality to export PHP variables for visualization",
  9419. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9420. "keywords": [
  9421. "export",
  9422. "exporter"
  9423. ],
  9424. "support": {
  9425. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9426. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  9427. },
  9428. "funding": [
  9429. {
  9430. "url": "https://github.com/sebastianbergmann",
  9431. "type": "github"
  9432. }
  9433. ],
  9434. "time": "2024-03-02T06:33:00+00:00"
  9435. },
  9436. {
  9437. "name": "sebastian/global-state",
  9438. "version": "5.0.7",
  9439. "source": {
  9440. "type": "git",
  9441. "url": "https://github.com/sebastianbergmann/global-state.git",
  9442. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  9443. },
  9444. "dist": {
  9445. "type": "zip",
  9446. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9447. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9448. "shasum": ""
  9449. },
  9450. "require": {
  9451. "php": ">=7.3",
  9452. "sebastian/object-reflector": "^2.0",
  9453. "sebastian/recursion-context": "^4.0"
  9454. },
  9455. "require-dev": {
  9456. "ext-dom": "*",
  9457. "phpunit/phpunit": "^9.3"
  9458. },
  9459. "suggest": {
  9460. "ext-uopz": "*"
  9461. },
  9462. "type": "library",
  9463. "extra": {
  9464. "branch-alias": {
  9465. "dev-master": "5.0-dev"
  9466. }
  9467. },
  9468. "autoload": {
  9469. "classmap": [
  9470. "src/"
  9471. ]
  9472. },
  9473. "notification-url": "https://packagist.org/downloads/",
  9474. "license": [
  9475. "BSD-3-Clause"
  9476. ],
  9477. "authors": [
  9478. {
  9479. "name": "Sebastian Bergmann",
  9480. "email": "sebastian@phpunit.de"
  9481. }
  9482. ],
  9483. "description": "Snapshotting of global state",
  9484. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9485. "keywords": [
  9486. "global state"
  9487. ],
  9488. "support": {
  9489. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9490. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  9491. },
  9492. "funding": [
  9493. {
  9494. "url": "https://github.com/sebastianbergmann",
  9495. "type": "github"
  9496. }
  9497. ],
  9498. "time": "2024-03-02T06:35:11+00:00"
  9499. },
  9500. {
  9501. "name": "sebastian/lines-of-code",
  9502. "version": "1.0.4",
  9503. "source": {
  9504. "type": "git",
  9505. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9506. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9507. },
  9508. "dist": {
  9509. "type": "zip",
  9510. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9511. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9512. "shasum": ""
  9513. },
  9514. "require": {
  9515. "nikic/php-parser": "^4.18 || ^5.0",
  9516. "php": ">=7.3"
  9517. },
  9518. "require-dev": {
  9519. "phpunit/phpunit": "^9.3"
  9520. },
  9521. "type": "library",
  9522. "extra": {
  9523. "branch-alias": {
  9524. "dev-master": "1.0-dev"
  9525. }
  9526. },
  9527. "autoload": {
  9528. "classmap": [
  9529. "src/"
  9530. ]
  9531. },
  9532. "notification-url": "https://packagist.org/downloads/",
  9533. "license": [
  9534. "BSD-3-Clause"
  9535. ],
  9536. "authors": [
  9537. {
  9538. "name": "Sebastian Bergmann",
  9539. "email": "sebastian@phpunit.de",
  9540. "role": "lead"
  9541. }
  9542. ],
  9543. "description": "Library for counting the lines of code in PHP source code",
  9544. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9545. "support": {
  9546. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9547. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9548. },
  9549. "funding": [
  9550. {
  9551. "url": "https://github.com/sebastianbergmann",
  9552. "type": "github"
  9553. }
  9554. ],
  9555. "time": "2023-12-22T06:20:34+00:00"
  9556. },
  9557. {
  9558. "name": "sebastian/object-enumerator",
  9559. "version": "4.0.4",
  9560. "source": {
  9561. "type": "git",
  9562. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9563. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9564. },
  9565. "dist": {
  9566. "type": "zip",
  9567. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9568. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9569. "shasum": ""
  9570. },
  9571. "require": {
  9572. "php": ">=7.3",
  9573. "sebastian/object-reflector": "^2.0",
  9574. "sebastian/recursion-context": "^4.0"
  9575. },
  9576. "require-dev": {
  9577. "phpunit/phpunit": "^9.3"
  9578. },
  9579. "type": "library",
  9580. "extra": {
  9581. "branch-alias": {
  9582. "dev-master": "4.0-dev"
  9583. }
  9584. },
  9585. "autoload": {
  9586. "classmap": [
  9587. "src/"
  9588. ]
  9589. },
  9590. "notification-url": "https://packagist.org/downloads/",
  9591. "license": [
  9592. "BSD-3-Clause"
  9593. ],
  9594. "authors": [
  9595. {
  9596. "name": "Sebastian Bergmann",
  9597. "email": "sebastian@phpunit.de"
  9598. }
  9599. ],
  9600. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9601. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9602. "support": {
  9603. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9604. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9605. },
  9606. "funding": [
  9607. {
  9608. "url": "https://github.com/sebastianbergmann",
  9609. "type": "github"
  9610. }
  9611. ],
  9612. "time": "2020-10-26T13:12:34+00:00"
  9613. },
  9614. {
  9615. "name": "sebastian/object-reflector",
  9616. "version": "2.0.4",
  9617. "source": {
  9618. "type": "git",
  9619. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9620. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9621. },
  9622. "dist": {
  9623. "type": "zip",
  9624. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9625. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9626. "shasum": ""
  9627. },
  9628. "require": {
  9629. "php": ">=7.3"
  9630. },
  9631. "require-dev": {
  9632. "phpunit/phpunit": "^9.3"
  9633. },
  9634. "type": "library",
  9635. "extra": {
  9636. "branch-alias": {
  9637. "dev-master": "2.0-dev"
  9638. }
  9639. },
  9640. "autoload": {
  9641. "classmap": [
  9642. "src/"
  9643. ]
  9644. },
  9645. "notification-url": "https://packagist.org/downloads/",
  9646. "license": [
  9647. "BSD-3-Clause"
  9648. ],
  9649. "authors": [
  9650. {
  9651. "name": "Sebastian Bergmann",
  9652. "email": "sebastian@phpunit.de"
  9653. }
  9654. ],
  9655. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9656. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9657. "support": {
  9658. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9659. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9660. },
  9661. "funding": [
  9662. {
  9663. "url": "https://github.com/sebastianbergmann",
  9664. "type": "github"
  9665. }
  9666. ],
  9667. "time": "2020-10-26T13:14:26+00:00"
  9668. },
  9669. {
  9670. "name": "sebastian/recursion-context",
  9671. "version": "4.0.5",
  9672. "source": {
  9673. "type": "git",
  9674. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9675. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9676. },
  9677. "dist": {
  9678. "type": "zip",
  9679. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9680. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9681. "shasum": ""
  9682. },
  9683. "require": {
  9684. "php": ">=7.3"
  9685. },
  9686. "require-dev": {
  9687. "phpunit/phpunit": "^9.3"
  9688. },
  9689. "type": "library",
  9690. "extra": {
  9691. "branch-alias": {
  9692. "dev-master": "4.0-dev"
  9693. }
  9694. },
  9695. "autoload": {
  9696. "classmap": [
  9697. "src/"
  9698. ]
  9699. },
  9700. "notification-url": "https://packagist.org/downloads/",
  9701. "license": [
  9702. "BSD-3-Clause"
  9703. ],
  9704. "authors": [
  9705. {
  9706. "name": "Sebastian Bergmann",
  9707. "email": "sebastian@phpunit.de"
  9708. },
  9709. {
  9710. "name": "Jeff Welch",
  9711. "email": "whatthejeff@gmail.com"
  9712. },
  9713. {
  9714. "name": "Adam Harvey",
  9715. "email": "aharvey@php.net"
  9716. }
  9717. ],
  9718. "description": "Provides functionality to recursively process PHP variables",
  9719. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9720. "support": {
  9721. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9722. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9723. },
  9724. "funding": [
  9725. {
  9726. "url": "https://github.com/sebastianbergmann",
  9727. "type": "github"
  9728. }
  9729. ],
  9730. "time": "2023-02-03T06:07:39+00:00"
  9731. },
  9732. {
  9733. "name": "sebastian/resource-operations",
  9734. "version": "3.0.4",
  9735. "source": {
  9736. "type": "git",
  9737. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9738. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  9739. },
  9740. "dist": {
  9741. "type": "zip",
  9742. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9743. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9744. "shasum": ""
  9745. },
  9746. "require": {
  9747. "php": ">=7.3"
  9748. },
  9749. "require-dev": {
  9750. "phpunit/phpunit": "^9.0"
  9751. },
  9752. "type": "library",
  9753. "extra": {
  9754. "branch-alias": {
  9755. "dev-main": "3.0-dev"
  9756. }
  9757. },
  9758. "autoload": {
  9759. "classmap": [
  9760. "src/"
  9761. ]
  9762. },
  9763. "notification-url": "https://packagist.org/downloads/",
  9764. "license": [
  9765. "BSD-3-Clause"
  9766. ],
  9767. "authors": [
  9768. {
  9769. "name": "Sebastian Bergmann",
  9770. "email": "sebastian@phpunit.de"
  9771. }
  9772. ],
  9773. "description": "Provides a list of PHP built-in functions that operate on resources",
  9774. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9775. "support": {
  9776. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  9777. },
  9778. "funding": [
  9779. {
  9780. "url": "https://github.com/sebastianbergmann",
  9781. "type": "github"
  9782. }
  9783. ],
  9784. "time": "2024-03-14T16:00:52+00:00"
  9785. },
  9786. {
  9787. "name": "sebastian/type",
  9788. "version": "3.2.1",
  9789. "source": {
  9790. "type": "git",
  9791. "url": "https://github.com/sebastianbergmann/type.git",
  9792. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9793. },
  9794. "dist": {
  9795. "type": "zip",
  9796. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9797. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9798. "shasum": ""
  9799. },
  9800. "require": {
  9801. "php": ">=7.3"
  9802. },
  9803. "require-dev": {
  9804. "phpunit/phpunit": "^9.5"
  9805. },
  9806. "type": "library",
  9807. "extra": {
  9808. "branch-alias": {
  9809. "dev-master": "3.2-dev"
  9810. }
  9811. },
  9812. "autoload": {
  9813. "classmap": [
  9814. "src/"
  9815. ]
  9816. },
  9817. "notification-url": "https://packagist.org/downloads/",
  9818. "license": [
  9819. "BSD-3-Clause"
  9820. ],
  9821. "authors": [
  9822. {
  9823. "name": "Sebastian Bergmann",
  9824. "email": "sebastian@phpunit.de",
  9825. "role": "lead"
  9826. }
  9827. ],
  9828. "description": "Collection of value objects that represent the types of the PHP type system",
  9829. "homepage": "https://github.com/sebastianbergmann/type",
  9830. "support": {
  9831. "issues": "https://github.com/sebastianbergmann/type/issues",
  9832. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9833. },
  9834. "funding": [
  9835. {
  9836. "url": "https://github.com/sebastianbergmann",
  9837. "type": "github"
  9838. }
  9839. ],
  9840. "time": "2023-02-03T06:13:03+00:00"
  9841. },
  9842. {
  9843. "name": "sebastian/version",
  9844. "version": "3.0.2",
  9845. "source": {
  9846. "type": "git",
  9847. "url": "https://github.com/sebastianbergmann/version.git",
  9848. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9849. },
  9850. "dist": {
  9851. "type": "zip",
  9852. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9853. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9854. "shasum": ""
  9855. },
  9856. "require": {
  9857. "php": ">=7.3"
  9858. },
  9859. "type": "library",
  9860. "extra": {
  9861. "branch-alias": {
  9862. "dev-master": "3.0-dev"
  9863. }
  9864. },
  9865. "autoload": {
  9866. "classmap": [
  9867. "src/"
  9868. ]
  9869. },
  9870. "notification-url": "https://packagist.org/downloads/",
  9871. "license": [
  9872. "BSD-3-Clause"
  9873. ],
  9874. "authors": [
  9875. {
  9876. "name": "Sebastian Bergmann",
  9877. "email": "sebastian@phpunit.de",
  9878. "role": "lead"
  9879. }
  9880. ],
  9881. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9882. "homepage": "https://github.com/sebastianbergmann/version",
  9883. "support": {
  9884. "issues": "https://github.com/sebastianbergmann/version/issues",
  9885. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9886. },
  9887. "funding": [
  9888. {
  9889. "url": "https://github.com/sebastianbergmann",
  9890. "type": "github"
  9891. }
  9892. ],
  9893. "time": "2020-09-28T06:39:44+00:00"
  9894. },
  9895. {
  9896. "name": "symfony/browser-kit",
  9897. "version": "v7.1.1",
  9898. "source": {
  9899. "type": "git",
  9900. "url": "https://github.com/symfony/browser-kit.git",
  9901. "reference": "9c13742e3175b5815e272b981876ae329bec2040"
  9902. },
  9903. "dist": {
  9904. "type": "zip",
  9905. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/9c13742e3175b5815e272b981876ae329bec2040",
  9906. "reference": "9c13742e3175b5815e272b981876ae329bec2040",
  9907. "shasum": ""
  9908. },
  9909. "require": {
  9910. "php": ">=8.2",
  9911. "symfony/dom-crawler": "^6.4|^7.0"
  9912. },
  9913. "require-dev": {
  9914. "symfony/css-selector": "^6.4|^7.0",
  9915. "symfony/http-client": "^6.4|^7.0",
  9916. "symfony/mime": "^6.4|^7.0",
  9917. "symfony/process": "^6.4|^7.0"
  9918. },
  9919. "type": "library",
  9920. "autoload": {
  9921. "psr-4": {
  9922. "Symfony\\Component\\BrowserKit\\": ""
  9923. },
  9924. "exclude-from-classmap": [
  9925. "/Tests/"
  9926. ]
  9927. },
  9928. "notification-url": "https://packagist.org/downloads/",
  9929. "license": [
  9930. "MIT"
  9931. ],
  9932. "authors": [
  9933. {
  9934. "name": "Fabien Potencier",
  9935. "email": "fabien@symfony.com"
  9936. },
  9937. {
  9938. "name": "Symfony Community",
  9939. "homepage": "https://symfony.com/contributors"
  9940. }
  9941. ],
  9942. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9943. "homepage": "https://symfony.com",
  9944. "support": {
  9945. "source": "https://github.com/symfony/browser-kit/tree/v7.1.1"
  9946. },
  9947. "funding": [
  9948. {
  9949. "url": "https://symfony.com/sponsor",
  9950. "type": "custom"
  9951. },
  9952. {
  9953. "url": "https://github.com/fabpot",
  9954. "type": "github"
  9955. },
  9956. {
  9957. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9958. "type": "tidelift"
  9959. }
  9960. ],
  9961. "time": "2024-05-31T14:57:53+00:00"
  9962. },
  9963. {
  9964. "name": "symfony/css-selector",
  9965. "version": "v7.1.1",
  9966. "source": {
  9967. "type": "git",
  9968. "url": "https://github.com/symfony/css-selector.git",
  9969. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
  9970. },
  9971. "dist": {
  9972. "type": "zip",
  9973. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  9974. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  9975. "shasum": ""
  9976. },
  9977. "require": {
  9978. "php": ">=8.2"
  9979. },
  9980. "type": "library",
  9981. "autoload": {
  9982. "psr-4": {
  9983. "Symfony\\Component\\CssSelector\\": ""
  9984. },
  9985. "exclude-from-classmap": [
  9986. "/Tests/"
  9987. ]
  9988. },
  9989. "notification-url": "https://packagist.org/downloads/",
  9990. "license": [
  9991. "MIT"
  9992. ],
  9993. "authors": [
  9994. {
  9995. "name": "Fabien Potencier",
  9996. "email": "fabien@symfony.com"
  9997. },
  9998. {
  9999. "name": "Jean-François Simon",
  10000. "email": "jeanfrancois.simon@sensiolabs.com"
  10001. },
  10002. {
  10003. "name": "Symfony Community",
  10004. "homepage": "https://symfony.com/contributors"
  10005. }
  10006. ],
  10007. "description": "Converts CSS selectors to XPath expressions",
  10008. "homepage": "https://symfony.com",
  10009. "support": {
  10010. "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
  10011. },
  10012. "funding": [
  10013. {
  10014. "url": "https://symfony.com/sponsor",
  10015. "type": "custom"
  10016. },
  10017. {
  10018. "url": "https://github.com/fabpot",
  10019. "type": "github"
  10020. },
  10021. {
  10022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10023. "type": "tidelift"
  10024. }
  10025. ],
  10026. "time": "2024-05-31T14:57:53+00:00"
  10027. },
  10028. {
  10029. "name": "symfony/debug-bundle",
  10030. "version": "v7.1.1",
  10031. "source": {
  10032. "type": "git",
  10033. "url": "https://github.com/symfony/debug-bundle.git",
  10034. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f"
  10035. },
  10036. "dist": {
  10037. "type": "zip",
  10038. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/aa024d28ce7ce0c6a16ee57c066838bece92893f",
  10039. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f",
  10040. "shasum": ""
  10041. },
  10042. "require": {
  10043. "ext-xml": "*",
  10044. "php": ">=8.2",
  10045. "symfony/dependency-injection": "^6.4|^7.0",
  10046. "symfony/http-kernel": "^6.4|^7.0",
  10047. "symfony/twig-bridge": "^6.4|^7.0",
  10048. "symfony/var-dumper": "^6.4|^7.0"
  10049. },
  10050. "conflict": {
  10051. "symfony/config": "<6.4",
  10052. "symfony/dependency-injection": "<6.4"
  10053. },
  10054. "require-dev": {
  10055. "symfony/config": "^6.4|^7.0",
  10056. "symfony/web-profiler-bundle": "^6.4|^7.0"
  10057. },
  10058. "type": "symfony-bundle",
  10059. "autoload": {
  10060. "psr-4": {
  10061. "Symfony\\Bundle\\DebugBundle\\": ""
  10062. },
  10063. "exclude-from-classmap": [
  10064. "/Tests/"
  10065. ]
  10066. },
  10067. "notification-url": "https://packagist.org/downloads/",
  10068. "license": [
  10069. "MIT"
  10070. ],
  10071. "authors": [
  10072. {
  10073. "name": "Fabien Potencier",
  10074. "email": "fabien@symfony.com"
  10075. },
  10076. {
  10077. "name": "Symfony Community",
  10078. "homepage": "https://symfony.com/contributors"
  10079. }
  10080. ],
  10081. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10082. "homepage": "https://symfony.com",
  10083. "support": {
  10084. "source": "https://github.com/symfony/debug-bundle/tree/v7.1.1"
  10085. },
  10086. "funding": [
  10087. {
  10088. "url": "https://symfony.com/sponsor",
  10089. "type": "custom"
  10090. },
  10091. {
  10092. "url": "https://github.com/fabpot",
  10093. "type": "github"
  10094. },
  10095. {
  10096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10097. "type": "tidelift"
  10098. }
  10099. ],
  10100. "time": "2024-05-31T14:55:39+00:00"
  10101. },
  10102. {
  10103. "name": "symfony/dom-crawler",
  10104. "version": "v7.1.1",
  10105. "source": {
  10106. "type": "git",
  10107. "url": "https://github.com/symfony/dom-crawler.git",
  10108. "reference": "01ce8174447f1f1dd33a5854b01beef79061d9fa"
  10109. },
  10110. "dist": {
  10111. "type": "zip",
  10112. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/01ce8174447f1f1dd33a5854b01beef79061d9fa",
  10113. "reference": "01ce8174447f1f1dd33a5854b01beef79061d9fa",
  10114. "shasum": ""
  10115. },
  10116. "require": {
  10117. "masterminds/html5": "^2.6",
  10118. "php": ">=8.2",
  10119. "symfony/polyfill-ctype": "~1.8",
  10120. "symfony/polyfill-mbstring": "~1.0"
  10121. },
  10122. "require-dev": {
  10123. "symfony/css-selector": "^6.4|^7.0"
  10124. },
  10125. "type": "library",
  10126. "autoload": {
  10127. "psr-4": {
  10128. "Symfony\\Component\\DomCrawler\\": ""
  10129. },
  10130. "exclude-from-classmap": [
  10131. "/Tests/"
  10132. ]
  10133. },
  10134. "notification-url": "https://packagist.org/downloads/",
  10135. "license": [
  10136. "MIT"
  10137. ],
  10138. "authors": [
  10139. {
  10140. "name": "Fabien Potencier",
  10141. "email": "fabien@symfony.com"
  10142. },
  10143. {
  10144. "name": "Symfony Community",
  10145. "homepage": "https://symfony.com/contributors"
  10146. }
  10147. ],
  10148. "description": "Eases DOM navigation for HTML and XML documents",
  10149. "homepage": "https://symfony.com",
  10150. "support": {
  10151. "source": "https://github.com/symfony/dom-crawler/tree/v7.1.1"
  10152. },
  10153. "funding": [
  10154. {
  10155. "url": "https://symfony.com/sponsor",
  10156. "type": "custom"
  10157. },
  10158. {
  10159. "url": "https://github.com/fabpot",
  10160. "type": "github"
  10161. },
  10162. {
  10163. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10164. "type": "tidelift"
  10165. }
  10166. ],
  10167. "time": "2024-05-31T14:57:53+00:00"
  10168. },
  10169. {
  10170. "name": "symfony/maker-bundle",
  10171. "version": "v1.60.0",
  10172. "source": {
  10173. "type": "git",
  10174. "url": "https://github.com/symfony/maker-bundle.git",
  10175. "reference": "c305a02a22974670f359d4274c9431e1a191f559"
  10176. },
  10177. "dist": {
  10178. "type": "zip",
  10179. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/c305a02a22974670f359d4274c9431e1a191f559",
  10180. "reference": "c305a02a22974670f359d4274c9431e1a191f559",
  10181. "shasum": ""
  10182. },
  10183. "require": {
  10184. "doctrine/inflector": "^2.0",
  10185. "nikic/php-parser": "^4.18|^5.0",
  10186. "php": ">=8.1",
  10187. "symfony/config": "^6.4|^7.0",
  10188. "symfony/console": "^6.4|^7.0",
  10189. "symfony/dependency-injection": "^6.4|^7.0",
  10190. "symfony/deprecation-contracts": "^2.2|^3",
  10191. "symfony/filesystem": "^6.4|^7.0",
  10192. "symfony/finder": "^6.4|^7.0",
  10193. "symfony/framework-bundle": "^6.4|^7.0",
  10194. "symfony/http-kernel": "^6.4|^7.0",
  10195. "symfony/process": "^6.4|^7.0"
  10196. },
  10197. "conflict": {
  10198. "doctrine/doctrine-bundle": "<2.10",
  10199. "doctrine/orm": "<2.15"
  10200. },
  10201. "require-dev": {
  10202. "composer/semver": "^3.0",
  10203. "doctrine/doctrine-bundle": "^2.5.0",
  10204. "doctrine/orm": "^2.15|^3",
  10205. "symfony/http-client": "^6.4|^7.0",
  10206. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  10207. "symfony/security-core": "^6.4|^7.0",
  10208. "symfony/yaml": "^6.4|^7.0",
  10209. "twig/twig": "^3.0|^4.x-dev"
  10210. },
  10211. "type": "symfony-bundle",
  10212. "extra": {
  10213. "branch-alias": {
  10214. "dev-main": "1.x-dev"
  10215. }
  10216. },
  10217. "autoload": {
  10218. "psr-4": {
  10219. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10220. }
  10221. },
  10222. "notification-url": "https://packagist.org/downloads/",
  10223. "license": [
  10224. "MIT"
  10225. ],
  10226. "authors": [
  10227. {
  10228. "name": "Symfony Community",
  10229. "homepage": "https://symfony.com/contributors"
  10230. }
  10231. ],
  10232. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10233. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10234. "keywords": [
  10235. "code generator",
  10236. "dev",
  10237. "generator",
  10238. "scaffold",
  10239. "scaffolding"
  10240. ],
  10241. "support": {
  10242. "issues": "https://github.com/symfony/maker-bundle/issues",
  10243. "source": "https://github.com/symfony/maker-bundle/tree/v1.60.0"
  10244. },
  10245. "funding": [
  10246. {
  10247. "url": "https://symfony.com/sponsor",
  10248. "type": "custom"
  10249. },
  10250. {
  10251. "url": "https://github.com/fabpot",
  10252. "type": "github"
  10253. },
  10254. {
  10255. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10256. "type": "tidelift"
  10257. }
  10258. ],
  10259. "time": "2024-06-10T06:03:18+00:00"
  10260. },
  10261. {
  10262. "name": "symfony/phpunit-bridge",
  10263. "version": "v7.1.3",
  10264. "source": {
  10265. "type": "git",
  10266. "url": "https://github.com/symfony/phpunit-bridge.git",
  10267. "reference": "e823122d31935eb711e2767c31f3d71cb0b87fb1"
  10268. },
  10269. "dist": {
  10270. "type": "zip",
  10271. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/e823122d31935eb711e2767c31f3d71cb0b87fb1",
  10272. "reference": "e823122d31935eb711e2767c31f3d71cb0b87fb1",
  10273. "shasum": ""
  10274. },
  10275. "require": {
  10276. "php": ">=7.2.5"
  10277. },
  10278. "conflict": {
  10279. "phpunit/phpunit": "<7.5|9.1.2"
  10280. },
  10281. "require-dev": {
  10282. "symfony/deprecation-contracts": "^2.5|^3.0",
  10283. "symfony/error-handler": "^5.4|^6.4|^7.0",
  10284. "symfony/polyfill-php81": "^1.27"
  10285. },
  10286. "bin": [
  10287. "bin/simple-phpunit"
  10288. ],
  10289. "type": "symfony-bridge",
  10290. "extra": {
  10291. "thanks": {
  10292. "name": "phpunit/phpunit",
  10293. "url": "https://github.com/sebastianbergmann/phpunit"
  10294. }
  10295. },
  10296. "autoload": {
  10297. "files": [
  10298. "bootstrap.php"
  10299. ],
  10300. "psr-4": {
  10301. "Symfony\\Bridge\\PhpUnit\\": ""
  10302. },
  10303. "exclude-from-classmap": [
  10304. "/Tests/",
  10305. "/bin/"
  10306. ]
  10307. },
  10308. "notification-url": "https://packagist.org/downloads/",
  10309. "license": [
  10310. "MIT"
  10311. ],
  10312. "authors": [
  10313. {
  10314. "name": "Nicolas Grekas",
  10315. "email": "p@tchwork.com"
  10316. },
  10317. {
  10318. "name": "Symfony Community",
  10319. "homepage": "https://symfony.com/contributors"
  10320. }
  10321. ],
  10322. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10323. "homepage": "https://symfony.com",
  10324. "support": {
  10325. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.1.3"
  10326. },
  10327. "funding": [
  10328. {
  10329. "url": "https://symfony.com/sponsor",
  10330. "type": "custom"
  10331. },
  10332. {
  10333. "url": "https://github.com/fabpot",
  10334. "type": "github"
  10335. },
  10336. {
  10337. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10338. "type": "tidelift"
  10339. }
  10340. ],
  10341. "time": "2024-07-26T12:41:01+00:00"
  10342. },
  10343. {
  10344. "name": "symfony/web-profiler-bundle",
  10345. "version": "v7.1.3",
  10346. "source": {
  10347. "type": "git",
  10348. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10349. "reference": "b9357f73d2c14dcd36783a67386f510654828668"
  10350. },
  10351. "dist": {
  10352. "type": "zip",
  10353. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/b9357f73d2c14dcd36783a67386f510654828668",
  10354. "reference": "b9357f73d2c14dcd36783a67386f510654828668",
  10355. "shasum": ""
  10356. },
  10357. "require": {
  10358. "php": ">=8.2",
  10359. "symfony/config": "^6.4|^7.0",
  10360. "symfony/framework-bundle": "^6.4|^7.0",
  10361. "symfony/http-kernel": "^6.4|^7.0",
  10362. "symfony/routing": "^6.4|^7.0",
  10363. "symfony/twig-bundle": "^6.4|^7.0",
  10364. "twig/twig": "^3.10"
  10365. },
  10366. "conflict": {
  10367. "symfony/form": "<6.4",
  10368. "symfony/mailer": "<6.4",
  10369. "symfony/messenger": "<6.4"
  10370. },
  10371. "require-dev": {
  10372. "symfony/browser-kit": "^6.4|^7.0",
  10373. "symfony/console": "^6.4|^7.0",
  10374. "symfony/css-selector": "^6.4|^7.0",
  10375. "symfony/stopwatch": "^6.4|^7.0"
  10376. },
  10377. "type": "symfony-bundle",
  10378. "autoload": {
  10379. "psr-4": {
  10380. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10381. },
  10382. "exclude-from-classmap": [
  10383. "/Tests/"
  10384. ]
  10385. },
  10386. "notification-url": "https://packagist.org/downloads/",
  10387. "license": [
  10388. "MIT"
  10389. ],
  10390. "authors": [
  10391. {
  10392. "name": "Fabien Potencier",
  10393. "email": "fabien@symfony.com"
  10394. },
  10395. {
  10396. "name": "Symfony Community",
  10397. "homepage": "https://symfony.com/contributors"
  10398. }
  10399. ],
  10400. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10401. "homepage": "https://symfony.com",
  10402. "keywords": [
  10403. "dev"
  10404. ],
  10405. "support": {
  10406. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.1.3"
  10407. },
  10408. "funding": [
  10409. {
  10410. "url": "https://symfony.com/sponsor",
  10411. "type": "custom"
  10412. },
  10413. {
  10414. "url": "https://github.com/fabpot",
  10415. "type": "github"
  10416. },
  10417. {
  10418. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10419. "type": "tidelift"
  10420. }
  10421. ],
  10422. "time": "2024-07-26T12:41:01+00:00"
  10423. },
  10424. {
  10425. "name": "theseer/tokenizer",
  10426. "version": "1.2.3",
  10427. "source": {
  10428. "type": "git",
  10429. "url": "https://github.com/theseer/tokenizer.git",
  10430. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10431. },
  10432. "dist": {
  10433. "type": "zip",
  10434. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10435. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10436. "shasum": ""
  10437. },
  10438. "require": {
  10439. "ext-dom": "*",
  10440. "ext-tokenizer": "*",
  10441. "ext-xmlwriter": "*",
  10442. "php": "^7.2 || ^8.0"
  10443. },
  10444. "type": "library",
  10445. "autoload": {
  10446. "classmap": [
  10447. "src/"
  10448. ]
  10449. },
  10450. "notification-url": "https://packagist.org/downloads/",
  10451. "license": [
  10452. "BSD-3-Clause"
  10453. ],
  10454. "authors": [
  10455. {
  10456. "name": "Arne Blankerts",
  10457. "email": "arne@blankerts.de",
  10458. "role": "Developer"
  10459. }
  10460. ],
  10461. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10462. "support": {
  10463. "issues": "https://github.com/theseer/tokenizer/issues",
  10464. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10465. },
  10466. "funding": [
  10467. {
  10468. "url": "https://github.com/theseer",
  10469. "type": "github"
  10470. }
  10471. ],
  10472. "time": "2024-03-03T12:36:25+00:00"
  10473. }
  10474. ],
  10475. "aliases": [],
  10476. "minimum-stability": "stable",
  10477. "stability-flags": [],
  10478. "prefer-stable": false,
  10479. "prefer-lowest": false,
  10480. "platform": {
  10481. "php": "^8.2",
  10482. "ext-ctype": "*",
  10483. "ext-iconv": "*"
  10484. },
  10485. "platform-dev": [],
  10486. "platform-overrides": {
  10487. "php": "8.2"
  10488. },
  10489. "plugin-api-version": "2.6.0"
  10490. }