composer.lock 353 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670
  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": "14350783c7766297b9b01ff2f53f5b69",
  8. "packages": [
  9. {
  10. "name": "composer/package-versions-deprecated",
  11. "version": "1.11.99.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/package-versions-deprecated.git",
  15. "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/c6522afe5540d5fc46675043d3ed5a45a740b27c",
  20. "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c",
  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.2"
  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": "2021-05-24T07:46:03+00:00"
  81. },
  82. {
  83. "name": "doctrine/annotations",
  84. "version": "1.13.3",
  85. "source": {
  86. "type": "git",
  87. "url": "https://github.com/doctrine/annotations.git",
  88. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  89. },
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  93. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  94. "shasum": ""
  95. },
  96. "require": {
  97. "doctrine/lexer": "1.*",
  98. "ext-tokenizer": "*",
  99. "php": "^7.1 || ^8.0",
  100. "psr/cache": "^1 || ^2 || ^3"
  101. },
  102. "require-dev": {
  103. "doctrine/cache": "^1.11 || ^2.0",
  104. "doctrine/coding-standard": "^6.0 || ^8.1",
  105. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  106. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  107. "symfony/cache": "^4.4 || ^5.2",
  108. "vimeo/psalm": "^4.10"
  109. },
  110. "type": "library",
  111. "autoload": {
  112. "psr-4": {
  113. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  114. }
  115. },
  116. "notification-url": "https://packagist.org/downloads/",
  117. "license": [
  118. "MIT"
  119. ],
  120. "authors": [
  121. {
  122. "name": "Guilherme Blanco",
  123. "email": "guilhermeblanco@gmail.com"
  124. },
  125. {
  126. "name": "Roman Borschel",
  127. "email": "roman@code-factory.org"
  128. },
  129. {
  130. "name": "Benjamin Eberlei",
  131. "email": "kontakt@beberlei.de"
  132. },
  133. {
  134. "name": "Jonathan Wage",
  135. "email": "jonwage@gmail.com"
  136. },
  137. {
  138. "name": "Johannes Schmitt",
  139. "email": "schmittjoh@gmail.com"
  140. }
  141. ],
  142. "description": "Docblock Annotations Parser",
  143. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  144. "keywords": [
  145. "annotations",
  146. "docblock",
  147. "parser"
  148. ],
  149. "support": {
  150. "issues": "https://github.com/doctrine/annotations/issues",
  151. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  152. },
  153. "time": "2022-07-02T10:48:51+00:00"
  154. },
  155. {
  156. "name": "doctrine/cache",
  157. "version": "2.2.0",
  158. "source": {
  159. "type": "git",
  160. "url": "https://github.com/doctrine/cache.git",
  161. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  162. },
  163. "dist": {
  164. "type": "zip",
  165. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  166. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  167. "shasum": ""
  168. },
  169. "require": {
  170. "php": "~7.1 || ^8.0"
  171. },
  172. "conflict": {
  173. "doctrine/common": ">2.2,<2.4"
  174. },
  175. "require-dev": {
  176. "cache/integration-tests": "dev-master",
  177. "doctrine/coding-standard": "^9",
  178. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  179. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  180. "symfony/cache": "^4.4 || ^5.4 || ^6",
  181. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  182. },
  183. "type": "library",
  184. "autoload": {
  185. "psr-4": {
  186. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  187. }
  188. },
  189. "notification-url": "https://packagist.org/downloads/",
  190. "license": [
  191. "MIT"
  192. ],
  193. "authors": [
  194. {
  195. "name": "Guilherme Blanco",
  196. "email": "guilhermeblanco@gmail.com"
  197. },
  198. {
  199. "name": "Roman Borschel",
  200. "email": "roman@code-factory.org"
  201. },
  202. {
  203. "name": "Benjamin Eberlei",
  204. "email": "kontakt@beberlei.de"
  205. },
  206. {
  207. "name": "Jonathan Wage",
  208. "email": "jonwage@gmail.com"
  209. },
  210. {
  211. "name": "Johannes Schmitt",
  212. "email": "schmittjoh@gmail.com"
  213. }
  214. ],
  215. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  216. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  217. "keywords": [
  218. "abstraction",
  219. "apcu",
  220. "cache",
  221. "caching",
  222. "couchdb",
  223. "memcached",
  224. "php",
  225. "redis",
  226. "xcache"
  227. ],
  228. "support": {
  229. "issues": "https://github.com/doctrine/cache/issues",
  230. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  231. },
  232. "funding": [
  233. {
  234. "url": "https://www.doctrine-project.org/sponsorship.html",
  235. "type": "custom"
  236. },
  237. {
  238. "url": "https://www.patreon.com/phpdoctrine",
  239. "type": "patreon"
  240. },
  241. {
  242. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  243. "type": "tidelift"
  244. }
  245. ],
  246. "time": "2022-05-20T20:07:39+00:00"
  247. },
  248. {
  249. "name": "doctrine/collections",
  250. "version": "1.8.0",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/doctrine/collections.git",
  254. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/doctrine/collections/zipball/2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  259. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  260. "shasum": ""
  261. },
  262. "require": {
  263. "doctrine/deprecations": "^0.5.3 || ^1",
  264. "php": "^7.1.3 || ^8.0"
  265. },
  266. "require-dev": {
  267. "doctrine/coding-standard": "^9.0 || ^10.0",
  268. "phpstan/phpstan": "^1.4.8",
  269. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  270. "vimeo/psalm": "^4.22"
  271. },
  272. "type": "library",
  273. "autoload": {
  274. "psr-4": {
  275. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  276. }
  277. },
  278. "notification-url": "https://packagist.org/downloads/",
  279. "license": [
  280. "MIT"
  281. ],
  282. "authors": [
  283. {
  284. "name": "Guilherme Blanco",
  285. "email": "guilhermeblanco@gmail.com"
  286. },
  287. {
  288. "name": "Roman Borschel",
  289. "email": "roman@code-factory.org"
  290. },
  291. {
  292. "name": "Benjamin Eberlei",
  293. "email": "kontakt@beberlei.de"
  294. },
  295. {
  296. "name": "Jonathan Wage",
  297. "email": "jonwage@gmail.com"
  298. },
  299. {
  300. "name": "Johannes Schmitt",
  301. "email": "schmittjoh@gmail.com"
  302. }
  303. ],
  304. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  305. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  306. "keywords": [
  307. "array",
  308. "collections",
  309. "iterators",
  310. "php"
  311. ],
  312. "support": {
  313. "issues": "https://github.com/doctrine/collections/issues",
  314. "source": "https://github.com/doctrine/collections/tree/1.8.0"
  315. },
  316. "time": "2022-09-01T20:12:10+00:00"
  317. },
  318. {
  319. "name": "doctrine/common",
  320. "version": "3.4.3",
  321. "source": {
  322. "type": "git",
  323. "url": "https://github.com/doctrine/common.git",
  324. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
  325. },
  326. "dist": {
  327. "type": "zip",
  328. "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
  329. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
  330. "shasum": ""
  331. },
  332. "require": {
  333. "doctrine/persistence": "^2.0 || ^3.0",
  334. "php": "^7.1 || ^8.0"
  335. },
  336. "require-dev": {
  337. "doctrine/coding-standard": "^9.0 || ^10.0",
  338. "doctrine/collections": "^1",
  339. "phpstan/phpstan": "^1.4.1",
  340. "phpstan/phpstan-phpunit": "^1",
  341. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  342. "squizlabs/php_codesniffer": "^3.0",
  343. "symfony/phpunit-bridge": "^6.1",
  344. "vimeo/psalm": "^4.4"
  345. },
  346. "type": "library",
  347. "autoload": {
  348. "psr-4": {
  349. "Doctrine\\Common\\": "src"
  350. }
  351. },
  352. "notification-url": "https://packagist.org/downloads/",
  353. "license": [
  354. "MIT"
  355. ],
  356. "authors": [
  357. {
  358. "name": "Guilherme Blanco",
  359. "email": "guilhermeblanco@gmail.com"
  360. },
  361. {
  362. "name": "Roman Borschel",
  363. "email": "roman@code-factory.org"
  364. },
  365. {
  366. "name": "Benjamin Eberlei",
  367. "email": "kontakt@beberlei.de"
  368. },
  369. {
  370. "name": "Jonathan Wage",
  371. "email": "jonwage@gmail.com"
  372. },
  373. {
  374. "name": "Johannes Schmitt",
  375. "email": "schmittjoh@gmail.com"
  376. },
  377. {
  378. "name": "Marco Pivetta",
  379. "email": "ocramius@gmail.com"
  380. }
  381. ],
  382. "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.",
  383. "homepage": "https://www.doctrine-project.org/projects/common.html",
  384. "keywords": [
  385. "common",
  386. "doctrine",
  387. "php"
  388. ],
  389. "support": {
  390. "issues": "https://github.com/doctrine/common/issues",
  391. "source": "https://github.com/doctrine/common/tree/3.4.3"
  392. },
  393. "funding": [
  394. {
  395. "url": "https://www.doctrine-project.org/sponsorship.html",
  396. "type": "custom"
  397. },
  398. {
  399. "url": "https://www.patreon.com/phpdoctrine",
  400. "type": "patreon"
  401. },
  402. {
  403. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  404. "type": "tidelift"
  405. }
  406. ],
  407. "time": "2022-10-09T11:47:59+00:00"
  408. },
  409. {
  410. "name": "doctrine/dbal",
  411. "version": "3.4.5",
  412. "source": {
  413. "type": "git",
  414. "url": "https://github.com/doctrine/dbal.git",
  415. "reference": "a5a58773109c0abb13e658c8ccd92aeec8d07f9e"
  416. },
  417. "dist": {
  418. "type": "zip",
  419. "url": "https://api.github.com/repos/doctrine/dbal/zipball/a5a58773109c0abb13e658c8ccd92aeec8d07f9e",
  420. "reference": "a5a58773109c0abb13e658c8ccd92aeec8d07f9e",
  421. "shasum": ""
  422. },
  423. "require": {
  424. "composer-runtime-api": "^2",
  425. "doctrine/cache": "^1.11|^2.0",
  426. "doctrine/deprecations": "^0.5.3|^1",
  427. "doctrine/event-manager": "^1.0",
  428. "php": "^7.4 || ^8.0",
  429. "psr/cache": "^1|^2|^3",
  430. "psr/log": "^1|^2|^3"
  431. },
  432. "require-dev": {
  433. "doctrine/coding-standard": "10.0.0",
  434. "jetbrains/phpstorm-stubs": "2022.2",
  435. "phpstan/phpstan": "1.8.3",
  436. "phpstan/phpstan-strict-rules": "^1.3",
  437. "phpunit/phpunit": "9.5.24",
  438. "psalm/plugin-phpunit": "0.17.0",
  439. "squizlabs/php_codesniffer": "3.7.1",
  440. "symfony/cache": "^5.4|^6.0",
  441. "symfony/console": "^4.4|^5.4|^6.0",
  442. "vimeo/psalm": "4.27.0"
  443. },
  444. "suggest": {
  445. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  446. },
  447. "bin": [
  448. "bin/doctrine-dbal"
  449. ],
  450. "type": "library",
  451. "autoload": {
  452. "psr-4": {
  453. "Doctrine\\DBAL\\": "src"
  454. }
  455. },
  456. "notification-url": "https://packagist.org/downloads/",
  457. "license": [
  458. "MIT"
  459. ],
  460. "authors": [
  461. {
  462. "name": "Guilherme Blanco",
  463. "email": "guilhermeblanco@gmail.com"
  464. },
  465. {
  466. "name": "Roman Borschel",
  467. "email": "roman@code-factory.org"
  468. },
  469. {
  470. "name": "Benjamin Eberlei",
  471. "email": "kontakt@beberlei.de"
  472. },
  473. {
  474. "name": "Jonathan Wage",
  475. "email": "jonwage@gmail.com"
  476. }
  477. ],
  478. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  479. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  480. "keywords": [
  481. "abstraction",
  482. "database",
  483. "db2",
  484. "dbal",
  485. "mariadb",
  486. "mssql",
  487. "mysql",
  488. "oci8",
  489. "oracle",
  490. "pdo",
  491. "pgsql",
  492. "postgresql",
  493. "queryobject",
  494. "sasql",
  495. "sql",
  496. "sqlite",
  497. "sqlserver",
  498. "sqlsrv"
  499. ],
  500. "support": {
  501. "issues": "https://github.com/doctrine/dbal/issues",
  502. "source": "https://github.com/doctrine/dbal/tree/3.4.5"
  503. },
  504. "funding": [
  505. {
  506. "url": "https://www.doctrine-project.org/sponsorship.html",
  507. "type": "custom"
  508. },
  509. {
  510. "url": "https://www.patreon.com/phpdoctrine",
  511. "type": "patreon"
  512. },
  513. {
  514. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  515. "type": "tidelift"
  516. }
  517. ],
  518. "time": "2022-09-23T17:48:57+00:00"
  519. },
  520. {
  521. "name": "doctrine/deprecations",
  522. "version": "v1.0.0",
  523. "source": {
  524. "type": "git",
  525. "url": "https://github.com/doctrine/deprecations.git",
  526. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  527. },
  528. "dist": {
  529. "type": "zip",
  530. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  531. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  532. "shasum": ""
  533. },
  534. "require": {
  535. "php": "^7.1|^8.0"
  536. },
  537. "require-dev": {
  538. "doctrine/coding-standard": "^9",
  539. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  540. "psr/log": "^1|^2|^3"
  541. },
  542. "suggest": {
  543. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  544. },
  545. "type": "library",
  546. "autoload": {
  547. "psr-4": {
  548. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  549. }
  550. },
  551. "notification-url": "https://packagist.org/downloads/",
  552. "license": [
  553. "MIT"
  554. ],
  555. "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.",
  556. "homepage": "https://www.doctrine-project.org/",
  557. "support": {
  558. "issues": "https://github.com/doctrine/deprecations/issues",
  559. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  560. },
  561. "time": "2022-05-02T15:47:09+00:00"
  562. },
  563. {
  564. "name": "doctrine/doctrine-bundle",
  565. "version": "2.7.0",
  566. "source": {
  567. "type": "git",
  568. "url": "https://github.com/doctrine/DoctrineBundle.git",
  569. "reference": "d2088fc50494e4e7441fecca54732245a613eeb6"
  570. },
  571. "dist": {
  572. "type": "zip",
  573. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/d2088fc50494e4e7441fecca54732245a613eeb6",
  574. "reference": "d2088fc50494e4e7441fecca54732245a613eeb6",
  575. "shasum": ""
  576. },
  577. "require": {
  578. "doctrine/annotations": "^1",
  579. "doctrine/cache": "^1.11 || ^2.0",
  580. "doctrine/dbal": "^2.13.1|^3.3.2",
  581. "doctrine/persistence": "^2.2|^3",
  582. "doctrine/sql-formatter": "^1.0.1",
  583. "php": "^7.1 || ^8.0",
  584. "symfony/cache": "^4.3.3|^5.0|^6.0",
  585. "symfony/config": "^4.4.3|^5.0|^6.0",
  586. "symfony/console": "^3.4.30|^4.3.3|^5.0|^6.0",
  587. "symfony/dependency-injection": "^4.4.18|^5.0|^6.0",
  588. "symfony/deprecation-contracts": "^2.1|^3",
  589. "symfony/doctrine-bridge": "^4.4.22|^5.2.7|^6.0",
  590. "symfony/framework-bundle": "^3.4.30|^4.3.3|^5.0|^6.0",
  591. "symfony/service-contracts": "^1.1.1|^2.0|^3"
  592. },
  593. "conflict": {
  594. "doctrine/orm": "<2.10|>=3.0",
  595. "twig/twig": "<1.34|>=2.0,<2.4"
  596. },
  597. "require-dev": {
  598. "doctrine/coding-standard": "^9.0",
  599. "doctrine/orm": "^2.11 || ^3.0",
  600. "friendsofphp/proxy-manager-lts": "^1.0",
  601. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.3 || ^10.0",
  602. "psalm/plugin-phpunit": "^0.16.1",
  603. "psalm/plugin-symfony": "^3",
  604. "psr/log": "^1.1.4|^2.0|^3.0",
  605. "symfony/phpunit-bridge": "^5.2|^6.0",
  606. "symfony/property-info": "^4.3.3|^5.0|^6.0",
  607. "symfony/proxy-manager-bridge": "^3.4|^4.3.3|^5.0|^6.0",
  608. "symfony/security-bundle": "^4.4|^5.0|^6.0",
  609. "symfony/twig-bridge": "^3.4.30|^4.3.3|^5.0|^6.0",
  610. "symfony/validator": "^3.4.30|^4.3.3|^5.0|^6.0",
  611. "symfony/web-profiler-bundle": "^3.4.30|^4.3.3|^5.0|^6.0",
  612. "symfony/yaml": "^3.4.30|^4.3.3|^5.0|^6.0",
  613. "twig/twig": "^1.34|^2.12|^3.0",
  614. "vimeo/psalm": "^4.7"
  615. },
  616. "suggest": {
  617. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  618. "ext-pdo": "*",
  619. "symfony/web-profiler-bundle": "To use the data collector."
  620. },
  621. "type": "symfony-bundle",
  622. "autoload": {
  623. "psr-4": {
  624. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  625. }
  626. },
  627. "notification-url": "https://packagist.org/downloads/",
  628. "license": [
  629. "MIT"
  630. ],
  631. "authors": [
  632. {
  633. "name": "Fabien Potencier",
  634. "email": "fabien@symfony.com"
  635. },
  636. {
  637. "name": "Benjamin Eberlei",
  638. "email": "kontakt@beberlei.de"
  639. },
  640. {
  641. "name": "Symfony Community",
  642. "homepage": "https://symfony.com/contributors"
  643. },
  644. {
  645. "name": "Doctrine Project",
  646. "homepage": "https://www.doctrine-project.org/"
  647. }
  648. ],
  649. "description": "Symfony DoctrineBundle",
  650. "homepage": "https://www.doctrine-project.org",
  651. "keywords": [
  652. "database",
  653. "dbal",
  654. "orm",
  655. "persistence"
  656. ],
  657. "support": {
  658. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  659. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.7.0"
  660. },
  661. "funding": [
  662. {
  663. "url": "https://www.doctrine-project.org/sponsorship.html",
  664. "type": "custom"
  665. },
  666. {
  667. "url": "https://www.patreon.com/phpdoctrine",
  668. "type": "patreon"
  669. },
  670. {
  671. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  672. "type": "tidelift"
  673. }
  674. ],
  675. "time": "2022-06-10T10:55:26+00:00"
  676. },
  677. {
  678. "name": "doctrine/doctrine-migrations-bundle",
  679. "version": "3.2.2",
  680. "source": {
  681. "type": "git",
  682. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  683. "reference": "3393f411ba25ade21969c33f2053220044854d01"
  684. },
  685. "dist": {
  686. "type": "zip",
  687. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/3393f411ba25ade21969c33f2053220044854d01",
  688. "reference": "3393f411ba25ade21969c33f2053220044854d01",
  689. "shasum": ""
  690. },
  691. "require": {
  692. "doctrine/doctrine-bundle": "~1.0|~2.0",
  693. "doctrine/migrations": "^3.2",
  694. "php": "^7.2|^8.0",
  695. "symfony/framework-bundle": "~3.4|~4.0|~5.0|~6.0"
  696. },
  697. "require-dev": {
  698. "doctrine/coding-standard": "^8.0",
  699. "doctrine/orm": "^2.6",
  700. "doctrine/persistence": "^1.3||^2.0",
  701. "phpstan/phpstan": "^0.12",
  702. "phpstan/phpstan-deprecation-rules": "^0.12",
  703. "phpstan/phpstan-phpunit": "^0.12",
  704. "phpstan/phpstan-strict-rules": "^0.12",
  705. "phpunit/phpunit": "^8.0|^9.0",
  706. "vimeo/psalm": "^4.11"
  707. },
  708. "type": "symfony-bundle",
  709. "autoload": {
  710. "psr-4": {
  711. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  712. },
  713. "exclude-from-classmap": [
  714. "/Tests/"
  715. ]
  716. },
  717. "notification-url": "https://packagist.org/downloads/",
  718. "license": [
  719. "MIT"
  720. ],
  721. "authors": [
  722. {
  723. "name": "Fabien Potencier",
  724. "email": "fabien@symfony.com"
  725. },
  726. {
  727. "name": "Doctrine Project",
  728. "homepage": "https://www.doctrine-project.org"
  729. },
  730. {
  731. "name": "Symfony Community",
  732. "homepage": "https://symfony.com/contributors"
  733. }
  734. ],
  735. "description": "Symfony DoctrineMigrationsBundle",
  736. "homepage": "https://www.doctrine-project.org",
  737. "keywords": [
  738. "dbal",
  739. "migrations",
  740. "schema"
  741. ],
  742. "support": {
  743. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  744. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.2.2"
  745. },
  746. "funding": [
  747. {
  748. "url": "https://www.doctrine-project.org/sponsorship.html",
  749. "type": "custom"
  750. },
  751. {
  752. "url": "https://www.patreon.com/phpdoctrine",
  753. "type": "patreon"
  754. },
  755. {
  756. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  757. "type": "tidelift"
  758. }
  759. ],
  760. "time": "2022-02-01T18:08:07+00:00"
  761. },
  762. {
  763. "name": "doctrine/event-manager",
  764. "version": "1.1.2",
  765. "source": {
  766. "type": "git",
  767. "url": "https://github.com/doctrine/event-manager.git",
  768. "reference": "eb2ecf80e3093e8f3c2769ac838e27d8ede8e683"
  769. },
  770. "dist": {
  771. "type": "zip",
  772. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/eb2ecf80e3093e8f3c2769ac838e27d8ede8e683",
  773. "reference": "eb2ecf80e3093e8f3c2769ac838e27d8ede8e683",
  774. "shasum": ""
  775. },
  776. "require": {
  777. "php": "^7.1 || ^8.0"
  778. },
  779. "conflict": {
  780. "doctrine/common": "<2.9"
  781. },
  782. "require-dev": {
  783. "doctrine/coding-standard": "^9",
  784. "phpstan/phpstan": "~1.4.10 || ^1.5.4",
  785. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  786. "vimeo/psalm": "^4.22"
  787. },
  788. "type": "library",
  789. "autoload": {
  790. "psr-4": {
  791. "Doctrine\\Common\\": "lib/Doctrine/Common"
  792. }
  793. },
  794. "notification-url": "https://packagist.org/downloads/",
  795. "license": [
  796. "MIT"
  797. ],
  798. "authors": [
  799. {
  800. "name": "Guilherme Blanco",
  801. "email": "guilhermeblanco@gmail.com"
  802. },
  803. {
  804. "name": "Roman Borschel",
  805. "email": "roman@code-factory.org"
  806. },
  807. {
  808. "name": "Benjamin Eberlei",
  809. "email": "kontakt@beberlei.de"
  810. },
  811. {
  812. "name": "Jonathan Wage",
  813. "email": "jonwage@gmail.com"
  814. },
  815. {
  816. "name": "Johannes Schmitt",
  817. "email": "schmittjoh@gmail.com"
  818. },
  819. {
  820. "name": "Marco Pivetta",
  821. "email": "ocramius@gmail.com"
  822. }
  823. ],
  824. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  825. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  826. "keywords": [
  827. "event",
  828. "event dispatcher",
  829. "event manager",
  830. "event system",
  831. "events"
  832. ],
  833. "support": {
  834. "issues": "https://github.com/doctrine/event-manager/issues",
  835. "source": "https://github.com/doctrine/event-manager/tree/1.1.2"
  836. },
  837. "funding": [
  838. {
  839. "url": "https://www.doctrine-project.org/sponsorship.html",
  840. "type": "custom"
  841. },
  842. {
  843. "url": "https://www.patreon.com/phpdoctrine",
  844. "type": "patreon"
  845. },
  846. {
  847. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  848. "type": "tidelift"
  849. }
  850. ],
  851. "time": "2022-07-27T22:18:11+00:00"
  852. },
  853. {
  854. "name": "doctrine/inflector",
  855. "version": "2.0.5",
  856. "source": {
  857. "type": "git",
  858. "url": "https://github.com/doctrine/inflector.git",
  859. "reference": "ade2b3bbfb776f27f0558e26eed43b5d9fe1b392"
  860. },
  861. "dist": {
  862. "type": "zip",
  863. "url": "https://api.github.com/repos/doctrine/inflector/zipball/ade2b3bbfb776f27f0558e26eed43b5d9fe1b392",
  864. "reference": "ade2b3bbfb776f27f0558e26eed43b5d9fe1b392",
  865. "shasum": ""
  866. },
  867. "require": {
  868. "php": "^7.2 || ^8.0"
  869. },
  870. "require-dev": {
  871. "doctrine/coding-standard": "^9",
  872. "phpstan/phpstan": "^1.8",
  873. "phpstan/phpstan-phpunit": "^1.1",
  874. "phpstan/phpstan-strict-rules": "^1.3",
  875. "phpunit/phpunit": "^8.5 || ^9.5",
  876. "vimeo/psalm": "^4.25"
  877. },
  878. "type": "library",
  879. "autoload": {
  880. "psr-4": {
  881. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  882. }
  883. },
  884. "notification-url": "https://packagist.org/downloads/",
  885. "license": [
  886. "MIT"
  887. ],
  888. "authors": [
  889. {
  890. "name": "Guilherme Blanco",
  891. "email": "guilhermeblanco@gmail.com"
  892. },
  893. {
  894. "name": "Roman Borschel",
  895. "email": "roman@code-factory.org"
  896. },
  897. {
  898. "name": "Benjamin Eberlei",
  899. "email": "kontakt@beberlei.de"
  900. },
  901. {
  902. "name": "Jonathan Wage",
  903. "email": "jonwage@gmail.com"
  904. },
  905. {
  906. "name": "Johannes Schmitt",
  907. "email": "schmittjoh@gmail.com"
  908. }
  909. ],
  910. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  911. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  912. "keywords": [
  913. "inflection",
  914. "inflector",
  915. "lowercase",
  916. "manipulation",
  917. "php",
  918. "plural",
  919. "singular",
  920. "strings",
  921. "uppercase",
  922. "words"
  923. ],
  924. "support": {
  925. "issues": "https://github.com/doctrine/inflector/issues",
  926. "source": "https://github.com/doctrine/inflector/tree/2.0.5"
  927. },
  928. "funding": [
  929. {
  930. "url": "https://www.doctrine-project.org/sponsorship.html",
  931. "type": "custom"
  932. },
  933. {
  934. "url": "https://www.patreon.com/phpdoctrine",
  935. "type": "patreon"
  936. },
  937. {
  938. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  939. "type": "tidelift"
  940. }
  941. ],
  942. "time": "2022-09-07T09:01:28+00:00"
  943. },
  944. {
  945. "name": "doctrine/instantiator",
  946. "version": "1.4.1",
  947. "source": {
  948. "type": "git",
  949. "url": "https://github.com/doctrine/instantiator.git",
  950. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  951. },
  952. "dist": {
  953. "type": "zip",
  954. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  955. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  956. "shasum": ""
  957. },
  958. "require": {
  959. "php": "^7.1 || ^8.0"
  960. },
  961. "require-dev": {
  962. "doctrine/coding-standard": "^9",
  963. "ext-pdo": "*",
  964. "ext-phar": "*",
  965. "phpbench/phpbench": "^0.16 || ^1",
  966. "phpstan/phpstan": "^1.4",
  967. "phpstan/phpstan-phpunit": "^1",
  968. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  969. "vimeo/psalm": "^4.22"
  970. },
  971. "type": "library",
  972. "autoload": {
  973. "psr-4": {
  974. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  975. }
  976. },
  977. "notification-url": "https://packagist.org/downloads/",
  978. "license": [
  979. "MIT"
  980. ],
  981. "authors": [
  982. {
  983. "name": "Marco Pivetta",
  984. "email": "ocramius@gmail.com",
  985. "homepage": "https://ocramius.github.io/"
  986. }
  987. ],
  988. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  989. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  990. "keywords": [
  991. "constructor",
  992. "instantiate"
  993. ],
  994. "support": {
  995. "issues": "https://github.com/doctrine/instantiator/issues",
  996. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  997. },
  998. "funding": [
  999. {
  1000. "url": "https://www.doctrine-project.org/sponsorship.html",
  1001. "type": "custom"
  1002. },
  1003. {
  1004. "url": "https://www.patreon.com/phpdoctrine",
  1005. "type": "patreon"
  1006. },
  1007. {
  1008. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1009. "type": "tidelift"
  1010. }
  1011. ],
  1012. "time": "2022-03-03T08:28:38+00:00"
  1013. },
  1014. {
  1015. "name": "doctrine/lexer",
  1016. "version": "1.2.3",
  1017. "source": {
  1018. "type": "git",
  1019. "url": "https://github.com/doctrine/lexer.git",
  1020. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1021. },
  1022. "dist": {
  1023. "type": "zip",
  1024. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1025. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1026. "shasum": ""
  1027. },
  1028. "require": {
  1029. "php": "^7.1 || ^8.0"
  1030. },
  1031. "require-dev": {
  1032. "doctrine/coding-standard": "^9.0",
  1033. "phpstan/phpstan": "^1.3",
  1034. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1035. "vimeo/psalm": "^4.11"
  1036. },
  1037. "type": "library",
  1038. "autoload": {
  1039. "psr-4": {
  1040. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1041. }
  1042. },
  1043. "notification-url": "https://packagist.org/downloads/",
  1044. "license": [
  1045. "MIT"
  1046. ],
  1047. "authors": [
  1048. {
  1049. "name": "Guilherme Blanco",
  1050. "email": "guilhermeblanco@gmail.com"
  1051. },
  1052. {
  1053. "name": "Roman Borschel",
  1054. "email": "roman@code-factory.org"
  1055. },
  1056. {
  1057. "name": "Johannes Schmitt",
  1058. "email": "schmittjoh@gmail.com"
  1059. }
  1060. ],
  1061. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1062. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1063. "keywords": [
  1064. "annotations",
  1065. "docblock",
  1066. "lexer",
  1067. "parser",
  1068. "php"
  1069. ],
  1070. "support": {
  1071. "issues": "https://github.com/doctrine/lexer/issues",
  1072. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1073. },
  1074. "funding": [
  1075. {
  1076. "url": "https://www.doctrine-project.org/sponsorship.html",
  1077. "type": "custom"
  1078. },
  1079. {
  1080. "url": "https://www.patreon.com/phpdoctrine",
  1081. "type": "patreon"
  1082. },
  1083. {
  1084. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1085. "type": "tidelift"
  1086. }
  1087. ],
  1088. "time": "2022-02-28T11:07:21+00:00"
  1089. },
  1090. {
  1091. "name": "doctrine/migrations",
  1092. "version": "3.5.2",
  1093. "source": {
  1094. "type": "git",
  1095. "url": "https://github.com/doctrine/migrations.git",
  1096. "reference": "61c6ef3a10b7df43c3b6388a184754f26e58700a"
  1097. },
  1098. "dist": {
  1099. "type": "zip",
  1100. "url": "https://api.github.com/repos/doctrine/migrations/zipball/61c6ef3a10b7df43c3b6388a184754f26e58700a",
  1101. "reference": "61c6ef3a10b7df43c3b6388a184754f26e58700a",
  1102. "shasum": ""
  1103. },
  1104. "require": {
  1105. "composer-runtime-api": "^2",
  1106. "doctrine/dbal": "^3.3",
  1107. "doctrine/deprecations": "^0.5.3 || ^1",
  1108. "doctrine/event-manager": "^1.0",
  1109. "friendsofphp/proxy-manager-lts": "^1.0",
  1110. "php": "^7.4 || ^8.0",
  1111. "psr/log": "^1.1.3 || ^2 || ^3",
  1112. "symfony/console": "^4.4.16 || ^5.4 || ^6.0",
  1113. "symfony/stopwatch": "^4.4 || ^5.4 || ^6.0"
  1114. },
  1115. "conflict": {
  1116. "doctrine/orm": "<2.12"
  1117. },
  1118. "require-dev": {
  1119. "doctrine/coding-standard": "^9",
  1120. "doctrine/orm": "^2.12",
  1121. "doctrine/persistence": "^2 || ^3",
  1122. "doctrine/sql-formatter": "^1.0",
  1123. "ergebnis/composer-normalize": "^2.9",
  1124. "ext-pdo_sqlite": "*",
  1125. "phpstan/phpstan": "^1.5",
  1126. "phpstan/phpstan-deprecation-rules": "^1",
  1127. "phpstan/phpstan-phpunit": "^1.1",
  1128. "phpstan/phpstan-strict-rules": "^1.1",
  1129. "phpstan/phpstan-symfony": "^1.1",
  1130. "phpunit/phpunit": "^9.5",
  1131. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1132. "symfony/process": "^4.4 || ^5.4 || ^6.0",
  1133. "symfony/yaml": "^4.4 || ^5.4 || ^6.0"
  1134. },
  1135. "suggest": {
  1136. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1137. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1138. },
  1139. "bin": [
  1140. "bin/doctrine-migrations"
  1141. ],
  1142. "type": "library",
  1143. "extra": {
  1144. "composer-normalize": {
  1145. "indent-size": 4,
  1146. "indent-style": "space"
  1147. }
  1148. },
  1149. "autoload": {
  1150. "psr-4": {
  1151. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1152. }
  1153. },
  1154. "notification-url": "https://packagist.org/downloads/",
  1155. "license": [
  1156. "MIT"
  1157. ],
  1158. "authors": [
  1159. {
  1160. "name": "Benjamin Eberlei",
  1161. "email": "kontakt@beberlei.de"
  1162. },
  1163. {
  1164. "name": "Jonathan Wage",
  1165. "email": "jonwage@gmail.com"
  1166. },
  1167. {
  1168. "name": "Michael Simonson",
  1169. "email": "contact@mikesimonson.com"
  1170. }
  1171. ],
  1172. "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.",
  1173. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1174. "keywords": [
  1175. "database",
  1176. "dbal",
  1177. "migrations"
  1178. ],
  1179. "support": {
  1180. "issues": "https://github.com/doctrine/migrations/issues",
  1181. "source": "https://github.com/doctrine/migrations/tree/3.5.2"
  1182. },
  1183. "funding": [
  1184. {
  1185. "url": "https://www.doctrine-project.org/sponsorship.html",
  1186. "type": "custom"
  1187. },
  1188. {
  1189. "url": "https://www.patreon.com/phpdoctrine",
  1190. "type": "patreon"
  1191. },
  1192. {
  1193. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1194. "type": "tidelift"
  1195. }
  1196. ],
  1197. "time": "2022-08-04T14:29:49+00:00"
  1198. },
  1199. {
  1200. "name": "doctrine/orm",
  1201. "version": "2.13.3",
  1202. "source": {
  1203. "type": "git",
  1204. "url": "https://github.com/doctrine/orm.git",
  1205. "reference": "e750360bd52b080c4cbaaee1b48b80f7dc873b36"
  1206. },
  1207. "dist": {
  1208. "type": "zip",
  1209. "url": "https://api.github.com/repos/doctrine/orm/zipball/e750360bd52b080c4cbaaee1b48b80f7dc873b36",
  1210. "reference": "e750360bd52b080c4cbaaee1b48b80f7dc873b36",
  1211. "shasum": ""
  1212. },
  1213. "require": {
  1214. "composer-runtime-api": "^2",
  1215. "doctrine/cache": "^1.12.1 || ^2.1.1",
  1216. "doctrine/collections": "^1.5",
  1217. "doctrine/common": "^3.0.3",
  1218. "doctrine/dbal": "^2.13.1 || ^3.2",
  1219. "doctrine/deprecations": "^0.5.3 || ^1",
  1220. "doctrine/event-manager": "^1.1",
  1221. "doctrine/inflector": "^1.4 || ^2.0",
  1222. "doctrine/instantiator": "^1.3",
  1223. "doctrine/lexer": "^1.2.3",
  1224. "doctrine/persistence": "^2.4 || ^3",
  1225. "ext-ctype": "*",
  1226. "php": "^7.1 || ^8.0",
  1227. "psr/cache": "^1 || ^2 || ^3",
  1228. "symfony/console": "^3.0 || ^4.0 || ^5.0 || ^6.0",
  1229. "symfony/polyfill-php72": "^1.23",
  1230. "symfony/polyfill-php80": "^1.16"
  1231. },
  1232. "conflict": {
  1233. "doctrine/annotations": "<1.13 || >= 2.0"
  1234. },
  1235. "require-dev": {
  1236. "doctrine/annotations": "^1.13",
  1237. "doctrine/coding-standard": "^9.0.2 || ^10.0",
  1238. "phpbench/phpbench": "^0.16.10 || ^1.0",
  1239. "phpstan/phpstan": "~1.4.10 || 1.8.5",
  1240. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1241. "psr/log": "^1 || ^2 || ^3",
  1242. "squizlabs/php_codesniffer": "3.7.1",
  1243. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1244. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0",
  1245. "vimeo/psalm": "4.27.0"
  1246. },
  1247. "suggest": {
  1248. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1249. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
  1250. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1251. },
  1252. "bin": [
  1253. "bin/doctrine"
  1254. ],
  1255. "type": "library",
  1256. "autoload": {
  1257. "psr-4": {
  1258. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1259. }
  1260. },
  1261. "notification-url": "https://packagist.org/downloads/",
  1262. "license": [
  1263. "MIT"
  1264. ],
  1265. "authors": [
  1266. {
  1267. "name": "Guilherme Blanco",
  1268. "email": "guilhermeblanco@gmail.com"
  1269. },
  1270. {
  1271. "name": "Roman Borschel",
  1272. "email": "roman@code-factory.org"
  1273. },
  1274. {
  1275. "name": "Benjamin Eberlei",
  1276. "email": "kontakt@beberlei.de"
  1277. },
  1278. {
  1279. "name": "Jonathan Wage",
  1280. "email": "jonwage@gmail.com"
  1281. },
  1282. {
  1283. "name": "Marco Pivetta",
  1284. "email": "ocramius@gmail.com"
  1285. }
  1286. ],
  1287. "description": "Object-Relational-Mapper for PHP",
  1288. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1289. "keywords": [
  1290. "database",
  1291. "orm"
  1292. ],
  1293. "support": {
  1294. "issues": "https://github.com/doctrine/orm/issues",
  1295. "source": "https://github.com/doctrine/orm/tree/2.13.3"
  1296. },
  1297. "time": "2022-10-07T06:37:17+00:00"
  1298. },
  1299. {
  1300. "name": "doctrine/persistence",
  1301. "version": "3.0.3",
  1302. "source": {
  1303. "type": "git",
  1304. "url": "https://github.com/doctrine/persistence.git",
  1305. "reference": "ac6fce61f037d7e54dbb2435f5b5648d86548e23"
  1306. },
  1307. "dist": {
  1308. "type": "zip",
  1309. "url": "https://api.github.com/repos/doctrine/persistence/zipball/ac6fce61f037d7e54dbb2435f5b5648d86548e23",
  1310. "reference": "ac6fce61f037d7e54dbb2435f5b5648d86548e23",
  1311. "shasum": ""
  1312. },
  1313. "require": {
  1314. "doctrine/event-manager": "^1.0",
  1315. "php": "^7.2 || ^8.0",
  1316. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1317. },
  1318. "conflict": {
  1319. "doctrine/annotations": "<1.7 || >=2.0",
  1320. "doctrine/common": "<2.10"
  1321. },
  1322. "require-dev": {
  1323. "composer/package-versions-deprecated": "^1.11",
  1324. "doctrine/annotations": "^1.7",
  1325. "doctrine/coding-standard": "^9.0",
  1326. "doctrine/common": "^3.0",
  1327. "phpstan/phpstan": "1.5.0",
  1328. "phpstan/phpstan-phpunit": "^1",
  1329. "phpstan/phpstan-strict-rules": "^1.1",
  1330. "phpunit/phpunit": "^8.5 || ^9.5",
  1331. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1332. "vimeo/psalm": "4.22.0"
  1333. },
  1334. "type": "library",
  1335. "autoload": {
  1336. "psr-4": {
  1337. "Doctrine\\Persistence\\": "src/Persistence"
  1338. }
  1339. },
  1340. "notification-url": "https://packagist.org/downloads/",
  1341. "license": [
  1342. "MIT"
  1343. ],
  1344. "authors": [
  1345. {
  1346. "name": "Guilherme Blanco",
  1347. "email": "guilhermeblanco@gmail.com"
  1348. },
  1349. {
  1350. "name": "Roman Borschel",
  1351. "email": "roman@code-factory.org"
  1352. },
  1353. {
  1354. "name": "Benjamin Eberlei",
  1355. "email": "kontakt@beberlei.de"
  1356. },
  1357. {
  1358. "name": "Jonathan Wage",
  1359. "email": "jonwage@gmail.com"
  1360. },
  1361. {
  1362. "name": "Johannes Schmitt",
  1363. "email": "schmittjoh@gmail.com"
  1364. },
  1365. {
  1366. "name": "Marco Pivetta",
  1367. "email": "ocramius@gmail.com"
  1368. }
  1369. ],
  1370. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1371. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1372. "keywords": [
  1373. "mapper",
  1374. "object",
  1375. "odm",
  1376. "orm",
  1377. "persistence"
  1378. ],
  1379. "support": {
  1380. "issues": "https://github.com/doctrine/persistence/issues",
  1381. "source": "https://github.com/doctrine/persistence/tree/3.0.3"
  1382. },
  1383. "funding": [
  1384. {
  1385. "url": "https://www.doctrine-project.org/sponsorship.html",
  1386. "type": "custom"
  1387. },
  1388. {
  1389. "url": "https://www.patreon.com/phpdoctrine",
  1390. "type": "patreon"
  1391. },
  1392. {
  1393. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1394. "type": "tidelift"
  1395. }
  1396. ],
  1397. "time": "2022-08-04T21:14:21+00:00"
  1398. },
  1399. {
  1400. "name": "doctrine/sql-formatter",
  1401. "version": "1.1.3",
  1402. "source": {
  1403. "type": "git",
  1404. "url": "https://github.com/doctrine/sql-formatter.git",
  1405. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5"
  1406. },
  1407. "dist": {
  1408. "type": "zip",
  1409. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/25a06c7bf4c6b8218f47928654252863ffc890a5",
  1410. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5",
  1411. "shasum": ""
  1412. },
  1413. "require": {
  1414. "php": "^7.1 || ^8.0"
  1415. },
  1416. "require-dev": {
  1417. "bamarni/composer-bin-plugin": "^1.4"
  1418. },
  1419. "bin": [
  1420. "bin/sql-formatter"
  1421. ],
  1422. "type": "library",
  1423. "autoload": {
  1424. "psr-4": {
  1425. "Doctrine\\SqlFormatter\\": "src"
  1426. }
  1427. },
  1428. "notification-url": "https://packagist.org/downloads/",
  1429. "license": [
  1430. "MIT"
  1431. ],
  1432. "authors": [
  1433. {
  1434. "name": "Jeremy Dorn",
  1435. "email": "jeremy@jeremydorn.com",
  1436. "homepage": "https://jeremydorn.com/"
  1437. }
  1438. ],
  1439. "description": "a PHP SQL highlighting library",
  1440. "homepage": "https://github.com/doctrine/sql-formatter/",
  1441. "keywords": [
  1442. "highlight",
  1443. "sql"
  1444. ],
  1445. "support": {
  1446. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1447. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.3"
  1448. },
  1449. "time": "2022-05-23T21:33:49+00:00"
  1450. },
  1451. {
  1452. "name": "egulias/email-validator",
  1453. "version": "3.2.1",
  1454. "source": {
  1455. "type": "git",
  1456. "url": "https://github.com/egulias/EmailValidator.git",
  1457. "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715"
  1458. },
  1459. "dist": {
  1460. "type": "zip",
  1461. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/f88dcf4b14af14a98ad96b14b2b317969eab6715",
  1462. "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715",
  1463. "shasum": ""
  1464. },
  1465. "require": {
  1466. "doctrine/lexer": "^1.2",
  1467. "php": ">=7.2",
  1468. "symfony/polyfill-intl-idn": "^1.15"
  1469. },
  1470. "require-dev": {
  1471. "php-coveralls/php-coveralls": "^2.2",
  1472. "phpunit/phpunit": "^8.5.8|^9.3.3",
  1473. "vimeo/psalm": "^4"
  1474. },
  1475. "suggest": {
  1476. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1477. },
  1478. "type": "library",
  1479. "extra": {
  1480. "branch-alias": {
  1481. "dev-master": "3.0.x-dev"
  1482. }
  1483. },
  1484. "autoload": {
  1485. "psr-4": {
  1486. "Egulias\\EmailValidator\\": "src"
  1487. }
  1488. },
  1489. "notification-url": "https://packagist.org/downloads/",
  1490. "license": [
  1491. "MIT"
  1492. ],
  1493. "authors": [
  1494. {
  1495. "name": "Eduardo Gulias Davis"
  1496. }
  1497. ],
  1498. "description": "A library for validating emails against several RFCs",
  1499. "homepage": "https://github.com/egulias/EmailValidator",
  1500. "keywords": [
  1501. "email",
  1502. "emailvalidation",
  1503. "emailvalidator",
  1504. "validation",
  1505. "validator"
  1506. ],
  1507. "support": {
  1508. "issues": "https://github.com/egulias/EmailValidator/issues",
  1509. "source": "https://github.com/egulias/EmailValidator/tree/3.2.1"
  1510. },
  1511. "funding": [
  1512. {
  1513. "url": "https://github.com/egulias",
  1514. "type": "github"
  1515. }
  1516. ],
  1517. "time": "2022-06-18T20:57:19+00:00"
  1518. },
  1519. {
  1520. "name": "friendsofphp/proxy-manager-lts",
  1521. "version": "v1.0.12",
  1522. "source": {
  1523. "type": "git",
  1524. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1525. "reference": "8419f0158715b30d4b99a5bd37c6a39671994ad7"
  1526. },
  1527. "dist": {
  1528. "type": "zip",
  1529. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/8419f0158715b30d4b99a5bd37c6a39671994ad7",
  1530. "reference": "8419f0158715b30d4b99a5bd37c6a39671994ad7",
  1531. "shasum": ""
  1532. },
  1533. "require": {
  1534. "laminas/laminas-code": "~3.4.1|^4.0",
  1535. "php": ">=7.1",
  1536. "symfony/filesystem": "^4.4.17|^5.0|^6.0"
  1537. },
  1538. "conflict": {
  1539. "laminas/laminas-stdlib": "<3.2.1",
  1540. "zendframework/zend-stdlib": "<3.2.1"
  1541. },
  1542. "replace": {
  1543. "ocramius/proxy-manager": "^2.1"
  1544. },
  1545. "require-dev": {
  1546. "ext-phar": "*",
  1547. "symfony/phpunit-bridge": "^5.4|^6.0"
  1548. },
  1549. "type": "library",
  1550. "extra": {
  1551. "thanks": {
  1552. "name": "ocramius/proxy-manager",
  1553. "url": "https://github.com/Ocramius/ProxyManager"
  1554. }
  1555. },
  1556. "autoload": {
  1557. "psr-4": {
  1558. "ProxyManager\\": "src/ProxyManager"
  1559. }
  1560. },
  1561. "notification-url": "https://packagist.org/downloads/",
  1562. "license": [
  1563. "MIT"
  1564. ],
  1565. "authors": [
  1566. {
  1567. "name": "Marco Pivetta",
  1568. "email": "ocramius@gmail.com",
  1569. "homepage": "https://ocramius.github.io/"
  1570. },
  1571. {
  1572. "name": "Nicolas Grekas",
  1573. "email": "p@tchwork.com"
  1574. }
  1575. ],
  1576. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1577. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1578. "keywords": [
  1579. "aop",
  1580. "lazy loading",
  1581. "proxy",
  1582. "proxy pattern",
  1583. "service proxies"
  1584. ],
  1585. "support": {
  1586. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1587. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.12"
  1588. },
  1589. "funding": [
  1590. {
  1591. "url": "https://github.com/Ocramius",
  1592. "type": "github"
  1593. },
  1594. {
  1595. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1596. "type": "tidelift"
  1597. }
  1598. ],
  1599. "time": "2022-05-05T09:31:05+00:00"
  1600. },
  1601. {
  1602. "name": "laminas/laminas-code",
  1603. "version": "4.7.0",
  1604. "source": {
  1605. "type": "git",
  1606. "url": "https://github.com/laminas/laminas-code.git",
  1607. "reference": "0337d9265bc2e6376babad8c511500821620cb30"
  1608. },
  1609. "dist": {
  1610. "type": "zip",
  1611. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/0337d9265bc2e6376babad8c511500821620cb30",
  1612. "reference": "0337d9265bc2e6376babad8c511500821620cb30",
  1613. "shasum": ""
  1614. },
  1615. "require": {
  1616. "php": ">=7.4, <8.2"
  1617. },
  1618. "require-dev": {
  1619. "doctrine/annotations": "^1.13.2",
  1620. "ext-phar": "*",
  1621. "laminas/laminas-coding-standard": "^2.3.0",
  1622. "laminas/laminas-stdlib": "^3.6.1",
  1623. "phpunit/phpunit": "^9.5.10",
  1624. "psalm/plugin-phpunit": "^0.17.0",
  1625. "vimeo/psalm": "^4.13.1"
  1626. },
  1627. "suggest": {
  1628. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1629. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1630. },
  1631. "type": "library",
  1632. "autoload": {
  1633. "files": [
  1634. "polyfill/ReflectionEnumPolyfill.php"
  1635. ],
  1636. "psr-4": {
  1637. "Laminas\\Code\\": "src/"
  1638. }
  1639. },
  1640. "notification-url": "https://packagist.org/downloads/",
  1641. "license": [
  1642. "BSD-3-Clause"
  1643. ],
  1644. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1645. "homepage": "https://laminas.dev",
  1646. "keywords": [
  1647. "code",
  1648. "laminas",
  1649. "laminasframework"
  1650. ],
  1651. "support": {
  1652. "chat": "https://laminas.dev/chat",
  1653. "docs": "https://docs.laminas.dev/laminas-code/",
  1654. "forum": "https://discourse.laminas.dev",
  1655. "issues": "https://github.com/laminas/laminas-code/issues",
  1656. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1657. "source": "https://github.com/laminas/laminas-code"
  1658. },
  1659. "funding": [
  1660. {
  1661. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1662. "type": "community_bridge"
  1663. }
  1664. ],
  1665. "time": "2022-09-13T10:33:30+00:00"
  1666. },
  1667. {
  1668. "name": "monolog/monolog",
  1669. "version": "2.8.0",
  1670. "source": {
  1671. "type": "git",
  1672. "url": "https://github.com/Seldaek/monolog.git",
  1673. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50"
  1674. },
  1675. "dist": {
  1676. "type": "zip",
  1677. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50",
  1678. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50",
  1679. "shasum": ""
  1680. },
  1681. "require": {
  1682. "php": ">=7.2",
  1683. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1684. },
  1685. "provide": {
  1686. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1687. },
  1688. "require-dev": {
  1689. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1690. "doctrine/couchdb": "~1.0@dev",
  1691. "elasticsearch/elasticsearch": "^7 || ^8",
  1692. "ext-json": "*",
  1693. "graylog2/gelf-php": "^1.4.2",
  1694. "guzzlehttp/guzzle": "^7.4",
  1695. "guzzlehttp/psr7": "^2.2",
  1696. "mongodb/mongodb": "^1.8",
  1697. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1698. "phpspec/prophecy": "^1.15",
  1699. "phpstan/phpstan": "^0.12.91",
  1700. "phpunit/phpunit": "^8.5.14",
  1701. "predis/predis": "^1.1 || ^2.0",
  1702. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1703. "ruflin/elastica": "^7",
  1704. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1705. "symfony/mailer": "^5.4 || ^6",
  1706. "symfony/mime": "^5.4 || ^6"
  1707. },
  1708. "suggest": {
  1709. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1710. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1711. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1712. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1713. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1714. "ext-mbstring": "Allow to work properly with unicode symbols",
  1715. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1716. "ext-openssl": "Required to send log messages using SSL",
  1717. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1718. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1719. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1720. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1721. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1722. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1723. },
  1724. "type": "library",
  1725. "extra": {
  1726. "branch-alias": {
  1727. "dev-main": "2.x-dev"
  1728. }
  1729. },
  1730. "autoload": {
  1731. "psr-4": {
  1732. "Monolog\\": "src/Monolog"
  1733. }
  1734. },
  1735. "notification-url": "https://packagist.org/downloads/",
  1736. "license": [
  1737. "MIT"
  1738. ],
  1739. "authors": [
  1740. {
  1741. "name": "Jordi Boggiano",
  1742. "email": "j.boggiano@seld.be",
  1743. "homepage": "https://seld.be"
  1744. }
  1745. ],
  1746. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1747. "homepage": "https://github.com/Seldaek/monolog",
  1748. "keywords": [
  1749. "log",
  1750. "logging",
  1751. "psr-3"
  1752. ],
  1753. "support": {
  1754. "issues": "https://github.com/Seldaek/monolog/issues",
  1755. "source": "https://github.com/Seldaek/monolog/tree/2.8.0"
  1756. },
  1757. "funding": [
  1758. {
  1759. "url": "https://github.com/Seldaek",
  1760. "type": "github"
  1761. },
  1762. {
  1763. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1764. "type": "tidelift"
  1765. }
  1766. ],
  1767. "time": "2022-07-24T11:55:47+00:00"
  1768. },
  1769. {
  1770. "name": "phpdocumentor/reflection-common",
  1771. "version": "2.2.0",
  1772. "source": {
  1773. "type": "git",
  1774. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1775. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1776. },
  1777. "dist": {
  1778. "type": "zip",
  1779. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1780. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1781. "shasum": ""
  1782. },
  1783. "require": {
  1784. "php": "^7.2 || ^8.0"
  1785. },
  1786. "type": "library",
  1787. "extra": {
  1788. "branch-alias": {
  1789. "dev-2.x": "2.x-dev"
  1790. }
  1791. },
  1792. "autoload": {
  1793. "psr-4": {
  1794. "phpDocumentor\\Reflection\\": "src/"
  1795. }
  1796. },
  1797. "notification-url": "https://packagist.org/downloads/",
  1798. "license": [
  1799. "MIT"
  1800. ],
  1801. "authors": [
  1802. {
  1803. "name": "Jaap van Otterdijk",
  1804. "email": "opensource@ijaap.nl"
  1805. }
  1806. ],
  1807. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1808. "homepage": "http://www.phpdoc.org",
  1809. "keywords": [
  1810. "FQSEN",
  1811. "phpDocumentor",
  1812. "phpdoc",
  1813. "reflection",
  1814. "static analysis"
  1815. ],
  1816. "support": {
  1817. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1818. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1819. },
  1820. "time": "2020-06-27T09:03:43+00:00"
  1821. },
  1822. {
  1823. "name": "phpdocumentor/reflection-docblock",
  1824. "version": "5.3.0",
  1825. "source": {
  1826. "type": "git",
  1827. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1828. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  1829. },
  1830. "dist": {
  1831. "type": "zip",
  1832. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  1833. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  1834. "shasum": ""
  1835. },
  1836. "require": {
  1837. "ext-filter": "*",
  1838. "php": "^7.2 || ^8.0",
  1839. "phpdocumentor/reflection-common": "^2.2",
  1840. "phpdocumentor/type-resolver": "^1.3",
  1841. "webmozart/assert": "^1.9.1"
  1842. },
  1843. "require-dev": {
  1844. "mockery/mockery": "~1.3.2",
  1845. "psalm/phar": "^4.8"
  1846. },
  1847. "type": "library",
  1848. "extra": {
  1849. "branch-alias": {
  1850. "dev-master": "5.x-dev"
  1851. }
  1852. },
  1853. "autoload": {
  1854. "psr-4": {
  1855. "phpDocumentor\\Reflection\\": "src"
  1856. }
  1857. },
  1858. "notification-url": "https://packagist.org/downloads/",
  1859. "license": [
  1860. "MIT"
  1861. ],
  1862. "authors": [
  1863. {
  1864. "name": "Mike van Riel",
  1865. "email": "me@mikevanriel.com"
  1866. },
  1867. {
  1868. "name": "Jaap van Otterdijk",
  1869. "email": "account@ijaap.nl"
  1870. }
  1871. ],
  1872. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1873. "support": {
  1874. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1875. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  1876. },
  1877. "time": "2021-10-19T17:43:47+00:00"
  1878. },
  1879. {
  1880. "name": "phpdocumentor/type-resolver",
  1881. "version": "1.6.1",
  1882. "source": {
  1883. "type": "git",
  1884. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1885. "reference": "77a32518733312af16a44300404e945338981de3"
  1886. },
  1887. "dist": {
  1888. "type": "zip",
  1889. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  1890. "reference": "77a32518733312af16a44300404e945338981de3",
  1891. "shasum": ""
  1892. },
  1893. "require": {
  1894. "php": "^7.2 || ^8.0",
  1895. "phpdocumentor/reflection-common": "^2.0"
  1896. },
  1897. "require-dev": {
  1898. "ext-tokenizer": "*",
  1899. "psalm/phar": "^4.8"
  1900. },
  1901. "type": "library",
  1902. "extra": {
  1903. "branch-alias": {
  1904. "dev-1.x": "1.x-dev"
  1905. }
  1906. },
  1907. "autoload": {
  1908. "psr-4": {
  1909. "phpDocumentor\\Reflection\\": "src"
  1910. }
  1911. },
  1912. "notification-url": "https://packagist.org/downloads/",
  1913. "license": [
  1914. "MIT"
  1915. ],
  1916. "authors": [
  1917. {
  1918. "name": "Mike van Riel",
  1919. "email": "me@mikevanriel.com"
  1920. }
  1921. ],
  1922. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1923. "support": {
  1924. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  1925. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  1926. },
  1927. "time": "2022-03-15T21:29:03+00:00"
  1928. },
  1929. {
  1930. "name": "psr/cache",
  1931. "version": "2.0.0",
  1932. "source": {
  1933. "type": "git",
  1934. "url": "https://github.com/php-fig/cache.git",
  1935. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b"
  1936. },
  1937. "dist": {
  1938. "type": "zip",
  1939. "url": "https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  1940. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  1941. "shasum": ""
  1942. },
  1943. "require": {
  1944. "php": ">=8.0.0"
  1945. },
  1946. "type": "library",
  1947. "extra": {
  1948. "branch-alias": {
  1949. "dev-master": "1.0.x-dev"
  1950. }
  1951. },
  1952. "autoload": {
  1953. "psr-4": {
  1954. "Psr\\Cache\\": "src/"
  1955. }
  1956. },
  1957. "notification-url": "https://packagist.org/downloads/",
  1958. "license": [
  1959. "MIT"
  1960. ],
  1961. "authors": [
  1962. {
  1963. "name": "PHP-FIG",
  1964. "homepage": "https://www.php-fig.org/"
  1965. }
  1966. ],
  1967. "description": "Common interface for caching libraries",
  1968. "keywords": [
  1969. "cache",
  1970. "psr",
  1971. "psr-6"
  1972. ],
  1973. "support": {
  1974. "source": "https://github.com/php-fig/cache/tree/2.0.0"
  1975. },
  1976. "time": "2021-02-03T23:23:37+00:00"
  1977. },
  1978. {
  1979. "name": "psr/container",
  1980. "version": "1.1.2",
  1981. "source": {
  1982. "type": "git",
  1983. "url": "https://github.com/php-fig/container.git",
  1984. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  1985. },
  1986. "dist": {
  1987. "type": "zip",
  1988. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  1989. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  1990. "shasum": ""
  1991. },
  1992. "require": {
  1993. "php": ">=7.4.0"
  1994. },
  1995. "type": "library",
  1996. "autoload": {
  1997. "psr-4": {
  1998. "Psr\\Container\\": "src/"
  1999. }
  2000. },
  2001. "notification-url": "https://packagist.org/downloads/",
  2002. "license": [
  2003. "MIT"
  2004. ],
  2005. "authors": [
  2006. {
  2007. "name": "PHP-FIG",
  2008. "homepage": "https://www.php-fig.org/"
  2009. }
  2010. ],
  2011. "description": "Common Container Interface (PHP FIG PSR-11)",
  2012. "homepage": "https://github.com/php-fig/container",
  2013. "keywords": [
  2014. "PSR-11",
  2015. "container",
  2016. "container-interface",
  2017. "container-interop",
  2018. "psr"
  2019. ],
  2020. "support": {
  2021. "issues": "https://github.com/php-fig/container/issues",
  2022. "source": "https://github.com/php-fig/container/tree/1.1.2"
  2023. },
  2024. "time": "2021-11-05T16:50:12+00:00"
  2025. },
  2026. {
  2027. "name": "psr/event-dispatcher",
  2028. "version": "1.0.0",
  2029. "source": {
  2030. "type": "git",
  2031. "url": "https://github.com/php-fig/event-dispatcher.git",
  2032. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2033. },
  2034. "dist": {
  2035. "type": "zip",
  2036. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2037. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2038. "shasum": ""
  2039. },
  2040. "require": {
  2041. "php": ">=7.2.0"
  2042. },
  2043. "type": "library",
  2044. "extra": {
  2045. "branch-alias": {
  2046. "dev-master": "1.0.x-dev"
  2047. }
  2048. },
  2049. "autoload": {
  2050. "psr-4": {
  2051. "Psr\\EventDispatcher\\": "src/"
  2052. }
  2053. },
  2054. "notification-url": "https://packagist.org/downloads/",
  2055. "license": [
  2056. "MIT"
  2057. ],
  2058. "authors": [
  2059. {
  2060. "name": "PHP-FIG",
  2061. "homepage": "http://www.php-fig.org/"
  2062. }
  2063. ],
  2064. "description": "Standard interfaces for event handling.",
  2065. "keywords": [
  2066. "events",
  2067. "psr",
  2068. "psr-14"
  2069. ],
  2070. "support": {
  2071. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2072. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2073. },
  2074. "time": "2019-01-08T18:20:26+00:00"
  2075. },
  2076. {
  2077. "name": "psr/link",
  2078. "version": "1.1.1",
  2079. "source": {
  2080. "type": "git",
  2081. "url": "https://github.com/php-fig/link.git",
  2082. "reference": "846c25f58a1f02b93a00f2404e3626b6bf9b7807"
  2083. },
  2084. "dist": {
  2085. "type": "zip",
  2086. "url": "https://api.github.com/repos/php-fig/link/zipball/846c25f58a1f02b93a00f2404e3626b6bf9b7807",
  2087. "reference": "846c25f58a1f02b93a00f2404e3626b6bf9b7807",
  2088. "shasum": ""
  2089. },
  2090. "require": {
  2091. "php": ">=8.0.0"
  2092. },
  2093. "type": "library",
  2094. "extra": {
  2095. "branch-alias": {
  2096. "dev-master": "1.0.x-dev"
  2097. }
  2098. },
  2099. "autoload": {
  2100. "psr-4": {
  2101. "Psr\\Link\\": "src/"
  2102. }
  2103. },
  2104. "notification-url": "https://packagist.org/downloads/",
  2105. "license": [
  2106. "MIT"
  2107. ],
  2108. "authors": [
  2109. {
  2110. "name": "PHP-FIG",
  2111. "homepage": "http://www.php-fig.org/"
  2112. }
  2113. ],
  2114. "description": "Common interfaces for HTTP links",
  2115. "homepage": "https://github.com/php-fig/link",
  2116. "keywords": [
  2117. "http",
  2118. "http-link",
  2119. "link",
  2120. "psr",
  2121. "psr-13",
  2122. "rest"
  2123. ],
  2124. "support": {
  2125. "source": "https://github.com/php-fig/link/tree/1.1.1"
  2126. },
  2127. "time": "2021-03-11T22:59:13+00:00"
  2128. },
  2129. {
  2130. "name": "psr/log",
  2131. "version": "2.0.0",
  2132. "source": {
  2133. "type": "git",
  2134. "url": "https://github.com/php-fig/log.git",
  2135. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  2136. },
  2137. "dist": {
  2138. "type": "zip",
  2139. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  2140. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  2141. "shasum": ""
  2142. },
  2143. "require": {
  2144. "php": ">=8.0.0"
  2145. },
  2146. "type": "library",
  2147. "extra": {
  2148. "branch-alias": {
  2149. "dev-master": "2.0.x-dev"
  2150. }
  2151. },
  2152. "autoload": {
  2153. "psr-4": {
  2154. "Psr\\Log\\": "src"
  2155. }
  2156. },
  2157. "notification-url": "https://packagist.org/downloads/",
  2158. "license": [
  2159. "MIT"
  2160. ],
  2161. "authors": [
  2162. {
  2163. "name": "PHP-FIG",
  2164. "homepage": "https://www.php-fig.org/"
  2165. }
  2166. ],
  2167. "description": "Common interface for logging libraries",
  2168. "homepage": "https://github.com/php-fig/log",
  2169. "keywords": [
  2170. "log",
  2171. "psr",
  2172. "psr-3"
  2173. ],
  2174. "support": {
  2175. "source": "https://github.com/php-fig/log/tree/2.0.0"
  2176. },
  2177. "time": "2021-07-14T16:41:46+00:00"
  2178. },
  2179. {
  2180. "name": "sensio/framework-extra-bundle",
  2181. "version": "v6.2.8",
  2182. "source": {
  2183. "type": "git",
  2184. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2185. "reference": "bb962f8aed09e60b0942545f6e4842ffeee4aafd"
  2186. },
  2187. "dist": {
  2188. "type": "zip",
  2189. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/bb962f8aed09e60b0942545f6e4842ffeee4aafd",
  2190. "reference": "bb962f8aed09e60b0942545f6e4842ffeee4aafd",
  2191. "shasum": ""
  2192. },
  2193. "require": {
  2194. "doctrine/annotations": "^1.0",
  2195. "php": ">=7.2.5",
  2196. "symfony/config": "^4.4|^5.0|^6.0",
  2197. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2198. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  2199. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  2200. },
  2201. "conflict": {
  2202. "doctrine/doctrine-cache-bundle": "<1.3.1",
  2203. "doctrine/persistence": "<1.3"
  2204. },
  2205. "require-dev": {
  2206. "doctrine/dbal": "^2.10|^3.0",
  2207. "doctrine/doctrine-bundle": "^1.11|^2.0",
  2208. "doctrine/orm": "^2.5",
  2209. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  2210. "symfony/doctrine-bridge": "^4.4|^5.0|^6.0",
  2211. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  2212. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2213. "symfony/finder": "^4.4|^5.0|^6.0",
  2214. "symfony/monolog-bridge": "^4.0|^5.0|^6.0",
  2215. "symfony/monolog-bundle": "^3.2",
  2216. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  2217. "symfony/security-bundle": "^4.4|^5.0|^6.0",
  2218. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  2219. "symfony/yaml": "^4.4|^5.0|^6.0",
  2220. "twig/twig": "^1.34|^2.4|^3.0"
  2221. },
  2222. "type": "symfony-bundle",
  2223. "extra": {
  2224. "branch-alias": {
  2225. "dev-master": "6.1.x-dev"
  2226. }
  2227. },
  2228. "autoload": {
  2229. "psr-4": {
  2230. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  2231. },
  2232. "exclude-from-classmap": [
  2233. "/tests/"
  2234. ]
  2235. },
  2236. "notification-url": "https://packagist.org/downloads/",
  2237. "license": [
  2238. "MIT"
  2239. ],
  2240. "authors": [
  2241. {
  2242. "name": "Fabien Potencier",
  2243. "email": "fabien@symfony.com"
  2244. }
  2245. ],
  2246. "description": "This bundle provides a way to configure your controllers with annotations",
  2247. "keywords": [
  2248. "annotations",
  2249. "controllers"
  2250. ],
  2251. "support": {
  2252. "issues": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/issues",
  2253. "source": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/tree/v6.2.8"
  2254. },
  2255. "time": "2022-09-05T16:44:56+00:00"
  2256. },
  2257. {
  2258. "name": "symfony/apache-pack",
  2259. "version": "v1.0.1",
  2260. "source": {
  2261. "type": "git",
  2262. "url": "https://github.com/symfony/apache-pack.git",
  2263. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2264. },
  2265. "dist": {
  2266. "type": "zip",
  2267. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2268. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2269. "shasum": ""
  2270. },
  2271. "type": "symfony-pack",
  2272. "notification-url": "https://packagist.org/downloads/",
  2273. "license": [
  2274. "MIT"
  2275. ],
  2276. "description": "A pack for Apache support in Symfony",
  2277. "support": {
  2278. "issues": "https://github.com/symfony/apache-pack/issues",
  2279. "source": "https://github.com/symfony/apache-pack/tree/master"
  2280. },
  2281. "time": "2017-12-12T01:46:35+00:00"
  2282. },
  2283. {
  2284. "name": "symfony/asset",
  2285. "version": "v5.4.13",
  2286. "source": {
  2287. "type": "git",
  2288. "url": "https://github.com/symfony/asset.git",
  2289. "reference": "9aa867206711cb6fcca51ef127ba52a018170be9"
  2290. },
  2291. "dist": {
  2292. "type": "zip",
  2293. "url": "https://api.github.com/repos/symfony/asset/zipball/9aa867206711cb6fcca51ef127ba52a018170be9",
  2294. "reference": "9aa867206711cb6fcca51ef127ba52a018170be9",
  2295. "shasum": ""
  2296. },
  2297. "require": {
  2298. "php": ">=7.2.5",
  2299. "symfony/deprecation-contracts": "^2.1|^3",
  2300. "symfony/polyfill-php80": "^1.16"
  2301. },
  2302. "conflict": {
  2303. "symfony/http-foundation": "<5.3"
  2304. },
  2305. "require-dev": {
  2306. "symfony/http-client": "^4.4|^5.0|^6.0",
  2307. "symfony/http-foundation": "^5.3|^6.0",
  2308. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  2309. },
  2310. "suggest": {
  2311. "symfony/http-foundation": ""
  2312. },
  2313. "type": "library",
  2314. "autoload": {
  2315. "psr-4": {
  2316. "Symfony\\Component\\Asset\\": ""
  2317. },
  2318. "exclude-from-classmap": [
  2319. "/Tests/"
  2320. ]
  2321. },
  2322. "notification-url": "https://packagist.org/downloads/",
  2323. "license": [
  2324. "MIT"
  2325. ],
  2326. "authors": [
  2327. {
  2328. "name": "Fabien Potencier",
  2329. "email": "fabien@symfony.com"
  2330. },
  2331. {
  2332. "name": "Symfony Community",
  2333. "homepage": "https://symfony.com/contributors"
  2334. }
  2335. ],
  2336. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2337. "homepage": "https://symfony.com",
  2338. "support": {
  2339. "source": "https://github.com/symfony/asset/tree/v5.4.13"
  2340. },
  2341. "funding": [
  2342. {
  2343. "url": "https://symfony.com/sponsor",
  2344. "type": "custom"
  2345. },
  2346. {
  2347. "url": "https://github.com/fabpot",
  2348. "type": "github"
  2349. },
  2350. {
  2351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2352. "type": "tidelift"
  2353. }
  2354. ],
  2355. "time": "2022-08-31T08:17:19+00:00"
  2356. },
  2357. {
  2358. "name": "symfony/cache",
  2359. "version": "v5.4.13",
  2360. "source": {
  2361. "type": "git",
  2362. "url": "https://github.com/symfony/cache.git",
  2363. "reference": "89bb6a0fe27205636d80e568ffaf9bbb52f691e3"
  2364. },
  2365. "dist": {
  2366. "type": "zip",
  2367. "url": "https://api.github.com/repos/symfony/cache/zipball/89bb6a0fe27205636d80e568ffaf9bbb52f691e3",
  2368. "reference": "89bb6a0fe27205636d80e568ffaf9bbb52f691e3",
  2369. "shasum": ""
  2370. },
  2371. "require": {
  2372. "php": ">=7.2.5",
  2373. "psr/cache": "^1.0|^2.0",
  2374. "psr/log": "^1.1|^2|^3",
  2375. "symfony/cache-contracts": "^1.1.7|^2",
  2376. "symfony/deprecation-contracts": "^2.1|^3",
  2377. "symfony/polyfill-php73": "^1.9",
  2378. "symfony/polyfill-php80": "^1.16",
  2379. "symfony/service-contracts": "^1.1|^2|^3",
  2380. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  2381. },
  2382. "conflict": {
  2383. "doctrine/dbal": "<2.13.1",
  2384. "symfony/dependency-injection": "<4.4",
  2385. "symfony/http-kernel": "<4.4",
  2386. "symfony/var-dumper": "<4.4"
  2387. },
  2388. "provide": {
  2389. "psr/cache-implementation": "1.0|2.0",
  2390. "psr/simple-cache-implementation": "1.0|2.0",
  2391. "symfony/cache-implementation": "1.0|2.0"
  2392. },
  2393. "require-dev": {
  2394. "cache/integration-tests": "dev-master",
  2395. "doctrine/cache": "^1.6|^2.0",
  2396. "doctrine/dbal": "^2.13.1|^3.0",
  2397. "predis/predis": "^1.1",
  2398. "psr/simple-cache": "^1.0|^2.0",
  2399. "symfony/config": "^4.4|^5.0|^6.0",
  2400. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2401. "symfony/filesystem": "^4.4|^5.0|^6.0",
  2402. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  2403. "symfony/messenger": "^4.4|^5.0|^6.0",
  2404. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2405. },
  2406. "type": "library",
  2407. "autoload": {
  2408. "psr-4": {
  2409. "Symfony\\Component\\Cache\\": ""
  2410. },
  2411. "exclude-from-classmap": [
  2412. "/Tests/"
  2413. ]
  2414. },
  2415. "notification-url": "https://packagist.org/downloads/",
  2416. "license": [
  2417. "MIT"
  2418. ],
  2419. "authors": [
  2420. {
  2421. "name": "Nicolas Grekas",
  2422. "email": "p@tchwork.com"
  2423. },
  2424. {
  2425. "name": "Symfony Community",
  2426. "homepage": "https://symfony.com/contributors"
  2427. }
  2428. ],
  2429. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2430. "homepage": "https://symfony.com",
  2431. "keywords": [
  2432. "caching",
  2433. "psr6"
  2434. ],
  2435. "support": {
  2436. "source": "https://github.com/symfony/cache/tree/v5.4.13"
  2437. },
  2438. "funding": [
  2439. {
  2440. "url": "https://symfony.com/sponsor",
  2441. "type": "custom"
  2442. },
  2443. {
  2444. "url": "https://github.com/fabpot",
  2445. "type": "github"
  2446. },
  2447. {
  2448. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2449. "type": "tidelift"
  2450. }
  2451. ],
  2452. "time": "2022-09-06T13:23:31+00:00"
  2453. },
  2454. {
  2455. "name": "symfony/cache-contracts",
  2456. "version": "v2.5.2",
  2457. "source": {
  2458. "type": "git",
  2459. "url": "https://github.com/symfony/cache-contracts.git",
  2460. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  2461. },
  2462. "dist": {
  2463. "type": "zip",
  2464. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2465. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2466. "shasum": ""
  2467. },
  2468. "require": {
  2469. "php": ">=7.2.5",
  2470. "psr/cache": "^1.0|^2.0|^3.0"
  2471. },
  2472. "suggest": {
  2473. "symfony/cache-implementation": ""
  2474. },
  2475. "type": "library",
  2476. "extra": {
  2477. "branch-alias": {
  2478. "dev-main": "2.5-dev"
  2479. },
  2480. "thanks": {
  2481. "name": "symfony/contracts",
  2482. "url": "https://github.com/symfony/contracts"
  2483. }
  2484. },
  2485. "autoload": {
  2486. "psr-4": {
  2487. "Symfony\\Contracts\\Cache\\": ""
  2488. }
  2489. },
  2490. "notification-url": "https://packagist.org/downloads/",
  2491. "license": [
  2492. "MIT"
  2493. ],
  2494. "authors": [
  2495. {
  2496. "name": "Nicolas Grekas",
  2497. "email": "p@tchwork.com"
  2498. },
  2499. {
  2500. "name": "Symfony Community",
  2501. "homepage": "https://symfony.com/contributors"
  2502. }
  2503. ],
  2504. "description": "Generic abstractions related to caching",
  2505. "homepage": "https://symfony.com",
  2506. "keywords": [
  2507. "abstractions",
  2508. "contracts",
  2509. "decoupling",
  2510. "interfaces",
  2511. "interoperability",
  2512. "standards"
  2513. ],
  2514. "support": {
  2515. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  2516. },
  2517. "funding": [
  2518. {
  2519. "url": "https://symfony.com/sponsor",
  2520. "type": "custom"
  2521. },
  2522. {
  2523. "url": "https://github.com/fabpot",
  2524. "type": "github"
  2525. },
  2526. {
  2527. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2528. "type": "tidelift"
  2529. }
  2530. ],
  2531. "time": "2022-01-02T09:53:40+00:00"
  2532. },
  2533. {
  2534. "name": "symfony/config",
  2535. "version": "v5.4.11",
  2536. "source": {
  2537. "type": "git",
  2538. "url": "https://github.com/symfony/config.git",
  2539. "reference": "ec79e03125c1d2477e43dde8528535d90cc78379"
  2540. },
  2541. "dist": {
  2542. "type": "zip",
  2543. "url": "https://api.github.com/repos/symfony/config/zipball/ec79e03125c1d2477e43dde8528535d90cc78379",
  2544. "reference": "ec79e03125c1d2477e43dde8528535d90cc78379",
  2545. "shasum": ""
  2546. },
  2547. "require": {
  2548. "php": ">=7.2.5",
  2549. "symfony/deprecation-contracts": "^2.1|^3",
  2550. "symfony/filesystem": "^4.4|^5.0|^6.0",
  2551. "symfony/polyfill-ctype": "~1.8",
  2552. "symfony/polyfill-php80": "^1.16",
  2553. "symfony/polyfill-php81": "^1.22"
  2554. },
  2555. "conflict": {
  2556. "symfony/finder": "<4.4"
  2557. },
  2558. "require-dev": {
  2559. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2560. "symfony/finder": "^4.4|^5.0|^6.0",
  2561. "symfony/messenger": "^4.4|^5.0|^6.0",
  2562. "symfony/service-contracts": "^1.1|^2|^3",
  2563. "symfony/yaml": "^4.4|^5.0|^6.0"
  2564. },
  2565. "suggest": {
  2566. "symfony/yaml": "To use the yaml reference dumper"
  2567. },
  2568. "type": "library",
  2569. "autoload": {
  2570. "psr-4": {
  2571. "Symfony\\Component\\Config\\": ""
  2572. },
  2573. "exclude-from-classmap": [
  2574. "/Tests/"
  2575. ]
  2576. },
  2577. "notification-url": "https://packagist.org/downloads/",
  2578. "license": [
  2579. "MIT"
  2580. ],
  2581. "authors": [
  2582. {
  2583. "name": "Fabien Potencier",
  2584. "email": "fabien@symfony.com"
  2585. },
  2586. {
  2587. "name": "Symfony Community",
  2588. "homepage": "https://symfony.com/contributors"
  2589. }
  2590. ],
  2591. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2592. "homepage": "https://symfony.com",
  2593. "support": {
  2594. "source": "https://github.com/symfony/config/tree/v5.4.11"
  2595. },
  2596. "funding": [
  2597. {
  2598. "url": "https://symfony.com/sponsor",
  2599. "type": "custom"
  2600. },
  2601. {
  2602. "url": "https://github.com/fabpot",
  2603. "type": "github"
  2604. },
  2605. {
  2606. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2607. "type": "tidelift"
  2608. }
  2609. ],
  2610. "time": "2022-07-20T13:00:38+00:00"
  2611. },
  2612. {
  2613. "name": "symfony/console",
  2614. "version": "v5.4.13",
  2615. "source": {
  2616. "type": "git",
  2617. "url": "https://github.com/symfony/console.git",
  2618. "reference": "3f97f6c7b7e26848a90c0c0cfb91eeb2bb8618be"
  2619. },
  2620. "dist": {
  2621. "type": "zip",
  2622. "url": "https://api.github.com/repos/symfony/console/zipball/3f97f6c7b7e26848a90c0c0cfb91eeb2bb8618be",
  2623. "reference": "3f97f6c7b7e26848a90c0c0cfb91eeb2bb8618be",
  2624. "shasum": ""
  2625. },
  2626. "require": {
  2627. "php": ">=7.2.5",
  2628. "symfony/deprecation-contracts": "^2.1|^3",
  2629. "symfony/polyfill-mbstring": "~1.0",
  2630. "symfony/polyfill-php73": "^1.9",
  2631. "symfony/polyfill-php80": "^1.16",
  2632. "symfony/service-contracts": "^1.1|^2|^3",
  2633. "symfony/string": "^5.1|^6.0"
  2634. },
  2635. "conflict": {
  2636. "psr/log": ">=3",
  2637. "symfony/dependency-injection": "<4.4",
  2638. "symfony/dotenv": "<5.1",
  2639. "symfony/event-dispatcher": "<4.4",
  2640. "symfony/lock": "<4.4",
  2641. "symfony/process": "<4.4"
  2642. },
  2643. "provide": {
  2644. "psr/log-implementation": "1.0|2.0"
  2645. },
  2646. "require-dev": {
  2647. "psr/log": "^1|^2",
  2648. "symfony/config": "^4.4|^5.0|^6.0",
  2649. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2650. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2651. "symfony/lock": "^4.4|^5.0|^6.0",
  2652. "symfony/process": "^4.4|^5.0|^6.0",
  2653. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2654. },
  2655. "suggest": {
  2656. "psr/log": "For using the console logger",
  2657. "symfony/event-dispatcher": "",
  2658. "symfony/lock": "",
  2659. "symfony/process": ""
  2660. },
  2661. "type": "library",
  2662. "autoload": {
  2663. "psr-4": {
  2664. "Symfony\\Component\\Console\\": ""
  2665. },
  2666. "exclude-from-classmap": [
  2667. "/Tests/"
  2668. ]
  2669. },
  2670. "notification-url": "https://packagist.org/downloads/",
  2671. "license": [
  2672. "MIT"
  2673. ],
  2674. "authors": [
  2675. {
  2676. "name": "Fabien Potencier",
  2677. "email": "fabien@symfony.com"
  2678. },
  2679. {
  2680. "name": "Symfony Community",
  2681. "homepage": "https://symfony.com/contributors"
  2682. }
  2683. ],
  2684. "description": "Eases the creation of beautiful and testable command line interfaces",
  2685. "homepage": "https://symfony.com",
  2686. "keywords": [
  2687. "cli",
  2688. "command line",
  2689. "console",
  2690. "terminal"
  2691. ],
  2692. "support": {
  2693. "source": "https://github.com/symfony/console/tree/v5.4.13"
  2694. },
  2695. "funding": [
  2696. {
  2697. "url": "https://symfony.com/sponsor",
  2698. "type": "custom"
  2699. },
  2700. {
  2701. "url": "https://github.com/fabpot",
  2702. "type": "github"
  2703. },
  2704. {
  2705. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2706. "type": "tidelift"
  2707. }
  2708. ],
  2709. "time": "2022-08-26T13:50:20+00:00"
  2710. },
  2711. {
  2712. "name": "symfony/dependency-injection",
  2713. "version": "v5.4.13",
  2714. "source": {
  2715. "type": "git",
  2716. "url": "https://github.com/symfony/dependency-injection.git",
  2717. "reference": "24cf522668845391c0542bc1de496366072a6d0e"
  2718. },
  2719. "dist": {
  2720. "type": "zip",
  2721. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/24cf522668845391c0542bc1de496366072a6d0e",
  2722. "reference": "24cf522668845391c0542bc1de496366072a6d0e",
  2723. "shasum": ""
  2724. },
  2725. "require": {
  2726. "php": ">=7.2.5",
  2727. "psr/container": "^1.1.1",
  2728. "symfony/deprecation-contracts": "^2.1|^3",
  2729. "symfony/polyfill-php80": "^1.16",
  2730. "symfony/polyfill-php81": "^1.22",
  2731. "symfony/service-contracts": "^1.1.6|^2"
  2732. },
  2733. "conflict": {
  2734. "ext-psr": "<1.1|>=2",
  2735. "symfony/config": "<5.3",
  2736. "symfony/finder": "<4.4",
  2737. "symfony/proxy-manager-bridge": "<4.4",
  2738. "symfony/yaml": "<4.4.26"
  2739. },
  2740. "provide": {
  2741. "psr/container-implementation": "1.0",
  2742. "symfony/service-implementation": "1.0|2.0"
  2743. },
  2744. "require-dev": {
  2745. "symfony/config": "^5.3|^6.0",
  2746. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2747. "symfony/yaml": "^4.4.26|^5.0|^6.0"
  2748. },
  2749. "suggest": {
  2750. "symfony/config": "",
  2751. "symfony/expression-language": "For using expressions in service container configuration",
  2752. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  2753. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  2754. "symfony/yaml": ""
  2755. },
  2756. "type": "library",
  2757. "autoload": {
  2758. "psr-4": {
  2759. "Symfony\\Component\\DependencyInjection\\": ""
  2760. },
  2761. "exclude-from-classmap": [
  2762. "/Tests/"
  2763. ]
  2764. },
  2765. "notification-url": "https://packagist.org/downloads/",
  2766. "license": [
  2767. "MIT"
  2768. ],
  2769. "authors": [
  2770. {
  2771. "name": "Fabien Potencier",
  2772. "email": "fabien@symfony.com"
  2773. },
  2774. {
  2775. "name": "Symfony Community",
  2776. "homepage": "https://symfony.com/contributors"
  2777. }
  2778. ],
  2779. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  2780. "homepage": "https://symfony.com",
  2781. "support": {
  2782. "source": "https://github.com/symfony/dependency-injection/tree/v5.4.13"
  2783. },
  2784. "funding": [
  2785. {
  2786. "url": "https://symfony.com/sponsor",
  2787. "type": "custom"
  2788. },
  2789. {
  2790. "url": "https://github.com/fabpot",
  2791. "type": "github"
  2792. },
  2793. {
  2794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2795. "type": "tidelift"
  2796. }
  2797. ],
  2798. "time": "2022-08-30T19:10:13+00:00"
  2799. },
  2800. {
  2801. "name": "symfony/deprecation-contracts",
  2802. "version": "v3.1.1",
  2803. "source": {
  2804. "type": "git",
  2805. "url": "https://github.com/symfony/deprecation-contracts.git",
  2806. "reference": "07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918"
  2807. },
  2808. "dist": {
  2809. "type": "zip",
  2810. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918",
  2811. "reference": "07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918",
  2812. "shasum": ""
  2813. },
  2814. "require": {
  2815. "php": ">=8.1"
  2816. },
  2817. "type": "library",
  2818. "extra": {
  2819. "branch-alias": {
  2820. "dev-main": "3.1-dev"
  2821. },
  2822. "thanks": {
  2823. "name": "symfony/contracts",
  2824. "url": "https://github.com/symfony/contracts"
  2825. }
  2826. },
  2827. "autoload": {
  2828. "files": [
  2829. "function.php"
  2830. ]
  2831. },
  2832. "notification-url": "https://packagist.org/downloads/",
  2833. "license": [
  2834. "MIT"
  2835. ],
  2836. "authors": [
  2837. {
  2838. "name": "Nicolas Grekas",
  2839. "email": "p@tchwork.com"
  2840. },
  2841. {
  2842. "name": "Symfony Community",
  2843. "homepage": "https://symfony.com/contributors"
  2844. }
  2845. ],
  2846. "description": "A generic function and convention to trigger deprecation notices",
  2847. "homepage": "https://symfony.com",
  2848. "support": {
  2849. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.1.1"
  2850. },
  2851. "funding": [
  2852. {
  2853. "url": "https://symfony.com/sponsor",
  2854. "type": "custom"
  2855. },
  2856. {
  2857. "url": "https://github.com/fabpot",
  2858. "type": "github"
  2859. },
  2860. {
  2861. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2862. "type": "tidelift"
  2863. }
  2864. ],
  2865. "time": "2022-02-25T11:15:52+00:00"
  2866. },
  2867. {
  2868. "name": "symfony/doctrine-bridge",
  2869. "version": "v5.4.13",
  2870. "source": {
  2871. "type": "git",
  2872. "url": "https://github.com/symfony/doctrine-bridge.git",
  2873. "reference": "6ac912989e0c31b178aa534eb9ed75f7fa485fae"
  2874. },
  2875. "dist": {
  2876. "type": "zip",
  2877. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/6ac912989e0c31b178aa534eb9ed75f7fa485fae",
  2878. "reference": "6ac912989e0c31b178aa534eb9ed75f7fa485fae",
  2879. "shasum": ""
  2880. },
  2881. "require": {
  2882. "doctrine/event-manager": "~1.0",
  2883. "doctrine/persistence": "^2|^3",
  2884. "php": ">=7.2.5",
  2885. "symfony/deprecation-contracts": "^2.1|^3",
  2886. "symfony/polyfill-ctype": "~1.8",
  2887. "symfony/polyfill-mbstring": "~1.0",
  2888. "symfony/polyfill-php80": "^1.16",
  2889. "symfony/service-contracts": "^1.1|^2|^3"
  2890. },
  2891. "conflict": {
  2892. "doctrine/dbal": "<2.13.1",
  2893. "doctrine/lexer": "<1.1",
  2894. "doctrine/orm": "<2.7.4",
  2895. "phpunit/phpunit": "<5.4.3",
  2896. "symfony/cache": "<5.4",
  2897. "symfony/dependency-injection": "<4.4",
  2898. "symfony/form": "<5.1",
  2899. "symfony/http-kernel": "<5",
  2900. "symfony/messenger": "<4.4",
  2901. "symfony/property-info": "<5",
  2902. "symfony/proxy-manager-bridge": "<4.4.19",
  2903. "symfony/security-bundle": "<5",
  2904. "symfony/security-core": "<5.3",
  2905. "symfony/validator": "<5.2"
  2906. },
  2907. "require-dev": {
  2908. "doctrine/annotations": "^1.10.4",
  2909. "doctrine/collections": "~1.0",
  2910. "doctrine/data-fixtures": "^1.1",
  2911. "doctrine/dbal": "^2.13.1|^3.0",
  2912. "doctrine/orm": "^2.7.4",
  2913. "psr/log": "^1|^2|^3",
  2914. "symfony/cache": "^5.4|^6.0",
  2915. "symfony/config": "^4.4|^5.0|^6.0",
  2916. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2917. "symfony/doctrine-messenger": "^5.1|^6.0",
  2918. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2919. "symfony/form": "^5.4.9|^6.0.9",
  2920. "symfony/http-kernel": "^5.0|^6.0",
  2921. "symfony/messenger": "^4.4|^5.0|^6.0",
  2922. "symfony/property-access": "^4.4|^5.0|^6.0",
  2923. "symfony/property-info": "^5.0|^6.0",
  2924. "symfony/proxy-manager-bridge": "^4.4|^5.0|^6.0",
  2925. "symfony/security-core": "^5.3|^6.0",
  2926. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  2927. "symfony/translation": "^4.4|^5.0|^6.0",
  2928. "symfony/uid": "^5.1|^6.0",
  2929. "symfony/validator": "^5.2|^6.0",
  2930. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2931. },
  2932. "suggest": {
  2933. "doctrine/data-fixtures": "",
  2934. "doctrine/dbal": "",
  2935. "doctrine/orm": "",
  2936. "symfony/form": "",
  2937. "symfony/property-info": "",
  2938. "symfony/validator": ""
  2939. },
  2940. "type": "symfony-bridge",
  2941. "autoload": {
  2942. "psr-4": {
  2943. "Symfony\\Bridge\\Doctrine\\": ""
  2944. },
  2945. "exclude-from-classmap": [
  2946. "/Tests/"
  2947. ]
  2948. },
  2949. "notification-url": "https://packagist.org/downloads/",
  2950. "license": [
  2951. "MIT"
  2952. ],
  2953. "authors": [
  2954. {
  2955. "name": "Fabien Potencier",
  2956. "email": "fabien@symfony.com"
  2957. },
  2958. {
  2959. "name": "Symfony Community",
  2960. "homepage": "https://symfony.com/contributors"
  2961. }
  2962. ],
  2963. "description": "Provides integration for Doctrine with various Symfony components",
  2964. "homepage": "https://symfony.com",
  2965. "support": {
  2966. "source": "https://github.com/symfony/doctrine-bridge/tree/v5.4.13"
  2967. },
  2968. "funding": [
  2969. {
  2970. "url": "https://symfony.com/sponsor",
  2971. "type": "custom"
  2972. },
  2973. {
  2974. "url": "https://github.com/fabpot",
  2975. "type": "github"
  2976. },
  2977. {
  2978. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2979. "type": "tidelift"
  2980. }
  2981. ],
  2982. "time": "2022-09-06T13:23:31+00:00"
  2983. },
  2984. {
  2985. "name": "symfony/dotenv",
  2986. "version": "v5.4.5",
  2987. "source": {
  2988. "type": "git",
  2989. "url": "https://github.com/symfony/dotenv.git",
  2990. "reference": "83a2310904a4f5d4f42526227b5a578ac82232a9"
  2991. },
  2992. "dist": {
  2993. "type": "zip",
  2994. "url": "https://api.github.com/repos/symfony/dotenv/zipball/83a2310904a4f5d4f42526227b5a578ac82232a9",
  2995. "reference": "83a2310904a4f5d4f42526227b5a578ac82232a9",
  2996. "shasum": ""
  2997. },
  2998. "require": {
  2999. "php": ">=7.2.5",
  3000. "symfony/deprecation-contracts": "^2.1|^3"
  3001. },
  3002. "require-dev": {
  3003. "symfony/console": "^4.4|^5.0|^6.0",
  3004. "symfony/process": "^4.4|^5.0|^6.0"
  3005. },
  3006. "type": "library",
  3007. "autoload": {
  3008. "psr-4": {
  3009. "Symfony\\Component\\Dotenv\\": ""
  3010. },
  3011. "exclude-from-classmap": [
  3012. "/Tests/"
  3013. ]
  3014. },
  3015. "notification-url": "https://packagist.org/downloads/",
  3016. "license": [
  3017. "MIT"
  3018. ],
  3019. "authors": [
  3020. {
  3021. "name": "Fabien Potencier",
  3022. "email": "fabien@symfony.com"
  3023. },
  3024. {
  3025. "name": "Symfony Community",
  3026. "homepage": "https://symfony.com/contributors"
  3027. }
  3028. ],
  3029. "description": "Registers environment variables from a .env file",
  3030. "homepage": "https://symfony.com",
  3031. "keywords": [
  3032. "dotenv",
  3033. "env",
  3034. "environment"
  3035. ],
  3036. "support": {
  3037. "source": "https://github.com/symfony/dotenv/tree/v5.4.5"
  3038. },
  3039. "funding": [
  3040. {
  3041. "url": "https://symfony.com/sponsor",
  3042. "type": "custom"
  3043. },
  3044. {
  3045. "url": "https://github.com/fabpot",
  3046. "type": "github"
  3047. },
  3048. {
  3049. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3050. "type": "tidelift"
  3051. }
  3052. ],
  3053. "time": "2022-02-15T17:04:12+00:00"
  3054. },
  3055. {
  3056. "name": "symfony/error-handler",
  3057. "version": "v5.4.11",
  3058. "source": {
  3059. "type": "git",
  3060. "url": "https://github.com/symfony/error-handler.git",
  3061. "reference": "f75d17cb4769eb38cd5fccbda95cd80a054d35c8"
  3062. },
  3063. "dist": {
  3064. "type": "zip",
  3065. "url": "https://api.github.com/repos/symfony/error-handler/zipball/f75d17cb4769eb38cd5fccbda95cd80a054d35c8",
  3066. "reference": "f75d17cb4769eb38cd5fccbda95cd80a054d35c8",
  3067. "shasum": ""
  3068. },
  3069. "require": {
  3070. "php": ">=7.2.5",
  3071. "psr/log": "^1|^2|^3",
  3072. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3073. },
  3074. "require-dev": {
  3075. "symfony/deprecation-contracts": "^2.1|^3",
  3076. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3077. "symfony/serializer": "^4.4|^5.0|^6.0"
  3078. },
  3079. "bin": [
  3080. "Resources/bin/patch-type-declarations"
  3081. ],
  3082. "type": "library",
  3083. "autoload": {
  3084. "psr-4": {
  3085. "Symfony\\Component\\ErrorHandler\\": ""
  3086. },
  3087. "exclude-from-classmap": [
  3088. "/Tests/"
  3089. ]
  3090. },
  3091. "notification-url": "https://packagist.org/downloads/",
  3092. "license": [
  3093. "MIT"
  3094. ],
  3095. "authors": [
  3096. {
  3097. "name": "Fabien Potencier",
  3098. "email": "fabien@symfony.com"
  3099. },
  3100. {
  3101. "name": "Symfony Community",
  3102. "homepage": "https://symfony.com/contributors"
  3103. }
  3104. ],
  3105. "description": "Provides tools to manage errors and ease debugging PHP code",
  3106. "homepage": "https://symfony.com",
  3107. "support": {
  3108. "source": "https://github.com/symfony/error-handler/tree/v5.4.11"
  3109. },
  3110. "funding": [
  3111. {
  3112. "url": "https://symfony.com/sponsor",
  3113. "type": "custom"
  3114. },
  3115. {
  3116. "url": "https://github.com/fabpot",
  3117. "type": "github"
  3118. },
  3119. {
  3120. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3121. "type": "tidelift"
  3122. }
  3123. ],
  3124. "time": "2022-07-29T07:37:50+00:00"
  3125. },
  3126. {
  3127. "name": "symfony/event-dispatcher",
  3128. "version": "v5.4.9",
  3129. "source": {
  3130. "type": "git",
  3131. "url": "https://github.com/symfony/event-dispatcher.git",
  3132. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  3133. },
  3134. "dist": {
  3135. "type": "zip",
  3136. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3137. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3138. "shasum": ""
  3139. },
  3140. "require": {
  3141. "php": ">=7.2.5",
  3142. "symfony/deprecation-contracts": "^2.1|^3",
  3143. "symfony/event-dispatcher-contracts": "^2|^3",
  3144. "symfony/polyfill-php80": "^1.16"
  3145. },
  3146. "conflict": {
  3147. "symfony/dependency-injection": "<4.4"
  3148. },
  3149. "provide": {
  3150. "psr/event-dispatcher-implementation": "1.0",
  3151. "symfony/event-dispatcher-implementation": "2.0"
  3152. },
  3153. "require-dev": {
  3154. "psr/log": "^1|^2|^3",
  3155. "symfony/config": "^4.4|^5.0|^6.0",
  3156. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3157. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3158. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3159. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3160. "symfony/service-contracts": "^1.1|^2|^3",
  3161. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3162. },
  3163. "suggest": {
  3164. "symfony/dependency-injection": "",
  3165. "symfony/http-kernel": ""
  3166. },
  3167. "type": "library",
  3168. "autoload": {
  3169. "psr-4": {
  3170. "Symfony\\Component\\EventDispatcher\\": ""
  3171. },
  3172. "exclude-from-classmap": [
  3173. "/Tests/"
  3174. ]
  3175. },
  3176. "notification-url": "https://packagist.org/downloads/",
  3177. "license": [
  3178. "MIT"
  3179. ],
  3180. "authors": [
  3181. {
  3182. "name": "Fabien Potencier",
  3183. "email": "fabien@symfony.com"
  3184. },
  3185. {
  3186. "name": "Symfony Community",
  3187. "homepage": "https://symfony.com/contributors"
  3188. }
  3189. ],
  3190. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3191. "homepage": "https://symfony.com",
  3192. "support": {
  3193. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  3194. },
  3195. "funding": [
  3196. {
  3197. "url": "https://symfony.com/sponsor",
  3198. "type": "custom"
  3199. },
  3200. {
  3201. "url": "https://github.com/fabpot",
  3202. "type": "github"
  3203. },
  3204. {
  3205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3206. "type": "tidelift"
  3207. }
  3208. ],
  3209. "time": "2022-05-05T16:45:39+00:00"
  3210. },
  3211. {
  3212. "name": "symfony/event-dispatcher-contracts",
  3213. "version": "v3.1.1",
  3214. "source": {
  3215. "type": "git",
  3216. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3217. "reference": "02ff5eea2f453731cfbc6bc215e456b781480448"
  3218. },
  3219. "dist": {
  3220. "type": "zip",
  3221. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/02ff5eea2f453731cfbc6bc215e456b781480448",
  3222. "reference": "02ff5eea2f453731cfbc6bc215e456b781480448",
  3223. "shasum": ""
  3224. },
  3225. "require": {
  3226. "php": ">=8.1",
  3227. "psr/event-dispatcher": "^1"
  3228. },
  3229. "suggest": {
  3230. "symfony/event-dispatcher-implementation": ""
  3231. },
  3232. "type": "library",
  3233. "extra": {
  3234. "branch-alias": {
  3235. "dev-main": "3.1-dev"
  3236. },
  3237. "thanks": {
  3238. "name": "symfony/contracts",
  3239. "url": "https://github.com/symfony/contracts"
  3240. }
  3241. },
  3242. "autoload": {
  3243. "psr-4": {
  3244. "Symfony\\Contracts\\EventDispatcher\\": ""
  3245. }
  3246. },
  3247. "notification-url": "https://packagist.org/downloads/",
  3248. "license": [
  3249. "MIT"
  3250. ],
  3251. "authors": [
  3252. {
  3253. "name": "Nicolas Grekas",
  3254. "email": "p@tchwork.com"
  3255. },
  3256. {
  3257. "name": "Symfony Community",
  3258. "homepage": "https://symfony.com/contributors"
  3259. }
  3260. ],
  3261. "description": "Generic abstractions related to dispatching event",
  3262. "homepage": "https://symfony.com",
  3263. "keywords": [
  3264. "abstractions",
  3265. "contracts",
  3266. "decoupling",
  3267. "interfaces",
  3268. "interoperability",
  3269. "standards"
  3270. ],
  3271. "support": {
  3272. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.1.1"
  3273. },
  3274. "funding": [
  3275. {
  3276. "url": "https://symfony.com/sponsor",
  3277. "type": "custom"
  3278. },
  3279. {
  3280. "url": "https://github.com/fabpot",
  3281. "type": "github"
  3282. },
  3283. {
  3284. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3285. "type": "tidelift"
  3286. }
  3287. ],
  3288. "time": "2022-02-25T11:15:52+00:00"
  3289. },
  3290. {
  3291. "name": "symfony/expression-language",
  3292. "version": "v5.4.11",
  3293. "source": {
  3294. "type": "git",
  3295. "url": "https://github.com/symfony/expression-language.git",
  3296. "reference": "eb59000eb72c9681502cb501af3c666be42d215e"
  3297. },
  3298. "dist": {
  3299. "type": "zip",
  3300. "url": "https://api.github.com/repos/symfony/expression-language/zipball/eb59000eb72c9681502cb501af3c666be42d215e",
  3301. "reference": "eb59000eb72c9681502cb501af3c666be42d215e",
  3302. "shasum": ""
  3303. },
  3304. "require": {
  3305. "php": ">=7.2.5",
  3306. "symfony/cache": "^4.4|^5.0|^6.0",
  3307. "symfony/service-contracts": "^1.1|^2|^3"
  3308. },
  3309. "type": "library",
  3310. "autoload": {
  3311. "psr-4": {
  3312. "Symfony\\Component\\ExpressionLanguage\\": ""
  3313. },
  3314. "exclude-from-classmap": [
  3315. "/Tests/"
  3316. ]
  3317. },
  3318. "notification-url": "https://packagist.org/downloads/",
  3319. "license": [
  3320. "MIT"
  3321. ],
  3322. "authors": [
  3323. {
  3324. "name": "Fabien Potencier",
  3325. "email": "fabien@symfony.com"
  3326. },
  3327. {
  3328. "name": "Symfony Community",
  3329. "homepage": "https://symfony.com/contributors"
  3330. }
  3331. ],
  3332. "description": "Provides an engine that can compile and evaluate expressions",
  3333. "homepage": "https://symfony.com",
  3334. "support": {
  3335. "source": "https://github.com/symfony/expression-language/tree/v5.4.11"
  3336. },
  3337. "funding": [
  3338. {
  3339. "url": "https://symfony.com/sponsor",
  3340. "type": "custom"
  3341. },
  3342. {
  3343. "url": "https://github.com/fabpot",
  3344. "type": "github"
  3345. },
  3346. {
  3347. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3348. "type": "tidelift"
  3349. }
  3350. ],
  3351. "time": "2022-07-20T11:34:24+00:00"
  3352. },
  3353. {
  3354. "name": "symfony/filesystem",
  3355. "version": "v5.4.13",
  3356. "source": {
  3357. "type": "git",
  3358. "url": "https://github.com/symfony/filesystem.git",
  3359. "reference": "ac09569844a9109a5966b9438fc29113ce77cf51"
  3360. },
  3361. "dist": {
  3362. "type": "zip",
  3363. "url": "https://api.github.com/repos/symfony/filesystem/zipball/ac09569844a9109a5966b9438fc29113ce77cf51",
  3364. "reference": "ac09569844a9109a5966b9438fc29113ce77cf51",
  3365. "shasum": ""
  3366. },
  3367. "require": {
  3368. "php": ">=7.2.5",
  3369. "symfony/polyfill-ctype": "~1.8",
  3370. "symfony/polyfill-mbstring": "~1.8",
  3371. "symfony/polyfill-php80": "^1.16"
  3372. },
  3373. "type": "library",
  3374. "autoload": {
  3375. "psr-4": {
  3376. "Symfony\\Component\\Filesystem\\": ""
  3377. },
  3378. "exclude-from-classmap": [
  3379. "/Tests/"
  3380. ]
  3381. },
  3382. "notification-url": "https://packagist.org/downloads/",
  3383. "license": [
  3384. "MIT"
  3385. ],
  3386. "authors": [
  3387. {
  3388. "name": "Fabien Potencier",
  3389. "email": "fabien@symfony.com"
  3390. },
  3391. {
  3392. "name": "Symfony Community",
  3393. "homepage": "https://symfony.com/contributors"
  3394. }
  3395. ],
  3396. "description": "Provides basic utilities for the filesystem",
  3397. "homepage": "https://symfony.com",
  3398. "support": {
  3399. "source": "https://github.com/symfony/filesystem/tree/v5.4.13"
  3400. },
  3401. "funding": [
  3402. {
  3403. "url": "https://symfony.com/sponsor",
  3404. "type": "custom"
  3405. },
  3406. {
  3407. "url": "https://github.com/fabpot",
  3408. "type": "github"
  3409. },
  3410. {
  3411. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3412. "type": "tidelift"
  3413. }
  3414. ],
  3415. "time": "2022-09-21T19:53:16+00:00"
  3416. },
  3417. {
  3418. "name": "symfony/finder",
  3419. "version": "v5.4.11",
  3420. "source": {
  3421. "type": "git",
  3422. "url": "https://github.com/symfony/finder.git",
  3423. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c"
  3424. },
  3425. "dist": {
  3426. "type": "zip",
  3427. "url": "https://api.github.com/repos/symfony/finder/zipball/7872a66f57caffa2916a584db1aa7f12adc76f8c",
  3428. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c",
  3429. "shasum": ""
  3430. },
  3431. "require": {
  3432. "php": ">=7.2.5",
  3433. "symfony/deprecation-contracts": "^2.1|^3",
  3434. "symfony/polyfill-php80": "^1.16"
  3435. },
  3436. "type": "library",
  3437. "autoload": {
  3438. "psr-4": {
  3439. "Symfony\\Component\\Finder\\": ""
  3440. },
  3441. "exclude-from-classmap": [
  3442. "/Tests/"
  3443. ]
  3444. },
  3445. "notification-url": "https://packagist.org/downloads/",
  3446. "license": [
  3447. "MIT"
  3448. ],
  3449. "authors": [
  3450. {
  3451. "name": "Fabien Potencier",
  3452. "email": "fabien@symfony.com"
  3453. },
  3454. {
  3455. "name": "Symfony Community",
  3456. "homepage": "https://symfony.com/contributors"
  3457. }
  3458. ],
  3459. "description": "Finds files and directories via an intuitive fluent interface",
  3460. "homepage": "https://symfony.com",
  3461. "support": {
  3462. "source": "https://github.com/symfony/finder/tree/v5.4.11"
  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": "2022-07-29T07:37:50+00:00"
  3479. },
  3480. {
  3481. "name": "symfony/flex",
  3482. "version": "v1.19.3",
  3483. "source": {
  3484. "type": "git",
  3485. "url": "https://github.com/symfony/flex.git",
  3486. "reference": "ab0453b16029e131c112df1a76e59eb2a47e1f67"
  3487. },
  3488. "dist": {
  3489. "type": "zip",
  3490. "url": "https://api.github.com/repos/symfony/flex/zipball/ab0453b16029e131c112df1a76e59eb2a47e1f67",
  3491. "reference": "ab0453b16029e131c112df1a76e59eb2a47e1f67",
  3492. "shasum": ""
  3493. },
  3494. "require": {
  3495. "composer-plugin-api": "^1.0|^2.0",
  3496. "php": ">=7.1"
  3497. },
  3498. "require-dev": {
  3499. "composer/composer": "^1.0.2|^2.0",
  3500. "symfony/dotenv": "^4.4|^5.0|^6.0",
  3501. "symfony/filesystem": "^4.4|^5.0|^6.0",
  3502. "symfony/phpunit-bridge": "^4.4.12|^5.0|^6.0",
  3503. "symfony/process": "^4.4|^5.0|^6.0"
  3504. },
  3505. "type": "composer-plugin",
  3506. "extra": {
  3507. "class": "Symfony\\Flex\\Flex"
  3508. },
  3509. "autoload": {
  3510. "psr-4": {
  3511. "Symfony\\Flex\\": "src"
  3512. }
  3513. },
  3514. "notification-url": "https://packagist.org/downloads/",
  3515. "license": [
  3516. "MIT"
  3517. ],
  3518. "authors": [
  3519. {
  3520. "name": "Fabien Potencier",
  3521. "email": "fabien.potencier@gmail.com"
  3522. }
  3523. ],
  3524. "description": "Composer plugin for Symfony",
  3525. "support": {
  3526. "issues": "https://github.com/symfony/flex/issues",
  3527. "source": "https://github.com/symfony/flex/tree/v1.19.3"
  3528. },
  3529. "funding": [
  3530. {
  3531. "url": "https://symfony.com/sponsor",
  3532. "type": "custom"
  3533. },
  3534. {
  3535. "url": "https://github.com/fabpot",
  3536. "type": "github"
  3537. },
  3538. {
  3539. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3540. "type": "tidelift"
  3541. }
  3542. ],
  3543. "time": "2022-08-07T09:39:08+00:00"
  3544. },
  3545. {
  3546. "name": "symfony/form",
  3547. "version": "v5.4.13",
  3548. "source": {
  3549. "type": "git",
  3550. "url": "https://github.com/symfony/form.git",
  3551. "reference": "d9d661776636ce689bc879b66fb06c6a6895f1a7"
  3552. },
  3553. "dist": {
  3554. "type": "zip",
  3555. "url": "https://api.github.com/repos/symfony/form/zipball/d9d661776636ce689bc879b66fb06c6a6895f1a7",
  3556. "reference": "d9d661776636ce689bc879b66fb06c6a6895f1a7",
  3557. "shasum": ""
  3558. },
  3559. "require": {
  3560. "php": ">=7.2.5",
  3561. "symfony/deprecation-contracts": "^2.1|^3",
  3562. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  3563. "symfony/options-resolver": "^5.1|^6.0",
  3564. "symfony/polyfill-ctype": "~1.8",
  3565. "symfony/polyfill-intl-icu": "^1.21",
  3566. "symfony/polyfill-mbstring": "~1.0",
  3567. "symfony/polyfill-php80": "^1.16",
  3568. "symfony/polyfill-php81": "^1.23",
  3569. "symfony/property-access": "^5.0.8|^6.0",
  3570. "symfony/service-contracts": "^1.1|^2|^3"
  3571. },
  3572. "conflict": {
  3573. "phpunit/phpunit": "<5.4.3",
  3574. "symfony/console": "<4.4",
  3575. "symfony/dependency-injection": "<4.4",
  3576. "symfony/doctrine-bridge": "<4.4",
  3577. "symfony/error-handler": "<4.4.5",
  3578. "symfony/framework-bundle": "<4.4",
  3579. "symfony/http-kernel": "<4.4",
  3580. "symfony/translation": "<4.4",
  3581. "symfony/translation-contracts": "<1.1.7",
  3582. "symfony/twig-bridge": "<4.4"
  3583. },
  3584. "require-dev": {
  3585. "doctrine/collections": "~1.0",
  3586. "symfony/config": "^4.4|^5.0|^6.0",
  3587. "symfony/console": "^5.4|^6.0",
  3588. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3589. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3590. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3591. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3592. "symfony/intl": "^4.4|^5.0|^6.0",
  3593. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  3594. "symfony/translation": "^4.4|^5.0|^6.0",
  3595. "symfony/uid": "^5.1|^6.0",
  3596. "symfony/validator": "^4.4.17|^5.1.9|^6.0",
  3597. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3598. },
  3599. "suggest": {
  3600. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  3601. "symfony/twig-bridge": "For templating with Twig.",
  3602. "symfony/validator": "For form validation."
  3603. },
  3604. "type": "library",
  3605. "autoload": {
  3606. "psr-4": {
  3607. "Symfony\\Component\\Form\\": ""
  3608. },
  3609. "exclude-from-classmap": [
  3610. "/Tests/"
  3611. ]
  3612. },
  3613. "notification-url": "https://packagist.org/downloads/",
  3614. "license": [
  3615. "MIT"
  3616. ],
  3617. "authors": [
  3618. {
  3619. "name": "Fabien Potencier",
  3620. "email": "fabien@symfony.com"
  3621. },
  3622. {
  3623. "name": "Symfony Community",
  3624. "homepage": "https://symfony.com/contributors"
  3625. }
  3626. ],
  3627. "description": "Allows to easily create, process and reuse HTML forms",
  3628. "homepage": "https://symfony.com",
  3629. "support": {
  3630. "source": "https://github.com/symfony/form/tree/v5.4.13"
  3631. },
  3632. "funding": [
  3633. {
  3634. "url": "https://symfony.com/sponsor",
  3635. "type": "custom"
  3636. },
  3637. {
  3638. "url": "https://github.com/fabpot",
  3639. "type": "github"
  3640. },
  3641. {
  3642. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3643. "type": "tidelift"
  3644. }
  3645. ],
  3646. "time": "2022-09-28T15:33:58+00:00"
  3647. },
  3648. {
  3649. "name": "symfony/framework-bundle",
  3650. "version": "v5.4.13",
  3651. "source": {
  3652. "type": "git",
  3653. "url": "https://github.com/symfony/framework-bundle.git",
  3654. "reference": "394866c2cb8bb189b9bd5ebd043b66f89c800363"
  3655. },
  3656. "dist": {
  3657. "type": "zip",
  3658. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/394866c2cb8bb189b9bd5ebd043b66f89c800363",
  3659. "reference": "394866c2cb8bb189b9bd5ebd043b66f89c800363",
  3660. "shasum": ""
  3661. },
  3662. "require": {
  3663. "ext-xml": "*",
  3664. "php": ">=7.2.5",
  3665. "symfony/cache": "^5.2|^6.0",
  3666. "symfony/config": "^5.3|^6.0",
  3667. "symfony/dependency-injection": "^5.4.5|^6.0.5",
  3668. "symfony/deprecation-contracts": "^2.1|^3",
  3669. "symfony/error-handler": "^4.4.1|^5.0.1|^6.0",
  3670. "symfony/event-dispatcher": "^5.1|^6.0",
  3671. "symfony/filesystem": "^4.4|^5.0|^6.0",
  3672. "symfony/finder": "^4.4|^5.0|^6.0",
  3673. "symfony/http-foundation": "^5.3|^6.0",
  3674. "symfony/http-kernel": "^5.4|^6.0",
  3675. "symfony/polyfill-mbstring": "~1.0",
  3676. "symfony/polyfill-php80": "^1.16",
  3677. "symfony/polyfill-php81": "^1.22",
  3678. "symfony/routing": "^5.3|^6.0"
  3679. },
  3680. "conflict": {
  3681. "doctrine/annotations": "<1.13.1",
  3682. "doctrine/cache": "<1.11",
  3683. "doctrine/persistence": "<1.3",
  3684. "phpdocumentor/reflection-docblock": "<3.2.2",
  3685. "phpdocumentor/type-resolver": "<1.4.0",
  3686. "phpunit/phpunit": "<5.4.3",
  3687. "symfony/asset": "<5.3",
  3688. "symfony/console": "<5.2.5",
  3689. "symfony/dom-crawler": "<4.4",
  3690. "symfony/dotenv": "<5.1",
  3691. "symfony/form": "<5.2",
  3692. "symfony/http-client": "<4.4",
  3693. "symfony/lock": "<4.4",
  3694. "symfony/mailer": "<5.2",
  3695. "symfony/messenger": "<5.4",
  3696. "symfony/mime": "<4.4",
  3697. "symfony/property-access": "<5.3",
  3698. "symfony/property-info": "<4.4",
  3699. "symfony/security-csrf": "<5.3",
  3700. "symfony/serializer": "<5.2",
  3701. "symfony/service-contracts": ">=3.0",
  3702. "symfony/stopwatch": "<4.4",
  3703. "symfony/translation": "<5.3",
  3704. "symfony/twig-bridge": "<4.4",
  3705. "symfony/twig-bundle": "<4.4",
  3706. "symfony/validator": "<5.2",
  3707. "symfony/web-profiler-bundle": "<4.4",
  3708. "symfony/workflow": "<5.2"
  3709. },
  3710. "require-dev": {
  3711. "doctrine/annotations": "^1.13.1",
  3712. "doctrine/cache": "^1.11|^2.0",
  3713. "doctrine/persistence": "^1.3|^2|^3",
  3714. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3715. "symfony/asset": "^5.3|^6.0",
  3716. "symfony/browser-kit": "^5.4|^6.0",
  3717. "symfony/console": "^5.4.9|^6.0.9",
  3718. "symfony/css-selector": "^4.4|^5.0|^6.0",
  3719. "symfony/dom-crawler": "^4.4.30|^5.3.7|^6.0",
  3720. "symfony/dotenv": "^5.1|^6.0",
  3721. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3722. "symfony/form": "^5.2|^6.0",
  3723. "symfony/http-client": "^4.4|^5.0|^6.0",
  3724. "symfony/lock": "^4.4|^5.0|^6.0",
  3725. "symfony/mailer": "^5.2|^6.0",
  3726. "symfony/messenger": "^5.4|^6.0",
  3727. "symfony/mime": "^4.4|^5.0|^6.0",
  3728. "symfony/notifier": "^5.4|^6.0",
  3729. "symfony/polyfill-intl-icu": "~1.0",
  3730. "symfony/process": "^4.4|^5.0|^6.0",
  3731. "symfony/property-info": "^4.4|^5.0|^6.0",
  3732. "symfony/rate-limiter": "^5.2|^6.0",
  3733. "symfony/security-bundle": "^5.4|^6.0",
  3734. "symfony/serializer": "^5.4|^6.0",
  3735. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3736. "symfony/string": "^5.0|^6.0",
  3737. "symfony/translation": "^5.3|^6.0",
  3738. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  3739. "symfony/validator": "^5.2|^6.0",
  3740. "symfony/web-link": "^4.4|^5.0|^6.0",
  3741. "symfony/workflow": "^5.2|^6.0",
  3742. "symfony/yaml": "^4.4|^5.0|^6.0",
  3743. "twig/twig": "^2.10|^3.0"
  3744. },
  3745. "suggest": {
  3746. "ext-apcu": "For best performance of the system caches",
  3747. "symfony/console": "For using the console commands",
  3748. "symfony/form": "For using forms",
  3749. "symfony/property-info": "For using the property_info service",
  3750. "symfony/serializer": "For using the serializer service",
  3751. "symfony/validator": "For using validation",
  3752. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  3753. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  3754. },
  3755. "type": "symfony-bundle",
  3756. "autoload": {
  3757. "psr-4": {
  3758. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3759. },
  3760. "exclude-from-classmap": [
  3761. "/Tests/"
  3762. ]
  3763. },
  3764. "notification-url": "https://packagist.org/downloads/",
  3765. "license": [
  3766. "MIT"
  3767. ],
  3768. "authors": [
  3769. {
  3770. "name": "Fabien Potencier",
  3771. "email": "fabien@symfony.com"
  3772. },
  3773. {
  3774. "name": "Symfony Community",
  3775. "homepage": "https://symfony.com/contributors"
  3776. }
  3777. ],
  3778. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  3779. "homepage": "https://symfony.com",
  3780. "support": {
  3781. "source": "https://github.com/symfony/framework-bundle/tree/v5.4.13"
  3782. },
  3783. "funding": [
  3784. {
  3785. "url": "https://symfony.com/sponsor",
  3786. "type": "custom"
  3787. },
  3788. {
  3789. "url": "https://github.com/fabpot",
  3790. "type": "github"
  3791. },
  3792. {
  3793. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3794. "type": "tidelift"
  3795. }
  3796. ],
  3797. "time": "2022-09-29T08:12:55+00:00"
  3798. },
  3799. {
  3800. "name": "symfony/http-foundation",
  3801. "version": "v5.4.13",
  3802. "source": {
  3803. "type": "git",
  3804. "url": "https://github.com/symfony/http-foundation.git",
  3805. "reference": "54be067587a4f2b7fffb7a699f9481ec3daf9379"
  3806. },
  3807. "dist": {
  3808. "type": "zip",
  3809. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/54be067587a4f2b7fffb7a699f9481ec3daf9379",
  3810. "reference": "54be067587a4f2b7fffb7a699f9481ec3daf9379",
  3811. "shasum": ""
  3812. },
  3813. "require": {
  3814. "php": ">=7.2.5",
  3815. "symfony/deprecation-contracts": "^2.1|^3",
  3816. "symfony/polyfill-mbstring": "~1.1",
  3817. "symfony/polyfill-php80": "^1.16"
  3818. },
  3819. "require-dev": {
  3820. "predis/predis": "~1.0",
  3821. "symfony/cache": "^4.4|^5.0|^6.0",
  3822. "symfony/dependency-injection": "^5.4|^6.0",
  3823. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3824. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  3825. "symfony/mime": "^4.4|^5.0|^6.0",
  3826. "symfony/rate-limiter": "^5.2|^6.0"
  3827. },
  3828. "suggest": {
  3829. "symfony/mime": "To use the file extension guesser"
  3830. },
  3831. "type": "library",
  3832. "autoload": {
  3833. "psr-4": {
  3834. "Symfony\\Component\\HttpFoundation\\": ""
  3835. },
  3836. "exclude-from-classmap": [
  3837. "/Tests/"
  3838. ]
  3839. },
  3840. "notification-url": "https://packagist.org/downloads/",
  3841. "license": [
  3842. "MIT"
  3843. ],
  3844. "authors": [
  3845. {
  3846. "name": "Fabien Potencier",
  3847. "email": "fabien@symfony.com"
  3848. },
  3849. {
  3850. "name": "Symfony Community",
  3851. "homepage": "https://symfony.com/contributors"
  3852. }
  3853. ],
  3854. "description": "Defines an object-oriented layer for the HTTP specification",
  3855. "homepage": "https://symfony.com",
  3856. "support": {
  3857. "source": "https://github.com/symfony/http-foundation/tree/v5.4.13"
  3858. },
  3859. "funding": [
  3860. {
  3861. "url": "https://symfony.com/sponsor",
  3862. "type": "custom"
  3863. },
  3864. {
  3865. "url": "https://github.com/fabpot",
  3866. "type": "github"
  3867. },
  3868. {
  3869. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3870. "type": "tidelift"
  3871. }
  3872. ],
  3873. "time": "2022-09-17T07:31:22+00:00"
  3874. },
  3875. {
  3876. "name": "symfony/http-kernel",
  3877. "version": "v5.4.13",
  3878. "source": {
  3879. "type": "git",
  3880. "url": "https://github.com/symfony/http-kernel.git",
  3881. "reference": "4f25330c216b7bb178603b2e25fb7a9325015507"
  3882. },
  3883. "dist": {
  3884. "type": "zip",
  3885. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/4f25330c216b7bb178603b2e25fb7a9325015507",
  3886. "reference": "4f25330c216b7bb178603b2e25fb7a9325015507",
  3887. "shasum": ""
  3888. },
  3889. "require": {
  3890. "php": ">=7.2.5",
  3891. "psr/log": "^1|^2",
  3892. "symfony/deprecation-contracts": "^2.1|^3",
  3893. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3894. "symfony/event-dispatcher": "^5.0|^6.0",
  3895. "symfony/http-foundation": "^5.3.7|^6.0",
  3896. "symfony/polyfill-ctype": "^1.8",
  3897. "symfony/polyfill-php73": "^1.9",
  3898. "symfony/polyfill-php80": "^1.16"
  3899. },
  3900. "conflict": {
  3901. "symfony/browser-kit": "<5.4",
  3902. "symfony/cache": "<5.0",
  3903. "symfony/config": "<5.0",
  3904. "symfony/console": "<4.4",
  3905. "symfony/dependency-injection": "<5.3",
  3906. "symfony/doctrine-bridge": "<5.0",
  3907. "symfony/form": "<5.0",
  3908. "symfony/http-client": "<5.0",
  3909. "symfony/mailer": "<5.0",
  3910. "symfony/messenger": "<5.0",
  3911. "symfony/translation": "<5.0",
  3912. "symfony/twig-bridge": "<5.0",
  3913. "symfony/validator": "<5.0",
  3914. "twig/twig": "<2.13"
  3915. },
  3916. "provide": {
  3917. "psr/log-implementation": "1.0|2.0"
  3918. },
  3919. "require-dev": {
  3920. "psr/cache": "^1.0|^2.0|^3.0",
  3921. "symfony/browser-kit": "^5.4|^6.0",
  3922. "symfony/config": "^5.0|^6.0",
  3923. "symfony/console": "^4.4|^5.0|^6.0",
  3924. "symfony/css-selector": "^4.4|^5.0|^6.0",
  3925. "symfony/dependency-injection": "^5.3|^6.0",
  3926. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  3927. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3928. "symfony/finder": "^4.4|^5.0|^6.0",
  3929. "symfony/http-client-contracts": "^1.1|^2|^3",
  3930. "symfony/process": "^4.4|^5.0|^6.0",
  3931. "symfony/routing": "^4.4|^5.0|^6.0",
  3932. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3933. "symfony/translation": "^4.4|^5.0|^6.0",
  3934. "symfony/translation-contracts": "^1.1|^2|^3",
  3935. "twig/twig": "^2.13|^3.0.4"
  3936. },
  3937. "suggest": {
  3938. "symfony/browser-kit": "",
  3939. "symfony/config": "",
  3940. "symfony/console": "",
  3941. "symfony/dependency-injection": ""
  3942. },
  3943. "type": "library",
  3944. "autoload": {
  3945. "psr-4": {
  3946. "Symfony\\Component\\HttpKernel\\": ""
  3947. },
  3948. "exclude-from-classmap": [
  3949. "/Tests/"
  3950. ]
  3951. },
  3952. "notification-url": "https://packagist.org/downloads/",
  3953. "license": [
  3954. "MIT"
  3955. ],
  3956. "authors": [
  3957. {
  3958. "name": "Fabien Potencier",
  3959. "email": "fabien@symfony.com"
  3960. },
  3961. {
  3962. "name": "Symfony Community",
  3963. "homepage": "https://symfony.com/contributors"
  3964. }
  3965. ],
  3966. "description": "Provides a structured process for converting a Request into a Response",
  3967. "homepage": "https://symfony.com",
  3968. "support": {
  3969. "source": "https://github.com/symfony/http-kernel/tree/v5.4.13"
  3970. },
  3971. "funding": [
  3972. {
  3973. "url": "https://symfony.com/sponsor",
  3974. "type": "custom"
  3975. },
  3976. {
  3977. "url": "https://github.com/fabpot",
  3978. "type": "github"
  3979. },
  3980. {
  3981. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3982. "type": "tidelift"
  3983. }
  3984. ],
  3985. "time": "2022-09-30T07:40:28+00:00"
  3986. },
  3987. {
  3988. "name": "symfony/mailer",
  3989. "version": "v5.4.13",
  3990. "source": {
  3991. "type": "git",
  3992. "url": "https://github.com/symfony/mailer.git",
  3993. "reference": "63bf36a5150ac0bfed1c4d0a4e0b114a57b77e11"
  3994. },
  3995. "dist": {
  3996. "type": "zip",
  3997. "url": "https://api.github.com/repos/symfony/mailer/zipball/63bf36a5150ac0bfed1c4d0a4e0b114a57b77e11",
  3998. "reference": "63bf36a5150ac0bfed1c4d0a4e0b114a57b77e11",
  3999. "shasum": ""
  4000. },
  4001. "require": {
  4002. "egulias/email-validator": "^2.1.10|^3",
  4003. "php": ">=7.2.5",
  4004. "psr/event-dispatcher": "^1",
  4005. "psr/log": "^1|^2|^3",
  4006. "symfony/deprecation-contracts": "^2.1|^3",
  4007. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  4008. "symfony/mime": "^5.2.6|^6.0",
  4009. "symfony/polyfill-php80": "^1.16",
  4010. "symfony/service-contracts": "^1.1|^2|^3"
  4011. },
  4012. "conflict": {
  4013. "symfony/http-kernel": "<4.4"
  4014. },
  4015. "require-dev": {
  4016. "symfony/http-client-contracts": "^1.1|^2|^3",
  4017. "symfony/messenger": "^4.4|^5.0|^6.0"
  4018. },
  4019. "type": "library",
  4020. "autoload": {
  4021. "psr-4": {
  4022. "Symfony\\Component\\Mailer\\": ""
  4023. },
  4024. "exclude-from-classmap": [
  4025. "/Tests/"
  4026. ]
  4027. },
  4028. "notification-url": "https://packagist.org/downloads/",
  4029. "license": [
  4030. "MIT"
  4031. ],
  4032. "authors": [
  4033. {
  4034. "name": "Fabien Potencier",
  4035. "email": "fabien@symfony.com"
  4036. },
  4037. {
  4038. "name": "Symfony Community",
  4039. "homepage": "https://symfony.com/contributors"
  4040. }
  4041. ],
  4042. "description": "Helps sending emails",
  4043. "homepage": "https://symfony.com",
  4044. "support": {
  4045. "source": "https://github.com/symfony/mailer/tree/v5.4.13"
  4046. },
  4047. "funding": [
  4048. {
  4049. "url": "https://symfony.com/sponsor",
  4050. "type": "custom"
  4051. },
  4052. {
  4053. "url": "https://github.com/fabpot",
  4054. "type": "github"
  4055. },
  4056. {
  4057. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4058. "type": "tidelift"
  4059. }
  4060. ],
  4061. "time": "2022-08-29T06:47:07+00:00"
  4062. },
  4063. {
  4064. "name": "symfony/mime",
  4065. "version": "v5.4.13",
  4066. "source": {
  4067. "type": "git",
  4068. "url": "https://github.com/symfony/mime.git",
  4069. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd"
  4070. },
  4071. "dist": {
  4072. "type": "zip",
  4073. "url": "https://api.github.com/repos/symfony/mime/zipball/bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  4074. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  4075. "shasum": ""
  4076. },
  4077. "require": {
  4078. "php": ">=7.2.5",
  4079. "symfony/deprecation-contracts": "^2.1|^3",
  4080. "symfony/polyfill-intl-idn": "^1.10",
  4081. "symfony/polyfill-mbstring": "^1.0",
  4082. "symfony/polyfill-php80": "^1.16"
  4083. },
  4084. "conflict": {
  4085. "egulias/email-validator": "~3.0.0",
  4086. "phpdocumentor/reflection-docblock": "<3.2.2",
  4087. "phpdocumentor/type-resolver": "<1.4.0",
  4088. "symfony/mailer": "<4.4"
  4089. },
  4090. "require-dev": {
  4091. "egulias/email-validator": "^2.1.10|^3.1",
  4092. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4093. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4094. "symfony/property-access": "^4.4|^5.1|^6.0",
  4095. "symfony/property-info": "^4.4|^5.1|^6.0",
  4096. "symfony/serializer": "^5.2|^6.0"
  4097. },
  4098. "type": "library",
  4099. "autoload": {
  4100. "psr-4": {
  4101. "Symfony\\Component\\Mime\\": ""
  4102. },
  4103. "exclude-from-classmap": [
  4104. "/Tests/"
  4105. ]
  4106. },
  4107. "notification-url": "https://packagist.org/downloads/",
  4108. "license": [
  4109. "MIT"
  4110. ],
  4111. "authors": [
  4112. {
  4113. "name": "Fabien Potencier",
  4114. "email": "fabien@symfony.com"
  4115. },
  4116. {
  4117. "name": "Symfony Community",
  4118. "homepage": "https://symfony.com/contributors"
  4119. }
  4120. ],
  4121. "description": "Allows manipulating MIME messages",
  4122. "homepage": "https://symfony.com",
  4123. "keywords": [
  4124. "mime",
  4125. "mime-type"
  4126. ],
  4127. "support": {
  4128. "source": "https://github.com/symfony/mime/tree/v5.4.13"
  4129. },
  4130. "funding": [
  4131. {
  4132. "url": "https://symfony.com/sponsor",
  4133. "type": "custom"
  4134. },
  4135. {
  4136. "url": "https://github.com/fabpot",
  4137. "type": "github"
  4138. },
  4139. {
  4140. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4141. "type": "tidelift"
  4142. }
  4143. ],
  4144. "time": "2022-09-01T18:18:29+00:00"
  4145. },
  4146. {
  4147. "name": "symfony/monolog-bridge",
  4148. "version": "v5.4.10",
  4149. "source": {
  4150. "type": "git",
  4151. "url": "https://github.com/symfony/monolog-bridge.git",
  4152. "reference": "b3b0890e76e7eb626f27b165a5c501f2754dfbbd"
  4153. },
  4154. "dist": {
  4155. "type": "zip",
  4156. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/b3b0890e76e7eb626f27b165a5c501f2754dfbbd",
  4157. "reference": "b3b0890e76e7eb626f27b165a5c501f2754dfbbd",
  4158. "shasum": ""
  4159. },
  4160. "require": {
  4161. "monolog/monolog": "^1.25.1|^2",
  4162. "php": ">=7.2.5",
  4163. "symfony/deprecation-contracts": "^2.1|^3",
  4164. "symfony/http-kernel": "^5.3|^6.0",
  4165. "symfony/polyfill-php80": "^1.16",
  4166. "symfony/service-contracts": "^1.1|^2|^3"
  4167. },
  4168. "conflict": {
  4169. "symfony/console": "<4.4",
  4170. "symfony/http-foundation": "<5.3"
  4171. },
  4172. "require-dev": {
  4173. "symfony/console": "^4.4|^5.0|^6.0",
  4174. "symfony/http-client": "^4.4|^5.0|^6.0",
  4175. "symfony/mailer": "^4.4|^5.0|^6.0",
  4176. "symfony/messenger": "^4.4|^5.0|^6.0",
  4177. "symfony/mime": "^4.4|^5.0|^6.0",
  4178. "symfony/security-core": "^4.4|^5.0|^6.0",
  4179. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4180. },
  4181. "suggest": {
  4182. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  4183. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  4184. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  4185. },
  4186. "type": "symfony-bridge",
  4187. "autoload": {
  4188. "psr-4": {
  4189. "Symfony\\Bridge\\Monolog\\": ""
  4190. },
  4191. "exclude-from-classmap": [
  4192. "/Tests/"
  4193. ]
  4194. },
  4195. "notification-url": "https://packagist.org/downloads/",
  4196. "license": [
  4197. "MIT"
  4198. ],
  4199. "authors": [
  4200. {
  4201. "name": "Fabien Potencier",
  4202. "email": "fabien@symfony.com"
  4203. },
  4204. {
  4205. "name": "Symfony Community",
  4206. "homepage": "https://symfony.com/contributors"
  4207. }
  4208. ],
  4209. "description": "Provides integration for Monolog with various Symfony components",
  4210. "homepage": "https://symfony.com",
  4211. "support": {
  4212. "source": "https://github.com/symfony/monolog-bridge/tree/v5.4.10"
  4213. },
  4214. "funding": [
  4215. {
  4216. "url": "https://symfony.com/sponsor",
  4217. "type": "custom"
  4218. },
  4219. {
  4220. "url": "https://github.com/fabpot",
  4221. "type": "github"
  4222. },
  4223. {
  4224. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4225. "type": "tidelift"
  4226. }
  4227. ],
  4228. "time": "2022-06-19T12:03:50+00:00"
  4229. },
  4230. {
  4231. "name": "symfony/monolog-bundle",
  4232. "version": "v3.8.0",
  4233. "source": {
  4234. "type": "git",
  4235. "url": "https://github.com/symfony/monolog-bundle.git",
  4236. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d"
  4237. },
  4238. "dist": {
  4239. "type": "zip",
  4240. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  4241. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  4242. "shasum": ""
  4243. },
  4244. "require": {
  4245. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  4246. "php": ">=7.1.3",
  4247. "symfony/config": "~4.4 || ^5.0 || ^6.0",
  4248. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  4249. "symfony/http-kernel": "~4.4 || ^5.0 || ^6.0",
  4250. "symfony/monolog-bridge": "~4.4 || ^5.0 || ^6.0"
  4251. },
  4252. "require-dev": {
  4253. "symfony/console": "~4.4 || ^5.0 || ^6.0",
  4254. "symfony/phpunit-bridge": "^5.2 || ^6.0",
  4255. "symfony/yaml": "~4.4 || ^5.0 || ^6.0"
  4256. },
  4257. "type": "symfony-bundle",
  4258. "extra": {
  4259. "branch-alias": {
  4260. "dev-master": "3.x-dev"
  4261. }
  4262. },
  4263. "autoload": {
  4264. "psr-4": {
  4265. "Symfony\\Bundle\\MonologBundle\\": ""
  4266. },
  4267. "exclude-from-classmap": [
  4268. "/Tests/"
  4269. ]
  4270. },
  4271. "notification-url": "https://packagist.org/downloads/",
  4272. "license": [
  4273. "MIT"
  4274. ],
  4275. "authors": [
  4276. {
  4277. "name": "Fabien Potencier",
  4278. "email": "fabien@symfony.com"
  4279. },
  4280. {
  4281. "name": "Symfony Community",
  4282. "homepage": "https://symfony.com/contributors"
  4283. }
  4284. ],
  4285. "description": "Symfony MonologBundle",
  4286. "homepage": "https://symfony.com",
  4287. "keywords": [
  4288. "log",
  4289. "logging"
  4290. ],
  4291. "support": {
  4292. "issues": "https://github.com/symfony/monolog-bundle/issues",
  4293. "source": "https://github.com/symfony/monolog-bundle/tree/v3.8.0"
  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": "2022-05-10T14:24:36+00:00"
  4310. },
  4311. {
  4312. "name": "symfony/options-resolver",
  4313. "version": "v5.4.11",
  4314. "source": {
  4315. "type": "git",
  4316. "url": "https://github.com/symfony/options-resolver.git",
  4317. "reference": "54f14e36aa73cb8f7261d7686691fd4d75ea2690"
  4318. },
  4319. "dist": {
  4320. "type": "zip",
  4321. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/54f14e36aa73cb8f7261d7686691fd4d75ea2690",
  4322. "reference": "54f14e36aa73cb8f7261d7686691fd4d75ea2690",
  4323. "shasum": ""
  4324. },
  4325. "require": {
  4326. "php": ">=7.2.5",
  4327. "symfony/deprecation-contracts": "^2.1|^3",
  4328. "symfony/polyfill-php73": "~1.0",
  4329. "symfony/polyfill-php80": "^1.16"
  4330. },
  4331. "type": "library",
  4332. "autoload": {
  4333. "psr-4": {
  4334. "Symfony\\Component\\OptionsResolver\\": ""
  4335. },
  4336. "exclude-from-classmap": [
  4337. "/Tests/"
  4338. ]
  4339. },
  4340. "notification-url": "https://packagist.org/downloads/",
  4341. "license": [
  4342. "MIT"
  4343. ],
  4344. "authors": [
  4345. {
  4346. "name": "Fabien Potencier",
  4347. "email": "fabien@symfony.com"
  4348. },
  4349. {
  4350. "name": "Symfony Community",
  4351. "homepage": "https://symfony.com/contributors"
  4352. }
  4353. ],
  4354. "description": "Provides an improved replacement for the array_replace PHP function",
  4355. "homepage": "https://symfony.com",
  4356. "keywords": [
  4357. "config",
  4358. "configuration",
  4359. "options"
  4360. ],
  4361. "support": {
  4362. "source": "https://github.com/symfony/options-resolver/tree/v5.4.11"
  4363. },
  4364. "funding": [
  4365. {
  4366. "url": "https://symfony.com/sponsor",
  4367. "type": "custom"
  4368. },
  4369. {
  4370. "url": "https://github.com/fabpot",
  4371. "type": "github"
  4372. },
  4373. {
  4374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4375. "type": "tidelift"
  4376. }
  4377. ],
  4378. "time": "2022-07-20T13:00:38+00:00"
  4379. },
  4380. {
  4381. "name": "symfony/password-hasher",
  4382. "version": "v5.4.11",
  4383. "source": {
  4384. "type": "git",
  4385. "url": "https://github.com/symfony/password-hasher.git",
  4386. "reference": "b0169ed8f09a4ae39eb119218ea1685079a9b179"
  4387. },
  4388. "dist": {
  4389. "type": "zip",
  4390. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/b0169ed8f09a4ae39eb119218ea1685079a9b179",
  4391. "reference": "b0169ed8f09a4ae39eb119218ea1685079a9b179",
  4392. "shasum": ""
  4393. },
  4394. "require": {
  4395. "php": ">=7.2.5",
  4396. "symfony/polyfill-php80": "^1.15"
  4397. },
  4398. "conflict": {
  4399. "symfony/security-core": "<5.3"
  4400. },
  4401. "require-dev": {
  4402. "symfony/console": "^5.3|^6.0",
  4403. "symfony/security-core": "^5.3|^6.0"
  4404. },
  4405. "type": "library",
  4406. "autoload": {
  4407. "psr-4": {
  4408. "Symfony\\Component\\PasswordHasher\\": ""
  4409. },
  4410. "exclude-from-classmap": [
  4411. "/Tests/"
  4412. ]
  4413. },
  4414. "notification-url": "https://packagist.org/downloads/",
  4415. "license": [
  4416. "MIT"
  4417. ],
  4418. "authors": [
  4419. {
  4420. "name": "Robin Chalas",
  4421. "email": "robin.chalas@gmail.com"
  4422. },
  4423. {
  4424. "name": "Symfony Community",
  4425. "homepage": "https://symfony.com/contributors"
  4426. }
  4427. ],
  4428. "description": "Provides password hashing utilities",
  4429. "homepage": "https://symfony.com",
  4430. "keywords": [
  4431. "hashing",
  4432. "password"
  4433. ],
  4434. "support": {
  4435. "source": "https://github.com/symfony/password-hasher/tree/v5.4.11"
  4436. },
  4437. "funding": [
  4438. {
  4439. "url": "https://symfony.com/sponsor",
  4440. "type": "custom"
  4441. },
  4442. {
  4443. "url": "https://github.com/fabpot",
  4444. "type": "github"
  4445. },
  4446. {
  4447. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4448. "type": "tidelift"
  4449. }
  4450. ],
  4451. "time": "2022-07-20T13:00:38+00:00"
  4452. },
  4453. {
  4454. "name": "symfony/polyfill-intl-grapheme",
  4455. "version": "v1.26.0",
  4456. "source": {
  4457. "type": "git",
  4458. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4459. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  4460. },
  4461. "dist": {
  4462. "type": "zip",
  4463. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  4464. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  4465. "shasum": ""
  4466. },
  4467. "require": {
  4468. "php": ">=7.1"
  4469. },
  4470. "suggest": {
  4471. "ext-intl": "For best performance"
  4472. },
  4473. "type": "library",
  4474. "extra": {
  4475. "branch-alias": {
  4476. "dev-main": "1.26-dev"
  4477. },
  4478. "thanks": {
  4479. "name": "symfony/polyfill",
  4480. "url": "https://github.com/symfony/polyfill"
  4481. }
  4482. },
  4483. "autoload": {
  4484. "files": [
  4485. "bootstrap.php"
  4486. ],
  4487. "psr-4": {
  4488. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4489. }
  4490. },
  4491. "notification-url": "https://packagist.org/downloads/",
  4492. "license": [
  4493. "MIT"
  4494. ],
  4495. "authors": [
  4496. {
  4497. "name": "Nicolas Grekas",
  4498. "email": "p@tchwork.com"
  4499. },
  4500. {
  4501. "name": "Symfony Community",
  4502. "homepage": "https://symfony.com/contributors"
  4503. }
  4504. ],
  4505. "description": "Symfony polyfill for intl's grapheme_* functions",
  4506. "homepage": "https://symfony.com",
  4507. "keywords": [
  4508. "compatibility",
  4509. "grapheme",
  4510. "intl",
  4511. "polyfill",
  4512. "portable",
  4513. "shim"
  4514. ],
  4515. "support": {
  4516. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  4517. },
  4518. "funding": [
  4519. {
  4520. "url": "https://symfony.com/sponsor",
  4521. "type": "custom"
  4522. },
  4523. {
  4524. "url": "https://github.com/fabpot",
  4525. "type": "github"
  4526. },
  4527. {
  4528. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4529. "type": "tidelift"
  4530. }
  4531. ],
  4532. "time": "2022-05-24T11:49:31+00:00"
  4533. },
  4534. {
  4535. "name": "symfony/polyfill-intl-icu",
  4536. "version": "v1.26.0",
  4537. "source": {
  4538. "type": "git",
  4539. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  4540. "reference": "e407643d610e5f2c8a4b14189150f68934bf5e48"
  4541. },
  4542. "dist": {
  4543. "type": "zip",
  4544. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e407643d610e5f2c8a4b14189150f68934bf5e48",
  4545. "reference": "e407643d610e5f2c8a4b14189150f68934bf5e48",
  4546. "shasum": ""
  4547. },
  4548. "require": {
  4549. "php": ">=7.1"
  4550. },
  4551. "suggest": {
  4552. "ext-intl": "For best performance and support of other locales than \"en\""
  4553. },
  4554. "type": "library",
  4555. "extra": {
  4556. "branch-alias": {
  4557. "dev-main": "1.26-dev"
  4558. },
  4559. "thanks": {
  4560. "name": "symfony/polyfill",
  4561. "url": "https://github.com/symfony/polyfill"
  4562. }
  4563. },
  4564. "autoload": {
  4565. "files": [
  4566. "bootstrap.php"
  4567. ],
  4568. "psr-4": {
  4569. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  4570. },
  4571. "classmap": [
  4572. "Resources/stubs"
  4573. ],
  4574. "exclude-from-classmap": [
  4575. "/Tests/"
  4576. ]
  4577. },
  4578. "notification-url": "https://packagist.org/downloads/",
  4579. "license": [
  4580. "MIT"
  4581. ],
  4582. "authors": [
  4583. {
  4584. "name": "Nicolas Grekas",
  4585. "email": "p@tchwork.com"
  4586. },
  4587. {
  4588. "name": "Symfony Community",
  4589. "homepage": "https://symfony.com/contributors"
  4590. }
  4591. ],
  4592. "description": "Symfony polyfill for intl's ICU-related data and classes",
  4593. "homepage": "https://symfony.com",
  4594. "keywords": [
  4595. "compatibility",
  4596. "icu",
  4597. "intl",
  4598. "polyfill",
  4599. "portable",
  4600. "shim"
  4601. ],
  4602. "support": {
  4603. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.26.0"
  4604. },
  4605. "funding": [
  4606. {
  4607. "url": "https://symfony.com/sponsor",
  4608. "type": "custom"
  4609. },
  4610. {
  4611. "url": "https://github.com/fabpot",
  4612. "type": "github"
  4613. },
  4614. {
  4615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4616. "type": "tidelift"
  4617. }
  4618. ],
  4619. "time": "2022-05-24T11:49:31+00:00"
  4620. },
  4621. {
  4622. "name": "symfony/polyfill-intl-idn",
  4623. "version": "v1.26.0",
  4624. "source": {
  4625. "type": "git",
  4626. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4627. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  4628. },
  4629. "dist": {
  4630. "type": "zip",
  4631. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  4632. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  4633. "shasum": ""
  4634. },
  4635. "require": {
  4636. "php": ">=7.1",
  4637. "symfony/polyfill-intl-normalizer": "^1.10",
  4638. "symfony/polyfill-php72": "^1.10"
  4639. },
  4640. "suggest": {
  4641. "ext-intl": "For best performance"
  4642. },
  4643. "type": "library",
  4644. "extra": {
  4645. "branch-alias": {
  4646. "dev-main": "1.26-dev"
  4647. },
  4648. "thanks": {
  4649. "name": "symfony/polyfill",
  4650. "url": "https://github.com/symfony/polyfill"
  4651. }
  4652. },
  4653. "autoload": {
  4654. "files": [
  4655. "bootstrap.php"
  4656. ],
  4657. "psr-4": {
  4658. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4659. }
  4660. },
  4661. "notification-url": "https://packagist.org/downloads/",
  4662. "license": [
  4663. "MIT"
  4664. ],
  4665. "authors": [
  4666. {
  4667. "name": "Laurent Bassin",
  4668. "email": "laurent@bassin.info"
  4669. },
  4670. {
  4671. "name": "Trevor Rowbotham",
  4672. "email": "trevor.rowbotham@pm.me"
  4673. },
  4674. {
  4675. "name": "Symfony Community",
  4676. "homepage": "https://symfony.com/contributors"
  4677. }
  4678. ],
  4679. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4680. "homepage": "https://symfony.com",
  4681. "keywords": [
  4682. "compatibility",
  4683. "idn",
  4684. "intl",
  4685. "polyfill",
  4686. "portable",
  4687. "shim"
  4688. ],
  4689. "support": {
  4690. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  4691. },
  4692. "funding": [
  4693. {
  4694. "url": "https://symfony.com/sponsor",
  4695. "type": "custom"
  4696. },
  4697. {
  4698. "url": "https://github.com/fabpot",
  4699. "type": "github"
  4700. },
  4701. {
  4702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4703. "type": "tidelift"
  4704. }
  4705. ],
  4706. "time": "2022-05-24T11:49:31+00:00"
  4707. },
  4708. {
  4709. "name": "symfony/polyfill-intl-normalizer",
  4710. "version": "v1.26.0",
  4711. "source": {
  4712. "type": "git",
  4713. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4714. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  4715. },
  4716. "dist": {
  4717. "type": "zip",
  4718. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  4719. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  4720. "shasum": ""
  4721. },
  4722. "require": {
  4723. "php": ">=7.1"
  4724. },
  4725. "suggest": {
  4726. "ext-intl": "For best performance"
  4727. },
  4728. "type": "library",
  4729. "extra": {
  4730. "branch-alias": {
  4731. "dev-main": "1.26-dev"
  4732. },
  4733. "thanks": {
  4734. "name": "symfony/polyfill",
  4735. "url": "https://github.com/symfony/polyfill"
  4736. }
  4737. },
  4738. "autoload": {
  4739. "files": [
  4740. "bootstrap.php"
  4741. ],
  4742. "psr-4": {
  4743. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4744. },
  4745. "classmap": [
  4746. "Resources/stubs"
  4747. ]
  4748. },
  4749. "notification-url": "https://packagist.org/downloads/",
  4750. "license": [
  4751. "MIT"
  4752. ],
  4753. "authors": [
  4754. {
  4755. "name": "Nicolas Grekas",
  4756. "email": "p@tchwork.com"
  4757. },
  4758. {
  4759. "name": "Symfony Community",
  4760. "homepage": "https://symfony.com/contributors"
  4761. }
  4762. ],
  4763. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4764. "homepage": "https://symfony.com",
  4765. "keywords": [
  4766. "compatibility",
  4767. "intl",
  4768. "normalizer",
  4769. "polyfill",
  4770. "portable",
  4771. "shim"
  4772. ],
  4773. "support": {
  4774. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  4775. },
  4776. "funding": [
  4777. {
  4778. "url": "https://symfony.com/sponsor",
  4779. "type": "custom"
  4780. },
  4781. {
  4782. "url": "https://github.com/fabpot",
  4783. "type": "github"
  4784. },
  4785. {
  4786. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4787. "type": "tidelift"
  4788. }
  4789. ],
  4790. "time": "2022-05-24T11:49:31+00:00"
  4791. },
  4792. {
  4793. "name": "symfony/polyfill-mbstring",
  4794. "version": "v1.26.0",
  4795. "source": {
  4796. "type": "git",
  4797. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4798. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  4799. },
  4800. "dist": {
  4801. "type": "zip",
  4802. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  4803. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  4804. "shasum": ""
  4805. },
  4806. "require": {
  4807. "php": ">=7.1"
  4808. },
  4809. "provide": {
  4810. "ext-mbstring": "*"
  4811. },
  4812. "suggest": {
  4813. "ext-mbstring": "For best performance"
  4814. },
  4815. "type": "library",
  4816. "extra": {
  4817. "branch-alias": {
  4818. "dev-main": "1.26-dev"
  4819. },
  4820. "thanks": {
  4821. "name": "symfony/polyfill",
  4822. "url": "https://github.com/symfony/polyfill"
  4823. }
  4824. },
  4825. "autoload": {
  4826. "files": [
  4827. "bootstrap.php"
  4828. ],
  4829. "psr-4": {
  4830. "Symfony\\Polyfill\\Mbstring\\": ""
  4831. }
  4832. },
  4833. "notification-url": "https://packagist.org/downloads/",
  4834. "license": [
  4835. "MIT"
  4836. ],
  4837. "authors": [
  4838. {
  4839. "name": "Nicolas Grekas",
  4840. "email": "p@tchwork.com"
  4841. },
  4842. {
  4843. "name": "Symfony Community",
  4844. "homepage": "https://symfony.com/contributors"
  4845. }
  4846. ],
  4847. "description": "Symfony polyfill for the Mbstring extension",
  4848. "homepage": "https://symfony.com",
  4849. "keywords": [
  4850. "compatibility",
  4851. "mbstring",
  4852. "polyfill",
  4853. "portable",
  4854. "shim"
  4855. ],
  4856. "support": {
  4857. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  4858. },
  4859. "funding": [
  4860. {
  4861. "url": "https://symfony.com/sponsor",
  4862. "type": "custom"
  4863. },
  4864. {
  4865. "url": "https://github.com/fabpot",
  4866. "type": "github"
  4867. },
  4868. {
  4869. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4870. "type": "tidelift"
  4871. }
  4872. ],
  4873. "time": "2022-05-24T11:49:31+00:00"
  4874. },
  4875. {
  4876. "name": "symfony/polyfill-php72",
  4877. "version": "v1.26.0",
  4878. "source": {
  4879. "type": "git",
  4880. "url": "https://github.com/symfony/polyfill-php72.git",
  4881. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  4882. },
  4883. "dist": {
  4884. "type": "zip",
  4885. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  4886. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  4887. "shasum": ""
  4888. },
  4889. "require": {
  4890. "php": ">=7.1"
  4891. },
  4892. "type": "library",
  4893. "extra": {
  4894. "branch-alias": {
  4895. "dev-main": "1.26-dev"
  4896. },
  4897. "thanks": {
  4898. "name": "symfony/polyfill",
  4899. "url": "https://github.com/symfony/polyfill"
  4900. }
  4901. },
  4902. "autoload": {
  4903. "files": [
  4904. "bootstrap.php"
  4905. ],
  4906. "psr-4": {
  4907. "Symfony\\Polyfill\\Php72\\": ""
  4908. }
  4909. },
  4910. "notification-url": "https://packagist.org/downloads/",
  4911. "license": [
  4912. "MIT"
  4913. ],
  4914. "authors": [
  4915. {
  4916. "name": "Nicolas Grekas",
  4917. "email": "p@tchwork.com"
  4918. },
  4919. {
  4920. "name": "Symfony Community",
  4921. "homepage": "https://symfony.com/contributors"
  4922. }
  4923. ],
  4924. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4925. "homepage": "https://symfony.com",
  4926. "keywords": [
  4927. "compatibility",
  4928. "polyfill",
  4929. "portable",
  4930. "shim"
  4931. ],
  4932. "support": {
  4933. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  4934. },
  4935. "funding": [
  4936. {
  4937. "url": "https://symfony.com/sponsor",
  4938. "type": "custom"
  4939. },
  4940. {
  4941. "url": "https://github.com/fabpot",
  4942. "type": "github"
  4943. },
  4944. {
  4945. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4946. "type": "tidelift"
  4947. }
  4948. ],
  4949. "time": "2022-05-24T11:49:31+00:00"
  4950. },
  4951. {
  4952. "name": "symfony/polyfill-php73",
  4953. "version": "v1.26.0",
  4954. "source": {
  4955. "type": "git",
  4956. "url": "https://github.com/symfony/polyfill-php73.git",
  4957. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  4958. },
  4959. "dist": {
  4960. "type": "zip",
  4961. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  4962. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  4963. "shasum": ""
  4964. },
  4965. "require": {
  4966. "php": ">=7.1"
  4967. },
  4968. "type": "library",
  4969. "extra": {
  4970. "branch-alias": {
  4971. "dev-main": "1.26-dev"
  4972. },
  4973. "thanks": {
  4974. "name": "symfony/polyfill",
  4975. "url": "https://github.com/symfony/polyfill"
  4976. }
  4977. },
  4978. "autoload": {
  4979. "files": [
  4980. "bootstrap.php"
  4981. ],
  4982. "psr-4": {
  4983. "Symfony\\Polyfill\\Php73\\": ""
  4984. },
  4985. "classmap": [
  4986. "Resources/stubs"
  4987. ]
  4988. },
  4989. "notification-url": "https://packagist.org/downloads/",
  4990. "license": [
  4991. "MIT"
  4992. ],
  4993. "authors": [
  4994. {
  4995. "name": "Nicolas Grekas",
  4996. "email": "p@tchwork.com"
  4997. },
  4998. {
  4999. "name": "Symfony Community",
  5000. "homepage": "https://symfony.com/contributors"
  5001. }
  5002. ],
  5003. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5004. "homepage": "https://symfony.com",
  5005. "keywords": [
  5006. "compatibility",
  5007. "polyfill",
  5008. "portable",
  5009. "shim"
  5010. ],
  5011. "support": {
  5012. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  5013. },
  5014. "funding": [
  5015. {
  5016. "url": "https://symfony.com/sponsor",
  5017. "type": "custom"
  5018. },
  5019. {
  5020. "url": "https://github.com/fabpot",
  5021. "type": "github"
  5022. },
  5023. {
  5024. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5025. "type": "tidelift"
  5026. }
  5027. ],
  5028. "time": "2022-05-24T11:49:31+00:00"
  5029. },
  5030. {
  5031. "name": "symfony/polyfill-php80",
  5032. "version": "v1.26.0",
  5033. "source": {
  5034. "type": "git",
  5035. "url": "https://github.com/symfony/polyfill-php80.git",
  5036. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  5037. },
  5038. "dist": {
  5039. "type": "zip",
  5040. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  5041. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  5042. "shasum": ""
  5043. },
  5044. "require": {
  5045. "php": ">=7.1"
  5046. },
  5047. "type": "library",
  5048. "extra": {
  5049. "branch-alias": {
  5050. "dev-main": "1.26-dev"
  5051. },
  5052. "thanks": {
  5053. "name": "symfony/polyfill",
  5054. "url": "https://github.com/symfony/polyfill"
  5055. }
  5056. },
  5057. "autoload": {
  5058. "files": [
  5059. "bootstrap.php"
  5060. ],
  5061. "psr-4": {
  5062. "Symfony\\Polyfill\\Php80\\": ""
  5063. },
  5064. "classmap": [
  5065. "Resources/stubs"
  5066. ]
  5067. },
  5068. "notification-url": "https://packagist.org/downloads/",
  5069. "license": [
  5070. "MIT"
  5071. ],
  5072. "authors": [
  5073. {
  5074. "name": "Ion Bazan",
  5075. "email": "ion.bazan@gmail.com"
  5076. },
  5077. {
  5078. "name": "Nicolas Grekas",
  5079. "email": "p@tchwork.com"
  5080. },
  5081. {
  5082. "name": "Symfony Community",
  5083. "homepage": "https://symfony.com/contributors"
  5084. }
  5085. ],
  5086. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5087. "homepage": "https://symfony.com",
  5088. "keywords": [
  5089. "compatibility",
  5090. "polyfill",
  5091. "portable",
  5092. "shim"
  5093. ],
  5094. "support": {
  5095. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  5096. },
  5097. "funding": [
  5098. {
  5099. "url": "https://symfony.com/sponsor",
  5100. "type": "custom"
  5101. },
  5102. {
  5103. "url": "https://github.com/fabpot",
  5104. "type": "github"
  5105. },
  5106. {
  5107. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5108. "type": "tidelift"
  5109. }
  5110. ],
  5111. "time": "2022-05-10T07:21:04+00:00"
  5112. },
  5113. {
  5114. "name": "symfony/polyfill-php81",
  5115. "version": "v1.26.0",
  5116. "source": {
  5117. "type": "git",
  5118. "url": "https://github.com/symfony/polyfill-php81.git",
  5119. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  5120. },
  5121. "dist": {
  5122. "type": "zip",
  5123. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  5124. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  5125. "shasum": ""
  5126. },
  5127. "require": {
  5128. "php": ">=7.1"
  5129. },
  5130. "type": "library",
  5131. "extra": {
  5132. "branch-alias": {
  5133. "dev-main": "1.26-dev"
  5134. },
  5135. "thanks": {
  5136. "name": "symfony/polyfill",
  5137. "url": "https://github.com/symfony/polyfill"
  5138. }
  5139. },
  5140. "autoload": {
  5141. "files": [
  5142. "bootstrap.php"
  5143. ],
  5144. "psr-4": {
  5145. "Symfony\\Polyfill\\Php81\\": ""
  5146. },
  5147. "classmap": [
  5148. "Resources/stubs"
  5149. ]
  5150. },
  5151. "notification-url": "https://packagist.org/downloads/",
  5152. "license": [
  5153. "MIT"
  5154. ],
  5155. "authors": [
  5156. {
  5157. "name": "Nicolas Grekas",
  5158. "email": "p@tchwork.com"
  5159. },
  5160. {
  5161. "name": "Symfony Community",
  5162. "homepage": "https://symfony.com/contributors"
  5163. }
  5164. ],
  5165. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  5166. "homepage": "https://symfony.com",
  5167. "keywords": [
  5168. "compatibility",
  5169. "polyfill",
  5170. "portable",
  5171. "shim"
  5172. ],
  5173. "support": {
  5174. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  5175. },
  5176. "funding": [
  5177. {
  5178. "url": "https://symfony.com/sponsor",
  5179. "type": "custom"
  5180. },
  5181. {
  5182. "url": "https://github.com/fabpot",
  5183. "type": "github"
  5184. },
  5185. {
  5186. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5187. "type": "tidelift"
  5188. }
  5189. ],
  5190. "time": "2022-05-24T11:49:31+00:00"
  5191. },
  5192. {
  5193. "name": "symfony/process",
  5194. "version": "v5.4.11",
  5195. "source": {
  5196. "type": "git",
  5197. "url": "https://github.com/symfony/process.git",
  5198. "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1"
  5199. },
  5200. "dist": {
  5201. "type": "zip",
  5202. "url": "https://api.github.com/repos/symfony/process/zipball/6e75fe6874cbc7e4773d049616ab450eff537bf1",
  5203. "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1",
  5204. "shasum": ""
  5205. },
  5206. "require": {
  5207. "php": ">=7.2.5",
  5208. "symfony/polyfill-php80": "^1.16"
  5209. },
  5210. "type": "library",
  5211. "autoload": {
  5212. "psr-4": {
  5213. "Symfony\\Component\\Process\\": ""
  5214. },
  5215. "exclude-from-classmap": [
  5216. "/Tests/"
  5217. ]
  5218. },
  5219. "notification-url": "https://packagist.org/downloads/",
  5220. "license": [
  5221. "MIT"
  5222. ],
  5223. "authors": [
  5224. {
  5225. "name": "Fabien Potencier",
  5226. "email": "fabien@symfony.com"
  5227. },
  5228. {
  5229. "name": "Symfony Community",
  5230. "homepage": "https://symfony.com/contributors"
  5231. }
  5232. ],
  5233. "description": "Executes commands in sub-processes",
  5234. "homepage": "https://symfony.com",
  5235. "support": {
  5236. "source": "https://github.com/symfony/process/tree/v5.4.11"
  5237. },
  5238. "funding": [
  5239. {
  5240. "url": "https://symfony.com/sponsor",
  5241. "type": "custom"
  5242. },
  5243. {
  5244. "url": "https://github.com/fabpot",
  5245. "type": "github"
  5246. },
  5247. {
  5248. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5249. "type": "tidelift"
  5250. }
  5251. ],
  5252. "time": "2022-06-27T16:58:25+00:00"
  5253. },
  5254. {
  5255. "name": "symfony/property-access",
  5256. "version": "v5.4.11",
  5257. "source": {
  5258. "type": "git",
  5259. "url": "https://github.com/symfony/property-access.git",
  5260. "reference": "c641d63e943ed31981bad4b4dcf29fe7da2ffa8c"
  5261. },
  5262. "dist": {
  5263. "type": "zip",
  5264. "url": "https://api.github.com/repos/symfony/property-access/zipball/c641d63e943ed31981bad4b4dcf29fe7da2ffa8c",
  5265. "reference": "c641d63e943ed31981bad4b4dcf29fe7da2ffa8c",
  5266. "shasum": ""
  5267. },
  5268. "require": {
  5269. "php": ">=7.2.5",
  5270. "symfony/deprecation-contracts": "^2.1|^3",
  5271. "symfony/polyfill-php80": "^1.16",
  5272. "symfony/property-info": "^5.2|^6.0"
  5273. },
  5274. "require-dev": {
  5275. "symfony/cache": "^4.4|^5.0|^6.0"
  5276. },
  5277. "suggest": {
  5278. "psr/cache-implementation": "To cache access methods."
  5279. },
  5280. "type": "library",
  5281. "autoload": {
  5282. "psr-4": {
  5283. "Symfony\\Component\\PropertyAccess\\": ""
  5284. },
  5285. "exclude-from-classmap": [
  5286. "/Tests/"
  5287. ]
  5288. },
  5289. "notification-url": "https://packagist.org/downloads/",
  5290. "license": [
  5291. "MIT"
  5292. ],
  5293. "authors": [
  5294. {
  5295. "name": "Fabien Potencier",
  5296. "email": "fabien@symfony.com"
  5297. },
  5298. {
  5299. "name": "Symfony Community",
  5300. "homepage": "https://symfony.com/contributors"
  5301. }
  5302. ],
  5303. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5304. "homepage": "https://symfony.com",
  5305. "keywords": [
  5306. "access",
  5307. "array",
  5308. "extraction",
  5309. "index",
  5310. "injection",
  5311. "object",
  5312. "property",
  5313. "property path",
  5314. "reflection"
  5315. ],
  5316. "support": {
  5317. "source": "https://github.com/symfony/property-access/tree/v5.4.11"
  5318. },
  5319. "funding": [
  5320. {
  5321. "url": "https://symfony.com/sponsor",
  5322. "type": "custom"
  5323. },
  5324. {
  5325. "url": "https://github.com/fabpot",
  5326. "type": "github"
  5327. },
  5328. {
  5329. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5330. "type": "tidelift"
  5331. }
  5332. ],
  5333. "time": "2022-06-27T16:58:25+00:00"
  5334. },
  5335. {
  5336. "name": "symfony/property-info",
  5337. "version": "v5.4.11",
  5338. "source": {
  5339. "type": "git",
  5340. "url": "https://github.com/symfony/property-info.git",
  5341. "reference": "8a9a2b638a808cc92a2fbce185b9318e76b0e20c"
  5342. },
  5343. "dist": {
  5344. "type": "zip",
  5345. "url": "https://api.github.com/repos/symfony/property-info/zipball/8a9a2b638a808cc92a2fbce185b9318e76b0e20c",
  5346. "reference": "8a9a2b638a808cc92a2fbce185b9318e76b0e20c",
  5347. "shasum": ""
  5348. },
  5349. "require": {
  5350. "php": ">=7.2.5",
  5351. "symfony/deprecation-contracts": "^2.1|^3",
  5352. "symfony/polyfill-php80": "^1.16",
  5353. "symfony/string": "^5.1|^6.0"
  5354. },
  5355. "conflict": {
  5356. "phpdocumentor/reflection-docblock": "<3.2.2",
  5357. "phpdocumentor/type-resolver": "<1.4.0",
  5358. "symfony/dependency-injection": "<4.4"
  5359. },
  5360. "require-dev": {
  5361. "doctrine/annotations": "^1.10.4",
  5362. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5363. "phpstan/phpdoc-parser": "^1.0",
  5364. "symfony/cache": "^4.4|^5.0|^6.0",
  5365. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5366. "symfony/serializer": "^4.4|^5.0|^6.0"
  5367. },
  5368. "suggest": {
  5369. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  5370. "psr/cache-implementation": "To cache results",
  5371. "symfony/doctrine-bridge": "To use Doctrine metadata",
  5372. "symfony/serializer": "To use Serializer metadata"
  5373. },
  5374. "type": "library",
  5375. "autoload": {
  5376. "psr-4": {
  5377. "Symfony\\Component\\PropertyInfo\\": ""
  5378. },
  5379. "exclude-from-classmap": [
  5380. "/Tests/"
  5381. ]
  5382. },
  5383. "notification-url": "https://packagist.org/downloads/",
  5384. "license": [
  5385. "MIT"
  5386. ],
  5387. "authors": [
  5388. {
  5389. "name": "Kévin Dunglas",
  5390. "email": "dunglas@gmail.com"
  5391. },
  5392. {
  5393. "name": "Symfony Community",
  5394. "homepage": "https://symfony.com/contributors"
  5395. }
  5396. ],
  5397. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  5398. "homepage": "https://symfony.com",
  5399. "keywords": [
  5400. "doctrine",
  5401. "phpdoc",
  5402. "property",
  5403. "symfony",
  5404. "type",
  5405. "validator"
  5406. ],
  5407. "support": {
  5408. "source": "https://github.com/symfony/property-info/tree/v5.4.11"
  5409. },
  5410. "funding": [
  5411. {
  5412. "url": "https://symfony.com/sponsor",
  5413. "type": "custom"
  5414. },
  5415. {
  5416. "url": "https://github.com/fabpot",
  5417. "type": "github"
  5418. },
  5419. {
  5420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5421. "type": "tidelift"
  5422. }
  5423. ],
  5424. "time": "2022-07-19T08:07:51+00:00"
  5425. },
  5426. {
  5427. "name": "symfony/proxy-manager-bridge",
  5428. "version": "v5.4.6",
  5429. "source": {
  5430. "type": "git",
  5431. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  5432. "reference": "e6936de1cc8f4e6e3b2264aef186ca21695aee8e"
  5433. },
  5434. "dist": {
  5435. "type": "zip",
  5436. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/e6936de1cc8f4e6e3b2264aef186ca21695aee8e",
  5437. "reference": "e6936de1cc8f4e6e3b2264aef186ca21695aee8e",
  5438. "shasum": ""
  5439. },
  5440. "require": {
  5441. "friendsofphp/proxy-manager-lts": "^1.0.2",
  5442. "php": ">=7.2.5",
  5443. "symfony/dependency-injection": "^5.0|^6.0",
  5444. "symfony/polyfill-php80": "^1.16"
  5445. },
  5446. "require-dev": {
  5447. "symfony/config": "^4.4|^5.0|^6.0"
  5448. },
  5449. "type": "symfony-bridge",
  5450. "autoload": {
  5451. "psr-4": {
  5452. "Symfony\\Bridge\\ProxyManager\\": ""
  5453. },
  5454. "exclude-from-classmap": [
  5455. "/Tests/"
  5456. ]
  5457. },
  5458. "notification-url": "https://packagist.org/downloads/",
  5459. "license": [
  5460. "MIT"
  5461. ],
  5462. "authors": [
  5463. {
  5464. "name": "Fabien Potencier",
  5465. "email": "fabien@symfony.com"
  5466. },
  5467. {
  5468. "name": "Symfony Community",
  5469. "homepage": "https://symfony.com/contributors"
  5470. }
  5471. ],
  5472. "description": "Provides integration for ProxyManager with various Symfony components",
  5473. "homepage": "https://symfony.com",
  5474. "support": {
  5475. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v5.4.6"
  5476. },
  5477. "funding": [
  5478. {
  5479. "url": "https://symfony.com/sponsor",
  5480. "type": "custom"
  5481. },
  5482. {
  5483. "url": "https://github.com/fabpot",
  5484. "type": "github"
  5485. },
  5486. {
  5487. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5488. "type": "tidelift"
  5489. }
  5490. ],
  5491. "time": "2022-03-02T12:42:23+00:00"
  5492. },
  5493. {
  5494. "name": "symfony/routing",
  5495. "version": "v5.4.11",
  5496. "source": {
  5497. "type": "git",
  5498. "url": "https://github.com/symfony/routing.git",
  5499. "reference": "3e01ccd9b2a3a4167ba2b3c53612762300300226"
  5500. },
  5501. "dist": {
  5502. "type": "zip",
  5503. "url": "https://api.github.com/repos/symfony/routing/zipball/3e01ccd9b2a3a4167ba2b3c53612762300300226",
  5504. "reference": "3e01ccd9b2a3a4167ba2b3c53612762300300226",
  5505. "shasum": ""
  5506. },
  5507. "require": {
  5508. "php": ">=7.2.5",
  5509. "symfony/deprecation-contracts": "^2.1|^3",
  5510. "symfony/polyfill-php80": "^1.16"
  5511. },
  5512. "conflict": {
  5513. "doctrine/annotations": "<1.12",
  5514. "symfony/config": "<5.3",
  5515. "symfony/dependency-injection": "<4.4",
  5516. "symfony/yaml": "<4.4"
  5517. },
  5518. "require-dev": {
  5519. "doctrine/annotations": "^1.12",
  5520. "psr/log": "^1|^2|^3",
  5521. "symfony/config": "^5.3|^6.0",
  5522. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5523. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5524. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5525. "symfony/yaml": "^4.4|^5.0|^6.0"
  5526. },
  5527. "suggest": {
  5528. "symfony/config": "For using the all-in-one router or any loader",
  5529. "symfony/expression-language": "For using expression matching",
  5530. "symfony/http-foundation": "For using a Symfony Request object",
  5531. "symfony/yaml": "For using the YAML loader"
  5532. },
  5533. "type": "library",
  5534. "autoload": {
  5535. "psr-4": {
  5536. "Symfony\\Component\\Routing\\": ""
  5537. },
  5538. "exclude-from-classmap": [
  5539. "/Tests/"
  5540. ]
  5541. },
  5542. "notification-url": "https://packagist.org/downloads/",
  5543. "license": [
  5544. "MIT"
  5545. ],
  5546. "authors": [
  5547. {
  5548. "name": "Fabien Potencier",
  5549. "email": "fabien@symfony.com"
  5550. },
  5551. {
  5552. "name": "Symfony Community",
  5553. "homepage": "https://symfony.com/contributors"
  5554. }
  5555. ],
  5556. "description": "Maps an HTTP request to a set of configuration variables",
  5557. "homepage": "https://symfony.com",
  5558. "keywords": [
  5559. "router",
  5560. "routing",
  5561. "uri",
  5562. "url"
  5563. ],
  5564. "support": {
  5565. "source": "https://github.com/symfony/routing/tree/v5.4.11"
  5566. },
  5567. "funding": [
  5568. {
  5569. "url": "https://symfony.com/sponsor",
  5570. "type": "custom"
  5571. },
  5572. {
  5573. "url": "https://github.com/fabpot",
  5574. "type": "github"
  5575. },
  5576. {
  5577. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5578. "type": "tidelift"
  5579. }
  5580. ],
  5581. "time": "2022-07-20T13:00:38+00:00"
  5582. },
  5583. {
  5584. "name": "symfony/security-bundle",
  5585. "version": "v5.4.11",
  5586. "source": {
  5587. "type": "git",
  5588. "url": "https://github.com/symfony/security-bundle.git",
  5589. "reference": "86b49feb056b840f2b79a03fcfa2d378d6d34234"
  5590. },
  5591. "dist": {
  5592. "type": "zip",
  5593. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/86b49feb056b840f2b79a03fcfa2d378d6d34234",
  5594. "reference": "86b49feb056b840f2b79a03fcfa2d378d6d34234",
  5595. "shasum": ""
  5596. },
  5597. "require": {
  5598. "ext-xml": "*",
  5599. "php": ">=7.2.5",
  5600. "symfony/config": "^4.4|^5.0|^6.0",
  5601. "symfony/dependency-injection": "^5.3|^6.0",
  5602. "symfony/deprecation-contracts": "^2.1|^3",
  5603. "symfony/event-dispatcher": "^5.1|^6.0",
  5604. "symfony/http-foundation": "^5.3|^6.0",
  5605. "symfony/http-kernel": "^5.3|^6.0",
  5606. "symfony/password-hasher": "^5.3|^6.0",
  5607. "symfony/polyfill-php80": "^1.16",
  5608. "symfony/security-core": "^5.4|^6.0",
  5609. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  5610. "symfony/security-guard": "^5.3",
  5611. "symfony/security-http": "^5.4|^6.0"
  5612. },
  5613. "conflict": {
  5614. "symfony/browser-kit": "<4.4",
  5615. "symfony/console": "<4.4",
  5616. "symfony/framework-bundle": "<4.4",
  5617. "symfony/ldap": "<5.1",
  5618. "symfony/twig-bundle": "<4.4"
  5619. },
  5620. "require-dev": {
  5621. "doctrine/annotations": "^1.10.4",
  5622. "symfony/asset": "^4.4|^5.0|^6.0",
  5623. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  5624. "symfony/console": "^4.4|^5.0|^6.0",
  5625. "symfony/css-selector": "^4.4|^5.0|^6.0",
  5626. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  5627. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5628. "symfony/form": "^4.4|^5.0|^6.0",
  5629. "symfony/framework-bundle": "^5.3|^6.0",
  5630. "symfony/ldap": "^5.3|^6.0",
  5631. "symfony/process": "^4.4|^5.0|^6.0",
  5632. "symfony/rate-limiter": "^5.2|^6.0",
  5633. "symfony/serializer": "^4.4|^5.0|^6.0",
  5634. "symfony/translation": "^4.4|^5.0|^6.0",
  5635. "symfony/twig-bridge": "^4.4|^5.0|^6.0",
  5636. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  5637. "symfony/validator": "^4.4|^5.0|^6.0",
  5638. "symfony/yaml": "^4.4|^5.0|^6.0",
  5639. "twig/twig": "^2.13|^3.0.4"
  5640. },
  5641. "type": "symfony-bundle",
  5642. "autoload": {
  5643. "psr-4": {
  5644. "Symfony\\Bundle\\SecurityBundle\\": ""
  5645. },
  5646. "exclude-from-classmap": [
  5647. "/Tests/"
  5648. ]
  5649. },
  5650. "notification-url": "https://packagist.org/downloads/",
  5651. "license": [
  5652. "MIT"
  5653. ],
  5654. "authors": [
  5655. {
  5656. "name": "Fabien Potencier",
  5657. "email": "fabien@symfony.com"
  5658. },
  5659. {
  5660. "name": "Symfony Community",
  5661. "homepage": "https://symfony.com/contributors"
  5662. }
  5663. ],
  5664. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  5665. "homepage": "https://symfony.com",
  5666. "support": {
  5667. "source": "https://github.com/symfony/security-bundle/tree/v5.4.11"
  5668. },
  5669. "funding": [
  5670. {
  5671. "url": "https://symfony.com/sponsor",
  5672. "type": "custom"
  5673. },
  5674. {
  5675. "url": "https://github.com/fabpot",
  5676. "type": "github"
  5677. },
  5678. {
  5679. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5680. "type": "tidelift"
  5681. }
  5682. ],
  5683. "time": "2022-07-20T13:00:38+00:00"
  5684. },
  5685. {
  5686. "name": "symfony/security-core",
  5687. "version": "v5.4.13",
  5688. "source": {
  5689. "type": "git",
  5690. "url": "https://github.com/symfony/security-core.git",
  5691. "reference": "71bc477807d9afc9c904fd62b3b5d48f97308460"
  5692. },
  5693. "dist": {
  5694. "type": "zip",
  5695. "url": "https://api.github.com/repos/symfony/security-core/zipball/71bc477807d9afc9c904fd62b3b5d48f97308460",
  5696. "reference": "71bc477807d9afc9c904fd62b3b5d48f97308460",
  5697. "shasum": ""
  5698. },
  5699. "require": {
  5700. "php": ">=7.2.5",
  5701. "symfony/deprecation-contracts": "^2.1|^3",
  5702. "symfony/event-dispatcher-contracts": "^1.1|^2|^3",
  5703. "symfony/password-hasher": "^5.3|^6.0",
  5704. "symfony/polyfill-php80": "^1.16",
  5705. "symfony/service-contracts": "^1.1.6|^2|^3"
  5706. },
  5707. "conflict": {
  5708. "symfony/event-dispatcher": "<4.4",
  5709. "symfony/http-foundation": "<5.3",
  5710. "symfony/ldap": "<4.4",
  5711. "symfony/security-guard": "<4.4",
  5712. "symfony/validator": "<5.2"
  5713. },
  5714. "require-dev": {
  5715. "psr/cache": "^1.0|^2.0|^3.0",
  5716. "psr/container": "^1.0|^2.0",
  5717. "psr/log": "^1|^2|^3",
  5718. "symfony/cache": "^4.4|^5.0|^6.0",
  5719. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5720. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5721. "symfony/http-foundation": "^5.3|^6.0",
  5722. "symfony/ldap": "^4.4|^5.0|^6.0",
  5723. "symfony/translation": "^4.4|^5.0|^6.0",
  5724. "symfony/validator": "^5.2|^6.0"
  5725. },
  5726. "suggest": {
  5727. "psr/container-implementation": "To instantiate the Security class",
  5728. "symfony/event-dispatcher": "",
  5729. "symfony/expression-language": "For using the expression voter",
  5730. "symfony/http-foundation": "",
  5731. "symfony/ldap": "For using LDAP integration",
  5732. "symfony/validator": "For using the user password constraint"
  5733. },
  5734. "type": "library",
  5735. "autoload": {
  5736. "psr-4": {
  5737. "Symfony\\Component\\Security\\Core\\": ""
  5738. },
  5739. "exclude-from-classmap": [
  5740. "/Tests/"
  5741. ]
  5742. },
  5743. "notification-url": "https://packagist.org/downloads/",
  5744. "license": [
  5745. "MIT"
  5746. ],
  5747. "authors": [
  5748. {
  5749. "name": "Fabien Potencier",
  5750. "email": "fabien@symfony.com"
  5751. },
  5752. {
  5753. "name": "Symfony Community",
  5754. "homepage": "https://symfony.com/contributors"
  5755. }
  5756. ],
  5757. "description": "Symfony Security Component - Core Library",
  5758. "homepage": "https://symfony.com",
  5759. "support": {
  5760. "source": "https://github.com/symfony/security-core/tree/v5.4.13"
  5761. },
  5762. "funding": [
  5763. {
  5764. "url": "https://symfony.com/sponsor",
  5765. "type": "custom"
  5766. },
  5767. {
  5768. "url": "https://github.com/fabpot",
  5769. "type": "github"
  5770. },
  5771. {
  5772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5773. "type": "tidelift"
  5774. }
  5775. ],
  5776. "time": "2022-09-17T07:31:22+00:00"
  5777. },
  5778. {
  5779. "name": "symfony/security-csrf",
  5780. "version": "v5.4.11",
  5781. "source": {
  5782. "type": "git",
  5783. "url": "https://github.com/symfony/security-csrf.git",
  5784. "reference": "b97ab244b6dda80abb84a4a236d682871695db4a"
  5785. },
  5786. "dist": {
  5787. "type": "zip",
  5788. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/b97ab244b6dda80abb84a4a236d682871695db4a",
  5789. "reference": "b97ab244b6dda80abb84a4a236d682871695db4a",
  5790. "shasum": ""
  5791. },
  5792. "require": {
  5793. "php": ">=7.2.5",
  5794. "symfony/polyfill-php80": "^1.16",
  5795. "symfony/security-core": "^4.4|^5.0|^6.0"
  5796. },
  5797. "conflict": {
  5798. "symfony/http-foundation": "<5.3"
  5799. },
  5800. "require-dev": {
  5801. "symfony/http-foundation": "^5.3|^6.0"
  5802. },
  5803. "suggest": {
  5804. "symfony/http-foundation": "For using the class SessionTokenStorage."
  5805. },
  5806. "type": "library",
  5807. "autoload": {
  5808. "psr-4": {
  5809. "Symfony\\Component\\Security\\Csrf\\": ""
  5810. },
  5811. "exclude-from-classmap": [
  5812. "/Tests/"
  5813. ]
  5814. },
  5815. "notification-url": "https://packagist.org/downloads/",
  5816. "license": [
  5817. "MIT"
  5818. ],
  5819. "authors": [
  5820. {
  5821. "name": "Fabien Potencier",
  5822. "email": "fabien@symfony.com"
  5823. },
  5824. {
  5825. "name": "Symfony Community",
  5826. "homepage": "https://symfony.com/contributors"
  5827. }
  5828. ],
  5829. "description": "Symfony Security Component - CSRF Library",
  5830. "homepage": "https://symfony.com",
  5831. "support": {
  5832. "source": "https://github.com/symfony/security-csrf/tree/v5.4.11"
  5833. },
  5834. "funding": [
  5835. {
  5836. "url": "https://symfony.com/sponsor",
  5837. "type": "custom"
  5838. },
  5839. {
  5840. "url": "https://github.com/fabpot",
  5841. "type": "github"
  5842. },
  5843. {
  5844. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5845. "type": "tidelift"
  5846. }
  5847. ],
  5848. "time": "2022-07-20T13:00:38+00:00"
  5849. },
  5850. {
  5851. "name": "symfony/security-guard",
  5852. "version": "v5.4.13",
  5853. "source": {
  5854. "type": "git",
  5855. "url": "https://github.com/symfony/security-guard.git",
  5856. "reference": "83f647fcdc17aa14908f0e02a302d3d9d0f63fbc"
  5857. },
  5858. "dist": {
  5859. "type": "zip",
  5860. "url": "https://api.github.com/repos/symfony/security-guard/zipball/83f647fcdc17aa14908f0e02a302d3d9d0f63fbc",
  5861. "reference": "83f647fcdc17aa14908f0e02a302d3d9d0f63fbc",
  5862. "shasum": ""
  5863. },
  5864. "require": {
  5865. "php": ">=7.2.5",
  5866. "symfony/polyfill-php80": "^1.15",
  5867. "symfony/security-core": "^5.0",
  5868. "symfony/security-http": "^5.3"
  5869. },
  5870. "require-dev": {
  5871. "psr/log": "^1|^2|^3"
  5872. },
  5873. "type": "library",
  5874. "autoload": {
  5875. "psr-4": {
  5876. "Symfony\\Component\\Security\\Guard\\": ""
  5877. },
  5878. "exclude-from-classmap": [
  5879. "/Tests/"
  5880. ]
  5881. },
  5882. "notification-url": "https://packagist.org/downloads/",
  5883. "license": [
  5884. "MIT"
  5885. ],
  5886. "authors": [
  5887. {
  5888. "name": "Fabien Potencier",
  5889. "email": "fabien@symfony.com"
  5890. },
  5891. {
  5892. "name": "Symfony Community",
  5893. "homepage": "https://symfony.com/contributors"
  5894. }
  5895. ],
  5896. "description": "Symfony Security Component - Guard",
  5897. "homepage": "https://symfony.com",
  5898. "support": {
  5899. "source": "https://github.com/symfony/security-guard/tree/v5.4.13"
  5900. },
  5901. "funding": [
  5902. {
  5903. "url": "https://symfony.com/sponsor",
  5904. "type": "custom"
  5905. },
  5906. {
  5907. "url": "https://github.com/fabpot",
  5908. "type": "github"
  5909. },
  5910. {
  5911. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5912. "type": "tidelift"
  5913. }
  5914. ],
  5915. "time": "2022-09-28T13:19:49+00:00"
  5916. },
  5917. {
  5918. "name": "symfony/security-http",
  5919. "version": "v5.4.13",
  5920. "source": {
  5921. "type": "git",
  5922. "url": "https://github.com/symfony/security-http.git",
  5923. "reference": "64e9926b8ab8e4460e4dfdc53dc098fed2dad837"
  5924. },
  5925. "dist": {
  5926. "type": "zip",
  5927. "url": "https://api.github.com/repos/symfony/security-http/zipball/64e9926b8ab8e4460e4dfdc53dc098fed2dad837",
  5928. "reference": "64e9926b8ab8e4460e4dfdc53dc098fed2dad837",
  5929. "shasum": ""
  5930. },
  5931. "require": {
  5932. "php": ">=7.2.5",
  5933. "symfony/deprecation-contracts": "^2.1|^3",
  5934. "symfony/http-foundation": "^5.3|^6.0",
  5935. "symfony/http-kernel": "^5.3|^6.0",
  5936. "symfony/polyfill-mbstring": "~1.0",
  5937. "symfony/polyfill-php80": "^1.16",
  5938. "symfony/property-access": "^4.4|^5.0|^6.0",
  5939. "symfony/security-core": "^5.4|^6.0"
  5940. },
  5941. "conflict": {
  5942. "symfony/event-dispatcher": "<4.3",
  5943. "symfony/security-bundle": "<5.3",
  5944. "symfony/security-csrf": "<4.4"
  5945. },
  5946. "require-dev": {
  5947. "psr/log": "^1|^2|^3",
  5948. "symfony/cache": "^4.4|^5.0|^6.0",
  5949. "symfony/rate-limiter": "^5.2|^6.0",
  5950. "symfony/routing": "^4.4|^5.0|^6.0",
  5951. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  5952. "symfony/translation": "^4.4|^5.0|^6.0"
  5953. },
  5954. "suggest": {
  5955. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  5956. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  5957. },
  5958. "type": "library",
  5959. "autoload": {
  5960. "psr-4": {
  5961. "Symfony\\Component\\Security\\Http\\": ""
  5962. },
  5963. "exclude-from-classmap": [
  5964. "/Tests/"
  5965. ]
  5966. },
  5967. "notification-url": "https://packagist.org/downloads/",
  5968. "license": [
  5969. "MIT"
  5970. ],
  5971. "authors": [
  5972. {
  5973. "name": "Fabien Potencier",
  5974. "email": "fabien@symfony.com"
  5975. },
  5976. {
  5977. "name": "Symfony Community",
  5978. "homepage": "https://symfony.com/contributors"
  5979. }
  5980. ],
  5981. "description": "Symfony Security Component - HTTP Integration",
  5982. "homepage": "https://symfony.com",
  5983. "support": {
  5984. "source": "https://github.com/symfony/security-http/tree/v5.4.13"
  5985. },
  5986. "funding": [
  5987. {
  5988. "url": "https://symfony.com/sponsor",
  5989. "type": "custom"
  5990. },
  5991. {
  5992. "url": "https://github.com/fabpot",
  5993. "type": "github"
  5994. },
  5995. {
  5996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5997. "type": "tidelift"
  5998. }
  5999. ],
  6000. "time": "2022-09-29T19:14:22+00:00"
  6001. },
  6002. {
  6003. "name": "symfony/serializer",
  6004. "version": "v5.4.13",
  6005. "source": {
  6006. "type": "git",
  6007. "url": "https://github.com/symfony/serializer.git",
  6008. "reference": "f8c32e94c8656c17a7360d88d6d486bc8ce23b2d"
  6009. },
  6010. "dist": {
  6011. "type": "zip",
  6012. "url": "https://api.github.com/repos/symfony/serializer/zipball/f8c32e94c8656c17a7360d88d6d486bc8ce23b2d",
  6013. "reference": "f8c32e94c8656c17a7360d88d6d486bc8ce23b2d",
  6014. "shasum": ""
  6015. },
  6016. "require": {
  6017. "php": ">=7.2.5",
  6018. "symfony/deprecation-contracts": "^2.1|^3",
  6019. "symfony/polyfill-ctype": "~1.8",
  6020. "symfony/polyfill-php80": "^1.16"
  6021. },
  6022. "conflict": {
  6023. "doctrine/annotations": "<1.12",
  6024. "phpdocumentor/reflection-docblock": "<3.2.2",
  6025. "phpdocumentor/type-resolver": "<1.4.0",
  6026. "symfony/dependency-injection": "<4.4",
  6027. "symfony/property-access": "<5.4",
  6028. "symfony/property-info": "<5.3.13",
  6029. "symfony/uid": "<5.3",
  6030. "symfony/yaml": "<4.4"
  6031. },
  6032. "require-dev": {
  6033. "doctrine/annotations": "^1.12",
  6034. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6035. "symfony/cache": "^4.4|^5.0|^6.0",
  6036. "symfony/config": "^4.4|^5.0|^6.0",
  6037. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6038. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6039. "symfony/filesystem": "^4.4|^5.0|^6.0",
  6040. "symfony/form": "^4.4|^5.0|^6.0",
  6041. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6042. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6043. "symfony/mime": "^4.4|^5.0|^6.0",
  6044. "symfony/property-access": "^5.4|^6.0",
  6045. "symfony/property-info": "^5.3.13|^6.0",
  6046. "symfony/uid": "^5.3|^6.0",
  6047. "symfony/validator": "^4.4|^5.0|^6.0",
  6048. "symfony/var-dumper": "^4.4|^5.0|^6.0",
  6049. "symfony/var-exporter": "^4.4|^5.0|^6.0",
  6050. "symfony/yaml": "^4.4|^5.0|^6.0"
  6051. },
  6052. "suggest": {
  6053. "psr/cache-implementation": "For using the metadata cache.",
  6054. "symfony/config": "For using the XML mapping loader.",
  6055. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  6056. "symfony/property-access": "For using the ObjectNormalizer.",
  6057. "symfony/property-info": "To deserialize relations.",
  6058. "symfony/var-exporter": "For using the metadata compiler.",
  6059. "symfony/yaml": "For using the default YAML mapping loader."
  6060. },
  6061. "type": "library",
  6062. "autoload": {
  6063. "psr-4": {
  6064. "Symfony\\Component\\Serializer\\": ""
  6065. },
  6066. "exclude-from-classmap": [
  6067. "/Tests/"
  6068. ]
  6069. },
  6070. "notification-url": "https://packagist.org/downloads/",
  6071. "license": [
  6072. "MIT"
  6073. ],
  6074. "authors": [
  6075. {
  6076. "name": "Fabien Potencier",
  6077. "email": "fabien@symfony.com"
  6078. },
  6079. {
  6080. "name": "Symfony Community",
  6081. "homepage": "https://symfony.com/contributors"
  6082. }
  6083. ],
  6084. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6085. "homepage": "https://symfony.com",
  6086. "support": {
  6087. "source": "https://github.com/symfony/serializer/tree/v5.4.13"
  6088. },
  6089. "funding": [
  6090. {
  6091. "url": "https://symfony.com/sponsor",
  6092. "type": "custom"
  6093. },
  6094. {
  6095. "url": "https://github.com/fabpot",
  6096. "type": "github"
  6097. },
  6098. {
  6099. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6100. "type": "tidelift"
  6101. }
  6102. ],
  6103. "time": "2022-09-29T09:26:59+00:00"
  6104. },
  6105. {
  6106. "name": "symfony/service-contracts",
  6107. "version": "v2.5.2",
  6108. "source": {
  6109. "type": "git",
  6110. "url": "https://github.com/symfony/service-contracts.git",
  6111. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  6112. },
  6113. "dist": {
  6114. "type": "zip",
  6115. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6116. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6117. "shasum": ""
  6118. },
  6119. "require": {
  6120. "php": ">=7.2.5",
  6121. "psr/container": "^1.1",
  6122. "symfony/deprecation-contracts": "^2.1|^3"
  6123. },
  6124. "conflict": {
  6125. "ext-psr": "<1.1|>=2"
  6126. },
  6127. "suggest": {
  6128. "symfony/service-implementation": ""
  6129. },
  6130. "type": "library",
  6131. "extra": {
  6132. "branch-alias": {
  6133. "dev-main": "2.5-dev"
  6134. },
  6135. "thanks": {
  6136. "name": "symfony/contracts",
  6137. "url": "https://github.com/symfony/contracts"
  6138. }
  6139. },
  6140. "autoload": {
  6141. "psr-4": {
  6142. "Symfony\\Contracts\\Service\\": ""
  6143. }
  6144. },
  6145. "notification-url": "https://packagist.org/downloads/",
  6146. "license": [
  6147. "MIT"
  6148. ],
  6149. "authors": [
  6150. {
  6151. "name": "Nicolas Grekas",
  6152. "email": "p@tchwork.com"
  6153. },
  6154. {
  6155. "name": "Symfony Community",
  6156. "homepage": "https://symfony.com/contributors"
  6157. }
  6158. ],
  6159. "description": "Generic abstractions related to writing services",
  6160. "homepage": "https://symfony.com",
  6161. "keywords": [
  6162. "abstractions",
  6163. "contracts",
  6164. "decoupling",
  6165. "interfaces",
  6166. "interoperability",
  6167. "standards"
  6168. ],
  6169. "support": {
  6170. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  6171. },
  6172. "funding": [
  6173. {
  6174. "url": "https://symfony.com/sponsor",
  6175. "type": "custom"
  6176. },
  6177. {
  6178. "url": "https://github.com/fabpot",
  6179. "type": "github"
  6180. },
  6181. {
  6182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6183. "type": "tidelift"
  6184. }
  6185. ],
  6186. "time": "2022-05-30T19:17:29+00:00"
  6187. },
  6188. {
  6189. "name": "symfony/stopwatch",
  6190. "version": "v5.4.13",
  6191. "source": {
  6192. "type": "git",
  6193. "url": "https://github.com/symfony/stopwatch.git",
  6194. "reference": "6df7a3effde34d81717bbef4591e5ffe32226d69"
  6195. },
  6196. "dist": {
  6197. "type": "zip",
  6198. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/6df7a3effde34d81717bbef4591e5ffe32226d69",
  6199. "reference": "6df7a3effde34d81717bbef4591e5ffe32226d69",
  6200. "shasum": ""
  6201. },
  6202. "require": {
  6203. "php": ">=7.2.5",
  6204. "symfony/service-contracts": "^1|^2|^3"
  6205. },
  6206. "type": "library",
  6207. "autoload": {
  6208. "psr-4": {
  6209. "Symfony\\Component\\Stopwatch\\": ""
  6210. },
  6211. "exclude-from-classmap": [
  6212. "/Tests/"
  6213. ]
  6214. },
  6215. "notification-url": "https://packagist.org/downloads/",
  6216. "license": [
  6217. "MIT"
  6218. ],
  6219. "authors": [
  6220. {
  6221. "name": "Fabien Potencier",
  6222. "email": "fabien@symfony.com"
  6223. },
  6224. {
  6225. "name": "Symfony Community",
  6226. "homepage": "https://symfony.com/contributors"
  6227. }
  6228. ],
  6229. "description": "Provides a way to profile code",
  6230. "homepage": "https://symfony.com",
  6231. "support": {
  6232. "source": "https://github.com/symfony/stopwatch/tree/v5.4.13"
  6233. },
  6234. "funding": [
  6235. {
  6236. "url": "https://symfony.com/sponsor",
  6237. "type": "custom"
  6238. },
  6239. {
  6240. "url": "https://github.com/fabpot",
  6241. "type": "github"
  6242. },
  6243. {
  6244. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6245. "type": "tidelift"
  6246. }
  6247. ],
  6248. "time": "2022-09-28T13:19:49+00:00"
  6249. },
  6250. {
  6251. "name": "symfony/string",
  6252. "version": "v5.4.13",
  6253. "source": {
  6254. "type": "git",
  6255. "url": "https://github.com/symfony/string.git",
  6256. "reference": "2900c668a32138a34118740de3e4d5a701801f53"
  6257. },
  6258. "dist": {
  6259. "type": "zip",
  6260. "url": "https://api.github.com/repos/symfony/string/zipball/2900c668a32138a34118740de3e4d5a701801f53",
  6261. "reference": "2900c668a32138a34118740de3e4d5a701801f53",
  6262. "shasum": ""
  6263. },
  6264. "require": {
  6265. "php": ">=7.2.5",
  6266. "symfony/polyfill-ctype": "~1.8",
  6267. "symfony/polyfill-intl-grapheme": "~1.0",
  6268. "symfony/polyfill-intl-normalizer": "~1.0",
  6269. "symfony/polyfill-mbstring": "~1.0",
  6270. "symfony/polyfill-php80": "~1.15"
  6271. },
  6272. "conflict": {
  6273. "symfony/translation-contracts": ">=3.0"
  6274. },
  6275. "require-dev": {
  6276. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6277. "symfony/http-client": "^4.4|^5.0|^6.0",
  6278. "symfony/translation-contracts": "^1.1|^2",
  6279. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6280. },
  6281. "type": "library",
  6282. "autoload": {
  6283. "files": [
  6284. "Resources/functions.php"
  6285. ],
  6286. "psr-4": {
  6287. "Symfony\\Component\\String\\": ""
  6288. },
  6289. "exclude-from-classmap": [
  6290. "/Tests/"
  6291. ]
  6292. },
  6293. "notification-url": "https://packagist.org/downloads/",
  6294. "license": [
  6295. "MIT"
  6296. ],
  6297. "authors": [
  6298. {
  6299. "name": "Nicolas Grekas",
  6300. "email": "p@tchwork.com"
  6301. },
  6302. {
  6303. "name": "Symfony Community",
  6304. "homepage": "https://symfony.com/contributors"
  6305. }
  6306. ],
  6307. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6308. "homepage": "https://symfony.com",
  6309. "keywords": [
  6310. "grapheme",
  6311. "i18n",
  6312. "string",
  6313. "unicode",
  6314. "utf-8",
  6315. "utf8"
  6316. ],
  6317. "support": {
  6318. "source": "https://github.com/symfony/string/tree/v5.4.13"
  6319. },
  6320. "funding": [
  6321. {
  6322. "url": "https://symfony.com/sponsor",
  6323. "type": "custom"
  6324. },
  6325. {
  6326. "url": "https://github.com/fabpot",
  6327. "type": "github"
  6328. },
  6329. {
  6330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6331. "type": "tidelift"
  6332. }
  6333. ],
  6334. "time": "2022-09-01T01:52:16+00:00"
  6335. },
  6336. {
  6337. "name": "symfony/translation",
  6338. "version": "v5.4.12",
  6339. "source": {
  6340. "type": "git",
  6341. "url": "https://github.com/symfony/translation.git",
  6342. "reference": "42ecc77eb4f229ce2df702a648ec93b8478d76ae"
  6343. },
  6344. "dist": {
  6345. "type": "zip",
  6346. "url": "https://api.github.com/repos/symfony/translation/zipball/42ecc77eb4f229ce2df702a648ec93b8478d76ae",
  6347. "reference": "42ecc77eb4f229ce2df702a648ec93b8478d76ae",
  6348. "shasum": ""
  6349. },
  6350. "require": {
  6351. "php": ">=7.2.5",
  6352. "symfony/deprecation-contracts": "^2.1|^3",
  6353. "symfony/polyfill-mbstring": "~1.0",
  6354. "symfony/polyfill-php80": "^1.16",
  6355. "symfony/translation-contracts": "^2.3"
  6356. },
  6357. "conflict": {
  6358. "symfony/config": "<4.4",
  6359. "symfony/console": "<5.3",
  6360. "symfony/dependency-injection": "<5.0",
  6361. "symfony/http-kernel": "<5.0",
  6362. "symfony/twig-bundle": "<5.0",
  6363. "symfony/yaml": "<4.4"
  6364. },
  6365. "provide": {
  6366. "symfony/translation-implementation": "2.3"
  6367. },
  6368. "require-dev": {
  6369. "psr/log": "^1|^2|^3",
  6370. "symfony/config": "^4.4|^5.0|^6.0",
  6371. "symfony/console": "^5.4|^6.0",
  6372. "symfony/dependency-injection": "^5.0|^6.0",
  6373. "symfony/finder": "^4.4|^5.0|^6.0",
  6374. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6375. "symfony/http-kernel": "^5.0|^6.0",
  6376. "symfony/intl": "^4.4|^5.0|^6.0",
  6377. "symfony/polyfill-intl-icu": "^1.21",
  6378. "symfony/service-contracts": "^1.1.2|^2|^3",
  6379. "symfony/yaml": "^4.4|^5.0|^6.0"
  6380. },
  6381. "suggest": {
  6382. "psr/log-implementation": "To use logging capability in translator",
  6383. "symfony/config": "",
  6384. "symfony/yaml": ""
  6385. },
  6386. "type": "library",
  6387. "autoload": {
  6388. "files": [
  6389. "Resources/functions.php"
  6390. ],
  6391. "psr-4": {
  6392. "Symfony\\Component\\Translation\\": ""
  6393. },
  6394. "exclude-from-classmap": [
  6395. "/Tests/"
  6396. ]
  6397. },
  6398. "notification-url": "https://packagist.org/downloads/",
  6399. "license": [
  6400. "MIT"
  6401. ],
  6402. "authors": [
  6403. {
  6404. "name": "Fabien Potencier",
  6405. "email": "fabien@symfony.com"
  6406. },
  6407. {
  6408. "name": "Symfony Community",
  6409. "homepage": "https://symfony.com/contributors"
  6410. }
  6411. ],
  6412. "description": "Provides tools to internationalize your application",
  6413. "homepage": "https://symfony.com",
  6414. "support": {
  6415. "source": "https://github.com/symfony/translation/tree/v5.4.12"
  6416. },
  6417. "funding": [
  6418. {
  6419. "url": "https://symfony.com/sponsor",
  6420. "type": "custom"
  6421. },
  6422. {
  6423. "url": "https://github.com/fabpot",
  6424. "type": "github"
  6425. },
  6426. {
  6427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6428. "type": "tidelift"
  6429. }
  6430. ],
  6431. "time": "2022-08-02T15:52:22+00:00"
  6432. },
  6433. {
  6434. "name": "symfony/translation-contracts",
  6435. "version": "v2.5.2",
  6436. "source": {
  6437. "type": "git",
  6438. "url": "https://github.com/symfony/translation-contracts.git",
  6439. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  6440. },
  6441. "dist": {
  6442. "type": "zip",
  6443. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  6444. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  6445. "shasum": ""
  6446. },
  6447. "require": {
  6448. "php": ">=7.2.5"
  6449. },
  6450. "suggest": {
  6451. "symfony/translation-implementation": ""
  6452. },
  6453. "type": "library",
  6454. "extra": {
  6455. "branch-alias": {
  6456. "dev-main": "2.5-dev"
  6457. },
  6458. "thanks": {
  6459. "name": "symfony/contracts",
  6460. "url": "https://github.com/symfony/contracts"
  6461. }
  6462. },
  6463. "autoload": {
  6464. "psr-4": {
  6465. "Symfony\\Contracts\\Translation\\": ""
  6466. }
  6467. },
  6468. "notification-url": "https://packagist.org/downloads/",
  6469. "license": [
  6470. "MIT"
  6471. ],
  6472. "authors": [
  6473. {
  6474. "name": "Nicolas Grekas",
  6475. "email": "p@tchwork.com"
  6476. },
  6477. {
  6478. "name": "Symfony Community",
  6479. "homepage": "https://symfony.com/contributors"
  6480. }
  6481. ],
  6482. "description": "Generic abstractions related to translation",
  6483. "homepage": "https://symfony.com",
  6484. "keywords": [
  6485. "abstractions",
  6486. "contracts",
  6487. "decoupling",
  6488. "interfaces",
  6489. "interoperability",
  6490. "standards"
  6491. ],
  6492. "support": {
  6493. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  6494. },
  6495. "funding": [
  6496. {
  6497. "url": "https://symfony.com/sponsor",
  6498. "type": "custom"
  6499. },
  6500. {
  6501. "url": "https://github.com/fabpot",
  6502. "type": "github"
  6503. },
  6504. {
  6505. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6506. "type": "tidelift"
  6507. }
  6508. ],
  6509. "time": "2022-06-27T16:58:25+00:00"
  6510. },
  6511. {
  6512. "name": "symfony/twig-bridge",
  6513. "version": "v5.4.12",
  6514. "source": {
  6515. "type": "git",
  6516. "url": "https://github.com/symfony/twig-bridge.git",
  6517. "reference": "94c3b38514c953e3e84719c96d4e578a01ca1819"
  6518. },
  6519. "dist": {
  6520. "type": "zip",
  6521. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/94c3b38514c953e3e84719c96d4e578a01ca1819",
  6522. "reference": "94c3b38514c953e3e84719c96d4e578a01ca1819",
  6523. "shasum": ""
  6524. },
  6525. "require": {
  6526. "php": ">=7.2.5",
  6527. "symfony/polyfill-php80": "^1.16",
  6528. "symfony/translation-contracts": "^1.1|^2|^3",
  6529. "twig/twig": "^2.13|^3.0.4"
  6530. },
  6531. "conflict": {
  6532. "phpdocumentor/reflection-docblock": "<3.2.2",
  6533. "phpdocumentor/type-resolver": "<1.4.0",
  6534. "symfony/console": "<5.3",
  6535. "symfony/form": "<5.3",
  6536. "symfony/http-foundation": "<5.3",
  6537. "symfony/http-kernel": "<4.4",
  6538. "symfony/translation": "<5.2",
  6539. "symfony/workflow": "<5.2"
  6540. },
  6541. "require-dev": {
  6542. "doctrine/annotations": "^1.12",
  6543. "egulias/email-validator": "^2.1.10|^3",
  6544. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6545. "symfony/asset": "^4.4|^5.0|^6.0",
  6546. "symfony/console": "^5.3|^6.0",
  6547. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6548. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6549. "symfony/finder": "^4.4|^5.0|^6.0",
  6550. "symfony/form": "^5.3|^6.0",
  6551. "symfony/http-foundation": "^5.3|^6.0",
  6552. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6553. "symfony/intl": "^4.4|^5.0|^6.0",
  6554. "symfony/mime": "^5.2|^6.0",
  6555. "symfony/polyfill-intl-icu": "~1.0",
  6556. "symfony/property-info": "^4.4|^5.1|^6.0",
  6557. "symfony/routing": "^4.4|^5.0|^6.0",
  6558. "symfony/security-acl": "^2.8|^3.0",
  6559. "symfony/security-core": "^4.4|^5.0|^6.0",
  6560. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  6561. "symfony/security-http": "^4.4|^5.0|^6.0",
  6562. "symfony/serializer": "^5.2|^6.0",
  6563. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6564. "symfony/translation": "^5.2|^6.0",
  6565. "symfony/web-link": "^4.4|^5.0|^6.0",
  6566. "symfony/workflow": "^5.2|^6.0",
  6567. "symfony/yaml": "^4.4|^5.0|^6.0",
  6568. "twig/cssinliner-extra": "^2.12|^3",
  6569. "twig/inky-extra": "^2.12|^3",
  6570. "twig/markdown-extra": "^2.12|^3"
  6571. },
  6572. "suggest": {
  6573. "symfony/asset": "For using the AssetExtension",
  6574. "symfony/expression-language": "For using the ExpressionExtension",
  6575. "symfony/finder": "",
  6576. "symfony/form": "For using the FormExtension",
  6577. "symfony/http-kernel": "For using the HttpKernelExtension",
  6578. "symfony/routing": "For using the RoutingExtension",
  6579. "symfony/security-core": "For using the SecurityExtension",
  6580. "symfony/security-csrf": "For using the CsrfExtension",
  6581. "symfony/security-http": "For using the LogoutUrlExtension",
  6582. "symfony/stopwatch": "For using the StopwatchExtension",
  6583. "symfony/translation": "For using the TranslationExtension",
  6584. "symfony/var-dumper": "For using the DumpExtension",
  6585. "symfony/web-link": "For using the WebLinkExtension",
  6586. "symfony/yaml": "For using the YamlExtension"
  6587. },
  6588. "type": "symfony-bridge",
  6589. "autoload": {
  6590. "psr-4": {
  6591. "Symfony\\Bridge\\Twig\\": ""
  6592. },
  6593. "exclude-from-classmap": [
  6594. "/Tests/"
  6595. ]
  6596. },
  6597. "notification-url": "https://packagist.org/downloads/",
  6598. "license": [
  6599. "MIT"
  6600. ],
  6601. "authors": [
  6602. {
  6603. "name": "Fabien Potencier",
  6604. "email": "fabien@symfony.com"
  6605. },
  6606. {
  6607. "name": "Symfony Community",
  6608. "homepage": "https://symfony.com/contributors"
  6609. }
  6610. ],
  6611. "description": "Provides integration for Twig with various Symfony components",
  6612. "homepage": "https://symfony.com",
  6613. "support": {
  6614. "source": "https://github.com/symfony/twig-bridge/tree/v5.4.12"
  6615. },
  6616. "funding": [
  6617. {
  6618. "url": "https://symfony.com/sponsor",
  6619. "type": "custom"
  6620. },
  6621. {
  6622. "url": "https://github.com/fabpot",
  6623. "type": "github"
  6624. },
  6625. {
  6626. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6627. "type": "tidelift"
  6628. }
  6629. ],
  6630. "time": "2022-08-03T13:09:21+00:00"
  6631. },
  6632. {
  6633. "name": "symfony/twig-bundle",
  6634. "version": "v5.4.8",
  6635. "source": {
  6636. "type": "git",
  6637. "url": "https://github.com/symfony/twig-bundle.git",
  6638. "reference": "c992b4474c3a31f3c40a1ca593d213833f91b818"
  6639. },
  6640. "dist": {
  6641. "type": "zip",
  6642. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/c992b4474c3a31f3c40a1ca593d213833f91b818",
  6643. "reference": "c992b4474c3a31f3c40a1ca593d213833f91b818",
  6644. "shasum": ""
  6645. },
  6646. "require": {
  6647. "php": ">=7.2.5",
  6648. "symfony/config": "^4.4|^5.0|^6.0",
  6649. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6650. "symfony/http-kernel": "^5.0|^6.0",
  6651. "symfony/polyfill-ctype": "~1.8",
  6652. "symfony/polyfill-php80": "^1.16",
  6653. "symfony/twig-bridge": "^5.3|^6.0",
  6654. "twig/twig": "^2.13|^3.0.4"
  6655. },
  6656. "conflict": {
  6657. "symfony/dependency-injection": "<5.3",
  6658. "symfony/framework-bundle": "<5.0",
  6659. "symfony/service-contracts": ">=3.0",
  6660. "symfony/translation": "<5.0"
  6661. },
  6662. "require-dev": {
  6663. "doctrine/annotations": "^1.10.4",
  6664. "doctrine/cache": "^1.0|^2.0",
  6665. "symfony/asset": "^4.4|^5.0|^6.0",
  6666. "symfony/dependency-injection": "^5.3|^6.0",
  6667. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6668. "symfony/finder": "^4.4|^5.0|^6.0",
  6669. "symfony/form": "^4.4|^5.0|^6.0",
  6670. "symfony/framework-bundle": "^5.0|^6.0",
  6671. "symfony/routing": "^4.4|^5.0|^6.0",
  6672. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6673. "symfony/translation": "^5.0|^6.0",
  6674. "symfony/web-link": "^4.4|^5.0|^6.0",
  6675. "symfony/yaml": "^4.4|^5.0|^6.0"
  6676. },
  6677. "type": "symfony-bundle",
  6678. "autoload": {
  6679. "psr-4": {
  6680. "Symfony\\Bundle\\TwigBundle\\": ""
  6681. },
  6682. "exclude-from-classmap": [
  6683. "/Tests/"
  6684. ]
  6685. },
  6686. "notification-url": "https://packagist.org/downloads/",
  6687. "license": [
  6688. "MIT"
  6689. ],
  6690. "authors": [
  6691. {
  6692. "name": "Fabien Potencier",
  6693. "email": "fabien@symfony.com"
  6694. },
  6695. {
  6696. "name": "Symfony Community",
  6697. "homepage": "https://symfony.com/contributors"
  6698. }
  6699. ],
  6700. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  6701. "homepage": "https://symfony.com",
  6702. "support": {
  6703. "source": "https://github.com/symfony/twig-bundle/tree/v5.4.8"
  6704. },
  6705. "funding": [
  6706. {
  6707. "url": "https://symfony.com/sponsor",
  6708. "type": "custom"
  6709. },
  6710. {
  6711. "url": "https://github.com/fabpot",
  6712. "type": "github"
  6713. },
  6714. {
  6715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6716. "type": "tidelift"
  6717. }
  6718. ],
  6719. "time": "2022-04-03T13:03:10+00:00"
  6720. },
  6721. {
  6722. "name": "symfony/validator",
  6723. "version": "v5.4.13",
  6724. "source": {
  6725. "type": "git",
  6726. "url": "https://github.com/symfony/validator.git",
  6727. "reference": "8fba40ed3c21054cb9a543ccecd4f3175b6a011b"
  6728. },
  6729. "dist": {
  6730. "type": "zip",
  6731. "url": "https://api.github.com/repos/symfony/validator/zipball/8fba40ed3c21054cb9a543ccecd4f3175b6a011b",
  6732. "reference": "8fba40ed3c21054cb9a543ccecd4f3175b6a011b",
  6733. "shasum": ""
  6734. },
  6735. "require": {
  6736. "php": ">=7.2.5",
  6737. "symfony/deprecation-contracts": "^2.1|^3",
  6738. "symfony/polyfill-ctype": "~1.8",
  6739. "symfony/polyfill-mbstring": "~1.0",
  6740. "symfony/polyfill-php73": "~1.0",
  6741. "symfony/polyfill-php80": "^1.16",
  6742. "symfony/polyfill-php81": "^1.22",
  6743. "symfony/translation-contracts": "^1.1|^2|^3"
  6744. },
  6745. "conflict": {
  6746. "doctrine/annotations": "<1.13",
  6747. "doctrine/cache": "<1.11",
  6748. "doctrine/lexer": "<1.1",
  6749. "phpunit/phpunit": "<5.4.3",
  6750. "symfony/dependency-injection": "<4.4",
  6751. "symfony/expression-language": "<5.1",
  6752. "symfony/http-kernel": "<4.4",
  6753. "symfony/intl": "<4.4",
  6754. "symfony/property-info": "<5.3",
  6755. "symfony/translation": "<4.4",
  6756. "symfony/yaml": "<4.4"
  6757. },
  6758. "require-dev": {
  6759. "doctrine/annotations": "^1.13",
  6760. "doctrine/cache": "^1.11|^2.0",
  6761. "egulias/email-validator": "^2.1.10|^3",
  6762. "symfony/cache": "^4.4|^5.0|^6.0",
  6763. "symfony/config": "^4.4|^5.0|^6.0",
  6764. "symfony/console": "^4.4|^5.0|^6.0",
  6765. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6766. "symfony/expression-language": "^5.1|^6.0",
  6767. "symfony/finder": "^4.4|^5.0|^6.0",
  6768. "symfony/http-client": "^4.4|^5.0|^6.0",
  6769. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6770. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6771. "symfony/intl": "^4.4|^5.0|^6.0",
  6772. "symfony/mime": "^4.4|^5.0|^6.0",
  6773. "symfony/property-access": "^4.4|^5.0|^6.0",
  6774. "symfony/property-info": "^5.3|^6.0",
  6775. "symfony/translation": "^4.4|^5.0|^6.0",
  6776. "symfony/yaml": "^4.4|^5.0|^6.0"
  6777. },
  6778. "suggest": {
  6779. "egulias/email-validator": "Strict (RFC compliant) email validation",
  6780. "psr/cache-implementation": "For using the mapping cache.",
  6781. "symfony/config": "",
  6782. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  6783. "symfony/http-foundation": "",
  6784. "symfony/intl": "",
  6785. "symfony/property-access": "For accessing properties within comparison constraints",
  6786. "symfony/property-info": "To automatically add NotNull and Type constraints",
  6787. "symfony/translation": "For translating validation errors.",
  6788. "symfony/yaml": ""
  6789. },
  6790. "type": "library",
  6791. "autoload": {
  6792. "psr-4": {
  6793. "Symfony\\Component\\Validator\\": ""
  6794. },
  6795. "exclude-from-classmap": [
  6796. "/Tests/"
  6797. ]
  6798. },
  6799. "notification-url": "https://packagist.org/downloads/",
  6800. "license": [
  6801. "MIT"
  6802. ],
  6803. "authors": [
  6804. {
  6805. "name": "Fabien Potencier",
  6806. "email": "fabien@symfony.com"
  6807. },
  6808. {
  6809. "name": "Symfony Community",
  6810. "homepage": "https://symfony.com/contributors"
  6811. }
  6812. ],
  6813. "description": "Provides tools to validate values",
  6814. "homepage": "https://symfony.com",
  6815. "support": {
  6816. "source": "https://github.com/symfony/validator/tree/v5.4.13"
  6817. },
  6818. "funding": [
  6819. {
  6820. "url": "https://symfony.com/sponsor",
  6821. "type": "custom"
  6822. },
  6823. {
  6824. "url": "https://github.com/fabpot",
  6825. "type": "github"
  6826. },
  6827. {
  6828. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6829. "type": "tidelift"
  6830. }
  6831. ],
  6832. "time": "2022-09-17T07:31:22+00:00"
  6833. },
  6834. {
  6835. "name": "symfony/var-dumper",
  6836. "version": "v5.4.13",
  6837. "source": {
  6838. "type": "git",
  6839. "url": "https://github.com/symfony/var-dumper.git",
  6840. "reference": "2bf2ccab581bec363191672f0df40e0c85569e1c"
  6841. },
  6842. "dist": {
  6843. "type": "zip",
  6844. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2bf2ccab581bec363191672f0df40e0c85569e1c",
  6845. "reference": "2bf2ccab581bec363191672f0df40e0c85569e1c",
  6846. "shasum": ""
  6847. },
  6848. "require": {
  6849. "php": ">=7.2.5",
  6850. "symfony/polyfill-mbstring": "~1.0",
  6851. "symfony/polyfill-php80": "^1.16"
  6852. },
  6853. "conflict": {
  6854. "phpunit/phpunit": "<5.4.3",
  6855. "symfony/console": "<4.4"
  6856. },
  6857. "require-dev": {
  6858. "ext-iconv": "*",
  6859. "symfony/console": "^4.4|^5.0|^6.0",
  6860. "symfony/process": "^4.4|^5.0|^6.0",
  6861. "symfony/uid": "^5.1|^6.0",
  6862. "twig/twig": "^2.13|^3.0.4"
  6863. },
  6864. "suggest": {
  6865. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6866. "ext-intl": "To show region name in time zone dump",
  6867. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6868. },
  6869. "bin": [
  6870. "Resources/bin/var-dump-server"
  6871. ],
  6872. "type": "library",
  6873. "autoload": {
  6874. "files": [
  6875. "Resources/functions/dump.php"
  6876. ],
  6877. "psr-4": {
  6878. "Symfony\\Component\\VarDumper\\": ""
  6879. },
  6880. "exclude-from-classmap": [
  6881. "/Tests/"
  6882. ]
  6883. },
  6884. "notification-url": "https://packagist.org/downloads/",
  6885. "license": [
  6886. "MIT"
  6887. ],
  6888. "authors": [
  6889. {
  6890. "name": "Nicolas Grekas",
  6891. "email": "p@tchwork.com"
  6892. },
  6893. {
  6894. "name": "Symfony Community",
  6895. "homepage": "https://symfony.com/contributors"
  6896. }
  6897. ],
  6898. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6899. "homepage": "https://symfony.com",
  6900. "keywords": [
  6901. "debug",
  6902. "dump"
  6903. ],
  6904. "support": {
  6905. "source": "https://github.com/symfony/var-dumper/tree/v5.4.13"
  6906. },
  6907. "funding": [
  6908. {
  6909. "url": "https://symfony.com/sponsor",
  6910. "type": "custom"
  6911. },
  6912. {
  6913. "url": "https://github.com/fabpot",
  6914. "type": "github"
  6915. },
  6916. {
  6917. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6918. "type": "tidelift"
  6919. }
  6920. ],
  6921. "time": "2022-09-06T13:23:31+00:00"
  6922. },
  6923. {
  6924. "name": "symfony/var-exporter",
  6925. "version": "v5.4.10",
  6926. "source": {
  6927. "type": "git",
  6928. "url": "https://github.com/symfony/var-exporter.git",
  6929. "reference": "8fc03ee75eeece3d9be1ef47d26d79bea1afb340"
  6930. },
  6931. "dist": {
  6932. "type": "zip",
  6933. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/8fc03ee75eeece3d9be1ef47d26d79bea1afb340",
  6934. "reference": "8fc03ee75eeece3d9be1ef47d26d79bea1afb340",
  6935. "shasum": ""
  6936. },
  6937. "require": {
  6938. "php": ">=7.2.5",
  6939. "symfony/polyfill-php80": "^1.16"
  6940. },
  6941. "require-dev": {
  6942. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  6943. },
  6944. "type": "library",
  6945. "autoload": {
  6946. "psr-4": {
  6947. "Symfony\\Component\\VarExporter\\": ""
  6948. },
  6949. "exclude-from-classmap": [
  6950. "/Tests/"
  6951. ]
  6952. },
  6953. "notification-url": "https://packagist.org/downloads/",
  6954. "license": [
  6955. "MIT"
  6956. ],
  6957. "authors": [
  6958. {
  6959. "name": "Nicolas Grekas",
  6960. "email": "p@tchwork.com"
  6961. },
  6962. {
  6963. "name": "Symfony Community",
  6964. "homepage": "https://symfony.com/contributors"
  6965. }
  6966. ],
  6967. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  6968. "homepage": "https://symfony.com",
  6969. "keywords": [
  6970. "clone",
  6971. "construct",
  6972. "export",
  6973. "hydrate",
  6974. "instantiate",
  6975. "serialize"
  6976. ],
  6977. "support": {
  6978. "source": "https://github.com/symfony/var-exporter/tree/v5.4.10"
  6979. },
  6980. "funding": [
  6981. {
  6982. "url": "https://symfony.com/sponsor",
  6983. "type": "custom"
  6984. },
  6985. {
  6986. "url": "https://github.com/fabpot",
  6987. "type": "github"
  6988. },
  6989. {
  6990. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6991. "type": "tidelift"
  6992. }
  6993. ],
  6994. "time": "2022-05-27T12:56:18+00:00"
  6995. },
  6996. {
  6997. "name": "symfony/web-link",
  6998. "version": "v5.4.3",
  6999. "source": {
  7000. "type": "git",
  7001. "url": "https://github.com/symfony/web-link.git",
  7002. "reference": "8b9b073390359549fec5f5d797f23bbe9e2997a5"
  7003. },
  7004. "dist": {
  7005. "type": "zip",
  7006. "url": "https://api.github.com/repos/symfony/web-link/zipball/8b9b073390359549fec5f5d797f23bbe9e2997a5",
  7007. "reference": "8b9b073390359549fec5f5d797f23bbe9e2997a5",
  7008. "shasum": ""
  7009. },
  7010. "require": {
  7011. "php": ">=7.2.5",
  7012. "psr/link": "^1.0",
  7013. "symfony/polyfill-php80": "^1.16"
  7014. },
  7015. "conflict": {
  7016. "symfony/http-kernel": "<5.3"
  7017. },
  7018. "provide": {
  7019. "psr/link-implementation": "1.0"
  7020. },
  7021. "require-dev": {
  7022. "symfony/http-kernel": "^5.3|^6.0"
  7023. },
  7024. "suggest": {
  7025. "symfony/http-kernel": ""
  7026. },
  7027. "type": "library",
  7028. "autoload": {
  7029. "psr-4": {
  7030. "Symfony\\Component\\WebLink\\": ""
  7031. },
  7032. "exclude-from-classmap": [
  7033. "/Tests/"
  7034. ]
  7035. },
  7036. "notification-url": "https://packagist.org/downloads/",
  7037. "license": [
  7038. "MIT"
  7039. ],
  7040. "authors": [
  7041. {
  7042. "name": "Kévin Dunglas",
  7043. "email": "dunglas@gmail.com"
  7044. },
  7045. {
  7046. "name": "Symfony Community",
  7047. "homepage": "https://symfony.com/contributors"
  7048. }
  7049. ],
  7050. "description": "Manages links between resources",
  7051. "homepage": "https://symfony.com",
  7052. "keywords": [
  7053. "dns-prefetch",
  7054. "http",
  7055. "http2",
  7056. "link",
  7057. "performance",
  7058. "prefetch",
  7059. "preload",
  7060. "prerender",
  7061. "psr13",
  7062. "push"
  7063. ],
  7064. "support": {
  7065. "source": "https://github.com/symfony/web-link/tree/v5.4.3"
  7066. },
  7067. "funding": [
  7068. {
  7069. "url": "https://symfony.com/sponsor",
  7070. "type": "custom"
  7071. },
  7072. {
  7073. "url": "https://github.com/fabpot",
  7074. "type": "github"
  7075. },
  7076. {
  7077. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7078. "type": "tidelift"
  7079. }
  7080. ],
  7081. "time": "2022-01-02T09:53:40+00:00"
  7082. },
  7083. {
  7084. "name": "symfony/webpack-encore-bundle",
  7085. "version": "v1.15.1",
  7086. "source": {
  7087. "type": "git",
  7088. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  7089. "reference": "718673b1e758533614190ae74d07305a72bc66a9"
  7090. },
  7091. "dist": {
  7092. "type": "zip",
  7093. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/718673b1e758533614190ae74d07305a72bc66a9",
  7094. "reference": "718673b1e758533614190ae74d07305a72bc66a9",
  7095. "shasum": ""
  7096. },
  7097. "require": {
  7098. "php": ">=7.1.3",
  7099. "symfony/asset": "^4.4 || ^5.0 || ^6.0",
  7100. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  7101. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  7102. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  7103. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  7104. "symfony/polyfill-php80": "^1.25.0",
  7105. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  7106. },
  7107. "require-dev": {
  7108. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  7109. "symfony/phpunit-bridge": "^5.3 || ^6.0",
  7110. "symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
  7111. "symfony/web-link": "^4.4 || ^5.0 || ^6.0"
  7112. },
  7113. "type": "symfony-bundle",
  7114. "extra": {
  7115. "thanks": {
  7116. "name": "symfony/webpack-encore",
  7117. "url": "https://github.com/symfony/webpack-encore"
  7118. }
  7119. },
  7120. "autoload": {
  7121. "psr-4": {
  7122. "Symfony\\WebpackEncoreBundle\\": "src"
  7123. }
  7124. },
  7125. "notification-url": "https://packagist.org/downloads/",
  7126. "license": [
  7127. "MIT"
  7128. ],
  7129. "authors": [
  7130. {
  7131. "name": "Symfony Community",
  7132. "homepage": "https://symfony.com/contributors"
  7133. }
  7134. ],
  7135. "description": "Integration with your Symfony app & Webpack Encore!",
  7136. "support": {
  7137. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  7138. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.15.1"
  7139. },
  7140. "funding": [
  7141. {
  7142. "url": "https://symfony.com/sponsor",
  7143. "type": "custom"
  7144. },
  7145. {
  7146. "url": "https://github.com/fabpot",
  7147. "type": "github"
  7148. },
  7149. {
  7150. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7151. "type": "tidelift"
  7152. }
  7153. ],
  7154. "time": "2022-07-13T17:07:35+00:00"
  7155. },
  7156. {
  7157. "name": "symfony/yaml",
  7158. "version": "v5.4.12",
  7159. "source": {
  7160. "type": "git",
  7161. "url": "https://github.com/symfony/yaml.git",
  7162. "reference": "7a3aa21ac8ab1a96cc6de5bbcab4bc9fc943b18c"
  7163. },
  7164. "dist": {
  7165. "type": "zip",
  7166. "url": "https://api.github.com/repos/symfony/yaml/zipball/7a3aa21ac8ab1a96cc6de5bbcab4bc9fc943b18c",
  7167. "reference": "7a3aa21ac8ab1a96cc6de5bbcab4bc9fc943b18c",
  7168. "shasum": ""
  7169. },
  7170. "require": {
  7171. "php": ">=7.2.5",
  7172. "symfony/deprecation-contracts": "^2.1|^3",
  7173. "symfony/polyfill-ctype": "^1.8"
  7174. },
  7175. "conflict": {
  7176. "symfony/console": "<5.3"
  7177. },
  7178. "require-dev": {
  7179. "symfony/console": "^5.3|^6.0"
  7180. },
  7181. "suggest": {
  7182. "symfony/console": "For validating YAML files using the lint command"
  7183. },
  7184. "bin": [
  7185. "Resources/bin/yaml-lint"
  7186. ],
  7187. "type": "library",
  7188. "autoload": {
  7189. "psr-4": {
  7190. "Symfony\\Component\\Yaml\\": ""
  7191. },
  7192. "exclude-from-classmap": [
  7193. "/Tests/"
  7194. ]
  7195. },
  7196. "notification-url": "https://packagist.org/downloads/",
  7197. "license": [
  7198. "MIT"
  7199. ],
  7200. "authors": [
  7201. {
  7202. "name": "Fabien Potencier",
  7203. "email": "fabien@symfony.com"
  7204. },
  7205. {
  7206. "name": "Symfony Community",
  7207. "homepage": "https://symfony.com/contributors"
  7208. }
  7209. ],
  7210. "description": "Loads and dumps YAML files",
  7211. "homepage": "https://symfony.com",
  7212. "support": {
  7213. "source": "https://github.com/symfony/yaml/tree/v5.4.12"
  7214. },
  7215. "funding": [
  7216. {
  7217. "url": "https://symfony.com/sponsor",
  7218. "type": "custom"
  7219. },
  7220. {
  7221. "url": "https://github.com/fabpot",
  7222. "type": "github"
  7223. },
  7224. {
  7225. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7226. "type": "tidelift"
  7227. }
  7228. ],
  7229. "time": "2022-08-02T15:52:22+00:00"
  7230. },
  7231. {
  7232. "name": "twig/extra-bundle",
  7233. "version": "v3.4.0",
  7234. "source": {
  7235. "type": "git",
  7236. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  7237. "reference": "2e58256b0e9fe52f30149347c0547e4633304765"
  7238. },
  7239. "dist": {
  7240. "type": "zip",
  7241. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/2e58256b0e9fe52f30149347c0547e4633304765",
  7242. "reference": "2e58256b0e9fe52f30149347c0547e4633304765",
  7243. "shasum": ""
  7244. },
  7245. "require": {
  7246. "php": ">=7.2.5",
  7247. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  7248. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  7249. "twig/twig": "^2.7|^3.0"
  7250. },
  7251. "require-dev": {
  7252. "league/commonmark": "^1.0|^2.0",
  7253. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  7254. "twig/cache-extra": "^3.0",
  7255. "twig/cssinliner-extra": "^2.12|^3.0",
  7256. "twig/html-extra": "^2.12|^3.0",
  7257. "twig/inky-extra": "^2.12|^3.0",
  7258. "twig/intl-extra": "^2.12|^3.0",
  7259. "twig/markdown-extra": "^2.12|^3.0",
  7260. "twig/string-extra": "^2.12|^3.0"
  7261. },
  7262. "type": "symfony-bundle",
  7263. "extra": {
  7264. "branch-alias": {
  7265. "dev-master": "3.2-dev"
  7266. }
  7267. },
  7268. "autoload": {
  7269. "psr-4": {
  7270. "Twig\\Extra\\TwigExtraBundle\\": ""
  7271. },
  7272. "exclude-from-classmap": [
  7273. "/Tests/"
  7274. ]
  7275. },
  7276. "notification-url": "https://packagist.org/downloads/",
  7277. "license": [
  7278. "MIT"
  7279. ],
  7280. "authors": [
  7281. {
  7282. "name": "Fabien Potencier",
  7283. "email": "fabien@symfony.com",
  7284. "homepage": "http://fabien.potencier.org",
  7285. "role": "Lead Developer"
  7286. }
  7287. ],
  7288. "description": "A Symfony bundle for extra Twig extensions",
  7289. "homepage": "https://twig.symfony.com",
  7290. "keywords": [
  7291. "bundle",
  7292. "extra",
  7293. "twig"
  7294. ],
  7295. "support": {
  7296. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.4.0"
  7297. },
  7298. "funding": [
  7299. {
  7300. "url": "https://github.com/fabpot",
  7301. "type": "github"
  7302. },
  7303. {
  7304. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7305. "type": "tidelift"
  7306. }
  7307. ],
  7308. "time": "2022-01-04T13:58:53+00:00"
  7309. },
  7310. {
  7311. "name": "twig/twig",
  7312. "version": "v3.4.3",
  7313. "source": {
  7314. "type": "git",
  7315. "url": "https://github.com/twigphp/Twig.git",
  7316. "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58"
  7317. },
  7318. "dist": {
  7319. "type": "zip",
  7320. "url": "https://api.github.com/repos/twigphp/Twig/zipball/c38fd6b0b7f370c198db91ffd02e23b517426b58",
  7321. "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58",
  7322. "shasum": ""
  7323. },
  7324. "require": {
  7325. "php": ">=7.2.5",
  7326. "symfony/polyfill-ctype": "^1.8",
  7327. "symfony/polyfill-mbstring": "^1.3"
  7328. },
  7329. "require-dev": {
  7330. "psr/container": "^1.0",
  7331. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  7332. },
  7333. "type": "library",
  7334. "extra": {
  7335. "branch-alias": {
  7336. "dev-master": "3.4-dev"
  7337. }
  7338. },
  7339. "autoload": {
  7340. "psr-4": {
  7341. "Twig\\": "src/"
  7342. }
  7343. },
  7344. "notification-url": "https://packagist.org/downloads/",
  7345. "license": [
  7346. "BSD-3-Clause"
  7347. ],
  7348. "authors": [
  7349. {
  7350. "name": "Fabien Potencier",
  7351. "email": "fabien@symfony.com",
  7352. "homepage": "http://fabien.potencier.org",
  7353. "role": "Lead Developer"
  7354. },
  7355. {
  7356. "name": "Twig Team",
  7357. "role": "Contributors"
  7358. },
  7359. {
  7360. "name": "Armin Ronacher",
  7361. "email": "armin.ronacher@active-4.com",
  7362. "role": "Project Founder"
  7363. }
  7364. ],
  7365. "description": "Twig, the flexible, fast, and secure template language for PHP",
  7366. "homepage": "https://twig.symfony.com",
  7367. "keywords": [
  7368. "templating"
  7369. ],
  7370. "support": {
  7371. "issues": "https://github.com/twigphp/Twig/issues",
  7372. "source": "https://github.com/twigphp/Twig/tree/v3.4.3"
  7373. },
  7374. "funding": [
  7375. {
  7376. "url": "https://github.com/fabpot",
  7377. "type": "github"
  7378. },
  7379. {
  7380. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7381. "type": "tidelift"
  7382. }
  7383. ],
  7384. "time": "2022-09-28T08:42:51+00:00"
  7385. },
  7386. {
  7387. "name": "webmozart/assert",
  7388. "version": "1.11.0",
  7389. "source": {
  7390. "type": "git",
  7391. "url": "https://github.com/webmozarts/assert.git",
  7392. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7393. },
  7394. "dist": {
  7395. "type": "zip",
  7396. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7397. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7398. "shasum": ""
  7399. },
  7400. "require": {
  7401. "ext-ctype": "*",
  7402. "php": "^7.2 || ^8.0"
  7403. },
  7404. "conflict": {
  7405. "phpstan/phpstan": "<0.12.20",
  7406. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7407. },
  7408. "require-dev": {
  7409. "phpunit/phpunit": "^8.5.13"
  7410. },
  7411. "type": "library",
  7412. "extra": {
  7413. "branch-alias": {
  7414. "dev-master": "1.10-dev"
  7415. }
  7416. },
  7417. "autoload": {
  7418. "psr-4": {
  7419. "Webmozart\\Assert\\": "src/"
  7420. }
  7421. },
  7422. "notification-url": "https://packagist.org/downloads/",
  7423. "license": [
  7424. "MIT"
  7425. ],
  7426. "authors": [
  7427. {
  7428. "name": "Bernhard Schussek",
  7429. "email": "bschussek@gmail.com"
  7430. }
  7431. ],
  7432. "description": "Assertions to validate method input/output with nice error messages.",
  7433. "keywords": [
  7434. "assert",
  7435. "check",
  7436. "validate"
  7437. ],
  7438. "support": {
  7439. "issues": "https://github.com/webmozarts/assert/issues",
  7440. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7441. },
  7442. "time": "2022-06-03T18:03:27+00:00"
  7443. }
  7444. ],
  7445. "packages-dev": [
  7446. {
  7447. "name": "myclabs/deep-copy",
  7448. "version": "1.11.0",
  7449. "source": {
  7450. "type": "git",
  7451. "url": "https://github.com/myclabs/DeepCopy.git",
  7452. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  7453. },
  7454. "dist": {
  7455. "type": "zip",
  7456. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  7457. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  7458. "shasum": ""
  7459. },
  7460. "require": {
  7461. "php": "^7.1 || ^8.0"
  7462. },
  7463. "conflict": {
  7464. "doctrine/collections": "<1.6.8",
  7465. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7466. },
  7467. "require-dev": {
  7468. "doctrine/collections": "^1.6.8",
  7469. "doctrine/common": "^2.13.3 || ^3.2.2",
  7470. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7471. },
  7472. "type": "library",
  7473. "autoload": {
  7474. "files": [
  7475. "src/DeepCopy/deep_copy.php"
  7476. ],
  7477. "psr-4": {
  7478. "DeepCopy\\": "src/DeepCopy/"
  7479. }
  7480. },
  7481. "notification-url": "https://packagist.org/downloads/",
  7482. "license": [
  7483. "MIT"
  7484. ],
  7485. "description": "Create deep copies (clones) of your objects",
  7486. "keywords": [
  7487. "clone",
  7488. "copy",
  7489. "duplicate",
  7490. "object",
  7491. "object graph"
  7492. ],
  7493. "support": {
  7494. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7495. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  7496. },
  7497. "funding": [
  7498. {
  7499. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7500. "type": "tidelift"
  7501. }
  7502. ],
  7503. "time": "2022-03-03T13:19:32+00:00"
  7504. },
  7505. {
  7506. "name": "nikic/php-parser",
  7507. "version": "v4.15.1",
  7508. "source": {
  7509. "type": "git",
  7510. "url": "https://github.com/nikic/PHP-Parser.git",
  7511. "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900"
  7512. },
  7513. "dist": {
  7514. "type": "zip",
  7515. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
  7516. "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
  7517. "shasum": ""
  7518. },
  7519. "require": {
  7520. "ext-tokenizer": "*",
  7521. "php": ">=7.0"
  7522. },
  7523. "require-dev": {
  7524. "ircmaxell/php-yacc": "^0.0.7",
  7525. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  7526. },
  7527. "bin": [
  7528. "bin/php-parse"
  7529. ],
  7530. "type": "library",
  7531. "extra": {
  7532. "branch-alias": {
  7533. "dev-master": "4.9-dev"
  7534. }
  7535. },
  7536. "autoload": {
  7537. "psr-4": {
  7538. "PhpParser\\": "lib/PhpParser"
  7539. }
  7540. },
  7541. "notification-url": "https://packagist.org/downloads/",
  7542. "license": [
  7543. "BSD-3-Clause"
  7544. ],
  7545. "authors": [
  7546. {
  7547. "name": "Nikita Popov"
  7548. }
  7549. ],
  7550. "description": "A PHP parser written in PHP",
  7551. "keywords": [
  7552. "parser",
  7553. "php"
  7554. ],
  7555. "support": {
  7556. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7557. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.1"
  7558. },
  7559. "time": "2022-09-04T07:30:47+00:00"
  7560. },
  7561. {
  7562. "name": "phar-io/manifest",
  7563. "version": "2.0.3",
  7564. "source": {
  7565. "type": "git",
  7566. "url": "https://github.com/phar-io/manifest.git",
  7567. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  7568. },
  7569. "dist": {
  7570. "type": "zip",
  7571. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  7572. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  7573. "shasum": ""
  7574. },
  7575. "require": {
  7576. "ext-dom": "*",
  7577. "ext-phar": "*",
  7578. "ext-xmlwriter": "*",
  7579. "phar-io/version": "^3.0.1",
  7580. "php": "^7.2 || ^8.0"
  7581. },
  7582. "type": "library",
  7583. "extra": {
  7584. "branch-alias": {
  7585. "dev-master": "2.0.x-dev"
  7586. }
  7587. },
  7588. "autoload": {
  7589. "classmap": [
  7590. "src/"
  7591. ]
  7592. },
  7593. "notification-url": "https://packagist.org/downloads/",
  7594. "license": [
  7595. "BSD-3-Clause"
  7596. ],
  7597. "authors": [
  7598. {
  7599. "name": "Arne Blankerts",
  7600. "email": "arne@blankerts.de",
  7601. "role": "Developer"
  7602. },
  7603. {
  7604. "name": "Sebastian Heuer",
  7605. "email": "sebastian@phpeople.de",
  7606. "role": "Developer"
  7607. },
  7608. {
  7609. "name": "Sebastian Bergmann",
  7610. "email": "sebastian@phpunit.de",
  7611. "role": "Developer"
  7612. }
  7613. ],
  7614. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7615. "support": {
  7616. "issues": "https://github.com/phar-io/manifest/issues",
  7617. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  7618. },
  7619. "time": "2021-07-20T11:28:43+00:00"
  7620. },
  7621. {
  7622. "name": "phar-io/version",
  7623. "version": "3.2.1",
  7624. "source": {
  7625. "type": "git",
  7626. "url": "https://github.com/phar-io/version.git",
  7627. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7628. },
  7629. "dist": {
  7630. "type": "zip",
  7631. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7632. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7633. "shasum": ""
  7634. },
  7635. "require": {
  7636. "php": "^7.2 || ^8.0"
  7637. },
  7638. "type": "library",
  7639. "autoload": {
  7640. "classmap": [
  7641. "src/"
  7642. ]
  7643. },
  7644. "notification-url": "https://packagist.org/downloads/",
  7645. "license": [
  7646. "BSD-3-Clause"
  7647. ],
  7648. "authors": [
  7649. {
  7650. "name": "Arne Blankerts",
  7651. "email": "arne@blankerts.de",
  7652. "role": "Developer"
  7653. },
  7654. {
  7655. "name": "Sebastian Heuer",
  7656. "email": "sebastian@phpeople.de",
  7657. "role": "Developer"
  7658. },
  7659. {
  7660. "name": "Sebastian Bergmann",
  7661. "email": "sebastian@phpunit.de",
  7662. "role": "Developer"
  7663. }
  7664. ],
  7665. "description": "Library for handling version information and constraints",
  7666. "support": {
  7667. "issues": "https://github.com/phar-io/version/issues",
  7668. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7669. },
  7670. "time": "2022-02-21T01:04:05+00:00"
  7671. },
  7672. {
  7673. "name": "phpunit/php-code-coverage",
  7674. "version": "9.2.17",
  7675. "source": {
  7676. "type": "git",
  7677. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7678. "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8"
  7679. },
  7680. "dist": {
  7681. "type": "zip",
  7682. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/aa94dc41e8661fe90c7316849907cba3007b10d8",
  7683. "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8",
  7684. "shasum": ""
  7685. },
  7686. "require": {
  7687. "ext-dom": "*",
  7688. "ext-libxml": "*",
  7689. "ext-xmlwriter": "*",
  7690. "nikic/php-parser": "^4.14",
  7691. "php": ">=7.3",
  7692. "phpunit/php-file-iterator": "^3.0.3",
  7693. "phpunit/php-text-template": "^2.0.2",
  7694. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  7695. "sebastian/complexity": "^2.0",
  7696. "sebastian/environment": "^5.1.2",
  7697. "sebastian/lines-of-code": "^1.0.3",
  7698. "sebastian/version": "^3.0.1",
  7699. "theseer/tokenizer": "^1.2.0"
  7700. },
  7701. "require-dev": {
  7702. "phpunit/phpunit": "^9.3"
  7703. },
  7704. "suggest": {
  7705. "ext-pcov": "*",
  7706. "ext-xdebug": "*"
  7707. },
  7708. "type": "library",
  7709. "extra": {
  7710. "branch-alias": {
  7711. "dev-master": "9.2-dev"
  7712. }
  7713. },
  7714. "autoload": {
  7715. "classmap": [
  7716. "src/"
  7717. ]
  7718. },
  7719. "notification-url": "https://packagist.org/downloads/",
  7720. "license": [
  7721. "BSD-3-Clause"
  7722. ],
  7723. "authors": [
  7724. {
  7725. "name": "Sebastian Bergmann",
  7726. "email": "sebastian@phpunit.de",
  7727. "role": "lead"
  7728. }
  7729. ],
  7730. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7731. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7732. "keywords": [
  7733. "coverage",
  7734. "testing",
  7735. "xunit"
  7736. ],
  7737. "support": {
  7738. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7739. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.17"
  7740. },
  7741. "funding": [
  7742. {
  7743. "url": "https://github.com/sebastianbergmann",
  7744. "type": "github"
  7745. }
  7746. ],
  7747. "time": "2022-08-30T12:24:04+00:00"
  7748. },
  7749. {
  7750. "name": "phpunit/php-file-iterator",
  7751. "version": "3.0.6",
  7752. "source": {
  7753. "type": "git",
  7754. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7755. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  7756. },
  7757. "dist": {
  7758. "type": "zip",
  7759. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  7760. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  7761. "shasum": ""
  7762. },
  7763. "require": {
  7764. "php": ">=7.3"
  7765. },
  7766. "require-dev": {
  7767. "phpunit/phpunit": "^9.3"
  7768. },
  7769. "type": "library",
  7770. "extra": {
  7771. "branch-alias": {
  7772. "dev-master": "3.0-dev"
  7773. }
  7774. },
  7775. "autoload": {
  7776. "classmap": [
  7777. "src/"
  7778. ]
  7779. },
  7780. "notification-url": "https://packagist.org/downloads/",
  7781. "license": [
  7782. "BSD-3-Clause"
  7783. ],
  7784. "authors": [
  7785. {
  7786. "name": "Sebastian Bergmann",
  7787. "email": "sebastian@phpunit.de",
  7788. "role": "lead"
  7789. }
  7790. ],
  7791. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7792. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7793. "keywords": [
  7794. "filesystem",
  7795. "iterator"
  7796. ],
  7797. "support": {
  7798. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7799. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  7800. },
  7801. "funding": [
  7802. {
  7803. "url": "https://github.com/sebastianbergmann",
  7804. "type": "github"
  7805. }
  7806. ],
  7807. "time": "2021-12-02T12:48:52+00:00"
  7808. },
  7809. {
  7810. "name": "phpunit/php-invoker",
  7811. "version": "3.1.1",
  7812. "source": {
  7813. "type": "git",
  7814. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  7815. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  7816. },
  7817. "dist": {
  7818. "type": "zip",
  7819. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  7820. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  7821. "shasum": ""
  7822. },
  7823. "require": {
  7824. "php": ">=7.3"
  7825. },
  7826. "require-dev": {
  7827. "ext-pcntl": "*",
  7828. "phpunit/phpunit": "^9.3"
  7829. },
  7830. "suggest": {
  7831. "ext-pcntl": "*"
  7832. },
  7833. "type": "library",
  7834. "extra": {
  7835. "branch-alias": {
  7836. "dev-master": "3.1-dev"
  7837. }
  7838. },
  7839. "autoload": {
  7840. "classmap": [
  7841. "src/"
  7842. ]
  7843. },
  7844. "notification-url": "https://packagist.org/downloads/",
  7845. "license": [
  7846. "BSD-3-Clause"
  7847. ],
  7848. "authors": [
  7849. {
  7850. "name": "Sebastian Bergmann",
  7851. "email": "sebastian@phpunit.de",
  7852. "role": "lead"
  7853. }
  7854. ],
  7855. "description": "Invoke callables with a timeout",
  7856. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7857. "keywords": [
  7858. "process"
  7859. ],
  7860. "support": {
  7861. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7862. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  7863. },
  7864. "funding": [
  7865. {
  7866. "url": "https://github.com/sebastianbergmann",
  7867. "type": "github"
  7868. }
  7869. ],
  7870. "time": "2020-09-28T05:58:55+00:00"
  7871. },
  7872. {
  7873. "name": "phpunit/php-text-template",
  7874. "version": "2.0.4",
  7875. "source": {
  7876. "type": "git",
  7877. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7878. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  7879. },
  7880. "dist": {
  7881. "type": "zip",
  7882. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  7883. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  7884. "shasum": ""
  7885. },
  7886. "require": {
  7887. "php": ">=7.3"
  7888. },
  7889. "require-dev": {
  7890. "phpunit/phpunit": "^9.3"
  7891. },
  7892. "type": "library",
  7893. "extra": {
  7894. "branch-alias": {
  7895. "dev-master": "2.0-dev"
  7896. }
  7897. },
  7898. "autoload": {
  7899. "classmap": [
  7900. "src/"
  7901. ]
  7902. },
  7903. "notification-url": "https://packagist.org/downloads/",
  7904. "license": [
  7905. "BSD-3-Clause"
  7906. ],
  7907. "authors": [
  7908. {
  7909. "name": "Sebastian Bergmann",
  7910. "email": "sebastian@phpunit.de",
  7911. "role": "lead"
  7912. }
  7913. ],
  7914. "description": "Simple template engine.",
  7915. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7916. "keywords": [
  7917. "template"
  7918. ],
  7919. "support": {
  7920. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  7921. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  7922. },
  7923. "funding": [
  7924. {
  7925. "url": "https://github.com/sebastianbergmann",
  7926. "type": "github"
  7927. }
  7928. ],
  7929. "time": "2020-10-26T05:33:50+00:00"
  7930. },
  7931. {
  7932. "name": "phpunit/php-timer",
  7933. "version": "5.0.3",
  7934. "source": {
  7935. "type": "git",
  7936. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7937. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  7938. },
  7939. "dist": {
  7940. "type": "zip",
  7941. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  7942. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  7943. "shasum": ""
  7944. },
  7945. "require": {
  7946. "php": ">=7.3"
  7947. },
  7948. "require-dev": {
  7949. "phpunit/phpunit": "^9.3"
  7950. },
  7951. "type": "library",
  7952. "extra": {
  7953. "branch-alias": {
  7954. "dev-master": "5.0-dev"
  7955. }
  7956. },
  7957. "autoload": {
  7958. "classmap": [
  7959. "src/"
  7960. ]
  7961. },
  7962. "notification-url": "https://packagist.org/downloads/",
  7963. "license": [
  7964. "BSD-3-Clause"
  7965. ],
  7966. "authors": [
  7967. {
  7968. "name": "Sebastian Bergmann",
  7969. "email": "sebastian@phpunit.de",
  7970. "role": "lead"
  7971. }
  7972. ],
  7973. "description": "Utility class for timing",
  7974. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7975. "keywords": [
  7976. "timer"
  7977. ],
  7978. "support": {
  7979. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  7980. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  7981. },
  7982. "funding": [
  7983. {
  7984. "url": "https://github.com/sebastianbergmann",
  7985. "type": "github"
  7986. }
  7987. ],
  7988. "time": "2020-10-26T13:16:10+00:00"
  7989. },
  7990. {
  7991. "name": "phpunit/phpunit",
  7992. "version": "9.5.25",
  7993. "source": {
  7994. "type": "git",
  7995. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7996. "reference": "3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d"
  7997. },
  7998. "dist": {
  7999. "type": "zip",
  8000. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d",
  8001. "reference": "3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d",
  8002. "shasum": ""
  8003. },
  8004. "require": {
  8005. "doctrine/instantiator": "^1.3.1",
  8006. "ext-dom": "*",
  8007. "ext-json": "*",
  8008. "ext-libxml": "*",
  8009. "ext-mbstring": "*",
  8010. "ext-xml": "*",
  8011. "ext-xmlwriter": "*",
  8012. "myclabs/deep-copy": "^1.10.1",
  8013. "phar-io/manifest": "^2.0.3",
  8014. "phar-io/version": "^3.0.2",
  8015. "php": ">=7.3",
  8016. "phpunit/php-code-coverage": "^9.2.13",
  8017. "phpunit/php-file-iterator": "^3.0.5",
  8018. "phpunit/php-invoker": "^3.1.1",
  8019. "phpunit/php-text-template": "^2.0.3",
  8020. "phpunit/php-timer": "^5.0.2",
  8021. "sebastian/cli-parser": "^1.0.1",
  8022. "sebastian/code-unit": "^1.0.6",
  8023. "sebastian/comparator": "^4.0.8",
  8024. "sebastian/diff": "^4.0.3",
  8025. "sebastian/environment": "^5.1.3",
  8026. "sebastian/exporter": "^4.0.5",
  8027. "sebastian/global-state": "^5.0.1",
  8028. "sebastian/object-enumerator": "^4.0.3",
  8029. "sebastian/resource-operations": "^3.0.3",
  8030. "sebastian/type": "^3.2",
  8031. "sebastian/version": "^3.0.2"
  8032. },
  8033. "suggest": {
  8034. "ext-soap": "*",
  8035. "ext-xdebug": "*"
  8036. },
  8037. "bin": [
  8038. "phpunit"
  8039. ],
  8040. "type": "library",
  8041. "extra": {
  8042. "branch-alias": {
  8043. "dev-master": "9.5-dev"
  8044. }
  8045. },
  8046. "autoload": {
  8047. "files": [
  8048. "src/Framework/Assert/Functions.php"
  8049. ],
  8050. "classmap": [
  8051. "src/"
  8052. ]
  8053. },
  8054. "notification-url": "https://packagist.org/downloads/",
  8055. "license": [
  8056. "BSD-3-Clause"
  8057. ],
  8058. "authors": [
  8059. {
  8060. "name": "Sebastian Bergmann",
  8061. "email": "sebastian@phpunit.de",
  8062. "role": "lead"
  8063. }
  8064. ],
  8065. "description": "The PHP Unit Testing framework.",
  8066. "homepage": "https://phpunit.de/",
  8067. "keywords": [
  8068. "phpunit",
  8069. "testing",
  8070. "xunit"
  8071. ],
  8072. "support": {
  8073. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8074. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.25"
  8075. },
  8076. "funding": [
  8077. {
  8078. "url": "https://phpunit.de/sponsors.html",
  8079. "type": "custom"
  8080. },
  8081. {
  8082. "url": "https://github.com/sebastianbergmann",
  8083. "type": "github"
  8084. },
  8085. {
  8086. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8087. "type": "tidelift"
  8088. }
  8089. ],
  8090. "time": "2022-09-25T03:44:45+00:00"
  8091. },
  8092. {
  8093. "name": "sebastian/cli-parser",
  8094. "version": "1.0.1",
  8095. "source": {
  8096. "type": "git",
  8097. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8098. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  8099. },
  8100. "dist": {
  8101. "type": "zip",
  8102. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8103. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8104. "shasum": ""
  8105. },
  8106. "require": {
  8107. "php": ">=7.3"
  8108. },
  8109. "require-dev": {
  8110. "phpunit/phpunit": "^9.3"
  8111. },
  8112. "type": "library",
  8113. "extra": {
  8114. "branch-alias": {
  8115. "dev-master": "1.0-dev"
  8116. }
  8117. },
  8118. "autoload": {
  8119. "classmap": [
  8120. "src/"
  8121. ]
  8122. },
  8123. "notification-url": "https://packagist.org/downloads/",
  8124. "license": [
  8125. "BSD-3-Clause"
  8126. ],
  8127. "authors": [
  8128. {
  8129. "name": "Sebastian Bergmann",
  8130. "email": "sebastian@phpunit.de",
  8131. "role": "lead"
  8132. }
  8133. ],
  8134. "description": "Library for parsing CLI options",
  8135. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8136. "support": {
  8137. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8138. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  8139. },
  8140. "funding": [
  8141. {
  8142. "url": "https://github.com/sebastianbergmann",
  8143. "type": "github"
  8144. }
  8145. ],
  8146. "time": "2020-09-28T06:08:49+00:00"
  8147. },
  8148. {
  8149. "name": "sebastian/code-unit",
  8150. "version": "1.0.8",
  8151. "source": {
  8152. "type": "git",
  8153. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8154. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  8155. },
  8156. "dist": {
  8157. "type": "zip",
  8158. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8159. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8160. "shasum": ""
  8161. },
  8162. "require": {
  8163. "php": ">=7.3"
  8164. },
  8165. "require-dev": {
  8166. "phpunit/phpunit": "^9.3"
  8167. },
  8168. "type": "library",
  8169. "extra": {
  8170. "branch-alias": {
  8171. "dev-master": "1.0-dev"
  8172. }
  8173. },
  8174. "autoload": {
  8175. "classmap": [
  8176. "src/"
  8177. ]
  8178. },
  8179. "notification-url": "https://packagist.org/downloads/",
  8180. "license": [
  8181. "BSD-3-Clause"
  8182. ],
  8183. "authors": [
  8184. {
  8185. "name": "Sebastian Bergmann",
  8186. "email": "sebastian@phpunit.de",
  8187. "role": "lead"
  8188. }
  8189. ],
  8190. "description": "Collection of value objects that represent the PHP code units",
  8191. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8192. "support": {
  8193. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8194. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  8195. },
  8196. "funding": [
  8197. {
  8198. "url": "https://github.com/sebastianbergmann",
  8199. "type": "github"
  8200. }
  8201. ],
  8202. "time": "2020-10-26T13:08:54+00:00"
  8203. },
  8204. {
  8205. "name": "sebastian/code-unit-reverse-lookup",
  8206. "version": "2.0.3",
  8207. "source": {
  8208. "type": "git",
  8209. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8210. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  8211. },
  8212. "dist": {
  8213. "type": "zip",
  8214. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8215. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8216. "shasum": ""
  8217. },
  8218. "require": {
  8219. "php": ">=7.3"
  8220. },
  8221. "require-dev": {
  8222. "phpunit/phpunit": "^9.3"
  8223. },
  8224. "type": "library",
  8225. "extra": {
  8226. "branch-alias": {
  8227. "dev-master": "2.0-dev"
  8228. }
  8229. },
  8230. "autoload": {
  8231. "classmap": [
  8232. "src/"
  8233. ]
  8234. },
  8235. "notification-url": "https://packagist.org/downloads/",
  8236. "license": [
  8237. "BSD-3-Clause"
  8238. ],
  8239. "authors": [
  8240. {
  8241. "name": "Sebastian Bergmann",
  8242. "email": "sebastian@phpunit.de"
  8243. }
  8244. ],
  8245. "description": "Looks up which function or method a line of code belongs to",
  8246. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8247. "support": {
  8248. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8249. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  8250. },
  8251. "funding": [
  8252. {
  8253. "url": "https://github.com/sebastianbergmann",
  8254. "type": "github"
  8255. }
  8256. ],
  8257. "time": "2020-09-28T05:30:19+00:00"
  8258. },
  8259. {
  8260. "name": "sebastian/comparator",
  8261. "version": "4.0.8",
  8262. "source": {
  8263. "type": "git",
  8264. "url": "https://github.com/sebastianbergmann/comparator.git",
  8265. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  8266. },
  8267. "dist": {
  8268. "type": "zip",
  8269. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  8270. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  8271. "shasum": ""
  8272. },
  8273. "require": {
  8274. "php": ">=7.3",
  8275. "sebastian/diff": "^4.0",
  8276. "sebastian/exporter": "^4.0"
  8277. },
  8278. "require-dev": {
  8279. "phpunit/phpunit": "^9.3"
  8280. },
  8281. "type": "library",
  8282. "extra": {
  8283. "branch-alias": {
  8284. "dev-master": "4.0-dev"
  8285. }
  8286. },
  8287. "autoload": {
  8288. "classmap": [
  8289. "src/"
  8290. ]
  8291. },
  8292. "notification-url": "https://packagist.org/downloads/",
  8293. "license": [
  8294. "BSD-3-Clause"
  8295. ],
  8296. "authors": [
  8297. {
  8298. "name": "Sebastian Bergmann",
  8299. "email": "sebastian@phpunit.de"
  8300. },
  8301. {
  8302. "name": "Jeff Welch",
  8303. "email": "whatthejeff@gmail.com"
  8304. },
  8305. {
  8306. "name": "Volker Dusch",
  8307. "email": "github@wallbash.com"
  8308. },
  8309. {
  8310. "name": "Bernhard Schussek",
  8311. "email": "bschussek@2bepublished.at"
  8312. }
  8313. ],
  8314. "description": "Provides the functionality to compare PHP values for equality",
  8315. "homepage": "https://github.com/sebastianbergmann/comparator",
  8316. "keywords": [
  8317. "comparator",
  8318. "compare",
  8319. "equality"
  8320. ],
  8321. "support": {
  8322. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8323. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  8324. },
  8325. "funding": [
  8326. {
  8327. "url": "https://github.com/sebastianbergmann",
  8328. "type": "github"
  8329. }
  8330. ],
  8331. "time": "2022-09-14T12:41:17+00:00"
  8332. },
  8333. {
  8334. "name": "sebastian/complexity",
  8335. "version": "2.0.2",
  8336. "source": {
  8337. "type": "git",
  8338. "url": "https://github.com/sebastianbergmann/complexity.git",
  8339. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  8340. },
  8341. "dist": {
  8342. "type": "zip",
  8343. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  8344. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  8345. "shasum": ""
  8346. },
  8347. "require": {
  8348. "nikic/php-parser": "^4.7",
  8349. "php": ">=7.3"
  8350. },
  8351. "require-dev": {
  8352. "phpunit/phpunit": "^9.3"
  8353. },
  8354. "type": "library",
  8355. "extra": {
  8356. "branch-alias": {
  8357. "dev-master": "2.0-dev"
  8358. }
  8359. },
  8360. "autoload": {
  8361. "classmap": [
  8362. "src/"
  8363. ]
  8364. },
  8365. "notification-url": "https://packagist.org/downloads/",
  8366. "license": [
  8367. "BSD-3-Clause"
  8368. ],
  8369. "authors": [
  8370. {
  8371. "name": "Sebastian Bergmann",
  8372. "email": "sebastian@phpunit.de",
  8373. "role": "lead"
  8374. }
  8375. ],
  8376. "description": "Library for calculating the complexity of PHP code units",
  8377. "homepage": "https://github.com/sebastianbergmann/complexity",
  8378. "support": {
  8379. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8380. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  8381. },
  8382. "funding": [
  8383. {
  8384. "url": "https://github.com/sebastianbergmann",
  8385. "type": "github"
  8386. }
  8387. ],
  8388. "time": "2020-10-26T15:52:27+00:00"
  8389. },
  8390. {
  8391. "name": "sebastian/diff",
  8392. "version": "4.0.4",
  8393. "source": {
  8394. "type": "git",
  8395. "url": "https://github.com/sebastianbergmann/diff.git",
  8396. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  8397. },
  8398. "dist": {
  8399. "type": "zip",
  8400. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  8401. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  8402. "shasum": ""
  8403. },
  8404. "require": {
  8405. "php": ">=7.3"
  8406. },
  8407. "require-dev": {
  8408. "phpunit/phpunit": "^9.3",
  8409. "symfony/process": "^4.2 || ^5"
  8410. },
  8411. "type": "library",
  8412. "extra": {
  8413. "branch-alias": {
  8414. "dev-master": "4.0-dev"
  8415. }
  8416. },
  8417. "autoload": {
  8418. "classmap": [
  8419. "src/"
  8420. ]
  8421. },
  8422. "notification-url": "https://packagist.org/downloads/",
  8423. "license": [
  8424. "BSD-3-Clause"
  8425. ],
  8426. "authors": [
  8427. {
  8428. "name": "Sebastian Bergmann",
  8429. "email": "sebastian@phpunit.de"
  8430. },
  8431. {
  8432. "name": "Kore Nordmann",
  8433. "email": "mail@kore-nordmann.de"
  8434. }
  8435. ],
  8436. "description": "Diff implementation",
  8437. "homepage": "https://github.com/sebastianbergmann/diff",
  8438. "keywords": [
  8439. "diff",
  8440. "udiff",
  8441. "unidiff",
  8442. "unified diff"
  8443. ],
  8444. "support": {
  8445. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8446. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  8447. },
  8448. "funding": [
  8449. {
  8450. "url": "https://github.com/sebastianbergmann",
  8451. "type": "github"
  8452. }
  8453. ],
  8454. "time": "2020-10-26T13:10:38+00:00"
  8455. },
  8456. {
  8457. "name": "sebastian/environment",
  8458. "version": "5.1.4",
  8459. "source": {
  8460. "type": "git",
  8461. "url": "https://github.com/sebastianbergmann/environment.git",
  8462. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  8463. },
  8464. "dist": {
  8465. "type": "zip",
  8466. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  8467. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  8468. "shasum": ""
  8469. },
  8470. "require": {
  8471. "php": ">=7.3"
  8472. },
  8473. "require-dev": {
  8474. "phpunit/phpunit": "^9.3"
  8475. },
  8476. "suggest": {
  8477. "ext-posix": "*"
  8478. },
  8479. "type": "library",
  8480. "extra": {
  8481. "branch-alias": {
  8482. "dev-master": "5.1-dev"
  8483. }
  8484. },
  8485. "autoload": {
  8486. "classmap": [
  8487. "src/"
  8488. ]
  8489. },
  8490. "notification-url": "https://packagist.org/downloads/",
  8491. "license": [
  8492. "BSD-3-Clause"
  8493. ],
  8494. "authors": [
  8495. {
  8496. "name": "Sebastian Bergmann",
  8497. "email": "sebastian@phpunit.de"
  8498. }
  8499. ],
  8500. "description": "Provides functionality to handle HHVM/PHP environments",
  8501. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8502. "keywords": [
  8503. "Xdebug",
  8504. "environment",
  8505. "hhvm"
  8506. ],
  8507. "support": {
  8508. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8509. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  8510. },
  8511. "funding": [
  8512. {
  8513. "url": "https://github.com/sebastianbergmann",
  8514. "type": "github"
  8515. }
  8516. ],
  8517. "time": "2022-04-03T09:37:03+00:00"
  8518. },
  8519. {
  8520. "name": "sebastian/exporter",
  8521. "version": "4.0.5",
  8522. "source": {
  8523. "type": "git",
  8524. "url": "https://github.com/sebastianbergmann/exporter.git",
  8525. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  8526. },
  8527. "dist": {
  8528. "type": "zip",
  8529. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  8530. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  8531. "shasum": ""
  8532. },
  8533. "require": {
  8534. "php": ">=7.3",
  8535. "sebastian/recursion-context": "^4.0"
  8536. },
  8537. "require-dev": {
  8538. "ext-mbstring": "*",
  8539. "phpunit/phpunit": "^9.3"
  8540. },
  8541. "type": "library",
  8542. "extra": {
  8543. "branch-alias": {
  8544. "dev-master": "4.0-dev"
  8545. }
  8546. },
  8547. "autoload": {
  8548. "classmap": [
  8549. "src/"
  8550. ]
  8551. },
  8552. "notification-url": "https://packagist.org/downloads/",
  8553. "license": [
  8554. "BSD-3-Clause"
  8555. ],
  8556. "authors": [
  8557. {
  8558. "name": "Sebastian Bergmann",
  8559. "email": "sebastian@phpunit.de"
  8560. },
  8561. {
  8562. "name": "Jeff Welch",
  8563. "email": "whatthejeff@gmail.com"
  8564. },
  8565. {
  8566. "name": "Volker Dusch",
  8567. "email": "github@wallbash.com"
  8568. },
  8569. {
  8570. "name": "Adam Harvey",
  8571. "email": "aharvey@php.net"
  8572. },
  8573. {
  8574. "name": "Bernhard Schussek",
  8575. "email": "bschussek@gmail.com"
  8576. }
  8577. ],
  8578. "description": "Provides the functionality to export PHP variables for visualization",
  8579. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8580. "keywords": [
  8581. "export",
  8582. "exporter"
  8583. ],
  8584. "support": {
  8585. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  8586. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  8587. },
  8588. "funding": [
  8589. {
  8590. "url": "https://github.com/sebastianbergmann",
  8591. "type": "github"
  8592. }
  8593. ],
  8594. "time": "2022-09-14T06:03:37+00:00"
  8595. },
  8596. {
  8597. "name": "sebastian/global-state",
  8598. "version": "5.0.5",
  8599. "source": {
  8600. "type": "git",
  8601. "url": "https://github.com/sebastianbergmann/global-state.git",
  8602. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  8603. },
  8604. "dist": {
  8605. "type": "zip",
  8606. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  8607. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  8608. "shasum": ""
  8609. },
  8610. "require": {
  8611. "php": ">=7.3",
  8612. "sebastian/object-reflector": "^2.0",
  8613. "sebastian/recursion-context": "^4.0"
  8614. },
  8615. "require-dev": {
  8616. "ext-dom": "*",
  8617. "phpunit/phpunit": "^9.3"
  8618. },
  8619. "suggest": {
  8620. "ext-uopz": "*"
  8621. },
  8622. "type": "library",
  8623. "extra": {
  8624. "branch-alias": {
  8625. "dev-master": "5.0-dev"
  8626. }
  8627. },
  8628. "autoload": {
  8629. "classmap": [
  8630. "src/"
  8631. ]
  8632. },
  8633. "notification-url": "https://packagist.org/downloads/",
  8634. "license": [
  8635. "BSD-3-Clause"
  8636. ],
  8637. "authors": [
  8638. {
  8639. "name": "Sebastian Bergmann",
  8640. "email": "sebastian@phpunit.de"
  8641. }
  8642. ],
  8643. "description": "Snapshotting of global state",
  8644. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8645. "keywords": [
  8646. "global state"
  8647. ],
  8648. "support": {
  8649. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  8650. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  8651. },
  8652. "funding": [
  8653. {
  8654. "url": "https://github.com/sebastianbergmann",
  8655. "type": "github"
  8656. }
  8657. ],
  8658. "time": "2022-02-14T08:28:10+00:00"
  8659. },
  8660. {
  8661. "name": "sebastian/lines-of-code",
  8662. "version": "1.0.3",
  8663. "source": {
  8664. "type": "git",
  8665. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  8666. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  8667. },
  8668. "dist": {
  8669. "type": "zip",
  8670. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  8671. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  8672. "shasum": ""
  8673. },
  8674. "require": {
  8675. "nikic/php-parser": "^4.6",
  8676. "php": ">=7.3"
  8677. },
  8678. "require-dev": {
  8679. "phpunit/phpunit": "^9.3"
  8680. },
  8681. "type": "library",
  8682. "extra": {
  8683. "branch-alias": {
  8684. "dev-master": "1.0-dev"
  8685. }
  8686. },
  8687. "autoload": {
  8688. "classmap": [
  8689. "src/"
  8690. ]
  8691. },
  8692. "notification-url": "https://packagist.org/downloads/",
  8693. "license": [
  8694. "BSD-3-Clause"
  8695. ],
  8696. "authors": [
  8697. {
  8698. "name": "Sebastian Bergmann",
  8699. "email": "sebastian@phpunit.de",
  8700. "role": "lead"
  8701. }
  8702. ],
  8703. "description": "Library for counting the lines of code in PHP source code",
  8704. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  8705. "support": {
  8706. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  8707. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  8708. },
  8709. "funding": [
  8710. {
  8711. "url": "https://github.com/sebastianbergmann",
  8712. "type": "github"
  8713. }
  8714. ],
  8715. "time": "2020-11-28T06:42:11+00:00"
  8716. },
  8717. {
  8718. "name": "sebastian/object-enumerator",
  8719. "version": "4.0.4",
  8720. "source": {
  8721. "type": "git",
  8722. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8723. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  8724. },
  8725. "dist": {
  8726. "type": "zip",
  8727. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  8728. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  8729. "shasum": ""
  8730. },
  8731. "require": {
  8732. "php": ">=7.3",
  8733. "sebastian/object-reflector": "^2.0",
  8734. "sebastian/recursion-context": "^4.0"
  8735. },
  8736. "require-dev": {
  8737. "phpunit/phpunit": "^9.3"
  8738. },
  8739. "type": "library",
  8740. "extra": {
  8741. "branch-alias": {
  8742. "dev-master": "4.0-dev"
  8743. }
  8744. },
  8745. "autoload": {
  8746. "classmap": [
  8747. "src/"
  8748. ]
  8749. },
  8750. "notification-url": "https://packagist.org/downloads/",
  8751. "license": [
  8752. "BSD-3-Clause"
  8753. ],
  8754. "authors": [
  8755. {
  8756. "name": "Sebastian Bergmann",
  8757. "email": "sebastian@phpunit.de"
  8758. }
  8759. ],
  8760. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8761. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8762. "support": {
  8763. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  8764. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  8765. },
  8766. "funding": [
  8767. {
  8768. "url": "https://github.com/sebastianbergmann",
  8769. "type": "github"
  8770. }
  8771. ],
  8772. "time": "2020-10-26T13:12:34+00:00"
  8773. },
  8774. {
  8775. "name": "sebastian/object-reflector",
  8776. "version": "2.0.4",
  8777. "source": {
  8778. "type": "git",
  8779. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8780. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  8781. },
  8782. "dist": {
  8783. "type": "zip",
  8784. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  8785. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  8786. "shasum": ""
  8787. },
  8788. "require": {
  8789. "php": ">=7.3"
  8790. },
  8791. "require-dev": {
  8792. "phpunit/phpunit": "^9.3"
  8793. },
  8794. "type": "library",
  8795. "extra": {
  8796. "branch-alias": {
  8797. "dev-master": "2.0-dev"
  8798. }
  8799. },
  8800. "autoload": {
  8801. "classmap": [
  8802. "src/"
  8803. ]
  8804. },
  8805. "notification-url": "https://packagist.org/downloads/",
  8806. "license": [
  8807. "BSD-3-Clause"
  8808. ],
  8809. "authors": [
  8810. {
  8811. "name": "Sebastian Bergmann",
  8812. "email": "sebastian@phpunit.de"
  8813. }
  8814. ],
  8815. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8816. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8817. "support": {
  8818. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  8819. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  8820. },
  8821. "funding": [
  8822. {
  8823. "url": "https://github.com/sebastianbergmann",
  8824. "type": "github"
  8825. }
  8826. ],
  8827. "time": "2020-10-26T13:14:26+00:00"
  8828. },
  8829. {
  8830. "name": "sebastian/recursion-context",
  8831. "version": "4.0.4",
  8832. "source": {
  8833. "type": "git",
  8834. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8835. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  8836. },
  8837. "dist": {
  8838. "type": "zip",
  8839. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  8840. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  8841. "shasum": ""
  8842. },
  8843. "require": {
  8844. "php": ">=7.3"
  8845. },
  8846. "require-dev": {
  8847. "phpunit/phpunit": "^9.3"
  8848. },
  8849. "type": "library",
  8850. "extra": {
  8851. "branch-alias": {
  8852. "dev-master": "4.0-dev"
  8853. }
  8854. },
  8855. "autoload": {
  8856. "classmap": [
  8857. "src/"
  8858. ]
  8859. },
  8860. "notification-url": "https://packagist.org/downloads/",
  8861. "license": [
  8862. "BSD-3-Clause"
  8863. ],
  8864. "authors": [
  8865. {
  8866. "name": "Sebastian Bergmann",
  8867. "email": "sebastian@phpunit.de"
  8868. },
  8869. {
  8870. "name": "Jeff Welch",
  8871. "email": "whatthejeff@gmail.com"
  8872. },
  8873. {
  8874. "name": "Adam Harvey",
  8875. "email": "aharvey@php.net"
  8876. }
  8877. ],
  8878. "description": "Provides functionality to recursively process PHP variables",
  8879. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8880. "support": {
  8881. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  8882. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  8883. },
  8884. "funding": [
  8885. {
  8886. "url": "https://github.com/sebastianbergmann",
  8887. "type": "github"
  8888. }
  8889. ],
  8890. "time": "2020-10-26T13:17:30+00:00"
  8891. },
  8892. {
  8893. "name": "sebastian/resource-operations",
  8894. "version": "3.0.3",
  8895. "source": {
  8896. "type": "git",
  8897. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8898. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  8899. },
  8900. "dist": {
  8901. "type": "zip",
  8902. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  8903. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  8904. "shasum": ""
  8905. },
  8906. "require": {
  8907. "php": ">=7.3"
  8908. },
  8909. "require-dev": {
  8910. "phpunit/phpunit": "^9.0"
  8911. },
  8912. "type": "library",
  8913. "extra": {
  8914. "branch-alias": {
  8915. "dev-master": "3.0-dev"
  8916. }
  8917. },
  8918. "autoload": {
  8919. "classmap": [
  8920. "src/"
  8921. ]
  8922. },
  8923. "notification-url": "https://packagist.org/downloads/",
  8924. "license": [
  8925. "BSD-3-Clause"
  8926. ],
  8927. "authors": [
  8928. {
  8929. "name": "Sebastian Bergmann",
  8930. "email": "sebastian@phpunit.de"
  8931. }
  8932. ],
  8933. "description": "Provides a list of PHP built-in functions that operate on resources",
  8934. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  8935. "support": {
  8936. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  8937. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  8938. },
  8939. "funding": [
  8940. {
  8941. "url": "https://github.com/sebastianbergmann",
  8942. "type": "github"
  8943. }
  8944. ],
  8945. "time": "2020-09-28T06:45:17+00:00"
  8946. },
  8947. {
  8948. "name": "sebastian/type",
  8949. "version": "3.2.0",
  8950. "source": {
  8951. "type": "git",
  8952. "url": "https://github.com/sebastianbergmann/type.git",
  8953. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e"
  8954. },
  8955. "dist": {
  8956. "type": "zip",
  8957. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  8958. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  8959. "shasum": ""
  8960. },
  8961. "require": {
  8962. "php": ">=7.3"
  8963. },
  8964. "require-dev": {
  8965. "phpunit/phpunit": "^9.5"
  8966. },
  8967. "type": "library",
  8968. "extra": {
  8969. "branch-alias": {
  8970. "dev-master": "3.2-dev"
  8971. }
  8972. },
  8973. "autoload": {
  8974. "classmap": [
  8975. "src/"
  8976. ]
  8977. },
  8978. "notification-url": "https://packagist.org/downloads/",
  8979. "license": [
  8980. "BSD-3-Clause"
  8981. ],
  8982. "authors": [
  8983. {
  8984. "name": "Sebastian Bergmann",
  8985. "email": "sebastian@phpunit.de",
  8986. "role": "lead"
  8987. }
  8988. ],
  8989. "description": "Collection of value objects that represent the types of the PHP type system",
  8990. "homepage": "https://github.com/sebastianbergmann/type",
  8991. "support": {
  8992. "issues": "https://github.com/sebastianbergmann/type/issues",
  8993. "source": "https://github.com/sebastianbergmann/type/tree/3.2.0"
  8994. },
  8995. "funding": [
  8996. {
  8997. "url": "https://github.com/sebastianbergmann",
  8998. "type": "github"
  8999. }
  9000. ],
  9001. "time": "2022-09-12T14:47:03+00:00"
  9002. },
  9003. {
  9004. "name": "sebastian/version",
  9005. "version": "3.0.2",
  9006. "source": {
  9007. "type": "git",
  9008. "url": "https://github.com/sebastianbergmann/version.git",
  9009. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9010. },
  9011. "dist": {
  9012. "type": "zip",
  9013. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9014. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9015. "shasum": ""
  9016. },
  9017. "require": {
  9018. "php": ">=7.3"
  9019. },
  9020. "type": "library",
  9021. "extra": {
  9022. "branch-alias": {
  9023. "dev-master": "3.0-dev"
  9024. }
  9025. },
  9026. "autoload": {
  9027. "classmap": [
  9028. "src/"
  9029. ]
  9030. },
  9031. "notification-url": "https://packagist.org/downloads/",
  9032. "license": [
  9033. "BSD-3-Clause"
  9034. ],
  9035. "authors": [
  9036. {
  9037. "name": "Sebastian Bergmann",
  9038. "email": "sebastian@phpunit.de",
  9039. "role": "lead"
  9040. }
  9041. ],
  9042. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9043. "homepage": "https://github.com/sebastianbergmann/version",
  9044. "support": {
  9045. "issues": "https://github.com/sebastianbergmann/version/issues",
  9046. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9047. },
  9048. "funding": [
  9049. {
  9050. "url": "https://github.com/sebastianbergmann",
  9051. "type": "github"
  9052. }
  9053. ],
  9054. "time": "2020-09-28T06:39:44+00:00"
  9055. },
  9056. {
  9057. "name": "symfony/browser-kit",
  9058. "version": "v5.4.11",
  9059. "source": {
  9060. "type": "git",
  9061. "url": "https://github.com/symfony/browser-kit.git",
  9062. "reference": "081fe28a26b6bd671dea85ef3a4b5003f3c88027"
  9063. },
  9064. "dist": {
  9065. "type": "zip",
  9066. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/081fe28a26b6bd671dea85ef3a4b5003f3c88027",
  9067. "reference": "081fe28a26b6bd671dea85ef3a4b5003f3c88027",
  9068. "shasum": ""
  9069. },
  9070. "require": {
  9071. "php": ">=7.2.5",
  9072. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  9073. "symfony/polyfill-php80": "^1.16"
  9074. },
  9075. "require-dev": {
  9076. "symfony/css-selector": "^4.4|^5.0|^6.0",
  9077. "symfony/http-client": "^4.4|^5.0|^6.0",
  9078. "symfony/mime": "^4.4|^5.0|^6.0",
  9079. "symfony/process": "^4.4|^5.0|^6.0"
  9080. },
  9081. "suggest": {
  9082. "symfony/process": ""
  9083. },
  9084. "type": "library",
  9085. "autoload": {
  9086. "psr-4": {
  9087. "Symfony\\Component\\BrowserKit\\": ""
  9088. },
  9089. "exclude-from-classmap": [
  9090. "/Tests/"
  9091. ]
  9092. },
  9093. "notification-url": "https://packagist.org/downloads/",
  9094. "license": [
  9095. "MIT"
  9096. ],
  9097. "authors": [
  9098. {
  9099. "name": "Fabien Potencier",
  9100. "email": "fabien@symfony.com"
  9101. },
  9102. {
  9103. "name": "Symfony Community",
  9104. "homepage": "https://symfony.com/contributors"
  9105. }
  9106. ],
  9107. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9108. "homepage": "https://symfony.com",
  9109. "support": {
  9110. "source": "https://github.com/symfony/browser-kit/tree/v5.4.11"
  9111. },
  9112. "funding": [
  9113. {
  9114. "url": "https://symfony.com/sponsor",
  9115. "type": "custom"
  9116. },
  9117. {
  9118. "url": "https://github.com/fabpot",
  9119. "type": "github"
  9120. },
  9121. {
  9122. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9123. "type": "tidelift"
  9124. }
  9125. ],
  9126. "time": "2022-07-27T15:50:05+00:00"
  9127. },
  9128. {
  9129. "name": "symfony/css-selector",
  9130. "version": "v5.4.11",
  9131. "source": {
  9132. "type": "git",
  9133. "url": "https://github.com/symfony/css-selector.git",
  9134. "reference": "c1681789f059ab756001052164726ae88512ae3d"
  9135. },
  9136. "dist": {
  9137. "type": "zip",
  9138. "url": "https://api.github.com/repos/symfony/css-selector/zipball/c1681789f059ab756001052164726ae88512ae3d",
  9139. "reference": "c1681789f059ab756001052164726ae88512ae3d",
  9140. "shasum": ""
  9141. },
  9142. "require": {
  9143. "php": ">=7.2.5",
  9144. "symfony/polyfill-php80": "^1.16"
  9145. },
  9146. "type": "library",
  9147. "autoload": {
  9148. "psr-4": {
  9149. "Symfony\\Component\\CssSelector\\": ""
  9150. },
  9151. "exclude-from-classmap": [
  9152. "/Tests/"
  9153. ]
  9154. },
  9155. "notification-url": "https://packagist.org/downloads/",
  9156. "license": [
  9157. "MIT"
  9158. ],
  9159. "authors": [
  9160. {
  9161. "name": "Fabien Potencier",
  9162. "email": "fabien@symfony.com"
  9163. },
  9164. {
  9165. "name": "Jean-François Simon",
  9166. "email": "jeanfrancois.simon@sensiolabs.com"
  9167. },
  9168. {
  9169. "name": "Symfony Community",
  9170. "homepage": "https://symfony.com/contributors"
  9171. }
  9172. ],
  9173. "description": "Converts CSS selectors to XPath expressions",
  9174. "homepage": "https://symfony.com",
  9175. "support": {
  9176. "source": "https://github.com/symfony/css-selector/tree/v5.4.11"
  9177. },
  9178. "funding": [
  9179. {
  9180. "url": "https://symfony.com/sponsor",
  9181. "type": "custom"
  9182. },
  9183. {
  9184. "url": "https://github.com/fabpot",
  9185. "type": "github"
  9186. },
  9187. {
  9188. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9189. "type": "tidelift"
  9190. }
  9191. ],
  9192. "time": "2022-06-27T16:58:25+00:00"
  9193. },
  9194. {
  9195. "name": "symfony/debug-bundle",
  9196. "version": "v5.4.11",
  9197. "source": {
  9198. "type": "git",
  9199. "url": "https://github.com/symfony/debug-bundle.git",
  9200. "reference": "ec73a8bb7b966ccbe9e76be3c7dc413d8ae84f47"
  9201. },
  9202. "dist": {
  9203. "type": "zip",
  9204. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/ec73a8bb7b966ccbe9e76be3c7dc413d8ae84f47",
  9205. "reference": "ec73a8bb7b966ccbe9e76be3c7dc413d8ae84f47",
  9206. "shasum": ""
  9207. },
  9208. "require": {
  9209. "ext-xml": "*",
  9210. "php": ">=7.2.5",
  9211. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  9212. "symfony/polyfill-php80": "^1.16",
  9213. "symfony/twig-bridge": "^4.4|^5.0|^6.0",
  9214. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  9215. },
  9216. "conflict": {
  9217. "symfony/config": "<4.4",
  9218. "symfony/dependency-injection": "<5.2"
  9219. },
  9220. "require-dev": {
  9221. "symfony/config": "^4.4|^5.0|^6.0",
  9222. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  9223. "symfony/web-profiler-bundle": "^4.4|^5.0|^6.0"
  9224. },
  9225. "suggest": {
  9226. "symfony/config": "For service container configuration",
  9227. "symfony/dependency-injection": "For using as a service from the container"
  9228. },
  9229. "type": "symfony-bundle",
  9230. "autoload": {
  9231. "psr-4": {
  9232. "Symfony\\Bundle\\DebugBundle\\": ""
  9233. },
  9234. "exclude-from-classmap": [
  9235. "/Tests/"
  9236. ]
  9237. },
  9238. "notification-url": "https://packagist.org/downloads/",
  9239. "license": [
  9240. "MIT"
  9241. ],
  9242. "authors": [
  9243. {
  9244. "name": "Fabien Potencier",
  9245. "email": "fabien@symfony.com"
  9246. },
  9247. {
  9248. "name": "Symfony Community",
  9249. "homepage": "https://symfony.com/contributors"
  9250. }
  9251. ],
  9252. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  9253. "homepage": "https://symfony.com",
  9254. "support": {
  9255. "source": "https://github.com/symfony/debug-bundle/tree/v5.4.11"
  9256. },
  9257. "funding": [
  9258. {
  9259. "url": "https://symfony.com/sponsor",
  9260. "type": "custom"
  9261. },
  9262. {
  9263. "url": "https://github.com/fabpot",
  9264. "type": "github"
  9265. },
  9266. {
  9267. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9268. "type": "tidelift"
  9269. }
  9270. ],
  9271. "time": "2022-07-20T13:00:38+00:00"
  9272. },
  9273. {
  9274. "name": "symfony/dom-crawler",
  9275. "version": "v5.4.12",
  9276. "source": {
  9277. "type": "git",
  9278. "url": "https://github.com/symfony/dom-crawler.git",
  9279. "reference": "291c1e92281a09152dda089f782e23dedd34bd4f"
  9280. },
  9281. "dist": {
  9282. "type": "zip",
  9283. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/291c1e92281a09152dda089f782e23dedd34bd4f",
  9284. "reference": "291c1e92281a09152dda089f782e23dedd34bd4f",
  9285. "shasum": ""
  9286. },
  9287. "require": {
  9288. "php": ">=7.2.5",
  9289. "symfony/deprecation-contracts": "^2.1|^3",
  9290. "symfony/polyfill-ctype": "~1.8",
  9291. "symfony/polyfill-mbstring": "~1.0",
  9292. "symfony/polyfill-php80": "^1.16"
  9293. },
  9294. "conflict": {
  9295. "masterminds/html5": "<2.6"
  9296. },
  9297. "require-dev": {
  9298. "masterminds/html5": "^2.6",
  9299. "symfony/css-selector": "^4.4|^5.0|^6.0"
  9300. },
  9301. "suggest": {
  9302. "symfony/css-selector": ""
  9303. },
  9304. "type": "library",
  9305. "autoload": {
  9306. "psr-4": {
  9307. "Symfony\\Component\\DomCrawler\\": ""
  9308. },
  9309. "exclude-from-classmap": [
  9310. "/Tests/"
  9311. ]
  9312. },
  9313. "notification-url": "https://packagist.org/downloads/",
  9314. "license": [
  9315. "MIT"
  9316. ],
  9317. "authors": [
  9318. {
  9319. "name": "Fabien Potencier",
  9320. "email": "fabien@symfony.com"
  9321. },
  9322. {
  9323. "name": "Symfony Community",
  9324. "homepage": "https://symfony.com/contributors"
  9325. }
  9326. ],
  9327. "description": "Eases DOM navigation for HTML and XML documents",
  9328. "homepage": "https://symfony.com",
  9329. "support": {
  9330. "source": "https://github.com/symfony/dom-crawler/tree/v5.4.12"
  9331. },
  9332. "funding": [
  9333. {
  9334. "url": "https://symfony.com/sponsor",
  9335. "type": "custom"
  9336. },
  9337. {
  9338. "url": "https://github.com/fabpot",
  9339. "type": "github"
  9340. },
  9341. {
  9342. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9343. "type": "tidelift"
  9344. }
  9345. ],
  9346. "time": "2022-08-03T13:09:21+00:00"
  9347. },
  9348. {
  9349. "name": "symfony/maker-bundle",
  9350. "version": "v1.47.0",
  9351. "source": {
  9352. "type": "git",
  9353. "url": "https://github.com/symfony/maker-bundle.git",
  9354. "reference": "e607f129d29a6c1e9a9e1ef3d229d653311d58f3"
  9355. },
  9356. "dist": {
  9357. "type": "zip",
  9358. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/e607f129d29a6c1e9a9e1ef3d229d653311d58f3",
  9359. "reference": "e607f129d29a6c1e9a9e1ef3d229d653311d58f3",
  9360. "shasum": ""
  9361. },
  9362. "require": {
  9363. "doctrine/inflector": "^2.0",
  9364. "nikic/php-parser": "^4.11",
  9365. "php": ">=8.0",
  9366. "symfony/config": "^5.4.7|^6.0",
  9367. "symfony/console": "^5.4.7|^6.0",
  9368. "symfony/dependency-injection": "^5.4.7|^6.0",
  9369. "symfony/deprecation-contracts": "^2.2|^3",
  9370. "symfony/filesystem": "^5.4.7|^6.0",
  9371. "symfony/finder": "^5.4.3|^6.0",
  9372. "symfony/framework-bundle": "^5.4.7|^6.0",
  9373. "symfony/http-kernel": "^5.4.7|^6.0"
  9374. },
  9375. "conflict": {
  9376. "doctrine/doctrine-bundle": "<2.4",
  9377. "doctrine/orm": "<2.10",
  9378. "symfony/doctrine-bridge": "<5.4"
  9379. },
  9380. "require-dev": {
  9381. "composer/semver": "^3.0",
  9382. "doctrine/doctrine-bundle": "^2.4",
  9383. "doctrine/orm": "^2.10.0",
  9384. "symfony/http-client": "^5.4.7|^6.0",
  9385. "symfony/phpunit-bridge": "^5.4.7|^6.0",
  9386. "symfony/polyfill-php80": "^1.16.0",
  9387. "symfony/process": "^5.4.7|^6.0",
  9388. "symfony/security-core": "^5.4.7|^6.0",
  9389. "symfony/yaml": "^5.4.3|^6.0",
  9390. "twig/twig": "^2.0|^3.0"
  9391. },
  9392. "type": "symfony-bundle",
  9393. "extra": {
  9394. "branch-alias": {
  9395. "dev-main": "1.0-dev"
  9396. }
  9397. },
  9398. "autoload": {
  9399. "psr-4": {
  9400. "Symfony\\Bundle\\MakerBundle\\": "src/"
  9401. }
  9402. },
  9403. "notification-url": "https://packagist.org/downloads/",
  9404. "license": [
  9405. "MIT"
  9406. ],
  9407. "authors": [
  9408. {
  9409. "name": "Symfony Community",
  9410. "homepage": "https://symfony.com/contributors"
  9411. }
  9412. ],
  9413. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  9414. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  9415. "keywords": [
  9416. "code generator",
  9417. "generator",
  9418. "scaffold",
  9419. "scaffolding"
  9420. ],
  9421. "support": {
  9422. "issues": "https://github.com/symfony/maker-bundle/issues",
  9423. "source": "https://github.com/symfony/maker-bundle/tree/v1.47.0"
  9424. },
  9425. "funding": [
  9426. {
  9427. "url": "https://symfony.com/sponsor",
  9428. "type": "custom"
  9429. },
  9430. {
  9431. "url": "https://github.com/fabpot",
  9432. "type": "github"
  9433. },
  9434. {
  9435. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9436. "type": "tidelift"
  9437. }
  9438. ],
  9439. "time": "2022-10-04T15:05:10+00:00"
  9440. },
  9441. {
  9442. "name": "symfony/phpunit-bridge",
  9443. "version": "v5.4.11",
  9444. "source": {
  9445. "type": "git",
  9446. "url": "https://github.com/symfony/phpunit-bridge.git",
  9447. "reference": "31b1549f54b1a1890e725a0c1c8c2de6ef2205b3"
  9448. },
  9449. "dist": {
  9450. "type": "zip",
  9451. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/31b1549f54b1a1890e725a0c1c8c2de6ef2205b3",
  9452. "reference": "31b1549f54b1a1890e725a0c1c8c2de6ef2205b3",
  9453. "shasum": ""
  9454. },
  9455. "require": {
  9456. "php": ">=7.1.3",
  9457. "symfony/deprecation-contracts": "^2.1|^3"
  9458. },
  9459. "conflict": {
  9460. "phpunit/phpunit": "<7.5|9.1.2"
  9461. },
  9462. "require-dev": {
  9463. "symfony/error-handler": "^4.4|^5.0|^6.0"
  9464. },
  9465. "suggest": {
  9466. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  9467. },
  9468. "bin": [
  9469. "bin/simple-phpunit"
  9470. ],
  9471. "type": "symfony-bridge",
  9472. "extra": {
  9473. "thanks": {
  9474. "name": "phpunit/phpunit",
  9475. "url": "https://github.com/sebastianbergmann/phpunit"
  9476. }
  9477. },
  9478. "autoload": {
  9479. "files": [
  9480. "bootstrap.php"
  9481. ],
  9482. "psr-4": {
  9483. "Symfony\\Bridge\\PhpUnit\\": ""
  9484. },
  9485. "exclude-from-classmap": [
  9486. "/Tests/"
  9487. ]
  9488. },
  9489. "notification-url": "https://packagist.org/downloads/",
  9490. "license": [
  9491. "MIT"
  9492. ],
  9493. "authors": [
  9494. {
  9495. "name": "Nicolas Grekas",
  9496. "email": "p@tchwork.com"
  9497. },
  9498. {
  9499. "name": "Symfony Community",
  9500. "homepage": "https://symfony.com/contributors"
  9501. }
  9502. ],
  9503. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  9504. "homepage": "https://symfony.com",
  9505. "support": {
  9506. "source": "https://github.com/symfony/phpunit-bridge/tree/v5.4.11"
  9507. },
  9508. "funding": [
  9509. {
  9510. "url": "https://symfony.com/sponsor",
  9511. "type": "custom"
  9512. },
  9513. {
  9514. "url": "https://github.com/fabpot",
  9515. "type": "github"
  9516. },
  9517. {
  9518. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9519. "type": "tidelift"
  9520. }
  9521. ],
  9522. "time": "2022-07-28T13:33:28+00:00"
  9523. },
  9524. {
  9525. "name": "symfony/web-profiler-bundle",
  9526. "version": "v5.4.13",
  9527. "source": {
  9528. "type": "git",
  9529. "url": "https://github.com/symfony/web-profiler-bundle.git",
  9530. "reference": "6fefe0a7761a35b33c616e199c19f0c0d069e282"
  9531. },
  9532. "dist": {
  9533. "type": "zip",
  9534. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/6fefe0a7761a35b33c616e199c19f0c0d069e282",
  9535. "reference": "6fefe0a7761a35b33c616e199c19f0c0d069e282",
  9536. "shasum": ""
  9537. },
  9538. "require": {
  9539. "php": ">=7.2.5",
  9540. "symfony/config": "^4.4|^5.0|^6.0",
  9541. "symfony/framework-bundle": "^5.3|^6.0",
  9542. "symfony/http-kernel": "^5.3|^6.0",
  9543. "symfony/polyfill-php80": "^1.16",
  9544. "symfony/routing": "^4.4|^5.0|^6.0",
  9545. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  9546. "twig/twig": "^2.13|^3.0.4"
  9547. },
  9548. "conflict": {
  9549. "symfony/dependency-injection": "<5.2",
  9550. "symfony/form": "<4.4",
  9551. "symfony/mailer": "<5.4",
  9552. "symfony/messenger": "<4.4"
  9553. },
  9554. "require-dev": {
  9555. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  9556. "symfony/console": "^4.4|^5.0|^6.0",
  9557. "symfony/css-selector": "^4.4|^5.0|^6.0",
  9558. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  9559. },
  9560. "type": "symfony-bundle",
  9561. "autoload": {
  9562. "psr-4": {
  9563. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  9564. },
  9565. "exclude-from-classmap": [
  9566. "/Tests/"
  9567. ]
  9568. },
  9569. "notification-url": "https://packagist.org/downloads/",
  9570. "license": [
  9571. "MIT"
  9572. ],
  9573. "authors": [
  9574. {
  9575. "name": "Fabien Potencier",
  9576. "email": "fabien@symfony.com"
  9577. },
  9578. {
  9579. "name": "Symfony Community",
  9580. "homepage": "https://symfony.com/contributors"
  9581. }
  9582. ],
  9583. "description": "Provides a development tool that gives detailed information about the execution of any request",
  9584. "homepage": "https://symfony.com",
  9585. "support": {
  9586. "source": "https://github.com/symfony/web-profiler-bundle/tree/v5.4.13"
  9587. },
  9588. "funding": [
  9589. {
  9590. "url": "https://symfony.com/sponsor",
  9591. "type": "custom"
  9592. },
  9593. {
  9594. "url": "https://github.com/fabpot",
  9595. "type": "github"
  9596. },
  9597. {
  9598. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9599. "type": "tidelift"
  9600. }
  9601. ],
  9602. "time": "2022-08-28T23:24:00+00:00"
  9603. },
  9604. {
  9605. "name": "theseer/tokenizer",
  9606. "version": "1.2.1",
  9607. "source": {
  9608. "type": "git",
  9609. "url": "https://github.com/theseer/tokenizer.git",
  9610. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  9611. },
  9612. "dist": {
  9613. "type": "zip",
  9614. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  9615. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  9616. "shasum": ""
  9617. },
  9618. "require": {
  9619. "ext-dom": "*",
  9620. "ext-tokenizer": "*",
  9621. "ext-xmlwriter": "*",
  9622. "php": "^7.2 || ^8.0"
  9623. },
  9624. "type": "library",
  9625. "autoload": {
  9626. "classmap": [
  9627. "src/"
  9628. ]
  9629. },
  9630. "notification-url": "https://packagist.org/downloads/",
  9631. "license": [
  9632. "BSD-3-Clause"
  9633. ],
  9634. "authors": [
  9635. {
  9636. "name": "Arne Blankerts",
  9637. "email": "arne@blankerts.de",
  9638. "role": "Developer"
  9639. }
  9640. ],
  9641. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9642. "support": {
  9643. "issues": "https://github.com/theseer/tokenizer/issues",
  9644. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  9645. },
  9646. "funding": [
  9647. {
  9648. "url": "https://github.com/theseer",
  9649. "type": "github"
  9650. }
  9651. ],
  9652. "time": "2021-07-28T10:34:58+00:00"
  9653. }
  9654. ],
  9655. "aliases": [],
  9656. "minimum-stability": "stable",
  9657. "stability-flags": [],
  9658. "prefer-stable": false,
  9659. "prefer-lowest": false,
  9660. "platform": {
  9661. "php": "^8.1",
  9662. "ext-ctype": "*",
  9663. "ext-iconv": "*"
  9664. },
  9665. "platform-dev": [],
  9666. "platform-overrides": {
  9667. "php": "8.1"
  9668. },
  9669. "plugin-api-version": "2.3.0"
  9670. }