composer.lock 357 KB

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