composer.lock 384 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577
  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": "39e043a805f59582386d250efc1b6e90",
  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.2",
  85. "source": {
  86. "type": "git",
  87. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  88. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  89. },
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  93. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  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.2"
  154. },
  155. "time": "2022-10-27T11:44:00+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.1.2",
  329. "source": {
  330. "type": "git",
  331. "url": "https://github.com/doctrine/collections.git",
  332. "reference": "db8cda536a034337f7dd63febecc713d4957f9ee"
  333. },
  334. "dist": {
  335. "type": "zip",
  336. "url": "https://api.github.com/repos/doctrine/collections/zipball/db8cda536a034337f7dd63febecc713d4957f9ee",
  337. "reference": "db8cda536a034337f7dd63febecc713d4957f9ee",
  338. "shasum": ""
  339. },
  340. "require": {
  341. "doctrine/deprecations": "^1",
  342. "php": "^8.1"
  343. },
  344. "require-dev": {
  345. "doctrine/coding-standard": "^10.0",
  346. "ext-json": "*",
  347. "phpstan/phpstan": "^1.8",
  348. "phpstan/phpstan-phpunit": "^1.0",
  349. "phpunit/phpunit": "^9.5",
  350. "vimeo/psalm": "^4.22"
  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.1.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": "2022-12-27T23:41:38+00:00"
  411. },
  412. {
  413. "name": "doctrine/common",
  414. "version": "3.4.3",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/doctrine/common.git",
  418. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
  423. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
  424. "shasum": ""
  425. },
  426. "require": {
  427. "doctrine/persistence": "^2.0 || ^3.0",
  428. "php": "^7.1 || ^8.0"
  429. },
  430. "require-dev": {
  431. "doctrine/coding-standard": "^9.0 || ^10.0",
  432. "doctrine/collections": "^1",
  433. "phpstan/phpstan": "^1.4.1",
  434. "phpstan/phpstan-phpunit": "^1",
  435. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  436. "squizlabs/php_codesniffer": "^3.0",
  437. "symfony/phpunit-bridge": "^6.1",
  438. "vimeo/psalm": "^4.4"
  439. },
  440. "type": "library",
  441. "autoload": {
  442. "psr-4": {
  443. "Doctrine\\Common\\": "src"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Guilherme Blanco",
  453. "email": "guilhermeblanco@gmail.com"
  454. },
  455. {
  456. "name": "Roman Borschel",
  457. "email": "roman@code-factory.org"
  458. },
  459. {
  460. "name": "Benjamin Eberlei",
  461. "email": "kontakt@beberlei.de"
  462. },
  463. {
  464. "name": "Jonathan Wage",
  465. "email": "jonwage@gmail.com"
  466. },
  467. {
  468. "name": "Johannes Schmitt",
  469. "email": "schmittjoh@gmail.com"
  470. },
  471. {
  472. "name": "Marco Pivetta",
  473. "email": "ocramius@gmail.com"
  474. }
  475. ],
  476. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  477. "homepage": "https://www.doctrine-project.org/projects/common.html",
  478. "keywords": [
  479. "common",
  480. "doctrine",
  481. "php"
  482. ],
  483. "support": {
  484. "issues": "https://github.com/doctrine/common/issues",
  485. "source": "https://github.com/doctrine/common/tree/3.4.3"
  486. },
  487. "funding": [
  488. {
  489. "url": "https://www.doctrine-project.org/sponsorship.html",
  490. "type": "custom"
  491. },
  492. {
  493. "url": "https://www.patreon.com/phpdoctrine",
  494. "type": "patreon"
  495. },
  496. {
  497. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  498. "type": "tidelift"
  499. }
  500. ],
  501. "time": "2022-10-09T11:47:59+00:00"
  502. },
  503. {
  504. "name": "doctrine/dbal",
  505. "version": "3.6.1",
  506. "source": {
  507. "type": "git",
  508. "url": "https://github.com/doctrine/dbal.git",
  509. "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e"
  510. },
  511. "dist": {
  512. "type": "zip",
  513. "url": "https://api.github.com/repos/doctrine/dbal/zipball/57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
  514. "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
  515. "shasum": ""
  516. },
  517. "require": {
  518. "composer-runtime-api": "^2",
  519. "doctrine/cache": "^1.11|^2.0",
  520. "doctrine/deprecations": "^0.5.3|^1",
  521. "doctrine/event-manager": "^1|^2",
  522. "php": "^7.4 || ^8.0",
  523. "psr/cache": "^1|^2|^3",
  524. "psr/log": "^1|^2|^3"
  525. },
  526. "require-dev": {
  527. "doctrine/coding-standard": "11.1.0",
  528. "fig/log-test": "^1",
  529. "jetbrains/phpstorm-stubs": "2022.3",
  530. "phpstan/phpstan": "1.10.3",
  531. "phpstan/phpstan-strict-rules": "^1.5",
  532. "phpunit/phpunit": "9.6.4",
  533. "psalm/plugin-phpunit": "0.18.4",
  534. "squizlabs/php_codesniffer": "3.7.2",
  535. "symfony/cache": "^5.4|^6.0",
  536. "symfony/console": "^4.4|^5.4|^6.0",
  537. "vimeo/psalm": "4.30.0"
  538. },
  539. "suggest": {
  540. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  541. },
  542. "bin": [
  543. "bin/doctrine-dbal"
  544. ],
  545. "type": "library",
  546. "autoload": {
  547. "psr-4": {
  548. "Doctrine\\DBAL\\": "src"
  549. }
  550. },
  551. "notification-url": "https://packagist.org/downloads/",
  552. "license": [
  553. "MIT"
  554. ],
  555. "authors": [
  556. {
  557. "name": "Guilherme Blanco",
  558. "email": "guilhermeblanco@gmail.com"
  559. },
  560. {
  561. "name": "Roman Borschel",
  562. "email": "roman@code-factory.org"
  563. },
  564. {
  565. "name": "Benjamin Eberlei",
  566. "email": "kontakt@beberlei.de"
  567. },
  568. {
  569. "name": "Jonathan Wage",
  570. "email": "jonwage@gmail.com"
  571. }
  572. ],
  573. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  574. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  575. "keywords": [
  576. "abstraction",
  577. "database",
  578. "db2",
  579. "dbal",
  580. "mariadb",
  581. "mssql",
  582. "mysql",
  583. "oci8",
  584. "oracle",
  585. "pdo",
  586. "pgsql",
  587. "postgresql",
  588. "queryobject",
  589. "sasql",
  590. "sql",
  591. "sqlite",
  592. "sqlserver",
  593. "sqlsrv"
  594. ],
  595. "support": {
  596. "issues": "https://github.com/doctrine/dbal/issues",
  597. "source": "https://github.com/doctrine/dbal/tree/3.6.1"
  598. },
  599. "funding": [
  600. {
  601. "url": "https://www.doctrine-project.org/sponsorship.html",
  602. "type": "custom"
  603. },
  604. {
  605. "url": "https://www.patreon.com/phpdoctrine",
  606. "type": "patreon"
  607. },
  608. {
  609. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  610. "type": "tidelift"
  611. }
  612. ],
  613. "time": "2023-03-02T19:26:24+00:00"
  614. },
  615. {
  616. "name": "doctrine/deprecations",
  617. "version": "v1.0.0",
  618. "source": {
  619. "type": "git",
  620. "url": "https://github.com/doctrine/deprecations.git",
  621. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  622. },
  623. "dist": {
  624. "type": "zip",
  625. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  626. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  627. "shasum": ""
  628. },
  629. "require": {
  630. "php": "^7.1|^8.0"
  631. },
  632. "require-dev": {
  633. "doctrine/coding-standard": "^9",
  634. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  635. "psr/log": "^1|^2|^3"
  636. },
  637. "suggest": {
  638. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  639. },
  640. "type": "library",
  641. "autoload": {
  642. "psr-4": {
  643. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  644. }
  645. },
  646. "notification-url": "https://packagist.org/downloads/",
  647. "license": [
  648. "MIT"
  649. ],
  650. "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.",
  651. "homepage": "https://www.doctrine-project.org/",
  652. "support": {
  653. "issues": "https://github.com/doctrine/deprecations/issues",
  654. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  655. },
  656. "time": "2022-05-02T15:47:09+00:00"
  657. },
  658. {
  659. "name": "doctrine/doctrine-bundle",
  660. "version": "2.9.0",
  661. "source": {
  662. "type": "git",
  663. "url": "https://github.com/doctrine/DoctrineBundle.git",
  664. "reference": "9819c00c2eea750b99902f244309b824911b72b2"
  665. },
  666. "dist": {
  667. "type": "zip",
  668. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/9819c00c2eea750b99902f244309b824911b72b2",
  669. "reference": "9819c00c2eea750b99902f244309b824911b72b2",
  670. "shasum": ""
  671. },
  672. "require": {
  673. "doctrine/cache": "^1.11 || ^2.0",
  674. "doctrine/dbal": "^3.6.0",
  675. "doctrine/persistence": "^2.2 || ^3",
  676. "doctrine/sql-formatter": "^1.0.1",
  677. "php": "^7.4 || ^8.0",
  678. "symfony/cache": "^5.4 || ^6.0",
  679. "symfony/config": "^5.4 || ^6.0",
  680. "symfony/console": "^5.4 || ^6.0",
  681. "symfony/dependency-injection": "^5.4 || ^6.0",
  682. "symfony/deprecation-contracts": "^2.1 || ^3",
  683. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7",
  684. "symfony/framework-bundle": "^5.4 || ^6.0",
  685. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  686. },
  687. "conflict": {
  688. "doctrine/annotations": ">=3.0",
  689. "doctrine/orm": "<2.11 || >=3.0",
  690. "twig/twig": "<1.34 || >=2.0 <2.4"
  691. },
  692. "require-dev": {
  693. "doctrine/annotations": "^1 || ^2",
  694. "doctrine/coding-standard": "^9.0",
  695. "doctrine/deprecations": "^1.0",
  696. "doctrine/orm": "^2.11 || ^3.0",
  697. "friendsofphp/proxy-manager-lts": "^1.0",
  698. "phpunit/phpunit": "^9.5.26 || ^10.0",
  699. "psalm/plugin-phpunit": "^0.18.4",
  700. "psalm/plugin-symfony": "^4",
  701. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  702. "symfony/phpunit-bridge": "^6.1",
  703. "symfony/property-info": "^5.4 || ^6.0",
  704. "symfony/proxy-manager-bridge": "^5.4 || ^6.0",
  705. "symfony/security-bundle": "^5.4 || ^6.0",
  706. "symfony/twig-bridge": "^5.4 || ^6.0",
  707. "symfony/validator": "^5.4 || ^6.0",
  708. "symfony/web-profiler-bundle": "^5.4 || ^6.0",
  709. "symfony/yaml": "^5.4 || ^6.0",
  710. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  711. "vimeo/psalm": "^4.30"
  712. },
  713. "suggest": {
  714. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  715. "ext-pdo": "*",
  716. "symfony/web-profiler-bundle": "To use the data collector."
  717. },
  718. "type": "symfony-bundle",
  719. "autoload": {
  720. "psr-4": {
  721. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  722. }
  723. },
  724. "notification-url": "https://packagist.org/downloads/",
  725. "license": [
  726. "MIT"
  727. ],
  728. "authors": [
  729. {
  730. "name": "Fabien Potencier",
  731. "email": "fabien@symfony.com"
  732. },
  733. {
  734. "name": "Benjamin Eberlei",
  735. "email": "kontakt@beberlei.de"
  736. },
  737. {
  738. "name": "Symfony Community",
  739. "homepage": "https://symfony.com/contributors"
  740. },
  741. {
  742. "name": "Doctrine Project",
  743. "homepage": "https://www.doctrine-project.org/"
  744. }
  745. ],
  746. "description": "Symfony DoctrineBundle",
  747. "homepage": "https://www.doctrine-project.org",
  748. "keywords": [
  749. "database",
  750. "dbal",
  751. "orm",
  752. "persistence"
  753. ],
  754. "support": {
  755. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  756. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.9.0"
  757. },
  758. "funding": [
  759. {
  760. "url": "https://www.doctrine-project.org/sponsorship.html",
  761. "type": "custom"
  762. },
  763. {
  764. "url": "https://www.patreon.com/phpdoctrine",
  765. "type": "patreon"
  766. },
  767. {
  768. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  769. "type": "tidelift"
  770. }
  771. ],
  772. "time": "2023-03-23T20:02:57+00:00"
  773. },
  774. {
  775. "name": "doctrine/doctrine-migrations-bundle",
  776. "version": "3.2.2",
  777. "source": {
  778. "type": "git",
  779. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  780. "reference": "3393f411ba25ade21969c33f2053220044854d01"
  781. },
  782. "dist": {
  783. "type": "zip",
  784. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/3393f411ba25ade21969c33f2053220044854d01",
  785. "reference": "3393f411ba25ade21969c33f2053220044854d01",
  786. "shasum": ""
  787. },
  788. "require": {
  789. "doctrine/doctrine-bundle": "~1.0|~2.0",
  790. "doctrine/migrations": "^3.2",
  791. "php": "^7.2|^8.0",
  792. "symfony/framework-bundle": "~3.4|~4.0|~5.0|~6.0"
  793. },
  794. "require-dev": {
  795. "doctrine/coding-standard": "^8.0",
  796. "doctrine/orm": "^2.6",
  797. "doctrine/persistence": "^1.3||^2.0",
  798. "phpstan/phpstan": "^0.12",
  799. "phpstan/phpstan-deprecation-rules": "^0.12",
  800. "phpstan/phpstan-phpunit": "^0.12",
  801. "phpstan/phpstan-strict-rules": "^0.12",
  802. "phpunit/phpunit": "^8.0|^9.0",
  803. "vimeo/psalm": "^4.11"
  804. },
  805. "type": "symfony-bundle",
  806. "autoload": {
  807. "psr-4": {
  808. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  809. },
  810. "exclude-from-classmap": [
  811. "/Tests/"
  812. ]
  813. },
  814. "notification-url": "https://packagist.org/downloads/",
  815. "license": [
  816. "MIT"
  817. ],
  818. "authors": [
  819. {
  820. "name": "Fabien Potencier",
  821. "email": "fabien@symfony.com"
  822. },
  823. {
  824. "name": "Doctrine Project",
  825. "homepage": "https://www.doctrine-project.org"
  826. },
  827. {
  828. "name": "Symfony Community",
  829. "homepage": "https://symfony.com/contributors"
  830. }
  831. ],
  832. "description": "Symfony DoctrineMigrationsBundle",
  833. "homepage": "https://www.doctrine-project.org",
  834. "keywords": [
  835. "dbal",
  836. "migrations",
  837. "schema"
  838. ],
  839. "support": {
  840. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  841. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.2.2"
  842. },
  843. "funding": [
  844. {
  845. "url": "https://www.doctrine-project.org/sponsorship.html",
  846. "type": "custom"
  847. },
  848. {
  849. "url": "https://www.patreon.com/phpdoctrine",
  850. "type": "patreon"
  851. },
  852. {
  853. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  854. "type": "tidelift"
  855. }
  856. ],
  857. "time": "2022-02-01T18:08:07+00:00"
  858. },
  859. {
  860. "name": "doctrine/event-manager",
  861. "version": "2.0.0",
  862. "source": {
  863. "type": "git",
  864. "url": "https://github.com/doctrine/event-manager.git",
  865. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  866. },
  867. "dist": {
  868. "type": "zip",
  869. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  870. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  871. "shasum": ""
  872. },
  873. "require": {
  874. "php": "^8.1"
  875. },
  876. "conflict": {
  877. "doctrine/common": "<2.9"
  878. },
  879. "require-dev": {
  880. "doctrine/coding-standard": "^10",
  881. "phpstan/phpstan": "^1.8.8",
  882. "phpunit/phpunit": "^9.5",
  883. "vimeo/psalm": "^4.28"
  884. },
  885. "type": "library",
  886. "autoload": {
  887. "psr-4": {
  888. "Doctrine\\Common\\": "src"
  889. }
  890. },
  891. "notification-url": "https://packagist.org/downloads/",
  892. "license": [
  893. "MIT"
  894. ],
  895. "authors": [
  896. {
  897. "name": "Guilherme Blanco",
  898. "email": "guilhermeblanco@gmail.com"
  899. },
  900. {
  901. "name": "Roman Borschel",
  902. "email": "roman@code-factory.org"
  903. },
  904. {
  905. "name": "Benjamin Eberlei",
  906. "email": "kontakt@beberlei.de"
  907. },
  908. {
  909. "name": "Jonathan Wage",
  910. "email": "jonwage@gmail.com"
  911. },
  912. {
  913. "name": "Johannes Schmitt",
  914. "email": "schmittjoh@gmail.com"
  915. },
  916. {
  917. "name": "Marco Pivetta",
  918. "email": "ocramius@gmail.com"
  919. }
  920. ],
  921. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  922. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  923. "keywords": [
  924. "event",
  925. "event dispatcher",
  926. "event manager",
  927. "event system",
  928. "events"
  929. ],
  930. "support": {
  931. "issues": "https://github.com/doctrine/event-manager/issues",
  932. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  933. },
  934. "funding": [
  935. {
  936. "url": "https://www.doctrine-project.org/sponsorship.html",
  937. "type": "custom"
  938. },
  939. {
  940. "url": "https://www.patreon.com/phpdoctrine",
  941. "type": "patreon"
  942. },
  943. {
  944. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  945. "type": "tidelift"
  946. }
  947. ],
  948. "time": "2022-10-12T20:59:15+00:00"
  949. },
  950. {
  951. "name": "doctrine/inflector",
  952. "version": "2.0.6",
  953. "source": {
  954. "type": "git",
  955. "url": "https://github.com/doctrine/inflector.git",
  956. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  957. },
  958. "dist": {
  959. "type": "zip",
  960. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  961. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  962. "shasum": ""
  963. },
  964. "require": {
  965. "php": "^7.2 || ^8.0"
  966. },
  967. "require-dev": {
  968. "doctrine/coding-standard": "^10",
  969. "phpstan/phpstan": "^1.8",
  970. "phpstan/phpstan-phpunit": "^1.1",
  971. "phpstan/phpstan-strict-rules": "^1.3",
  972. "phpunit/phpunit": "^8.5 || ^9.5",
  973. "vimeo/psalm": "^4.25"
  974. },
  975. "type": "library",
  976. "autoload": {
  977. "psr-4": {
  978. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  979. }
  980. },
  981. "notification-url": "https://packagist.org/downloads/",
  982. "license": [
  983. "MIT"
  984. ],
  985. "authors": [
  986. {
  987. "name": "Guilherme Blanco",
  988. "email": "guilhermeblanco@gmail.com"
  989. },
  990. {
  991. "name": "Roman Borschel",
  992. "email": "roman@code-factory.org"
  993. },
  994. {
  995. "name": "Benjamin Eberlei",
  996. "email": "kontakt@beberlei.de"
  997. },
  998. {
  999. "name": "Jonathan Wage",
  1000. "email": "jonwage@gmail.com"
  1001. },
  1002. {
  1003. "name": "Johannes Schmitt",
  1004. "email": "schmittjoh@gmail.com"
  1005. }
  1006. ],
  1007. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1008. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1009. "keywords": [
  1010. "inflection",
  1011. "inflector",
  1012. "lowercase",
  1013. "manipulation",
  1014. "php",
  1015. "plural",
  1016. "singular",
  1017. "strings",
  1018. "uppercase",
  1019. "words"
  1020. ],
  1021. "support": {
  1022. "issues": "https://github.com/doctrine/inflector/issues",
  1023. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  1024. },
  1025. "funding": [
  1026. {
  1027. "url": "https://www.doctrine-project.org/sponsorship.html",
  1028. "type": "custom"
  1029. },
  1030. {
  1031. "url": "https://www.patreon.com/phpdoctrine",
  1032. "type": "patreon"
  1033. },
  1034. {
  1035. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1036. "type": "tidelift"
  1037. }
  1038. ],
  1039. "time": "2022-10-20T09:10:12+00:00"
  1040. },
  1041. {
  1042. "name": "doctrine/instantiator",
  1043. "version": "1.5.0",
  1044. "source": {
  1045. "type": "git",
  1046. "url": "https://github.com/doctrine/instantiator.git",
  1047. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  1048. },
  1049. "dist": {
  1050. "type": "zip",
  1051. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  1052. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  1053. "shasum": ""
  1054. },
  1055. "require": {
  1056. "php": "^7.1 || ^8.0"
  1057. },
  1058. "require-dev": {
  1059. "doctrine/coding-standard": "^9 || ^11",
  1060. "ext-pdo": "*",
  1061. "ext-phar": "*",
  1062. "phpbench/phpbench": "^0.16 || ^1",
  1063. "phpstan/phpstan": "^1.4",
  1064. "phpstan/phpstan-phpunit": "^1",
  1065. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1066. "vimeo/psalm": "^4.30 || ^5.4"
  1067. },
  1068. "type": "library",
  1069. "autoload": {
  1070. "psr-4": {
  1071. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1072. }
  1073. },
  1074. "notification-url": "https://packagist.org/downloads/",
  1075. "license": [
  1076. "MIT"
  1077. ],
  1078. "authors": [
  1079. {
  1080. "name": "Marco Pivetta",
  1081. "email": "ocramius@gmail.com",
  1082. "homepage": "https://ocramius.github.io/"
  1083. }
  1084. ],
  1085. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1086. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1087. "keywords": [
  1088. "constructor",
  1089. "instantiate"
  1090. ],
  1091. "support": {
  1092. "issues": "https://github.com/doctrine/instantiator/issues",
  1093. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  1094. },
  1095. "funding": [
  1096. {
  1097. "url": "https://www.doctrine-project.org/sponsorship.html",
  1098. "type": "custom"
  1099. },
  1100. {
  1101. "url": "https://www.patreon.com/phpdoctrine",
  1102. "type": "patreon"
  1103. },
  1104. {
  1105. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1106. "type": "tidelift"
  1107. }
  1108. ],
  1109. "time": "2022-12-30T00:15:36+00:00"
  1110. },
  1111. {
  1112. "name": "doctrine/lexer",
  1113. "version": "2.1.0",
  1114. "source": {
  1115. "type": "git",
  1116. "url": "https://github.com/doctrine/lexer.git",
  1117. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  1118. },
  1119. "dist": {
  1120. "type": "zip",
  1121. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1122. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1123. "shasum": ""
  1124. },
  1125. "require": {
  1126. "doctrine/deprecations": "^1.0",
  1127. "php": "^7.1 || ^8.0"
  1128. },
  1129. "require-dev": {
  1130. "doctrine/coding-standard": "^9 || ^10",
  1131. "phpstan/phpstan": "^1.3",
  1132. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1133. "psalm/plugin-phpunit": "^0.18.3",
  1134. "vimeo/psalm": "^4.11 || ^5.0"
  1135. },
  1136. "type": "library",
  1137. "autoload": {
  1138. "psr-4": {
  1139. "Doctrine\\Common\\Lexer\\": "src"
  1140. }
  1141. },
  1142. "notification-url": "https://packagist.org/downloads/",
  1143. "license": [
  1144. "MIT"
  1145. ],
  1146. "authors": [
  1147. {
  1148. "name": "Guilherme Blanco",
  1149. "email": "guilhermeblanco@gmail.com"
  1150. },
  1151. {
  1152. "name": "Roman Borschel",
  1153. "email": "roman@code-factory.org"
  1154. },
  1155. {
  1156. "name": "Johannes Schmitt",
  1157. "email": "schmittjoh@gmail.com"
  1158. }
  1159. ],
  1160. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1161. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1162. "keywords": [
  1163. "annotations",
  1164. "docblock",
  1165. "lexer",
  1166. "parser",
  1167. "php"
  1168. ],
  1169. "support": {
  1170. "issues": "https://github.com/doctrine/lexer/issues",
  1171. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  1172. },
  1173. "funding": [
  1174. {
  1175. "url": "https://www.doctrine-project.org/sponsorship.html",
  1176. "type": "custom"
  1177. },
  1178. {
  1179. "url": "https://www.patreon.com/phpdoctrine",
  1180. "type": "patreon"
  1181. },
  1182. {
  1183. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1184. "type": "tidelift"
  1185. }
  1186. ],
  1187. "time": "2022-12-14T08:49:07+00:00"
  1188. },
  1189. {
  1190. "name": "doctrine/migrations",
  1191. "version": "3.6.0",
  1192. "source": {
  1193. "type": "git",
  1194. "url": "https://github.com/doctrine/migrations.git",
  1195. "reference": "e542ad8bcd606d7a18d0875babb8a6d963c9c059"
  1196. },
  1197. "dist": {
  1198. "type": "zip",
  1199. "url": "https://api.github.com/repos/doctrine/migrations/zipball/e542ad8bcd606d7a18d0875babb8a6d963c9c059",
  1200. "reference": "e542ad8bcd606d7a18d0875babb8a6d963c9c059",
  1201. "shasum": ""
  1202. },
  1203. "require": {
  1204. "composer-runtime-api": "^2",
  1205. "doctrine/dbal": "^3.5.1",
  1206. "doctrine/deprecations": "^0.5.3 || ^1",
  1207. "doctrine/event-manager": "^1.2 || ^2.0",
  1208. "php": "^8.1",
  1209. "psr/log": "^1.1.3 || ^2 || ^3",
  1210. "symfony/console": "^4.4.16 || ^5.4 || ^6.0",
  1211. "symfony/stopwatch": "^4.4 || ^5.4 || ^6.0",
  1212. "symfony/var-exporter": "^6.2"
  1213. },
  1214. "conflict": {
  1215. "doctrine/orm": "<2.12"
  1216. },
  1217. "require-dev": {
  1218. "doctrine/coding-standard": "^9",
  1219. "doctrine/orm": "^2.13",
  1220. "doctrine/persistence": "^2 || ^3",
  1221. "doctrine/sql-formatter": "^1.0",
  1222. "ext-pdo_sqlite": "*",
  1223. "phpstan/phpstan": "^1.5",
  1224. "phpstan/phpstan-deprecation-rules": "^1",
  1225. "phpstan/phpstan-phpunit": "^1.1",
  1226. "phpstan/phpstan-strict-rules": "^1.1",
  1227. "phpstan/phpstan-symfony": "^1.1",
  1228. "phpunit/phpunit": "^9.5.24",
  1229. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1230. "symfony/process": "^4.4 || ^5.4 || ^6.0",
  1231. "symfony/yaml": "^4.4 || ^5.4 || ^6.0"
  1232. },
  1233. "suggest": {
  1234. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1235. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1236. },
  1237. "bin": [
  1238. "bin/doctrine-migrations"
  1239. ],
  1240. "type": "library",
  1241. "autoload": {
  1242. "psr-4": {
  1243. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1244. }
  1245. },
  1246. "notification-url": "https://packagist.org/downloads/",
  1247. "license": [
  1248. "MIT"
  1249. ],
  1250. "authors": [
  1251. {
  1252. "name": "Benjamin Eberlei",
  1253. "email": "kontakt@beberlei.de"
  1254. },
  1255. {
  1256. "name": "Jonathan Wage",
  1257. "email": "jonwage@gmail.com"
  1258. },
  1259. {
  1260. "name": "Michael Simonson",
  1261. "email": "contact@mikesimonson.com"
  1262. }
  1263. ],
  1264. "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.",
  1265. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1266. "keywords": [
  1267. "database",
  1268. "dbal",
  1269. "migrations"
  1270. ],
  1271. "support": {
  1272. "issues": "https://github.com/doctrine/migrations/issues",
  1273. "source": "https://github.com/doctrine/migrations/tree/3.6.0"
  1274. },
  1275. "funding": [
  1276. {
  1277. "url": "https://www.doctrine-project.org/sponsorship.html",
  1278. "type": "custom"
  1279. },
  1280. {
  1281. "url": "https://www.patreon.com/phpdoctrine",
  1282. "type": "patreon"
  1283. },
  1284. {
  1285. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1286. "type": "tidelift"
  1287. }
  1288. ],
  1289. "time": "2023-02-15T18:49:46+00:00"
  1290. },
  1291. {
  1292. "name": "doctrine/orm",
  1293. "version": "2.14.2",
  1294. "source": {
  1295. "type": "git",
  1296. "url": "https://github.com/doctrine/orm.git",
  1297. "reference": "e5fb1a4a8f5aa4e37612f66a22aac10291bcbb52"
  1298. },
  1299. "dist": {
  1300. "type": "zip",
  1301. "url": "https://api.github.com/repos/doctrine/orm/zipball/e5fb1a4a8f5aa4e37612f66a22aac10291bcbb52",
  1302. "reference": "e5fb1a4a8f5aa4e37612f66a22aac10291bcbb52",
  1303. "shasum": ""
  1304. },
  1305. "require": {
  1306. "composer-runtime-api": "^2",
  1307. "doctrine/cache": "^1.12.1 || ^2.1.1",
  1308. "doctrine/collections": "^1.5 || ^2.0",
  1309. "doctrine/common": "^3.0.3",
  1310. "doctrine/dbal": "^2.13.1 || ^3.2",
  1311. "doctrine/deprecations": "^0.5.3 || ^1",
  1312. "doctrine/event-manager": "^1.2 || ^2",
  1313. "doctrine/inflector": "^1.4 || ^2.0",
  1314. "doctrine/instantiator": "^1.3",
  1315. "doctrine/lexer": "^1.2.3 || ^2",
  1316. "doctrine/persistence": "^2.4 || ^3",
  1317. "ext-ctype": "*",
  1318. "php": "^7.1 || ^8.0",
  1319. "psr/cache": "^1 || ^2 || ^3",
  1320. "symfony/console": "^4.2 || ^5.0 || ^6.0",
  1321. "symfony/polyfill-php72": "^1.23",
  1322. "symfony/polyfill-php80": "^1.16"
  1323. },
  1324. "conflict": {
  1325. "doctrine/annotations": "<1.13 || >= 3.0"
  1326. },
  1327. "require-dev": {
  1328. "doctrine/annotations": "^1.13 || ^2",
  1329. "doctrine/coding-standard": "^9.0.2 || ^11.0",
  1330. "phpbench/phpbench": "^0.16.10 || ^1.0",
  1331. "phpstan/phpstan": "~1.4.10 || 1.10.6",
  1332. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1333. "psr/log": "^1 || ^2 || ^3",
  1334. "squizlabs/php_codesniffer": "3.7.2",
  1335. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1336. "symfony/var-exporter": "^4.4 || ^5.4 || ^6.2",
  1337. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0",
  1338. "vimeo/psalm": "4.30.0 || 5.9.0"
  1339. },
  1340. "suggest": {
  1341. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1342. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
  1343. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1344. },
  1345. "bin": [
  1346. "bin/doctrine"
  1347. ],
  1348. "type": "library",
  1349. "autoload": {
  1350. "psr-4": {
  1351. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1352. }
  1353. },
  1354. "notification-url": "https://packagist.org/downloads/",
  1355. "license": [
  1356. "MIT"
  1357. ],
  1358. "authors": [
  1359. {
  1360. "name": "Guilherme Blanco",
  1361. "email": "guilhermeblanco@gmail.com"
  1362. },
  1363. {
  1364. "name": "Roman Borschel",
  1365. "email": "roman@code-factory.org"
  1366. },
  1367. {
  1368. "name": "Benjamin Eberlei",
  1369. "email": "kontakt@beberlei.de"
  1370. },
  1371. {
  1372. "name": "Jonathan Wage",
  1373. "email": "jonwage@gmail.com"
  1374. },
  1375. {
  1376. "name": "Marco Pivetta",
  1377. "email": "ocramius@gmail.com"
  1378. }
  1379. ],
  1380. "description": "Object-Relational-Mapper for PHP",
  1381. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1382. "keywords": [
  1383. "database",
  1384. "orm"
  1385. ],
  1386. "support": {
  1387. "issues": "https://github.com/doctrine/orm/issues",
  1388. "source": "https://github.com/doctrine/orm/tree/2.14.2"
  1389. },
  1390. "time": "2023-03-30T15:18:54+00:00"
  1391. },
  1392. {
  1393. "name": "doctrine/persistence",
  1394. "version": "3.1.4",
  1395. "source": {
  1396. "type": "git",
  1397. "url": "https://github.com/doctrine/persistence.git",
  1398. "reference": "8bf8ab15960787f1a49d405f6eb8c787b4841119"
  1399. },
  1400. "dist": {
  1401. "type": "zip",
  1402. "url": "https://api.github.com/repos/doctrine/persistence/zipball/8bf8ab15960787f1a49d405f6eb8c787b4841119",
  1403. "reference": "8bf8ab15960787f1a49d405f6eb8c787b4841119",
  1404. "shasum": ""
  1405. },
  1406. "require": {
  1407. "doctrine/event-manager": "^1 || ^2",
  1408. "php": "^7.2 || ^8.0",
  1409. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1410. },
  1411. "conflict": {
  1412. "doctrine/common": "<2.10"
  1413. },
  1414. "require-dev": {
  1415. "composer/package-versions-deprecated": "^1.11",
  1416. "doctrine/coding-standard": "^11",
  1417. "doctrine/common": "^3.0",
  1418. "phpstan/phpstan": "1.9.4",
  1419. "phpstan/phpstan-phpunit": "^1",
  1420. "phpstan/phpstan-strict-rules": "^1.1",
  1421. "phpunit/phpunit": "^8.5 || ^9.5",
  1422. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1423. "vimeo/psalm": "4.30.0 || 5.3.0"
  1424. },
  1425. "type": "library",
  1426. "autoload": {
  1427. "psr-4": {
  1428. "Doctrine\\Persistence\\": "src/Persistence"
  1429. }
  1430. },
  1431. "notification-url": "https://packagist.org/downloads/",
  1432. "license": [
  1433. "MIT"
  1434. ],
  1435. "authors": [
  1436. {
  1437. "name": "Guilherme Blanco",
  1438. "email": "guilhermeblanco@gmail.com"
  1439. },
  1440. {
  1441. "name": "Roman Borschel",
  1442. "email": "roman@code-factory.org"
  1443. },
  1444. {
  1445. "name": "Benjamin Eberlei",
  1446. "email": "kontakt@beberlei.de"
  1447. },
  1448. {
  1449. "name": "Jonathan Wage",
  1450. "email": "jonwage@gmail.com"
  1451. },
  1452. {
  1453. "name": "Johannes Schmitt",
  1454. "email": "schmittjoh@gmail.com"
  1455. },
  1456. {
  1457. "name": "Marco Pivetta",
  1458. "email": "ocramius@gmail.com"
  1459. }
  1460. ],
  1461. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1462. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1463. "keywords": [
  1464. "mapper",
  1465. "object",
  1466. "odm",
  1467. "orm",
  1468. "persistence"
  1469. ],
  1470. "support": {
  1471. "issues": "https://github.com/doctrine/persistence/issues",
  1472. "source": "https://github.com/doctrine/persistence/tree/3.1.4"
  1473. },
  1474. "funding": [
  1475. {
  1476. "url": "https://www.doctrine-project.org/sponsorship.html",
  1477. "type": "custom"
  1478. },
  1479. {
  1480. "url": "https://www.patreon.com/phpdoctrine",
  1481. "type": "patreon"
  1482. },
  1483. {
  1484. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1485. "type": "tidelift"
  1486. }
  1487. ],
  1488. "time": "2023-02-03T11:13:07+00:00"
  1489. },
  1490. {
  1491. "name": "doctrine/sql-formatter",
  1492. "version": "1.1.3",
  1493. "source": {
  1494. "type": "git",
  1495. "url": "https://github.com/doctrine/sql-formatter.git",
  1496. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5"
  1497. },
  1498. "dist": {
  1499. "type": "zip",
  1500. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/25a06c7bf4c6b8218f47928654252863ffc890a5",
  1501. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5",
  1502. "shasum": ""
  1503. },
  1504. "require": {
  1505. "php": "^7.1 || ^8.0"
  1506. },
  1507. "require-dev": {
  1508. "bamarni/composer-bin-plugin": "^1.4"
  1509. },
  1510. "bin": [
  1511. "bin/sql-formatter"
  1512. ],
  1513. "type": "library",
  1514. "autoload": {
  1515. "psr-4": {
  1516. "Doctrine\\SqlFormatter\\": "src"
  1517. }
  1518. },
  1519. "notification-url": "https://packagist.org/downloads/",
  1520. "license": [
  1521. "MIT"
  1522. ],
  1523. "authors": [
  1524. {
  1525. "name": "Jeremy Dorn",
  1526. "email": "jeremy@jeremydorn.com",
  1527. "homepage": "https://jeremydorn.com/"
  1528. }
  1529. ],
  1530. "description": "a PHP SQL highlighting library",
  1531. "homepage": "https://github.com/doctrine/sql-formatter/",
  1532. "keywords": [
  1533. "highlight",
  1534. "sql"
  1535. ],
  1536. "support": {
  1537. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1538. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.3"
  1539. },
  1540. "time": "2022-05-23T21:33:49+00:00"
  1541. },
  1542. {
  1543. "name": "egulias/email-validator",
  1544. "version": "4.0.1",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/egulias/EmailValidator.git",
  1548. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1553. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "doctrine/lexer": "^2.0 || ^3.0",
  1558. "php": ">=8.1",
  1559. "symfony/polyfill-intl-idn": "^1.26"
  1560. },
  1561. "require-dev": {
  1562. "phpunit/phpunit": "^9.5.27",
  1563. "vimeo/psalm": "^4.30"
  1564. },
  1565. "suggest": {
  1566. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1567. },
  1568. "type": "library",
  1569. "extra": {
  1570. "branch-alias": {
  1571. "dev-master": "4.0.x-dev"
  1572. }
  1573. },
  1574. "autoload": {
  1575. "psr-4": {
  1576. "Egulias\\EmailValidator\\": "src"
  1577. }
  1578. },
  1579. "notification-url": "https://packagist.org/downloads/",
  1580. "license": [
  1581. "MIT"
  1582. ],
  1583. "authors": [
  1584. {
  1585. "name": "Eduardo Gulias Davis"
  1586. }
  1587. ],
  1588. "description": "A library for validating emails against several RFCs",
  1589. "homepage": "https://github.com/egulias/EmailValidator",
  1590. "keywords": [
  1591. "email",
  1592. "emailvalidation",
  1593. "emailvalidator",
  1594. "validation",
  1595. "validator"
  1596. ],
  1597. "support": {
  1598. "issues": "https://github.com/egulias/EmailValidator/issues",
  1599. "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
  1600. },
  1601. "funding": [
  1602. {
  1603. "url": "https://github.com/egulias",
  1604. "type": "github"
  1605. }
  1606. ],
  1607. "time": "2023-01-14T14:17:03+00:00"
  1608. },
  1609. {
  1610. "name": "friendsofphp/proxy-manager-lts",
  1611. "version": "v1.0.14",
  1612. "source": {
  1613. "type": "git",
  1614. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1615. "reference": "a527c9d9d5348e012bd24482d83a5cd643bcbc9e"
  1616. },
  1617. "dist": {
  1618. "type": "zip",
  1619. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/a527c9d9d5348e012bd24482d83a5cd643bcbc9e",
  1620. "reference": "a527c9d9d5348e012bd24482d83a5cd643bcbc9e",
  1621. "shasum": ""
  1622. },
  1623. "require": {
  1624. "laminas/laminas-code": "~3.4.1|^4.0",
  1625. "php": ">=7.1",
  1626. "symfony/filesystem": "^4.4.17|^5.0|^6.0"
  1627. },
  1628. "conflict": {
  1629. "laminas/laminas-stdlib": "<3.2.1",
  1630. "zendframework/zend-stdlib": "<3.2.1"
  1631. },
  1632. "replace": {
  1633. "ocramius/proxy-manager": "^2.1"
  1634. },
  1635. "require-dev": {
  1636. "ext-phar": "*",
  1637. "symfony/phpunit-bridge": "^5.4|^6.0"
  1638. },
  1639. "type": "library",
  1640. "extra": {
  1641. "thanks": {
  1642. "name": "ocramius/proxy-manager",
  1643. "url": "https://github.com/Ocramius/ProxyManager"
  1644. }
  1645. },
  1646. "autoload": {
  1647. "psr-4": {
  1648. "ProxyManager\\": "src/ProxyManager"
  1649. }
  1650. },
  1651. "notification-url": "https://packagist.org/downloads/",
  1652. "license": [
  1653. "MIT"
  1654. ],
  1655. "authors": [
  1656. {
  1657. "name": "Marco Pivetta",
  1658. "email": "ocramius@gmail.com",
  1659. "homepage": "https://ocramius.github.io/"
  1660. },
  1661. {
  1662. "name": "Nicolas Grekas",
  1663. "email": "p@tchwork.com"
  1664. }
  1665. ],
  1666. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1667. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1668. "keywords": [
  1669. "aop",
  1670. "lazy loading",
  1671. "proxy",
  1672. "proxy pattern",
  1673. "service proxies"
  1674. ],
  1675. "support": {
  1676. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1677. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.14"
  1678. },
  1679. "funding": [
  1680. {
  1681. "url": "https://github.com/Ocramius",
  1682. "type": "github"
  1683. },
  1684. {
  1685. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1686. "type": "tidelift"
  1687. }
  1688. ],
  1689. "time": "2023-01-30T10:40:19+00:00"
  1690. },
  1691. {
  1692. "name": "laminas/laminas-code",
  1693. "version": "4.10.0",
  1694. "source": {
  1695. "type": "git",
  1696. "url": "https://github.com/laminas/laminas-code.git",
  1697. "reference": "ad8b36073f9ac792716478befadca0798cc15635"
  1698. },
  1699. "dist": {
  1700. "type": "zip",
  1701. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/ad8b36073f9ac792716478befadca0798cc15635",
  1702. "reference": "ad8b36073f9ac792716478befadca0798cc15635",
  1703. "shasum": ""
  1704. },
  1705. "require": {
  1706. "php": "~8.1.0 || ~8.2.0"
  1707. },
  1708. "require-dev": {
  1709. "doctrine/annotations": "^2.0.0",
  1710. "ext-phar": "*",
  1711. "laminas/laminas-coding-standard": "^2.3.0",
  1712. "laminas/laminas-stdlib": "^3.6.1",
  1713. "phpunit/phpunit": "^10.0.9",
  1714. "psalm/plugin-phpunit": "^0.18.4",
  1715. "vimeo/psalm": "^5.7.1"
  1716. },
  1717. "suggest": {
  1718. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1719. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1720. },
  1721. "type": "library",
  1722. "autoload": {
  1723. "psr-4": {
  1724. "Laminas\\Code\\": "src/"
  1725. }
  1726. },
  1727. "notification-url": "https://packagist.org/downloads/",
  1728. "license": [
  1729. "BSD-3-Clause"
  1730. ],
  1731. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1732. "homepage": "https://laminas.dev",
  1733. "keywords": [
  1734. "code",
  1735. "laminas",
  1736. "laminasframework"
  1737. ],
  1738. "support": {
  1739. "chat": "https://laminas.dev/chat",
  1740. "docs": "https://docs.laminas.dev/laminas-code/",
  1741. "forum": "https://discourse.laminas.dev",
  1742. "issues": "https://github.com/laminas/laminas-code/issues",
  1743. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1744. "source": "https://github.com/laminas/laminas-code"
  1745. },
  1746. "funding": [
  1747. {
  1748. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1749. "type": "community_bridge"
  1750. }
  1751. ],
  1752. "time": "2023-03-08T11:55:01+00:00"
  1753. },
  1754. {
  1755. "name": "league/commonmark",
  1756. "version": "2.4.0",
  1757. "source": {
  1758. "type": "git",
  1759. "url": "https://github.com/thephpleague/commonmark.git",
  1760. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048"
  1761. },
  1762. "dist": {
  1763. "type": "zip",
  1764. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  1765. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  1766. "shasum": ""
  1767. },
  1768. "require": {
  1769. "ext-mbstring": "*",
  1770. "league/config": "^1.1.1",
  1771. "php": "^7.4 || ^8.0",
  1772. "psr/event-dispatcher": "^1.0",
  1773. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1774. "symfony/polyfill-php80": "^1.16"
  1775. },
  1776. "require-dev": {
  1777. "cebe/markdown": "^1.0",
  1778. "commonmark/cmark": "0.30.0",
  1779. "commonmark/commonmark.js": "0.30.0",
  1780. "composer/package-versions-deprecated": "^1.8",
  1781. "embed/embed": "^4.4",
  1782. "erusev/parsedown": "^1.0",
  1783. "ext-json": "*",
  1784. "github/gfm": "0.29.0",
  1785. "michelf/php-markdown": "^1.4 || ^2.0",
  1786. "nyholm/psr7": "^1.5",
  1787. "phpstan/phpstan": "^1.8.2",
  1788. "phpunit/phpunit": "^9.5.21",
  1789. "scrutinizer/ocular": "^1.8.1",
  1790. "symfony/finder": "^5.3 | ^6.0",
  1791. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1792. "unleashedtech/php-coding-standard": "^3.1.1",
  1793. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1794. },
  1795. "suggest": {
  1796. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1797. },
  1798. "type": "library",
  1799. "extra": {
  1800. "branch-alias": {
  1801. "dev-main": "2.5-dev"
  1802. }
  1803. },
  1804. "autoload": {
  1805. "psr-4": {
  1806. "League\\CommonMark\\": "src"
  1807. }
  1808. },
  1809. "notification-url": "https://packagist.org/downloads/",
  1810. "license": [
  1811. "BSD-3-Clause"
  1812. ],
  1813. "authors": [
  1814. {
  1815. "name": "Colin O'Dell",
  1816. "email": "colinodell@gmail.com",
  1817. "homepage": "https://www.colinodell.com",
  1818. "role": "Lead Developer"
  1819. }
  1820. ],
  1821. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1822. "homepage": "https://commonmark.thephpleague.com",
  1823. "keywords": [
  1824. "commonmark",
  1825. "flavored",
  1826. "gfm",
  1827. "github",
  1828. "github-flavored",
  1829. "markdown",
  1830. "md",
  1831. "parser"
  1832. ],
  1833. "support": {
  1834. "docs": "https://commonmark.thephpleague.com/",
  1835. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1836. "issues": "https://github.com/thephpleague/commonmark/issues",
  1837. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1838. "source": "https://github.com/thephpleague/commonmark"
  1839. },
  1840. "funding": [
  1841. {
  1842. "url": "https://www.colinodell.com/sponsor",
  1843. "type": "custom"
  1844. },
  1845. {
  1846. "url": "https://www.paypal.me/colinpodell/10.00",
  1847. "type": "custom"
  1848. },
  1849. {
  1850. "url": "https://github.com/colinodell",
  1851. "type": "github"
  1852. },
  1853. {
  1854. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1855. "type": "tidelift"
  1856. }
  1857. ],
  1858. "time": "2023-03-24T15:16:10+00:00"
  1859. },
  1860. {
  1861. "name": "league/config",
  1862. "version": "v1.2.0",
  1863. "source": {
  1864. "type": "git",
  1865. "url": "https://github.com/thephpleague/config.git",
  1866. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1867. },
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1871. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1872. "shasum": ""
  1873. },
  1874. "require": {
  1875. "dflydev/dot-access-data": "^3.0.1",
  1876. "nette/schema": "^1.2",
  1877. "php": "^7.4 || ^8.0"
  1878. },
  1879. "require-dev": {
  1880. "phpstan/phpstan": "^1.8.2",
  1881. "phpunit/phpunit": "^9.5.5",
  1882. "scrutinizer/ocular": "^1.8.1",
  1883. "unleashedtech/php-coding-standard": "^3.1",
  1884. "vimeo/psalm": "^4.7.3"
  1885. },
  1886. "type": "library",
  1887. "extra": {
  1888. "branch-alias": {
  1889. "dev-main": "1.2-dev"
  1890. }
  1891. },
  1892. "autoload": {
  1893. "psr-4": {
  1894. "League\\Config\\": "src"
  1895. }
  1896. },
  1897. "notification-url": "https://packagist.org/downloads/",
  1898. "license": [
  1899. "BSD-3-Clause"
  1900. ],
  1901. "authors": [
  1902. {
  1903. "name": "Colin O'Dell",
  1904. "email": "colinodell@gmail.com",
  1905. "homepage": "https://www.colinodell.com",
  1906. "role": "Lead Developer"
  1907. }
  1908. ],
  1909. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1910. "homepage": "https://config.thephpleague.com",
  1911. "keywords": [
  1912. "array",
  1913. "config",
  1914. "configuration",
  1915. "dot",
  1916. "dot-access",
  1917. "nested",
  1918. "schema"
  1919. ],
  1920. "support": {
  1921. "docs": "https://config.thephpleague.com/",
  1922. "issues": "https://github.com/thephpleague/config/issues",
  1923. "rss": "https://github.com/thephpleague/config/releases.atom",
  1924. "source": "https://github.com/thephpleague/config"
  1925. },
  1926. "funding": [
  1927. {
  1928. "url": "https://www.colinodell.com/sponsor",
  1929. "type": "custom"
  1930. },
  1931. {
  1932. "url": "https://www.paypal.me/colinpodell/10.00",
  1933. "type": "custom"
  1934. },
  1935. {
  1936. "url": "https://github.com/colinodell",
  1937. "type": "github"
  1938. }
  1939. ],
  1940. "time": "2022-12-11T20:36:23+00:00"
  1941. },
  1942. {
  1943. "name": "league/uri",
  1944. "version": "6.8.0",
  1945. "source": {
  1946. "type": "git",
  1947. "url": "https://github.com/thephpleague/uri.git",
  1948. "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39"
  1949. },
  1950. "dist": {
  1951. "type": "zip",
  1952. "url": "https://api.github.com/repos/thephpleague/uri/zipball/a700b4656e4c54371b799ac61e300ab25a2d1d39",
  1953. "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39",
  1954. "shasum": ""
  1955. },
  1956. "require": {
  1957. "ext-json": "*",
  1958. "league/uri-interfaces": "^2.3",
  1959. "php": "^8.1",
  1960. "psr/http-message": "^1.0.1"
  1961. },
  1962. "conflict": {
  1963. "league/uri-schemes": "^1.0"
  1964. },
  1965. "require-dev": {
  1966. "friendsofphp/php-cs-fixer": "^v3.9.5",
  1967. "nyholm/psr7": "^1.5.1",
  1968. "php-http/psr7-integration-tests": "^1.1.1",
  1969. "phpbench/phpbench": "^1.2.6",
  1970. "phpstan/phpstan": "^1.8.5",
  1971. "phpstan/phpstan-deprecation-rules": "^1.0",
  1972. "phpstan/phpstan-phpunit": "^1.1.1",
  1973. "phpstan/phpstan-strict-rules": "^1.4.3",
  1974. "phpunit/phpunit": "^9.5.24",
  1975. "psr/http-factory": "^1.0.1"
  1976. },
  1977. "suggest": {
  1978. "ext-fileinfo": "Needed to create Data URI from a filepath",
  1979. "ext-intl": "Needed to improve host validation",
  1980. "league/uri-components": "Needed to easily manipulate URI objects",
  1981. "psr/http-factory": "Needed to use the URI factory"
  1982. },
  1983. "type": "library",
  1984. "extra": {
  1985. "branch-alias": {
  1986. "dev-master": "6.x-dev"
  1987. }
  1988. },
  1989. "autoload": {
  1990. "psr-4": {
  1991. "League\\Uri\\": "src"
  1992. }
  1993. },
  1994. "notification-url": "https://packagist.org/downloads/",
  1995. "license": [
  1996. "MIT"
  1997. ],
  1998. "authors": [
  1999. {
  2000. "name": "Ignace Nyamagana Butera",
  2001. "email": "nyamsprod@gmail.com",
  2002. "homepage": "https://nyamsprod.com"
  2003. }
  2004. ],
  2005. "description": "URI manipulation library",
  2006. "homepage": "https://uri.thephpleague.com",
  2007. "keywords": [
  2008. "data-uri",
  2009. "file-uri",
  2010. "ftp",
  2011. "hostname",
  2012. "http",
  2013. "https",
  2014. "middleware",
  2015. "parse_str",
  2016. "parse_url",
  2017. "psr-7",
  2018. "query-string",
  2019. "querystring",
  2020. "rfc3986",
  2021. "rfc3987",
  2022. "rfc6570",
  2023. "uri",
  2024. "uri-template",
  2025. "url",
  2026. "ws"
  2027. ],
  2028. "support": {
  2029. "docs": "https://uri.thephpleague.com",
  2030. "forum": "https://thephpleague.slack.com",
  2031. "issues": "https://github.com/thephpleague/uri/issues",
  2032. "source": "https://github.com/thephpleague/uri/tree/6.8.0"
  2033. },
  2034. "funding": [
  2035. {
  2036. "url": "https://github.com/sponsors/nyamsprod",
  2037. "type": "github"
  2038. }
  2039. ],
  2040. "time": "2022-09-13T19:58:47+00:00"
  2041. },
  2042. {
  2043. "name": "league/uri-interfaces",
  2044. "version": "2.3.0",
  2045. "source": {
  2046. "type": "git",
  2047. "url": "https://github.com/thephpleague/uri-interfaces.git",
  2048. "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383"
  2049. },
  2050. "dist": {
  2051. "type": "zip",
  2052. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
  2053. "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
  2054. "shasum": ""
  2055. },
  2056. "require": {
  2057. "ext-json": "*",
  2058. "php": "^7.2 || ^8.0"
  2059. },
  2060. "require-dev": {
  2061. "friendsofphp/php-cs-fixer": "^2.19",
  2062. "phpstan/phpstan": "^0.12.90",
  2063. "phpstan/phpstan-phpunit": "^0.12.19",
  2064. "phpstan/phpstan-strict-rules": "^0.12.9",
  2065. "phpunit/phpunit": "^8.5.15 || ^9.5"
  2066. },
  2067. "suggest": {
  2068. "ext-intl": "to use the IDNA feature",
  2069. "symfony/intl": "to use the IDNA feature via Symfony Polyfill"
  2070. },
  2071. "type": "library",
  2072. "extra": {
  2073. "branch-alias": {
  2074. "dev-master": "2.x-dev"
  2075. }
  2076. },
  2077. "autoload": {
  2078. "psr-4": {
  2079. "League\\Uri\\": "src/"
  2080. }
  2081. },
  2082. "notification-url": "https://packagist.org/downloads/",
  2083. "license": [
  2084. "MIT"
  2085. ],
  2086. "authors": [
  2087. {
  2088. "name": "Ignace Nyamagana Butera",
  2089. "email": "nyamsprod@gmail.com",
  2090. "homepage": "https://nyamsprod.com"
  2091. }
  2092. ],
  2093. "description": "Common interface for URI representation",
  2094. "homepage": "http://github.com/thephpleague/uri-interfaces",
  2095. "keywords": [
  2096. "rfc3986",
  2097. "rfc3987",
  2098. "uri",
  2099. "url"
  2100. ],
  2101. "support": {
  2102. "issues": "https://github.com/thephpleague/uri-interfaces/issues",
  2103. "source": "https://github.com/thephpleague/uri-interfaces/tree/2.3.0"
  2104. },
  2105. "funding": [
  2106. {
  2107. "url": "https://github.com/sponsors/nyamsprod",
  2108. "type": "github"
  2109. }
  2110. ],
  2111. "time": "2021-06-28T04:27:21+00:00"
  2112. },
  2113. {
  2114. "name": "masterminds/html5",
  2115. "version": "2.7.6",
  2116. "source": {
  2117. "type": "git",
  2118. "url": "https://github.com/Masterminds/html5-php.git",
  2119. "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
  2120. },
  2121. "dist": {
  2122. "type": "zip",
  2123. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
  2124. "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
  2125. "shasum": ""
  2126. },
  2127. "require": {
  2128. "ext-ctype": "*",
  2129. "ext-dom": "*",
  2130. "ext-libxml": "*",
  2131. "php": ">=5.3.0"
  2132. },
  2133. "require-dev": {
  2134. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  2135. },
  2136. "type": "library",
  2137. "extra": {
  2138. "branch-alias": {
  2139. "dev-master": "2.7-dev"
  2140. }
  2141. },
  2142. "autoload": {
  2143. "psr-4": {
  2144. "Masterminds\\": "src"
  2145. }
  2146. },
  2147. "notification-url": "https://packagist.org/downloads/",
  2148. "license": [
  2149. "MIT"
  2150. ],
  2151. "authors": [
  2152. {
  2153. "name": "Matt Butcher",
  2154. "email": "technosophos@gmail.com"
  2155. },
  2156. {
  2157. "name": "Matt Farina",
  2158. "email": "matt@mattfarina.com"
  2159. },
  2160. {
  2161. "name": "Asmir Mustafic",
  2162. "email": "goetas@gmail.com"
  2163. }
  2164. ],
  2165. "description": "An HTML5 parser and serializer.",
  2166. "homepage": "http://masterminds.github.io/html5-php",
  2167. "keywords": [
  2168. "HTML5",
  2169. "dom",
  2170. "html",
  2171. "parser",
  2172. "querypath",
  2173. "serializer",
  2174. "xml"
  2175. ],
  2176. "support": {
  2177. "issues": "https://github.com/Masterminds/html5-php/issues",
  2178. "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
  2179. },
  2180. "time": "2022-08-18T16:18:26+00:00"
  2181. },
  2182. {
  2183. "name": "monolog/monolog",
  2184. "version": "3.3.1",
  2185. "source": {
  2186. "type": "git",
  2187. "url": "https://github.com/Seldaek/monolog.git",
  2188. "reference": "9b5daeaffce5b926cac47923798bba91059e60e2"
  2189. },
  2190. "dist": {
  2191. "type": "zip",
  2192. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/9b5daeaffce5b926cac47923798bba91059e60e2",
  2193. "reference": "9b5daeaffce5b926cac47923798bba91059e60e2",
  2194. "shasum": ""
  2195. },
  2196. "require": {
  2197. "php": ">=8.1",
  2198. "psr/log": "^2.0 || ^3.0"
  2199. },
  2200. "provide": {
  2201. "psr/log-implementation": "3.0.0"
  2202. },
  2203. "require-dev": {
  2204. "aws/aws-sdk-php": "^3.0",
  2205. "doctrine/couchdb": "~1.0@dev",
  2206. "elasticsearch/elasticsearch": "^7 || ^8",
  2207. "ext-json": "*",
  2208. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2209. "guzzlehttp/guzzle": "^7.4.5",
  2210. "guzzlehttp/psr7": "^2.2",
  2211. "mongodb/mongodb": "^1.8",
  2212. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2213. "phpstan/phpstan": "^1.9",
  2214. "phpstan/phpstan-deprecation-rules": "^1.0",
  2215. "phpstan/phpstan-strict-rules": "^1.4",
  2216. "phpunit/phpunit": "^9.5.26",
  2217. "predis/predis": "^1.1 || ^2",
  2218. "ruflin/elastica": "^7",
  2219. "symfony/mailer": "^5.4 || ^6",
  2220. "symfony/mime": "^5.4 || ^6"
  2221. },
  2222. "suggest": {
  2223. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2224. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2225. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2226. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2227. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2228. "ext-mbstring": "Allow to work properly with unicode symbols",
  2229. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2230. "ext-openssl": "Required to send log messages using SSL",
  2231. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2232. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2233. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2234. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2235. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2236. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2237. },
  2238. "type": "library",
  2239. "extra": {
  2240. "branch-alias": {
  2241. "dev-main": "3.x-dev"
  2242. }
  2243. },
  2244. "autoload": {
  2245. "psr-4": {
  2246. "Monolog\\": "src/Monolog"
  2247. }
  2248. },
  2249. "notification-url": "https://packagist.org/downloads/",
  2250. "license": [
  2251. "MIT"
  2252. ],
  2253. "authors": [
  2254. {
  2255. "name": "Jordi Boggiano",
  2256. "email": "j.boggiano@seld.be",
  2257. "homepage": "https://seld.be"
  2258. }
  2259. ],
  2260. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2261. "homepage": "https://github.com/Seldaek/monolog",
  2262. "keywords": [
  2263. "log",
  2264. "logging",
  2265. "psr-3"
  2266. ],
  2267. "support": {
  2268. "issues": "https://github.com/Seldaek/monolog/issues",
  2269. "source": "https://github.com/Seldaek/monolog/tree/3.3.1"
  2270. },
  2271. "funding": [
  2272. {
  2273. "url": "https://github.com/Seldaek",
  2274. "type": "github"
  2275. },
  2276. {
  2277. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2278. "type": "tidelift"
  2279. }
  2280. ],
  2281. "time": "2023-02-06T13:46:10+00:00"
  2282. },
  2283. {
  2284. "name": "nette/schema",
  2285. "version": "v1.2.3",
  2286. "source": {
  2287. "type": "git",
  2288. "url": "https://github.com/nette/schema.git",
  2289. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  2290. },
  2291. "dist": {
  2292. "type": "zip",
  2293. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2294. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2295. "shasum": ""
  2296. },
  2297. "require": {
  2298. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2299. "php": ">=7.1 <8.3"
  2300. },
  2301. "require-dev": {
  2302. "nette/tester": "^2.3 || ^2.4",
  2303. "phpstan/phpstan-nette": "^1.0",
  2304. "tracy/tracy": "^2.7"
  2305. },
  2306. "type": "library",
  2307. "extra": {
  2308. "branch-alias": {
  2309. "dev-master": "1.2-dev"
  2310. }
  2311. },
  2312. "autoload": {
  2313. "classmap": [
  2314. "src/"
  2315. ]
  2316. },
  2317. "notification-url": "https://packagist.org/downloads/",
  2318. "license": [
  2319. "BSD-3-Clause",
  2320. "GPL-2.0-only",
  2321. "GPL-3.0-only"
  2322. ],
  2323. "authors": [
  2324. {
  2325. "name": "David Grudl",
  2326. "homepage": "https://davidgrudl.com"
  2327. },
  2328. {
  2329. "name": "Nette Community",
  2330. "homepage": "https://nette.org/contributors"
  2331. }
  2332. ],
  2333. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2334. "homepage": "https://nette.org",
  2335. "keywords": [
  2336. "config",
  2337. "nette"
  2338. ],
  2339. "support": {
  2340. "issues": "https://github.com/nette/schema/issues",
  2341. "source": "https://github.com/nette/schema/tree/v1.2.3"
  2342. },
  2343. "time": "2022-10-13T01:24:26+00:00"
  2344. },
  2345. {
  2346. "name": "nette/utils",
  2347. "version": "v4.0.0",
  2348. "source": {
  2349. "type": "git",
  2350. "url": "https://github.com/nette/utils.git",
  2351. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  2352. },
  2353. "dist": {
  2354. "type": "zip",
  2355. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2356. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2357. "shasum": ""
  2358. },
  2359. "require": {
  2360. "php": ">=8.0 <8.3"
  2361. },
  2362. "conflict": {
  2363. "nette/finder": "<3",
  2364. "nette/schema": "<1.2.2"
  2365. },
  2366. "require-dev": {
  2367. "jetbrains/phpstorm-attributes": "dev-master",
  2368. "nette/tester": "^2.4",
  2369. "phpstan/phpstan": "^1.0",
  2370. "tracy/tracy": "^2.9"
  2371. },
  2372. "suggest": {
  2373. "ext-gd": "to use Image",
  2374. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2375. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2376. "ext-json": "to use Nette\\Utils\\Json",
  2377. "ext-mbstring": "to use Strings::lower() etc...",
  2378. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2379. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2380. },
  2381. "type": "library",
  2382. "extra": {
  2383. "branch-alias": {
  2384. "dev-master": "4.0-dev"
  2385. }
  2386. },
  2387. "autoload": {
  2388. "classmap": [
  2389. "src/"
  2390. ]
  2391. },
  2392. "notification-url": "https://packagist.org/downloads/",
  2393. "license": [
  2394. "BSD-3-Clause",
  2395. "GPL-2.0-only",
  2396. "GPL-3.0-only"
  2397. ],
  2398. "authors": [
  2399. {
  2400. "name": "David Grudl",
  2401. "homepage": "https://davidgrudl.com"
  2402. },
  2403. {
  2404. "name": "Nette Community",
  2405. "homepage": "https://nette.org/contributors"
  2406. }
  2407. ],
  2408. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2409. "homepage": "https://nette.org",
  2410. "keywords": [
  2411. "array",
  2412. "core",
  2413. "datetime",
  2414. "images",
  2415. "json",
  2416. "nette",
  2417. "paginator",
  2418. "password",
  2419. "slugify",
  2420. "string",
  2421. "unicode",
  2422. "utf-8",
  2423. "utility",
  2424. "validation"
  2425. ],
  2426. "support": {
  2427. "issues": "https://github.com/nette/utils/issues",
  2428. "source": "https://github.com/nette/utils/tree/v4.0.0"
  2429. },
  2430. "time": "2023-02-02T10:41:53+00:00"
  2431. },
  2432. {
  2433. "name": "phpdocumentor/reflection-common",
  2434. "version": "2.2.0",
  2435. "source": {
  2436. "type": "git",
  2437. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2438. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2439. },
  2440. "dist": {
  2441. "type": "zip",
  2442. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2443. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2444. "shasum": ""
  2445. },
  2446. "require": {
  2447. "php": "^7.2 || ^8.0"
  2448. },
  2449. "type": "library",
  2450. "extra": {
  2451. "branch-alias": {
  2452. "dev-2.x": "2.x-dev"
  2453. }
  2454. },
  2455. "autoload": {
  2456. "psr-4": {
  2457. "phpDocumentor\\Reflection\\": "src/"
  2458. }
  2459. },
  2460. "notification-url": "https://packagist.org/downloads/",
  2461. "license": [
  2462. "MIT"
  2463. ],
  2464. "authors": [
  2465. {
  2466. "name": "Jaap van Otterdijk",
  2467. "email": "opensource@ijaap.nl"
  2468. }
  2469. ],
  2470. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2471. "homepage": "http://www.phpdoc.org",
  2472. "keywords": [
  2473. "FQSEN",
  2474. "phpDocumentor",
  2475. "phpdoc",
  2476. "reflection",
  2477. "static analysis"
  2478. ],
  2479. "support": {
  2480. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2481. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2482. },
  2483. "time": "2020-06-27T09:03:43+00:00"
  2484. },
  2485. {
  2486. "name": "phpdocumentor/reflection-docblock",
  2487. "version": "5.3.0",
  2488. "source": {
  2489. "type": "git",
  2490. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2491. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  2492. },
  2493. "dist": {
  2494. "type": "zip",
  2495. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  2496. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  2497. "shasum": ""
  2498. },
  2499. "require": {
  2500. "ext-filter": "*",
  2501. "php": "^7.2 || ^8.0",
  2502. "phpdocumentor/reflection-common": "^2.2",
  2503. "phpdocumentor/type-resolver": "^1.3",
  2504. "webmozart/assert": "^1.9.1"
  2505. },
  2506. "require-dev": {
  2507. "mockery/mockery": "~1.3.2",
  2508. "psalm/phar": "^4.8"
  2509. },
  2510. "type": "library",
  2511. "extra": {
  2512. "branch-alias": {
  2513. "dev-master": "5.x-dev"
  2514. }
  2515. },
  2516. "autoload": {
  2517. "psr-4": {
  2518. "phpDocumentor\\Reflection\\": "src"
  2519. }
  2520. },
  2521. "notification-url": "https://packagist.org/downloads/",
  2522. "license": [
  2523. "MIT"
  2524. ],
  2525. "authors": [
  2526. {
  2527. "name": "Mike van Riel",
  2528. "email": "me@mikevanriel.com"
  2529. },
  2530. {
  2531. "name": "Jaap van Otterdijk",
  2532. "email": "account@ijaap.nl"
  2533. }
  2534. ],
  2535. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2536. "support": {
  2537. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2538. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  2539. },
  2540. "time": "2021-10-19T17:43:47+00:00"
  2541. },
  2542. {
  2543. "name": "phpdocumentor/type-resolver",
  2544. "version": "1.7.1",
  2545. "source": {
  2546. "type": "git",
  2547. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2548. "reference": "dfc078e8af9c99210337325ff5aa152872c98714"
  2549. },
  2550. "dist": {
  2551. "type": "zip",
  2552. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/dfc078e8af9c99210337325ff5aa152872c98714",
  2553. "reference": "dfc078e8af9c99210337325ff5aa152872c98714",
  2554. "shasum": ""
  2555. },
  2556. "require": {
  2557. "doctrine/deprecations": "^1.0",
  2558. "php": "^7.4 || ^8.0",
  2559. "phpdocumentor/reflection-common": "^2.0",
  2560. "phpstan/phpdoc-parser": "^1.13"
  2561. },
  2562. "require-dev": {
  2563. "ext-tokenizer": "*",
  2564. "phpbench/phpbench": "^1.2",
  2565. "phpstan/extension-installer": "^1.1",
  2566. "phpstan/phpstan": "^1.8",
  2567. "phpstan/phpstan-phpunit": "^1.1",
  2568. "phpunit/phpunit": "^9.5",
  2569. "rector/rector": "^0.13.9",
  2570. "vimeo/psalm": "^4.25"
  2571. },
  2572. "type": "library",
  2573. "extra": {
  2574. "branch-alias": {
  2575. "dev-1.x": "1.x-dev"
  2576. }
  2577. },
  2578. "autoload": {
  2579. "psr-4": {
  2580. "phpDocumentor\\Reflection\\": "src"
  2581. }
  2582. },
  2583. "notification-url": "https://packagist.org/downloads/",
  2584. "license": [
  2585. "MIT"
  2586. ],
  2587. "authors": [
  2588. {
  2589. "name": "Mike van Riel",
  2590. "email": "me@mikevanriel.com"
  2591. }
  2592. ],
  2593. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2594. "support": {
  2595. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2596. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.1"
  2597. },
  2598. "time": "2023-03-27T19:02:04+00:00"
  2599. },
  2600. {
  2601. "name": "phpstan/phpdoc-parser",
  2602. "version": "1.18.1",
  2603. "source": {
  2604. "type": "git",
  2605. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2606. "reference": "22dcdfd725ddf99583bfe398fc624ad6c5004a0f"
  2607. },
  2608. "dist": {
  2609. "type": "zip",
  2610. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/22dcdfd725ddf99583bfe398fc624ad6c5004a0f",
  2611. "reference": "22dcdfd725ddf99583bfe398fc624ad6c5004a0f",
  2612. "shasum": ""
  2613. },
  2614. "require": {
  2615. "php": "^7.2 || ^8.0"
  2616. },
  2617. "require-dev": {
  2618. "php-parallel-lint/php-parallel-lint": "^1.2",
  2619. "phpstan/extension-installer": "^1.0",
  2620. "phpstan/phpstan": "^1.5",
  2621. "phpstan/phpstan-phpunit": "^1.1",
  2622. "phpstan/phpstan-strict-rules": "^1.0",
  2623. "phpunit/phpunit": "^9.5",
  2624. "symfony/process": "^5.2"
  2625. },
  2626. "type": "library",
  2627. "autoload": {
  2628. "psr-4": {
  2629. "PHPStan\\PhpDocParser\\": [
  2630. "src/"
  2631. ]
  2632. }
  2633. },
  2634. "notification-url": "https://packagist.org/downloads/",
  2635. "license": [
  2636. "MIT"
  2637. ],
  2638. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2639. "support": {
  2640. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2641. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.18.1"
  2642. },
  2643. "time": "2023-04-07T11:51:11+00:00"
  2644. },
  2645. {
  2646. "name": "psr/cache",
  2647. "version": "3.0.0",
  2648. "source": {
  2649. "type": "git",
  2650. "url": "https://github.com/php-fig/cache.git",
  2651. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2652. },
  2653. "dist": {
  2654. "type": "zip",
  2655. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2656. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2657. "shasum": ""
  2658. },
  2659. "require": {
  2660. "php": ">=8.0.0"
  2661. },
  2662. "type": "library",
  2663. "extra": {
  2664. "branch-alias": {
  2665. "dev-master": "1.0.x-dev"
  2666. }
  2667. },
  2668. "autoload": {
  2669. "psr-4": {
  2670. "Psr\\Cache\\": "src/"
  2671. }
  2672. },
  2673. "notification-url": "https://packagist.org/downloads/",
  2674. "license": [
  2675. "MIT"
  2676. ],
  2677. "authors": [
  2678. {
  2679. "name": "PHP-FIG",
  2680. "homepage": "https://www.php-fig.org/"
  2681. }
  2682. ],
  2683. "description": "Common interface for caching libraries",
  2684. "keywords": [
  2685. "cache",
  2686. "psr",
  2687. "psr-6"
  2688. ],
  2689. "support": {
  2690. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2691. },
  2692. "time": "2021-02-03T23:26:27+00:00"
  2693. },
  2694. {
  2695. "name": "psr/container",
  2696. "version": "2.0.2",
  2697. "source": {
  2698. "type": "git",
  2699. "url": "https://github.com/php-fig/container.git",
  2700. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2701. },
  2702. "dist": {
  2703. "type": "zip",
  2704. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2705. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2706. "shasum": ""
  2707. },
  2708. "require": {
  2709. "php": ">=7.4.0"
  2710. },
  2711. "type": "library",
  2712. "extra": {
  2713. "branch-alias": {
  2714. "dev-master": "2.0.x-dev"
  2715. }
  2716. },
  2717. "autoload": {
  2718. "psr-4": {
  2719. "Psr\\Container\\": "src/"
  2720. }
  2721. },
  2722. "notification-url": "https://packagist.org/downloads/",
  2723. "license": [
  2724. "MIT"
  2725. ],
  2726. "authors": [
  2727. {
  2728. "name": "PHP-FIG",
  2729. "homepage": "https://www.php-fig.org/"
  2730. }
  2731. ],
  2732. "description": "Common Container Interface (PHP FIG PSR-11)",
  2733. "homepage": "https://github.com/php-fig/container",
  2734. "keywords": [
  2735. "PSR-11",
  2736. "container",
  2737. "container-interface",
  2738. "container-interop",
  2739. "psr"
  2740. ],
  2741. "support": {
  2742. "issues": "https://github.com/php-fig/container/issues",
  2743. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2744. },
  2745. "time": "2021-11-05T16:47:00+00:00"
  2746. },
  2747. {
  2748. "name": "psr/event-dispatcher",
  2749. "version": "1.0.0",
  2750. "source": {
  2751. "type": "git",
  2752. "url": "https://github.com/php-fig/event-dispatcher.git",
  2753. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2754. },
  2755. "dist": {
  2756. "type": "zip",
  2757. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2758. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2759. "shasum": ""
  2760. },
  2761. "require": {
  2762. "php": ">=7.2.0"
  2763. },
  2764. "type": "library",
  2765. "extra": {
  2766. "branch-alias": {
  2767. "dev-master": "1.0.x-dev"
  2768. }
  2769. },
  2770. "autoload": {
  2771. "psr-4": {
  2772. "Psr\\EventDispatcher\\": "src/"
  2773. }
  2774. },
  2775. "notification-url": "https://packagist.org/downloads/",
  2776. "license": [
  2777. "MIT"
  2778. ],
  2779. "authors": [
  2780. {
  2781. "name": "PHP-FIG",
  2782. "homepage": "http://www.php-fig.org/"
  2783. }
  2784. ],
  2785. "description": "Standard interfaces for event handling.",
  2786. "keywords": [
  2787. "events",
  2788. "psr",
  2789. "psr-14"
  2790. ],
  2791. "support": {
  2792. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2793. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2794. },
  2795. "time": "2019-01-08T18:20:26+00:00"
  2796. },
  2797. {
  2798. "name": "psr/http-message",
  2799. "version": "1.1",
  2800. "source": {
  2801. "type": "git",
  2802. "url": "https://github.com/php-fig/http-message.git",
  2803. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  2804. },
  2805. "dist": {
  2806. "type": "zip",
  2807. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2808. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2809. "shasum": ""
  2810. },
  2811. "require": {
  2812. "php": "^7.2 || ^8.0"
  2813. },
  2814. "type": "library",
  2815. "extra": {
  2816. "branch-alias": {
  2817. "dev-master": "1.1.x-dev"
  2818. }
  2819. },
  2820. "autoload": {
  2821. "psr-4": {
  2822. "Psr\\Http\\Message\\": "src/"
  2823. }
  2824. },
  2825. "notification-url": "https://packagist.org/downloads/",
  2826. "license": [
  2827. "MIT"
  2828. ],
  2829. "authors": [
  2830. {
  2831. "name": "PHP-FIG",
  2832. "homepage": "http://www.php-fig.org/"
  2833. }
  2834. ],
  2835. "description": "Common interface for HTTP messages",
  2836. "homepage": "https://github.com/php-fig/http-message",
  2837. "keywords": [
  2838. "http",
  2839. "http-message",
  2840. "psr",
  2841. "psr-7",
  2842. "request",
  2843. "response"
  2844. ],
  2845. "support": {
  2846. "source": "https://github.com/php-fig/http-message/tree/1.1"
  2847. },
  2848. "time": "2023-04-04T09:50:52+00:00"
  2849. },
  2850. {
  2851. "name": "psr/link",
  2852. "version": "2.0.1",
  2853. "source": {
  2854. "type": "git",
  2855. "url": "https://github.com/php-fig/link.git",
  2856. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2857. },
  2858. "dist": {
  2859. "type": "zip",
  2860. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2861. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2862. "shasum": ""
  2863. },
  2864. "require": {
  2865. "php": ">=8.0.0"
  2866. },
  2867. "suggest": {
  2868. "fig/link-util": "Provides some useful PSR-13 utilities"
  2869. },
  2870. "type": "library",
  2871. "extra": {
  2872. "branch-alias": {
  2873. "dev-master": "2.0.x-dev"
  2874. }
  2875. },
  2876. "autoload": {
  2877. "psr-4": {
  2878. "Psr\\Link\\": "src/"
  2879. }
  2880. },
  2881. "notification-url": "https://packagist.org/downloads/",
  2882. "license": [
  2883. "MIT"
  2884. ],
  2885. "authors": [
  2886. {
  2887. "name": "PHP-FIG",
  2888. "homepage": "http://www.php-fig.org/"
  2889. }
  2890. ],
  2891. "description": "Common interfaces for HTTP links",
  2892. "homepage": "https://github.com/php-fig/link",
  2893. "keywords": [
  2894. "http",
  2895. "http-link",
  2896. "link",
  2897. "psr",
  2898. "psr-13",
  2899. "rest"
  2900. ],
  2901. "support": {
  2902. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2903. },
  2904. "time": "2021-03-11T23:00:27+00:00"
  2905. },
  2906. {
  2907. "name": "psr/log",
  2908. "version": "3.0.0",
  2909. "source": {
  2910. "type": "git",
  2911. "url": "https://github.com/php-fig/log.git",
  2912. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  2913. },
  2914. "dist": {
  2915. "type": "zip",
  2916. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2917. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2918. "shasum": ""
  2919. },
  2920. "require": {
  2921. "php": ">=8.0.0"
  2922. },
  2923. "type": "library",
  2924. "extra": {
  2925. "branch-alias": {
  2926. "dev-master": "3.x-dev"
  2927. }
  2928. },
  2929. "autoload": {
  2930. "psr-4": {
  2931. "Psr\\Log\\": "src"
  2932. }
  2933. },
  2934. "notification-url": "https://packagist.org/downloads/",
  2935. "license": [
  2936. "MIT"
  2937. ],
  2938. "authors": [
  2939. {
  2940. "name": "PHP-FIG",
  2941. "homepage": "https://www.php-fig.org/"
  2942. }
  2943. ],
  2944. "description": "Common interface for logging libraries",
  2945. "homepage": "https://github.com/php-fig/log",
  2946. "keywords": [
  2947. "log",
  2948. "psr",
  2949. "psr-3"
  2950. ],
  2951. "support": {
  2952. "source": "https://github.com/php-fig/log/tree/3.0.0"
  2953. },
  2954. "time": "2021-07-14T16:46:02+00:00"
  2955. },
  2956. {
  2957. "name": "sensio/framework-extra-bundle",
  2958. "version": "v6.2.10",
  2959. "source": {
  2960. "type": "git",
  2961. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2962. "reference": "2f886f4b31f23c76496901acaedfedb6936ba61f"
  2963. },
  2964. "dist": {
  2965. "type": "zip",
  2966. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/2f886f4b31f23c76496901acaedfedb6936ba61f",
  2967. "reference": "2f886f4b31f23c76496901acaedfedb6936ba61f",
  2968. "shasum": ""
  2969. },
  2970. "require": {
  2971. "doctrine/annotations": "^1.0|^2.0",
  2972. "php": ">=7.2.5",
  2973. "symfony/config": "^4.4|^5.0|^6.0",
  2974. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2975. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  2976. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  2977. },
  2978. "conflict": {
  2979. "doctrine/doctrine-cache-bundle": "<1.3.1",
  2980. "doctrine/persistence": "<1.3"
  2981. },
  2982. "require-dev": {
  2983. "doctrine/dbal": "^2.10|^3.0",
  2984. "doctrine/doctrine-bundle": "^1.11|^2.0",
  2985. "doctrine/orm": "^2.5",
  2986. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  2987. "symfony/doctrine-bridge": "^4.4|^5.0|^6.0",
  2988. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  2989. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2990. "symfony/finder": "^4.4|^5.0|^6.0",
  2991. "symfony/monolog-bridge": "^4.0|^5.0|^6.0",
  2992. "symfony/monolog-bundle": "^3.2",
  2993. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  2994. "symfony/security-bundle": "^4.4|^5.0|^6.0",
  2995. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  2996. "symfony/yaml": "^4.4|^5.0|^6.0",
  2997. "twig/twig": "^1.34|^2.4|^3.0"
  2998. },
  2999. "type": "symfony-bundle",
  3000. "extra": {
  3001. "branch-alias": {
  3002. "dev-master": "6.1.x-dev"
  3003. }
  3004. },
  3005. "autoload": {
  3006. "psr-4": {
  3007. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  3008. },
  3009. "exclude-from-classmap": [
  3010. "/tests/"
  3011. ]
  3012. },
  3013. "notification-url": "https://packagist.org/downloads/",
  3014. "license": [
  3015. "MIT"
  3016. ],
  3017. "authors": [
  3018. {
  3019. "name": "Fabien Potencier",
  3020. "email": "fabien@symfony.com"
  3021. }
  3022. ],
  3023. "description": "This bundle provides a way to configure your controllers with annotations",
  3024. "keywords": [
  3025. "annotations",
  3026. "controllers"
  3027. ],
  3028. "support": {
  3029. "source": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/tree/v6.2.10"
  3030. },
  3031. "abandoned": "Symfony",
  3032. "time": "2023-02-24T14:57:12+00:00"
  3033. },
  3034. {
  3035. "name": "symfony/apache-pack",
  3036. "version": "v1.0.1",
  3037. "source": {
  3038. "type": "git",
  3039. "url": "https://github.com/symfony/apache-pack.git",
  3040. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  3041. },
  3042. "dist": {
  3043. "type": "zip",
  3044. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3045. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3046. "shasum": ""
  3047. },
  3048. "type": "symfony-pack",
  3049. "notification-url": "https://packagist.org/downloads/",
  3050. "license": [
  3051. "MIT"
  3052. ],
  3053. "description": "A pack for Apache support in Symfony",
  3054. "support": {
  3055. "issues": "https://github.com/symfony/apache-pack/issues",
  3056. "source": "https://github.com/symfony/apache-pack/tree/master"
  3057. },
  3058. "time": "2017-12-12T01:46:35+00:00"
  3059. },
  3060. {
  3061. "name": "symfony/asset",
  3062. "version": "v6.2.7",
  3063. "source": {
  3064. "type": "git",
  3065. "url": "https://github.com/symfony/asset.git",
  3066. "reference": "223df790e684ecc7bc37323c2d1e265129ca02de"
  3067. },
  3068. "dist": {
  3069. "type": "zip",
  3070. "url": "https://api.github.com/repos/symfony/asset/zipball/223df790e684ecc7bc37323c2d1e265129ca02de",
  3071. "reference": "223df790e684ecc7bc37323c2d1e265129ca02de",
  3072. "shasum": ""
  3073. },
  3074. "require": {
  3075. "php": ">=8.1"
  3076. },
  3077. "conflict": {
  3078. "symfony/http-foundation": "<5.4"
  3079. },
  3080. "require-dev": {
  3081. "symfony/http-client": "^5.4|^6.0",
  3082. "symfony/http-foundation": "^5.4|^6.0",
  3083. "symfony/http-kernel": "^5.4|^6.0"
  3084. },
  3085. "suggest": {
  3086. "symfony/http-foundation": ""
  3087. },
  3088. "type": "library",
  3089. "autoload": {
  3090. "psr-4": {
  3091. "Symfony\\Component\\Asset\\": ""
  3092. },
  3093. "exclude-from-classmap": [
  3094. "/Tests/"
  3095. ]
  3096. },
  3097. "notification-url": "https://packagist.org/downloads/",
  3098. "license": [
  3099. "MIT"
  3100. ],
  3101. "authors": [
  3102. {
  3103. "name": "Fabien Potencier",
  3104. "email": "fabien@symfony.com"
  3105. },
  3106. {
  3107. "name": "Symfony Community",
  3108. "homepage": "https://symfony.com/contributors"
  3109. }
  3110. ],
  3111. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3112. "homepage": "https://symfony.com",
  3113. "support": {
  3114. "source": "https://github.com/symfony/asset/tree/v6.2.7"
  3115. },
  3116. "funding": [
  3117. {
  3118. "url": "https://symfony.com/sponsor",
  3119. "type": "custom"
  3120. },
  3121. {
  3122. "url": "https://github.com/fabpot",
  3123. "type": "github"
  3124. },
  3125. {
  3126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3127. "type": "tidelift"
  3128. }
  3129. ],
  3130. "time": "2023-02-14T08:44:56+00:00"
  3131. },
  3132. {
  3133. "name": "symfony/cache",
  3134. "version": "v6.2.8",
  3135. "source": {
  3136. "type": "git",
  3137. "url": "https://github.com/symfony/cache.git",
  3138. "reference": "76babfd82f6bfd8f6cbe851a153b95dd074ffc53"
  3139. },
  3140. "dist": {
  3141. "type": "zip",
  3142. "url": "https://api.github.com/repos/symfony/cache/zipball/76babfd82f6bfd8f6cbe851a153b95dd074ffc53",
  3143. "reference": "76babfd82f6bfd8f6cbe851a153b95dd074ffc53",
  3144. "shasum": ""
  3145. },
  3146. "require": {
  3147. "php": ">=8.1",
  3148. "psr/cache": "^2.0|^3.0",
  3149. "psr/log": "^1.1|^2|^3",
  3150. "symfony/cache-contracts": "^1.1.7|^2|^3",
  3151. "symfony/service-contracts": "^1.1|^2|^3",
  3152. "symfony/var-exporter": "^6.2.7"
  3153. },
  3154. "conflict": {
  3155. "doctrine/dbal": "<2.13.1",
  3156. "symfony/dependency-injection": "<5.4",
  3157. "symfony/http-kernel": "<5.4",
  3158. "symfony/var-dumper": "<5.4"
  3159. },
  3160. "provide": {
  3161. "psr/cache-implementation": "2.0|3.0",
  3162. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3163. "symfony/cache-implementation": "1.1|2.0|3.0"
  3164. },
  3165. "require-dev": {
  3166. "cache/integration-tests": "dev-master",
  3167. "doctrine/dbal": "^2.13.1|^3.0",
  3168. "predis/predis": "^1.1",
  3169. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3170. "symfony/config": "^5.4|^6.0",
  3171. "symfony/dependency-injection": "^5.4|^6.0",
  3172. "symfony/filesystem": "^5.4|^6.0",
  3173. "symfony/http-kernel": "^5.4|^6.0",
  3174. "symfony/messenger": "^5.4|^6.0",
  3175. "symfony/var-dumper": "^5.4|^6.0"
  3176. },
  3177. "type": "library",
  3178. "autoload": {
  3179. "psr-4": {
  3180. "Symfony\\Component\\Cache\\": ""
  3181. },
  3182. "classmap": [
  3183. "Traits/ValueWrapper.php"
  3184. ],
  3185. "exclude-from-classmap": [
  3186. "/Tests/"
  3187. ]
  3188. },
  3189. "notification-url": "https://packagist.org/downloads/",
  3190. "license": [
  3191. "MIT"
  3192. ],
  3193. "authors": [
  3194. {
  3195. "name": "Nicolas Grekas",
  3196. "email": "p@tchwork.com"
  3197. },
  3198. {
  3199. "name": "Symfony Community",
  3200. "homepage": "https://symfony.com/contributors"
  3201. }
  3202. ],
  3203. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3204. "homepage": "https://symfony.com",
  3205. "keywords": [
  3206. "caching",
  3207. "psr6"
  3208. ],
  3209. "support": {
  3210. "source": "https://github.com/symfony/cache/tree/v6.2.8"
  3211. },
  3212. "funding": [
  3213. {
  3214. "url": "https://symfony.com/sponsor",
  3215. "type": "custom"
  3216. },
  3217. {
  3218. "url": "https://github.com/fabpot",
  3219. "type": "github"
  3220. },
  3221. {
  3222. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3223. "type": "tidelift"
  3224. }
  3225. ],
  3226. "time": "2023-03-30T07:37:32+00:00"
  3227. },
  3228. {
  3229. "name": "symfony/cache-contracts",
  3230. "version": "v3.2.1",
  3231. "source": {
  3232. "type": "git",
  3233. "url": "https://github.com/symfony/cache-contracts.git",
  3234. "reference": "eeb71f04b6f7f34ca6d15633df82e014528b1632"
  3235. },
  3236. "dist": {
  3237. "type": "zip",
  3238. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/eeb71f04b6f7f34ca6d15633df82e014528b1632",
  3239. "reference": "eeb71f04b6f7f34ca6d15633df82e014528b1632",
  3240. "shasum": ""
  3241. },
  3242. "require": {
  3243. "php": ">=8.1",
  3244. "psr/cache": "^3.0"
  3245. },
  3246. "suggest": {
  3247. "symfony/cache-implementation": ""
  3248. },
  3249. "type": "library",
  3250. "extra": {
  3251. "branch-alias": {
  3252. "dev-main": "3.3-dev"
  3253. },
  3254. "thanks": {
  3255. "name": "symfony/contracts",
  3256. "url": "https://github.com/symfony/contracts"
  3257. }
  3258. },
  3259. "autoload": {
  3260. "psr-4": {
  3261. "Symfony\\Contracts\\Cache\\": ""
  3262. }
  3263. },
  3264. "notification-url": "https://packagist.org/downloads/",
  3265. "license": [
  3266. "MIT"
  3267. ],
  3268. "authors": [
  3269. {
  3270. "name": "Nicolas Grekas",
  3271. "email": "p@tchwork.com"
  3272. },
  3273. {
  3274. "name": "Symfony Community",
  3275. "homepage": "https://symfony.com/contributors"
  3276. }
  3277. ],
  3278. "description": "Generic abstractions related to caching",
  3279. "homepage": "https://symfony.com",
  3280. "keywords": [
  3281. "abstractions",
  3282. "contracts",
  3283. "decoupling",
  3284. "interfaces",
  3285. "interoperability",
  3286. "standards"
  3287. ],
  3288. "support": {
  3289. "source": "https://github.com/symfony/cache-contracts/tree/v3.2.1"
  3290. },
  3291. "funding": [
  3292. {
  3293. "url": "https://symfony.com/sponsor",
  3294. "type": "custom"
  3295. },
  3296. {
  3297. "url": "https://github.com/fabpot",
  3298. "type": "github"
  3299. },
  3300. {
  3301. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3302. "type": "tidelift"
  3303. }
  3304. ],
  3305. "time": "2023-03-01T10:32:47+00:00"
  3306. },
  3307. {
  3308. "name": "symfony/config",
  3309. "version": "v6.2.7",
  3310. "source": {
  3311. "type": "git",
  3312. "url": "https://github.com/symfony/config.git",
  3313. "reference": "249271da6f545d6579e0663374f8249a80be2893"
  3314. },
  3315. "dist": {
  3316. "type": "zip",
  3317. "url": "https://api.github.com/repos/symfony/config/zipball/249271da6f545d6579e0663374f8249a80be2893",
  3318. "reference": "249271da6f545d6579e0663374f8249a80be2893",
  3319. "shasum": ""
  3320. },
  3321. "require": {
  3322. "php": ">=8.1",
  3323. "symfony/deprecation-contracts": "^2.1|^3",
  3324. "symfony/filesystem": "^5.4|^6.0",
  3325. "symfony/polyfill-ctype": "~1.8"
  3326. },
  3327. "conflict": {
  3328. "symfony/finder": "<5.4"
  3329. },
  3330. "require-dev": {
  3331. "symfony/event-dispatcher": "^5.4|^6.0",
  3332. "symfony/finder": "^5.4|^6.0",
  3333. "symfony/messenger": "^5.4|^6.0",
  3334. "symfony/service-contracts": "^1.1|^2|^3",
  3335. "symfony/yaml": "^5.4|^6.0"
  3336. },
  3337. "suggest": {
  3338. "symfony/yaml": "To use the yaml reference dumper"
  3339. },
  3340. "type": "library",
  3341. "autoload": {
  3342. "psr-4": {
  3343. "Symfony\\Component\\Config\\": ""
  3344. },
  3345. "exclude-from-classmap": [
  3346. "/Tests/"
  3347. ]
  3348. },
  3349. "notification-url": "https://packagist.org/downloads/",
  3350. "license": [
  3351. "MIT"
  3352. ],
  3353. "authors": [
  3354. {
  3355. "name": "Fabien Potencier",
  3356. "email": "fabien@symfony.com"
  3357. },
  3358. {
  3359. "name": "Symfony Community",
  3360. "homepage": "https://symfony.com/contributors"
  3361. }
  3362. ],
  3363. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3364. "homepage": "https://symfony.com",
  3365. "support": {
  3366. "source": "https://github.com/symfony/config/tree/v6.2.7"
  3367. },
  3368. "funding": [
  3369. {
  3370. "url": "https://symfony.com/sponsor",
  3371. "type": "custom"
  3372. },
  3373. {
  3374. "url": "https://github.com/fabpot",
  3375. "type": "github"
  3376. },
  3377. {
  3378. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3379. "type": "tidelift"
  3380. }
  3381. ],
  3382. "time": "2023-02-14T08:44:56+00:00"
  3383. },
  3384. {
  3385. "name": "symfony/console",
  3386. "version": "v6.2.8",
  3387. "source": {
  3388. "type": "git",
  3389. "url": "https://github.com/symfony/console.git",
  3390. "reference": "3582d68a64a86ec25240aaa521ec8bc2342b369b"
  3391. },
  3392. "dist": {
  3393. "type": "zip",
  3394. "url": "https://api.github.com/repos/symfony/console/zipball/3582d68a64a86ec25240aaa521ec8bc2342b369b",
  3395. "reference": "3582d68a64a86ec25240aaa521ec8bc2342b369b",
  3396. "shasum": ""
  3397. },
  3398. "require": {
  3399. "php": ">=8.1",
  3400. "symfony/deprecation-contracts": "^2.1|^3",
  3401. "symfony/polyfill-mbstring": "~1.0",
  3402. "symfony/service-contracts": "^1.1|^2|^3",
  3403. "symfony/string": "^5.4|^6.0"
  3404. },
  3405. "conflict": {
  3406. "symfony/dependency-injection": "<5.4",
  3407. "symfony/dotenv": "<5.4",
  3408. "symfony/event-dispatcher": "<5.4",
  3409. "symfony/lock": "<5.4",
  3410. "symfony/process": "<5.4"
  3411. },
  3412. "provide": {
  3413. "psr/log-implementation": "1.0|2.0|3.0"
  3414. },
  3415. "require-dev": {
  3416. "psr/log": "^1|^2|^3",
  3417. "symfony/config": "^5.4|^6.0",
  3418. "symfony/dependency-injection": "^5.4|^6.0",
  3419. "symfony/event-dispatcher": "^5.4|^6.0",
  3420. "symfony/lock": "^5.4|^6.0",
  3421. "symfony/process": "^5.4|^6.0",
  3422. "symfony/var-dumper": "^5.4|^6.0"
  3423. },
  3424. "suggest": {
  3425. "psr/log": "For using the console logger",
  3426. "symfony/event-dispatcher": "",
  3427. "symfony/lock": "",
  3428. "symfony/process": ""
  3429. },
  3430. "type": "library",
  3431. "autoload": {
  3432. "psr-4": {
  3433. "Symfony\\Component\\Console\\": ""
  3434. },
  3435. "exclude-from-classmap": [
  3436. "/Tests/"
  3437. ]
  3438. },
  3439. "notification-url": "https://packagist.org/downloads/",
  3440. "license": [
  3441. "MIT"
  3442. ],
  3443. "authors": [
  3444. {
  3445. "name": "Fabien Potencier",
  3446. "email": "fabien@symfony.com"
  3447. },
  3448. {
  3449. "name": "Symfony Community",
  3450. "homepage": "https://symfony.com/contributors"
  3451. }
  3452. ],
  3453. "description": "Eases the creation of beautiful and testable command line interfaces",
  3454. "homepage": "https://symfony.com",
  3455. "keywords": [
  3456. "cli",
  3457. "command-line",
  3458. "console",
  3459. "terminal"
  3460. ],
  3461. "support": {
  3462. "source": "https://github.com/symfony/console/tree/v6.2.8"
  3463. },
  3464. "funding": [
  3465. {
  3466. "url": "https://symfony.com/sponsor",
  3467. "type": "custom"
  3468. },
  3469. {
  3470. "url": "https://github.com/fabpot",
  3471. "type": "github"
  3472. },
  3473. {
  3474. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3475. "type": "tidelift"
  3476. }
  3477. ],
  3478. "time": "2023-03-29T21:42:15+00:00"
  3479. },
  3480. {
  3481. "name": "symfony/dependency-injection",
  3482. "version": "v6.2.8",
  3483. "source": {
  3484. "type": "git",
  3485. "url": "https://github.com/symfony/dependency-injection.git",
  3486. "reference": "b6195feacceb88fc58a02b69522b569e4c6188ac"
  3487. },
  3488. "dist": {
  3489. "type": "zip",
  3490. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/b6195feacceb88fc58a02b69522b569e4c6188ac",
  3491. "reference": "b6195feacceb88fc58a02b69522b569e4c6188ac",
  3492. "shasum": ""
  3493. },
  3494. "require": {
  3495. "php": ">=8.1",
  3496. "psr/container": "^1.1|^2.0",
  3497. "symfony/deprecation-contracts": "^2.1|^3",
  3498. "symfony/service-contracts": "^1.1.6|^2.0|^3.0",
  3499. "symfony/var-exporter": "^6.2.7"
  3500. },
  3501. "conflict": {
  3502. "ext-psr": "<1.1|>=2",
  3503. "symfony/config": "<6.1",
  3504. "symfony/finder": "<5.4",
  3505. "symfony/proxy-manager-bridge": "<6.2",
  3506. "symfony/yaml": "<5.4"
  3507. },
  3508. "provide": {
  3509. "psr/container-implementation": "1.1|2.0",
  3510. "symfony/service-implementation": "1.1|2.0|3.0"
  3511. },
  3512. "require-dev": {
  3513. "symfony/config": "^6.1",
  3514. "symfony/expression-language": "^5.4|^6.0",
  3515. "symfony/yaml": "^5.4|^6.0"
  3516. },
  3517. "suggest": {
  3518. "symfony/config": "",
  3519. "symfony/expression-language": "For using expressions in service container configuration",
  3520. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  3521. "symfony/yaml": ""
  3522. },
  3523. "type": "library",
  3524. "autoload": {
  3525. "psr-4": {
  3526. "Symfony\\Component\\DependencyInjection\\": ""
  3527. },
  3528. "exclude-from-classmap": [
  3529. "/Tests/"
  3530. ]
  3531. },
  3532. "notification-url": "https://packagist.org/downloads/",
  3533. "license": [
  3534. "MIT"
  3535. ],
  3536. "authors": [
  3537. {
  3538. "name": "Fabien Potencier",
  3539. "email": "fabien@symfony.com"
  3540. },
  3541. {
  3542. "name": "Symfony Community",
  3543. "homepage": "https://symfony.com/contributors"
  3544. }
  3545. ],
  3546. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3547. "homepage": "https://symfony.com",
  3548. "support": {
  3549. "source": "https://github.com/symfony/dependency-injection/tree/v6.2.8"
  3550. },
  3551. "funding": [
  3552. {
  3553. "url": "https://symfony.com/sponsor",
  3554. "type": "custom"
  3555. },
  3556. {
  3557. "url": "https://github.com/fabpot",
  3558. "type": "github"
  3559. },
  3560. {
  3561. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3562. "type": "tidelift"
  3563. }
  3564. ],
  3565. "time": "2023-03-30T13:35:57+00:00"
  3566. },
  3567. {
  3568. "name": "symfony/deprecation-contracts",
  3569. "version": "v3.2.1",
  3570. "source": {
  3571. "type": "git",
  3572. "url": "https://github.com/symfony/deprecation-contracts.git",
  3573. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e"
  3574. },
  3575. "dist": {
  3576. "type": "zip",
  3577. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  3578. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  3579. "shasum": ""
  3580. },
  3581. "require": {
  3582. "php": ">=8.1"
  3583. },
  3584. "type": "library",
  3585. "extra": {
  3586. "branch-alias": {
  3587. "dev-main": "3.3-dev"
  3588. },
  3589. "thanks": {
  3590. "name": "symfony/contracts",
  3591. "url": "https://github.com/symfony/contracts"
  3592. }
  3593. },
  3594. "autoload": {
  3595. "files": [
  3596. "function.php"
  3597. ]
  3598. },
  3599. "notification-url": "https://packagist.org/downloads/",
  3600. "license": [
  3601. "MIT"
  3602. ],
  3603. "authors": [
  3604. {
  3605. "name": "Nicolas Grekas",
  3606. "email": "p@tchwork.com"
  3607. },
  3608. {
  3609. "name": "Symfony Community",
  3610. "homepage": "https://symfony.com/contributors"
  3611. }
  3612. ],
  3613. "description": "A generic function and convention to trigger deprecation notices",
  3614. "homepage": "https://symfony.com",
  3615. "support": {
  3616. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1"
  3617. },
  3618. "funding": [
  3619. {
  3620. "url": "https://symfony.com/sponsor",
  3621. "type": "custom"
  3622. },
  3623. {
  3624. "url": "https://github.com/fabpot",
  3625. "type": "github"
  3626. },
  3627. {
  3628. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3629. "type": "tidelift"
  3630. }
  3631. ],
  3632. "time": "2023-03-01T10:25:55+00:00"
  3633. },
  3634. {
  3635. "name": "symfony/doctrine-bridge",
  3636. "version": "v6.2.9",
  3637. "source": {
  3638. "type": "git",
  3639. "url": "https://github.com/symfony/doctrine-bridge.git",
  3640. "reference": "4b3aeaa90d41c5527d7ba211d12102cedf06936e"
  3641. },
  3642. "dist": {
  3643. "type": "zip",
  3644. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/4b3aeaa90d41c5527d7ba211d12102cedf06936e",
  3645. "reference": "4b3aeaa90d41c5527d7ba211d12102cedf06936e",
  3646. "shasum": ""
  3647. },
  3648. "require": {
  3649. "doctrine/event-manager": "^1.2|^2",
  3650. "doctrine/persistence": "^2|^3",
  3651. "php": ">=8.1",
  3652. "symfony/deprecation-contracts": "^2.1|^3",
  3653. "symfony/polyfill-ctype": "~1.8",
  3654. "symfony/polyfill-mbstring": "~1.0",
  3655. "symfony/service-contracts": "^1.1|^2|^3"
  3656. },
  3657. "conflict": {
  3658. "doctrine/dbal": "<2.13.1",
  3659. "doctrine/lexer": "<1.1",
  3660. "doctrine/orm": "<2.7.4",
  3661. "phpunit/phpunit": "<5.4.3",
  3662. "symfony/cache": "<5.4",
  3663. "symfony/dependency-injection": "<5.4",
  3664. "symfony/form": "<5.4.21|>=6,<6.2.7",
  3665. "symfony/http-kernel": "<6.2",
  3666. "symfony/messenger": "<5.4",
  3667. "symfony/property-info": "<5.4",
  3668. "symfony/security-bundle": "<5.4",
  3669. "symfony/security-core": "<6.0",
  3670. "symfony/validator": "<5.4"
  3671. },
  3672. "require-dev": {
  3673. "doctrine/annotations": "^1.10.4|^2",
  3674. "doctrine/collections": "^1.0|^2.0",
  3675. "doctrine/data-fixtures": "^1.1",
  3676. "doctrine/dbal": "^2.13.1|^3.0",
  3677. "doctrine/orm": "^2.7.4",
  3678. "psr/log": "^1|^2|^3",
  3679. "symfony/cache": "^5.4|^6.0",
  3680. "symfony/config": "^5.4|^6.0",
  3681. "symfony/dependency-injection": "^5.4|^6.0",
  3682. "symfony/doctrine-messenger": "^5.4|^6.0",
  3683. "symfony/expression-language": "^5.4|^6.0",
  3684. "symfony/form": "^5.4.21|^6.2.7",
  3685. "symfony/http-kernel": "^6.2",
  3686. "symfony/messenger": "^5.4|^6.0",
  3687. "symfony/property-access": "^5.4|^6.0",
  3688. "symfony/property-info": "^5.4|^6.0",
  3689. "symfony/proxy-manager-bridge": "^5.4|^6.0",
  3690. "symfony/security-core": "^6.0",
  3691. "symfony/stopwatch": "^5.4|^6.0",
  3692. "symfony/translation": "^5.4|^6.0",
  3693. "symfony/uid": "^5.4|^6.0",
  3694. "symfony/validator": "^5.4|^6.0",
  3695. "symfony/var-dumper": "^5.4|^6.0"
  3696. },
  3697. "suggest": {
  3698. "doctrine/data-fixtures": "",
  3699. "doctrine/dbal": "",
  3700. "doctrine/orm": "",
  3701. "symfony/form": "",
  3702. "symfony/property-info": "",
  3703. "symfony/validator": ""
  3704. },
  3705. "type": "symfony-bridge",
  3706. "autoload": {
  3707. "psr-4": {
  3708. "Symfony\\Bridge\\Doctrine\\": ""
  3709. },
  3710. "exclude-from-classmap": [
  3711. "/Tests/"
  3712. ]
  3713. },
  3714. "notification-url": "https://packagist.org/downloads/",
  3715. "license": [
  3716. "MIT"
  3717. ],
  3718. "authors": [
  3719. {
  3720. "name": "Fabien Potencier",
  3721. "email": "fabien@symfony.com"
  3722. },
  3723. {
  3724. "name": "Symfony Community",
  3725. "homepage": "https://symfony.com/contributors"
  3726. }
  3727. ],
  3728. "description": "Provides integration for Doctrine with various Symfony components",
  3729. "homepage": "https://symfony.com",
  3730. "support": {
  3731. "source": "https://github.com/symfony/doctrine-bridge/tree/v6.2.9"
  3732. },
  3733. "funding": [
  3734. {
  3735. "url": "https://symfony.com/sponsor",
  3736. "type": "custom"
  3737. },
  3738. {
  3739. "url": "https://github.com/fabpot",
  3740. "type": "github"
  3741. },
  3742. {
  3743. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3744. "type": "tidelift"
  3745. }
  3746. ],
  3747. "time": "2023-04-11T16:08:35+00:00"
  3748. },
  3749. {
  3750. "name": "symfony/dotenv",
  3751. "version": "v6.2.8",
  3752. "source": {
  3753. "type": "git",
  3754. "url": "https://github.com/symfony/dotenv.git",
  3755. "reference": "4481aa45be7a11d2335c1d5b5bbe2f0c6199b105"
  3756. },
  3757. "dist": {
  3758. "type": "zip",
  3759. "url": "https://api.github.com/repos/symfony/dotenv/zipball/4481aa45be7a11d2335c1d5b5bbe2f0c6199b105",
  3760. "reference": "4481aa45be7a11d2335c1d5b5bbe2f0c6199b105",
  3761. "shasum": ""
  3762. },
  3763. "require": {
  3764. "php": ">=8.1"
  3765. },
  3766. "conflict": {
  3767. "symfony/console": "<5.4",
  3768. "symfony/process": "<5.4"
  3769. },
  3770. "require-dev": {
  3771. "symfony/console": "^5.4|^6.0",
  3772. "symfony/process": "^5.4|^6.0"
  3773. },
  3774. "type": "library",
  3775. "autoload": {
  3776. "psr-4": {
  3777. "Symfony\\Component\\Dotenv\\": ""
  3778. },
  3779. "exclude-from-classmap": [
  3780. "/Tests/"
  3781. ]
  3782. },
  3783. "notification-url": "https://packagist.org/downloads/",
  3784. "license": [
  3785. "MIT"
  3786. ],
  3787. "authors": [
  3788. {
  3789. "name": "Fabien Potencier",
  3790. "email": "fabien@symfony.com"
  3791. },
  3792. {
  3793. "name": "Symfony Community",
  3794. "homepage": "https://symfony.com/contributors"
  3795. }
  3796. ],
  3797. "description": "Registers environment variables from a .env file",
  3798. "homepage": "https://symfony.com",
  3799. "keywords": [
  3800. "dotenv",
  3801. "env",
  3802. "environment"
  3803. ],
  3804. "support": {
  3805. "source": "https://github.com/symfony/dotenv/tree/v6.2.8"
  3806. },
  3807. "funding": [
  3808. {
  3809. "url": "https://symfony.com/sponsor",
  3810. "type": "custom"
  3811. },
  3812. {
  3813. "url": "https://github.com/fabpot",
  3814. "type": "github"
  3815. },
  3816. {
  3817. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3818. "type": "tidelift"
  3819. }
  3820. ],
  3821. "time": "2023-03-10T10:06:03+00:00"
  3822. },
  3823. {
  3824. "name": "symfony/error-handler",
  3825. "version": "v6.2.9",
  3826. "source": {
  3827. "type": "git",
  3828. "url": "https://github.com/symfony/error-handler.git",
  3829. "reference": "e95f1273b3953c3b5e5341172dae838bacee11ee"
  3830. },
  3831. "dist": {
  3832. "type": "zip",
  3833. "url": "https://api.github.com/repos/symfony/error-handler/zipball/e95f1273b3953c3b5e5341172dae838bacee11ee",
  3834. "reference": "e95f1273b3953c3b5e5341172dae838bacee11ee",
  3835. "shasum": ""
  3836. },
  3837. "require": {
  3838. "php": ">=8.1",
  3839. "psr/log": "^1|^2|^3",
  3840. "symfony/var-dumper": "^5.4|^6.0"
  3841. },
  3842. "require-dev": {
  3843. "symfony/deprecation-contracts": "^2.1|^3",
  3844. "symfony/http-kernel": "^5.4|^6.0",
  3845. "symfony/serializer": "^5.4|^6.0"
  3846. },
  3847. "bin": [
  3848. "Resources/bin/patch-type-declarations"
  3849. ],
  3850. "type": "library",
  3851. "autoload": {
  3852. "psr-4": {
  3853. "Symfony\\Component\\ErrorHandler\\": ""
  3854. },
  3855. "exclude-from-classmap": [
  3856. "/Tests/"
  3857. ]
  3858. },
  3859. "notification-url": "https://packagist.org/downloads/",
  3860. "license": [
  3861. "MIT"
  3862. ],
  3863. "authors": [
  3864. {
  3865. "name": "Fabien Potencier",
  3866. "email": "fabien@symfony.com"
  3867. },
  3868. {
  3869. "name": "Symfony Community",
  3870. "homepage": "https://symfony.com/contributors"
  3871. }
  3872. ],
  3873. "description": "Provides tools to manage errors and ease debugging PHP code",
  3874. "homepage": "https://symfony.com",
  3875. "support": {
  3876. "source": "https://github.com/symfony/error-handler/tree/v6.2.9"
  3877. },
  3878. "funding": [
  3879. {
  3880. "url": "https://symfony.com/sponsor",
  3881. "type": "custom"
  3882. },
  3883. {
  3884. "url": "https://github.com/fabpot",
  3885. "type": "github"
  3886. },
  3887. {
  3888. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3889. "type": "tidelift"
  3890. }
  3891. ],
  3892. "time": "2023-04-11T16:03:19+00:00"
  3893. },
  3894. {
  3895. "name": "symfony/event-dispatcher",
  3896. "version": "v6.2.8",
  3897. "source": {
  3898. "type": "git",
  3899. "url": "https://github.com/symfony/event-dispatcher.git",
  3900. "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339"
  3901. },
  3902. "dist": {
  3903. "type": "zip",
  3904. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
  3905. "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
  3906. "shasum": ""
  3907. },
  3908. "require": {
  3909. "php": ">=8.1",
  3910. "symfony/event-dispatcher-contracts": "^2|^3"
  3911. },
  3912. "conflict": {
  3913. "symfony/dependency-injection": "<5.4"
  3914. },
  3915. "provide": {
  3916. "psr/event-dispatcher-implementation": "1.0",
  3917. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3918. },
  3919. "require-dev": {
  3920. "psr/log": "^1|^2|^3",
  3921. "symfony/config": "^5.4|^6.0",
  3922. "symfony/dependency-injection": "^5.4|^6.0",
  3923. "symfony/error-handler": "^5.4|^6.0",
  3924. "symfony/expression-language": "^5.4|^6.0",
  3925. "symfony/http-foundation": "^5.4|^6.0",
  3926. "symfony/service-contracts": "^1.1|^2|^3",
  3927. "symfony/stopwatch": "^5.4|^6.0"
  3928. },
  3929. "suggest": {
  3930. "symfony/dependency-injection": "",
  3931. "symfony/http-kernel": ""
  3932. },
  3933. "type": "library",
  3934. "autoload": {
  3935. "psr-4": {
  3936. "Symfony\\Component\\EventDispatcher\\": ""
  3937. },
  3938. "exclude-from-classmap": [
  3939. "/Tests/"
  3940. ]
  3941. },
  3942. "notification-url": "https://packagist.org/downloads/",
  3943. "license": [
  3944. "MIT"
  3945. ],
  3946. "authors": [
  3947. {
  3948. "name": "Fabien Potencier",
  3949. "email": "fabien@symfony.com"
  3950. },
  3951. {
  3952. "name": "Symfony Community",
  3953. "homepage": "https://symfony.com/contributors"
  3954. }
  3955. ],
  3956. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3957. "homepage": "https://symfony.com",
  3958. "support": {
  3959. "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.8"
  3960. },
  3961. "funding": [
  3962. {
  3963. "url": "https://symfony.com/sponsor",
  3964. "type": "custom"
  3965. },
  3966. {
  3967. "url": "https://github.com/fabpot",
  3968. "type": "github"
  3969. },
  3970. {
  3971. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3972. "type": "tidelift"
  3973. }
  3974. ],
  3975. "time": "2023-03-20T16:06:02+00:00"
  3976. },
  3977. {
  3978. "name": "symfony/event-dispatcher-contracts",
  3979. "version": "v3.2.1",
  3980. "source": {
  3981. "type": "git",
  3982. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3983. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd"
  3984. },
  3985. "dist": {
  3986. "type": "zip",
  3987. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  3988. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  3989. "shasum": ""
  3990. },
  3991. "require": {
  3992. "php": ">=8.1",
  3993. "psr/event-dispatcher": "^1"
  3994. },
  3995. "suggest": {
  3996. "symfony/event-dispatcher-implementation": ""
  3997. },
  3998. "type": "library",
  3999. "extra": {
  4000. "branch-alias": {
  4001. "dev-main": "3.3-dev"
  4002. },
  4003. "thanks": {
  4004. "name": "symfony/contracts",
  4005. "url": "https://github.com/symfony/contracts"
  4006. }
  4007. },
  4008. "autoload": {
  4009. "psr-4": {
  4010. "Symfony\\Contracts\\EventDispatcher\\": ""
  4011. }
  4012. },
  4013. "notification-url": "https://packagist.org/downloads/",
  4014. "license": [
  4015. "MIT"
  4016. ],
  4017. "authors": [
  4018. {
  4019. "name": "Nicolas Grekas",
  4020. "email": "p@tchwork.com"
  4021. },
  4022. {
  4023. "name": "Symfony Community",
  4024. "homepage": "https://symfony.com/contributors"
  4025. }
  4026. ],
  4027. "description": "Generic abstractions related to dispatching event",
  4028. "homepage": "https://symfony.com",
  4029. "keywords": [
  4030. "abstractions",
  4031. "contracts",
  4032. "decoupling",
  4033. "interfaces",
  4034. "interoperability",
  4035. "standards"
  4036. ],
  4037. "support": {
  4038. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.1"
  4039. },
  4040. "funding": [
  4041. {
  4042. "url": "https://symfony.com/sponsor",
  4043. "type": "custom"
  4044. },
  4045. {
  4046. "url": "https://github.com/fabpot",
  4047. "type": "github"
  4048. },
  4049. {
  4050. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4051. "type": "tidelift"
  4052. }
  4053. ],
  4054. "time": "2023-03-01T10:32:47+00:00"
  4055. },
  4056. {
  4057. "name": "symfony/expression-language",
  4058. "version": "v6.2.7",
  4059. "source": {
  4060. "type": "git",
  4061. "url": "https://github.com/symfony/expression-language.git",
  4062. "reference": "83e1fee4c018aa60bcbbecd585a2c54af6aca905"
  4063. },
  4064. "dist": {
  4065. "type": "zip",
  4066. "url": "https://api.github.com/repos/symfony/expression-language/zipball/83e1fee4c018aa60bcbbecd585a2c54af6aca905",
  4067. "reference": "83e1fee4c018aa60bcbbecd585a2c54af6aca905",
  4068. "shasum": ""
  4069. },
  4070. "require": {
  4071. "php": ">=8.1",
  4072. "symfony/cache": "^5.4|^6.0",
  4073. "symfony/service-contracts": "^1.1|^2|^3"
  4074. },
  4075. "type": "library",
  4076. "autoload": {
  4077. "psr-4": {
  4078. "Symfony\\Component\\ExpressionLanguage\\": ""
  4079. },
  4080. "exclude-from-classmap": [
  4081. "/Tests/"
  4082. ]
  4083. },
  4084. "notification-url": "https://packagist.org/downloads/",
  4085. "license": [
  4086. "MIT"
  4087. ],
  4088. "authors": [
  4089. {
  4090. "name": "Fabien Potencier",
  4091. "email": "fabien@symfony.com"
  4092. },
  4093. {
  4094. "name": "Symfony Community",
  4095. "homepage": "https://symfony.com/contributors"
  4096. }
  4097. ],
  4098. "description": "Provides an engine that can compile and evaluate expressions",
  4099. "homepage": "https://symfony.com",
  4100. "support": {
  4101. "source": "https://github.com/symfony/expression-language/tree/v6.2.7"
  4102. },
  4103. "funding": [
  4104. {
  4105. "url": "https://symfony.com/sponsor",
  4106. "type": "custom"
  4107. },
  4108. {
  4109. "url": "https://github.com/fabpot",
  4110. "type": "github"
  4111. },
  4112. {
  4113. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4114. "type": "tidelift"
  4115. }
  4116. ],
  4117. "time": "2023-02-16T09:57:23+00:00"
  4118. },
  4119. {
  4120. "name": "symfony/filesystem",
  4121. "version": "v6.2.7",
  4122. "source": {
  4123. "type": "git",
  4124. "url": "https://github.com/symfony/filesystem.git",
  4125. "reference": "82b6c62b959f642d000456f08c6d219d749215b3"
  4126. },
  4127. "dist": {
  4128. "type": "zip",
  4129. "url": "https://api.github.com/repos/symfony/filesystem/zipball/82b6c62b959f642d000456f08c6d219d749215b3",
  4130. "reference": "82b6c62b959f642d000456f08c6d219d749215b3",
  4131. "shasum": ""
  4132. },
  4133. "require": {
  4134. "php": ">=8.1",
  4135. "symfony/polyfill-ctype": "~1.8",
  4136. "symfony/polyfill-mbstring": "~1.8"
  4137. },
  4138. "type": "library",
  4139. "autoload": {
  4140. "psr-4": {
  4141. "Symfony\\Component\\Filesystem\\": ""
  4142. },
  4143. "exclude-from-classmap": [
  4144. "/Tests/"
  4145. ]
  4146. },
  4147. "notification-url": "https://packagist.org/downloads/",
  4148. "license": [
  4149. "MIT"
  4150. ],
  4151. "authors": [
  4152. {
  4153. "name": "Fabien Potencier",
  4154. "email": "fabien@symfony.com"
  4155. },
  4156. {
  4157. "name": "Symfony Community",
  4158. "homepage": "https://symfony.com/contributors"
  4159. }
  4160. ],
  4161. "description": "Provides basic utilities for the filesystem",
  4162. "homepage": "https://symfony.com",
  4163. "support": {
  4164. "source": "https://github.com/symfony/filesystem/tree/v6.2.7"
  4165. },
  4166. "funding": [
  4167. {
  4168. "url": "https://symfony.com/sponsor",
  4169. "type": "custom"
  4170. },
  4171. {
  4172. "url": "https://github.com/fabpot",
  4173. "type": "github"
  4174. },
  4175. {
  4176. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4177. "type": "tidelift"
  4178. }
  4179. ],
  4180. "time": "2023-02-14T08:44:56+00:00"
  4181. },
  4182. {
  4183. "name": "symfony/finder",
  4184. "version": "v6.2.7",
  4185. "source": {
  4186. "type": "git",
  4187. "url": "https://github.com/symfony/finder.git",
  4188. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb"
  4189. },
  4190. "dist": {
  4191. "type": "zip",
  4192. "url": "https://api.github.com/repos/symfony/finder/zipball/20808dc6631aecafbe67c186af5dcb370be3a0eb",
  4193. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb",
  4194. "shasum": ""
  4195. },
  4196. "require": {
  4197. "php": ">=8.1"
  4198. },
  4199. "require-dev": {
  4200. "symfony/filesystem": "^6.0"
  4201. },
  4202. "type": "library",
  4203. "autoload": {
  4204. "psr-4": {
  4205. "Symfony\\Component\\Finder\\": ""
  4206. },
  4207. "exclude-from-classmap": [
  4208. "/Tests/"
  4209. ]
  4210. },
  4211. "notification-url": "https://packagist.org/downloads/",
  4212. "license": [
  4213. "MIT"
  4214. ],
  4215. "authors": [
  4216. {
  4217. "name": "Fabien Potencier",
  4218. "email": "fabien@symfony.com"
  4219. },
  4220. {
  4221. "name": "Symfony Community",
  4222. "homepage": "https://symfony.com/contributors"
  4223. }
  4224. ],
  4225. "description": "Finds files and directories via an intuitive fluent interface",
  4226. "homepage": "https://symfony.com",
  4227. "support": {
  4228. "source": "https://github.com/symfony/finder/tree/v6.2.7"
  4229. },
  4230. "funding": [
  4231. {
  4232. "url": "https://symfony.com/sponsor",
  4233. "type": "custom"
  4234. },
  4235. {
  4236. "url": "https://github.com/fabpot",
  4237. "type": "github"
  4238. },
  4239. {
  4240. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4241. "type": "tidelift"
  4242. }
  4243. ],
  4244. "time": "2023-02-16T09:57:23+00:00"
  4245. },
  4246. {
  4247. "name": "symfony/flex",
  4248. "version": "v2.2.5",
  4249. "source": {
  4250. "type": "git",
  4251. "url": "https://github.com/symfony/flex.git",
  4252. "reference": "2ff8465e7172790a47ab3c129f2b514eb2d8a286"
  4253. },
  4254. "dist": {
  4255. "type": "zip",
  4256. "url": "https://api.github.com/repos/symfony/flex/zipball/2ff8465e7172790a47ab3c129f2b514eb2d8a286",
  4257. "reference": "2ff8465e7172790a47ab3c129f2b514eb2d8a286",
  4258. "shasum": ""
  4259. },
  4260. "require": {
  4261. "composer-plugin-api": "^2.1",
  4262. "php": ">=8.0"
  4263. },
  4264. "require-dev": {
  4265. "composer/composer": "^2.1",
  4266. "symfony/dotenv": "^5.4|^6.0",
  4267. "symfony/filesystem": "^5.4|^6.0",
  4268. "symfony/phpunit-bridge": "^5.4|^6.0",
  4269. "symfony/process": "^5.4|^6.0"
  4270. },
  4271. "type": "composer-plugin",
  4272. "extra": {
  4273. "class": "Symfony\\Flex\\Flex"
  4274. },
  4275. "autoload": {
  4276. "psr-4": {
  4277. "Symfony\\Flex\\": "src"
  4278. }
  4279. },
  4280. "notification-url": "https://packagist.org/downloads/",
  4281. "license": [
  4282. "MIT"
  4283. ],
  4284. "authors": [
  4285. {
  4286. "name": "Fabien Potencier",
  4287. "email": "fabien.potencier@gmail.com"
  4288. }
  4289. ],
  4290. "description": "Composer plugin for Symfony",
  4291. "support": {
  4292. "issues": "https://github.com/symfony/flex/issues",
  4293. "source": "https://github.com/symfony/flex/tree/v2.2.5"
  4294. },
  4295. "funding": [
  4296. {
  4297. "url": "https://symfony.com/sponsor",
  4298. "type": "custom"
  4299. },
  4300. {
  4301. "url": "https://github.com/fabpot",
  4302. "type": "github"
  4303. },
  4304. {
  4305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4306. "type": "tidelift"
  4307. }
  4308. ],
  4309. "time": "2023-02-18T08:03:15+00:00"
  4310. },
  4311. {
  4312. "name": "symfony/form",
  4313. "version": "v6.2.8",
  4314. "source": {
  4315. "type": "git",
  4316. "url": "https://github.com/symfony/form.git",
  4317. "reference": "751efa84f868337c63e29560c02cff7ae27d874b"
  4318. },
  4319. "dist": {
  4320. "type": "zip",
  4321. "url": "https://api.github.com/repos/symfony/form/zipball/751efa84f868337c63e29560c02cff7ae27d874b",
  4322. "reference": "751efa84f868337c63e29560c02cff7ae27d874b",
  4323. "shasum": ""
  4324. },
  4325. "require": {
  4326. "php": ">=8.1",
  4327. "symfony/deprecation-contracts": "^2.1|^3",
  4328. "symfony/event-dispatcher": "^5.4|^6.0",
  4329. "symfony/options-resolver": "^5.4|^6.0",
  4330. "symfony/polyfill-ctype": "~1.8",
  4331. "symfony/polyfill-intl-icu": "^1.21",
  4332. "symfony/polyfill-mbstring": "~1.0",
  4333. "symfony/property-access": "^5.4|^6.0",
  4334. "symfony/service-contracts": "^1.1|^2|^3"
  4335. },
  4336. "conflict": {
  4337. "phpunit/phpunit": "<5.4.3",
  4338. "symfony/console": "<5.4",
  4339. "symfony/dependency-injection": "<5.4",
  4340. "symfony/doctrine-bridge": "<5.4.21|>=6,<6.2.7",
  4341. "symfony/error-handler": "<5.4",
  4342. "symfony/framework-bundle": "<5.4",
  4343. "symfony/http-kernel": "<5.4",
  4344. "symfony/translation": "<5.4",
  4345. "symfony/translation-contracts": "<1.1.7",
  4346. "symfony/twig-bridge": "<5.4.21|>=6,<6.2.7"
  4347. },
  4348. "require-dev": {
  4349. "doctrine/collections": "^1.0|^2.0",
  4350. "symfony/config": "^5.4|^6.0",
  4351. "symfony/console": "^5.4|^6.0",
  4352. "symfony/dependency-injection": "^5.4|^6.0",
  4353. "symfony/expression-language": "^5.4|^6.0",
  4354. "symfony/html-sanitizer": "^6.1",
  4355. "symfony/http-foundation": "^5.4|^6.0",
  4356. "symfony/http-kernel": "^5.4|^6.0",
  4357. "symfony/intl": "^5.4|^6.0",
  4358. "symfony/security-core": "^6.2",
  4359. "symfony/security-csrf": "^5.4|^6.0",
  4360. "symfony/translation": "^5.4|^6.0",
  4361. "symfony/uid": "^5.4|^6.0",
  4362. "symfony/validator": "^5.4|^6.0",
  4363. "symfony/var-dumper": "^5.4|^6.0"
  4364. },
  4365. "suggest": {
  4366. "symfony/security-core": "For hashing users passwords.",
  4367. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  4368. "symfony/twig-bridge": "For templating with Twig.",
  4369. "symfony/validator": "For form validation."
  4370. },
  4371. "type": "library",
  4372. "autoload": {
  4373. "psr-4": {
  4374. "Symfony\\Component\\Form\\": ""
  4375. },
  4376. "exclude-from-classmap": [
  4377. "/Tests/"
  4378. ]
  4379. },
  4380. "notification-url": "https://packagist.org/downloads/",
  4381. "license": [
  4382. "MIT"
  4383. ],
  4384. "authors": [
  4385. {
  4386. "name": "Fabien Potencier",
  4387. "email": "fabien@symfony.com"
  4388. },
  4389. {
  4390. "name": "Symfony Community",
  4391. "homepage": "https://symfony.com/contributors"
  4392. }
  4393. ],
  4394. "description": "Allows to easily create, process and reuse HTML forms",
  4395. "homepage": "https://symfony.com",
  4396. "support": {
  4397. "source": "https://github.com/symfony/form/tree/v6.2.8"
  4398. },
  4399. "funding": [
  4400. {
  4401. "url": "https://symfony.com/sponsor",
  4402. "type": "custom"
  4403. },
  4404. {
  4405. "url": "https://github.com/fabpot",
  4406. "type": "github"
  4407. },
  4408. {
  4409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4410. "type": "tidelift"
  4411. }
  4412. ],
  4413. "time": "2023-03-31T11:20:06+00:00"
  4414. },
  4415. {
  4416. "name": "symfony/framework-bundle",
  4417. "version": "v6.2.9",
  4418. "source": {
  4419. "type": "git",
  4420. "url": "https://github.com/symfony/framework-bundle.git",
  4421. "reference": "df1899b6e9e52fc495daad6b4e307801860a66da"
  4422. },
  4423. "dist": {
  4424. "type": "zip",
  4425. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/df1899b6e9e52fc495daad6b4e307801860a66da",
  4426. "reference": "df1899b6e9e52fc495daad6b4e307801860a66da",
  4427. "shasum": ""
  4428. },
  4429. "require": {
  4430. "composer-runtime-api": ">=2.1",
  4431. "ext-xml": "*",
  4432. "php": ">=8.1",
  4433. "symfony/cache": "^5.4|^6.0",
  4434. "symfony/config": "^6.1",
  4435. "symfony/dependency-injection": "^6.2.8",
  4436. "symfony/deprecation-contracts": "^2.1|^3",
  4437. "symfony/error-handler": "^6.1",
  4438. "symfony/event-dispatcher": "^5.4|^6.0",
  4439. "symfony/filesystem": "^5.4|^6.0",
  4440. "symfony/finder": "^5.4|^6.0",
  4441. "symfony/http-foundation": "^6.2",
  4442. "symfony/http-kernel": "^6.2.1",
  4443. "symfony/polyfill-mbstring": "~1.0",
  4444. "symfony/routing": "^5.4|^6.0"
  4445. },
  4446. "conflict": {
  4447. "doctrine/annotations": "<1.13.1",
  4448. "doctrine/persistence": "<1.3",
  4449. "phpdocumentor/reflection-docblock": "<3.2.2",
  4450. "phpdocumentor/type-resolver": "<1.4.0",
  4451. "phpunit/phpunit": "<5.4.3",
  4452. "symfony/asset": "<5.4",
  4453. "symfony/console": "<5.4",
  4454. "symfony/dom-crawler": "<5.4",
  4455. "symfony/dotenv": "<5.4",
  4456. "symfony/form": "<5.4",
  4457. "symfony/http-client": "<5.4",
  4458. "symfony/lock": "<5.4",
  4459. "symfony/mailer": "<5.4",
  4460. "symfony/messenger": "<6.2",
  4461. "symfony/mime": "<6.2",
  4462. "symfony/property-access": "<5.4",
  4463. "symfony/property-info": "<5.4",
  4464. "symfony/security-core": "<5.4",
  4465. "symfony/security-csrf": "<5.4",
  4466. "symfony/serializer": "<6.1",
  4467. "symfony/stopwatch": "<5.4",
  4468. "symfony/translation": "<6.2.8",
  4469. "symfony/twig-bridge": "<5.4",
  4470. "symfony/twig-bundle": "<5.4",
  4471. "symfony/validator": "<5.4",
  4472. "symfony/web-profiler-bundle": "<5.4",
  4473. "symfony/workflow": "<5.4"
  4474. },
  4475. "require-dev": {
  4476. "doctrine/annotations": "^1.13.1|^2",
  4477. "doctrine/persistence": "^1.3|^2|^3",
  4478. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4479. "symfony/asset": "^5.4|^6.0",
  4480. "symfony/browser-kit": "^5.4|^6.0",
  4481. "symfony/console": "^5.4.9|^6.0.9",
  4482. "symfony/css-selector": "^5.4|^6.0",
  4483. "symfony/dom-crawler": "^5.4|^6.0",
  4484. "symfony/dotenv": "^5.4|^6.0",
  4485. "symfony/expression-language": "^5.4|^6.0",
  4486. "symfony/form": "^5.4|^6.0",
  4487. "symfony/html-sanitizer": "^6.1",
  4488. "symfony/http-client": "^5.4|^6.0",
  4489. "symfony/lock": "^5.4|^6.0",
  4490. "symfony/mailer": "^5.4|^6.0",
  4491. "symfony/messenger": "^6.2",
  4492. "symfony/mime": "^6.2",
  4493. "symfony/notifier": "^5.4|^6.0",
  4494. "symfony/polyfill-intl-icu": "~1.0",
  4495. "symfony/process": "^5.4|^6.0",
  4496. "symfony/property-info": "^5.4|^6.0",
  4497. "symfony/rate-limiter": "^5.4|^6.0",
  4498. "symfony/security-bundle": "^5.4|^6.0",
  4499. "symfony/semaphore": "^5.4|^6.0",
  4500. "symfony/serializer": "^6.1",
  4501. "symfony/stopwatch": "^5.4|^6.0",
  4502. "symfony/string": "^5.4|^6.0",
  4503. "symfony/translation": "^6.2.8",
  4504. "symfony/twig-bundle": "^5.4|^6.0",
  4505. "symfony/uid": "^5.4|^6.0",
  4506. "symfony/validator": "^5.4|^6.0",
  4507. "symfony/web-link": "^5.4|^6.0",
  4508. "symfony/workflow": "^5.4|^6.0",
  4509. "symfony/yaml": "^5.4|^6.0",
  4510. "twig/twig": "^2.10|^3.0"
  4511. },
  4512. "suggest": {
  4513. "ext-apcu": "For best performance of the system caches",
  4514. "symfony/console": "For using the console commands",
  4515. "symfony/form": "For using forms",
  4516. "symfony/property-info": "For using the property_info service",
  4517. "symfony/serializer": "For using the serializer service",
  4518. "symfony/validator": "For using validation",
  4519. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  4520. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  4521. },
  4522. "type": "symfony-bundle",
  4523. "autoload": {
  4524. "psr-4": {
  4525. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4526. },
  4527. "exclude-from-classmap": [
  4528. "/Tests/"
  4529. ]
  4530. },
  4531. "notification-url": "https://packagist.org/downloads/",
  4532. "license": [
  4533. "MIT"
  4534. ],
  4535. "authors": [
  4536. {
  4537. "name": "Fabien Potencier",
  4538. "email": "fabien@symfony.com"
  4539. },
  4540. {
  4541. "name": "Symfony Community",
  4542. "homepage": "https://symfony.com/contributors"
  4543. }
  4544. ],
  4545. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4546. "homepage": "https://symfony.com",
  4547. "support": {
  4548. "source": "https://github.com/symfony/framework-bundle/tree/v6.2.9"
  4549. },
  4550. "funding": [
  4551. {
  4552. "url": "https://symfony.com/sponsor",
  4553. "type": "custom"
  4554. },
  4555. {
  4556. "url": "https://github.com/fabpot",
  4557. "type": "github"
  4558. },
  4559. {
  4560. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4561. "type": "tidelift"
  4562. }
  4563. ],
  4564. "time": "2023-04-01T11:12:43+00:00"
  4565. },
  4566. {
  4567. "name": "symfony/html-sanitizer",
  4568. "version": "v6.2.7",
  4569. "source": {
  4570. "type": "git",
  4571. "url": "https://github.com/symfony/html-sanitizer.git",
  4572. "reference": "211e36bbb20a5e5db2b940399ab1d2b421a08068"
  4573. },
  4574. "dist": {
  4575. "type": "zip",
  4576. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/211e36bbb20a5e5db2b940399ab1d2b421a08068",
  4577. "reference": "211e36bbb20a5e5db2b940399ab1d2b421a08068",
  4578. "shasum": ""
  4579. },
  4580. "require": {
  4581. "ext-dom": "*",
  4582. "league/uri": "^6.5",
  4583. "masterminds/html5": "^2.7.2",
  4584. "php": ">=8.1"
  4585. },
  4586. "type": "library",
  4587. "autoload": {
  4588. "psr-4": {
  4589. "Symfony\\Component\\HtmlSanitizer\\": ""
  4590. },
  4591. "exclude-from-classmap": [
  4592. "/Tests/"
  4593. ]
  4594. },
  4595. "notification-url": "https://packagist.org/downloads/",
  4596. "license": [
  4597. "MIT"
  4598. ],
  4599. "authors": [
  4600. {
  4601. "name": "Titouan Galopin",
  4602. "email": "galopintitouan@gmail.com"
  4603. },
  4604. {
  4605. "name": "Symfony Community",
  4606. "homepage": "https://symfony.com/contributors"
  4607. }
  4608. ],
  4609. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  4610. "homepage": "https://symfony.com",
  4611. "keywords": [
  4612. "Purifier",
  4613. "html",
  4614. "sanitizer"
  4615. ],
  4616. "support": {
  4617. "source": "https://github.com/symfony/html-sanitizer/tree/v6.2.7"
  4618. },
  4619. "funding": [
  4620. {
  4621. "url": "https://symfony.com/sponsor",
  4622. "type": "custom"
  4623. },
  4624. {
  4625. "url": "https://github.com/fabpot",
  4626. "type": "github"
  4627. },
  4628. {
  4629. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4630. "type": "tidelift"
  4631. }
  4632. ],
  4633. "time": "2023-02-14T08:44:56+00:00"
  4634. },
  4635. {
  4636. "name": "symfony/http-client",
  4637. "version": "v6.2.9",
  4638. "source": {
  4639. "type": "git",
  4640. "url": "https://github.com/symfony/http-client.git",
  4641. "reference": "7daf5d24c21a683164688b95bb73b7a4bd3b32fc"
  4642. },
  4643. "dist": {
  4644. "type": "zip",
  4645. "url": "https://api.github.com/repos/symfony/http-client/zipball/7daf5d24c21a683164688b95bb73b7a4bd3b32fc",
  4646. "reference": "7daf5d24c21a683164688b95bb73b7a4bd3b32fc",
  4647. "shasum": ""
  4648. },
  4649. "require": {
  4650. "php": ">=8.1",
  4651. "psr/log": "^1|^2|^3",
  4652. "symfony/deprecation-contracts": "^2.1|^3",
  4653. "symfony/http-client-contracts": "^3",
  4654. "symfony/service-contracts": "^1.0|^2|^3"
  4655. },
  4656. "provide": {
  4657. "php-http/async-client-implementation": "*",
  4658. "php-http/client-implementation": "*",
  4659. "psr/http-client-implementation": "1.0",
  4660. "symfony/http-client-implementation": "3.0"
  4661. },
  4662. "require-dev": {
  4663. "amphp/amp": "^2.5",
  4664. "amphp/http-client": "^4.2.1",
  4665. "amphp/http-tunnel": "^1.0",
  4666. "amphp/socket": "^1.1",
  4667. "guzzlehttp/promises": "^1.4",
  4668. "nyholm/psr7": "^1.0",
  4669. "php-http/httplug": "^1.0|^2.0",
  4670. "psr/http-client": "^1.0",
  4671. "symfony/dependency-injection": "^5.4|^6.0",
  4672. "symfony/http-kernel": "^5.4|^6.0",
  4673. "symfony/process": "^5.4|^6.0",
  4674. "symfony/stopwatch": "^5.4|^6.0"
  4675. },
  4676. "type": "library",
  4677. "autoload": {
  4678. "psr-4": {
  4679. "Symfony\\Component\\HttpClient\\": ""
  4680. },
  4681. "exclude-from-classmap": [
  4682. "/Tests/"
  4683. ]
  4684. },
  4685. "notification-url": "https://packagist.org/downloads/",
  4686. "license": [
  4687. "MIT"
  4688. ],
  4689. "authors": [
  4690. {
  4691. "name": "Nicolas Grekas",
  4692. "email": "p@tchwork.com"
  4693. },
  4694. {
  4695. "name": "Symfony Community",
  4696. "homepage": "https://symfony.com/contributors"
  4697. }
  4698. ],
  4699. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4700. "homepage": "https://symfony.com",
  4701. "keywords": [
  4702. "http"
  4703. ],
  4704. "support": {
  4705. "source": "https://github.com/symfony/http-client/tree/v6.2.9"
  4706. },
  4707. "funding": [
  4708. {
  4709. "url": "https://symfony.com/sponsor",
  4710. "type": "custom"
  4711. },
  4712. {
  4713. "url": "https://github.com/fabpot",
  4714. "type": "github"
  4715. },
  4716. {
  4717. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4718. "type": "tidelift"
  4719. }
  4720. ],
  4721. "time": "2023-04-11T16:03:19+00:00"
  4722. },
  4723. {
  4724. "name": "symfony/http-client-contracts",
  4725. "version": "v3.2.1",
  4726. "source": {
  4727. "type": "git",
  4728. "url": "https://github.com/symfony/http-client-contracts.git",
  4729. "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b"
  4730. },
  4731. "dist": {
  4732. "type": "zip",
  4733. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
  4734. "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
  4735. "shasum": ""
  4736. },
  4737. "require": {
  4738. "php": ">=8.1"
  4739. },
  4740. "suggest": {
  4741. "symfony/http-client-implementation": ""
  4742. },
  4743. "type": "library",
  4744. "extra": {
  4745. "branch-alias": {
  4746. "dev-main": "3.3-dev"
  4747. },
  4748. "thanks": {
  4749. "name": "symfony/contracts",
  4750. "url": "https://github.com/symfony/contracts"
  4751. }
  4752. },
  4753. "autoload": {
  4754. "psr-4": {
  4755. "Symfony\\Contracts\\HttpClient\\": ""
  4756. },
  4757. "exclude-from-classmap": [
  4758. "/Test/"
  4759. ]
  4760. },
  4761. "notification-url": "https://packagist.org/downloads/",
  4762. "license": [
  4763. "MIT"
  4764. ],
  4765. "authors": [
  4766. {
  4767. "name": "Nicolas Grekas",
  4768. "email": "p@tchwork.com"
  4769. },
  4770. {
  4771. "name": "Symfony Community",
  4772. "homepage": "https://symfony.com/contributors"
  4773. }
  4774. ],
  4775. "description": "Generic abstractions related to HTTP clients",
  4776. "homepage": "https://symfony.com",
  4777. "keywords": [
  4778. "abstractions",
  4779. "contracts",
  4780. "decoupling",
  4781. "interfaces",
  4782. "interoperability",
  4783. "standards"
  4784. ],
  4785. "support": {
  4786. "source": "https://github.com/symfony/http-client-contracts/tree/v3.2.1"
  4787. },
  4788. "funding": [
  4789. {
  4790. "url": "https://symfony.com/sponsor",
  4791. "type": "custom"
  4792. },
  4793. {
  4794. "url": "https://github.com/fabpot",
  4795. "type": "github"
  4796. },
  4797. {
  4798. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4799. "type": "tidelift"
  4800. }
  4801. ],
  4802. "time": "2023-03-01T10:32:47+00:00"
  4803. },
  4804. {
  4805. "name": "symfony/http-foundation",
  4806. "version": "v6.2.8",
  4807. "source": {
  4808. "type": "git",
  4809. "url": "https://github.com/symfony/http-foundation.git",
  4810. "reference": "511a524affeefc191939348823ac75e9921c2112"
  4811. },
  4812. "dist": {
  4813. "type": "zip",
  4814. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/511a524affeefc191939348823ac75e9921c2112",
  4815. "reference": "511a524affeefc191939348823ac75e9921c2112",
  4816. "shasum": ""
  4817. },
  4818. "require": {
  4819. "php": ">=8.1",
  4820. "symfony/deprecation-contracts": "^2.1|^3",
  4821. "symfony/polyfill-mbstring": "~1.1"
  4822. },
  4823. "conflict": {
  4824. "symfony/cache": "<6.2"
  4825. },
  4826. "require-dev": {
  4827. "predis/predis": "~1.0",
  4828. "symfony/cache": "^5.4|^6.0",
  4829. "symfony/dependency-injection": "^5.4|^6.0",
  4830. "symfony/expression-language": "^5.4|^6.0",
  4831. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  4832. "symfony/mime": "^5.4|^6.0",
  4833. "symfony/rate-limiter": "^5.2|^6.0"
  4834. },
  4835. "suggest": {
  4836. "symfony/mime": "To use the file extension guesser"
  4837. },
  4838. "type": "library",
  4839. "autoload": {
  4840. "psr-4": {
  4841. "Symfony\\Component\\HttpFoundation\\": ""
  4842. },
  4843. "exclude-from-classmap": [
  4844. "/Tests/"
  4845. ]
  4846. },
  4847. "notification-url": "https://packagist.org/downloads/",
  4848. "license": [
  4849. "MIT"
  4850. ],
  4851. "authors": [
  4852. {
  4853. "name": "Fabien Potencier",
  4854. "email": "fabien@symfony.com"
  4855. },
  4856. {
  4857. "name": "Symfony Community",
  4858. "homepage": "https://symfony.com/contributors"
  4859. }
  4860. ],
  4861. "description": "Defines an object-oriented layer for the HTTP specification",
  4862. "homepage": "https://symfony.com",
  4863. "support": {
  4864. "source": "https://github.com/symfony/http-foundation/tree/v6.2.8"
  4865. },
  4866. "funding": [
  4867. {
  4868. "url": "https://symfony.com/sponsor",
  4869. "type": "custom"
  4870. },
  4871. {
  4872. "url": "https://github.com/fabpot",
  4873. "type": "github"
  4874. },
  4875. {
  4876. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4877. "type": "tidelift"
  4878. }
  4879. ],
  4880. "time": "2023-03-29T21:42:15+00:00"
  4881. },
  4882. {
  4883. "name": "symfony/http-kernel",
  4884. "version": "v6.2.9",
  4885. "source": {
  4886. "type": "git",
  4887. "url": "https://github.com/symfony/http-kernel.git",
  4888. "reference": "02246510cf7031726f7237138d61b796b95799b3"
  4889. },
  4890. "dist": {
  4891. "type": "zip",
  4892. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/02246510cf7031726f7237138d61b796b95799b3",
  4893. "reference": "02246510cf7031726f7237138d61b796b95799b3",
  4894. "shasum": ""
  4895. },
  4896. "require": {
  4897. "php": ">=8.1",
  4898. "psr/log": "^1|^2|^3",
  4899. "symfony/deprecation-contracts": "^2.1|^3",
  4900. "symfony/error-handler": "^6.1",
  4901. "symfony/event-dispatcher": "^5.4|^6.0",
  4902. "symfony/http-foundation": "^5.4.21|^6.2.7",
  4903. "symfony/polyfill-ctype": "^1.8"
  4904. },
  4905. "conflict": {
  4906. "symfony/browser-kit": "<5.4",
  4907. "symfony/cache": "<5.4",
  4908. "symfony/config": "<6.1",
  4909. "symfony/console": "<5.4",
  4910. "symfony/dependency-injection": "<6.2",
  4911. "symfony/doctrine-bridge": "<5.4",
  4912. "symfony/form": "<5.4",
  4913. "symfony/http-client": "<5.4",
  4914. "symfony/mailer": "<5.4",
  4915. "symfony/messenger": "<5.4",
  4916. "symfony/translation": "<5.4",
  4917. "symfony/twig-bridge": "<5.4",
  4918. "symfony/validator": "<5.4",
  4919. "twig/twig": "<2.13"
  4920. },
  4921. "provide": {
  4922. "psr/log-implementation": "1.0|2.0|3.0"
  4923. },
  4924. "require-dev": {
  4925. "psr/cache": "^1.0|^2.0|^3.0",
  4926. "symfony/browser-kit": "^5.4|^6.0",
  4927. "symfony/config": "^6.1",
  4928. "symfony/console": "^5.4|^6.0",
  4929. "symfony/css-selector": "^5.4|^6.0",
  4930. "symfony/dependency-injection": "^6.2",
  4931. "symfony/dom-crawler": "^5.4|^6.0",
  4932. "symfony/expression-language": "^5.4|^6.0",
  4933. "symfony/finder": "^5.4|^6.0",
  4934. "symfony/http-client-contracts": "^1.1|^2|^3",
  4935. "symfony/process": "^5.4|^6.0",
  4936. "symfony/routing": "^5.4|^6.0",
  4937. "symfony/stopwatch": "^5.4|^6.0",
  4938. "symfony/translation": "^5.4|^6.0",
  4939. "symfony/translation-contracts": "^1.1|^2|^3",
  4940. "symfony/uid": "^5.4|^6.0",
  4941. "twig/twig": "^2.13|^3.0.4"
  4942. },
  4943. "suggest": {
  4944. "symfony/browser-kit": "",
  4945. "symfony/config": "",
  4946. "symfony/console": "",
  4947. "symfony/dependency-injection": ""
  4948. },
  4949. "type": "library",
  4950. "autoload": {
  4951. "psr-4": {
  4952. "Symfony\\Component\\HttpKernel\\": ""
  4953. },
  4954. "exclude-from-classmap": [
  4955. "/Tests/"
  4956. ]
  4957. },
  4958. "notification-url": "https://packagist.org/downloads/",
  4959. "license": [
  4960. "MIT"
  4961. ],
  4962. "authors": [
  4963. {
  4964. "name": "Fabien Potencier",
  4965. "email": "fabien@symfony.com"
  4966. },
  4967. {
  4968. "name": "Symfony Community",
  4969. "homepage": "https://symfony.com/contributors"
  4970. }
  4971. ],
  4972. "description": "Provides a structured process for converting a Request into a Response",
  4973. "homepage": "https://symfony.com",
  4974. "support": {
  4975. "source": "https://github.com/symfony/http-kernel/tree/v6.2.9"
  4976. },
  4977. "funding": [
  4978. {
  4979. "url": "https://symfony.com/sponsor",
  4980. "type": "custom"
  4981. },
  4982. {
  4983. "url": "https://github.com/fabpot",
  4984. "type": "github"
  4985. },
  4986. {
  4987. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4988. "type": "tidelift"
  4989. }
  4990. ],
  4991. "time": "2023-04-13T16:41:43+00:00"
  4992. },
  4993. {
  4994. "name": "symfony/mailer",
  4995. "version": "v6.2.8",
  4996. "source": {
  4997. "type": "git",
  4998. "url": "https://github.com/symfony/mailer.git",
  4999. "reference": "bfcfa015c67e19c6fdb7ca6fe70700af1e740a17"
  5000. },
  5001. "dist": {
  5002. "type": "zip",
  5003. "url": "https://api.github.com/repos/symfony/mailer/zipball/bfcfa015c67e19c6fdb7ca6fe70700af1e740a17",
  5004. "reference": "bfcfa015c67e19c6fdb7ca6fe70700af1e740a17",
  5005. "shasum": ""
  5006. },
  5007. "require": {
  5008. "egulias/email-validator": "^2.1.10|^3|^4",
  5009. "php": ">=8.1",
  5010. "psr/event-dispatcher": "^1",
  5011. "psr/log": "^1|^2|^3",
  5012. "symfony/event-dispatcher": "^5.4|^6.0",
  5013. "symfony/mime": "^6.2",
  5014. "symfony/service-contracts": "^1.1|^2|^3"
  5015. },
  5016. "conflict": {
  5017. "symfony/http-kernel": "<5.4",
  5018. "symfony/messenger": "<6.2",
  5019. "symfony/mime": "<6.2",
  5020. "symfony/twig-bridge": "<6.2.1"
  5021. },
  5022. "require-dev": {
  5023. "symfony/console": "^5.4|^6.0",
  5024. "symfony/http-client": "^5.4|^6.0",
  5025. "symfony/messenger": "^6.2",
  5026. "symfony/twig-bridge": "^6.2"
  5027. },
  5028. "type": "library",
  5029. "autoload": {
  5030. "psr-4": {
  5031. "Symfony\\Component\\Mailer\\": ""
  5032. },
  5033. "exclude-from-classmap": [
  5034. "/Tests/"
  5035. ]
  5036. },
  5037. "notification-url": "https://packagist.org/downloads/",
  5038. "license": [
  5039. "MIT"
  5040. ],
  5041. "authors": [
  5042. {
  5043. "name": "Fabien Potencier",
  5044. "email": "fabien@symfony.com"
  5045. },
  5046. {
  5047. "name": "Symfony Community",
  5048. "homepage": "https://symfony.com/contributors"
  5049. }
  5050. ],
  5051. "description": "Helps sending emails",
  5052. "homepage": "https://symfony.com",
  5053. "support": {
  5054. "source": "https://github.com/symfony/mailer/tree/v6.2.8"
  5055. },
  5056. "funding": [
  5057. {
  5058. "url": "https://symfony.com/sponsor",
  5059. "type": "custom"
  5060. },
  5061. {
  5062. "url": "https://github.com/fabpot",
  5063. "type": "github"
  5064. },
  5065. {
  5066. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5067. "type": "tidelift"
  5068. }
  5069. ],
  5070. "time": "2023-03-14T15:00:05+00:00"
  5071. },
  5072. {
  5073. "name": "symfony/mime",
  5074. "version": "v6.2.7",
  5075. "source": {
  5076. "type": "git",
  5077. "url": "https://github.com/symfony/mime.git",
  5078. "reference": "62e341f80699badb0ad70b31149c8df89a2d778e"
  5079. },
  5080. "dist": {
  5081. "type": "zip",
  5082. "url": "https://api.github.com/repos/symfony/mime/zipball/62e341f80699badb0ad70b31149c8df89a2d778e",
  5083. "reference": "62e341f80699badb0ad70b31149c8df89a2d778e",
  5084. "shasum": ""
  5085. },
  5086. "require": {
  5087. "php": ">=8.1",
  5088. "symfony/polyfill-intl-idn": "^1.10",
  5089. "symfony/polyfill-mbstring": "^1.0"
  5090. },
  5091. "conflict": {
  5092. "egulias/email-validator": "~3.0.0",
  5093. "phpdocumentor/reflection-docblock": "<3.2.2",
  5094. "phpdocumentor/type-resolver": "<1.4.0",
  5095. "symfony/mailer": "<5.4",
  5096. "symfony/serializer": "<6.2"
  5097. },
  5098. "require-dev": {
  5099. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5100. "league/html-to-markdown": "^5.0",
  5101. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5102. "symfony/dependency-injection": "^5.4|^6.0",
  5103. "symfony/property-access": "^5.4|^6.0",
  5104. "symfony/property-info": "^5.4|^6.0",
  5105. "symfony/serializer": "^6.2"
  5106. },
  5107. "type": "library",
  5108. "autoload": {
  5109. "psr-4": {
  5110. "Symfony\\Component\\Mime\\": ""
  5111. },
  5112. "exclude-from-classmap": [
  5113. "/Tests/"
  5114. ]
  5115. },
  5116. "notification-url": "https://packagist.org/downloads/",
  5117. "license": [
  5118. "MIT"
  5119. ],
  5120. "authors": [
  5121. {
  5122. "name": "Fabien Potencier",
  5123. "email": "fabien@symfony.com"
  5124. },
  5125. {
  5126. "name": "Symfony Community",
  5127. "homepage": "https://symfony.com/contributors"
  5128. }
  5129. ],
  5130. "description": "Allows manipulating MIME messages",
  5131. "homepage": "https://symfony.com",
  5132. "keywords": [
  5133. "mime",
  5134. "mime-type"
  5135. ],
  5136. "support": {
  5137. "source": "https://github.com/symfony/mime/tree/v6.2.7"
  5138. },
  5139. "funding": [
  5140. {
  5141. "url": "https://symfony.com/sponsor",
  5142. "type": "custom"
  5143. },
  5144. {
  5145. "url": "https://github.com/fabpot",
  5146. "type": "github"
  5147. },
  5148. {
  5149. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5150. "type": "tidelift"
  5151. }
  5152. ],
  5153. "time": "2023-02-24T10:42:00+00:00"
  5154. },
  5155. {
  5156. "name": "symfony/monolog-bridge",
  5157. "version": "v6.2.8",
  5158. "source": {
  5159. "type": "git",
  5160. "url": "https://github.com/symfony/monolog-bridge.git",
  5161. "reference": "34700f2e5c7e9eae78f8e59fc02399dd8f110cae"
  5162. },
  5163. "dist": {
  5164. "type": "zip",
  5165. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/34700f2e5c7e9eae78f8e59fc02399dd8f110cae",
  5166. "reference": "34700f2e5c7e9eae78f8e59fc02399dd8f110cae",
  5167. "shasum": ""
  5168. },
  5169. "require": {
  5170. "monolog/monolog": "^1.25.1|^2|^3",
  5171. "php": ">=8.1",
  5172. "symfony/http-kernel": "^5.4|^6.0",
  5173. "symfony/service-contracts": "^1.1|^2|^3"
  5174. },
  5175. "conflict": {
  5176. "symfony/console": "<5.4",
  5177. "symfony/http-foundation": "<5.4",
  5178. "symfony/security-core": "<6.0"
  5179. },
  5180. "require-dev": {
  5181. "symfony/console": "^5.4|^6.0",
  5182. "symfony/http-client": "^5.4|^6.0",
  5183. "symfony/mailer": "^5.4|^6.0",
  5184. "symfony/messenger": "^5.4|^6.0",
  5185. "symfony/mime": "^5.4|^6.0",
  5186. "symfony/security-core": "^6.0",
  5187. "symfony/var-dumper": "^5.4|^6.0"
  5188. },
  5189. "suggest": {
  5190. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  5191. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  5192. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  5193. },
  5194. "type": "symfony-bridge",
  5195. "autoload": {
  5196. "psr-4": {
  5197. "Symfony\\Bridge\\Monolog\\": ""
  5198. },
  5199. "exclude-from-classmap": [
  5200. "/Tests/"
  5201. ]
  5202. },
  5203. "notification-url": "https://packagist.org/downloads/",
  5204. "license": [
  5205. "MIT"
  5206. ],
  5207. "authors": [
  5208. {
  5209. "name": "Fabien Potencier",
  5210. "email": "fabien@symfony.com"
  5211. },
  5212. {
  5213. "name": "Symfony Community",
  5214. "homepage": "https://symfony.com/contributors"
  5215. }
  5216. ],
  5217. "description": "Provides integration for Monolog with various Symfony components",
  5218. "homepage": "https://symfony.com",
  5219. "support": {
  5220. "source": "https://github.com/symfony/monolog-bridge/tree/v6.2.8"
  5221. },
  5222. "funding": [
  5223. {
  5224. "url": "https://symfony.com/sponsor",
  5225. "type": "custom"
  5226. },
  5227. {
  5228. "url": "https://github.com/fabpot",
  5229. "type": "github"
  5230. },
  5231. {
  5232. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5233. "type": "tidelift"
  5234. }
  5235. ],
  5236. "time": "2023-03-09T16:20:02+00:00"
  5237. },
  5238. {
  5239. "name": "symfony/monolog-bundle",
  5240. "version": "v3.8.0",
  5241. "source": {
  5242. "type": "git",
  5243. "url": "https://github.com/symfony/monolog-bundle.git",
  5244. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d"
  5245. },
  5246. "dist": {
  5247. "type": "zip",
  5248. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  5249. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  5250. "shasum": ""
  5251. },
  5252. "require": {
  5253. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  5254. "php": ">=7.1.3",
  5255. "symfony/config": "~4.4 || ^5.0 || ^6.0",
  5256. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  5257. "symfony/http-kernel": "~4.4 || ^5.0 || ^6.0",
  5258. "symfony/monolog-bridge": "~4.4 || ^5.0 || ^6.0"
  5259. },
  5260. "require-dev": {
  5261. "symfony/console": "~4.4 || ^5.0 || ^6.0",
  5262. "symfony/phpunit-bridge": "^5.2 || ^6.0",
  5263. "symfony/yaml": "~4.4 || ^5.0 || ^6.0"
  5264. },
  5265. "type": "symfony-bundle",
  5266. "extra": {
  5267. "branch-alias": {
  5268. "dev-master": "3.x-dev"
  5269. }
  5270. },
  5271. "autoload": {
  5272. "psr-4": {
  5273. "Symfony\\Bundle\\MonologBundle\\": ""
  5274. },
  5275. "exclude-from-classmap": [
  5276. "/Tests/"
  5277. ]
  5278. },
  5279. "notification-url": "https://packagist.org/downloads/",
  5280. "license": [
  5281. "MIT"
  5282. ],
  5283. "authors": [
  5284. {
  5285. "name": "Fabien Potencier",
  5286. "email": "fabien@symfony.com"
  5287. },
  5288. {
  5289. "name": "Symfony Community",
  5290. "homepage": "https://symfony.com/contributors"
  5291. }
  5292. ],
  5293. "description": "Symfony MonologBundle",
  5294. "homepage": "https://symfony.com",
  5295. "keywords": [
  5296. "log",
  5297. "logging"
  5298. ],
  5299. "support": {
  5300. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5301. "source": "https://github.com/symfony/monolog-bundle/tree/v3.8.0"
  5302. },
  5303. "funding": [
  5304. {
  5305. "url": "https://symfony.com/sponsor",
  5306. "type": "custom"
  5307. },
  5308. {
  5309. "url": "https://github.com/fabpot",
  5310. "type": "github"
  5311. },
  5312. {
  5313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5314. "type": "tidelift"
  5315. }
  5316. ],
  5317. "time": "2022-05-10T14:24:36+00:00"
  5318. },
  5319. {
  5320. "name": "symfony/options-resolver",
  5321. "version": "v6.2.7",
  5322. "source": {
  5323. "type": "git",
  5324. "url": "https://github.com/symfony/options-resolver.git",
  5325. "reference": "aa0e85b53bbb2b4951960efd61d295907eacd629"
  5326. },
  5327. "dist": {
  5328. "type": "zip",
  5329. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/aa0e85b53bbb2b4951960efd61d295907eacd629",
  5330. "reference": "aa0e85b53bbb2b4951960efd61d295907eacd629",
  5331. "shasum": ""
  5332. },
  5333. "require": {
  5334. "php": ">=8.1",
  5335. "symfony/deprecation-contracts": "^2.1|^3"
  5336. },
  5337. "type": "library",
  5338. "autoload": {
  5339. "psr-4": {
  5340. "Symfony\\Component\\OptionsResolver\\": ""
  5341. },
  5342. "exclude-from-classmap": [
  5343. "/Tests/"
  5344. ]
  5345. },
  5346. "notification-url": "https://packagist.org/downloads/",
  5347. "license": [
  5348. "MIT"
  5349. ],
  5350. "authors": [
  5351. {
  5352. "name": "Fabien Potencier",
  5353. "email": "fabien@symfony.com"
  5354. },
  5355. {
  5356. "name": "Symfony Community",
  5357. "homepage": "https://symfony.com/contributors"
  5358. }
  5359. ],
  5360. "description": "Provides an improved replacement for the array_replace PHP function",
  5361. "homepage": "https://symfony.com",
  5362. "keywords": [
  5363. "config",
  5364. "configuration",
  5365. "options"
  5366. ],
  5367. "support": {
  5368. "source": "https://github.com/symfony/options-resolver/tree/v6.2.7"
  5369. },
  5370. "funding": [
  5371. {
  5372. "url": "https://symfony.com/sponsor",
  5373. "type": "custom"
  5374. },
  5375. {
  5376. "url": "https://github.com/fabpot",
  5377. "type": "github"
  5378. },
  5379. {
  5380. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5381. "type": "tidelift"
  5382. }
  5383. ],
  5384. "time": "2023-02-14T08:44:56+00:00"
  5385. },
  5386. {
  5387. "name": "symfony/password-hasher",
  5388. "version": "v6.2.7",
  5389. "source": {
  5390. "type": "git",
  5391. "url": "https://github.com/symfony/password-hasher.git",
  5392. "reference": "67820d8570bf1c2c2cd87cb76d9d12a9d52ab808"
  5393. },
  5394. "dist": {
  5395. "type": "zip",
  5396. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/67820d8570bf1c2c2cd87cb76d9d12a9d52ab808",
  5397. "reference": "67820d8570bf1c2c2cd87cb76d9d12a9d52ab808",
  5398. "shasum": ""
  5399. },
  5400. "require": {
  5401. "php": ">=8.1"
  5402. },
  5403. "conflict": {
  5404. "symfony/security-core": "<5.4"
  5405. },
  5406. "require-dev": {
  5407. "symfony/console": "^5.4|^6.0",
  5408. "symfony/security-core": "^5.4|^6.0"
  5409. },
  5410. "type": "library",
  5411. "autoload": {
  5412. "psr-4": {
  5413. "Symfony\\Component\\PasswordHasher\\": ""
  5414. },
  5415. "exclude-from-classmap": [
  5416. "/Tests/"
  5417. ]
  5418. },
  5419. "notification-url": "https://packagist.org/downloads/",
  5420. "license": [
  5421. "MIT"
  5422. ],
  5423. "authors": [
  5424. {
  5425. "name": "Robin Chalas",
  5426. "email": "robin.chalas@gmail.com"
  5427. },
  5428. {
  5429. "name": "Symfony Community",
  5430. "homepage": "https://symfony.com/contributors"
  5431. }
  5432. ],
  5433. "description": "Provides password hashing utilities",
  5434. "homepage": "https://symfony.com",
  5435. "keywords": [
  5436. "hashing",
  5437. "password"
  5438. ],
  5439. "support": {
  5440. "source": "https://github.com/symfony/password-hasher/tree/v6.2.7"
  5441. },
  5442. "funding": [
  5443. {
  5444. "url": "https://symfony.com/sponsor",
  5445. "type": "custom"
  5446. },
  5447. {
  5448. "url": "https://github.com/fabpot",
  5449. "type": "github"
  5450. },
  5451. {
  5452. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5453. "type": "tidelift"
  5454. }
  5455. ],
  5456. "time": "2023-02-14T08:44:56+00:00"
  5457. },
  5458. {
  5459. "name": "symfony/polyfill-intl-grapheme",
  5460. "version": "v1.27.0",
  5461. "source": {
  5462. "type": "git",
  5463. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5464. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  5465. },
  5466. "dist": {
  5467. "type": "zip",
  5468. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  5469. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  5470. "shasum": ""
  5471. },
  5472. "require": {
  5473. "php": ">=7.1"
  5474. },
  5475. "suggest": {
  5476. "ext-intl": "For best performance"
  5477. },
  5478. "type": "library",
  5479. "extra": {
  5480. "branch-alias": {
  5481. "dev-main": "1.27-dev"
  5482. },
  5483. "thanks": {
  5484. "name": "symfony/polyfill",
  5485. "url": "https://github.com/symfony/polyfill"
  5486. }
  5487. },
  5488. "autoload": {
  5489. "files": [
  5490. "bootstrap.php"
  5491. ],
  5492. "psr-4": {
  5493. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5494. }
  5495. },
  5496. "notification-url": "https://packagist.org/downloads/",
  5497. "license": [
  5498. "MIT"
  5499. ],
  5500. "authors": [
  5501. {
  5502. "name": "Nicolas Grekas",
  5503. "email": "p@tchwork.com"
  5504. },
  5505. {
  5506. "name": "Symfony Community",
  5507. "homepage": "https://symfony.com/contributors"
  5508. }
  5509. ],
  5510. "description": "Symfony polyfill for intl's grapheme_* functions",
  5511. "homepage": "https://symfony.com",
  5512. "keywords": [
  5513. "compatibility",
  5514. "grapheme",
  5515. "intl",
  5516. "polyfill",
  5517. "portable",
  5518. "shim"
  5519. ],
  5520. "support": {
  5521. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  5522. },
  5523. "funding": [
  5524. {
  5525. "url": "https://symfony.com/sponsor",
  5526. "type": "custom"
  5527. },
  5528. {
  5529. "url": "https://github.com/fabpot",
  5530. "type": "github"
  5531. },
  5532. {
  5533. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5534. "type": "tidelift"
  5535. }
  5536. ],
  5537. "time": "2022-11-03T14:55:06+00:00"
  5538. },
  5539. {
  5540. "name": "symfony/polyfill-intl-icu",
  5541. "version": "v1.27.0",
  5542. "source": {
  5543. "type": "git",
  5544. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5545. "reference": "a3d9148e2c363588e05abbdd4ee4f971f0a5330c"
  5546. },
  5547. "dist": {
  5548. "type": "zip",
  5549. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/a3d9148e2c363588e05abbdd4ee4f971f0a5330c",
  5550. "reference": "a3d9148e2c363588e05abbdd4ee4f971f0a5330c",
  5551. "shasum": ""
  5552. },
  5553. "require": {
  5554. "php": ">=7.1"
  5555. },
  5556. "suggest": {
  5557. "ext-intl": "For best performance and support of other locales than \"en\""
  5558. },
  5559. "type": "library",
  5560. "extra": {
  5561. "branch-alias": {
  5562. "dev-main": "1.27-dev"
  5563. },
  5564. "thanks": {
  5565. "name": "symfony/polyfill",
  5566. "url": "https://github.com/symfony/polyfill"
  5567. }
  5568. },
  5569. "autoload": {
  5570. "files": [
  5571. "bootstrap.php"
  5572. ],
  5573. "psr-4": {
  5574. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5575. },
  5576. "classmap": [
  5577. "Resources/stubs"
  5578. ],
  5579. "exclude-from-classmap": [
  5580. "/Tests/"
  5581. ]
  5582. },
  5583. "notification-url": "https://packagist.org/downloads/",
  5584. "license": [
  5585. "MIT"
  5586. ],
  5587. "authors": [
  5588. {
  5589. "name": "Nicolas Grekas",
  5590. "email": "p@tchwork.com"
  5591. },
  5592. {
  5593. "name": "Symfony Community",
  5594. "homepage": "https://symfony.com/contributors"
  5595. }
  5596. ],
  5597. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5598. "homepage": "https://symfony.com",
  5599. "keywords": [
  5600. "compatibility",
  5601. "icu",
  5602. "intl",
  5603. "polyfill",
  5604. "portable",
  5605. "shim"
  5606. ],
  5607. "support": {
  5608. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.27.0"
  5609. },
  5610. "funding": [
  5611. {
  5612. "url": "https://symfony.com/sponsor",
  5613. "type": "custom"
  5614. },
  5615. {
  5616. "url": "https://github.com/fabpot",
  5617. "type": "github"
  5618. },
  5619. {
  5620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5621. "type": "tidelift"
  5622. }
  5623. ],
  5624. "time": "2022-11-03T14:55:06+00:00"
  5625. },
  5626. {
  5627. "name": "symfony/polyfill-intl-idn",
  5628. "version": "v1.27.0",
  5629. "source": {
  5630. "type": "git",
  5631. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5632. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  5633. },
  5634. "dist": {
  5635. "type": "zip",
  5636. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  5637. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  5638. "shasum": ""
  5639. },
  5640. "require": {
  5641. "php": ">=7.1",
  5642. "symfony/polyfill-intl-normalizer": "^1.10",
  5643. "symfony/polyfill-php72": "^1.10"
  5644. },
  5645. "suggest": {
  5646. "ext-intl": "For best performance"
  5647. },
  5648. "type": "library",
  5649. "extra": {
  5650. "branch-alias": {
  5651. "dev-main": "1.27-dev"
  5652. },
  5653. "thanks": {
  5654. "name": "symfony/polyfill",
  5655. "url": "https://github.com/symfony/polyfill"
  5656. }
  5657. },
  5658. "autoload": {
  5659. "files": [
  5660. "bootstrap.php"
  5661. ],
  5662. "psr-4": {
  5663. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5664. }
  5665. },
  5666. "notification-url": "https://packagist.org/downloads/",
  5667. "license": [
  5668. "MIT"
  5669. ],
  5670. "authors": [
  5671. {
  5672. "name": "Laurent Bassin",
  5673. "email": "laurent@bassin.info"
  5674. },
  5675. {
  5676. "name": "Trevor Rowbotham",
  5677. "email": "trevor.rowbotham@pm.me"
  5678. },
  5679. {
  5680. "name": "Symfony Community",
  5681. "homepage": "https://symfony.com/contributors"
  5682. }
  5683. ],
  5684. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5685. "homepage": "https://symfony.com",
  5686. "keywords": [
  5687. "compatibility",
  5688. "idn",
  5689. "intl",
  5690. "polyfill",
  5691. "portable",
  5692. "shim"
  5693. ],
  5694. "support": {
  5695. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  5696. },
  5697. "funding": [
  5698. {
  5699. "url": "https://symfony.com/sponsor",
  5700. "type": "custom"
  5701. },
  5702. {
  5703. "url": "https://github.com/fabpot",
  5704. "type": "github"
  5705. },
  5706. {
  5707. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5708. "type": "tidelift"
  5709. }
  5710. ],
  5711. "time": "2022-11-03T14:55:06+00:00"
  5712. },
  5713. {
  5714. "name": "symfony/polyfill-intl-normalizer",
  5715. "version": "v1.27.0",
  5716. "source": {
  5717. "type": "git",
  5718. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5719. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  5720. },
  5721. "dist": {
  5722. "type": "zip",
  5723. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5724. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5725. "shasum": ""
  5726. },
  5727. "require": {
  5728. "php": ">=7.1"
  5729. },
  5730. "suggest": {
  5731. "ext-intl": "For best performance"
  5732. },
  5733. "type": "library",
  5734. "extra": {
  5735. "branch-alias": {
  5736. "dev-main": "1.27-dev"
  5737. },
  5738. "thanks": {
  5739. "name": "symfony/polyfill",
  5740. "url": "https://github.com/symfony/polyfill"
  5741. }
  5742. },
  5743. "autoload": {
  5744. "files": [
  5745. "bootstrap.php"
  5746. ],
  5747. "psr-4": {
  5748. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5749. },
  5750. "classmap": [
  5751. "Resources/stubs"
  5752. ]
  5753. },
  5754. "notification-url": "https://packagist.org/downloads/",
  5755. "license": [
  5756. "MIT"
  5757. ],
  5758. "authors": [
  5759. {
  5760. "name": "Nicolas Grekas",
  5761. "email": "p@tchwork.com"
  5762. },
  5763. {
  5764. "name": "Symfony Community",
  5765. "homepage": "https://symfony.com/contributors"
  5766. }
  5767. ],
  5768. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5769. "homepage": "https://symfony.com",
  5770. "keywords": [
  5771. "compatibility",
  5772. "intl",
  5773. "normalizer",
  5774. "polyfill",
  5775. "portable",
  5776. "shim"
  5777. ],
  5778. "support": {
  5779. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  5780. },
  5781. "funding": [
  5782. {
  5783. "url": "https://symfony.com/sponsor",
  5784. "type": "custom"
  5785. },
  5786. {
  5787. "url": "https://github.com/fabpot",
  5788. "type": "github"
  5789. },
  5790. {
  5791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5792. "type": "tidelift"
  5793. }
  5794. ],
  5795. "time": "2022-11-03T14:55:06+00:00"
  5796. },
  5797. {
  5798. "name": "symfony/polyfill-mbstring",
  5799. "version": "v1.27.0",
  5800. "source": {
  5801. "type": "git",
  5802. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5803. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  5804. },
  5805. "dist": {
  5806. "type": "zip",
  5807. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5808. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5809. "shasum": ""
  5810. },
  5811. "require": {
  5812. "php": ">=7.1"
  5813. },
  5814. "provide": {
  5815. "ext-mbstring": "*"
  5816. },
  5817. "suggest": {
  5818. "ext-mbstring": "For best performance"
  5819. },
  5820. "type": "library",
  5821. "extra": {
  5822. "branch-alias": {
  5823. "dev-main": "1.27-dev"
  5824. },
  5825. "thanks": {
  5826. "name": "symfony/polyfill",
  5827. "url": "https://github.com/symfony/polyfill"
  5828. }
  5829. },
  5830. "autoload": {
  5831. "files": [
  5832. "bootstrap.php"
  5833. ],
  5834. "psr-4": {
  5835. "Symfony\\Polyfill\\Mbstring\\": ""
  5836. }
  5837. },
  5838. "notification-url": "https://packagist.org/downloads/",
  5839. "license": [
  5840. "MIT"
  5841. ],
  5842. "authors": [
  5843. {
  5844. "name": "Nicolas Grekas",
  5845. "email": "p@tchwork.com"
  5846. },
  5847. {
  5848. "name": "Symfony Community",
  5849. "homepage": "https://symfony.com/contributors"
  5850. }
  5851. ],
  5852. "description": "Symfony polyfill for the Mbstring extension",
  5853. "homepage": "https://symfony.com",
  5854. "keywords": [
  5855. "compatibility",
  5856. "mbstring",
  5857. "polyfill",
  5858. "portable",
  5859. "shim"
  5860. ],
  5861. "support": {
  5862. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  5863. },
  5864. "funding": [
  5865. {
  5866. "url": "https://symfony.com/sponsor",
  5867. "type": "custom"
  5868. },
  5869. {
  5870. "url": "https://github.com/fabpot",
  5871. "type": "github"
  5872. },
  5873. {
  5874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5875. "type": "tidelift"
  5876. }
  5877. ],
  5878. "time": "2022-11-03T14:55:06+00:00"
  5879. },
  5880. {
  5881. "name": "symfony/polyfill-php72",
  5882. "version": "v1.27.0",
  5883. "source": {
  5884. "type": "git",
  5885. "url": "https://github.com/symfony/polyfill-php72.git",
  5886. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  5887. },
  5888. "dist": {
  5889. "type": "zip",
  5890. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  5891. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  5892. "shasum": ""
  5893. },
  5894. "require": {
  5895. "php": ">=7.1"
  5896. },
  5897. "type": "library",
  5898. "extra": {
  5899. "branch-alias": {
  5900. "dev-main": "1.27-dev"
  5901. },
  5902. "thanks": {
  5903. "name": "symfony/polyfill",
  5904. "url": "https://github.com/symfony/polyfill"
  5905. }
  5906. },
  5907. "autoload": {
  5908. "files": [
  5909. "bootstrap.php"
  5910. ],
  5911. "psr-4": {
  5912. "Symfony\\Polyfill\\Php72\\": ""
  5913. }
  5914. },
  5915. "notification-url": "https://packagist.org/downloads/",
  5916. "license": [
  5917. "MIT"
  5918. ],
  5919. "authors": [
  5920. {
  5921. "name": "Nicolas Grekas",
  5922. "email": "p@tchwork.com"
  5923. },
  5924. {
  5925. "name": "Symfony Community",
  5926. "homepage": "https://symfony.com/contributors"
  5927. }
  5928. ],
  5929. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5930. "homepage": "https://symfony.com",
  5931. "keywords": [
  5932. "compatibility",
  5933. "polyfill",
  5934. "portable",
  5935. "shim"
  5936. ],
  5937. "support": {
  5938. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  5939. },
  5940. "funding": [
  5941. {
  5942. "url": "https://symfony.com/sponsor",
  5943. "type": "custom"
  5944. },
  5945. {
  5946. "url": "https://github.com/fabpot",
  5947. "type": "github"
  5948. },
  5949. {
  5950. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5951. "type": "tidelift"
  5952. }
  5953. ],
  5954. "time": "2022-11-03T14:55:06+00:00"
  5955. },
  5956. {
  5957. "name": "symfony/polyfill-php80",
  5958. "version": "v1.27.0",
  5959. "source": {
  5960. "type": "git",
  5961. "url": "https://github.com/symfony/polyfill-php80.git",
  5962. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  5963. },
  5964. "dist": {
  5965. "type": "zip",
  5966. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5967. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5968. "shasum": ""
  5969. },
  5970. "require": {
  5971. "php": ">=7.1"
  5972. },
  5973. "type": "library",
  5974. "extra": {
  5975. "branch-alias": {
  5976. "dev-main": "1.27-dev"
  5977. },
  5978. "thanks": {
  5979. "name": "symfony/polyfill",
  5980. "url": "https://github.com/symfony/polyfill"
  5981. }
  5982. },
  5983. "autoload": {
  5984. "files": [
  5985. "bootstrap.php"
  5986. ],
  5987. "psr-4": {
  5988. "Symfony\\Polyfill\\Php80\\": ""
  5989. },
  5990. "classmap": [
  5991. "Resources/stubs"
  5992. ]
  5993. },
  5994. "notification-url": "https://packagist.org/downloads/",
  5995. "license": [
  5996. "MIT"
  5997. ],
  5998. "authors": [
  5999. {
  6000. "name": "Ion Bazan",
  6001. "email": "ion.bazan@gmail.com"
  6002. },
  6003. {
  6004. "name": "Nicolas Grekas",
  6005. "email": "p@tchwork.com"
  6006. },
  6007. {
  6008. "name": "Symfony Community",
  6009. "homepage": "https://symfony.com/contributors"
  6010. }
  6011. ],
  6012. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6013. "homepage": "https://symfony.com",
  6014. "keywords": [
  6015. "compatibility",
  6016. "polyfill",
  6017. "portable",
  6018. "shim"
  6019. ],
  6020. "support": {
  6021. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  6022. },
  6023. "funding": [
  6024. {
  6025. "url": "https://symfony.com/sponsor",
  6026. "type": "custom"
  6027. },
  6028. {
  6029. "url": "https://github.com/fabpot",
  6030. "type": "github"
  6031. },
  6032. {
  6033. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6034. "type": "tidelift"
  6035. }
  6036. ],
  6037. "time": "2022-11-03T14:55:06+00:00"
  6038. },
  6039. {
  6040. "name": "symfony/process",
  6041. "version": "v6.2.8",
  6042. "source": {
  6043. "type": "git",
  6044. "url": "https://github.com/symfony/process.git",
  6045. "reference": "75ed64103df4f6615e15a7fe38b8111099f47416"
  6046. },
  6047. "dist": {
  6048. "type": "zip",
  6049. "url": "https://api.github.com/repos/symfony/process/zipball/75ed64103df4f6615e15a7fe38b8111099f47416",
  6050. "reference": "75ed64103df4f6615e15a7fe38b8111099f47416",
  6051. "shasum": ""
  6052. },
  6053. "require": {
  6054. "php": ">=8.1"
  6055. },
  6056. "type": "library",
  6057. "autoload": {
  6058. "psr-4": {
  6059. "Symfony\\Component\\Process\\": ""
  6060. },
  6061. "exclude-from-classmap": [
  6062. "/Tests/"
  6063. ]
  6064. },
  6065. "notification-url": "https://packagist.org/downloads/",
  6066. "license": [
  6067. "MIT"
  6068. ],
  6069. "authors": [
  6070. {
  6071. "name": "Fabien Potencier",
  6072. "email": "fabien@symfony.com"
  6073. },
  6074. {
  6075. "name": "Symfony Community",
  6076. "homepage": "https://symfony.com/contributors"
  6077. }
  6078. ],
  6079. "description": "Executes commands in sub-processes",
  6080. "homepage": "https://symfony.com",
  6081. "support": {
  6082. "source": "https://github.com/symfony/process/tree/v6.2.8"
  6083. },
  6084. "funding": [
  6085. {
  6086. "url": "https://symfony.com/sponsor",
  6087. "type": "custom"
  6088. },
  6089. {
  6090. "url": "https://github.com/fabpot",
  6091. "type": "github"
  6092. },
  6093. {
  6094. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6095. "type": "tidelift"
  6096. }
  6097. ],
  6098. "time": "2023-03-09T16:20:02+00:00"
  6099. },
  6100. {
  6101. "name": "symfony/property-access",
  6102. "version": "v6.2.8",
  6103. "source": {
  6104. "type": "git",
  6105. "url": "https://github.com/symfony/property-access.git",
  6106. "reference": "2ad1e0a07b8cab3e09905659d14f3b248e916374"
  6107. },
  6108. "dist": {
  6109. "type": "zip",
  6110. "url": "https://api.github.com/repos/symfony/property-access/zipball/2ad1e0a07b8cab3e09905659d14f3b248e916374",
  6111. "reference": "2ad1e0a07b8cab3e09905659d14f3b248e916374",
  6112. "shasum": ""
  6113. },
  6114. "require": {
  6115. "php": ">=8.1",
  6116. "symfony/deprecation-contracts": "^2.1|^3",
  6117. "symfony/property-info": "^5.4|^6.0"
  6118. },
  6119. "require-dev": {
  6120. "symfony/cache": "^5.4|^6.0"
  6121. },
  6122. "suggest": {
  6123. "psr/cache-implementation": "To cache access methods."
  6124. },
  6125. "type": "library",
  6126. "autoload": {
  6127. "psr-4": {
  6128. "Symfony\\Component\\PropertyAccess\\": ""
  6129. },
  6130. "exclude-from-classmap": [
  6131. "/Tests/"
  6132. ]
  6133. },
  6134. "notification-url": "https://packagist.org/downloads/",
  6135. "license": [
  6136. "MIT"
  6137. ],
  6138. "authors": [
  6139. {
  6140. "name": "Fabien Potencier",
  6141. "email": "fabien@symfony.com"
  6142. },
  6143. {
  6144. "name": "Symfony Community",
  6145. "homepage": "https://symfony.com/contributors"
  6146. }
  6147. ],
  6148. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6149. "homepage": "https://symfony.com",
  6150. "keywords": [
  6151. "access",
  6152. "array",
  6153. "extraction",
  6154. "index",
  6155. "injection",
  6156. "object",
  6157. "property",
  6158. "property-path",
  6159. "reflection"
  6160. ],
  6161. "support": {
  6162. "source": "https://github.com/symfony/property-access/tree/v6.2.8"
  6163. },
  6164. "funding": [
  6165. {
  6166. "url": "https://symfony.com/sponsor",
  6167. "type": "custom"
  6168. },
  6169. {
  6170. "url": "https://github.com/fabpot",
  6171. "type": "github"
  6172. },
  6173. {
  6174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6175. "type": "tidelift"
  6176. }
  6177. ],
  6178. "time": "2023-03-14T15:00:05+00:00"
  6179. },
  6180. {
  6181. "name": "symfony/property-info",
  6182. "version": "v6.2.8",
  6183. "source": {
  6184. "type": "git",
  6185. "url": "https://github.com/symfony/property-info.git",
  6186. "reference": "400a019b7c05030599fd15f02b3d4ce287631732"
  6187. },
  6188. "dist": {
  6189. "type": "zip",
  6190. "url": "https://api.github.com/repos/symfony/property-info/zipball/400a019b7c05030599fd15f02b3d4ce287631732",
  6191. "reference": "400a019b7c05030599fd15f02b3d4ce287631732",
  6192. "shasum": ""
  6193. },
  6194. "require": {
  6195. "php": ">=8.1",
  6196. "symfony/string": "^5.4|^6.0"
  6197. },
  6198. "conflict": {
  6199. "phpdocumentor/reflection-docblock": "<5.2",
  6200. "phpdocumentor/type-resolver": "<1.5.1",
  6201. "symfony/dependency-injection": "<5.4"
  6202. },
  6203. "require-dev": {
  6204. "doctrine/annotations": "^1.10.4|^2",
  6205. "phpdocumentor/reflection-docblock": "^5.2",
  6206. "phpstan/phpdoc-parser": "^1.0",
  6207. "symfony/cache": "^5.4|^6.0",
  6208. "symfony/dependency-injection": "^5.4|^6.0",
  6209. "symfony/serializer": "^5.4|^6.0"
  6210. },
  6211. "suggest": {
  6212. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6213. "psr/cache-implementation": "To cache results",
  6214. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6215. "symfony/serializer": "To use Serializer metadata"
  6216. },
  6217. "type": "library",
  6218. "autoload": {
  6219. "psr-4": {
  6220. "Symfony\\Component\\PropertyInfo\\": ""
  6221. },
  6222. "exclude-from-classmap": [
  6223. "/Tests/"
  6224. ]
  6225. },
  6226. "notification-url": "https://packagist.org/downloads/",
  6227. "license": [
  6228. "MIT"
  6229. ],
  6230. "authors": [
  6231. {
  6232. "name": "Kévin Dunglas",
  6233. "email": "dunglas@gmail.com"
  6234. },
  6235. {
  6236. "name": "Symfony Community",
  6237. "homepage": "https://symfony.com/contributors"
  6238. }
  6239. ],
  6240. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6241. "homepage": "https://symfony.com",
  6242. "keywords": [
  6243. "doctrine",
  6244. "phpdoc",
  6245. "property",
  6246. "symfony",
  6247. "type",
  6248. "validator"
  6249. ],
  6250. "support": {
  6251. "source": "https://github.com/symfony/property-info/tree/v6.2.8"
  6252. },
  6253. "funding": [
  6254. {
  6255. "url": "https://symfony.com/sponsor",
  6256. "type": "custom"
  6257. },
  6258. {
  6259. "url": "https://github.com/fabpot",
  6260. "type": "github"
  6261. },
  6262. {
  6263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6264. "type": "tidelift"
  6265. }
  6266. ],
  6267. "time": "2023-03-14T15:00:05+00:00"
  6268. },
  6269. {
  6270. "name": "symfony/proxy-manager-bridge",
  6271. "version": "v6.2.7",
  6272. "source": {
  6273. "type": "git",
  6274. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  6275. "reference": "534119513ce1d06faa6d55b6717f237e980b4e91"
  6276. },
  6277. "dist": {
  6278. "type": "zip",
  6279. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/534119513ce1d06faa6d55b6717f237e980b4e91",
  6280. "reference": "534119513ce1d06faa6d55b6717f237e980b4e91",
  6281. "shasum": ""
  6282. },
  6283. "require": {
  6284. "friendsofphp/proxy-manager-lts": "^1.0.2",
  6285. "php": ">=8.1",
  6286. "symfony/dependency-injection": "^6.2"
  6287. },
  6288. "require-dev": {
  6289. "symfony/config": "^6.1"
  6290. },
  6291. "type": "symfony-bridge",
  6292. "autoload": {
  6293. "psr-4": {
  6294. "Symfony\\Bridge\\ProxyManager\\": ""
  6295. },
  6296. "exclude-from-classmap": [
  6297. "/Tests/"
  6298. ]
  6299. },
  6300. "notification-url": "https://packagist.org/downloads/",
  6301. "license": [
  6302. "MIT"
  6303. ],
  6304. "authors": [
  6305. {
  6306. "name": "Fabien Potencier",
  6307. "email": "fabien@symfony.com"
  6308. },
  6309. {
  6310. "name": "Symfony Community",
  6311. "homepage": "https://symfony.com/contributors"
  6312. }
  6313. ],
  6314. "description": "Provides integration for ProxyManager with various Symfony components",
  6315. "homepage": "https://symfony.com",
  6316. "support": {
  6317. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v6.2.7"
  6318. },
  6319. "funding": [
  6320. {
  6321. "url": "https://symfony.com/sponsor",
  6322. "type": "custom"
  6323. },
  6324. {
  6325. "url": "https://github.com/fabpot",
  6326. "type": "github"
  6327. },
  6328. {
  6329. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6330. "type": "tidelift"
  6331. }
  6332. ],
  6333. "time": "2023-02-16T09:57:23+00:00"
  6334. },
  6335. {
  6336. "name": "symfony/routing",
  6337. "version": "v6.2.8",
  6338. "source": {
  6339. "type": "git",
  6340. "url": "https://github.com/symfony/routing.git",
  6341. "reference": "69062e2823f03b82265d73a966999660f0e1e404"
  6342. },
  6343. "dist": {
  6344. "type": "zip",
  6345. "url": "https://api.github.com/repos/symfony/routing/zipball/69062e2823f03b82265d73a966999660f0e1e404",
  6346. "reference": "69062e2823f03b82265d73a966999660f0e1e404",
  6347. "shasum": ""
  6348. },
  6349. "require": {
  6350. "php": ">=8.1"
  6351. },
  6352. "conflict": {
  6353. "doctrine/annotations": "<1.12",
  6354. "symfony/config": "<6.2",
  6355. "symfony/dependency-injection": "<5.4",
  6356. "symfony/yaml": "<5.4"
  6357. },
  6358. "require-dev": {
  6359. "doctrine/annotations": "^1.12|^2",
  6360. "psr/log": "^1|^2|^3",
  6361. "symfony/config": "^6.2",
  6362. "symfony/dependency-injection": "^5.4|^6.0",
  6363. "symfony/expression-language": "^5.4|^6.0",
  6364. "symfony/http-foundation": "^5.4|^6.0",
  6365. "symfony/yaml": "^5.4|^6.0"
  6366. },
  6367. "suggest": {
  6368. "symfony/config": "For using the all-in-one router or any loader",
  6369. "symfony/expression-language": "For using expression matching",
  6370. "symfony/http-foundation": "For using a Symfony Request object",
  6371. "symfony/yaml": "For using the YAML loader"
  6372. },
  6373. "type": "library",
  6374. "autoload": {
  6375. "psr-4": {
  6376. "Symfony\\Component\\Routing\\": ""
  6377. },
  6378. "exclude-from-classmap": [
  6379. "/Tests/"
  6380. ]
  6381. },
  6382. "notification-url": "https://packagist.org/downloads/",
  6383. "license": [
  6384. "MIT"
  6385. ],
  6386. "authors": [
  6387. {
  6388. "name": "Fabien Potencier",
  6389. "email": "fabien@symfony.com"
  6390. },
  6391. {
  6392. "name": "Symfony Community",
  6393. "homepage": "https://symfony.com/contributors"
  6394. }
  6395. ],
  6396. "description": "Maps an HTTP request to a set of configuration variables",
  6397. "homepage": "https://symfony.com",
  6398. "keywords": [
  6399. "router",
  6400. "routing",
  6401. "uri",
  6402. "url"
  6403. ],
  6404. "support": {
  6405. "source": "https://github.com/symfony/routing/tree/v6.2.8"
  6406. },
  6407. "funding": [
  6408. {
  6409. "url": "https://symfony.com/sponsor",
  6410. "type": "custom"
  6411. },
  6412. {
  6413. "url": "https://github.com/fabpot",
  6414. "type": "github"
  6415. },
  6416. {
  6417. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6418. "type": "tidelift"
  6419. }
  6420. ],
  6421. "time": "2023-03-14T15:00:05+00:00"
  6422. },
  6423. {
  6424. "name": "symfony/runtime",
  6425. "version": "v6.2.8",
  6426. "source": {
  6427. "type": "git",
  6428. "url": "https://github.com/symfony/runtime.git",
  6429. "reference": "f8b0751b33888329be8f8f0481bb81d279ec4157"
  6430. },
  6431. "dist": {
  6432. "type": "zip",
  6433. "url": "https://api.github.com/repos/symfony/runtime/zipball/f8b0751b33888329be8f8f0481bb81d279ec4157",
  6434. "reference": "f8b0751b33888329be8f8f0481bb81d279ec4157",
  6435. "shasum": ""
  6436. },
  6437. "require": {
  6438. "composer-plugin-api": "^1.0|^2.0",
  6439. "php": ">=8.1"
  6440. },
  6441. "conflict": {
  6442. "symfony/dotenv": "<5.4"
  6443. },
  6444. "require-dev": {
  6445. "composer/composer": "^1.0.2|^2.0",
  6446. "symfony/console": "^5.4|^6.0",
  6447. "symfony/dotenv": "^5.4|^6.0",
  6448. "symfony/http-foundation": "^5.4|^6.0",
  6449. "symfony/http-kernel": "^5.4|^6.0"
  6450. },
  6451. "type": "composer-plugin",
  6452. "extra": {
  6453. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6454. },
  6455. "autoload": {
  6456. "psr-4": {
  6457. "Symfony\\Component\\Runtime\\": "",
  6458. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6459. },
  6460. "exclude-from-classmap": [
  6461. "/Tests/"
  6462. ]
  6463. },
  6464. "notification-url": "https://packagist.org/downloads/",
  6465. "license": [
  6466. "MIT"
  6467. ],
  6468. "authors": [
  6469. {
  6470. "name": "Nicolas Grekas",
  6471. "email": "p@tchwork.com"
  6472. },
  6473. {
  6474. "name": "Symfony Community",
  6475. "homepage": "https://symfony.com/contributors"
  6476. }
  6477. ],
  6478. "description": "Enables decoupling PHP applications from global state",
  6479. "homepage": "https://symfony.com",
  6480. "keywords": [
  6481. "runtime"
  6482. ],
  6483. "support": {
  6484. "source": "https://github.com/symfony/runtime/tree/v6.2.8"
  6485. },
  6486. "funding": [
  6487. {
  6488. "url": "https://symfony.com/sponsor",
  6489. "type": "custom"
  6490. },
  6491. {
  6492. "url": "https://github.com/fabpot",
  6493. "type": "github"
  6494. },
  6495. {
  6496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6497. "type": "tidelift"
  6498. }
  6499. ],
  6500. "time": "2023-03-14T15:48:35+00:00"
  6501. },
  6502. {
  6503. "name": "symfony/security-bundle",
  6504. "version": "v6.2.8",
  6505. "source": {
  6506. "type": "git",
  6507. "url": "https://github.com/symfony/security-bundle.git",
  6508. "reference": "c781ba5ab5f71a5c8bd5fce5b4c8b6ad9eb7f3d5"
  6509. },
  6510. "dist": {
  6511. "type": "zip",
  6512. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/c781ba5ab5f71a5c8bd5fce5b4c8b6ad9eb7f3d5",
  6513. "reference": "c781ba5ab5f71a5c8bd5fce5b4c8b6ad9eb7f3d5",
  6514. "shasum": ""
  6515. },
  6516. "require": {
  6517. "composer-runtime-api": ">=2.1",
  6518. "ext-xml": "*",
  6519. "php": ">=8.1",
  6520. "symfony/config": "^6.1",
  6521. "symfony/dependency-injection": "^6.2",
  6522. "symfony/event-dispatcher": "^5.4|^6.0",
  6523. "symfony/http-foundation": "^6.2",
  6524. "symfony/http-kernel": "^6.2",
  6525. "symfony/password-hasher": "^5.4|^6.0",
  6526. "symfony/security-core": "^6.2",
  6527. "symfony/security-csrf": "^5.4|^6.0",
  6528. "symfony/security-http": "^6.2.6"
  6529. },
  6530. "conflict": {
  6531. "symfony/browser-kit": "<5.4",
  6532. "symfony/console": "<5.4",
  6533. "symfony/framework-bundle": "<5.4",
  6534. "symfony/ldap": "<5.4",
  6535. "symfony/twig-bundle": "<5.4"
  6536. },
  6537. "require-dev": {
  6538. "doctrine/annotations": "^1.10.4|^2",
  6539. "symfony/asset": "^5.4|^6.0",
  6540. "symfony/browser-kit": "^5.4|^6.0",
  6541. "symfony/console": "^5.4|^6.0",
  6542. "symfony/css-selector": "^5.4|^6.0",
  6543. "symfony/dom-crawler": "^5.4|^6.0",
  6544. "symfony/expression-language": "^5.4|^6.0",
  6545. "symfony/form": "^5.4|^6.0",
  6546. "symfony/framework-bundle": "^5.4|^6.0",
  6547. "symfony/ldap": "^5.4|^6.0",
  6548. "symfony/process": "^5.4|^6.0",
  6549. "symfony/rate-limiter": "^5.4|^6.0",
  6550. "symfony/serializer": "^5.4|^6.0",
  6551. "symfony/translation": "^5.4|^6.0",
  6552. "symfony/twig-bridge": "^5.4|^6.0",
  6553. "symfony/twig-bundle": "^5.4|^6.0",
  6554. "symfony/validator": "^5.4|^6.0",
  6555. "symfony/yaml": "^5.4|^6.0",
  6556. "twig/twig": "^2.13|^3.0.4"
  6557. },
  6558. "type": "symfony-bundle",
  6559. "autoload": {
  6560. "psr-4": {
  6561. "Symfony\\Bundle\\SecurityBundle\\": ""
  6562. },
  6563. "exclude-from-classmap": [
  6564. "/Tests/"
  6565. ]
  6566. },
  6567. "notification-url": "https://packagist.org/downloads/",
  6568. "license": [
  6569. "MIT"
  6570. ],
  6571. "authors": [
  6572. {
  6573. "name": "Fabien Potencier",
  6574. "email": "fabien@symfony.com"
  6575. },
  6576. {
  6577. "name": "Symfony Community",
  6578. "homepage": "https://symfony.com/contributors"
  6579. }
  6580. ],
  6581. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6582. "homepage": "https://symfony.com",
  6583. "support": {
  6584. "source": "https://github.com/symfony/security-bundle/tree/v6.2.8"
  6585. },
  6586. "funding": [
  6587. {
  6588. "url": "https://symfony.com/sponsor",
  6589. "type": "custom"
  6590. },
  6591. {
  6592. "url": "https://github.com/fabpot",
  6593. "type": "github"
  6594. },
  6595. {
  6596. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6597. "type": "tidelift"
  6598. }
  6599. ],
  6600. "time": "2023-03-10T10:06:03+00:00"
  6601. },
  6602. {
  6603. "name": "symfony/security-core",
  6604. "version": "v6.2.8",
  6605. "source": {
  6606. "type": "git",
  6607. "url": "https://github.com/symfony/security-core.git",
  6608. "reference": "c141337bc7451f9a9e464733f1e536bf38d1d2fb"
  6609. },
  6610. "dist": {
  6611. "type": "zip",
  6612. "url": "https://api.github.com/repos/symfony/security-core/zipball/c141337bc7451f9a9e464733f1e536bf38d1d2fb",
  6613. "reference": "c141337bc7451f9a9e464733f1e536bf38d1d2fb",
  6614. "shasum": ""
  6615. },
  6616. "require": {
  6617. "php": ">=8.1",
  6618. "symfony/event-dispatcher-contracts": "^1.1|^2|^3",
  6619. "symfony/password-hasher": "^5.4|^6.0",
  6620. "symfony/service-contracts": "^1.1.6|^2|^3"
  6621. },
  6622. "conflict": {
  6623. "symfony/event-dispatcher": "<5.4",
  6624. "symfony/http-foundation": "<5.4",
  6625. "symfony/ldap": "<5.4",
  6626. "symfony/security-guard": "<5.4",
  6627. "symfony/validator": "<5.4"
  6628. },
  6629. "require-dev": {
  6630. "psr/cache": "^1.0|^2.0|^3.0",
  6631. "psr/container": "^1.1|^2.0",
  6632. "psr/log": "^1|^2|^3",
  6633. "symfony/cache": "^5.4|^6.0",
  6634. "symfony/event-dispatcher": "^5.4|^6.0",
  6635. "symfony/expression-language": "^5.4|^6.0",
  6636. "symfony/http-foundation": "^5.4|^6.0",
  6637. "symfony/ldap": "^5.4|^6.0",
  6638. "symfony/translation": "^5.4|^6.0",
  6639. "symfony/validator": "^5.4|^6.0"
  6640. },
  6641. "suggest": {
  6642. "psr/container-implementation": "To instantiate the Security class",
  6643. "symfony/event-dispatcher": "",
  6644. "symfony/expression-language": "For using the expression voter",
  6645. "symfony/http-foundation": "",
  6646. "symfony/ldap": "For using LDAP integration",
  6647. "symfony/validator": "For using the user password constraint"
  6648. },
  6649. "type": "library",
  6650. "autoload": {
  6651. "psr-4": {
  6652. "Symfony\\Component\\Security\\Core\\": ""
  6653. },
  6654. "exclude-from-classmap": [
  6655. "/Tests/"
  6656. ]
  6657. },
  6658. "notification-url": "https://packagist.org/downloads/",
  6659. "license": [
  6660. "MIT"
  6661. ],
  6662. "authors": [
  6663. {
  6664. "name": "Fabien Potencier",
  6665. "email": "fabien@symfony.com"
  6666. },
  6667. {
  6668. "name": "Symfony Community",
  6669. "homepage": "https://symfony.com/contributors"
  6670. }
  6671. ],
  6672. "description": "Symfony Security Component - Core Library",
  6673. "homepage": "https://symfony.com",
  6674. "support": {
  6675. "source": "https://github.com/symfony/security-core/tree/v6.2.8"
  6676. },
  6677. "funding": [
  6678. {
  6679. "url": "https://symfony.com/sponsor",
  6680. "type": "custom"
  6681. },
  6682. {
  6683. "url": "https://github.com/fabpot",
  6684. "type": "github"
  6685. },
  6686. {
  6687. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6688. "type": "tidelift"
  6689. }
  6690. ],
  6691. "time": "2023-03-10T10:06:03+00:00"
  6692. },
  6693. {
  6694. "name": "symfony/security-csrf",
  6695. "version": "v6.2.7",
  6696. "source": {
  6697. "type": "git",
  6698. "url": "https://github.com/symfony/security-csrf.git",
  6699. "reference": "6cce7efdce68e0670d2f19acebc21dcd0798e333"
  6700. },
  6701. "dist": {
  6702. "type": "zip",
  6703. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/6cce7efdce68e0670d2f19acebc21dcd0798e333",
  6704. "reference": "6cce7efdce68e0670d2f19acebc21dcd0798e333",
  6705. "shasum": ""
  6706. },
  6707. "require": {
  6708. "php": ">=8.1",
  6709. "symfony/security-core": "^5.4|^6.0"
  6710. },
  6711. "conflict": {
  6712. "symfony/http-foundation": "<5.4"
  6713. },
  6714. "require-dev": {
  6715. "symfony/http-foundation": "^5.4|^6.0"
  6716. },
  6717. "suggest": {
  6718. "symfony/http-foundation": "For using the class SessionTokenStorage."
  6719. },
  6720. "type": "library",
  6721. "autoload": {
  6722. "psr-4": {
  6723. "Symfony\\Component\\Security\\Csrf\\": ""
  6724. },
  6725. "exclude-from-classmap": [
  6726. "/Tests/"
  6727. ]
  6728. },
  6729. "notification-url": "https://packagist.org/downloads/",
  6730. "license": [
  6731. "MIT"
  6732. ],
  6733. "authors": [
  6734. {
  6735. "name": "Fabien Potencier",
  6736. "email": "fabien@symfony.com"
  6737. },
  6738. {
  6739. "name": "Symfony Community",
  6740. "homepage": "https://symfony.com/contributors"
  6741. }
  6742. ],
  6743. "description": "Symfony Security Component - CSRF Library",
  6744. "homepage": "https://symfony.com",
  6745. "support": {
  6746. "source": "https://github.com/symfony/security-csrf/tree/v6.2.7"
  6747. },
  6748. "funding": [
  6749. {
  6750. "url": "https://symfony.com/sponsor",
  6751. "type": "custom"
  6752. },
  6753. {
  6754. "url": "https://github.com/fabpot",
  6755. "type": "github"
  6756. },
  6757. {
  6758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6759. "type": "tidelift"
  6760. }
  6761. ],
  6762. "time": "2023-02-16T09:57:23+00:00"
  6763. },
  6764. {
  6765. "name": "symfony/security-http",
  6766. "version": "v6.2.8",
  6767. "source": {
  6768. "type": "git",
  6769. "url": "https://github.com/symfony/security-http.git",
  6770. "reference": "6d47056ee9f394aeace1799e73ead5a2107f581d"
  6771. },
  6772. "dist": {
  6773. "type": "zip",
  6774. "url": "https://api.github.com/repos/symfony/security-http/zipball/6d47056ee9f394aeace1799e73ead5a2107f581d",
  6775. "reference": "6d47056ee9f394aeace1799e73ead5a2107f581d",
  6776. "shasum": ""
  6777. },
  6778. "require": {
  6779. "php": ">=8.1",
  6780. "symfony/deprecation-contracts": "^2.1|^3",
  6781. "symfony/http-foundation": "^5.4|^6.0",
  6782. "symfony/http-kernel": "^6.2",
  6783. "symfony/polyfill-mbstring": "~1.0",
  6784. "symfony/property-access": "^5.4|^6.0",
  6785. "symfony/security-core": "~6.0.19|~6.1.11|^6.2.5"
  6786. },
  6787. "conflict": {
  6788. "symfony/event-dispatcher": "<5.4.9|>=6,<6.0.9",
  6789. "symfony/security-bundle": "<5.4",
  6790. "symfony/security-csrf": "<5.4"
  6791. },
  6792. "require-dev": {
  6793. "psr/log": "^1|^2|^3",
  6794. "symfony/cache": "^5.4|^6.0",
  6795. "symfony/expression-language": "^5.4|^6.0",
  6796. "symfony/rate-limiter": "^5.4|^6.0",
  6797. "symfony/routing": "^5.4|^6.0",
  6798. "symfony/security-csrf": "^5.4|^6.0",
  6799. "symfony/translation": "^5.4|^6.0"
  6800. },
  6801. "suggest": {
  6802. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  6803. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  6804. },
  6805. "type": "library",
  6806. "autoload": {
  6807. "psr-4": {
  6808. "Symfony\\Component\\Security\\Http\\": ""
  6809. },
  6810. "exclude-from-classmap": [
  6811. "/Tests/"
  6812. ]
  6813. },
  6814. "notification-url": "https://packagist.org/downloads/",
  6815. "license": [
  6816. "MIT"
  6817. ],
  6818. "authors": [
  6819. {
  6820. "name": "Fabien Potencier",
  6821. "email": "fabien@symfony.com"
  6822. },
  6823. {
  6824. "name": "Symfony Community",
  6825. "homepage": "https://symfony.com/contributors"
  6826. }
  6827. ],
  6828. "description": "Symfony Security Component - HTTP Integration",
  6829. "homepage": "https://symfony.com",
  6830. "support": {
  6831. "source": "https://github.com/symfony/security-http/tree/v6.2.8"
  6832. },
  6833. "funding": [
  6834. {
  6835. "url": "https://symfony.com/sponsor",
  6836. "type": "custom"
  6837. },
  6838. {
  6839. "url": "https://github.com/fabpot",
  6840. "type": "github"
  6841. },
  6842. {
  6843. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6844. "type": "tidelift"
  6845. }
  6846. ],
  6847. "time": "2023-03-10T10:06:03+00:00"
  6848. },
  6849. {
  6850. "name": "symfony/serializer",
  6851. "version": "v6.2.8",
  6852. "source": {
  6853. "type": "git",
  6854. "url": "https://github.com/symfony/serializer.git",
  6855. "reference": "db9d36470bf0990990fda9320b8b001bb582f075"
  6856. },
  6857. "dist": {
  6858. "type": "zip",
  6859. "url": "https://api.github.com/repos/symfony/serializer/zipball/db9d36470bf0990990fda9320b8b001bb582f075",
  6860. "reference": "db9d36470bf0990990fda9320b8b001bb582f075",
  6861. "shasum": ""
  6862. },
  6863. "require": {
  6864. "php": ">=8.1",
  6865. "symfony/polyfill-ctype": "~1.8"
  6866. },
  6867. "conflict": {
  6868. "doctrine/annotations": "<1.12",
  6869. "phpdocumentor/reflection-docblock": "<3.2.2",
  6870. "phpdocumentor/type-resolver": "<1.4.0",
  6871. "symfony/dependency-injection": "<5.4",
  6872. "symfony/property-access": "<5.4",
  6873. "symfony/property-info": "<5.4",
  6874. "symfony/uid": "<5.4",
  6875. "symfony/yaml": "<5.4"
  6876. },
  6877. "require-dev": {
  6878. "doctrine/annotations": "^1.12|^2",
  6879. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6880. "symfony/cache": "^5.4|^6.0",
  6881. "symfony/config": "^5.4|^6.0",
  6882. "symfony/dependency-injection": "^5.4|^6.0",
  6883. "symfony/error-handler": "^5.4|^6.0",
  6884. "symfony/filesystem": "^5.4|^6.0",
  6885. "symfony/form": "^5.4|^6.0",
  6886. "symfony/http-foundation": "^5.4|^6.0",
  6887. "symfony/http-kernel": "^5.4|^6.0",
  6888. "symfony/mime": "^5.4|^6.0",
  6889. "symfony/property-access": "^5.4|^6.0",
  6890. "symfony/property-info": "^5.4|^6.0",
  6891. "symfony/uid": "^5.4|^6.0",
  6892. "symfony/validator": "^5.4|^6.0",
  6893. "symfony/var-dumper": "^5.4|^6.0",
  6894. "symfony/var-exporter": "^5.4|^6.0",
  6895. "symfony/yaml": "^5.4|^6.0"
  6896. },
  6897. "suggest": {
  6898. "psr/cache-implementation": "For using the metadata cache.",
  6899. "symfony/config": "For using the XML mapping loader.",
  6900. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  6901. "symfony/property-access": "For using the ObjectNormalizer.",
  6902. "symfony/property-info": "To deserialize relations.",
  6903. "symfony/var-exporter": "For using the metadata compiler.",
  6904. "symfony/yaml": "For using the default YAML mapping loader."
  6905. },
  6906. "type": "library",
  6907. "autoload": {
  6908. "psr-4": {
  6909. "Symfony\\Component\\Serializer\\": ""
  6910. },
  6911. "exclude-from-classmap": [
  6912. "/Tests/"
  6913. ]
  6914. },
  6915. "notification-url": "https://packagist.org/downloads/",
  6916. "license": [
  6917. "MIT"
  6918. ],
  6919. "authors": [
  6920. {
  6921. "name": "Fabien Potencier",
  6922. "email": "fabien@symfony.com"
  6923. },
  6924. {
  6925. "name": "Symfony Community",
  6926. "homepage": "https://symfony.com/contributors"
  6927. }
  6928. ],
  6929. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6930. "homepage": "https://symfony.com",
  6931. "support": {
  6932. "source": "https://github.com/symfony/serializer/tree/v6.2.8"
  6933. },
  6934. "funding": [
  6935. {
  6936. "url": "https://symfony.com/sponsor",
  6937. "type": "custom"
  6938. },
  6939. {
  6940. "url": "https://github.com/fabpot",
  6941. "type": "github"
  6942. },
  6943. {
  6944. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6945. "type": "tidelift"
  6946. }
  6947. ],
  6948. "time": "2023-03-31T09:14:44+00:00"
  6949. },
  6950. {
  6951. "name": "symfony/service-contracts",
  6952. "version": "v3.2.1",
  6953. "source": {
  6954. "type": "git",
  6955. "url": "https://github.com/symfony/service-contracts.git",
  6956. "reference": "a8c9cedf55f314f3a186041d19537303766df09a"
  6957. },
  6958. "dist": {
  6959. "type": "zip",
  6960. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a8c9cedf55f314f3a186041d19537303766df09a",
  6961. "reference": "a8c9cedf55f314f3a186041d19537303766df09a",
  6962. "shasum": ""
  6963. },
  6964. "require": {
  6965. "php": ">=8.1",
  6966. "psr/container": "^2.0"
  6967. },
  6968. "conflict": {
  6969. "ext-psr": "<1.1|>=2"
  6970. },
  6971. "suggest": {
  6972. "symfony/service-implementation": ""
  6973. },
  6974. "type": "library",
  6975. "extra": {
  6976. "branch-alias": {
  6977. "dev-main": "3.3-dev"
  6978. },
  6979. "thanks": {
  6980. "name": "symfony/contracts",
  6981. "url": "https://github.com/symfony/contracts"
  6982. }
  6983. },
  6984. "autoload": {
  6985. "psr-4": {
  6986. "Symfony\\Contracts\\Service\\": ""
  6987. },
  6988. "exclude-from-classmap": [
  6989. "/Test/"
  6990. ]
  6991. },
  6992. "notification-url": "https://packagist.org/downloads/",
  6993. "license": [
  6994. "MIT"
  6995. ],
  6996. "authors": [
  6997. {
  6998. "name": "Nicolas Grekas",
  6999. "email": "p@tchwork.com"
  7000. },
  7001. {
  7002. "name": "Symfony Community",
  7003. "homepage": "https://symfony.com/contributors"
  7004. }
  7005. ],
  7006. "description": "Generic abstractions related to writing services",
  7007. "homepage": "https://symfony.com",
  7008. "keywords": [
  7009. "abstractions",
  7010. "contracts",
  7011. "decoupling",
  7012. "interfaces",
  7013. "interoperability",
  7014. "standards"
  7015. ],
  7016. "support": {
  7017. "source": "https://github.com/symfony/service-contracts/tree/v3.2.1"
  7018. },
  7019. "funding": [
  7020. {
  7021. "url": "https://symfony.com/sponsor",
  7022. "type": "custom"
  7023. },
  7024. {
  7025. "url": "https://github.com/fabpot",
  7026. "type": "github"
  7027. },
  7028. {
  7029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7030. "type": "tidelift"
  7031. }
  7032. ],
  7033. "time": "2023-03-01T10:32:47+00:00"
  7034. },
  7035. {
  7036. "name": "symfony/stopwatch",
  7037. "version": "v6.2.7",
  7038. "source": {
  7039. "type": "git",
  7040. "url": "https://github.com/symfony/stopwatch.git",
  7041. "reference": "f3adc98c1061875dd2edcd45e5b04e63d0e29f8f"
  7042. },
  7043. "dist": {
  7044. "type": "zip",
  7045. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/f3adc98c1061875dd2edcd45e5b04e63d0e29f8f",
  7046. "reference": "f3adc98c1061875dd2edcd45e5b04e63d0e29f8f",
  7047. "shasum": ""
  7048. },
  7049. "require": {
  7050. "php": ">=8.1",
  7051. "symfony/service-contracts": "^1|^2|^3"
  7052. },
  7053. "type": "library",
  7054. "autoload": {
  7055. "psr-4": {
  7056. "Symfony\\Component\\Stopwatch\\": ""
  7057. },
  7058. "exclude-from-classmap": [
  7059. "/Tests/"
  7060. ]
  7061. },
  7062. "notification-url": "https://packagist.org/downloads/",
  7063. "license": [
  7064. "MIT"
  7065. ],
  7066. "authors": [
  7067. {
  7068. "name": "Fabien Potencier",
  7069. "email": "fabien@symfony.com"
  7070. },
  7071. {
  7072. "name": "Symfony Community",
  7073. "homepage": "https://symfony.com/contributors"
  7074. }
  7075. ],
  7076. "description": "Provides a way to profile code",
  7077. "homepage": "https://symfony.com",
  7078. "support": {
  7079. "source": "https://github.com/symfony/stopwatch/tree/v6.2.7"
  7080. },
  7081. "funding": [
  7082. {
  7083. "url": "https://symfony.com/sponsor",
  7084. "type": "custom"
  7085. },
  7086. {
  7087. "url": "https://github.com/fabpot",
  7088. "type": "github"
  7089. },
  7090. {
  7091. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7092. "type": "tidelift"
  7093. }
  7094. ],
  7095. "time": "2023-02-14T08:44:56+00:00"
  7096. },
  7097. {
  7098. "name": "symfony/string",
  7099. "version": "v6.2.8",
  7100. "source": {
  7101. "type": "git",
  7102. "url": "https://github.com/symfony/string.git",
  7103. "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef"
  7104. },
  7105. "dist": {
  7106. "type": "zip",
  7107. "url": "https://api.github.com/repos/symfony/string/zipball/193e83bbd6617d6b2151c37fff10fa7168ebddef",
  7108. "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef",
  7109. "shasum": ""
  7110. },
  7111. "require": {
  7112. "php": ">=8.1",
  7113. "symfony/polyfill-ctype": "~1.8",
  7114. "symfony/polyfill-intl-grapheme": "~1.0",
  7115. "symfony/polyfill-intl-normalizer": "~1.0",
  7116. "symfony/polyfill-mbstring": "~1.0"
  7117. },
  7118. "conflict": {
  7119. "symfony/translation-contracts": "<2.0"
  7120. },
  7121. "require-dev": {
  7122. "symfony/error-handler": "^5.4|^6.0",
  7123. "symfony/http-client": "^5.4|^6.0",
  7124. "symfony/intl": "^6.2",
  7125. "symfony/translation-contracts": "^2.0|^3.0",
  7126. "symfony/var-exporter": "^5.4|^6.0"
  7127. },
  7128. "type": "library",
  7129. "autoload": {
  7130. "files": [
  7131. "Resources/functions.php"
  7132. ],
  7133. "psr-4": {
  7134. "Symfony\\Component\\String\\": ""
  7135. },
  7136. "exclude-from-classmap": [
  7137. "/Tests/"
  7138. ]
  7139. },
  7140. "notification-url": "https://packagist.org/downloads/",
  7141. "license": [
  7142. "MIT"
  7143. ],
  7144. "authors": [
  7145. {
  7146. "name": "Nicolas Grekas",
  7147. "email": "p@tchwork.com"
  7148. },
  7149. {
  7150. "name": "Symfony Community",
  7151. "homepage": "https://symfony.com/contributors"
  7152. }
  7153. ],
  7154. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7155. "homepage": "https://symfony.com",
  7156. "keywords": [
  7157. "grapheme",
  7158. "i18n",
  7159. "string",
  7160. "unicode",
  7161. "utf-8",
  7162. "utf8"
  7163. ],
  7164. "support": {
  7165. "source": "https://github.com/symfony/string/tree/v6.2.8"
  7166. },
  7167. "funding": [
  7168. {
  7169. "url": "https://symfony.com/sponsor",
  7170. "type": "custom"
  7171. },
  7172. {
  7173. "url": "https://github.com/fabpot",
  7174. "type": "github"
  7175. },
  7176. {
  7177. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7178. "type": "tidelift"
  7179. }
  7180. ],
  7181. "time": "2023-03-20T16:06:02+00:00"
  7182. },
  7183. {
  7184. "name": "symfony/translation",
  7185. "version": "v6.2.8",
  7186. "source": {
  7187. "type": "git",
  7188. "url": "https://github.com/symfony/translation.git",
  7189. "reference": "817535dbb1721df8b3a8f2489dc7e50bcd6209b5"
  7190. },
  7191. "dist": {
  7192. "type": "zip",
  7193. "url": "https://api.github.com/repos/symfony/translation/zipball/817535dbb1721df8b3a8f2489dc7e50bcd6209b5",
  7194. "reference": "817535dbb1721df8b3a8f2489dc7e50bcd6209b5",
  7195. "shasum": ""
  7196. },
  7197. "require": {
  7198. "php": ">=8.1",
  7199. "symfony/polyfill-mbstring": "~1.0",
  7200. "symfony/translation-contracts": "^2.3|^3.0"
  7201. },
  7202. "conflict": {
  7203. "symfony/config": "<5.4",
  7204. "symfony/console": "<5.4",
  7205. "symfony/dependency-injection": "<5.4",
  7206. "symfony/http-kernel": "<5.4",
  7207. "symfony/twig-bundle": "<5.4",
  7208. "symfony/yaml": "<5.4"
  7209. },
  7210. "provide": {
  7211. "symfony/translation-implementation": "2.3|3.0"
  7212. },
  7213. "require-dev": {
  7214. "nikic/php-parser": "^4.13",
  7215. "psr/log": "^1|^2|^3",
  7216. "symfony/config": "^5.4|^6.0",
  7217. "symfony/console": "^5.4|^6.0",
  7218. "symfony/dependency-injection": "^5.4|^6.0",
  7219. "symfony/finder": "^5.4|^6.0",
  7220. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7221. "symfony/http-kernel": "^5.4|^6.0",
  7222. "symfony/intl": "^5.4|^6.0",
  7223. "symfony/polyfill-intl-icu": "^1.21",
  7224. "symfony/routing": "^5.4|^6.0",
  7225. "symfony/service-contracts": "^1.1.2|^2|^3",
  7226. "symfony/yaml": "^5.4|^6.0"
  7227. },
  7228. "suggest": {
  7229. "nikic/php-parser": "To use PhpAstExtractor",
  7230. "psr/log-implementation": "To use logging capability in translator",
  7231. "symfony/config": "",
  7232. "symfony/yaml": ""
  7233. },
  7234. "type": "library",
  7235. "autoload": {
  7236. "files": [
  7237. "Resources/functions.php"
  7238. ],
  7239. "psr-4": {
  7240. "Symfony\\Component\\Translation\\": ""
  7241. },
  7242. "exclude-from-classmap": [
  7243. "/Tests/"
  7244. ]
  7245. },
  7246. "notification-url": "https://packagist.org/downloads/",
  7247. "license": [
  7248. "MIT"
  7249. ],
  7250. "authors": [
  7251. {
  7252. "name": "Fabien Potencier",
  7253. "email": "fabien@symfony.com"
  7254. },
  7255. {
  7256. "name": "Symfony Community",
  7257. "homepage": "https://symfony.com/contributors"
  7258. }
  7259. ],
  7260. "description": "Provides tools to internationalize your application",
  7261. "homepage": "https://symfony.com",
  7262. "support": {
  7263. "source": "https://github.com/symfony/translation/tree/v6.2.8"
  7264. },
  7265. "funding": [
  7266. {
  7267. "url": "https://symfony.com/sponsor",
  7268. "type": "custom"
  7269. },
  7270. {
  7271. "url": "https://github.com/fabpot",
  7272. "type": "github"
  7273. },
  7274. {
  7275. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7276. "type": "tidelift"
  7277. }
  7278. ],
  7279. "time": "2023-03-31T09:14:44+00:00"
  7280. },
  7281. {
  7282. "name": "symfony/translation-contracts",
  7283. "version": "v3.2.1",
  7284. "source": {
  7285. "type": "git",
  7286. "url": "https://github.com/symfony/translation-contracts.git",
  7287. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8"
  7288. },
  7289. "dist": {
  7290. "type": "zip",
  7291. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dfec258b9dd17a6b24420d464c43bffe347441c8",
  7292. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8",
  7293. "shasum": ""
  7294. },
  7295. "require": {
  7296. "php": ">=8.1"
  7297. },
  7298. "suggest": {
  7299. "symfony/translation-implementation": ""
  7300. },
  7301. "type": "library",
  7302. "extra": {
  7303. "branch-alias": {
  7304. "dev-main": "3.3-dev"
  7305. },
  7306. "thanks": {
  7307. "name": "symfony/contracts",
  7308. "url": "https://github.com/symfony/contracts"
  7309. }
  7310. },
  7311. "autoload": {
  7312. "psr-4": {
  7313. "Symfony\\Contracts\\Translation\\": ""
  7314. },
  7315. "exclude-from-classmap": [
  7316. "/Test/"
  7317. ]
  7318. },
  7319. "notification-url": "https://packagist.org/downloads/",
  7320. "license": [
  7321. "MIT"
  7322. ],
  7323. "authors": [
  7324. {
  7325. "name": "Nicolas Grekas",
  7326. "email": "p@tchwork.com"
  7327. },
  7328. {
  7329. "name": "Symfony Community",
  7330. "homepage": "https://symfony.com/contributors"
  7331. }
  7332. ],
  7333. "description": "Generic abstractions related to translation",
  7334. "homepage": "https://symfony.com",
  7335. "keywords": [
  7336. "abstractions",
  7337. "contracts",
  7338. "decoupling",
  7339. "interfaces",
  7340. "interoperability",
  7341. "standards"
  7342. ],
  7343. "support": {
  7344. "source": "https://github.com/symfony/translation-contracts/tree/v3.2.1"
  7345. },
  7346. "funding": [
  7347. {
  7348. "url": "https://symfony.com/sponsor",
  7349. "type": "custom"
  7350. },
  7351. {
  7352. "url": "https://github.com/fabpot",
  7353. "type": "github"
  7354. },
  7355. {
  7356. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7357. "type": "tidelift"
  7358. }
  7359. ],
  7360. "time": "2023-03-01T10:32:47+00:00"
  7361. },
  7362. {
  7363. "name": "symfony/twig-bridge",
  7364. "version": "v6.2.8",
  7365. "source": {
  7366. "type": "git",
  7367. "url": "https://github.com/symfony/twig-bridge.git",
  7368. "reference": "30e3ad6ae749b2d2700ecf9b4a1a9d5c96b18927"
  7369. },
  7370. "dist": {
  7371. "type": "zip",
  7372. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/30e3ad6ae749b2d2700ecf9b4a1a9d5c96b18927",
  7373. "reference": "30e3ad6ae749b2d2700ecf9b4a1a9d5c96b18927",
  7374. "shasum": ""
  7375. },
  7376. "require": {
  7377. "php": ">=8.1",
  7378. "symfony/translation-contracts": "^1.1|^2|^3",
  7379. "twig/twig": "^2.13|^3.0.4"
  7380. },
  7381. "conflict": {
  7382. "phpdocumentor/reflection-docblock": "<3.2.2",
  7383. "phpdocumentor/type-resolver": "<1.4.0",
  7384. "symfony/console": "<5.4",
  7385. "symfony/form": "<6.2.7",
  7386. "symfony/http-foundation": "<5.4",
  7387. "symfony/http-kernel": "<6.2",
  7388. "symfony/mime": "<6.2",
  7389. "symfony/translation": "<5.4",
  7390. "symfony/workflow": "<5.4"
  7391. },
  7392. "require-dev": {
  7393. "doctrine/annotations": "^1.12|^2",
  7394. "egulias/email-validator": "^2.1.10|^3|^4",
  7395. "league/html-to-markdown": "^5.0",
  7396. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7397. "symfony/asset": "^5.4|^6.0",
  7398. "symfony/console": "^5.4|^6.0",
  7399. "symfony/dependency-injection": "^5.4|^6.0",
  7400. "symfony/expression-language": "^5.4|^6.0",
  7401. "symfony/finder": "^5.4|^6.0",
  7402. "symfony/form": "^6.2.7",
  7403. "symfony/html-sanitizer": "^6.1",
  7404. "symfony/http-foundation": "^5.4|^6.0",
  7405. "symfony/http-kernel": "^6.2",
  7406. "symfony/intl": "^5.4|^6.0",
  7407. "symfony/mime": "^6.2",
  7408. "symfony/polyfill-intl-icu": "~1.0",
  7409. "symfony/property-info": "^5.4|^6.0",
  7410. "symfony/routing": "^5.4|^6.0",
  7411. "symfony/security-acl": "^2.8|^3.0",
  7412. "symfony/security-core": "^5.4|^6.0",
  7413. "symfony/security-csrf": "^5.4|^6.0",
  7414. "symfony/security-http": "^5.4|^6.0",
  7415. "symfony/serializer": "^6.2",
  7416. "symfony/stopwatch": "^5.4|^6.0",
  7417. "symfony/translation": "^5.4|^6.0",
  7418. "symfony/web-link": "^5.4|^6.0",
  7419. "symfony/workflow": "^5.4|^6.0",
  7420. "symfony/yaml": "^5.4|^6.0",
  7421. "twig/cssinliner-extra": "^2.12|^3",
  7422. "twig/inky-extra": "^2.12|^3",
  7423. "twig/markdown-extra": "^2.12|^3"
  7424. },
  7425. "suggest": {
  7426. "symfony/asset": "For using the AssetExtension",
  7427. "symfony/expression-language": "For using the ExpressionExtension",
  7428. "symfony/finder": "",
  7429. "symfony/form": "For using the FormExtension",
  7430. "symfony/html-sanitizer": "For using the HtmlSanitizerExtension",
  7431. "symfony/http-kernel": "For using the HttpKernelExtension",
  7432. "symfony/routing": "For using the RoutingExtension",
  7433. "symfony/security-core": "For using the SecurityExtension",
  7434. "symfony/security-csrf": "For using the CsrfExtension",
  7435. "symfony/security-http": "For using the LogoutUrlExtension",
  7436. "symfony/stopwatch": "For using the StopwatchExtension",
  7437. "symfony/translation": "For using the TranslationExtension",
  7438. "symfony/var-dumper": "For using the DumpExtension",
  7439. "symfony/web-link": "For using the WebLinkExtension",
  7440. "symfony/yaml": "For using the YamlExtension"
  7441. },
  7442. "type": "symfony-bridge",
  7443. "autoload": {
  7444. "psr-4": {
  7445. "Symfony\\Bridge\\Twig\\": ""
  7446. },
  7447. "exclude-from-classmap": [
  7448. "/Tests/"
  7449. ]
  7450. },
  7451. "notification-url": "https://packagist.org/downloads/",
  7452. "license": [
  7453. "MIT"
  7454. ],
  7455. "authors": [
  7456. {
  7457. "name": "Fabien Potencier",
  7458. "email": "fabien@symfony.com"
  7459. },
  7460. {
  7461. "name": "Symfony Community",
  7462. "homepage": "https://symfony.com/contributors"
  7463. }
  7464. ],
  7465. "description": "Provides integration for Twig with various Symfony components",
  7466. "homepage": "https://symfony.com",
  7467. "support": {
  7468. "source": "https://github.com/symfony/twig-bridge/tree/v6.2.8"
  7469. },
  7470. "funding": [
  7471. {
  7472. "url": "https://symfony.com/sponsor",
  7473. "type": "custom"
  7474. },
  7475. {
  7476. "url": "https://github.com/fabpot",
  7477. "type": "github"
  7478. },
  7479. {
  7480. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7481. "type": "tidelift"
  7482. }
  7483. ],
  7484. "time": "2023-03-31T09:14:44+00:00"
  7485. },
  7486. {
  7487. "name": "symfony/twig-bundle",
  7488. "version": "v6.2.7",
  7489. "source": {
  7490. "type": "git",
  7491. "url": "https://github.com/symfony/twig-bundle.git",
  7492. "reference": "8bb562655c6ae4b8fae9cf72077591f38b961566"
  7493. },
  7494. "dist": {
  7495. "type": "zip",
  7496. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/8bb562655c6ae4b8fae9cf72077591f38b961566",
  7497. "reference": "8bb562655c6ae4b8fae9cf72077591f38b961566",
  7498. "shasum": ""
  7499. },
  7500. "require": {
  7501. "composer-runtime-api": ">=2.1",
  7502. "php": ">=8.1",
  7503. "symfony/config": "^6.1",
  7504. "symfony/dependency-injection": "^6.1",
  7505. "symfony/http-foundation": "^5.4|^6.0",
  7506. "symfony/http-kernel": "^6.2",
  7507. "symfony/twig-bridge": "^6.2",
  7508. "twig/twig": "^2.13|^3.0.4"
  7509. },
  7510. "conflict": {
  7511. "symfony/framework-bundle": "<5.4",
  7512. "symfony/translation": "<5.4"
  7513. },
  7514. "require-dev": {
  7515. "doctrine/annotations": "^1.10.4|^2",
  7516. "symfony/asset": "^5.4|^6.0",
  7517. "symfony/expression-language": "^5.4|^6.0",
  7518. "symfony/finder": "^5.4|^6.0",
  7519. "symfony/form": "^5.4|^6.0",
  7520. "symfony/framework-bundle": "^5.4|^6.0",
  7521. "symfony/routing": "^5.4|^6.0",
  7522. "symfony/stopwatch": "^5.4|^6.0",
  7523. "symfony/translation": "^5.4|^6.0",
  7524. "symfony/web-link": "^5.4|^6.0",
  7525. "symfony/yaml": "^5.4|^6.0"
  7526. },
  7527. "type": "symfony-bundle",
  7528. "autoload": {
  7529. "psr-4": {
  7530. "Symfony\\Bundle\\TwigBundle\\": ""
  7531. },
  7532. "exclude-from-classmap": [
  7533. "/Tests/"
  7534. ]
  7535. },
  7536. "notification-url": "https://packagist.org/downloads/",
  7537. "license": [
  7538. "MIT"
  7539. ],
  7540. "authors": [
  7541. {
  7542. "name": "Fabien Potencier",
  7543. "email": "fabien@symfony.com"
  7544. },
  7545. {
  7546. "name": "Symfony Community",
  7547. "homepage": "https://symfony.com/contributors"
  7548. }
  7549. ],
  7550. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7551. "homepage": "https://symfony.com",
  7552. "support": {
  7553. "source": "https://github.com/symfony/twig-bundle/tree/v6.2.7"
  7554. },
  7555. "funding": [
  7556. {
  7557. "url": "https://symfony.com/sponsor",
  7558. "type": "custom"
  7559. },
  7560. {
  7561. "url": "https://github.com/fabpot",
  7562. "type": "github"
  7563. },
  7564. {
  7565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7566. "type": "tidelift"
  7567. }
  7568. ],
  7569. "time": "2023-02-14T08:44:56+00:00"
  7570. },
  7571. {
  7572. "name": "symfony/validator",
  7573. "version": "v6.2.8",
  7574. "source": {
  7575. "type": "git",
  7576. "url": "https://github.com/symfony/validator.git",
  7577. "reference": "c63584f84edbdba9d2519f888350dd90615abe35"
  7578. },
  7579. "dist": {
  7580. "type": "zip",
  7581. "url": "https://api.github.com/repos/symfony/validator/zipball/c63584f84edbdba9d2519f888350dd90615abe35",
  7582. "reference": "c63584f84edbdba9d2519f888350dd90615abe35",
  7583. "shasum": ""
  7584. },
  7585. "require": {
  7586. "php": ">=8.1",
  7587. "symfony/deprecation-contracts": "^2.1|^3",
  7588. "symfony/polyfill-ctype": "~1.8",
  7589. "symfony/polyfill-mbstring": "~1.0",
  7590. "symfony/translation-contracts": "^1.1|^2|^3"
  7591. },
  7592. "conflict": {
  7593. "doctrine/annotations": "<1.13",
  7594. "doctrine/lexer": "<1.1",
  7595. "phpunit/phpunit": "<5.4.3",
  7596. "symfony/dependency-injection": "<5.4",
  7597. "symfony/expression-language": "<5.4",
  7598. "symfony/http-kernel": "<5.4",
  7599. "symfony/intl": "<5.4",
  7600. "symfony/property-info": "<5.4",
  7601. "symfony/translation": "<5.4",
  7602. "symfony/yaml": "<5.4"
  7603. },
  7604. "require-dev": {
  7605. "doctrine/annotations": "^1.13|^2",
  7606. "egulias/email-validator": "^2.1.10|^3|^4",
  7607. "symfony/cache": "^5.4|^6.0",
  7608. "symfony/config": "^5.4|^6.0",
  7609. "symfony/console": "^5.4|^6.0",
  7610. "symfony/dependency-injection": "^5.4|^6.0",
  7611. "symfony/expression-language": "^5.4|^6.0",
  7612. "symfony/finder": "^5.4|^6.0",
  7613. "symfony/http-client": "^5.4|^6.0",
  7614. "symfony/http-foundation": "^5.4|^6.0",
  7615. "symfony/http-kernel": "^5.4|^6.0",
  7616. "symfony/intl": "^5.4|^6.0",
  7617. "symfony/mime": "^5.4|^6.0",
  7618. "symfony/property-access": "^5.4|^6.0",
  7619. "symfony/property-info": "^5.4|^6.0",
  7620. "symfony/translation": "^5.4|^6.0",
  7621. "symfony/yaml": "^5.4|^6.0"
  7622. },
  7623. "suggest": {
  7624. "egulias/email-validator": "Strict (RFC compliant) email validation",
  7625. "psr/cache-implementation": "For using the mapping cache.",
  7626. "symfony/config": "",
  7627. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  7628. "symfony/http-foundation": "",
  7629. "symfony/intl": "",
  7630. "symfony/property-access": "For accessing properties within comparison constraints",
  7631. "symfony/property-info": "To automatically add NotNull and Type constraints",
  7632. "symfony/translation": "For translating validation errors.",
  7633. "symfony/yaml": ""
  7634. },
  7635. "type": "library",
  7636. "autoload": {
  7637. "psr-4": {
  7638. "Symfony\\Component\\Validator\\": ""
  7639. },
  7640. "exclude-from-classmap": [
  7641. "/Tests/"
  7642. ]
  7643. },
  7644. "notification-url": "https://packagist.org/downloads/",
  7645. "license": [
  7646. "MIT"
  7647. ],
  7648. "authors": [
  7649. {
  7650. "name": "Fabien Potencier",
  7651. "email": "fabien@symfony.com"
  7652. },
  7653. {
  7654. "name": "Symfony Community",
  7655. "homepage": "https://symfony.com/contributors"
  7656. }
  7657. ],
  7658. "description": "Provides tools to validate values",
  7659. "homepage": "https://symfony.com",
  7660. "support": {
  7661. "source": "https://github.com/symfony/validator/tree/v6.2.8"
  7662. },
  7663. "funding": [
  7664. {
  7665. "url": "https://symfony.com/sponsor",
  7666. "type": "custom"
  7667. },
  7668. {
  7669. "url": "https://github.com/fabpot",
  7670. "type": "github"
  7671. },
  7672. {
  7673. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7674. "type": "tidelift"
  7675. }
  7676. ],
  7677. "time": "2023-03-20T16:06:02+00:00"
  7678. },
  7679. {
  7680. "name": "symfony/var-dumper",
  7681. "version": "v6.2.8",
  7682. "source": {
  7683. "type": "git",
  7684. "url": "https://github.com/symfony/var-dumper.git",
  7685. "reference": "d37ab6787be2db993747b6218fcc96e8e3bb4bd0"
  7686. },
  7687. "dist": {
  7688. "type": "zip",
  7689. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d37ab6787be2db993747b6218fcc96e8e3bb4bd0",
  7690. "reference": "d37ab6787be2db993747b6218fcc96e8e3bb4bd0",
  7691. "shasum": ""
  7692. },
  7693. "require": {
  7694. "php": ">=8.1",
  7695. "symfony/polyfill-mbstring": "~1.0"
  7696. },
  7697. "conflict": {
  7698. "phpunit/phpunit": "<5.4.3",
  7699. "symfony/console": "<5.4"
  7700. },
  7701. "require-dev": {
  7702. "ext-iconv": "*",
  7703. "symfony/console": "^5.4|^6.0",
  7704. "symfony/process": "^5.4|^6.0",
  7705. "symfony/uid": "^5.4|^6.0",
  7706. "twig/twig": "^2.13|^3.0.4"
  7707. },
  7708. "suggest": {
  7709. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7710. "ext-intl": "To show region name in time zone dump",
  7711. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7712. },
  7713. "bin": [
  7714. "Resources/bin/var-dump-server"
  7715. ],
  7716. "type": "library",
  7717. "autoload": {
  7718. "files": [
  7719. "Resources/functions/dump.php"
  7720. ],
  7721. "psr-4": {
  7722. "Symfony\\Component\\VarDumper\\": ""
  7723. },
  7724. "exclude-from-classmap": [
  7725. "/Tests/"
  7726. ]
  7727. },
  7728. "notification-url": "https://packagist.org/downloads/",
  7729. "license": [
  7730. "MIT"
  7731. ],
  7732. "authors": [
  7733. {
  7734. "name": "Nicolas Grekas",
  7735. "email": "p@tchwork.com"
  7736. },
  7737. {
  7738. "name": "Symfony Community",
  7739. "homepage": "https://symfony.com/contributors"
  7740. }
  7741. ],
  7742. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7743. "homepage": "https://symfony.com",
  7744. "keywords": [
  7745. "debug",
  7746. "dump"
  7747. ],
  7748. "support": {
  7749. "source": "https://github.com/symfony/var-dumper/tree/v6.2.8"
  7750. },
  7751. "funding": [
  7752. {
  7753. "url": "https://symfony.com/sponsor",
  7754. "type": "custom"
  7755. },
  7756. {
  7757. "url": "https://github.com/fabpot",
  7758. "type": "github"
  7759. },
  7760. {
  7761. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7762. "type": "tidelift"
  7763. }
  7764. ],
  7765. "time": "2023-03-29T21:42:15+00:00"
  7766. },
  7767. {
  7768. "name": "symfony/var-exporter",
  7769. "version": "v6.2.8",
  7770. "source": {
  7771. "type": "git",
  7772. "url": "https://github.com/symfony/var-exporter.git",
  7773. "reference": "8302bb670204500d492c6b8c595ee9a27da62cd6"
  7774. },
  7775. "dist": {
  7776. "type": "zip",
  7777. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/8302bb670204500d492c6b8c595ee9a27da62cd6",
  7778. "reference": "8302bb670204500d492c6b8c595ee9a27da62cd6",
  7779. "shasum": ""
  7780. },
  7781. "require": {
  7782. "php": ">=8.1"
  7783. },
  7784. "require-dev": {
  7785. "symfony/var-dumper": "^5.4|^6.0"
  7786. },
  7787. "type": "library",
  7788. "autoload": {
  7789. "psr-4": {
  7790. "Symfony\\Component\\VarExporter\\": ""
  7791. },
  7792. "exclude-from-classmap": [
  7793. "/Tests/"
  7794. ]
  7795. },
  7796. "notification-url": "https://packagist.org/downloads/",
  7797. "license": [
  7798. "MIT"
  7799. ],
  7800. "authors": [
  7801. {
  7802. "name": "Nicolas Grekas",
  7803. "email": "p@tchwork.com"
  7804. },
  7805. {
  7806. "name": "Symfony Community",
  7807. "homepage": "https://symfony.com/contributors"
  7808. }
  7809. ],
  7810. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7811. "homepage": "https://symfony.com",
  7812. "keywords": [
  7813. "clone",
  7814. "construct",
  7815. "export",
  7816. "hydrate",
  7817. "instantiate",
  7818. "lazy-loading",
  7819. "proxy",
  7820. "serialize"
  7821. ],
  7822. "support": {
  7823. "source": "https://github.com/symfony/var-exporter/tree/v6.2.8"
  7824. },
  7825. "funding": [
  7826. {
  7827. "url": "https://symfony.com/sponsor",
  7828. "type": "custom"
  7829. },
  7830. {
  7831. "url": "https://github.com/fabpot",
  7832. "type": "github"
  7833. },
  7834. {
  7835. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7836. "type": "tidelift"
  7837. }
  7838. ],
  7839. "time": "2023-03-14T15:48:45+00:00"
  7840. },
  7841. {
  7842. "name": "symfony/web-link",
  7843. "version": "v6.2.7",
  7844. "source": {
  7845. "type": "git",
  7846. "url": "https://github.com/symfony/web-link.git",
  7847. "reference": "410aac2034608ac661cdca1968e3c56d4164abc8"
  7848. },
  7849. "dist": {
  7850. "type": "zip",
  7851. "url": "https://api.github.com/repos/symfony/web-link/zipball/410aac2034608ac661cdca1968e3c56d4164abc8",
  7852. "reference": "410aac2034608ac661cdca1968e3c56d4164abc8",
  7853. "shasum": ""
  7854. },
  7855. "require": {
  7856. "php": ">=8.1",
  7857. "psr/link": "^1.1|^2.0"
  7858. },
  7859. "conflict": {
  7860. "symfony/http-kernel": "<5.4"
  7861. },
  7862. "provide": {
  7863. "psr/link-implementation": "1.0|2.0"
  7864. },
  7865. "require-dev": {
  7866. "symfony/http-kernel": "^5.4|^6.0"
  7867. },
  7868. "suggest": {
  7869. "symfony/http-kernel": ""
  7870. },
  7871. "type": "library",
  7872. "autoload": {
  7873. "psr-4": {
  7874. "Symfony\\Component\\WebLink\\": ""
  7875. },
  7876. "exclude-from-classmap": [
  7877. "/Tests/"
  7878. ]
  7879. },
  7880. "notification-url": "https://packagist.org/downloads/",
  7881. "license": [
  7882. "MIT"
  7883. ],
  7884. "authors": [
  7885. {
  7886. "name": "Kévin Dunglas",
  7887. "email": "dunglas@gmail.com"
  7888. },
  7889. {
  7890. "name": "Symfony Community",
  7891. "homepage": "https://symfony.com/contributors"
  7892. }
  7893. ],
  7894. "description": "Manages links between resources",
  7895. "homepage": "https://symfony.com",
  7896. "keywords": [
  7897. "dns-prefetch",
  7898. "http",
  7899. "http2",
  7900. "link",
  7901. "performance",
  7902. "prefetch",
  7903. "preload",
  7904. "prerender",
  7905. "psr13",
  7906. "push"
  7907. ],
  7908. "support": {
  7909. "source": "https://github.com/symfony/web-link/tree/v6.2.7"
  7910. },
  7911. "funding": [
  7912. {
  7913. "url": "https://symfony.com/sponsor",
  7914. "type": "custom"
  7915. },
  7916. {
  7917. "url": "https://github.com/fabpot",
  7918. "type": "github"
  7919. },
  7920. {
  7921. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7922. "type": "tidelift"
  7923. }
  7924. ],
  7925. "time": "2023-02-14T08:44:56+00:00"
  7926. },
  7927. {
  7928. "name": "symfony/webpack-encore-bundle",
  7929. "version": "v1.16.1",
  7930. "source": {
  7931. "type": "git",
  7932. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  7933. "reference": "1862d71e483769b40278548a30e756ce13ef9d4c"
  7934. },
  7935. "dist": {
  7936. "type": "zip",
  7937. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/1862d71e483769b40278548a30e756ce13ef9d4c",
  7938. "reference": "1862d71e483769b40278548a30e756ce13ef9d4c",
  7939. "shasum": ""
  7940. },
  7941. "require": {
  7942. "php": ">=7.1.3",
  7943. "symfony/asset": "^4.4 || ^5.0 || ^6.0",
  7944. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  7945. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  7946. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  7947. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  7948. "symfony/polyfill-php80": "^1.25.0",
  7949. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  7950. },
  7951. "require-dev": {
  7952. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  7953. "symfony/phpunit-bridge": "^5.3 || ^6.0",
  7954. "symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
  7955. "symfony/web-link": "^4.4 || ^5.0 || ^6.0"
  7956. },
  7957. "type": "symfony-bundle",
  7958. "extra": {
  7959. "thanks": {
  7960. "name": "symfony/webpack-encore",
  7961. "url": "https://github.com/symfony/webpack-encore"
  7962. }
  7963. },
  7964. "autoload": {
  7965. "psr-4": {
  7966. "Symfony\\WebpackEncoreBundle\\": "src"
  7967. }
  7968. },
  7969. "notification-url": "https://packagist.org/downloads/",
  7970. "license": [
  7971. "MIT"
  7972. ],
  7973. "authors": [
  7974. {
  7975. "name": "Symfony Community",
  7976. "homepage": "https://symfony.com/contributors"
  7977. }
  7978. ],
  7979. "description": "Integration with your Symfony app & Webpack Encore!",
  7980. "support": {
  7981. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  7982. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.16.1"
  7983. },
  7984. "funding": [
  7985. {
  7986. "url": "https://symfony.com/sponsor",
  7987. "type": "custom"
  7988. },
  7989. {
  7990. "url": "https://github.com/fabpot",
  7991. "type": "github"
  7992. },
  7993. {
  7994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7995. "type": "tidelift"
  7996. }
  7997. ],
  7998. "time": "2023-01-18T19:37:55+00:00"
  7999. },
  8000. {
  8001. "name": "symfony/yaml",
  8002. "version": "v6.2.7",
  8003. "source": {
  8004. "type": "git",
  8005. "url": "https://github.com/symfony/yaml.git",
  8006. "reference": "e8e6a1d59e050525f27a1f530aa9703423cb7f57"
  8007. },
  8008. "dist": {
  8009. "type": "zip",
  8010. "url": "https://api.github.com/repos/symfony/yaml/zipball/e8e6a1d59e050525f27a1f530aa9703423cb7f57",
  8011. "reference": "e8e6a1d59e050525f27a1f530aa9703423cb7f57",
  8012. "shasum": ""
  8013. },
  8014. "require": {
  8015. "php": ">=8.1",
  8016. "symfony/polyfill-ctype": "^1.8"
  8017. },
  8018. "conflict": {
  8019. "symfony/console": "<5.4"
  8020. },
  8021. "require-dev": {
  8022. "symfony/console": "^5.4|^6.0"
  8023. },
  8024. "suggest": {
  8025. "symfony/console": "For validating YAML files using the lint command"
  8026. },
  8027. "bin": [
  8028. "Resources/bin/yaml-lint"
  8029. ],
  8030. "type": "library",
  8031. "autoload": {
  8032. "psr-4": {
  8033. "Symfony\\Component\\Yaml\\": ""
  8034. },
  8035. "exclude-from-classmap": [
  8036. "/Tests/"
  8037. ]
  8038. },
  8039. "notification-url": "https://packagist.org/downloads/",
  8040. "license": [
  8041. "MIT"
  8042. ],
  8043. "authors": [
  8044. {
  8045. "name": "Fabien Potencier",
  8046. "email": "fabien@symfony.com"
  8047. },
  8048. {
  8049. "name": "Symfony Community",
  8050. "homepage": "https://symfony.com/contributors"
  8051. }
  8052. ],
  8053. "description": "Loads and dumps YAML files",
  8054. "homepage": "https://symfony.com",
  8055. "support": {
  8056. "source": "https://github.com/symfony/yaml/tree/v6.2.7"
  8057. },
  8058. "funding": [
  8059. {
  8060. "url": "https://symfony.com/sponsor",
  8061. "type": "custom"
  8062. },
  8063. {
  8064. "url": "https://github.com/fabpot",
  8065. "type": "github"
  8066. },
  8067. {
  8068. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8069. "type": "tidelift"
  8070. }
  8071. ],
  8072. "time": "2023-02-16T09:57:23+00:00"
  8073. },
  8074. {
  8075. "name": "twig/extra-bundle",
  8076. "version": "v3.5.1",
  8077. "source": {
  8078. "type": "git",
  8079. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8080. "reference": "a961e553a624eebdbd423ad5ab931497ca6d87cd"
  8081. },
  8082. "dist": {
  8083. "type": "zip",
  8084. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/a961e553a624eebdbd423ad5ab931497ca6d87cd",
  8085. "reference": "a961e553a624eebdbd423ad5ab931497ca6d87cd",
  8086. "shasum": ""
  8087. },
  8088. "require": {
  8089. "php": ">=7.2.5",
  8090. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  8091. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  8092. "twig/twig": "^2.7|^3.0"
  8093. },
  8094. "require-dev": {
  8095. "league/commonmark": "^1.0|^2.0",
  8096. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  8097. "twig/cache-extra": "^3.0",
  8098. "twig/cssinliner-extra": "^2.12|^3.0",
  8099. "twig/html-extra": "^2.12|^3.0",
  8100. "twig/inky-extra": "^2.12|^3.0",
  8101. "twig/intl-extra": "^2.12|^3.0",
  8102. "twig/markdown-extra": "^2.12|^3.0",
  8103. "twig/string-extra": "^2.12|^3.0"
  8104. },
  8105. "type": "symfony-bundle",
  8106. "extra": {
  8107. "branch-alias": {
  8108. "dev-master": "3.5-dev"
  8109. }
  8110. },
  8111. "autoload": {
  8112. "psr-4": {
  8113. "Twig\\Extra\\TwigExtraBundle\\": ""
  8114. },
  8115. "exclude-from-classmap": [
  8116. "/Tests/"
  8117. ]
  8118. },
  8119. "notification-url": "https://packagist.org/downloads/",
  8120. "license": [
  8121. "MIT"
  8122. ],
  8123. "authors": [
  8124. {
  8125. "name": "Fabien Potencier",
  8126. "email": "fabien@symfony.com",
  8127. "homepage": "http://fabien.potencier.org",
  8128. "role": "Lead Developer"
  8129. }
  8130. ],
  8131. "description": "A Symfony bundle for extra Twig extensions",
  8132. "homepage": "https://twig.symfony.com",
  8133. "keywords": [
  8134. "bundle",
  8135. "extra",
  8136. "twig"
  8137. ],
  8138. "support": {
  8139. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.5.1"
  8140. },
  8141. "funding": [
  8142. {
  8143. "url": "https://github.com/fabpot",
  8144. "type": "github"
  8145. },
  8146. {
  8147. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8148. "type": "tidelift"
  8149. }
  8150. ],
  8151. "time": "2023-02-08T07:44:55+00:00"
  8152. },
  8153. {
  8154. "name": "twig/markdown-extra",
  8155. "version": "v3.5.1",
  8156. "source": {
  8157. "type": "git",
  8158. "url": "https://github.com/twigphp/markdown-extra.git",
  8159. "reference": "9474c89fd2787187a3809e5e964dfce2395ae5f0"
  8160. },
  8161. "dist": {
  8162. "type": "zip",
  8163. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/9474c89fd2787187a3809e5e964dfce2395ae5f0",
  8164. "reference": "9474c89fd2787187a3809e5e964dfce2395ae5f0",
  8165. "shasum": ""
  8166. },
  8167. "require": {
  8168. "php": ">=7.1.3",
  8169. "twig/twig": "^2.7|^3.0"
  8170. },
  8171. "require-dev": {
  8172. "erusev/parsedown": "^1.7",
  8173. "league/commonmark": "^1.0|^2.0",
  8174. "league/html-to-markdown": "^4.8|^5.0",
  8175. "michelf/php-markdown": "^1.8|^2.0",
  8176. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  8177. },
  8178. "type": "library",
  8179. "extra": {
  8180. "branch-alias": {
  8181. "dev-master": "3.5-dev"
  8182. }
  8183. },
  8184. "autoload": {
  8185. "psr-4": {
  8186. "Twig\\Extra\\Markdown\\": ""
  8187. },
  8188. "exclude-from-classmap": [
  8189. "/Tests/"
  8190. ]
  8191. },
  8192. "notification-url": "https://packagist.org/downloads/",
  8193. "license": [
  8194. "MIT"
  8195. ],
  8196. "authors": [
  8197. {
  8198. "name": "Fabien Potencier",
  8199. "email": "fabien@symfony.com",
  8200. "homepage": "http://fabien.potencier.org",
  8201. "role": "Lead Developer"
  8202. }
  8203. ],
  8204. "description": "A Twig extension for Markdown",
  8205. "homepage": "https://twig.symfony.com",
  8206. "keywords": [
  8207. "html",
  8208. "markdown",
  8209. "twig"
  8210. ],
  8211. "support": {
  8212. "source": "https://github.com/twigphp/markdown-extra/tree/v3.5.1"
  8213. },
  8214. "funding": [
  8215. {
  8216. "url": "https://github.com/fabpot",
  8217. "type": "github"
  8218. },
  8219. {
  8220. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8221. "type": "tidelift"
  8222. }
  8223. ],
  8224. "time": "2023-02-08T07:44:55+00:00"
  8225. },
  8226. {
  8227. "name": "twig/twig",
  8228. "version": "v3.5.1",
  8229. "source": {
  8230. "type": "git",
  8231. "url": "https://github.com/twigphp/Twig.git",
  8232. "reference": "a6e0510cc793912b451fd40ab983a1d28f611c15"
  8233. },
  8234. "dist": {
  8235. "type": "zip",
  8236. "url": "https://api.github.com/repos/twigphp/Twig/zipball/a6e0510cc793912b451fd40ab983a1d28f611c15",
  8237. "reference": "a6e0510cc793912b451fd40ab983a1d28f611c15",
  8238. "shasum": ""
  8239. },
  8240. "require": {
  8241. "php": ">=7.2.5",
  8242. "symfony/polyfill-ctype": "^1.8",
  8243. "symfony/polyfill-mbstring": "^1.3"
  8244. },
  8245. "require-dev": {
  8246. "psr/container": "^1.0",
  8247. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  8248. },
  8249. "type": "library",
  8250. "extra": {
  8251. "branch-alias": {
  8252. "dev-master": "3.5-dev"
  8253. }
  8254. },
  8255. "autoload": {
  8256. "psr-4": {
  8257. "Twig\\": "src/"
  8258. }
  8259. },
  8260. "notification-url": "https://packagist.org/downloads/",
  8261. "license": [
  8262. "BSD-3-Clause"
  8263. ],
  8264. "authors": [
  8265. {
  8266. "name": "Fabien Potencier",
  8267. "email": "fabien@symfony.com",
  8268. "homepage": "http://fabien.potencier.org",
  8269. "role": "Lead Developer"
  8270. },
  8271. {
  8272. "name": "Twig Team",
  8273. "role": "Contributors"
  8274. },
  8275. {
  8276. "name": "Armin Ronacher",
  8277. "email": "armin.ronacher@active-4.com",
  8278. "role": "Project Founder"
  8279. }
  8280. ],
  8281. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8282. "homepage": "https://twig.symfony.com",
  8283. "keywords": [
  8284. "templating"
  8285. ],
  8286. "support": {
  8287. "issues": "https://github.com/twigphp/Twig/issues",
  8288. "source": "https://github.com/twigphp/Twig/tree/v3.5.1"
  8289. },
  8290. "funding": [
  8291. {
  8292. "url": "https://github.com/fabpot",
  8293. "type": "github"
  8294. },
  8295. {
  8296. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8297. "type": "tidelift"
  8298. }
  8299. ],
  8300. "time": "2023-02-08T07:49:20+00:00"
  8301. },
  8302. {
  8303. "name": "webmozart/assert",
  8304. "version": "1.11.0",
  8305. "source": {
  8306. "type": "git",
  8307. "url": "https://github.com/webmozarts/assert.git",
  8308. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8309. },
  8310. "dist": {
  8311. "type": "zip",
  8312. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8313. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8314. "shasum": ""
  8315. },
  8316. "require": {
  8317. "ext-ctype": "*",
  8318. "php": "^7.2 || ^8.0"
  8319. },
  8320. "conflict": {
  8321. "phpstan/phpstan": "<0.12.20",
  8322. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8323. },
  8324. "require-dev": {
  8325. "phpunit/phpunit": "^8.5.13"
  8326. },
  8327. "type": "library",
  8328. "extra": {
  8329. "branch-alias": {
  8330. "dev-master": "1.10-dev"
  8331. }
  8332. },
  8333. "autoload": {
  8334. "psr-4": {
  8335. "Webmozart\\Assert\\": "src/"
  8336. }
  8337. },
  8338. "notification-url": "https://packagist.org/downloads/",
  8339. "license": [
  8340. "MIT"
  8341. ],
  8342. "authors": [
  8343. {
  8344. "name": "Bernhard Schussek",
  8345. "email": "bschussek@gmail.com"
  8346. }
  8347. ],
  8348. "description": "Assertions to validate method input/output with nice error messages.",
  8349. "keywords": [
  8350. "assert",
  8351. "check",
  8352. "validate"
  8353. ],
  8354. "support": {
  8355. "issues": "https://github.com/webmozarts/assert/issues",
  8356. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8357. },
  8358. "time": "2022-06-03T18:03:27+00:00"
  8359. }
  8360. ],
  8361. "packages-dev": [
  8362. {
  8363. "name": "myclabs/deep-copy",
  8364. "version": "1.11.1",
  8365. "source": {
  8366. "type": "git",
  8367. "url": "https://github.com/myclabs/DeepCopy.git",
  8368. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8369. },
  8370. "dist": {
  8371. "type": "zip",
  8372. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8373. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8374. "shasum": ""
  8375. },
  8376. "require": {
  8377. "php": "^7.1 || ^8.0"
  8378. },
  8379. "conflict": {
  8380. "doctrine/collections": "<1.6.8",
  8381. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8382. },
  8383. "require-dev": {
  8384. "doctrine/collections": "^1.6.8",
  8385. "doctrine/common": "^2.13.3 || ^3.2.2",
  8386. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8387. },
  8388. "type": "library",
  8389. "autoload": {
  8390. "files": [
  8391. "src/DeepCopy/deep_copy.php"
  8392. ],
  8393. "psr-4": {
  8394. "DeepCopy\\": "src/DeepCopy/"
  8395. }
  8396. },
  8397. "notification-url": "https://packagist.org/downloads/",
  8398. "license": [
  8399. "MIT"
  8400. ],
  8401. "description": "Create deep copies (clones) of your objects",
  8402. "keywords": [
  8403. "clone",
  8404. "copy",
  8405. "duplicate",
  8406. "object",
  8407. "object graph"
  8408. ],
  8409. "support": {
  8410. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8411. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8412. },
  8413. "funding": [
  8414. {
  8415. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8416. "type": "tidelift"
  8417. }
  8418. ],
  8419. "time": "2023-03-08T13:26:56+00:00"
  8420. },
  8421. {
  8422. "name": "nikic/php-parser",
  8423. "version": "v4.15.4",
  8424. "source": {
  8425. "type": "git",
  8426. "url": "https://github.com/nikic/PHP-Parser.git",
  8427. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
  8428. },
  8429. "dist": {
  8430. "type": "zip",
  8431. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  8432. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  8433. "shasum": ""
  8434. },
  8435. "require": {
  8436. "ext-tokenizer": "*",
  8437. "php": ">=7.0"
  8438. },
  8439. "require-dev": {
  8440. "ircmaxell/php-yacc": "^0.0.7",
  8441. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8442. },
  8443. "bin": [
  8444. "bin/php-parse"
  8445. ],
  8446. "type": "library",
  8447. "extra": {
  8448. "branch-alias": {
  8449. "dev-master": "4.9-dev"
  8450. }
  8451. },
  8452. "autoload": {
  8453. "psr-4": {
  8454. "PhpParser\\": "lib/PhpParser"
  8455. }
  8456. },
  8457. "notification-url": "https://packagist.org/downloads/",
  8458. "license": [
  8459. "BSD-3-Clause"
  8460. ],
  8461. "authors": [
  8462. {
  8463. "name": "Nikita Popov"
  8464. }
  8465. ],
  8466. "description": "A PHP parser written in PHP",
  8467. "keywords": [
  8468. "parser",
  8469. "php"
  8470. ],
  8471. "support": {
  8472. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8473. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
  8474. },
  8475. "time": "2023-03-05T19:49:14+00:00"
  8476. },
  8477. {
  8478. "name": "phar-io/manifest",
  8479. "version": "2.0.3",
  8480. "source": {
  8481. "type": "git",
  8482. "url": "https://github.com/phar-io/manifest.git",
  8483. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8484. },
  8485. "dist": {
  8486. "type": "zip",
  8487. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8488. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8489. "shasum": ""
  8490. },
  8491. "require": {
  8492. "ext-dom": "*",
  8493. "ext-phar": "*",
  8494. "ext-xmlwriter": "*",
  8495. "phar-io/version": "^3.0.1",
  8496. "php": "^7.2 || ^8.0"
  8497. },
  8498. "type": "library",
  8499. "extra": {
  8500. "branch-alias": {
  8501. "dev-master": "2.0.x-dev"
  8502. }
  8503. },
  8504. "autoload": {
  8505. "classmap": [
  8506. "src/"
  8507. ]
  8508. },
  8509. "notification-url": "https://packagist.org/downloads/",
  8510. "license": [
  8511. "BSD-3-Clause"
  8512. ],
  8513. "authors": [
  8514. {
  8515. "name": "Arne Blankerts",
  8516. "email": "arne@blankerts.de",
  8517. "role": "Developer"
  8518. },
  8519. {
  8520. "name": "Sebastian Heuer",
  8521. "email": "sebastian@phpeople.de",
  8522. "role": "Developer"
  8523. },
  8524. {
  8525. "name": "Sebastian Bergmann",
  8526. "email": "sebastian@phpunit.de",
  8527. "role": "Developer"
  8528. }
  8529. ],
  8530. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8531. "support": {
  8532. "issues": "https://github.com/phar-io/manifest/issues",
  8533. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8534. },
  8535. "time": "2021-07-20T11:28:43+00:00"
  8536. },
  8537. {
  8538. "name": "phar-io/version",
  8539. "version": "3.2.1",
  8540. "source": {
  8541. "type": "git",
  8542. "url": "https://github.com/phar-io/version.git",
  8543. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8544. },
  8545. "dist": {
  8546. "type": "zip",
  8547. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8548. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8549. "shasum": ""
  8550. },
  8551. "require": {
  8552. "php": "^7.2 || ^8.0"
  8553. },
  8554. "type": "library",
  8555. "autoload": {
  8556. "classmap": [
  8557. "src/"
  8558. ]
  8559. },
  8560. "notification-url": "https://packagist.org/downloads/",
  8561. "license": [
  8562. "BSD-3-Clause"
  8563. ],
  8564. "authors": [
  8565. {
  8566. "name": "Arne Blankerts",
  8567. "email": "arne@blankerts.de",
  8568. "role": "Developer"
  8569. },
  8570. {
  8571. "name": "Sebastian Heuer",
  8572. "email": "sebastian@phpeople.de",
  8573. "role": "Developer"
  8574. },
  8575. {
  8576. "name": "Sebastian Bergmann",
  8577. "email": "sebastian@phpunit.de",
  8578. "role": "Developer"
  8579. }
  8580. ],
  8581. "description": "Library for handling version information and constraints",
  8582. "support": {
  8583. "issues": "https://github.com/phar-io/version/issues",
  8584. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8585. },
  8586. "time": "2022-02-21T01:04:05+00:00"
  8587. },
  8588. {
  8589. "name": "phpunit/php-code-coverage",
  8590. "version": "9.2.26",
  8591. "source": {
  8592. "type": "git",
  8593. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8594. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  8595. },
  8596. "dist": {
  8597. "type": "zip",
  8598. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  8599. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  8600. "shasum": ""
  8601. },
  8602. "require": {
  8603. "ext-dom": "*",
  8604. "ext-libxml": "*",
  8605. "ext-xmlwriter": "*",
  8606. "nikic/php-parser": "^4.15",
  8607. "php": ">=7.3",
  8608. "phpunit/php-file-iterator": "^3.0.3",
  8609. "phpunit/php-text-template": "^2.0.2",
  8610. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8611. "sebastian/complexity": "^2.0",
  8612. "sebastian/environment": "^5.1.2",
  8613. "sebastian/lines-of-code": "^1.0.3",
  8614. "sebastian/version": "^3.0.1",
  8615. "theseer/tokenizer": "^1.2.0"
  8616. },
  8617. "require-dev": {
  8618. "phpunit/phpunit": "^9.3"
  8619. },
  8620. "suggest": {
  8621. "ext-pcov": "PHP extension that provides line coverage",
  8622. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8623. },
  8624. "type": "library",
  8625. "extra": {
  8626. "branch-alias": {
  8627. "dev-master": "9.2-dev"
  8628. }
  8629. },
  8630. "autoload": {
  8631. "classmap": [
  8632. "src/"
  8633. ]
  8634. },
  8635. "notification-url": "https://packagist.org/downloads/",
  8636. "license": [
  8637. "BSD-3-Clause"
  8638. ],
  8639. "authors": [
  8640. {
  8641. "name": "Sebastian Bergmann",
  8642. "email": "sebastian@phpunit.de",
  8643. "role": "lead"
  8644. }
  8645. ],
  8646. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8647. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8648. "keywords": [
  8649. "coverage",
  8650. "testing",
  8651. "xunit"
  8652. ],
  8653. "support": {
  8654. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8655. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  8656. },
  8657. "funding": [
  8658. {
  8659. "url": "https://github.com/sebastianbergmann",
  8660. "type": "github"
  8661. }
  8662. ],
  8663. "time": "2023-03-06T12:58:08+00:00"
  8664. },
  8665. {
  8666. "name": "phpunit/php-file-iterator",
  8667. "version": "3.0.6",
  8668. "source": {
  8669. "type": "git",
  8670. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8671. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8672. },
  8673. "dist": {
  8674. "type": "zip",
  8675. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8676. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8677. "shasum": ""
  8678. },
  8679. "require": {
  8680. "php": ">=7.3"
  8681. },
  8682. "require-dev": {
  8683. "phpunit/phpunit": "^9.3"
  8684. },
  8685. "type": "library",
  8686. "extra": {
  8687. "branch-alias": {
  8688. "dev-master": "3.0-dev"
  8689. }
  8690. },
  8691. "autoload": {
  8692. "classmap": [
  8693. "src/"
  8694. ]
  8695. },
  8696. "notification-url": "https://packagist.org/downloads/",
  8697. "license": [
  8698. "BSD-3-Clause"
  8699. ],
  8700. "authors": [
  8701. {
  8702. "name": "Sebastian Bergmann",
  8703. "email": "sebastian@phpunit.de",
  8704. "role": "lead"
  8705. }
  8706. ],
  8707. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8708. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8709. "keywords": [
  8710. "filesystem",
  8711. "iterator"
  8712. ],
  8713. "support": {
  8714. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8715. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8716. },
  8717. "funding": [
  8718. {
  8719. "url": "https://github.com/sebastianbergmann",
  8720. "type": "github"
  8721. }
  8722. ],
  8723. "time": "2021-12-02T12:48:52+00:00"
  8724. },
  8725. {
  8726. "name": "phpunit/php-invoker",
  8727. "version": "3.1.1",
  8728. "source": {
  8729. "type": "git",
  8730. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8731. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8732. },
  8733. "dist": {
  8734. "type": "zip",
  8735. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8736. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8737. "shasum": ""
  8738. },
  8739. "require": {
  8740. "php": ">=7.3"
  8741. },
  8742. "require-dev": {
  8743. "ext-pcntl": "*",
  8744. "phpunit/phpunit": "^9.3"
  8745. },
  8746. "suggest": {
  8747. "ext-pcntl": "*"
  8748. },
  8749. "type": "library",
  8750. "extra": {
  8751. "branch-alias": {
  8752. "dev-master": "3.1-dev"
  8753. }
  8754. },
  8755. "autoload": {
  8756. "classmap": [
  8757. "src/"
  8758. ]
  8759. },
  8760. "notification-url": "https://packagist.org/downloads/",
  8761. "license": [
  8762. "BSD-3-Clause"
  8763. ],
  8764. "authors": [
  8765. {
  8766. "name": "Sebastian Bergmann",
  8767. "email": "sebastian@phpunit.de",
  8768. "role": "lead"
  8769. }
  8770. ],
  8771. "description": "Invoke callables with a timeout",
  8772. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8773. "keywords": [
  8774. "process"
  8775. ],
  8776. "support": {
  8777. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8778. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8779. },
  8780. "funding": [
  8781. {
  8782. "url": "https://github.com/sebastianbergmann",
  8783. "type": "github"
  8784. }
  8785. ],
  8786. "time": "2020-09-28T05:58:55+00:00"
  8787. },
  8788. {
  8789. "name": "phpunit/php-text-template",
  8790. "version": "2.0.4",
  8791. "source": {
  8792. "type": "git",
  8793. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8794. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8795. },
  8796. "dist": {
  8797. "type": "zip",
  8798. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8799. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8800. "shasum": ""
  8801. },
  8802. "require": {
  8803. "php": ">=7.3"
  8804. },
  8805. "require-dev": {
  8806. "phpunit/phpunit": "^9.3"
  8807. },
  8808. "type": "library",
  8809. "extra": {
  8810. "branch-alias": {
  8811. "dev-master": "2.0-dev"
  8812. }
  8813. },
  8814. "autoload": {
  8815. "classmap": [
  8816. "src/"
  8817. ]
  8818. },
  8819. "notification-url": "https://packagist.org/downloads/",
  8820. "license": [
  8821. "BSD-3-Clause"
  8822. ],
  8823. "authors": [
  8824. {
  8825. "name": "Sebastian Bergmann",
  8826. "email": "sebastian@phpunit.de",
  8827. "role": "lead"
  8828. }
  8829. ],
  8830. "description": "Simple template engine.",
  8831. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8832. "keywords": [
  8833. "template"
  8834. ],
  8835. "support": {
  8836. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8837. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8838. },
  8839. "funding": [
  8840. {
  8841. "url": "https://github.com/sebastianbergmann",
  8842. "type": "github"
  8843. }
  8844. ],
  8845. "time": "2020-10-26T05:33:50+00:00"
  8846. },
  8847. {
  8848. "name": "phpunit/php-timer",
  8849. "version": "5.0.3",
  8850. "source": {
  8851. "type": "git",
  8852. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8853. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8854. },
  8855. "dist": {
  8856. "type": "zip",
  8857. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8858. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8859. "shasum": ""
  8860. },
  8861. "require": {
  8862. "php": ">=7.3"
  8863. },
  8864. "require-dev": {
  8865. "phpunit/phpunit": "^9.3"
  8866. },
  8867. "type": "library",
  8868. "extra": {
  8869. "branch-alias": {
  8870. "dev-master": "5.0-dev"
  8871. }
  8872. },
  8873. "autoload": {
  8874. "classmap": [
  8875. "src/"
  8876. ]
  8877. },
  8878. "notification-url": "https://packagist.org/downloads/",
  8879. "license": [
  8880. "BSD-3-Clause"
  8881. ],
  8882. "authors": [
  8883. {
  8884. "name": "Sebastian Bergmann",
  8885. "email": "sebastian@phpunit.de",
  8886. "role": "lead"
  8887. }
  8888. ],
  8889. "description": "Utility class for timing",
  8890. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8891. "keywords": [
  8892. "timer"
  8893. ],
  8894. "support": {
  8895. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8896. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8897. },
  8898. "funding": [
  8899. {
  8900. "url": "https://github.com/sebastianbergmann",
  8901. "type": "github"
  8902. }
  8903. ],
  8904. "time": "2020-10-26T13:16:10+00:00"
  8905. },
  8906. {
  8907. "name": "phpunit/phpunit",
  8908. "version": "9.6.6",
  8909. "source": {
  8910. "type": "git",
  8911. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8912. "reference": "b65d59a059d3004a040c16a82e07bbdf6cfdd115"
  8913. },
  8914. "dist": {
  8915. "type": "zip",
  8916. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b65d59a059d3004a040c16a82e07bbdf6cfdd115",
  8917. "reference": "b65d59a059d3004a040c16a82e07bbdf6cfdd115",
  8918. "shasum": ""
  8919. },
  8920. "require": {
  8921. "doctrine/instantiator": "^1.3.1 || ^2",
  8922. "ext-dom": "*",
  8923. "ext-json": "*",
  8924. "ext-libxml": "*",
  8925. "ext-mbstring": "*",
  8926. "ext-xml": "*",
  8927. "ext-xmlwriter": "*",
  8928. "myclabs/deep-copy": "^1.10.1",
  8929. "phar-io/manifest": "^2.0.3",
  8930. "phar-io/version": "^3.0.2",
  8931. "php": ">=7.3",
  8932. "phpunit/php-code-coverage": "^9.2.13",
  8933. "phpunit/php-file-iterator": "^3.0.5",
  8934. "phpunit/php-invoker": "^3.1.1",
  8935. "phpunit/php-text-template": "^2.0.3",
  8936. "phpunit/php-timer": "^5.0.2",
  8937. "sebastian/cli-parser": "^1.0.1",
  8938. "sebastian/code-unit": "^1.0.6",
  8939. "sebastian/comparator": "^4.0.8",
  8940. "sebastian/diff": "^4.0.3",
  8941. "sebastian/environment": "^5.1.3",
  8942. "sebastian/exporter": "^4.0.5",
  8943. "sebastian/global-state": "^5.0.1",
  8944. "sebastian/object-enumerator": "^4.0.3",
  8945. "sebastian/resource-operations": "^3.0.3",
  8946. "sebastian/type": "^3.2",
  8947. "sebastian/version": "^3.0.2"
  8948. },
  8949. "suggest": {
  8950. "ext-soap": "To be able to generate mocks based on WSDL files",
  8951. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8952. },
  8953. "bin": [
  8954. "phpunit"
  8955. ],
  8956. "type": "library",
  8957. "extra": {
  8958. "branch-alias": {
  8959. "dev-master": "9.6-dev"
  8960. }
  8961. },
  8962. "autoload": {
  8963. "files": [
  8964. "src/Framework/Assert/Functions.php"
  8965. ],
  8966. "classmap": [
  8967. "src/"
  8968. ]
  8969. },
  8970. "notification-url": "https://packagist.org/downloads/",
  8971. "license": [
  8972. "BSD-3-Clause"
  8973. ],
  8974. "authors": [
  8975. {
  8976. "name": "Sebastian Bergmann",
  8977. "email": "sebastian@phpunit.de",
  8978. "role": "lead"
  8979. }
  8980. ],
  8981. "description": "The PHP Unit Testing framework.",
  8982. "homepage": "https://phpunit.de/",
  8983. "keywords": [
  8984. "phpunit",
  8985. "testing",
  8986. "xunit"
  8987. ],
  8988. "support": {
  8989. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8990. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8991. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.6"
  8992. },
  8993. "funding": [
  8994. {
  8995. "url": "https://phpunit.de/sponsors.html",
  8996. "type": "custom"
  8997. },
  8998. {
  8999. "url": "https://github.com/sebastianbergmann",
  9000. "type": "github"
  9001. },
  9002. {
  9003. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9004. "type": "tidelift"
  9005. }
  9006. ],
  9007. "time": "2023-03-27T11:43:46+00:00"
  9008. },
  9009. {
  9010. "name": "sebastian/cli-parser",
  9011. "version": "1.0.1",
  9012. "source": {
  9013. "type": "git",
  9014. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9015. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9016. },
  9017. "dist": {
  9018. "type": "zip",
  9019. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9020. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9021. "shasum": ""
  9022. },
  9023. "require": {
  9024. "php": ">=7.3"
  9025. },
  9026. "require-dev": {
  9027. "phpunit/phpunit": "^9.3"
  9028. },
  9029. "type": "library",
  9030. "extra": {
  9031. "branch-alias": {
  9032. "dev-master": "1.0-dev"
  9033. }
  9034. },
  9035. "autoload": {
  9036. "classmap": [
  9037. "src/"
  9038. ]
  9039. },
  9040. "notification-url": "https://packagist.org/downloads/",
  9041. "license": [
  9042. "BSD-3-Clause"
  9043. ],
  9044. "authors": [
  9045. {
  9046. "name": "Sebastian Bergmann",
  9047. "email": "sebastian@phpunit.de",
  9048. "role": "lead"
  9049. }
  9050. ],
  9051. "description": "Library for parsing CLI options",
  9052. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9053. "support": {
  9054. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9055. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9056. },
  9057. "funding": [
  9058. {
  9059. "url": "https://github.com/sebastianbergmann",
  9060. "type": "github"
  9061. }
  9062. ],
  9063. "time": "2020-09-28T06:08:49+00:00"
  9064. },
  9065. {
  9066. "name": "sebastian/code-unit",
  9067. "version": "1.0.8",
  9068. "source": {
  9069. "type": "git",
  9070. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9071. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9072. },
  9073. "dist": {
  9074. "type": "zip",
  9075. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9076. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9077. "shasum": ""
  9078. },
  9079. "require": {
  9080. "php": ">=7.3"
  9081. },
  9082. "require-dev": {
  9083. "phpunit/phpunit": "^9.3"
  9084. },
  9085. "type": "library",
  9086. "extra": {
  9087. "branch-alias": {
  9088. "dev-master": "1.0-dev"
  9089. }
  9090. },
  9091. "autoload": {
  9092. "classmap": [
  9093. "src/"
  9094. ]
  9095. },
  9096. "notification-url": "https://packagist.org/downloads/",
  9097. "license": [
  9098. "BSD-3-Clause"
  9099. ],
  9100. "authors": [
  9101. {
  9102. "name": "Sebastian Bergmann",
  9103. "email": "sebastian@phpunit.de",
  9104. "role": "lead"
  9105. }
  9106. ],
  9107. "description": "Collection of value objects that represent the PHP code units",
  9108. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9109. "support": {
  9110. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9111. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9112. },
  9113. "funding": [
  9114. {
  9115. "url": "https://github.com/sebastianbergmann",
  9116. "type": "github"
  9117. }
  9118. ],
  9119. "time": "2020-10-26T13:08:54+00:00"
  9120. },
  9121. {
  9122. "name": "sebastian/code-unit-reverse-lookup",
  9123. "version": "2.0.3",
  9124. "source": {
  9125. "type": "git",
  9126. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9127. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9128. },
  9129. "dist": {
  9130. "type": "zip",
  9131. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9132. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9133. "shasum": ""
  9134. },
  9135. "require": {
  9136. "php": ">=7.3"
  9137. },
  9138. "require-dev": {
  9139. "phpunit/phpunit": "^9.3"
  9140. },
  9141. "type": "library",
  9142. "extra": {
  9143. "branch-alias": {
  9144. "dev-master": "2.0-dev"
  9145. }
  9146. },
  9147. "autoload": {
  9148. "classmap": [
  9149. "src/"
  9150. ]
  9151. },
  9152. "notification-url": "https://packagist.org/downloads/",
  9153. "license": [
  9154. "BSD-3-Clause"
  9155. ],
  9156. "authors": [
  9157. {
  9158. "name": "Sebastian Bergmann",
  9159. "email": "sebastian@phpunit.de"
  9160. }
  9161. ],
  9162. "description": "Looks up which function or method a line of code belongs to",
  9163. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9164. "support": {
  9165. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9166. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9167. },
  9168. "funding": [
  9169. {
  9170. "url": "https://github.com/sebastianbergmann",
  9171. "type": "github"
  9172. }
  9173. ],
  9174. "time": "2020-09-28T05:30:19+00:00"
  9175. },
  9176. {
  9177. "name": "sebastian/comparator",
  9178. "version": "4.0.8",
  9179. "source": {
  9180. "type": "git",
  9181. "url": "https://github.com/sebastianbergmann/comparator.git",
  9182. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9183. },
  9184. "dist": {
  9185. "type": "zip",
  9186. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9187. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9188. "shasum": ""
  9189. },
  9190. "require": {
  9191. "php": ">=7.3",
  9192. "sebastian/diff": "^4.0",
  9193. "sebastian/exporter": "^4.0"
  9194. },
  9195. "require-dev": {
  9196. "phpunit/phpunit": "^9.3"
  9197. },
  9198. "type": "library",
  9199. "extra": {
  9200. "branch-alias": {
  9201. "dev-master": "4.0-dev"
  9202. }
  9203. },
  9204. "autoload": {
  9205. "classmap": [
  9206. "src/"
  9207. ]
  9208. },
  9209. "notification-url": "https://packagist.org/downloads/",
  9210. "license": [
  9211. "BSD-3-Clause"
  9212. ],
  9213. "authors": [
  9214. {
  9215. "name": "Sebastian Bergmann",
  9216. "email": "sebastian@phpunit.de"
  9217. },
  9218. {
  9219. "name": "Jeff Welch",
  9220. "email": "whatthejeff@gmail.com"
  9221. },
  9222. {
  9223. "name": "Volker Dusch",
  9224. "email": "github@wallbash.com"
  9225. },
  9226. {
  9227. "name": "Bernhard Schussek",
  9228. "email": "bschussek@2bepublished.at"
  9229. }
  9230. ],
  9231. "description": "Provides the functionality to compare PHP values for equality",
  9232. "homepage": "https://github.com/sebastianbergmann/comparator",
  9233. "keywords": [
  9234. "comparator",
  9235. "compare",
  9236. "equality"
  9237. ],
  9238. "support": {
  9239. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9240. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9241. },
  9242. "funding": [
  9243. {
  9244. "url": "https://github.com/sebastianbergmann",
  9245. "type": "github"
  9246. }
  9247. ],
  9248. "time": "2022-09-14T12:41:17+00:00"
  9249. },
  9250. {
  9251. "name": "sebastian/complexity",
  9252. "version": "2.0.2",
  9253. "source": {
  9254. "type": "git",
  9255. "url": "https://github.com/sebastianbergmann/complexity.git",
  9256. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9257. },
  9258. "dist": {
  9259. "type": "zip",
  9260. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9261. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9262. "shasum": ""
  9263. },
  9264. "require": {
  9265. "nikic/php-parser": "^4.7",
  9266. "php": ">=7.3"
  9267. },
  9268. "require-dev": {
  9269. "phpunit/phpunit": "^9.3"
  9270. },
  9271. "type": "library",
  9272. "extra": {
  9273. "branch-alias": {
  9274. "dev-master": "2.0-dev"
  9275. }
  9276. },
  9277. "autoload": {
  9278. "classmap": [
  9279. "src/"
  9280. ]
  9281. },
  9282. "notification-url": "https://packagist.org/downloads/",
  9283. "license": [
  9284. "BSD-3-Clause"
  9285. ],
  9286. "authors": [
  9287. {
  9288. "name": "Sebastian Bergmann",
  9289. "email": "sebastian@phpunit.de",
  9290. "role": "lead"
  9291. }
  9292. ],
  9293. "description": "Library for calculating the complexity of PHP code units",
  9294. "homepage": "https://github.com/sebastianbergmann/complexity",
  9295. "support": {
  9296. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9297. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  9298. },
  9299. "funding": [
  9300. {
  9301. "url": "https://github.com/sebastianbergmann",
  9302. "type": "github"
  9303. }
  9304. ],
  9305. "time": "2020-10-26T15:52:27+00:00"
  9306. },
  9307. {
  9308. "name": "sebastian/diff",
  9309. "version": "4.0.4",
  9310. "source": {
  9311. "type": "git",
  9312. "url": "https://github.com/sebastianbergmann/diff.git",
  9313. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  9314. },
  9315. "dist": {
  9316. "type": "zip",
  9317. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9318. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9319. "shasum": ""
  9320. },
  9321. "require": {
  9322. "php": ">=7.3"
  9323. },
  9324. "require-dev": {
  9325. "phpunit/phpunit": "^9.3",
  9326. "symfony/process": "^4.2 || ^5"
  9327. },
  9328. "type": "library",
  9329. "extra": {
  9330. "branch-alias": {
  9331. "dev-master": "4.0-dev"
  9332. }
  9333. },
  9334. "autoload": {
  9335. "classmap": [
  9336. "src/"
  9337. ]
  9338. },
  9339. "notification-url": "https://packagist.org/downloads/",
  9340. "license": [
  9341. "BSD-3-Clause"
  9342. ],
  9343. "authors": [
  9344. {
  9345. "name": "Sebastian Bergmann",
  9346. "email": "sebastian@phpunit.de"
  9347. },
  9348. {
  9349. "name": "Kore Nordmann",
  9350. "email": "mail@kore-nordmann.de"
  9351. }
  9352. ],
  9353. "description": "Diff implementation",
  9354. "homepage": "https://github.com/sebastianbergmann/diff",
  9355. "keywords": [
  9356. "diff",
  9357. "udiff",
  9358. "unidiff",
  9359. "unified diff"
  9360. ],
  9361. "support": {
  9362. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9363. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  9364. },
  9365. "funding": [
  9366. {
  9367. "url": "https://github.com/sebastianbergmann",
  9368. "type": "github"
  9369. }
  9370. ],
  9371. "time": "2020-10-26T13:10:38+00:00"
  9372. },
  9373. {
  9374. "name": "sebastian/environment",
  9375. "version": "5.1.5",
  9376. "source": {
  9377. "type": "git",
  9378. "url": "https://github.com/sebastianbergmann/environment.git",
  9379. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9380. },
  9381. "dist": {
  9382. "type": "zip",
  9383. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9384. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9385. "shasum": ""
  9386. },
  9387. "require": {
  9388. "php": ">=7.3"
  9389. },
  9390. "require-dev": {
  9391. "phpunit/phpunit": "^9.3"
  9392. },
  9393. "suggest": {
  9394. "ext-posix": "*"
  9395. },
  9396. "type": "library",
  9397. "extra": {
  9398. "branch-alias": {
  9399. "dev-master": "5.1-dev"
  9400. }
  9401. },
  9402. "autoload": {
  9403. "classmap": [
  9404. "src/"
  9405. ]
  9406. },
  9407. "notification-url": "https://packagist.org/downloads/",
  9408. "license": [
  9409. "BSD-3-Clause"
  9410. ],
  9411. "authors": [
  9412. {
  9413. "name": "Sebastian Bergmann",
  9414. "email": "sebastian@phpunit.de"
  9415. }
  9416. ],
  9417. "description": "Provides functionality to handle HHVM/PHP environments",
  9418. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9419. "keywords": [
  9420. "Xdebug",
  9421. "environment",
  9422. "hhvm"
  9423. ],
  9424. "support": {
  9425. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9426. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9427. },
  9428. "funding": [
  9429. {
  9430. "url": "https://github.com/sebastianbergmann",
  9431. "type": "github"
  9432. }
  9433. ],
  9434. "time": "2023-02-03T06:03:51+00:00"
  9435. },
  9436. {
  9437. "name": "sebastian/exporter",
  9438. "version": "4.0.5",
  9439. "source": {
  9440. "type": "git",
  9441. "url": "https://github.com/sebastianbergmann/exporter.git",
  9442. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9443. },
  9444. "dist": {
  9445. "type": "zip",
  9446. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9447. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9448. "shasum": ""
  9449. },
  9450. "require": {
  9451. "php": ">=7.3",
  9452. "sebastian/recursion-context": "^4.0"
  9453. },
  9454. "require-dev": {
  9455. "ext-mbstring": "*",
  9456. "phpunit/phpunit": "^9.3"
  9457. },
  9458. "type": "library",
  9459. "extra": {
  9460. "branch-alias": {
  9461. "dev-master": "4.0-dev"
  9462. }
  9463. },
  9464. "autoload": {
  9465. "classmap": [
  9466. "src/"
  9467. ]
  9468. },
  9469. "notification-url": "https://packagist.org/downloads/",
  9470. "license": [
  9471. "BSD-3-Clause"
  9472. ],
  9473. "authors": [
  9474. {
  9475. "name": "Sebastian Bergmann",
  9476. "email": "sebastian@phpunit.de"
  9477. },
  9478. {
  9479. "name": "Jeff Welch",
  9480. "email": "whatthejeff@gmail.com"
  9481. },
  9482. {
  9483. "name": "Volker Dusch",
  9484. "email": "github@wallbash.com"
  9485. },
  9486. {
  9487. "name": "Adam Harvey",
  9488. "email": "aharvey@php.net"
  9489. },
  9490. {
  9491. "name": "Bernhard Schussek",
  9492. "email": "bschussek@gmail.com"
  9493. }
  9494. ],
  9495. "description": "Provides the functionality to export PHP variables for visualization",
  9496. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9497. "keywords": [
  9498. "export",
  9499. "exporter"
  9500. ],
  9501. "support": {
  9502. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9503. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  9504. },
  9505. "funding": [
  9506. {
  9507. "url": "https://github.com/sebastianbergmann",
  9508. "type": "github"
  9509. }
  9510. ],
  9511. "time": "2022-09-14T06:03:37+00:00"
  9512. },
  9513. {
  9514. "name": "sebastian/global-state",
  9515. "version": "5.0.5",
  9516. "source": {
  9517. "type": "git",
  9518. "url": "https://github.com/sebastianbergmann/global-state.git",
  9519. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  9520. },
  9521. "dist": {
  9522. "type": "zip",
  9523. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9524. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9525. "shasum": ""
  9526. },
  9527. "require": {
  9528. "php": ">=7.3",
  9529. "sebastian/object-reflector": "^2.0",
  9530. "sebastian/recursion-context": "^4.0"
  9531. },
  9532. "require-dev": {
  9533. "ext-dom": "*",
  9534. "phpunit/phpunit": "^9.3"
  9535. },
  9536. "suggest": {
  9537. "ext-uopz": "*"
  9538. },
  9539. "type": "library",
  9540. "extra": {
  9541. "branch-alias": {
  9542. "dev-master": "5.0-dev"
  9543. }
  9544. },
  9545. "autoload": {
  9546. "classmap": [
  9547. "src/"
  9548. ]
  9549. },
  9550. "notification-url": "https://packagist.org/downloads/",
  9551. "license": [
  9552. "BSD-3-Clause"
  9553. ],
  9554. "authors": [
  9555. {
  9556. "name": "Sebastian Bergmann",
  9557. "email": "sebastian@phpunit.de"
  9558. }
  9559. ],
  9560. "description": "Snapshotting of global state",
  9561. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9562. "keywords": [
  9563. "global state"
  9564. ],
  9565. "support": {
  9566. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9567. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  9568. },
  9569. "funding": [
  9570. {
  9571. "url": "https://github.com/sebastianbergmann",
  9572. "type": "github"
  9573. }
  9574. ],
  9575. "time": "2022-02-14T08:28:10+00:00"
  9576. },
  9577. {
  9578. "name": "sebastian/lines-of-code",
  9579. "version": "1.0.3",
  9580. "source": {
  9581. "type": "git",
  9582. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9583. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  9584. },
  9585. "dist": {
  9586. "type": "zip",
  9587. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9588. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9589. "shasum": ""
  9590. },
  9591. "require": {
  9592. "nikic/php-parser": "^4.6",
  9593. "php": ">=7.3"
  9594. },
  9595. "require-dev": {
  9596. "phpunit/phpunit": "^9.3"
  9597. },
  9598. "type": "library",
  9599. "extra": {
  9600. "branch-alias": {
  9601. "dev-master": "1.0-dev"
  9602. }
  9603. },
  9604. "autoload": {
  9605. "classmap": [
  9606. "src/"
  9607. ]
  9608. },
  9609. "notification-url": "https://packagist.org/downloads/",
  9610. "license": [
  9611. "BSD-3-Clause"
  9612. ],
  9613. "authors": [
  9614. {
  9615. "name": "Sebastian Bergmann",
  9616. "email": "sebastian@phpunit.de",
  9617. "role": "lead"
  9618. }
  9619. ],
  9620. "description": "Library for counting the lines of code in PHP source code",
  9621. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9622. "support": {
  9623. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9624. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  9625. },
  9626. "funding": [
  9627. {
  9628. "url": "https://github.com/sebastianbergmann",
  9629. "type": "github"
  9630. }
  9631. ],
  9632. "time": "2020-11-28T06:42:11+00:00"
  9633. },
  9634. {
  9635. "name": "sebastian/object-enumerator",
  9636. "version": "4.0.4",
  9637. "source": {
  9638. "type": "git",
  9639. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9640. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9641. },
  9642. "dist": {
  9643. "type": "zip",
  9644. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9645. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9646. "shasum": ""
  9647. },
  9648. "require": {
  9649. "php": ">=7.3",
  9650. "sebastian/object-reflector": "^2.0",
  9651. "sebastian/recursion-context": "^4.0"
  9652. },
  9653. "require-dev": {
  9654. "phpunit/phpunit": "^9.3"
  9655. },
  9656. "type": "library",
  9657. "extra": {
  9658. "branch-alias": {
  9659. "dev-master": "4.0-dev"
  9660. }
  9661. },
  9662. "autoload": {
  9663. "classmap": [
  9664. "src/"
  9665. ]
  9666. },
  9667. "notification-url": "https://packagist.org/downloads/",
  9668. "license": [
  9669. "BSD-3-Clause"
  9670. ],
  9671. "authors": [
  9672. {
  9673. "name": "Sebastian Bergmann",
  9674. "email": "sebastian@phpunit.de"
  9675. }
  9676. ],
  9677. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9678. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9679. "support": {
  9680. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9681. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9682. },
  9683. "funding": [
  9684. {
  9685. "url": "https://github.com/sebastianbergmann",
  9686. "type": "github"
  9687. }
  9688. ],
  9689. "time": "2020-10-26T13:12:34+00:00"
  9690. },
  9691. {
  9692. "name": "sebastian/object-reflector",
  9693. "version": "2.0.4",
  9694. "source": {
  9695. "type": "git",
  9696. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9697. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9698. },
  9699. "dist": {
  9700. "type": "zip",
  9701. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9702. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9703. "shasum": ""
  9704. },
  9705. "require": {
  9706. "php": ">=7.3"
  9707. },
  9708. "require-dev": {
  9709. "phpunit/phpunit": "^9.3"
  9710. },
  9711. "type": "library",
  9712. "extra": {
  9713. "branch-alias": {
  9714. "dev-master": "2.0-dev"
  9715. }
  9716. },
  9717. "autoload": {
  9718. "classmap": [
  9719. "src/"
  9720. ]
  9721. },
  9722. "notification-url": "https://packagist.org/downloads/",
  9723. "license": [
  9724. "BSD-3-Clause"
  9725. ],
  9726. "authors": [
  9727. {
  9728. "name": "Sebastian Bergmann",
  9729. "email": "sebastian@phpunit.de"
  9730. }
  9731. ],
  9732. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9733. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9734. "support": {
  9735. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9736. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9737. },
  9738. "funding": [
  9739. {
  9740. "url": "https://github.com/sebastianbergmann",
  9741. "type": "github"
  9742. }
  9743. ],
  9744. "time": "2020-10-26T13:14:26+00:00"
  9745. },
  9746. {
  9747. "name": "sebastian/recursion-context",
  9748. "version": "4.0.5",
  9749. "source": {
  9750. "type": "git",
  9751. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9752. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9753. },
  9754. "dist": {
  9755. "type": "zip",
  9756. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9757. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9758. "shasum": ""
  9759. },
  9760. "require": {
  9761. "php": ">=7.3"
  9762. },
  9763. "require-dev": {
  9764. "phpunit/phpunit": "^9.3"
  9765. },
  9766. "type": "library",
  9767. "extra": {
  9768. "branch-alias": {
  9769. "dev-master": "4.0-dev"
  9770. }
  9771. },
  9772. "autoload": {
  9773. "classmap": [
  9774. "src/"
  9775. ]
  9776. },
  9777. "notification-url": "https://packagist.org/downloads/",
  9778. "license": [
  9779. "BSD-3-Clause"
  9780. ],
  9781. "authors": [
  9782. {
  9783. "name": "Sebastian Bergmann",
  9784. "email": "sebastian@phpunit.de"
  9785. },
  9786. {
  9787. "name": "Jeff Welch",
  9788. "email": "whatthejeff@gmail.com"
  9789. },
  9790. {
  9791. "name": "Adam Harvey",
  9792. "email": "aharvey@php.net"
  9793. }
  9794. ],
  9795. "description": "Provides functionality to recursively process PHP variables",
  9796. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9797. "support": {
  9798. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9799. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9800. },
  9801. "funding": [
  9802. {
  9803. "url": "https://github.com/sebastianbergmann",
  9804. "type": "github"
  9805. }
  9806. ],
  9807. "time": "2023-02-03T06:07:39+00:00"
  9808. },
  9809. {
  9810. "name": "sebastian/resource-operations",
  9811. "version": "3.0.3",
  9812. "source": {
  9813. "type": "git",
  9814. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9815. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  9816. },
  9817. "dist": {
  9818. "type": "zip",
  9819. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9820. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9821. "shasum": ""
  9822. },
  9823. "require": {
  9824. "php": ">=7.3"
  9825. },
  9826. "require-dev": {
  9827. "phpunit/phpunit": "^9.0"
  9828. },
  9829. "type": "library",
  9830. "extra": {
  9831. "branch-alias": {
  9832. "dev-master": "3.0-dev"
  9833. }
  9834. },
  9835. "autoload": {
  9836. "classmap": [
  9837. "src/"
  9838. ]
  9839. },
  9840. "notification-url": "https://packagist.org/downloads/",
  9841. "license": [
  9842. "BSD-3-Clause"
  9843. ],
  9844. "authors": [
  9845. {
  9846. "name": "Sebastian Bergmann",
  9847. "email": "sebastian@phpunit.de"
  9848. }
  9849. ],
  9850. "description": "Provides a list of PHP built-in functions that operate on resources",
  9851. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9852. "support": {
  9853. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9854. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  9855. },
  9856. "funding": [
  9857. {
  9858. "url": "https://github.com/sebastianbergmann",
  9859. "type": "github"
  9860. }
  9861. ],
  9862. "time": "2020-09-28T06:45:17+00:00"
  9863. },
  9864. {
  9865. "name": "sebastian/type",
  9866. "version": "3.2.1",
  9867. "source": {
  9868. "type": "git",
  9869. "url": "https://github.com/sebastianbergmann/type.git",
  9870. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9871. },
  9872. "dist": {
  9873. "type": "zip",
  9874. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9875. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9876. "shasum": ""
  9877. },
  9878. "require": {
  9879. "php": ">=7.3"
  9880. },
  9881. "require-dev": {
  9882. "phpunit/phpunit": "^9.5"
  9883. },
  9884. "type": "library",
  9885. "extra": {
  9886. "branch-alias": {
  9887. "dev-master": "3.2-dev"
  9888. }
  9889. },
  9890. "autoload": {
  9891. "classmap": [
  9892. "src/"
  9893. ]
  9894. },
  9895. "notification-url": "https://packagist.org/downloads/",
  9896. "license": [
  9897. "BSD-3-Clause"
  9898. ],
  9899. "authors": [
  9900. {
  9901. "name": "Sebastian Bergmann",
  9902. "email": "sebastian@phpunit.de",
  9903. "role": "lead"
  9904. }
  9905. ],
  9906. "description": "Collection of value objects that represent the types of the PHP type system",
  9907. "homepage": "https://github.com/sebastianbergmann/type",
  9908. "support": {
  9909. "issues": "https://github.com/sebastianbergmann/type/issues",
  9910. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9911. },
  9912. "funding": [
  9913. {
  9914. "url": "https://github.com/sebastianbergmann",
  9915. "type": "github"
  9916. }
  9917. ],
  9918. "time": "2023-02-03T06:13:03+00:00"
  9919. },
  9920. {
  9921. "name": "sebastian/version",
  9922. "version": "3.0.2",
  9923. "source": {
  9924. "type": "git",
  9925. "url": "https://github.com/sebastianbergmann/version.git",
  9926. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9927. },
  9928. "dist": {
  9929. "type": "zip",
  9930. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9931. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9932. "shasum": ""
  9933. },
  9934. "require": {
  9935. "php": ">=7.3"
  9936. },
  9937. "type": "library",
  9938. "extra": {
  9939. "branch-alias": {
  9940. "dev-master": "3.0-dev"
  9941. }
  9942. },
  9943. "autoload": {
  9944. "classmap": [
  9945. "src/"
  9946. ]
  9947. },
  9948. "notification-url": "https://packagist.org/downloads/",
  9949. "license": [
  9950. "BSD-3-Clause"
  9951. ],
  9952. "authors": [
  9953. {
  9954. "name": "Sebastian Bergmann",
  9955. "email": "sebastian@phpunit.de",
  9956. "role": "lead"
  9957. }
  9958. ],
  9959. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9960. "homepage": "https://github.com/sebastianbergmann/version",
  9961. "support": {
  9962. "issues": "https://github.com/sebastianbergmann/version/issues",
  9963. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9964. },
  9965. "funding": [
  9966. {
  9967. "url": "https://github.com/sebastianbergmann",
  9968. "type": "github"
  9969. }
  9970. ],
  9971. "time": "2020-09-28T06:39:44+00:00"
  9972. },
  9973. {
  9974. "name": "symfony/browser-kit",
  9975. "version": "v6.2.7",
  9976. "source": {
  9977. "type": "git",
  9978. "url": "https://github.com/symfony/browser-kit.git",
  9979. "reference": "87bd43240e6cc855f70ea1c7a448ab3bd442633c"
  9980. },
  9981. "dist": {
  9982. "type": "zip",
  9983. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/87bd43240e6cc855f70ea1c7a448ab3bd442633c",
  9984. "reference": "87bd43240e6cc855f70ea1c7a448ab3bd442633c",
  9985. "shasum": ""
  9986. },
  9987. "require": {
  9988. "php": ">=8.1",
  9989. "symfony/dom-crawler": "^5.4|^6.0"
  9990. },
  9991. "require-dev": {
  9992. "symfony/css-selector": "^5.4|^6.0",
  9993. "symfony/http-client": "^5.4|^6.0",
  9994. "symfony/mime": "^5.4|^6.0",
  9995. "symfony/process": "^5.4|^6.0"
  9996. },
  9997. "suggest": {
  9998. "symfony/process": ""
  9999. },
  10000. "type": "library",
  10001. "autoload": {
  10002. "psr-4": {
  10003. "Symfony\\Component\\BrowserKit\\": ""
  10004. },
  10005. "exclude-from-classmap": [
  10006. "/Tests/"
  10007. ]
  10008. },
  10009. "notification-url": "https://packagist.org/downloads/",
  10010. "license": [
  10011. "MIT"
  10012. ],
  10013. "authors": [
  10014. {
  10015. "name": "Fabien Potencier",
  10016. "email": "fabien@symfony.com"
  10017. },
  10018. {
  10019. "name": "Symfony Community",
  10020. "homepage": "https://symfony.com/contributors"
  10021. }
  10022. ],
  10023. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10024. "homepage": "https://symfony.com",
  10025. "support": {
  10026. "source": "https://github.com/symfony/browser-kit/tree/v6.2.7"
  10027. },
  10028. "funding": [
  10029. {
  10030. "url": "https://symfony.com/sponsor",
  10031. "type": "custom"
  10032. },
  10033. {
  10034. "url": "https://github.com/fabpot",
  10035. "type": "github"
  10036. },
  10037. {
  10038. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10039. "type": "tidelift"
  10040. }
  10041. ],
  10042. "time": "2023-02-14T08:44:56+00:00"
  10043. },
  10044. {
  10045. "name": "symfony/css-selector",
  10046. "version": "v6.2.7",
  10047. "source": {
  10048. "type": "git",
  10049. "url": "https://github.com/symfony/css-selector.git",
  10050. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0"
  10051. },
  10052. "dist": {
  10053. "type": "zip",
  10054. "url": "https://api.github.com/repos/symfony/css-selector/zipball/aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  10055. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  10056. "shasum": ""
  10057. },
  10058. "require": {
  10059. "php": ">=8.1"
  10060. },
  10061. "type": "library",
  10062. "autoload": {
  10063. "psr-4": {
  10064. "Symfony\\Component\\CssSelector\\": ""
  10065. },
  10066. "exclude-from-classmap": [
  10067. "/Tests/"
  10068. ]
  10069. },
  10070. "notification-url": "https://packagist.org/downloads/",
  10071. "license": [
  10072. "MIT"
  10073. ],
  10074. "authors": [
  10075. {
  10076. "name": "Fabien Potencier",
  10077. "email": "fabien@symfony.com"
  10078. },
  10079. {
  10080. "name": "Jean-François Simon",
  10081. "email": "jeanfrancois.simon@sensiolabs.com"
  10082. },
  10083. {
  10084. "name": "Symfony Community",
  10085. "homepage": "https://symfony.com/contributors"
  10086. }
  10087. ],
  10088. "description": "Converts CSS selectors to XPath expressions",
  10089. "homepage": "https://symfony.com",
  10090. "support": {
  10091. "source": "https://github.com/symfony/css-selector/tree/v6.2.7"
  10092. },
  10093. "funding": [
  10094. {
  10095. "url": "https://symfony.com/sponsor",
  10096. "type": "custom"
  10097. },
  10098. {
  10099. "url": "https://github.com/fabpot",
  10100. "type": "github"
  10101. },
  10102. {
  10103. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10104. "type": "tidelift"
  10105. }
  10106. ],
  10107. "time": "2023-02-14T08:44:56+00:00"
  10108. },
  10109. {
  10110. "name": "symfony/debug-bundle",
  10111. "version": "v6.2.7",
  10112. "source": {
  10113. "type": "git",
  10114. "url": "https://github.com/symfony/debug-bundle.git",
  10115. "reference": "8ff6c96d09c462beade7512137899e400c76d994"
  10116. },
  10117. "dist": {
  10118. "type": "zip",
  10119. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/8ff6c96d09c462beade7512137899e400c76d994",
  10120. "reference": "8ff6c96d09c462beade7512137899e400c76d994",
  10121. "shasum": ""
  10122. },
  10123. "require": {
  10124. "ext-xml": "*",
  10125. "php": ">=8.1",
  10126. "symfony/dependency-injection": "^5.4|^6.0",
  10127. "symfony/http-kernel": "^5.4|^6.0",
  10128. "symfony/twig-bridge": "^5.4|^6.0",
  10129. "symfony/var-dumper": "^5.4|^6.0"
  10130. },
  10131. "conflict": {
  10132. "symfony/config": "<5.4",
  10133. "symfony/dependency-injection": "<5.4"
  10134. },
  10135. "require-dev": {
  10136. "symfony/config": "^5.4|^6.0",
  10137. "symfony/web-profiler-bundle": "^5.4|^6.0"
  10138. },
  10139. "suggest": {
  10140. "symfony/config": "For service container configuration",
  10141. "symfony/dependency-injection": "For using as a service from the container"
  10142. },
  10143. "type": "symfony-bundle",
  10144. "autoload": {
  10145. "psr-4": {
  10146. "Symfony\\Bundle\\DebugBundle\\": ""
  10147. },
  10148. "exclude-from-classmap": [
  10149. "/Tests/"
  10150. ]
  10151. },
  10152. "notification-url": "https://packagist.org/downloads/",
  10153. "license": [
  10154. "MIT"
  10155. ],
  10156. "authors": [
  10157. {
  10158. "name": "Fabien Potencier",
  10159. "email": "fabien@symfony.com"
  10160. },
  10161. {
  10162. "name": "Symfony Community",
  10163. "homepage": "https://symfony.com/contributors"
  10164. }
  10165. ],
  10166. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10167. "homepage": "https://symfony.com",
  10168. "support": {
  10169. "source": "https://github.com/symfony/debug-bundle/tree/v6.2.7"
  10170. },
  10171. "funding": [
  10172. {
  10173. "url": "https://symfony.com/sponsor",
  10174. "type": "custom"
  10175. },
  10176. {
  10177. "url": "https://github.com/fabpot",
  10178. "type": "github"
  10179. },
  10180. {
  10181. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10182. "type": "tidelift"
  10183. }
  10184. ],
  10185. "time": "2023-02-14T08:44:56+00:00"
  10186. },
  10187. {
  10188. "name": "symfony/dom-crawler",
  10189. "version": "v6.2.9",
  10190. "source": {
  10191. "type": "git",
  10192. "url": "https://github.com/symfony/dom-crawler.git",
  10193. "reference": "328bc3795059651d2d4e462e8febdf7ec2d7a626"
  10194. },
  10195. "dist": {
  10196. "type": "zip",
  10197. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/328bc3795059651d2d4e462e8febdf7ec2d7a626",
  10198. "reference": "328bc3795059651d2d4e462e8febdf7ec2d7a626",
  10199. "shasum": ""
  10200. },
  10201. "require": {
  10202. "masterminds/html5": "^2.6",
  10203. "php": ">=8.1",
  10204. "symfony/polyfill-ctype": "~1.8",
  10205. "symfony/polyfill-mbstring": "~1.0"
  10206. },
  10207. "require-dev": {
  10208. "symfony/css-selector": "^5.4|^6.0"
  10209. },
  10210. "suggest": {
  10211. "symfony/css-selector": ""
  10212. },
  10213. "type": "library",
  10214. "autoload": {
  10215. "psr-4": {
  10216. "Symfony\\Component\\DomCrawler\\": ""
  10217. },
  10218. "exclude-from-classmap": [
  10219. "/Tests/"
  10220. ]
  10221. },
  10222. "notification-url": "https://packagist.org/downloads/",
  10223. "license": [
  10224. "MIT"
  10225. ],
  10226. "authors": [
  10227. {
  10228. "name": "Fabien Potencier",
  10229. "email": "fabien@symfony.com"
  10230. },
  10231. {
  10232. "name": "Symfony Community",
  10233. "homepage": "https://symfony.com/contributors"
  10234. }
  10235. ],
  10236. "description": "Eases DOM navigation for HTML and XML documents",
  10237. "homepage": "https://symfony.com",
  10238. "support": {
  10239. "source": "https://github.com/symfony/dom-crawler/tree/v6.2.9"
  10240. },
  10241. "funding": [
  10242. {
  10243. "url": "https://symfony.com/sponsor",
  10244. "type": "custom"
  10245. },
  10246. {
  10247. "url": "https://github.com/fabpot",
  10248. "type": "github"
  10249. },
  10250. {
  10251. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10252. "type": "tidelift"
  10253. }
  10254. ],
  10255. "time": "2023-04-11T16:03:19+00:00"
  10256. },
  10257. {
  10258. "name": "symfony/maker-bundle",
  10259. "version": "v1.48.0",
  10260. "source": {
  10261. "type": "git",
  10262. "url": "https://github.com/symfony/maker-bundle.git",
  10263. "reference": "2e428e8432e9879187672fe08f1cc335e2a31dd6"
  10264. },
  10265. "dist": {
  10266. "type": "zip",
  10267. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/2e428e8432e9879187672fe08f1cc335e2a31dd6",
  10268. "reference": "2e428e8432e9879187672fe08f1cc335e2a31dd6",
  10269. "shasum": ""
  10270. },
  10271. "require": {
  10272. "doctrine/inflector": "^2.0",
  10273. "nikic/php-parser": "^4.11",
  10274. "php": ">=8.0",
  10275. "symfony/config": "^5.4.7|^6.0",
  10276. "symfony/console": "^5.4.7|^6.0",
  10277. "symfony/dependency-injection": "^5.4.7|^6.0",
  10278. "symfony/deprecation-contracts": "^2.2|^3",
  10279. "symfony/filesystem": "^5.4.7|^6.0",
  10280. "symfony/finder": "^5.4.3|^6.0",
  10281. "symfony/framework-bundle": "^5.4.7|^6.0",
  10282. "symfony/http-kernel": "^5.4.7|^6.0"
  10283. },
  10284. "conflict": {
  10285. "doctrine/doctrine-bundle": "<2.4",
  10286. "doctrine/orm": "<2.10",
  10287. "symfony/doctrine-bridge": "<5.4"
  10288. },
  10289. "require-dev": {
  10290. "composer/semver": "^3.0",
  10291. "doctrine/doctrine-bundle": "^2.4",
  10292. "doctrine/orm": "^2.10.0",
  10293. "symfony/http-client": "^5.4.7|^6.0",
  10294. "symfony/phpunit-bridge": "^5.4.7|^6.0",
  10295. "symfony/polyfill-php80": "^1.16.0",
  10296. "symfony/process": "^5.4.7|^6.0",
  10297. "symfony/security-core": "^5.4.7|^6.0",
  10298. "symfony/yaml": "^5.4.3|^6.0",
  10299. "twig/twig": "^2.0|^3.0"
  10300. },
  10301. "type": "symfony-bundle",
  10302. "extra": {
  10303. "branch-alias": {
  10304. "dev-main": "1.0-dev"
  10305. }
  10306. },
  10307. "autoload": {
  10308. "psr-4": {
  10309. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10310. }
  10311. },
  10312. "notification-url": "https://packagist.org/downloads/",
  10313. "license": [
  10314. "MIT"
  10315. ],
  10316. "authors": [
  10317. {
  10318. "name": "Symfony Community",
  10319. "homepage": "https://symfony.com/contributors"
  10320. }
  10321. ],
  10322. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10323. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10324. "keywords": [
  10325. "code generator",
  10326. "generator",
  10327. "scaffold",
  10328. "scaffolding"
  10329. ],
  10330. "support": {
  10331. "issues": "https://github.com/symfony/maker-bundle/issues",
  10332. "source": "https://github.com/symfony/maker-bundle/tree/v1.48.0"
  10333. },
  10334. "funding": [
  10335. {
  10336. "url": "https://symfony.com/sponsor",
  10337. "type": "custom"
  10338. },
  10339. {
  10340. "url": "https://github.com/fabpot",
  10341. "type": "github"
  10342. },
  10343. {
  10344. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10345. "type": "tidelift"
  10346. }
  10347. ],
  10348. "time": "2022-11-14T10:48:46+00:00"
  10349. },
  10350. {
  10351. "name": "symfony/phpunit-bridge",
  10352. "version": "v6.2.7",
  10353. "source": {
  10354. "type": "git",
  10355. "url": "https://github.com/symfony/phpunit-bridge.git",
  10356. "reference": "56965fae0b6b8d271015990eff5240ffff02e185"
  10357. },
  10358. "dist": {
  10359. "type": "zip",
  10360. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/56965fae0b6b8d271015990eff5240ffff02e185",
  10361. "reference": "56965fae0b6b8d271015990eff5240ffff02e185",
  10362. "shasum": ""
  10363. },
  10364. "require": {
  10365. "php": ">=7.1.3"
  10366. },
  10367. "conflict": {
  10368. "phpunit/phpunit": "<7.5|9.1.2"
  10369. },
  10370. "require-dev": {
  10371. "symfony/deprecation-contracts": "^2.1|^3.0",
  10372. "symfony/error-handler": "^5.4|^6.0"
  10373. },
  10374. "suggest": {
  10375. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  10376. },
  10377. "bin": [
  10378. "bin/simple-phpunit"
  10379. ],
  10380. "type": "symfony-bridge",
  10381. "extra": {
  10382. "thanks": {
  10383. "name": "phpunit/phpunit",
  10384. "url": "https://github.com/sebastianbergmann/phpunit"
  10385. }
  10386. },
  10387. "autoload": {
  10388. "files": [
  10389. "bootstrap.php"
  10390. ],
  10391. "psr-4": {
  10392. "Symfony\\Bridge\\PhpUnit\\": ""
  10393. },
  10394. "exclude-from-classmap": [
  10395. "/Tests/"
  10396. ]
  10397. },
  10398. "notification-url": "https://packagist.org/downloads/",
  10399. "license": [
  10400. "MIT"
  10401. ],
  10402. "authors": [
  10403. {
  10404. "name": "Nicolas Grekas",
  10405. "email": "p@tchwork.com"
  10406. },
  10407. {
  10408. "name": "Symfony Community",
  10409. "homepage": "https://symfony.com/contributors"
  10410. }
  10411. ],
  10412. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10413. "homepage": "https://symfony.com",
  10414. "support": {
  10415. "source": "https://github.com/symfony/phpunit-bridge/tree/v6.2.7"
  10416. },
  10417. "funding": [
  10418. {
  10419. "url": "https://symfony.com/sponsor",
  10420. "type": "custom"
  10421. },
  10422. {
  10423. "url": "https://github.com/fabpot",
  10424. "type": "github"
  10425. },
  10426. {
  10427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10428. "type": "tidelift"
  10429. }
  10430. ],
  10431. "time": "2023-02-16T09:57:23+00:00"
  10432. },
  10433. {
  10434. "name": "symfony/web-profiler-bundle",
  10435. "version": "v6.2.7",
  10436. "source": {
  10437. "type": "git",
  10438. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10439. "reference": "0d183e0a69652e348007e97ffff8d3ded9cc6d2d"
  10440. },
  10441. "dist": {
  10442. "type": "zip",
  10443. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/0d183e0a69652e348007e97ffff8d3ded9cc6d2d",
  10444. "reference": "0d183e0a69652e348007e97ffff8d3ded9cc6d2d",
  10445. "shasum": ""
  10446. },
  10447. "require": {
  10448. "php": ">=8.1",
  10449. "symfony/config": "^5.4|^6.0",
  10450. "symfony/framework-bundle": "^5.4|^6.0",
  10451. "symfony/http-kernel": "^6.1",
  10452. "symfony/routing": "^5.4|^6.0",
  10453. "symfony/twig-bundle": "^5.4|^6.0",
  10454. "twig/twig": "^2.13|^3.0.4"
  10455. },
  10456. "conflict": {
  10457. "symfony/form": "<5.4",
  10458. "symfony/mailer": "<5.4",
  10459. "symfony/messenger": "<5.4"
  10460. },
  10461. "require-dev": {
  10462. "symfony/browser-kit": "^5.4|^6.0",
  10463. "symfony/console": "^5.4|^6.0",
  10464. "symfony/css-selector": "^5.4|^6.0",
  10465. "symfony/stopwatch": "^5.4|^6.0"
  10466. },
  10467. "type": "symfony-bundle",
  10468. "autoload": {
  10469. "psr-4": {
  10470. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10471. },
  10472. "exclude-from-classmap": [
  10473. "/Tests/"
  10474. ]
  10475. },
  10476. "notification-url": "https://packagist.org/downloads/",
  10477. "license": [
  10478. "MIT"
  10479. ],
  10480. "authors": [
  10481. {
  10482. "name": "Fabien Potencier",
  10483. "email": "fabien@symfony.com"
  10484. },
  10485. {
  10486. "name": "Symfony Community",
  10487. "homepage": "https://symfony.com/contributors"
  10488. }
  10489. ],
  10490. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10491. "homepage": "https://symfony.com",
  10492. "support": {
  10493. "source": "https://github.com/symfony/web-profiler-bundle/tree/v6.2.7"
  10494. },
  10495. "funding": [
  10496. {
  10497. "url": "https://symfony.com/sponsor",
  10498. "type": "custom"
  10499. },
  10500. {
  10501. "url": "https://github.com/fabpot",
  10502. "type": "github"
  10503. },
  10504. {
  10505. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10506. "type": "tidelift"
  10507. }
  10508. ],
  10509. "time": "2023-02-21T16:32:03+00:00"
  10510. },
  10511. {
  10512. "name": "theseer/tokenizer",
  10513. "version": "1.2.1",
  10514. "source": {
  10515. "type": "git",
  10516. "url": "https://github.com/theseer/tokenizer.git",
  10517. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10518. },
  10519. "dist": {
  10520. "type": "zip",
  10521. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10522. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10523. "shasum": ""
  10524. },
  10525. "require": {
  10526. "ext-dom": "*",
  10527. "ext-tokenizer": "*",
  10528. "ext-xmlwriter": "*",
  10529. "php": "^7.2 || ^8.0"
  10530. },
  10531. "type": "library",
  10532. "autoload": {
  10533. "classmap": [
  10534. "src/"
  10535. ]
  10536. },
  10537. "notification-url": "https://packagist.org/downloads/",
  10538. "license": [
  10539. "BSD-3-Clause"
  10540. ],
  10541. "authors": [
  10542. {
  10543. "name": "Arne Blankerts",
  10544. "email": "arne@blankerts.de",
  10545. "role": "Developer"
  10546. }
  10547. ],
  10548. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10549. "support": {
  10550. "issues": "https://github.com/theseer/tokenizer/issues",
  10551. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10552. },
  10553. "funding": [
  10554. {
  10555. "url": "https://github.com/theseer",
  10556. "type": "github"
  10557. }
  10558. ],
  10559. "time": "2021-07-28T10:34:58+00:00"
  10560. }
  10561. ],
  10562. "aliases": [],
  10563. "minimum-stability": "stable",
  10564. "stability-flags": [],
  10565. "prefer-stable": false,
  10566. "prefer-lowest": false,
  10567. "platform": {
  10568. "php": "^8.1",
  10569. "ext-ctype": "*",
  10570. "ext-iconv": "*"
  10571. },
  10572. "platform-dev": [],
  10573. "platform-overrides": {
  10574. "php": "8.1"
  10575. },
  10576. "plugin-api-version": "2.3.0"
  10577. }