composer.lock 357 KB

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