composer.lock 360 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862
  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": "5831ae83a0b64e15a49eaea1d0198389",
  8. "packages": [
  9. {
  10. "name": "composer/package-versions-deprecated",
  11. "version": "1.11.99.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/package-versions-deprecated.git",
  15. "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/c6522afe5540d5fc46675043d3ed5a45a740b27c",
  20. "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "composer-plugin-api": "^1.1.0 || ^2.0",
  25. "php": "^7 || ^8"
  26. },
  27. "replace": {
  28. "ocramius/package-versions": "1.11.99"
  29. },
  30. "require-dev": {
  31. "composer/composer": "^1.9.3 || ^2.0@dev",
  32. "ext-zip": "^1.13",
  33. "phpunit/phpunit": "^6.5 || ^7"
  34. },
  35. "type": "composer-plugin",
  36. "extra": {
  37. "class": "PackageVersions\\Installer",
  38. "branch-alias": {
  39. "dev-master": "1.x-dev"
  40. }
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "PackageVersions\\": "src/PackageVersions"
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Marco Pivetta",
  54. "email": "ocramius@gmail.com"
  55. },
  56. {
  57. "name": "Jordi Boggiano",
  58. "email": "j.boggiano@seld.be"
  59. }
  60. ],
  61. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  62. "support": {
  63. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  64. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.2"
  65. },
  66. "funding": [
  67. {
  68. "url": "https://packagist.com",
  69. "type": "custom"
  70. },
  71. {
  72. "url": "https://github.com/composer",
  73. "type": "github"
  74. },
  75. {
  76. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  77. "type": "tidelift"
  78. }
  79. ],
  80. "time": "2021-05-24T07:46:03+00:00"
  81. },
  82. {
  83. "name": "doctrine/annotations",
  84. "version": "1.13.3",
  85. "source": {
  86. "type": "git",
  87. "url": "https://github.com/doctrine/annotations.git",
  88. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  89. },
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  93. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  94. "shasum": ""
  95. },
  96. "require": {
  97. "doctrine/lexer": "1.*",
  98. "ext-tokenizer": "*",
  99. "php": "^7.1 || ^8.0",
  100. "psr/cache": "^1 || ^2 || ^3"
  101. },
  102. "require-dev": {
  103. "doctrine/cache": "^1.11 || ^2.0",
  104. "doctrine/coding-standard": "^6.0 || ^8.1",
  105. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  106. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  107. "symfony/cache": "^4.4 || ^5.2",
  108. "vimeo/psalm": "^4.10"
  109. },
  110. "type": "library",
  111. "autoload": {
  112. "psr-4": {
  113. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  114. }
  115. },
  116. "notification-url": "https://packagist.org/downloads/",
  117. "license": [
  118. "MIT"
  119. ],
  120. "authors": [
  121. {
  122. "name": "Guilherme Blanco",
  123. "email": "guilhermeblanco@gmail.com"
  124. },
  125. {
  126. "name": "Roman Borschel",
  127. "email": "roman@code-factory.org"
  128. },
  129. {
  130. "name": "Benjamin Eberlei",
  131. "email": "kontakt@beberlei.de"
  132. },
  133. {
  134. "name": "Jonathan Wage",
  135. "email": "jonwage@gmail.com"
  136. },
  137. {
  138. "name": "Johannes Schmitt",
  139. "email": "schmittjoh@gmail.com"
  140. }
  141. ],
  142. "description": "Docblock Annotations Parser",
  143. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  144. "keywords": [
  145. "annotations",
  146. "docblock",
  147. "parser"
  148. ],
  149. "support": {
  150. "issues": "https://github.com/doctrine/annotations/issues",
  151. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  152. },
  153. "time": "2022-07-02T10:48:51+00:00"
  154. },
  155. {
  156. "name": "doctrine/cache",
  157. "version": "2.2.0",
  158. "source": {
  159. "type": "git",
  160. "url": "https://github.com/doctrine/cache.git",
  161. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  162. },
  163. "dist": {
  164. "type": "zip",
  165. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  166. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  167. "shasum": ""
  168. },
  169. "require": {
  170. "php": "~7.1 || ^8.0"
  171. },
  172. "conflict": {
  173. "doctrine/common": ">2.2,<2.4"
  174. },
  175. "require-dev": {
  176. "cache/integration-tests": "dev-master",
  177. "doctrine/coding-standard": "^9",
  178. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  179. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  180. "symfony/cache": "^4.4 || ^5.4 || ^6",
  181. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  182. },
  183. "type": "library",
  184. "autoload": {
  185. "psr-4": {
  186. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  187. }
  188. },
  189. "notification-url": "https://packagist.org/downloads/",
  190. "license": [
  191. "MIT"
  192. ],
  193. "authors": [
  194. {
  195. "name": "Guilherme Blanco",
  196. "email": "guilhermeblanco@gmail.com"
  197. },
  198. {
  199. "name": "Roman Borschel",
  200. "email": "roman@code-factory.org"
  201. },
  202. {
  203. "name": "Benjamin Eberlei",
  204. "email": "kontakt@beberlei.de"
  205. },
  206. {
  207. "name": "Jonathan Wage",
  208. "email": "jonwage@gmail.com"
  209. },
  210. {
  211. "name": "Johannes Schmitt",
  212. "email": "schmittjoh@gmail.com"
  213. }
  214. ],
  215. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  216. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  217. "keywords": [
  218. "abstraction",
  219. "apcu",
  220. "cache",
  221. "caching",
  222. "couchdb",
  223. "memcached",
  224. "php",
  225. "redis",
  226. "xcache"
  227. ],
  228. "support": {
  229. "issues": "https://github.com/doctrine/cache/issues",
  230. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  231. },
  232. "funding": [
  233. {
  234. "url": "https://www.doctrine-project.org/sponsorship.html",
  235. "type": "custom"
  236. },
  237. {
  238. "url": "https://www.patreon.com/phpdoctrine",
  239. "type": "patreon"
  240. },
  241. {
  242. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  243. "type": "tidelift"
  244. }
  245. ],
  246. "time": "2022-05-20T20:07:39+00:00"
  247. },
  248. {
  249. "name": "doctrine/collections",
  250. "version": "1.6.8",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/doctrine/collections.git",
  254. "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/doctrine/collections/zipball/1958a744696c6bb3bb0d28db2611dc11610e78af",
  259. "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af",
  260. "shasum": ""
  261. },
  262. "require": {
  263. "php": "^7.1.3 || ^8.0"
  264. },
  265. "require-dev": {
  266. "doctrine/coding-standard": "^9.0",
  267. "phpstan/phpstan": "^0.12",
  268. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  269. "vimeo/psalm": "^4.2.1"
  270. },
  271. "type": "library",
  272. "autoload": {
  273. "psr-4": {
  274. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  275. }
  276. },
  277. "notification-url": "https://packagist.org/downloads/",
  278. "license": [
  279. "MIT"
  280. ],
  281. "authors": [
  282. {
  283. "name": "Guilherme Blanco",
  284. "email": "guilhermeblanco@gmail.com"
  285. },
  286. {
  287. "name": "Roman Borschel",
  288. "email": "roman@code-factory.org"
  289. },
  290. {
  291. "name": "Benjamin Eberlei",
  292. "email": "kontakt@beberlei.de"
  293. },
  294. {
  295. "name": "Jonathan Wage",
  296. "email": "jonwage@gmail.com"
  297. },
  298. {
  299. "name": "Johannes Schmitt",
  300. "email": "schmittjoh@gmail.com"
  301. }
  302. ],
  303. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  304. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  305. "keywords": [
  306. "array",
  307. "collections",
  308. "iterators",
  309. "php"
  310. ],
  311. "support": {
  312. "issues": "https://github.com/doctrine/collections/issues",
  313. "source": "https://github.com/doctrine/collections/tree/1.6.8"
  314. },
  315. "time": "2021-08-10T18:51:53+00:00"
  316. },
  317. {
  318. "name": "doctrine/common",
  319. "version": "3.3.0",
  320. "source": {
  321. "type": "git",
  322. "url": "https://github.com/doctrine/common.git",
  323. "reference": "c824e95d4c83b7102d8bc60595445a6f7d540f96"
  324. },
  325. "dist": {
  326. "type": "zip",
  327. "url": "https://api.github.com/repos/doctrine/common/zipball/c824e95d4c83b7102d8bc60595445a6f7d540f96",
  328. "reference": "c824e95d4c83b7102d8bc60595445a6f7d540f96",
  329. "shasum": ""
  330. },
  331. "require": {
  332. "doctrine/persistence": "^2.0 || ^3.0",
  333. "php": "^7.1 || ^8.0"
  334. },
  335. "require-dev": {
  336. "doctrine/coding-standard": "^9.0",
  337. "phpstan/phpstan": "^1.4.1",
  338. "phpstan/phpstan-phpunit": "^1",
  339. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  340. "squizlabs/php_codesniffer": "^3.0",
  341. "symfony/phpunit-bridge": "^4.0.5",
  342. "vimeo/psalm": "^4.4"
  343. },
  344. "type": "library",
  345. "autoload": {
  346. "psr-4": {
  347. "Doctrine\\Common\\": "lib/Doctrine/Common"
  348. }
  349. },
  350. "notification-url": "https://packagist.org/downloads/",
  351. "license": [
  352. "MIT"
  353. ],
  354. "authors": [
  355. {
  356. "name": "Guilherme Blanco",
  357. "email": "guilhermeblanco@gmail.com"
  358. },
  359. {
  360. "name": "Roman Borschel",
  361. "email": "roman@code-factory.org"
  362. },
  363. {
  364. "name": "Benjamin Eberlei",
  365. "email": "kontakt@beberlei.de"
  366. },
  367. {
  368. "name": "Jonathan Wage",
  369. "email": "jonwage@gmail.com"
  370. },
  371. {
  372. "name": "Johannes Schmitt",
  373. "email": "schmittjoh@gmail.com"
  374. },
  375. {
  376. "name": "Marco Pivetta",
  377. "email": "ocramius@gmail.com"
  378. }
  379. ],
  380. "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.",
  381. "homepage": "https://www.doctrine-project.org/projects/common.html",
  382. "keywords": [
  383. "common",
  384. "doctrine",
  385. "php"
  386. ],
  387. "support": {
  388. "issues": "https://github.com/doctrine/common/issues",
  389. "source": "https://github.com/doctrine/common/tree/3.3.0"
  390. },
  391. "funding": [
  392. {
  393. "url": "https://www.doctrine-project.org/sponsorship.html",
  394. "type": "custom"
  395. },
  396. {
  397. "url": "https://www.patreon.com/phpdoctrine",
  398. "type": "patreon"
  399. },
  400. {
  401. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  402. "type": "tidelift"
  403. }
  404. ],
  405. "time": "2022-02-05T18:28:51+00:00"
  406. },
  407. {
  408. "name": "doctrine/dbal",
  409. "version": "3.3.7",
  410. "source": {
  411. "type": "git",
  412. "url": "https://github.com/doctrine/dbal.git",
  413. "reference": "9f79d4650430b582f4598fe0954ef4d52fbc0a8a"
  414. },
  415. "dist": {
  416. "type": "zip",
  417. "url": "https://api.github.com/repos/doctrine/dbal/zipball/9f79d4650430b582f4598fe0954ef4d52fbc0a8a",
  418. "reference": "9f79d4650430b582f4598fe0954ef4d52fbc0a8a",
  419. "shasum": ""
  420. },
  421. "require": {
  422. "composer-runtime-api": "^2",
  423. "doctrine/cache": "^1.11|^2.0",
  424. "doctrine/deprecations": "^0.5.3|^1",
  425. "doctrine/event-manager": "^1.0",
  426. "php": "^7.3 || ^8.0",
  427. "psr/cache": "^1|^2|^3",
  428. "psr/log": "^1|^2|^3"
  429. },
  430. "require-dev": {
  431. "doctrine/coding-standard": "9.0.0",
  432. "jetbrains/phpstorm-stubs": "2022.1",
  433. "phpstan/phpstan": "1.7.13",
  434. "phpstan/phpstan-strict-rules": "^1.2",
  435. "phpunit/phpunit": "9.5.20",
  436. "psalm/plugin-phpunit": "0.16.1",
  437. "squizlabs/php_codesniffer": "3.7.0",
  438. "symfony/cache": "^5.2|^6.0",
  439. "symfony/console": "^2.7|^3.0|^4.0|^5.0|^6.0",
  440. "vimeo/psalm": "4.23.0"
  441. },
  442. "suggest": {
  443. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  444. },
  445. "bin": [
  446. "bin/doctrine-dbal"
  447. ],
  448. "type": "library",
  449. "autoload": {
  450. "psr-4": {
  451. "Doctrine\\DBAL\\": "src"
  452. }
  453. },
  454. "notification-url": "https://packagist.org/downloads/",
  455. "license": [
  456. "MIT"
  457. ],
  458. "authors": [
  459. {
  460. "name": "Guilherme Blanco",
  461. "email": "guilhermeblanco@gmail.com"
  462. },
  463. {
  464. "name": "Roman Borschel",
  465. "email": "roman@code-factory.org"
  466. },
  467. {
  468. "name": "Benjamin Eberlei",
  469. "email": "kontakt@beberlei.de"
  470. },
  471. {
  472. "name": "Jonathan Wage",
  473. "email": "jonwage@gmail.com"
  474. }
  475. ],
  476. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  477. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  478. "keywords": [
  479. "abstraction",
  480. "database",
  481. "db2",
  482. "dbal",
  483. "mariadb",
  484. "mssql",
  485. "mysql",
  486. "oci8",
  487. "oracle",
  488. "pdo",
  489. "pgsql",
  490. "postgresql",
  491. "queryobject",
  492. "sasql",
  493. "sql",
  494. "sqlite",
  495. "sqlserver",
  496. "sqlsrv"
  497. ],
  498. "support": {
  499. "issues": "https://github.com/doctrine/dbal/issues",
  500. "source": "https://github.com/doctrine/dbal/tree/3.3.7"
  501. },
  502. "funding": [
  503. {
  504. "url": "https://www.doctrine-project.org/sponsorship.html",
  505. "type": "custom"
  506. },
  507. {
  508. "url": "https://www.patreon.com/phpdoctrine",
  509. "type": "patreon"
  510. },
  511. {
  512. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  513. "type": "tidelift"
  514. }
  515. ],
  516. "time": "2022-06-13T21:43:03+00:00"
  517. },
  518. {
  519. "name": "doctrine/deprecations",
  520. "version": "v0.5.3",
  521. "source": {
  522. "type": "git",
  523. "url": "https://github.com/doctrine/deprecations.git",
  524. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  525. },
  526. "dist": {
  527. "type": "zip",
  528. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  529. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  530. "shasum": ""
  531. },
  532. "require": {
  533. "php": "^7.1|^8.0"
  534. },
  535. "require-dev": {
  536. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  537. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  538. "psr/log": "^1.0"
  539. },
  540. "suggest": {
  541. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  542. },
  543. "type": "library",
  544. "autoload": {
  545. "psr-4": {
  546. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  547. }
  548. },
  549. "notification-url": "https://packagist.org/downloads/",
  550. "license": [
  551. "MIT"
  552. ],
  553. "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.",
  554. "homepage": "https://www.doctrine-project.org/",
  555. "support": {
  556. "issues": "https://github.com/doctrine/deprecations/issues",
  557. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  558. },
  559. "time": "2021-03-21T12:59:47+00:00"
  560. },
  561. {
  562. "name": "doctrine/doctrine-bundle",
  563. "version": "2.7.0",
  564. "source": {
  565. "type": "git",
  566. "url": "https://github.com/doctrine/DoctrineBundle.git",
  567. "reference": "d2088fc50494e4e7441fecca54732245a613eeb6"
  568. },
  569. "dist": {
  570. "type": "zip",
  571. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/d2088fc50494e4e7441fecca54732245a613eeb6",
  572. "reference": "d2088fc50494e4e7441fecca54732245a613eeb6",
  573. "shasum": ""
  574. },
  575. "require": {
  576. "doctrine/annotations": "^1",
  577. "doctrine/cache": "^1.11 || ^2.0",
  578. "doctrine/dbal": "^2.13.1|^3.3.2",
  579. "doctrine/persistence": "^2.2|^3",
  580. "doctrine/sql-formatter": "^1.0.1",
  581. "php": "^7.1 || ^8.0",
  582. "symfony/cache": "^4.3.3|^5.0|^6.0",
  583. "symfony/config": "^4.4.3|^5.0|^6.0",
  584. "symfony/console": "^3.4.30|^4.3.3|^5.0|^6.0",
  585. "symfony/dependency-injection": "^4.4.18|^5.0|^6.0",
  586. "symfony/deprecation-contracts": "^2.1|^3",
  587. "symfony/doctrine-bridge": "^4.4.22|^5.2.7|^6.0",
  588. "symfony/framework-bundle": "^3.4.30|^4.3.3|^5.0|^6.0",
  589. "symfony/service-contracts": "^1.1.1|^2.0|^3"
  590. },
  591. "conflict": {
  592. "doctrine/orm": "<2.10|>=3.0",
  593. "twig/twig": "<1.34|>=2.0,<2.4"
  594. },
  595. "require-dev": {
  596. "doctrine/coding-standard": "^9.0",
  597. "doctrine/orm": "^2.11 || ^3.0",
  598. "friendsofphp/proxy-manager-lts": "^1.0",
  599. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.3 || ^10.0",
  600. "psalm/plugin-phpunit": "^0.16.1",
  601. "psalm/plugin-symfony": "^3",
  602. "psr/log": "^1.1.4|^2.0|^3.0",
  603. "symfony/phpunit-bridge": "^5.2|^6.0",
  604. "symfony/property-info": "^4.3.3|^5.0|^6.0",
  605. "symfony/proxy-manager-bridge": "^3.4|^4.3.3|^5.0|^6.0",
  606. "symfony/security-bundle": "^4.4|^5.0|^6.0",
  607. "symfony/twig-bridge": "^3.4.30|^4.3.3|^5.0|^6.0",
  608. "symfony/validator": "^3.4.30|^4.3.3|^5.0|^6.0",
  609. "symfony/web-profiler-bundle": "^3.4.30|^4.3.3|^5.0|^6.0",
  610. "symfony/yaml": "^3.4.30|^4.3.3|^5.0|^6.0",
  611. "twig/twig": "^1.34|^2.12|^3.0",
  612. "vimeo/psalm": "^4.7"
  613. },
  614. "suggest": {
  615. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  616. "ext-pdo": "*",
  617. "symfony/web-profiler-bundle": "To use the data collector."
  618. },
  619. "type": "symfony-bundle",
  620. "autoload": {
  621. "psr-4": {
  622. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  623. }
  624. },
  625. "notification-url": "https://packagist.org/downloads/",
  626. "license": [
  627. "MIT"
  628. ],
  629. "authors": [
  630. {
  631. "name": "Fabien Potencier",
  632. "email": "fabien@symfony.com"
  633. },
  634. {
  635. "name": "Benjamin Eberlei",
  636. "email": "kontakt@beberlei.de"
  637. },
  638. {
  639. "name": "Symfony Community",
  640. "homepage": "https://symfony.com/contributors"
  641. },
  642. {
  643. "name": "Doctrine Project",
  644. "homepage": "https://www.doctrine-project.org/"
  645. }
  646. ],
  647. "description": "Symfony DoctrineBundle",
  648. "homepage": "https://www.doctrine-project.org",
  649. "keywords": [
  650. "database",
  651. "dbal",
  652. "orm",
  653. "persistence"
  654. ],
  655. "support": {
  656. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  657. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.7.0"
  658. },
  659. "funding": [
  660. {
  661. "url": "https://www.doctrine-project.org/sponsorship.html",
  662. "type": "custom"
  663. },
  664. {
  665. "url": "https://www.patreon.com/phpdoctrine",
  666. "type": "patreon"
  667. },
  668. {
  669. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  670. "type": "tidelift"
  671. }
  672. ],
  673. "time": "2022-06-10T10:55:26+00:00"
  674. },
  675. {
  676. "name": "doctrine/doctrine-migrations-bundle",
  677. "version": "3.2.2",
  678. "source": {
  679. "type": "git",
  680. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  681. "reference": "3393f411ba25ade21969c33f2053220044854d01"
  682. },
  683. "dist": {
  684. "type": "zip",
  685. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/3393f411ba25ade21969c33f2053220044854d01",
  686. "reference": "3393f411ba25ade21969c33f2053220044854d01",
  687. "shasum": ""
  688. },
  689. "require": {
  690. "doctrine/doctrine-bundle": "~1.0|~2.0",
  691. "doctrine/migrations": "^3.2",
  692. "php": "^7.2|^8.0",
  693. "symfony/framework-bundle": "~3.4|~4.0|~5.0|~6.0"
  694. },
  695. "require-dev": {
  696. "doctrine/coding-standard": "^8.0",
  697. "doctrine/orm": "^2.6",
  698. "doctrine/persistence": "^1.3||^2.0",
  699. "phpstan/phpstan": "^0.12",
  700. "phpstan/phpstan-deprecation-rules": "^0.12",
  701. "phpstan/phpstan-phpunit": "^0.12",
  702. "phpstan/phpstan-strict-rules": "^0.12",
  703. "phpunit/phpunit": "^8.0|^9.0",
  704. "vimeo/psalm": "^4.11"
  705. },
  706. "type": "symfony-bundle",
  707. "autoload": {
  708. "psr-4": {
  709. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  710. },
  711. "exclude-from-classmap": [
  712. "/Tests/"
  713. ]
  714. },
  715. "notification-url": "https://packagist.org/downloads/",
  716. "license": [
  717. "MIT"
  718. ],
  719. "authors": [
  720. {
  721. "name": "Fabien Potencier",
  722. "email": "fabien@symfony.com"
  723. },
  724. {
  725. "name": "Doctrine Project",
  726. "homepage": "https://www.doctrine-project.org"
  727. },
  728. {
  729. "name": "Symfony Community",
  730. "homepage": "https://symfony.com/contributors"
  731. }
  732. ],
  733. "description": "Symfony DoctrineMigrationsBundle",
  734. "homepage": "https://www.doctrine-project.org",
  735. "keywords": [
  736. "dbal",
  737. "migrations",
  738. "schema"
  739. ],
  740. "support": {
  741. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  742. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.2.2"
  743. },
  744. "funding": [
  745. {
  746. "url": "https://www.doctrine-project.org/sponsorship.html",
  747. "type": "custom"
  748. },
  749. {
  750. "url": "https://www.patreon.com/phpdoctrine",
  751. "type": "patreon"
  752. },
  753. {
  754. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  755. "type": "tidelift"
  756. }
  757. ],
  758. "time": "2022-02-01T18:08:07+00:00"
  759. },
  760. {
  761. "name": "doctrine/event-manager",
  762. "version": "1.1.1",
  763. "source": {
  764. "type": "git",
  765. "url": "https://github.com/doctrine/event-manager.git",
  766. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  767. },
  768. "dist": {
  769. "type": "zip",
  770. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  771. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  772. "shasum": ""
  773. },
  774. "require": {
  775. "php": "^7.1 || ^8.0"
  776. },
  777. "conflict": {
  778. "doctrine/common": "<2.9@dev"
  779. },
  780. "require-dev": {
  781. "doctrine/coding-standard": "^6.0",
  782. "phpunit/phpunit": "^7.0"
  783. },
  784. "type": "library",
  785. "extra": {
  786. "branch-alias": {
  787. "dev-master": "1.0.x-dev"
  788. }
  789. },
  790. "autoload": {
  791. "psr-4": {
  792. "Doctrine\\Common\\": "lib/Doctrine/Common"
  793. }
  794. },
  795. "notification-url": "https://packagist.org/downloads/",
  796. "license": [
  797. "MIT"
  798. ],
  799. "authors": [
  800. {
  801. "name": "Guilherme Blanco",
  802. "email": "guilhermeblanco@gmail.com"
  803. },
  804. {
  805. "name": "Roman Borschel",
  806. "email": "roman@code-factory.org"
  807. },
  808. {
  809. "name": "Benjamin Eberlei",
  810. "email": "kontakt@beberlei.de"
  811. },
  812. {
  813. "name": "Jonathan Wage",
  814. "email": "jonwage@gmail.com"
  815. },
  816. {
  817. "name": "Johannes Schmitt",
  818. "email": "schmittjoh@gmail.com"
  819. },
  820. {
  821. "name": "Marco Pivetta",
  822. "email": "ocramius@gmail.com"
  823. }
  824. ],
  825. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  826. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  827. "keywords": [
  828. "event",
  829. "event dispatcher",
  830. "event manager",
  831. "event system",
  832. "events"
  833. ],
  834. "support": {
  835. "issues": "https://github.com/doctrine/event-manager/issues",
  836. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  837. },
  838. "funding": [
  839. {
  840. "url": "https://www.doctrine-project.org/sponsorship.html",
  841. "type": "custom"
  842. },
  843. {
  844. "url": "https://www.patreon.com/phpdoctrine",
  845. "type": "patreon"
  846. },
  847. {
  848. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  849. "type": "tidelift"
  850. }
  851. ],
  852. "time": "2020-05-29T18:28:51+00:00"
  853. },
  854. {
  855. "name": "doctrine/inflector",
  856. "version": "2.0.4",
  857. "source": {
  858. "type": "git",
  859. "url": "https://github.com/doctrine/inflector.git",
  860. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  861. },
  862. "dist": {
  863. "type": "zip",
  864. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  865. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  866. "shasum": ""
  867. },
  868. "require": {
  869. "php": "^7.2 || ^8.0"
  870. },
  871. "require-dev": {
  872. "doctrine/coding-standard": "^8.2",
  873. "phpstan/phpstan": "^0.12",
  874. "phpstan/phpstan-phpunit": "^0.12",
  875. "phpstan/phpstan-strict-rules": "^0.12",
  876. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  877. "vimeo/psalm": "^4.10"
  878. },
  879. "type": "library",
  880. "autoload": {
  881. "psr-4": {
  882. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  883. }
  884. },
  885. "notification-url": "https://packagist.org/downloads/",
  886. "license": [
  887. "MIT"
  888. ],
  889. "authors": [
  890. {
  891. "name": "Guilherme Blanco",
  892. "email": "guilhermeblanco@gmail.com"
  893. },
  894. {
  895. "name": "Roman Borschel",
  896. "email": "roman@code-factory.org"
  897. },
  898. {
  899. "name": "Benjamin Eberlei",
  900. "email": "kontakt@beberlei.de"
  901. },
  902. {
  903. "name": "Jonathan Wage",
  904. "email": "jonwage@gmail.com"
  905. },
  906. {
  907. "name": "Johannes Schmitt",
  908. "email": "schmittjoh@gmail.com"
  909. }
  910. ],
  911. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  912. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  913. "keywords": [
  914. "inflection",
  915. "inflector",
  916. "lowercase",
  917. "manipulation",
  918. "php",
  919. "plural",
  920. "singular",
  921. "strings",
  922. "uppercase",
  923. "words"
  924. ],
  925. "support": {
  926. "issues": "https://github.com/doctrine/inflector/issues",
  927. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  928. },
  929. "funding": [
  930. {
  931. "url": "https://www.doctrine-project.org/sponsorship.html",
  932. "type": "custom"
  933. },
  934. {
  935. "url": "https://www.patreon.com/phpdoctrine",
  936. "type": "patreon"
  937. },
  938. {
  939. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  940. "type": "tidelift"
  941. }
  942. ],
  943. "time": "2021-10-22T20:16:43+00:00"
  944. },
  945. {
  946. "name": "doctrine/instantiator",
  947. "version": "1.4.1",
  948. "source": {
  949. "type": "git",
  950. "url": "https://github.com/doctrine/instantiator.git",
  951. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  952. },
  953. "dist": {
  954. "type": "zip",
  955. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  956. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  957. "shasum": ""
  958. },
  959. "require": {
  960. "php": "^7.1 || ^8.0"
  961. },
  962. "require-dev": {
  963. "doctrine/coding-standard": "^9",
  964. "ext-pdo": "*",
  965. "ext-phar": "*",
  966. "phpbench/phpbench": "^0.16 || ^1",
  967. "phpstan/phpstan": "^1.4",
  968. "phpstan/phpstan-phpunit": "^1",
  969. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  970. "vimeo/psalm": "^4.22"
  971. },
  972. "type": "library",
  973. "autoload": {
  974. "psr-4": {
  975. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  976. }
  977. },
  978. "notification-url": "https://packagist.org/downloads/",
  979. "license": [
  980. "MIT"
  981. ],
  982. "authors": [
  983. {
  984. "name": "Marco Pivetta",
  985. "email": "ocramius@gmail.com",
  986. "homepage": "https://ocramius.github.io/"
  987. }
  988. ],
  989. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  990. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  991. "keywords": [
  992. "constructor",
  993. "instantiate"
  994. ],
  995. "support": {
  996. "issues": "https://github.com/doctrine/instantiator/issues",
  997. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  998. },
  999. "funding": [
  1000. {
  1001. "url": "https://www.doctrine-project.org/sponsorship.html",
  1002. "type": "custom"
  1003. },
  1004. {
  1005. "url": "https://www.patreon.com/phpdoctrine",
  1006. "type": "patreon"
  1007. },
  1008. {
  1009. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1010. "type": "tidelift"
  1011. }
  1012. ],
  1013. "time": "2022-03-03T08:28:38+00:00"
  1014. },
  1015. {
  1016. "name": "doctrine/lexer",
  1017. "version": "1.2.3",
  1018. "source": {
  1019. "type": "git",
  1020. "url": "https://github.com/doctrine/lexer.git",
  1021. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1022. },
  1023. "dist": {
  1024. "type": "zip",
  1025. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1026. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1027. "shasum": ""
  1028. },
  1029. "require": {
  1030. "php": "^7.1 || ^8.0"
  1031. },
  1032. "require-dev": {
  1033. "doctrine/coding-standard": "^9.0",
  1034. "phpstan/phpstan": "^1.3",
  1035. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1036. "vimeo/psalm": "^4.11"
  1037. },
  1038. "type": "library",
  1039. "autoload": {
  1040. "psr-4": {
  1041. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1042. }
  1043. },
  1044. "notification-url": "https://packagist.org/downloads/",
  1045. "license": [
  1046. "MIT"
  1047. ],
  1048. "authors": [
  1049. {
  1050. "name": "Guilherme Blanco",
  1051. "email": "guilhermeblanco@gmail.com"
  1052. },
  1053. {
  1054. "name": "Roman Borschel",
  1055. "email": "roman@code-factory.org"
  1056. },
  1057. {
  1058. "name": "Johannes Schmitt",
  1059. "email": "schmittjoh@gmail.com"
  1060. }
  1061. ],
  1062. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1063. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1064. "keywords": [
  1065. "annotations",
  1066. "docblock",
  1067. "lexer",
  1068. "parser",
  1069. "php"
  1070. ],
  1071. "support": {
  1072. "issues": "https://github.com/doctrine/lexer/issues",
  1073. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1074. },
  1075. "funding": [
  1076. {
  1077. "url": "https://www.doctrine-project.org/sponsorship.html",
  1078. "type": "custom"
  1079. },
  1080. {
  1081. "url": "https://www.patreon.com/phpdoctrine",
  1082. "type": "patreon"
  1083. },
  1084. {
  1085. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1086. "type": "tidelift"
  1087. }
  1088. ],
  1089. "time": "2022-02-28T11:07:21+00:00"
  1090. },
  1091. {
  1092. "name": "doctrine/migrations",
  1093. "version": "3.4.2",
  1094. "source": {
  1095. "type": "git",
  1096. "url": "https://github.com/doctrine/migrations.git",
  1097. "reference": "f9b4c8032276460afd9dfa62fb215734b4380d90"
  1098. },
  1099. "dist": {
  1100. "type": "zip",
  1101. "url": "https://api.github.com/repos/doctrine/migrations/zipball/f9b4c8032276460afd9dfa62fb215734b4380d90",
  1102. "reference": "f9b4c8032276460afd9dfa62fb215734b4380d90",
  1103. "shasum": ""
  1104. },
  1105. "require": {
  1106. "composer-runtime-api": "^2",
  1107. "doctrine/dbal": "^2.11 || ^3.0",
  1108. "doctrine/deprecations": "^0.5.3",
  1109. "doctrine/event-manager": "^1.0",
  1110. "friendsofphp/proxy-manager-lts": "^1.0",
  1111. "php": "^7.2 || ^8.0",
  1112. "psr/log": "^1.1.3 || ^2 || ^3",
  1113. "symfony/console": "^3.4 || ^4.4.16 || ^5.0 || ^6.0",
  1114. "symfony/stopwatch": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1115. },
  1116. "require-dev": {
  1117. "doctrine/coding-standard": "^9",
  1118. "doctrine/orm": "^2.6",
  1119. "doctrine/persistence": "^1.3 || ^2.0",
  1120. "doctrine/sql-formatter": "^1.0",
  1121. "ergebnis/composer-normalize": "^2.9",
  1122. "ext-pdo_sqlite": "*",
  1123. "phpstan/phpstan": "^1.5",
  1124. "phpstan/phpstan-deprecation-rules": "^1",
  1125. "phpstan/phpstan-phpunit": "^1.1",
  1126. "phpstan/phpstan-strict-rules": "^1.1",
  1127. "phpstan/phpstan-symfony": "^1.1",
  1128. "phpunit/phpunit": "^8.5 || ^9.4",
  1129. "symfony/cache": "^3.4.26 || ^4.2.12 || ^5.0 || ^6.0",
  1130. "symfony/process": "^3.4 || ^4.0 || ^5.0 || ^6.0",
  1131. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1132. },
  1133. "suggest": {
  1134. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1135. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1136. },
  1137. "bin": [
  1138. "bin/doctrine-migrations"
  1139. ],
  1140. "type": "library",
  1141. "extra": {
  1142. "composer-normalize": {
  1143. "indent-size": 4,
  1144. "indent-style": "space"
  1145. }
  1146. },
  1147. "autoload": {
  1148. "psr-4": {
  1149. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1150. }
  1151. },
  1152. "notification-url": "https://packagist.org/downloads/",
  1153. "license": [
  1154. "MIT"
  1155. ],
  1156. "authors": [
  1157. {
  1158. "name": "Benjamin Eberlei",
  1159. "email": "kontakt@beberlei.de"
  1160. },
  1161. {
  1162. "name": "Jonathan Wage",
  1163. "email": "jonwage@gmail.com"
  1164. },
  1165. {
  1166. "name": "Michael Simonson",
  1167. "email": "contact@mikesimonson.com"
  1168. }
  1169. ],
  1170. "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.",
  1171. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1172. "keywords": [
  1173. "database",
  1174. "dbal",
  1175. "migrations"
  1176. ],
  1177. "support": {
  1178. "issues": "https://github.com/doctrine/migrations/issues",
  1179. "source": "https://github.com/doctrine/migrations/tree/3.4.2"
  1180. },
  1181. "funding": [
  1182. {
  1183. "url": "https://www.doctrine-project.org/sponsorship.html",
  1184. "type": "custom"
  1185. },
  1186. {
  1187. "url": "https://www.patreon.com/phpdoctrine",
  1188. "type": "patreon"
  1189. },
  1190. {
  1191. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1192. "type": "tidelift"
  1193. }
  1194. ],
  1195. "time": "2022-04-01T06:38:22+00:00"
  1196. },
  1197. {
  1198. "name": "doctrine/orm",
  1199. "version": "2.12.3",
  1200. "source": {
  1201. "type": "git",
  1202. "url": "https://github.com/doctrine/orm.git",
  1203. "reference": "c05e1709e9ffb9abe8d37260a78975cc816ee385"
  1204. },
  1205. "dist": {
  1206. "type": "zip",
  1207. "url": "https://api.github.com/repos/doctrine/orm/zipball/c05e1709e9ffb9abe8d37260a78975cc816ee385",
  1208. "reference": "c05e1709e9ffb9abe8d37260a78975cc816ee385",
  1209. "shasum": ""
  1210. },
  1211. "require": {
  1212. "composer-runtime-api": "^2",
  1213. "doctrine/cache": "^1.12.1 || ^2.1.1",
  1214. "doctrine/collections": "^1.5",
  1215. "doctrine/common": "^3.0.3",
  1216. "doctrine/dbal": "^2.13.1 || ^3.2",
  1217. "doctrine/deprecations": "^0.5.3 || ^1",
  1218. "doctrine/event-manager": "^1.1",
  1219. "doctrine/inflector": "^1.4 || ^2.0",
  1220. "doctrine/instantiator": "^1.3",
  1221. "doctrine/lexer": "^1.2.3",
  1222. "doctrine/persistence": "^2.4 || ^3",
  1223. "ext-ctype": "*",
  1224. "php": "^7.1 || ^8.0",
  1225. "psr/cache": "^1 || ^2 || ^3",
  1226. "symfony/console": "^3.0 || ^4.0 || ^5.0 || ^6.0",
  1227. "symfony/polyfill-php72": "^1.23",
  1228. "symfony/polyfill-php80": "^1.16"
  1229. },
  1230. "conflict": {
  1231. "doctrine/annotations": "<1.13 || >= 2.0"
  1232. },
  1233. "require-dev": {
  1234. "doctrine/annotations": "^1.13",
  1235. "doctrine/coding-standard": "^9.0",
  1236. "phpbench/phpbench": "^0.16.10 || ^1.0",
  1237. "phpstan/phpstan": "~1.4.10 || 1.7.13",
  1238. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1239. "psr/log": "^1 || ^2 || ^3",
  1240. "squizlabs/php_codesniffer": "3.7.0",
  1241. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1242. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0",
  1243. "vimeo/psalm": "4.23.0"
  1244. },
  1245. "suggest": {
  1246. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
  1247. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1248. },
  1249. "bin": [
  1250. "bin/doctrine"
  1251. ],
  1252. "type": "library",
  1253. "autoload": {
  1254. "psr-4": {
  1255. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1256. }
  1257. },
  1258. "notification-url": "https://packagist.org/downloads/",
  1259. "license": [
  1260. "MIT"
  1261. ],
  1262. "authors": [
  1263. {
  1264. "name": "Guilherme Blanco",
  1265. "email": "guilhermeblanco@gmail.com"
  1266. },
  1267. {
  1268. "name": "Roman Borschel",
  1269. "email": "roman@code-factory.org"
  1270. },
  1271. {
  1272. "name": "Benjamin Eberlei",
  1273. "email": "kontakt@beberlei.de"
  1274. },
  1275. {
  1276. "name": "Jonathan Wage",
  1277. "email": "jonwage@gmail.com"
  1278. },
  1279. {
  1280. "name": "Marco Pivetta",
  1281. "email": "ocramius@gmail.com"
  1282. }
  1283. ],
  1284. "description": "Object-Relational-Mapper for PHP",
  1285. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1286. "keywords": [
  1287. "database",
  1288. "orm"
  1289. ],
  1290. "support": {
  1291. "issues": "https://github.com/doctrine/orm/issues",
  1292. "source": "https://github.com/doctrine/orm/tree/2.12.3"
  1293. },
  1294. "time": "2022-06-16T13:42:23+00:00"
  1295. },
  1296. {
  1297. "name": "doctrine/persistence",
  1298. "version": "3.0.2",
  1299. "source": {
  1300. "type": "git",
  1301. "url": "https://github.com/doctrine/persistence.git",
  1302. "reference": "25ec98a8cbd1f850e60fdb62c0ef77c162da8704"
  1303. },
  1304. "dist": {
  1305. "type": "zip",
  1306. "url": "https://api.github.com/repos/doctrine/persistence/zipball/25ec98a8cbd1f850e60fdb62c0ef77c162da8704",
  1307. "reference": "25ec98a8cbd1f850e60fdb62c0ef77c162da8704",
  1308. "shasum": ""
  1309. },
  1310. "require": {
  1311. "doctrine/collections": "^1.0",
  1312. "doctrine/event-manager": "^1.0",
  1313. "php": "^7.2 || ^8.0",
  1314. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1315. },
  1316. "conflict": {
  1317. "doctrine/annotations": "<1.7 || >=2.0",
  1318. "doctrine/common": "<2.10"
  1319. },
  1320. "require-dev": {
  1321. "composer/package-versions-deprecated": "^1.11",
  1322. "doctrine/annotations": "^1.7",
  1323. "doctrine/coding-standard": "^9.0",
  1324. "doctrine/common": "^3.0",
  1325. "phpstan/phpstan": "1.5.0",
  1326. "phpstan/phpstan-phpunit": "^1",
  1327. "phpstan/phpstan-strict-rules": "^1.1",
  1328. "phpunit/phpunit": "^8.5 || ^9.5",
  1329. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1330. "vimeo/psalm": "4.22.0"
  1331. },
  1332. "type": "library",
  1333. "autoload": {
  1334. "psr-4": {
  1335. "Doctrine\\Persistence\\": "src/Persistence"
  1336. }
  1337. },
  1338. "notification-url": "https://packagist.org/downloads/",
  1339. "license": [
  1340. "MIT"
  1341. ],
  1342. "authors": [
  1343. {
  1344. "name": "Guilherme Blanco",
  1345. "email": "guilhermeblanco@gmail.com"
  1346. },
  1347. {
  1348. "name": "Roman Borschel",
  1349. "email": "roman@code-factory.org"
  1350. },
  1351. {
  1352. "name": "Benjamin Eberlei",
  1353. "email": "kontakt@beberlei.de"
  1354. },
  1355. {
  1356. "name": "Jonathan Wage",
  1357. "email": "jonwage@gmail.com"
  1358. },
  1359. {
  1360. "name": "Johannes Schmitt",
  1361. "email": "schmittjoh@gmail.com"
  1362. },
  1363. {
  1364. "name": "Marco Pivetta",
  1365. "email": "ocramius@gmail.com"
  1366. }
  1367. ],
  1368. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1369. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1370. "keywords": [
  1371. "mapper",
  1372. "object",
  1373. "odm",
  1374. "orm",
  1375. "persistence"
  1376. ],
  1377. "support": {
  1378. "issues": "https://github.com/doctrine/persistence/issues",
  1379. "source": "https://github.com/doctrine/persistence/tree/3.0.2"
  1380. },
  1381. "funding": [
  1382. {
  1383. "url": "https://www.doctrine-project.org/sponsorship.html",
  1384. "type": "custom"
  1385. },
  1386. {
  1387. "url": "https://www.patreon.com/phpdoctrine",
  1388. "type": "patreon"
  1389. },
  1390. {
  1391. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1392. "type": "tidelift"
  1393. }
  1394. ],
  1395. "time": "2022-05-06T06:10:05+00:00"
  1396. },
  1397. {
  1398. "name": "doctrine/sql-formatter",
  1399. "version": "1.1.3",
  1400. "source": {
  1401. "type": "git",
  1402. "url": "https://github.com/doctrine/sql-formatter.git",
  1403. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5"
  1404. },
  1405. "dist": {
  1406. "type": "zip",
  1407. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/25a06c7bf4c6b8218f47928654252863ffc890a5",
  1408. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5",
  1409. "shasum": ""
  1410. },
  1411. "require": {
  1412. "php": "^7.1 || ^8.0"
  1413. },
  1414. "require-dev": {
  1415. "bamarni/composer-bin-plugin": "^1.4"
  1416. },
  1417. "bin": [
  1418. "bin/sql-formatter"
  1419. ],
  1420. "type": "library",
  1421. "autoload": {
  1422. "psr-4": {
  1423. "Doctrine\\SqlFormatter\\": "src"
  1424. }
  1425. },
  1426. "notification-url": "https://packagist.org/downloads/",
  1427. "license": [
  1428. "MIT"
  1429. ],
  1430. "authors": [
  1431. {
  1432. "name": "Jeremy Dorn",
  1433. "email": "jeremy@jeremydorn.com",
  1434. "homepage": "https://jeremydorn.com/"
  1435. }
  1436. ],
  1437. "description": "a PHP SQL highlighting library",
  1438. "homepage": "https://github.com/doctrine/sql-formatter/",
  1439. "keywords": [
  1440. "highlight",
  1441. "sql"
  1442. ],
  1443. "support": {
  1444. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1445. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.3"
  1446. },
  1447. "time": "2022-05-23T21:33:49+00:00"
  1448. },
  1449. {
  1450. "name": "egulias/email-validator",
  1451. "version": "3.2.1",
  1452. "source": {
  1453. "type": "git",
  1454. "url": "https://github.com/egulias/EmailValidator.git",
  1455. "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715"
  1456. },
  1457. "dist": {
  1458. "type": "zip",
  1459. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/f88dcf4b14af14a98ad96b14b2b317969eab6715",
  1460. "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715",
  1461. "shasum": ""
  1462. },
  1463. "require": {
  1464. "doctrine/lexer": "^1.2",
  1465. "php": ">=7.2",
  1466. "symfony/polyfill-intl-idn": "^1.15"
  1467. },
  1468. "require-dev": {
  1469. "php-coveralls/php-coveralls": "^2.2",
  1470. "phpunit/phpunit": "^8.5.8|^9.3.3",
  1471. "vimeo/psalm": "^4"
  1472. },
  1473. "suggest": {
  1474. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1475. },
  1476. "type": "library",
  1477. "extra": {
  1478. "branch-alias": {
  1479. "dev-master": "3.0.x-dev"
  1480. }
  1481. },
  1482. "autoload": {
  1483. "psr-4": {
  1484. "Egulias\\EmailValidator\\": "src"
  1485. }
  1486. },
  1487. "notification-url": "https://packagist.org/downloads/",
  1488. "license": [
  1489. "MIT"
  1490. ],
  1491. "authors": [
  1492. {
  1493. "name": "Eduardo Gulias Davis"
  1494. }
  1495. ],
  1496. "description": "A library for validating emails against several RFCs",
  1497. "homepage": "https://github.com/egulias/EmailValidator",
  1498. "keywords": [
  1499. "email",
  1500. "emailvalidation",
  1501. "emailvalidator",
  1502. "validation",
  1503. "validator"
  1504. ],
  1505. "support": {
  1506. "issues": "https://github.com/egulias/EmailValidator/issues",
  1507. "source": "https://github.com/egulias/EmailValidator/tree/3.2.1"
  1508. },
  1509. "funding": [
  1510. {
  1511. "url": "https://github.com/egulias",
  1512. "type": "github"
  1513. }
  1514. ],
  1515. "time": "2022-06-18T20:57:19+00:00"
  1516. },
  1517. {
  1518. "name": "friendsofphp/proxy-manager-lts",
  1519. "version": "v1.0.12",
  1520. "source": {
  1521. "type": "git",
  1522. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1523. "reference": "8419f0158715b30d4b99a5bd37c6a39671994ad7"
  1524. },
  1525. "dist": {
  1526. "type": "zip",
  1527. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/8419f0158715b30d4b99a5bd37c6a39671994ad7",
  1528. "reference": "8419f0158715b30d4b99a5bd37c6a39671994ad7",
  1529. "shasum": ""
  1530. },
  1531. "require": {
  1532. "laminas/laminas-code": "~3.4.1|^4.0",
  1533. "php": ">=7.1",
  1534. "symfony/filesystem": "^4.4.17|^5.0|^6.0"
  1535. },
  1536. "conflict": {
  1537. "laminas/laminas-stdlib": "<3.2.1",
  1538. "zendframework/zend-stdlib": "<3.2.1"
  1539. },
  1540. "replace": {
  1541. "ocramius/proxy-manager": "^2.1"
  1542. },
  1543. "require-dev": {
  1544. "ext-phar": "*",
  1545. "symfony/phpunit-bridge": "^5.4|^6.0"
  1546. },
  1547. "type": "library",
  1548. "extra": {
  1549. "thanks": {
  1550. "name": "ocramius/proxy-manager",
  1551. "url": "https://github.com/Ocramius/ProxyManager"
  1552. }
  1553. },
  1554. "autoload": {
  1555. "psr-4": {
  1556. "ProxyManager\\": "src/ProxyManager"
  1557. }
  1558. },
  1559. "notification-url": "https://packagist.org/downloads/",
  1560. "license": [
  1561. "MIT"
  1562. ],
  1563. "authors": [
  1564. {
  1565. "name": "Marco Pivetta",
  1566. "email": "ocramius@gmail.com",
  1567. "homepage": "https://ocramius.github.io/"
  1568. },
  1569. {
  1570. "name": "Nicolas Grekas",
  1571. "email": "p@tchwork.com"
  1572. }
  1573. ],
  1574. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1575. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1576. "keywords": [
  1577. "aop",
  1578. "lazy loading",
  1579. "proxy",
  1580. "proxy pattern",
  1581. "service proxies"
  1582. ],
  1583. "support": {
  1584. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1585. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.12"
  1586. },
  1587. "funding": [
  1588. {
  1589. "url": "https://github.com/Ocramius",
  1590. "type": "github"
  1591. },
  1592. {
  1593. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1594. "type": "tidelift"
  1595. }
  1596. ],
  1597. "time": "2022-05-05T09:31:05+00:00"
  1598. },
  1599. {
  1600. "name": "laminas/laminas-code",
  1601. "version": "3.4.1",
  1602. "source": {
  1603. "type": "git",
  1604. "url": "https://github.com/laminas/laminas-code.git",
  1605. "reference": "1cb8f203389ab1482bf89c0e70a04849bacd7766"
  1606. },
  1607. "dist": {
  1608. "type": "zip",
  1609. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/1cb8f203389ab1482bf89c0e70a04849bacd7766",
  1610. "reference": "1cb8f203389ab1482bf89c0e70a04849bacd7766",
  1611. "shasum": ""
  1612. },
  1613. "require": {
  1614. "laminas/laminas-eventmanager": "^2.6 || ^3.0",
  1615. "laminas/laminas-zendframework-bridge": "^1.0",
  1616. "php": "^7.1"
  1617. },
  1618. "conflict": {
  1619. "phpspec/prophecy": "<1.9.0"
  1620. },
  1621. "replace": {
  1622. "zendframework/zend-code": "self.version"
  1623. },
  1624. "require-dev": {
  1625. "doctrine/annotations": "^1.7",
  1626. "ext-phar": "*",
  1627. "laminas/laminas-coding-standard": "^1.0",
  1628. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  1629. "phpunit/phpunit": "^7.5.16 || ^8.4"
  1630. },
  1631. "suggest": {
  1632. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1633. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1634. },
  1635. "type": "library",
  1636. "extra": {
  1637. "branch-alias": {
  1638. "dev-master": "3.4.x-dev",
  1639. "dev-develop": "3.5.x-dev",
  1640. "dev-dev-4.0": "4.0.x-dev"
  1641. }
  1642. },
  1643. "autoload": {
  1644. "psr-4": {
  1645. "Laminas\\Code\\": "src/"
  1646. }
  1647. },
  1648. "notification-url": "https://packagist.org/downloads/",
  1649. "license": [
  1650. "BSD-3-Clause"
  1651. ],
  1652. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1653. "homepage": "https://laminas.dev",
  1654. "keywords": [
  1655. "code",
  1656. "laminas"
  1657. ],
  1658. "support": {
  1659. "chat": "https://laminas.dev/chat",
  1660. "docs": "https://docs.laminas.dev/laminas-code/",
  1661. "forum": "https://discourse.laminas.dev",
  1662. "issues": "https://github.com/laminas/laminas-code/issues",
  1663. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1664. "source": "https://github.com/laminas/laminas-code"
  1665. },
  1666. "time": "2019-12-31T16:28:24+00:00"
  1667. },
  1668. {
  1669. "name": "laminas/laminas-eventmanager",
  1670. "version": "3.4.0",
  1671. "source": {
  1672. "type": "git",
  1673. "url": "https://github.com/laminas/laminas-eventmanager.git",
  1674. "reference": "a93fd278c97b2d41ebbce5ba048a24e3e6f580ba"
  1675. },
  1676. "dist": {
  1677. "type": "zip",
  1678. "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/a93fd278c97b2d41ebbce5ba048a24e3e6f580ba",
  1679. "reference": "a93fd278c97b2d41ebbce5ba048a24e3e6f580ba",
  1680. "shasum": ""
  1681. },
  1682. "require": {
  1683. "php": "^7.3 || ~8.0.0 || ~8.1.0"
  1684. },
  1685. "conflict": {
  1686. "zendframework/zend-eventmanager": "*"
  1687. },
  1688. "require-dev": {
  1689. "container-interop/container-interop": "^1.1",
  1690. "laminas/laminas-coding-standard": "~2.2.1",
  1691. "laminas/laminas-stdlib": "^3.6",
  1692. "phpbench/phpbench": "^1.1",
  1693. "phpspec/prophecy-phpunit": "^2.0",
  1694. "phpunit/phpunit": "^9.5.5"
  1695. },
  1696. "suggest": {
  1697. "container-interop/container-interop": "^1.1, to use the lazy listeners feature",
  1698. "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  1699. },
  1700. "type": "library",
  1701. "autoload": {
  1702. "psr-4": {
  1703. "Laminas\\EventManager\\": "src/"
  1704. }
  1705. },
  1706. "notification-url": "https://packagist.org/downloads/",
  1707. "license": [
  1708. "BSD-3-Clause"
  1709. ],
  1710. "description": "Trigger and listen to events within a PHP application",
  1711. "homepage": "https://laminas.dev",
  1712. "keywords": [
  1713. "event",
  1714. "eventmanager",
  1715. "events",
  1716. "laminas"
  1717. ],
  1718. "support": {
  1719. "chat": "https://laminas.dev/chat",
  1720. "docs": "https://docs.laminas.dev/laminas-eventmanager/",
  1721. "forum": "https://discourse.laminas.dev",
  1722. "issues": "https://github.com/laminas/laminas-eventmanager/issues",
  1723. "rss": "https://github.com/laminas/laminas-eventmanager/releases.atom",
  1724. "source": "https://github.com/laminas/laminas-eventmanager"
  1725. },
  1726. "funding": [
  1727. {
  1728. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1729. "type": "community_bridge"
  1730. }
  1731. ],
  1732. "time": "2021-09-07T22:35:32+00:00"
  1733. },
  1734. {
  1735. "name": "laminas/laminas-zendframework-bridge",
  1736. "version": "1.4.1",
  1737. "source": {
  1738. "type": "git",
  1739. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  1740. "reference": "88bf037259869891afce6504cacc4f8a07b24d0f"
  1741. },
  1742. "dist": {
  1743. "type": "zip",
  1744. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/88bf037259869891afce6504cacc4f8a07b24d0f",
  1745. "reference": "88bf037259869891afce6504cacc4f8a07b24d0f",
  1746. "shasum": ""
  1747. },
  1748. "require": {
  1749. "php": "^7.3 || ~8.0.0 || ~8.1.0"
  1750. },
  1751. "require-dev": {
  1752. "phpunit/phpunit": "^9.3",
  1753. "psalm/plugin-phpunit": "^0.15.1",
  1754. "squizlabs/php_codesniffer": "^3.5",
  1755. "vimeo/psalm": "^4.6"
  1756. },
  1757. "type": "library",
  1758. "extra": {
  1759. "laminas": {
  1760. "module": "Laminas\\ZendFrameworkBridge"
  1761. }
  1762. },
  1763. "autoload": {
  1764. "files": [
  1765. "src/autoload.php"
  1766. ],
  1767. "psr-4": {
  1768. "Laminas\\ZendFrameworkBridge\\": "src//"
  1769. }
  1770. },
  1771. "notification-url": "https://packagist.org/downloads/",
  1772. "license": [
  1773. "BSD-3-Clause"
  1774. ],
  1775. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  1776. "keywords": [
  1777. "ZendFramework",
  1778. "autoloading",
  1779. "laminas",
  1780. "zf"
  1781. ],
  1782. "support": {
  1783. "forum": "https://discourse.laminas.dev/",
  1784. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  1785. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  1786. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  1787. },
  1788. "funding": [
  1789. {
  1790. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1791. "type": "community_bridge"
  1792. }
  1793. ],
  1794. "time": "2021-12-21T14:34:37+00:00"
  1795. },
  1796. {
  1797. "name": "monolog/monolog",
  1798. "version": "2.7.0",
  1799. "source": {
  1800. "type": "git",
  1801. "url": "https://github.com/Seldaek/monolog.git",
  1802. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524"
  1803. },
  1804. "dist": {
  1805. "type": "zip",
  1806. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5579edf28aee1190a798bfa5be8bc16c563bd524",
  1807. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524",
  1808. "shasum": ""
  1809. },
  1810. "require": {
  1811. "php": ">=7.2",
  1812. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1813. },
  1814. "provide": {
  1815. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1816. },
  1817. "require-dev": {
  1818. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1819. "doctrine/couchdb": "~1.0@dev",
  1820. "elasticsearch/elasticsearch": "^7 || ^8",
  1821. "ext-json": "*",
  1822. "graylog2/gelf-php": "^1.4.2",
  1823. "guzzlehttp/guzzle": "^7.4",
  1824. "guzzlehttp/psr7": "^2.2",
  1825. "mongodb/mongodb": "^1.8",
  1826. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1827. "php-console/php-console": "^3.1.3",
  1828. "phpspec/prophecy": "^1.15",
  1829. "phpstan/phpstan": "^0.12.91",
  1830. "phpunit/phpunit": "^8.5.14",
  1831. "predis/predis": "^1.1",
  1832. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1833. "ruflin/elastica": "^7",
  1834. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1835. "symfony/mailer": "^5.4 || ^6",
  1836. "symfony/mime": "^5.4 || ^6"
  1837. },
  1838. "suggest": {
  1839. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1840. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1841. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1842. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1843. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1844. "ext-mbstring": "Allow to work properly with unicode symbols",
  1845. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1846. "ext-openssl": "Required to send log messages using SSL",
  1847. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1848. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1849. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1850. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1851. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1852. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1853. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1854. },
  1855. "type": "library",
  1856. "extra": {
  1857. "branch-alias": {
  1858. "dev-main": "2.x-dev"
  1859. }
  1860. },
  1861. "autoload": {
  1862. "psr-4": {
  1863. "Monolog\\": "src/Monolog"
  1864. }
  1865. },
  1866. "notification-url": "https://packagist.org/downloads/",
  1867. "license": [
  1868. "MIT"
  1869. ],
  1870. "authors": [
  1871. {
  1872. "name": "Jordi Boggiano",
  1873. "email": "j.boggiano@seld.be",
  1874. "homepage": "https://seld.be"
  1875. }
  1876. ],
  1877. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1878. "homepage": "https://github.com/Seldaek/monolog",
  1879. "keywords": [
  1880. "log",
  1881. "logging",
  1882. "psr-3"
  1883. ],
  1884. "support": {
  1885. "issues": "https://github.com/Seldaek/monolog/issues",
  1886. "source": "https://github.com/Seldaek/monolog/tree/2.7.0"
  1887. },
  1888. "funding": [
  1889. {
  1890. "url": "https://github.com/Seldaek",
  1891. "type": "github"
  1892. },
  1893. {
  1894. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1895. "type": "tidelift"
  1896. }
  1897. ],
  1898. "time": "2022-06-09T08:59:12+00:00"
  1899. },
  1900. {
  1901. "name": "phpdocumentor/reflection-common",
  1902. "version": "2.2.0",
  1903. "source": {
  1904. "type": "git",
  1905. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1906. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1907. },
  1908. "dist": {
  1909. "type": "zip",
  1910. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1911. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1912. "shasum": ""
  1913. },
  1914. "require": {
  1915. "php": "^7.2 || ^8.0"
  1916. },
  1917. "type": "library",
  1918. "extra": {
  1919. "branch-alias": {
  1920. "dev-2.x": "2.x-dev"
  1921. }
  1922. },
  1923. "autoload": {
  1924. "psr-4": {
  1925. "phpDocumentor\\Reflection\\": "src/"
  1926. }
  1927. },
  1928. "notification-url": "https://packagist.org/downloads/",
  1929. "license": [
  1930. "MIT"
  1931. ],
  1932. "authors": [
  1933. {
  1934. "name": "Jaap van Otterdijk",
  1935. "email": "opensource@ijaap.nl"
  1936. }
  1937. ],
  1938. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1939. "homepage": "http://www.phpdoc.org",
  1940. "keywords": [
  1941. "FQSEN",
  1942. "phpDocumentor",
  1943. "phpdoc",
  1944. "reflection",
  1945. "static analysis"
  1946. ],
  1947. "support": {
  1948. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1949. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1950. },
  1951. "time": "2020-06-27T09:03:43+00:00"
  1952. },
  1953. {
  1954. "name": "phpdocumentor/reflection-docblock",
  1955. "version": "5.3.0",
  1956. "source": {
  1957. "type": "git",
  1958. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1959. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  1960. },
  1961. "dist": {
  1962. "type": "zip",
  1963. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  1964. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  1965. "shasum": ""
  1966. },
  1967. "require": {
  1968. "ext-filter": "*",
  1969. "php": "^7.2 || ^8.0",
  1970. "phpdocumentor/reflection-common": "^2.2",
  1971. "phpdocumentor/type-resolver": "^1.3",
  1972. "webmozart/assert": "^1.9.1"
  1973. },
  1974. "require-dev": {
  1975. "mockery/mockery": "~1.3.2",
  1976. "psalm/phar": "^4.8"
  1977. },
  1978. "type": "library",
  1979. "extra": {
  1980. "branch-alias": {
  1981. "dev-master": "5.x-dev"
  1982. }
  1983. },
  1984. "autoload": {
  1985. "psr-4": {
  1986. "phpDocumentor\\Reflection\\": "src"
  1987. }
  1988. },
  1989. "notification-url": "https://packagist.org/downloads/",
  1990. "license": [
  1991. "MIT"
  1992. ],
  1993. "authors": [
  1994. {
  1995. "name": "Mike van Riel",
  1996. "email": "me@mikevanriel.com"
  1997. },
  1998. {
  1999. "name": "Jaap van Otterdijk",
  2000. "email": "account@ijaap.nl"
  2001. }
  2002. ],
  2003. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2004. "support": {
  2005. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2006. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  2007. },
  2008. "time": "2021-10-19T17:43:47+00:00"
  2009. },
  2010. {
  2011. "name": "phpdocumentor/type-resolver",
  2012. "version": "1.6.1",
  2013. "source": {
  2014. "type": "git",
  2015. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2016. "reference": "77a32518733312af16a44300404e945338981de3"
  2017. },
  2018. "dist": {
  2019. "type": "zip",
  2020. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  2021. "reference": "77a32518733312af16a44300404e945338981de3",
  2022. "shasum": ""
  2023. },
  2024. "require": {
  2025. "php": "^7.2 || ^8.0",
  2026. "phpdocumentor/reflection-common": "^2.0"
  2027. },
  2028. "require-dev": {
  2029. "ext-tokenizer": "*",
  2030. "psalm/phar": "^4.8"
  2031. },
  2032. "type": "library",
  2033. "extra": {
  2034. "branch-alias": {
  2035. "dev-1.x": "1.x-dev"
  2036. }
  2037. },
  2038. "autoload": {
  2039. "psr-4": {
  2040. "phpDocumentor\\Reflection\\": "src"
  2041. }
  2042. },
  2043. "notification-url": "https://packagist.org/downloads/",
  2044. "license": [
  2045. "MIT"
  2046. ],
  2047. "authors": [
  2048. {
  2049. "name": "Mike van Riel",
  2050. "email": "me@mikevanriel.com"
  2051. }
  2052. ],
  2053. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2054. "support": {
  2055. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2056. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  2057. },
  2058. "time": "2022-03-15T21:29:03+00:00"
  2059. },
  2060. {
  2061. "name": "psr/cache",
  2062. "version": "1.0.1",
  2063. "source": {
  2064. "type": "git",
  2065. "url": "https://github.com/php-fig/cache.git",
  2066. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2067. },
  2068. "dist": {
  2069. "type": "zip",
  2070. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2071. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2072. "shasum": ""
  2073. },
  2074. "require": {
  2075. "php": ">=5.3.0"
  2076. },
  2077. "type": "library",
  2078. "extra": {
  2079. "branch-alias": {
  2080. "dev-master": "1.0.x-dev"
  2081. }
  2082. },
  2083. "autoload": {
  2084. "psr-4": {
  2085. "Psr\\Cache\\": "src/"
  2086. }
  2087. },
  2088. "notification-url": "https://packagist.org/downloads/",
  2089. "license": [
  2090. "MIT"
  2091. ],
  2092. "authors": [
  2093. {
  2094. "name": "PHP-FIG",
  2095. "homepage": "http://www.php-fig.org/"
  2096. }
  2097. ],
  2098. "description": "Common interface for caching libraries",
  2099. "keywords": [
  2100. "cache",
  2101. "psr",
  2102. "psr-6"
  2103. ],
  2104. "support": {
  2105. "source": "https://github.com/php-fig/cache/tree/master"
  2106. },
  2107. "time": "2016-08-06T20:24:11+00:00"
  2108. },
  2109. {
  2110. "name": "psr/container",
  2111. "version": "1.1.1",
  2112. "source": {
  2113. "type": "git",
  2114. "url": "https://github.com/php-fig/container.git",
  2115. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  2116. },
  2117. "dist": {
  2118. "type": "zip",
  2119. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  2120. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  2121. "shasum": ""
  2122. },
  2123. "require": {
  2124. "php": ">=7.2.0"
  2125. },
  2126. "type": "library",
  2127. "autoload": {
  2128. "psr-4": {
  2129. "Psr\\Container\\": "src/"
  2130. }
  2131. },
  2132. "notification-url": "https://packagist.org/downloads/",
  2133. "license": [
  2134. "MIT"
  2135. ],
  2136. "authors": [
  2137. {
  2138. "name": "PHP-FIG",
  2139. "homepage": "https://www.php-fig.org/"
  2140. }
  2141. ],
  2142. "description": "Common Container Interface (PHP FIG PSR-11)",
  2143. "homepage": "https://github.com/php-fig/container",
  2144. "keywords": [
  2145. "PSR-11",
  2146. "container",
  2147. "container-interface",
  2148. "container-interop",
  2149. "psr"
  2150. ],
  2151. "support": {
  2152. "issues": "https://github.com/php-fig/container/issues",
  2153. "source": "https://github.com/php-fig/container/tree/1.1.1"
  2154. },
  2155. "time": "2021-03-05T17:36:06+00:00"
  2156. },
  2157. {
  2158. "name": "psr/event-dispatcher",
  2159. "version": "1.0.0",
  2160. "source": {
  2161. "type": "git",
  2162. "url": "https://github.com/php-fig/event-dispatcher.git",
  2163. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2164. },
  2165. "dist": {
  2166. "type": "zip",
  2167. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2168. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2169. "shasum": ""
  2170. },
  2171. "require": {
  2172. "php": ">=7.2.0"
  2173. },
  2174. "type": "library",
  2175. "extra": {
  2176. "branch-alias": {
  2177. "dev-master": "1.0.x-dev"
  2178. }
  2179. },
  2180. "autoload": {
  2181. "psr-4": {
  2182. "Psr\\EventDispatcher\\": "src/"
  2183. }
  2184. },
  2185. "notification-url": "https://packagist.org/downloads/",
  2186. "license": [
  2187. "MIT"
  2188. ],
  2189. "authors": [
  2190. {
  2191. "name": "PHP-FIG",
  2192. "homepage": "http://www.php-fig.org/"
  2193. }
  2194. ],
  2195. "description": "Standard interfaces for event handling.",
  2196. "keywords": [
  2197. "events",
  2198. "psr",
  2199. "psr-14"
  2200. ],
  2201. "support": {
  2202. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2203. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2204. },
  2205. "time": "2019-01-08T18:20:26+00:00"
  2206. },
  2207. {
  2208. "name": "psr/link",
  2209. "version": "1.0.0",
  2210. "source": {
  2211. "type": "git",
  2212. "url": "https://github.com/php-fig/link.git",
  2213. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  2214. },
  2215. "dist": {
  2216. "type": "zip",
  2217. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  2218. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  2219. "shasum": ""
  2220. },
  2221. "require": {
  2222. "php": ">=5.3.0"
  2223. },
  2224. "type": "library",
  2225. "extra": {
  2226. "branch-alias": {
  2227. "dev-master": "1.0.x-dev"
  2228. }
  2229. },
  2230. "autoload": {
  2231. "psr-4": {
  2232. "Psr\\Link\\": "src/"
  2233. }
  2234. },
  2235. "notification-url": "https://packagist.org/downloads/",
  2236. "license": [
  2237. "MIT"
  2238. ],
  2239. "authors": [
  2240. {
  2241. "name": "PHP-FIG",
  2242. "homepage": "http://www.php-fig.org/"
  2243. }
  2244. ],
  2245. "description": "Common interfaces for HTTP links",
  2246. "keywords": [
  2247. "http",
  2248. "http-link",
  2249. "link",
  2250. "psr",
  2251. "psr-13",
  2252. "rest"
  2253. ],
  2254. "support": {
  2255. "source": "https://github.com/php-fig/link/tree/master"
  2256. },
  2257. "time": "2016-10-28T16:06:13+00:00"
  2258. },
  2259. {
  2260. "name": "psr/log",
  2261. "version": "1.1.4",
  2262. "source": {
  2263. "type": "git",
  2264. "url": "https://github.com/php-fig/log.git",
  2265. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2266. },
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2270. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2271. "shasum": ""
  2272. },
  2273. "require": {
  2274. "php": ">=5.3.0"
  2275. },
  2276. "type": "library",
  2277. "extra": {
  2278. "branch-alias": {
  2279. "dev-master": "1.1.x-dev"
  2280. }
  2281. },
  2282. "autoload": {
  2283. "psr-4": {
  2284. "Psr\\Log\\": "Psr/Log/"
  2285. }
  2286. },
  2287. "notification-url": "https://packagist.org/downloads/",
  2288. "license": [
  2289. "MIT"
  2290. ],
  2291. "authors": [
  2292. {
  2293. "name": "PHP-FIG",
  2294. "homepage": "https://www.php-fig.org/"
  2295. }
  2296. ],
  2297. "description": "Common interface for logging libraries",
  2298. "homepage": "https://github.com/php-fig/log",
  2299. "keywords": [
  2300. "log",
  2301. "psr",
  2302. "psr-3"
  2303. ],
  2304. "support": {
  2305. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2306. },
  2307. "time": "2021-05-03T11:20:27+00:00"
  2308. },
  2309. {
  2310. "name": "sensio/framework-extra-bundle",
  2311. "version": "v6.2.6",
  2312. "source": {
  2313. "type": "git",
  2314. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2315. "reference": "6bd976c99ef3f78e31c9490a10ba6dd8901076eb"
  2316. },
  2317. "dist": {
  2318. "type": "zip",
  2319. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/6bd976c99ef3f78e31c9490a10ba6dd8901076eb",
  2320. "reference": "6bd976c99ef3f78e31c9490a10ba6dd8901076eb",
  2321. "shasum": ""
  2322. },
  2323. "require": {
  2324. "doctrine/annotations": "^1.0",
  2325. "php": ">=7.2.5",
  2326. "symfony/config": "^4.4|^5.0|^6.0",
  2327. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2328. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  2329. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  2330. },
  2331. "conflict": {
  2332. "doctrine/doctrine-cache-bundle": "<1.3.1",
  2333. "doctrine/persistence": "<1.3"
  2334. },
  2335. "require-dev": {
  2336. "doctrine/dbal": "^2.10|^3.0",
  2337. "doctrine/doctrine-bundle": "^1.11|^2.0",
  2338. "doctrine/orm": "^2.5",
  2339. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  2340. "symfony/doctrine-bridge": "^4.4|^5.0|^6.0",
  2341. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  2342. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2343. "symfony/finder": "^4.4|^5.0|^6.0",
  2344. "symfony/monolog-bridge": "^4.0|^5.0|^6.0",
  2345. "symfony/monolog-bundle": "^3.2",
  2346. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  2347. "symfony/security-bundle": "^4.4|^5.0|^6.0",
  2348. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  2349. "symfony/yaml": "^4.4|^5.0|^6.0",
  2350. "twig/twig": "^1.34|^2.4|^3.0"
  2351. },
  2352. "type": "symfony-bundle",
  2353. "extra": {
  2354. "branch-alias": {
  2355. "dev-master": "6.1.x-dev"
  2356. }
  2357. },
  2358. "autoload": {
  2359. "psr-4": {
  2360. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  2361. },
  2362. "exclude-from-classmap": [
  2363. "/tests/"
  2364. ]
  2365. },
  2366. "notification-url": "https://packagist.org/downloads/",
  2367. "license": [
  2368. "MIT"
  2369. ],
  2370. "authors": [
  2371. {
  2372. "name": "Fabien Potencier",
  2373. "email": "fabien@symfony.com"
  2374. }
  2375. ],
  2376. "description": "This bundle provides a way to configure your controllers with annotations",
  2377. "keywords": [
  2378. "annotations",
  2379. "controllers"
  2380. ],
  2381. "support": {
  2382. "issues": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/issues",
  2383. "source": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/tree/v6.2.6"
  2384. },
  2385. "time": "2022-01-14T11:51:13+00:00"
  2386. },
  2387. {
  2388. "name": "symfony/apache-pack",
  2389. "version": "v1.0.1",
  2390. "source": {
  2391. "type": "git",
  2392. "url": "https://github.com/symfony/apache-pack.git",
  2393. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2394. },
  2395. "dist": {
  2396. "type": "zip",
  2397. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2398. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2399. "shasum": ""
  2400. },
  2401. "type": "symfony-pack",
  2402. "notification-url": "https://packagist.org/downloads/",
  2403. "license": [
  2404. "MIT"
  2405. ],
  2406. "description": "A pack for Apache support in Symfony",
  2407. "support": {
  2408. "issues": "https://github.com/symfony/apache-pack/issues",
  2409. "source": "https://github.com/symfony/apache-pack/tree/master"
  2410. },
  2411. "time": "2017-12-12T01:46:35+00:00"
  2412. },
  2413. {
  2414. "name": "symfony/asset",
  2415. "version": "v5.4.7",
  2416. "source": {
  2417. "type": "git",
  2418. "url": "https://github.com/symfony/asset.git",
  2419. "reference": "4affdca3da5f380caa27a338269b36ac288b3981"
  2420. },
  2421. "dist": {
  2422. "type": "zip",
  2423. "url": "https://api.github.com/repos/symfony/asset/zipball/4affdca3da5f380caa27a338269b36ac288b3981",
  2424. "reference": "4affdca3da5f380caa27a338269b36ac288b3981",
  2425. "shasum": ""
  2426. },
  2427. "require": {
  2428. "php": ">=7.2.5",
  2429. "symfony/deprecation-contracts": "^2.1|^3",
  2430. "symfony/polyfill-php80": "^1.16"
  2431. },
  2432. "conflict": {
  2433. "symfony/http-foundation": "<5.3"
  2434. },
  2435. "require-dev": {
  2436. "symfony/http-client": "^4.4|^5.0|^6.0",
  2437. "symfony/http-foundation": "^5.3|^6.0",
  2438. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  2439. },
  2440. "suggest": {
  2441. "symfony/http-foundation": ""
  2442. },
  2443. "type": "library",
  2444. "autoload": {
  2445. "psr-4": {
  2446. "Symfony\\Component\\Asset\\": ""
  2447. },
  2448. "exclude-from-classmap": [
  2449. "/Tests/"
  2450. ]
  2451. },
  2452. "notification-url": "https://packagist.org/downloads/",
  2453. "license": [
  2454. "MIT"
  2455. ],
  2456. "authors": [
  2457. {
  2458. "name": "Fabien Potencier",
  2459. "email": "fabien@symfony.com"
  2460. },
  2461. {
  2462. "name": "Symfony Community",
  2463. "homepage": "https://symfony.com/contributors"
  2464. }
  2465. ],
  2466. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2467. "homepage": "https://symfony.com",
  2468. "support": {
  2469. "source": "https://github.com/symfony/asset/tree/v5.4.7"
  2470. },
  2471. "funding": [
  2472. {
  2473. "url": "https://symfony.com/sponsor",
  2474. "type": "custom"
  2475. },
  2476. {
  2477. "url": "https://github.com/fabpot",
  2478. "type": "github"
  2479. },
  2480. {
  2481. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2482. "type": "tidelift"
  2483. }
  2484. ],
  2485. "time": "2022-03-18T16:00:30+00:00"
  2486. },
  2487. {
  2488. "name": "symfony/cache",
  2489. "version": "v5.4.10",
  2490. "source": {
  2491. "type": "git",
  2492. "url": "https://github.com/symfony/cache.git",
  2493. "reference": "c4e387b739022fd4b20abd8edb2143c44c5daa14"
  2494. },
  2495. "dist": {
  2496. "type": "zip",
  2497. "url": "https://api.github.com/repos/symfony/cache/zipball/c4e387b739022fd4b20abd8edb2143c44c5daa14",
  2498. "reference": "c4e387b739022fd4b20abd8edb2143c44c5daa14",
  2499. "shasum": ""
  2500. },
  2501. "require": {
  2502. "php": ">=7.2.5",
  2503. "psr/cache": "^1.0|^2.0",
  2504. "psr/log": "^1.1|^2|^3",
  2505. "symfony/cache-contracts": "^1.1.7|^2",
  2506. "symfony/deprecation-contracts": "^2.1|^3",
  2507. "symfony/polyfill-php73": "^1.9",
  2508. "symfony/polyfill-php80": "^1.16",
  2509. "symfony/service-contracts": "^1.1|^2|^3",
  2510. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  2511. },
  2512. "conflict": {
  2513. "doctrine/dbal": "<2.13.1",
  2514. "symfony/dependency-injection": "<4.4",
  2515. "symfony/http-kernel": "<4.4",
  2516. "symfony/var-dumper": "<4.4"
  2517. },
  2518. "provide": {
  2519. "psr/cache-implementation": "1.0|2.0",
  2520. "psr/simple-cache-implementation": "1.0|2.0",
  2521. "symfony/cache-implementation": "1.0|2.0"
  2522. },
  2523. "require-dev": {
  2524. "cache/integration-tests": "dev-master",
  2525. "doctrine/cache": "^1.6|^2.0",
  2526. "doctrine/dbal": "^2.13.1|^3.0",
  2527. "predis/predis": "^1.1",
  2528. "psr/simple-cache": "^1.0|^2.0",
  2529. "symfony/config": "^4.4|^5.0|^6.0",
  2530. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2531. "symfony/filesystem": "^4.4|^5.0|^6.0",
  2532. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  2533. "symfony/messenger": "^4.4|^5.0|^6.0",
  2534. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2535. },
  2536. "type": "library",
  2537. "autoload": {
  2538. "psr-4": {
  2539. "Symfony\\Component\\Cache\\": ""
  2540. },
  2541. "exclude-from-classmap": [
  2542. "/Tests/"
  2543. ]
  2544. },
  2545. "notification-url": "https://packagist.org/downloads/",
  2546. "license": [
  2547. "MIT"
  2548. ],
  2549. "authors": [
  2550. {
  2551. "name": "Nicolas Grekas",
  2552. "email": "p@tchwork.com"
  2553. },
  2554. {
  2555. "name": "Symfony Community",
  2556. "homepage": "https://symfony.com/contributors"
  2557. }
  2558. ],
  2559. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  2560. "homepage": "https://symfony.com",
  2561. "keywords": [
  2562. "caching",
  2563. "psr6"
  2564. ],
  2565. "support": {
  2566. "source": "https://github.com/symfony/cache/tree/v5.4.10"
  2567. },
  2568. "funding": [
  2569. {
  2570. "url": "https://symfony.com/sponsor",
  2571. "type": "custom"
  2572. },
  2573. {
  2574. "url": "https://github.com/fabpot",
  2575. "type": "github"
  2576. },
  2577. {
  2578. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2579. "type": "tidelift"
  2580. }
  2581. ],
  2582. "time": "2022-06-19T12:03:50+00:00"
  2583. },
  2584. {
  2585. "name": "symfony/cache-contracts",
  2586. "version": "v2.5.2",
  2587. "source": {
  2588. "type": "git",
  2589. "url": "https://github.com/symfony/cache-contracts.git",
  2590. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  2591. },
  2592. "dist": {
  2593. "type": "zip",
  2594. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2595. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2596. "shasum": ""
  2597. },
  2598. "require": {
  2599. "php": ">=7.2.5",
  2600. "psr/cache": "^1.0|^2.0|^3.0"
  2601. },
  2602. "suggest": {
  2603. "symfony/cache-implementation": ""
  2604. },
  2605. "type": "library",
  2606. "extra": {
  2607. "branch-alias": {
  2608. "dev-main": "2.5-dev"
  2609. },
  2610. "thanks": {
  2611. "name": "symfony/contracts",
  2612. "url": "https://github.com/symfony/contracts"
  2613. }
  2614. },
  2615. "autoload": {
  2616. "psr-4": {
  2617. "Symfony\\Contracts\\Cache\\": ""
  2618. }
  2619. },
  2620. "notification-url": "https://packagist.org/downloads/",
  2621. "license": [
  2622. "MIT"
  2623. ],
  2624. "authors": [
  2625. {
  2626. "name": "Nicolas Grekas",
  2627. "email": "p@tchwork.com"
  2628. },
  2629. {
  2630. "name": "Symfony Community",
  2631. "homepage": "https://symfony.com/contributors"
  2632. }
  2633. ],
  2634. "description": "Generic abstractions related to caching",
  2635. "homepage": "https://symfony.com",
  2636. "keywords": [
  2637. "abstractions",
  2638. "contracts",
  2639. "decoupling",
  2640. "interfaces",
  2641. "interoperability",
  2642. "standards"
  2643. ],
  2644. "support": {
  2645. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  2646. },
  2647. "funding": [
  2648. {
  2649. "url": "https://symfony.com/sponsor",
  2650. "type": "custom"
  2651. },
  2652. {
  2653. "url": "https://github.com/fabpot",
  2654. "type": "github"
  2655. },
  2656. {
  2657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2658. "type": "tidelift"
  2659. }
  2660. ],
  2661. "time": "2022-01-02T09:53:40+00:00"
  2662. },
  2663. {
  2664. "name": "symfony/config",
  2665. "version": "v5.4.9",
  2666. "source": {
  2667. "type": "git",
  2668. "url": "https://github.com/symfony/config.git",
  2669. "reference": "8f551fe22672ac7ab2c95fe46d899f960ed4d979"
  2670. },
  2671. "dist": {
  2672. "type": "zip",
  2673. "url": "https://api.github.com/repos/symfony/config/zipball/8f551fe22672ac7ab2c95fe46d899f960ed4d979",
  2674. "reference": "8f551fe22672ac7ab2c95fe46d899f960ed4d979",
  2675. "shasum": ""
  2676. },
  2677. "require": {
  2678. "php": ">=7.2.5",
  2679. "symfony/deprecation-contracts": "^2.1|^3",
  2680. "symfony/filesystem": "^4.4|^5.0|^6.0",
  2681. "symfony/polyfill-ctype": "~1.8",
  2682. "symfony/polyfill-php80": "^1.16",
  2683. "symfony/polyfill-php81": "^1.22"
  2684. },
  2685. "conflict": {
  2686. "symfony/finder": "<4.4"
  2687. },
  2688. "require-dev": {
  2689. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2690. "symfony/finder": "^4.4|^5.0|^6.0",
  2691. "symfony/messenger": "^4.4|^5.0|^6.0",
  2692. "symfony/service-contracts": "^1.1|^2|^3",
  2693. "symfony/yaml": "^4.4|^5.0|^6.0"
  2694. },
  2695. "suggest": {
  2696. "symfony/yaml": "To use the yaml reference dumper"
  2697. },
  2698. "type": "library",
  2699. "autoload": {
  2700. "psr-4": {
  2701. "Symfony\\Component\\Config\\": ""
  2702. },
  2703. "exclude-from-classmap": [
  2704. "/Tests/"
  2705. ]
  2706. },
  2707. "notification-url": "https://packagist.org/downloads/",
  2708. "license": [
  2709. "MIT"
  2710. ],
  2711. "authors": [
  2712. {
  2713. "name": "Fabien Potencier",
  2714. "email": "fabien@symfony.com"
  2715. },
  2716. {
  2717. "name": "Symfony Community",
  2718. "homepage": "https://symfony.com/contributors"
  2719. }
  2720. ],
  2721. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2722. "homepage": "https://symfony.com",
  2723. "support": {
  2724. "source": "https://github.com/symfony/config/tree/v5.4.9"
  2725. },
  2726. "funding": [
  2727. {
  2728. "url": "https://symfony.com/sponsor",
  2729. "type": "custom"
  2730. },
  2731. {
  2732. "url": "https://github.com/fabpot",
  2733. "type": "github"
  2734. },
  2735. {
  2736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2737. "type": "tidelift"
  2738. }
  2739. ],
  2740. "time": "2022-05-17T10:39:36+00:00"
  2741. },
  2742. {
  2743. "name": "symfony/console",
  2744. "version": "v5.4.10",
  2745. "source": {
  2746. "type": "git",
  2747. "url": "https://github.com/symfony/console.git",
  2748. "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000"
  2749. },
  2750. "dist": {
  2751. "type": "zip",
  2752. "url": "https://api.github.com/repos/symfony/console/zipball/4d671ab4ddac94ee439ea73649c69d9d200b5000",
  2753. "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000",
  2754. "shasum": ""
  2755. },
  2756. "require": {
  2757. "php": ">=7.2.5",
  2758. "symfony/deprecation-contracts": "^2.1|^3",
  2759. "symfony/polyfill-mbstring": "~1.0",
  2760. "symfony/polyfill-php73": "^1.9",
  2761. "symfony/polyfill-php80": "^1.16",
  2762. "symfony/service-contracts": "^1.1|^2|^3",
  2763. "symfony/string": "^5.1|^6.0"
  2764. },
  2765. "conflict": {
  2766. "psr/log": ">=3",
  2767. "symfony/dependency-injection": "<4.4",
  2768. "symfony/dotenv": "<5.1",
  2769. "symfony/event-dispatcher": "<4.4",
  2770. "symfony/lock": "<4.4",
  2771. "symfony/process": "<4.4"
  2772. },
  2773. "provide": {
  2774. "psr/log-implementation": "1.0|2.0"
  2775. },
  2776. "require-dev": {
  2777. "psr/log": "^1|^2",
  2778. "symfony/config": "^4.4|^5.0|^6.0",
  2779. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2780. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2781. "symfony/lock": "^4.4|^5.0|^6.0",
  2782. "symfony/process": "^4.4|^5.0|^6.0",
  2783. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2784. },
  2785. "suggest": {
  2786. "psr/log": "For using the console logger",
  2787. "symfony/event-dispatcher": "",
  2788. "symfony/lock": "",
  2789. "symfony/process": ""
  2790. },
  2791. "type": "library",
  2792. "autoload": {
  2793. "psr-4": {
  2794. "Symfony\\Component\\Console\\": ""
  2795. },
  2796. "exclude-from-classmap": [
  2797. "/Tests/"
  2798. ]
  2799. },
  2800. "notification-url": "https://packagist.org/downloads/",
  2801. "license": [
  2802. "MIT"
  2803. ],
  2804. "authors": [
  2805. {
  2806. "name": "Fabien Potencier",
  2807. "email": "fabien@symfony.com"
  2808. },
  2809. {
  2810. "name": "Symfony Community",
  2811. "homepage": "https://symfony.com/contributors"
  2812. }
  2813. ],
  2814. "description": "Eases the creation of beautiful and testable command line interfaces",
  2815. "homepage": "https://symfony.com",
  2816. "keywords": [
  2817. "cli",
  2818. "command line",
  2819. "console",
  2820. "terminal"
  2821. ],
  2822. "support": {
  2823. "source": "https://github.com/symfony/console/tree/v5.4.10"
  2824. },
  2825. "funding": [
  2826. {
  2827. "url": "https://symfony.com/sponsor",
  2828. "type": "custom"
  2829. },
  2830. {
  2831. "url": "https://github.com/fabpot",
  2832. "type": "github"
  2833. },
  2834. {
  2835. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2836. "type": "tidelift"
  2837. }
  2838. ],
  2839. "time": "2022-06-26T13:00:04+00:00"
  2840. },
  2841. {
  2842. "name": "symfony/dependency-injection",
  2843. "version": "v5.4.10",
  2844. "source": {
  2845. "type": "git",
  2846. "url": "https://github.com/symfony/dependency-injection.git",
  2847. "reference": "88d1c0d38c2e60f757fa11d89cfc885f0b7f5171"
  2848. },
  2849. "dist": {
  2850. "type": "zip",
  2851. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/88d1c0d38c2e60f757fa11d89cfc885f0b7f5171",
  2852. "reference": "88d1c0d38c2e60f757fa11d89cfc885f0b7f5171",
  2853. "shasum": ""
  2854. },
  2855. "require": {
  2856. "php": ">=7.2.5",
  2857. "psr/container": "^1.1.1",
  2858. "symfony/deprecation-contracts": "^2.1|^3",
  2859. "symfony/polyfill-php80": "^1.16",
  2860. "symfony/polyfill-php81": "^1.22",
  2861. "symfony/service-contracts": "^1.1.6|^2"
  2862. },
  2863. "conflict": {
  2864. "ext-psr": "<1.1|>=2",
  2865. "symfony/config": "<5.3",
  2866. "symfony/finder": "<4.4",
  2867. "symfony/proxy-manager-bridge": "<4.4",
  2868. "symfony/yaml": "<4.4.26"
  2869. },
  2870. "provide": {
  2871. "psr/container-implementation": "1.0",
  2872. "symfony/service-implementation": "1.0|2.0"
  2873. },
  2874. "require-dev": {
  2875. "symfony/config": "^5.3|^6.0",
  2876. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2877. "symfony/yaml": "^4.4.26|^5.0|^6.0"
  2878. },
  2879. "suggest": {
  2880. "symfony/config": "",
  2881. "symfony/expression-language": "For using expressions in service container configuration",
  2882. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  2883. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  2884. "symfony/yaml": ""
  2885. },
  2886. "type": "library",
  2887. "autoload": {
  2888. "psr-4": {
  2889. "Symfony\\Component\\DependencyInjection\\": ""
  2890. },
  2891. "exclude-from-classmap": [
  2892. "/Tests/"
  2893. ]
  2894. },
  2895. "notification-url": "https://packagist.org/downloads/",
  2896. "license": [
  2897. "MIT"
  2898. ],
  2899. "authors": [
  2900. {
  2901. "name": "Fabien Potencier",
  2902. "email": "fabien@symfony.com"
  2903. },
  2904. {
  2905. "name": "Symfony Community",
  2906. "homepage": "https://symfony.com/contributors"
  2907. }
  2908. ],
  2909. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  2910. "homepage": "https://symfony.com",
  2911. "support": {
  2912. "source": "https://github.com/symfony/dependency-injection/tree/v5.4.10"
  2913. },
  2914. "funding": [
  2915. {
  2916. "url": "https://symfony.com/sponsor",
  2917. "type": "custom"
  2918. },
  2919. {
  2920. "url": "https://github.com/fabpot",
  2921. "type": "github"
  2922. },
  2923. {
  2924. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2925. "type": "tidelift"
  2926. }
  2927. ],
  2928. "time": "2022-06-26T13:00:04+00:00"
  2929. },
  2930. {
  2931. "name": "symfony/deprecation-contracts",
  2932. "version": "v2.5.2",
  2933. "source": {
  2934. "type": "git",
  2935. "url": "https://github.com/symfony/deprecation-contracts.git",
  2936. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  2937. },
  2938. "dist": {
  2939. "type": "zip",
  2940. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2941. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2942. "shasum": ""
  2943. },
  2944. "require": {
  2945. "php": ">=7.1"
  2946. },
  2947. "type": "library",
  2948. "extra": {
  2949. "branch-alias": {
  2950. "dev-main": "2.5-dev"
  2951. },
  2952. "thanks": {
  2953. "name": "symfony/contracts",
  2954. "url": "https://github.com/symfony/contracts"
  2955. }
  2956. },
  2957. "autoload": {
  2958. "files": [
  2959. "function.php"
  2960. ]
  2961. },
  2962. "notification-url": "https://packagist.org/downloads/",
  2963. "license": [
  2964. "MIT"
  2965. ],
  2966. "authors": [
  2967. {
  2968. "name": "Nicolas Grekas",
  2969. "email": "p@tchwork.com"
  2970. },
  2971. {
  2972. "name": "Symfony Community",
  2973. "homepage": "https://symfony.com/contributors"
  2974. }
  2975. ],
  2976. "description": "A generic function and convention to trigger deprecation notices",
  2977. "homepage": "https://symfony.com",
  2978. "support": {
  2979. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  2980. },
  2981. "funding": [
  2982. {
  2983. "url": "https://symfony.com/sponsor",
  2984. "type": "custom"
  2985. },
  2986. {
  2987. "url": "https://github.com/fabpot",
  2988. "type": "github"
  2989. },
  2990. {
  2991. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2992. "type": "tidelift"
  2993. }
  2994. ],
  2995. "time": "2022-01-02T09:53:40+00:00"
  2996. },
  2997. {
  2998. "name": "symfony/doctrine-bridge",
  2999. "version": "v5.4.10",
  3000. "source": {
  3001. "type": "git",
  3002. "url": "https://github.com/symfony/doctrine-bridge.git",
  3003. "reference": "bb76331d8e9e27843e630ad4d967dc4d23962fa3"
  3004. },
  3005. "dist": {
  3006. "type": "zip",
  3007. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/bb76331d8e9e27843e630ad4d967dc4d23962fa3",
  3008. "reference": "bb76331d8e9e27843e630ad4d967dc4d23962fa3",
  3009. "shasum": ""
  3010. },
  3011. "require": {
  3012. "doctrine/event-manager": "~1.0",
  3013. "doctrine/persistence": "^2|^3",
  3014. "php": ">=7.2.5",
  3015. "symfony/deprecation-contracts": "^2.1|^3",
  3016. "symfony/polyfill-ctype": "~1.8",
  3017. "symfony/polyfill-mbstring": "~1.0",
  3018. "symfony/polyfill-php80": "^1.16",
  3019. "symfony/service-contracts": "^1.1|^2|^3"
  3020. },
  3021. "conflict": {
  3022. "doctrine/dbal": "<2.13.1",
  3023. "doctrine/lexer": "<1.1",
  3024. "doctrine/orm": "<2.7.4",
  3025. "phpunit/phpunit": "<5.4.3",
  3026. "symfony/cache": "<5.4",
  3027. "symfony/dependency-injection": "<4.4",
  3028. "symfony/form": "<5.1",
  3029. "symfony/http-kernel": "<5",
  3030. "symfony/messenger": "<4.4",
  3031. "symfony/property-info": "<5",
  3032. "symfony/proxy-manager-bridge": "<4.4.19",
  3033. "symfony/security-bundle": "<5",
  3034. "symfony/security-core": "<5.3",
  3035. "symfony/validator": "<5.2"
  3036. },
  3037. "require-dev": {
  3038. "doctrine/annotations": "^1.10.4",
  3039. "doctrine/collections": "~1.0",
  3040. "doctrine/data-fixtures": "^1.1",
  3041. "doctrine/dbal": "^2.13.1|^3.0",
  3042. "doctrine/orm": "^2.7.4",
  3043. "psr/log": "^1|^2|^3",
  3044. "symfony/cache": "^5.4|^6.0",
  3045. "symfony/config": "^4.4|^5.0|^6.0",
  3046. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3047. "symfony/doctrine-messenger": "^5.1|^6.0",
  3048. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3049. "symfony/form": "^5.4.9|^6.0.9",
  3050. "symfony/http-kernel": "^5.0|^6.0",
  3051. "symfony/messenger": "^4.4|^5.0|^6.0",
  3052. "symfony/property-access": "^4.4|^5.0|^6.0",
  3053. "symfony/property-info": "^5.0|^6.0",
  3054. "symfony/proxy-manager-bridge": "^4.4|^5.0|^6.0",
  3055. "symfony/security-core": "^5.3|^6.0",
  3056. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3057. "symfony/translation": "^4.4|^5.0|^6.0",
  3058. "symfony/uid": "^5.1|^6.0",
  3059. "symfony/validator": "^5.2|^6.0",
  3060. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3061. },
  3062. "suggest": {
  3063. "doctrine/data-fixtures": "",
  3064. "doctrine/dbal": "",
  3065. "doctrine/orm": "",
  3066. "symfony/form": "",
  3067. "symfony/property-info": "",
  3068. "symfony/validator": ""
  3069. },
  3070. "type": "symfony-bridge",
  3071. "autoload": {
  3072. "psr-4": {
  3073. "Symfony\\Bridge\\Doctrine\\": ""
  3074. },
  3075. "exclude-from-classmap": [
  3076. "/Tests/"
  3077. ]
  3078. },
  3079. "notification-url": "https://packagist.org/downloads/",
  3080. "license": [
  3081. "MIT"
  3082. ],
  3083. "authors": [
  3084. {
  3085. "name": "Fabien Potencier",
  3086. "email": "fabien@symfony.com"
  3087. },
  3088. {
  3089. "name": "Symfony Community",
  3090. "homepage": "https://symfony.com/contributors"
  3091. }
  3092. ],
  3093. "description": "Provides integration for Doctrine with various Symfony components",
  3094. "homepage": "https://symfony.com",
  3095. "support": {
  3096. "source": "https://github.com/symfony/doctrine-bridge/tree/v5.4.10"
  3097. },
  3098. "funding": [
  3099. {
  3100. "url": "https://symfony.com/sponsor",
  3101. "type": "custom"
  3102. },
  3103. {
  3104. "url": "https://github.com/fabpot",
  3105. "type": "github"
  3106. },
  3107. {
  3108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3109. "type": "tidelift"
  3110. }
  3111. ],
  3112. "time": "2022-06-20T18:33:41+00:00"
  3113. },
  3114. {
  3115. "name": "symfony/dotenv",
  3116. "version": "v5.4.5",
  3117. "source": {
  3118. "type": "git",
  3119. "url": "https://github.com/symfony/dotenv.git",
  3120. "reference": "83a2310904a4f5d4f42526227b5a578ac82232a9"
  3121. },
  3122. "dist": {
  3123. "type": "zip",
  3124. "url": "https://api.github.com/repos/symfony/dotenv/zipball/83a2310904a4f5d4f42526227b5a578ac82232a9",
  3125. "reference": "83a2310904a4f5d4f42526227b5a578ac82232a9",
  3126. "shasum": ""
  3127. },
  3128. "require": {
  3129. "php": ">=7.2.5",
  3130. "symfony/deprecation-contracts": "^2.1|^3"
  3131. },
  3132. "require-dev": {
  3133. "symfony/console": "^4.4|^5.0|^6.0",
  3134. "symfony/process": "^4.4|^5.0|^6.0"
  3135. },
  3136. "type": "library",
  3137. "autoload": {
  3138. "psr-4": {
  3139. "Symfony\\Component\\Dotenv\\": ""
  3140. },
  3141. "exclude-from-classmap": [
  3142. "/Tests/"
  3143. ]
  3144. },
  3145. "notification-url": "https://packagist.org/downloads/",
  3146. "license": [
  3147. "MIT"
  3148. ],
  3149. "authors": [
  3150. {
  3151. "name": "Fabien Potencier",
  3152. "email": "fabien@symfony.com"
  3153. },
  3154. {
  3155. "name": "Symfony Community",
  3156. "homepage": "https://symfony.com/contributors"
  3157. }
  3158. ],
  3159. "description": "Registers environment variables from a .env file",
  3160. "homepage": "https://symfony.com",
  3161. "keywords": [
  3162. "dotenv",
  3163. "env",
  3164. "environment"
  3165. ],
  3166. "support": {
  3167. "source": "https://github.com/symfony/dotenv/tree/v5.4.5"
  3168. },
  3169. "funding": [
  3170. {
  3171. "url": "https://symfony.com/sponsor",
  3172. "type": "custom"
  3173. },
  3174. {
  3175. "url": "https://github.com/fabpot",
  3176. "type": "github"
  3177. },
  3178. {
  3179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3180. "type": "tidelift"
  3181. }
  3182. ],
  3183. "time": "2022-02-15T17:04:12+00:00"
  3184. },
  3185. {
  3186. "name": "symfony/error-handler",
  3187. "version": "v5.4.9",
  3188. "source": {
  3189. "type": "git",
  3190. "url": "https://github.com/symfony/error-handler.git",
  3191. "reference": "c116cda1f51c678782768dce89a45f13c949455d"
  3192. },
  3193. "dist": {
  3194. "type": "zip",
  3195. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c116cda1f51c678782768dce89a45f13c949455d",
  3196. "reference": "c116cda1f51c678782768dce89a45f13c949455d",
  3197. "shasum": ""
  3198. },
  3199. "require": {
  3200. "php": ">=7.2.5",
  3201. "psr/log": "^1|^2|^3",
  3202. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3203. },
  3204. "require-dev": {
  3205. "symfony/deprecation-contracts": "^2.1|^3",
  3206. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3207. "symfony/serializer": "^4.4|^5.0|^6.0"
  3208. },
  3209. "bin": [
  3210. "Resources/bin/patch-type-declarations"
  3211. ],
  3212. "type": "library",
  3213. "autoload": {
  3214. "psr-4": {
  3215. "Symfony\\Component\\ErrorHandler\\": ""
  3216. },
  3217. "exclude-from-classmap": [
  3218. "/Tests/"
  3219. ]
  3220. },
  3221. "notification-url": "https://packagist.org/downloads/",
  3222. "license": [
  3223. "MIT"
  3224. ],
  3225. "authors": [
  3226. {
  3227. "name": "Fabien Potencier",
  3228. "email": "fabien@symfony.com"
  3229. },
  3230. {
  3231. "name": "Symfony Community",
  3232. "homepage": "https://symfony.com/contributors"
  3233. }
  3234. ],
  3235. "description": "Provides tools to manage errors and ease debugging PHP code",
  3236. "homepage": "https://symfony.com",
  3237. "support": {
  3238. "source": "https://github.com/symfony/error-handler/tree/v5.4.9"
  3239. },
  3240. "funding": [
  3241. {
  3242. "url": "https://symfony.com/sponsor",
  3243. "type": "custom"
  3244. },
  3245. {
  3246. "url": "https://github.com/fabpot",
  3247. "type": "github"
  3248. },
  3249. {
  3250. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3251. "type": "tidelift"
  3252. }
  3253. ],
  3254. "time": "2022-05-21T13:57:48+00:00"
  3255. },
  3256. {
  3257. "name": "symfony/event-dispatcher",
  3258. "version": "v5.4.9",
  3259. "source": {
  3260. "type": "git",
  3261. "url": "https://github.com/symfony/event-dispatcher.git",
  3262. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  3263. },
  3264. "dist": {
  3265. "type": "zip",
  3266. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3267. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3268. "shasum": ""
  3269. },
  3270. "require": {
  3271. "php": ">=7.2.5",
  3272. "symfony/deprecation-contracts": "^2.1|^3",
  3273. "symfony/event-dispatcher-contracts": "^2|^3",
  3274. "symfony/polyfill-php80": "^1.16"
  3275. },
  3276. "conflict": {
  3277. "symfony/dependency-injection": "<4.4"
  3278. },
  3279. "provide": {
  3280. "psr/event-dispatcher-implementation": "1.0",
  3281. "symfony/event-dispatcher-implementation": "2.0"
  3282. },
  3283. "require-dev": {
  3284. "psr/log": "^1|^2|^3",
  3285. "symfony/config": "^4.4|^5.0|^6.0",
  3286. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3287. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3288. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3289. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3290. "symfony/service-contracts": "^1.1|^2|^3",
  3291. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3292. },
  3293. "suggest": {
  3294. "symfony/dependency-injection": "",
  3295. "symfony/http-kernel": ""
  3296. },
  3297. "type": "library",
  3298. "autoload": {
  3299. "psr-4": {
  3300. "Symfony\\Component\\EventDispatcher\\": ""
  3301. },
  3302. "exclude-from-classmap": [
  3303. "/Tests/"
  3304. ]
  3305. },
  3306. "notification-url": "https://packagist.org/downloads/",
  3307. "license": [
  3308. "MIT"
  3309. ],
  3310. "authors": [
  3311. {
  3312. "name": "Fabien Potencier",
  3313. "email": "fabien@symfony.com"
  3314. },
  3315. {
  3316. "name": "Symfony Community",
  3317. "homepage": "https://symfony.com/contributors"
  3318. }
  3319. ],
  3320. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3321. "homepage": "https://symfony.com",
  3322. "support": {
  3323. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  3324. },
  3325. "funding": [
  3326. {
  3327. "url": "https://symfony.com/sponsor",
  3328. "type": "custom"
  3329. },
  3330. {
  3331. "url": "https://github.com/fabpot",
  3332. "type": "github"
  3333. },
  3334. {
  3335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3336. "type": "tidelift"
  3337. }
  3338. ],
  3339. "time": "2022-05-05T16:45:39+00:00"
  3340. },
  3341. {
  3342. "name": "symfony/event-dispatcher-contracts",
  3343. "version": "v2.5.2",
  3344. "source": {
  3345. "type": "git",
  3346. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3347. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  3348. },
  3349. "dist": {
  3350. "type": "zip",
  3351. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  3352. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  3353. "shasum": ""
  3354. },
  3355. "require": {
  3356. "php": ">=7.2.5",
  3357. "psr/event-dispatcher": "^1"
  3358. },
  3359. "suggest": {
  3360. "symfony/event-dispatcher-implementation": ""
  3361. },
  3362. "type": "library",
  3363. "extra": {
  3364. "branch-alias": {
  3365. "dev-main": "2.5-dev"
  3366. },
  3367. "thanks": {
  3368. "name": "symfony/contracts",
  3369. "url": "https://github.com/symfony/contracts"
  3370. }
  3371. },
  3372. "autoload": {
  3373. "psr-4": {
  3374. "Symfony\\Contracts\\EventDispatcher\\": ""
  3375. }
  3376. },
  3377. "notification-url": "https://packagist.org/downloads/",
  3378. "license": [
  3379. "MIT"
  3380. ],
  3381. "authors": [
  3382. {
  3383. "name": "Nicolas Grekas",
  3384. "email": "p@tchwork.com"
  3385. },
  3386. {
  3387. "name": "Symfony Community",
  3388. "homepage": "https://symfony.com/contributors"
  3389. }
  3390. ],
  3391. "description": "Generic abstractions related to dispatching event",
  3392. "homepage": "https://symfony.com",
  3393. "keywords": [
  3394. "abstractions",
  3395. "contracts",
  3396. "decoupling",
  3397. "interfaces",
  3398. "interoperability",
  3399. "standards"
  3400. ],
  3401. "support": {
  3402. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  3403. },
  3404. "funding": [
  3405. {
  3406. "url": "https://symfony.com/sponsor",
  3407. "type": "custom"
  3408. },
  3409. {
  3410. "url": "https://github.com/fabpot",
  3411. "type": "github"
  3412. },
  3413. {
  3414. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3415. "type": "tidelift"
  3416. }
  3417. ],
  3418. "time": "2022-01-02T09:53:40+00:00"
  3419. },
  3420. {
  3421. "name": "symfony/expression-language",
  3422. "version": "v5.4.10",
  3423. "source": {
  3424. "type": "git",
  3425. "url": "https://github.com/symfony/expression-language.git",
  3426. "reference": "45b08cbce1299eea111a0f76fbe939eea8e185d7"
  3427. },
  3428. "dist": {
  3429. "type": "zip",
  3430. "url": "https://api.github.com/repos/symfony/expression-language/zipball/45b08cbce1299eea111a0f76fbe939eea8e185d7",
  3431. "reference": "45b08cbce1299eea111a0f76fbe939eea8e185d7",
  3432. "shasum": ""
  3433. },
  3434. "require": {
  3435. "php": ">=7.2.5",
  3436. "symfony/cache": "^4.4|^5.0|^6.0",
  3437. "symfony/service-contracts": "^1.1|^2|^3"
  3438. },
  3439. "type": "library",
  3440. "autoload": {
  3441. "psr-4": {
  3442. "Symfony\\Component\\ExpressionLanguage\\": ""
  3443. },
  3444. "exclude-from-classmap": [
  3445. "/Tests/"
  3446. ]
  3447. },
  3448. "notification-url": "https://packagist.org/downloads/",
  3449. "license": [
  3450. "MIT"
  3451. ],
  3452. "authors": [
  3453. {
  3454. "name": "Fabien Potencier",
  3455. "email": "fabien@symfony.com"
  3456. },
  3457. {
  3458. "name": "Symfony Community",
  3459. "homepage": "https://symfony.com/contributors"
  3460. }
  3461. ],
  3462. "description": "Provides an engine that can compile and evaluate expressions",
  3463. "homepage": "https://symfony.com",
  3464. "support": {
  3465. "source": "https://github.com/symfony/expression-language/tree/v5.4.10"
  3466. },
  3467. "funding": [
  3468. {
  3469. "url": "https://symfony.com/sponsor",
  3470. "type": "custom"
  3471. },
  3472. {
  3473. "url": "https://github.com/fabpot",
  3474. "type": "github"
  3475. },
  3476. {
  3477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3478. "type": "tidelift"
  3479. }
  3480. ],
  3481. "time": "2022-06-19T12:03:50+00:00"
  3482. },
  3483. {
  3484. "name": "symfony/filesystem",
  3485. "version": "v5.4.9",
  3486. "source": {
  3487. "type": "git",
  3488. "url": "https://github.com/symfony/filesystem.git",
  3489. "reference": "36a017fa4cce1eff1b8e8129ff53513abcef05ba"
  3490. },
  3491. "dist": {
  3492. "type": "zip",
  3493. "url": "https://api.github.com/repos/symfony/filesystem/zipball/36a017fa4cce1eff1b8e8129ff53513abcef05ba",
  3494. "reference": "36a017fa4cce1eff1b8e8129ff53513abcef05ba",
  3495. "shasum": ""
  3496. },
  3497. "require": {
  3498. "php": ">=7.2.5",
  3499. "symfony/polyfill-ctype": "~1.8",
  3500. "symfony/polyfill-mbstring": "~1.8",
  3501. "symfony/polyfill-php80": "^1.16"
  3502. },
  3503. "type": "library",
  3504. "autoload": {
  3505. "psr-4": {
  3506. "Symfony\\Component\\Filesystem\\": ""
  3507. },
  3508. "exclude-from-classmap": [
  3509. "/Tests/"
  3510. ]
  3511. },
  3512. "notification-url": "https://packagist.org/downloads/",
  3513. "license": [
  3514. "MIT"
  3515. ],
  3516. "authors": [
  3517. {
  3518. "name": "Fabien Potencier",
  3519. "email": "fabien@symfony.com"
  3520. },
  3521. {
  3522. "name": "Symfony Community",
  3523. "homepage": "https://symfony.com/contributors"
  3524. }
  3525. ],
  3526. "description": "Provides basic utilities for the filesystem",
  3527. "homepage": "https://symfony.com",
  3528. "support": {
  3529. "source": "https://github.com/symfony/filesystem/tree/v5.4.9"
  3530. },
  3531. "funding": [
  3532. {
  3533. "url": "https://symfony.com/sponsor",
  3534. "type": "custom"
  3535. },
  3536. {
  3537. "url": "https://github.com/fabpot",
  3538. "type": "github"
  3539. },
  3540. {
  3541. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3542. "type": "tidelift"
  3543. }
  3544. ],
  3545. "time": "2022-05-20T13:55:35+00:00"
  3546. },
  3547. {
  3548. "name": "symfony/finder",
  3549. "version": "v5.4.8",
  3550. "source": {
  3551. "type": "git",
  3552. "url": "https://github.com/symfony/finder.git",
  3553. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9"
  3554. },
  3555. "dist": {
  3556. "type": "zip",
  3557. "url": "https://api.github.com/repos/symfony/finder/zipball/9b630f3427f3ebe7cd346c277a1408b00249dad9",
  3558. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9",
  3559. "shasum": ""
  3560. },
  3561. "require": {
  3562. "php": ">=7.2.5",
  3563. "symfony/deprecation-contracts": "^2.1|^3",
  3564. "symfony/polyfill-php80": "^1.16"
  3565. },
  3566. "type": "library",
  3567. "autoload": {
  3568. "psr-4": {
  3569. "Symfony\\Component\\Finder\\": ""
  3570. },
  3571. "exclude-from-classmap": [
  3572. "/Tests/"
  3573. ]
  3574. },
  3575. "notification-url": "https://packagist.org/downloads/",
  3576. "license": [
  3577. "MIT"
  3578. ],
  3579. "authors": [
  3580. {
  3581. "name": "Fabien Potencier",
  3582. "email": "fabien@symfony.com"
  3583. },
  3584. {
  3585. "name": "Symfony Community",
  3586. "homepage": "https://symfony.com/contributors"
  3587. }
  3588. ],
  3589. "description": "Finds files and directories via an intuitive fluent interface",
  3590. "homepage": "https://symfony.com",
  3591. "support": {
  3592. "source": "https://github.com/symfony/finder/tree/v5.4.8"
  3593. },
  3594. "funding": [
  3595. {
  3596. "url": "https://symfony.com/sponsor",
  3597. "type": "custom"
  3598. },
  3599. {
  3600. "url": "https://github.com/fabpot",
  3601. "type": "github"
  3602. },
  3603. {
  3604. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3605. "type": "tidelift"
  3606. }
  3607. ],
  3608. "time": "2022-04-15T08:07:45+00:00"
  3609. },
  3610. {
  3611. "name": "symfony/flex",
  3612. "version": "v1.19.2",
  3613. "source": {
  3614. "type": "git",
  3615. "url": "https://github.com/symfony/flex.git",
  3616. "reference": "d1a692369be53445af6e391170b509d7f5d026cf"
  3617. },
  3618. "dist": {
  3619. "type": "zip",
  3620. "url": "https://api.github.com/repos/symfony/flex/zipball/d1a692369be53445af6e391170b509d7f5d026cf",
  3621. "reference": "d1a692369be53445af6e391170b509d7f5d026cf",
  3622. "shasum": ""
  3623. },
  3624. "require": {
  3625. "composer-plugin-api": "^1.0|^2.0",
  3626. "php": ">=7.1"
  3627. },
  3628. "require-dev": {
  3629. "composer/composer": "^1.0.2|^2.0",
  3630. "symfony/dotenv": "^4.4|^5.0|^6.0",
  3631. "symfony/filesystem": "^4.4|^5.0|^6.0",
  3632. "symfony/phpunit-bridge": "^4.4.12|^5.0|^6.0",
  3633. "symfony/process": "^4.4|^5.0|^6.0"
  3634. },
  3635. "type": "composer-plugin",
  3636. "extra": {
  3637. "class": "Symfony\\Flex\\Flex"
  3638. },
  3639. "autoload": {
  3640. "psr-4": {
  3641. "Symfony\\Flex\\": "src"
  3642. }
  3643. },
  3644. "notification-url": "https://packagist.org/downloads/",
  3645. "license": [
  3646. "MIT"
  3647. ],
  3648. "authors": [
  3649. {
  3650. "name": "Fabien Potencier",
  3651. "email": "fabien.potencier@gmail.com"
  3652. }
  3653. ],
  3654. "description": "Composer plugin for Symfony",
  3655. "support": {
  3656. "issues": "https://github.com/symfony/flex/issues",
  3657. "source": "https://github.com/symfony/flex/tree/v1.19.2"
  3658. },
  3659. "funding": [
  3660. {
  3661. "url": "https://symfony.com/sponsor",
  3662. "type": "custom"
  3663. },
  3664. {
  3665. "url": "https://github.com/fabpot",
  3666. "type": "github"
  3667. },
  3668. {
  3669. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3670. "type": "tidelift"
  3671. }
  3672. ],
  3673. "time": "2022-06-14T21:13:39+00:00"
  3674. },
  3675. {
  3676. "name": "symfony/form",
  3677. "version": "v5.4.10",
  3678. "source": {
  3679. "type": "git",
  3680. "url": "https://github.com/symfony/form.git",
  3681. "reference": "de99efe249a5ea6758d2a257a6f953aa9dc5ed6a"
  3682. },
  3683. "dist": {
  3684. "type": "zip",
  3685. "url": "https://api.github.com/repos/symfony/form/zipball/de99efe249a5ea6758d2a257a6f953aa9dc5ed6a",
  3686. "reference": "de99efe249a5ea6758d2a257a6f953aa9dc5ed6a",
  3687. "shasum": ""
  3688. },
  3689. "require": {
  3690. "php": ">=7.2.5",
  3691. "symfony/deprecation-contracts": "^2.1|^3",
  3692. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  3693. "symfony/options-resolver": "^5.1|^6.0",
  3694. "symfony/polyfill-ctype": "~1.8",
  3695. "symfony/polyfill-intl-icu": "^1.21",
  3696. "symfony/polyfill-mbstring": "~1.0",
  3697. "symfony/polyfill-php80": "^1.16",
  3698. "symfony/polyfill-php81": "^1.23",
  3699. "symfony/property-access": "^5.0.8|^6.0",
  3700. "symfony/service-contracts": "^1.1|^2|^3"
  3701. },
  3702. "conflict": {
  3703. "phpunit/phpunit": "<5.4.3",
  3704. "symfony/console": "<4.4",
  3705. "symfony/dependency-injection": "<4.4",
  3706. "symfony/doctrine-bridge": "<4.4",
  3707. "symfony/error-handler": "<4.4.5",
  3708. "symfony/framework-bundle": "<4.4",
  3709. "symfony/http-kernel": "<4.4",
  3710. "symfony/translation": "<4.4",
  3711. "symfony/translation-contracts": "<1.1.7",
  3712. "symfony/twig-bridge": "<4.4"
  3713. },
  3714. "require-dev": {
  3715. "doctrine/collections": "~1.0",
  3716. "symfony/config": "^4.4|^5.0|^6.0",
  3717. "symfony/console": "^5.4|^6.0",
  3718. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3719. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3720. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3721. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3722. "symfony/intl": "^4.4|^5.0|^6.0",
  3723. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  3724. "symfony/translation": "^4.4|^5.0|^6.0",
  3725. "symfony/uid": "^5.1|^6.0",
  3726. "symfony/validator": "^4.4.17|^5.1.9|^6.0",
  3727. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3728. },
  3729. "suggest": {
  3730. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  3731. "symfony/twig-bridge": "For templating with Twig.",
  3732. "symfony/validator": "For form validation."
  3733. },
  3734. "type": "library",
  3735. "autoload": {
  3736. "psr-4": {
  3737. "Symfony\\Component\\Form\\": ""
  3738. },
  3739. "exclude-from-classmap": [
  3740. "/Tests/"
  3741. ]
  3742. },
  3743. "notification-url": "https://packagist.org/downloads/",
  3744. "license": [
  3745. "MIT"
  3746. ],
  3747. "authors": [
  3748. {
  3749. "name": "Fabien Potencier",
  3750. "email": "fabien@symfony.com"
  3751. },
  3752. {
  3753. "name": "Symfony Community",
  3754. "homepage": "https://symfony.com/contributors"
  3755. }
  3756. ],
  3757. "description": "Allows to easily create, process and reuse HTML forms",
  3758. "homepage": "https://symfony.com",
  3759. "support": {
  3760. "source": "https://github.com/symfony/form/tree/v5.4.10"
  3761. },
  3762. "funding": [
  3763. {
  3764. "url": "https://symfony.com/sponsor",
  3765. "type": "custom"
  3766. },
  3767. {
  3768. "url": "https://github.com/fabpot",
  3769. "type": "github"
  3770. },
  3771. {
  3772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3773. "type": "tidelift"
  3774. }
  3775. ],
  3776. "time": "2022-06-19T12:03:50+00:00"
  3777. },
  3778. {
  3779. "name": "symfony/framework-bundle",
  3780. "version": "v5.4.10",
  3781. "source": {
  3782. "type": "git",
  3783. "url": "https://github.com/symfony/framework-bundle.git",
  3784. "reference": "7cbc790e067a23a47b9f0dc59e2ff0ecddbd3e14"
  3785. },
  3786. "dist": {
  3787. "type": "zip",
  3788. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/7cbc790e067a23a47b9f0dc59e2ff0ecddbd3e14",
  3789. "reference": "7cbc790e067a23a47b9f0dc59e2ff0ecddbd3e14",
  3790. "shasum": ""
  3791. },
  3792. "require": {
  3793. "ext-xml": "*",
  3794. "php": ">=7.2.5",
  3795. "symfony/cache": "^5.2|^6.0",
  3796. "symfony/config": "^5.3|^6.0",
  3797. "symfony/dependency-injection": "^5.4.5|^6.0.5",
  3798. "symfony/deprecation-contracts": "^2.1|^3",
  3799. "symfony/error-handler": "^4.4.1|^5.0.1|^6.0",
  3800. "symfony/event-dispatcher": "^5.1|^6.0",
  3801. "symfony/filesystem": "^4.4|^5.0|^6.0",
  3802. "symfony/finder": "^4.4|^5.0|^6.0",
  3803. "symfony/http-foundation": "^5.3|^6.0",
  3804. "symfony/http-kernel": "^5.4|^6.0",
  3805. "symfony/polyfill-mbstring": "~1.0",
  3806. "symfony/polyfill-php80": "^1.16",
  3807. "symfony/polyfill-php81": "^1.22",
  3808. "symfony/routing": "^5.3|^6.0"
  3809. },
  3810. "conflict": {
  3811. "doctrine/annotations": "<1.13.1",
  3812. "doctrine/cache": "<1.11",
  3813. "doctrine/persistence": "<1.3",
  3814. "phpdocumentor/reflection-docblock": "<3.2.2",
  3815. "phpdocumentor/type-resolver": "<1.4.0",
  3816. "phpunit/phpunit": "<5.4.3",
  3817. "symfony/asset": "<5.3",
  3818. "symfony/console": "<5.2.5",
  3819. "symfony/dom-crawler": "<4.4",
  3820. "symfony/dotenv": "<5.1",
  3821. "symfony/form": "<5.2",
  3822. "symfony/http-client": "<4.4",
  3823. "symfony/lock": "<4.4",
  3824. "symfony/mailer": "<5.2",
  3825. "symfony/messenger": "<5.4",
  3826. "symfony/mime": "<4.4",
  3827. "symfony/property-access": "<5.3",
  3828. "symfony/property-info": "<4.4",
  3829. "symfony/security-csrf": "<5.3",
  3830. "symfony/serializer": "<5.2",
  3831. "symfony/service-contracts": ">=3.0",
  3832. "symfony/stopwatch": "<4.4",
  3833. "symfony/translation": "<5.3",
  3834. "symfony/twig-bridge": "<4.4",
  3835. "symfony/twig-bundle": "<4.4",
  3836. "symfony/validator": "<5.2",
  3837. "symfony/web-profiler-bundle": "<4.4",
  3838. "symfony/workflow": "<5.2"
  3839. },
  3840. "require-dev": {
  3841. "doctrine/annotations": "^1.13.1",
  3842. "doctrine/cache": "^1.11|^2.0",
  3843. "doctrine/persistence": "^1.3|^2|^3",
  3844. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3845. "symfony/asset": "^5.3|^6.0",
  3846. "symfony/browser-kit": "^5.4|^6.0",
  3847. "symfony/console": "^5.4.9|^6.0.9",
  3848. "symfony/css-selector": "^4.4|^5.0|^6.0",
  3849. "symfony/dom-crawler": "^4.4.30|^5.3.7|^6.0",
  3850. "symfony/dotenv": "^5.1|^6.0",
  3851. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3852. "symfony/form": "^5.2|^6.0",
  3853. "symfony/http-client": "^4.4|^5.0|^6.0",
  3854. "symfony/lock": "^4.4|^5.0|^6.0",
  3855. "symfony/mailer": "^5.2|^6.0",
  3856. "symfony/messenger": "^5.4|^6.0",
  3857. "symfony/mime": "^4.4|^5.0|^6.0",
  3858. "symfony/notifier": "^5.4|^6.0",
  3859. "symfony/polyfill-intl-icu": "~1.0",
  3860. "symfony/process": "^4.4|^5.0|^6.0",
  3861. "symfony/property-info": "^4.4|^5.0|^6.0",
  3862. "symfony/rate-limiter": "^5.2|^6.0",
  3863. "symfony/security-bundle": "^5.4|^6.0",
  3864. "symfony/serializer": "^5.4|^6.0",
  3865. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3866. "symfony/string": "^5.0|^6.0",
  3867. "symfony/translation": "^5.3|^6.0",
  3868. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  3869. "symfony/validator": "^5.2|^6.0",
  3870. "symfony/web-link": "^4.4|^5.0|^6.0",
  3871. "symfony/workflow": "^5.2|^6.0",
  3872. "symfony/yaml": "^4.4|^5.0|^6.0",
  3873. "twig/twig": "^2.10|^3.0"
  3874. },
  3875. "suggest": {
  3876. "ext-apcu": "For best performance of the system caches",
  3877. "symfony/console": "For using the console commands",
  3878. "symfony/form": "For using forms",
  3879. "symfony/property-info": "For using the property_info service",
  3880. "symfony/serializer": "For using the serializer service",
  3881. "symfony/validator": "For using validation",
  3882. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  3883. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  3884. },
  3885. "type": "symfony-bundle",
  3886. "autoload": {
  3887. "psr-4": {
  3888. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3889. },
  3890. "exclude-from-classmap": [
  3891. "/Tests/"
  3892. ]
  3893. },
  3894. "notification-url": "https://packagist.org/downloads/",
  3895. "license": [
  3896. "MIT"
  3897. ],
  3898. "authors": [
  3899. {
  3900. "name": "Fabien Potencier",
  3901. "email": "fabien@symfony.com"
  3902. },
  3903. {
  3904. "name": "Symfony Community",
  3905. "homepage": "https://symfony.com/contributors"
  3906. }
  3907. ],
  3908. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  3909. "homepage": "https://symfony.com",
  3910. "support": {
  3911. "source": "https://github.com/symfony/framework-bundle/tree/v5.4.10"
  3912. },
  3913. "funding": [
  3914. {
  3915. "url": "https://symfony.com/sponsor",
  3916. "type": "custom"
  3917. },
  3918. {
  3919. "url": "https://github.com/fabpot",
  3920. "type": "github"
  3921. },
  3922. {
  3923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3924. "type": "tidelift"
  3925. }
  3926. ],
  3927. "time": "2022-06-19T13:15:57+00:00"
  3928. },
  3929. {
  3930. "name": "symfony/http-foundation",
  3931. "version": "v5.4.10",
  3932. "source": {
  3933. "type": "git",
  3934. "url": "https://github.com/symfony/http-foundation.git",
  3935. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e"
  3936. },
  3937. "dist": {
  3938. "type": "zip",
  3939. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  3940. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  3941. "shasum": ""
  3942. },
  3943. "require": {
  3944. "php": ">=7.2.5",
  3945. "symfony/deprecation-contracts": "^2.1|^3",
  3946. "symfony/polyfill-mbstring": "~1.1",
  3947. "symfony/polyfill-php80": "^1.16"
  3948. },
  3949. "require-dev": {
  3950. "predis/predis": "~1.0",
  3951. "symfony/cache": "^4.4|^5.0|^6.0",
  3952. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3953. "symfony/mime": "^4.4|^5.0|^6.0"
  3954. },
  3955. "suggest": {
  3956. "symfony/mime": "To use the file extension guesser"
  3957. },
  3958. "type": "library",
  3959. "autoload": {
  3960. "psr-4": {
  3961. "Symfony\\Component\\HttpFoundation\\": ""
  3962. },
  3963. "exclude-from-classmap": [
  3964. "/Tests/"
  3965. ]
  3966. },
  3967. "notification-url": "https://packagist.org/downloads/",
  3968. "license": [
  3969. "MIT"
  3970. ],
  3971. "authors": [
  3972. {
  3973. "name": "Fabien Potencier",
  3974. "email": "fabien@symfony.com"
  3975. },
  3976. {
  3977. "name": "Symfony Community",
  3978. "homepage": "https://symfony.com/contributors"
  3979. }
  3980. ],
  3981. "description": "Defines an object-oriented layer for the HTTP specification",
  3982. "homepage": "https://symfony.com",
  3983. "support": {
  3984. "source": "https://github.com/symfony/http-foundation/tree/v5.4.10"
  3985. },
  3986. "funding": [
  3987. {
  3988. "url": "https://symfony.com/sponsor",
  3989. "type": "custom"
  3990. },
  3991. {
  3992. "url": "https://github.com/fabpot",
  3993. "type": "github"
  3994. },
  3995. {
  3996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3997. "type": "tidelift"
  3998. }
  3999. ],
  4000. "time": "2022-06-19T13:13:40+00:00"
  4001. },
  4002. {
  4003. "name": "symfony/http-kernel",
  4004. "version": "v5.4.10",
  4005. "source": {
  4006. "type": "git",
  4007. "url": "https://github.com/symfony/http-kernel.git",
  4008. "reference": "255ae3b0a488d78fbb34da23d3e0c059874b5948"
  4009. },
  4010. "dist": {
  4011. "type": "zip",
  4012. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/255ae3b0a488d78fbb34da23d3e0c059874b5948",
  4013. "reference": "255ae3b0a488d78fbb34da23d3e0c059874b5948",
  4014. "shasum": ""
  4015. },
  4016. "require": {
  4017. "php": ">=7.2.5",
  4018. "psr/log": "^1|^2",
  4019. "symfony/deprecation-contracts": "^2.1|^3",
  4020. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4021. "symfony/event-dispatcher": "^5.0|^6.0",
  4022. "symfony/http-foundation": "^5.3.7|^6.0",
  4023. "symfony/polyfill-ctype": "^1.8",
  4024. "symfony/polyfill-php73": "^1.9",
  4025. "symfony/polyfill-php80": "^1.16"
  4026. },
  4027. "conflict": {
  4028. "symfony/browser-kit": "<5.4",
  4029. "symfony/cache": "<5.0",
  4030. "symfony/config": "<5.0",
  4031. "symfony/console": "<4.4",
  4032. "symfony/dependency-injection": "<5.3",
  4033. "symfony/doctrine-bridge": "<5.0",
  4034. "symfony/form": "<5.0",
  4035. "symfony/http-client": "<5.0",
  4036. "symfony/mailer": "<5.0",
  4037. "symfony/messenger": "<5.0",
  4038. "symfony/translation": "<5.0",
  4039. "symfony/twig-bridge": "<5.0",
  4040. "symfony/validator": "<5.0",
  4041. "twig/twig": "<2.13"
  4042. },
  4043. "provide": {
  4044. "psr/log-implementation": "1.0|2.0"
  4045. },
  4046. "require-dev": {
  4047. "psr/cache": "^1.0|^2.0|^3.0",
  4048. "symfony/browser-kit": "^5.4|^6.0",
  4049. "symfony/config": "^5.0|^6.0",
  4050. "symfony/console": "^4.4|^5.0|^6.0",
  4051. "symfony/css-selector": "^4.4|^5.0|^6.0",
  4052. "symfony/dependency-injection": "^5.3|^6.0",
  4053. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  4054. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4055. "symfony/finder": "^4.4|^5.0|^6.0",
  4056. "symfony/http-client-contracts": "^1.1|^2|^3",
  4057. "symfony/process": "^4.4|^5.0|^6.0",
  4058. "symfony/routing": "^4.4|^5.0|^6.0",
  4059. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  4060. "symfony/translation": "^4.4|^5.0|^6.0",
  4061. "symfony/translation-contracts": "^1.1|^2|^3",
  4062. "twig/twig": "^2.13|^3.0.4"
  4063. },
  4064. "suggest": {
  4065. "symfony/browser-kit": "",
  4066. "symfony/config": "",
  4067. "symfony/console": "",
  4068. "symfony/dependency-injection": ""
  4069. },
  4070. "type": "library",
  4071. "autoload": {
  4072. "psr-4": {
  4073. "Symfony\\Component\\HttpKernel\\": ""
  4074. },
  4075. "exclude-from-classmap": [
  4076. "/Tests/"
  4077. ]
  4078. },
  4079. "notification-url": "https://packagist.org/downloads/",
  4080. "license": [
  4081. "MIT"
  4082. ],
  4083. "authors": [
  4084. {
  4085. "name": "Fabien Potencier",
  4086. "email": "fabien@symfony.com"
  4087. },
  4088. {
  4089. "name": "Symfony Community",
  4090. "homepage": "https://symfony.com/contributors"
  4091. }
  4092. ],
  4093. "description": "Provides a structured process for converting a Request into a Response",
  4094. "homepage": "https://symfony.com",
  4095. "support": {
  4096. "source": "https://github.com/symfony/http-kernel/tree/v5.4.10"
  4097. },
  4098. "funding": [
  4099. {
  4100. "url": "https://symfony.com/sponsor",
  4101. "type": "custom"
  4102. },
  4103. {
  4104. "url": "https://github.com/fabpot",
  4105. "type": "github"
  4106. },
  4107. {
  4108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4109. "type": "tidelift"
  4110. }
  4111. ],
  4112. "time": "2022-06-26T16:57:59+00:00"
  4113. },
  4114. {
  4115. "name": "symfony/mailer",
  4116. "version": "v5.4.10",
  4117. "source": {
  4118. "type": "git",
  4119. "url": "https://github.com/symfony/mailer.git",
  4120. "reference": "3e2e5939089938f7150ad448e23d6092338ca991"
  4121. },
  4122. "dist": {
  4123. "type": "zip",
  4124. "url": "https://api.github.com/repos/symfony/mailer/zipball/3e2e5939089938f7150ad448e23d6092338ca991",
  4125. "reference": "3e2e5939089938f7150ad448e23d6092338ca991",
  4126. "shasum": ""
  4127. },
  4128. "require": {
  4129. "egulias/email-validator": "^2.1.10|^3",
  4130. "php": ">=7.2.5",
  4131. "psr/event-dispatcher": "^1",
  4132. "psr/log": "^1|^2|^3",
  4133. "symfony/deprecation-contracts": "^2.1|^3",
  4134. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  4135. "symfony/mime": "^5.2.6|^6.0",
  4136. "symfony/polyfill-php80": "^1.16",
  4137. "symfony/service-contracts": "^1.1|^2|^3"
  4138. },
  4139. "conflict": {
  4140. "symfony/http-kernel": "<4.4"
  4141. },
  4142. "require-dev": {
  4143. "symfony/http-client-contracts": "^1.1|^2|^3",
  4144. "symfony/messenger": "^4.4|^5.0|^6.0"
  4145. },
  4146. "type": "library",
  4147. "autoload": {
  4148. "psr-4": {
  4149. "Symfony\\Component\\Mailer\\": ""
  4150. },
  4151. "exclude-from-classmap": [
  4152. "/Tests/"
  4153. ]
  4154. },
  4155. "notification-url": "https://packagist.org/downloads/",
  4156. "license": [
  4157. "MIT"
  4158. ],
  4159. "authors": [
  4160. {
  4161. "name": "Fabien Potencier",
  4162. "email": "fabien@symfony.com"
  4163. },
  4164. {
  4165. "name": "Symfony Community",
  4166. "homepage": "https://symfony.com/contributors"
  4167. }
  4168. ],
  4169. "description": "Helps sending emails",
  4170. "homepage": "https://symfony.com",
  4171. "support": {
  4172. "source": "https://github.com/symfony/mailer/tree/v5.4.10"
  4173. },
  4174. "funding": [
  4175. {
  4176. "url": "https://symfony.com/sponsor",
  4177. "type": "custom"
  4178. },
  4179. {
  4180. "url": "https://github.com/fabpot",
  4181. "type": "github"
  4182. },
  4183. {
  4184. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4185. "type": "tidelift"
  4186. }
  4187. ],
  4188. "time": "2022-06-19T12:03:50+00:00"
  4189. },
  4190. {
  4191. "name": "symfony/mime",
  4192. "version": "v5.4.10",
  4193. "source": {
  4194. "type": "git",
  4195. "url": "https://github.com/symfony/mime.git",
  4196. "reference": "02265e1e5111c3cd7480387af25e82378b7ab9cc"
  4197. },
  4198. "dist": {
  4199. "type": "zip",
  4200. "url": "https://api.github.com/repos/symfony/mime/zipball/02265e1e5111c3cd7480387af25e82378b7ab9cc",
  4201. "reference": "02265e1e5111c3cd7480387af25e82378b7ab9cc",
  4202. "shasum": ""
  4203. },
  4204. "require": {
  4205. "php": ">=7.2.5",
  4206. "symfony/deprecation-contracts": "^2.1|^3",
  4207. "symfony/polyfill-intl-idn": "^1.10",
  4208. "symfony/polyfill-mbstring": "^1.0",
  4209. "symfony/polyfill-php80": "^1.16"
  4210. },
  4211. "conflict": {
  4212. "egulias/email-validator": "~3.0.0",
  4213. "phpdocumentor/reflection-docblock": "<3.2.2",
  4214. "phpdocumentor/type-resolver": "<1.4.0",
  4215. "symfony/mailer": "<4.4"
  4216. },
  4217. "require-dev": {
  4218. "egulias/email-validator": "^2.1.10|^3.1",
  4219. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4220. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4221. "symfony/property-access": "^4.4|^5.1|^6.0",
  4222. "symfony/property-info": "^4.4|^5.1|^6.0",
  4223. "symfony/serializer": "^5.2|^6.0"
  4224. },
  4225. "type": "library",
  4226. "autoload": {
  4227. "psr-4": {
  4228. "Symfony\\Component\\Mime\\": ""
  4229. },
  4230. "exclude-from-classmap": [
  4231. "/Tests/"
  4232. ]
  4233. },
  4234. "notification-url": "https://packagist.org/downloads/",
  4235. "license": [
  4236. "MIT"
  4237. ],
  4238. "authors": [
  4239. {
  4240. "name": "Fabien Potencier",
  4241. "email": "fabien@symfony.com"
  4242. },
  4243. {
  4244. "name": "Symfony Community",
  4245. "homepage": "https://symfony.com/contributors"
  4246. }
  4247. ],
  4248. "description": "Allows manipulating MIME messages",
  4249. "homepage": "https://symfony.com",
  4250. "keywords": [
  4251. "mime",
  4252. "mime-type"
  4253. ],
  4254. "support": {
  4255. "source": "https://github.com/symfony/mime/tree/v5.4.10"
  4256. },
  4257. "funding": [
  4258. {
  4259. "url": "https://symfony.com/sponsor",
  4260. "type": "custom"
  4261. },
  4262. {
  4263. "url": "https://github.com/fabpot",
  4264. "type": "github"
  4265. },
  4266. {
  4267. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4268. "type": "tidelift"
  4269. }
  4270. ],
  4271. "time": "2022-06-09T12:22:40+00:00"
  4272. },
  4273. {
  4274. "name": "symfony/monolog-bridge",
  4275. "version": "v5.4.10",
  4276. "source": {
  4277. "type": "git",
  4278. "url": "https://github.com/symfony/monolog-bridge.git",
  4279. "reference": "b3b0890e76e7eb626f27b165a5c501f2754dfbbd"
  4280. },
  4281. "dist": {
  4282. "type": "zip",
  4283. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/b3b0890e76e7eb626f27b165a5c501f2754dfbbd",
  4284. "reference": "b3b0890e76e7eb626f27b165a5c501f2754dfbbd",
  4285. "shasum": ""
  4286. },
  4287. "require": {
  4288. "monolog/monolog": "^1.25.1|^2",
  4289. "php": ">=7.2.5",
  4290. "symfony/deprecation-contracts": "^2.1|^3",
  4291. "symfony/http-kernel": "^5.3|^6.0",
  4292. "symfony/polyfill-php80": "^1.16",
  4293. "symfony/service-contracts": "^1.1|^2|^3"
  4294. },
  4295. "conflict": {
  4296. "symfony/console": "<4.4",
  4297. "symfony/http-foundation": "<5.3"
  4298. },
  4299. "require-dev": {
  4300. "symfony/console": "^4.4|^5.0|^6.0",
  4301. "symfony/http-client": "^4.4|^5.0|^6.0",
  4302. "symfony/mailer": "^4.4|^5.0|^6.0",
  4303. "symfony/messenger": "^4.4|^5.0|^6.0",
  4304. "symfony/mime": "^4.4|^5.0|^6.0",
  4305. "symfony/security-core": "^4.4|^5.0|^6.0",
  4306. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4307. },
  4308. "suggest": {
  4309. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  4310. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  4311. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  4312. },
  4313. "type": "symfony-bridge",
  4314. "autoload": {
  4315. "psr-4": {
  4316. "Symfony\\Bridge\\Monolog\\": ""
  4317. },
  4318. "exclude-from-classmap": [
  4319. "/Tests/"
  4320. ]
  4321. },
  4322. "notification-url": "https://packagist.org/downloads/",
  4323. "license": [
  4324. "MIT"
  4325. ],
  4326. "authors": [
  4327. {
  4328. "name": "Fabien Potencier",
  4329. "email": "fabien@symfony.com"
  4330. },
  4331. {
  4332. "name": "Symfony Community",
  4333. "homepage": "https://symfony.com/contributors"
  4334. }
  4335. ],
  4336. "description": "Provides integration for Monolog with various Symfony components",
  4337. "homepage": "https://symfony.com",
  4338. "support": {
  4339. "source": "https://github.com/symfony/monolog-bridge/tree/v5.4.10"
  4340. },
  4341. "funding": [
  4342. {
  4343. "url": "https://symfony.com/sponsor",
  4344. "type": "custom"
  4345. },
  4346. {
  4347. "url": "https://github.com/fabpot",
  4348. "type": "github"
  4349. },
  4350. {
  4351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4352. "type": "tidelift"
  4353. }
  4354. ],
  4355. "time": "2022-06-19T12:03:50+00:00"
  4356. },
  4357. {
  4358. "name": "symfony/monolog-bundle",
  4359. "version": "v3.8.0",
  4360. "source": {
  4361. "type": "git",
  4362. "url": "https://github.com/symfony/monolog-bundle.git",
  4363. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d"
  4364. },
  4365. "dist": {
  4366. "type": "zip",
  4367. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  4368. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  4369. "shasum": ""
  4370. },
  4371. "require": {
  4372. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  4373. "php": ">=7.1.3",
  4374. "symfony/config": "~4.4 || ^5.0 || ^6.0",
  4375. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  4376. "symfony/http-kernel": "~4.4 || ^5.0 || ^6.0",
  4377. "symfony/monolog-bridge": "~4.4 || ^5.0 || ^6.0"
  4378. },
  4379. "require-dev": {
  4380. "symfony/console": "~4.4 || ^5.0 || ^6.0",
  4381. "symfony/phpunit-bridge": "^5.2 || ^6.0",
  4382. "symfony/yaml": "~4.4 || ^5.0 || ^6.0"
  4383. },
  4384. "type": "symfony-bundle",
  4385. "extra": {
  4386. "branch-alias": {
  4387. "dev-master": "3.x-dev"
  4388. }
  4389. },
  4390. "autoload": {
  4391. "psr-4": {
  4392. "Symfony\\Bundle\\MonologBundle\\": ""
  4393. },
  4394. "exclude-from-classmap": [
  4395. "/Tests/"
  4396. ]
  4397. },
  4398. "notification-url": "https://packagist.org/downloads/",
  4399. "license": [
  4400. "MIT"
  4401. ],
  4402. "authors": [
  4403. {
  4404. "name": "Fabien Potencier",
  4405. "email": "fabien@symfony.com"
  4406. },
  4407. {
  4408. "name": "Symfony Community",
  4409. "homepage": "https://symfony.com/contributors"
  4410. }
  4411. ],
  4412. "description": "Symfony MonologBundle",
  4413. "homepage": "https://symfony.com",
  4414. "keywords": [
  4415. "log",
  4416. "logging"
  4417. ],
  4418. "support": {
  4419. "issues": "https://github.com/symfony/monolog-bundle/issues",
  4420. "source": "https://github.com/symfony/monolog-bundle/tree/v3.8.0"
  4421. },
  4422. "funding": [
  4423. {
  4424. "url": "https://symfony.com/sponsor",
  4425. "type": "custom"
  4426. },
  4427. {
  4428. "url": "https://github.com/fabpot",
  4429. "type": "github"
  4430. },
  4431. {
  4432. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4433. "type": "tidelift"
  4434. }
  4435. ],
  4436. "time": "2022-05-10T14:24:36+00:00"
  4437. },
  4438. {
  4439. "name": "symfony/options-resolver",
  4440. "version": "v5.4.3",
  4441. "source": {
  4442. "type": "git",
  4443. "url": "https://github.com/symfony/options-resolver.git",
  4444. "reference": "cc1147cb11af1b43f503ac18f31aa3bec213aba8"
  4445. },
  4446. "dist": {
  4447. "type": "zip",
  4448. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/cc1147cb11af1b43f503ac18f31aa3bec213aba8",
  4449. "reference": "cc1147cb11af1b43f503ac18f31aa3bec213aba8",
  4450. "shasum": ""
  4451. },
  4452. "require": {
  4453. "php": ">=7.2.5",
  4454. "symfony/deprecation-contracts": "^2.1|^3",
  4455. "symfony/polyfill-php73": "~1.0",
  4456. "symfony/polyfill-php80": "^1.16"
  4457. },
  4458. "type": "library",
  4459. "autoload": {
  4460. "psr-4": {
  4461. "Symfony\\Component\\OptionsResolver\\": ""
  4462. },
  4463. "exclude-from-classmap": [
  4464. "/Tests/"
  4465. ]
  4466. },
  4467. "notification-url": "https://packagist.org/downloads/",
  4468. "license": [
  4469. "MIT"
  4470. ],
  4471. "authors": [
  4472. {
  4473. "name": "Fabien Potencier",
  4474. "email": "fabien@symfony.com"
  4475. },
  4476. {
  4477. "name": "Symfony Community",
  4478. "homepage": "https://symfony.com/contributors"
  4479. }
  4480. ],
  4481. "description": "Provides an improved replacement for the array_replace PHP function",
  4482. "homepage": "https://symfony.com",
  4483. "keywords": [
  4484. "config",
  4485. "configuration",
  4486. "options"
  4487. ],
  4488. "support": {
  4489. "source": "https://github.com/symfony/options-resolver/tree/v5.4.3"
  4490. },
  4491. "funding": [
  4492. {
  4493. "url": "https://symfony.com/sponsor",
  4494. "type": "custom"
  4495. },
  4496. {
  4497. "url": "https://github.com/fabpot",
  4498. "type": "github"
  4499. },
  4500. {
  4501. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4502. "type": "tidelift"
  4503. }
  4504. ],
  4505. "time": "2022-01-02T09:53:40+00:00"
  4506. },
  4507. {
  4508. "name": "symfony/password-hasher",
  4509. "version": "v5.4.8",
  4510. "source": {
  4511. "type": "git",
  4512. "url": "https://github.com/symfony/password-hasher.git",
  4513. "reference": "bc9c982b25c0292aa4e009b3e9cc9835e4d1e94f"
  4514. },
  4515. "dist": {
  4516. "type": "zip",
  4517. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/bc9c982b25c0292aa4e009b3e9cc9835e4d1e94f",
  4518. "reference": "bc9c982b25c0292aa4e009b3e9cc9835e4d1e94f",
  4519. "shasum": ""
  4520. },
  4521. "require": {
  4522. "php": ">=7.2.5",
  4523. "symfony/polyfill-php80": "^1.15"
  4524. },
  4525. "conflict": {
  4526. "symfony/security-core": "<5.3"
  4527. },
  4528. "require-dev": {
  4529. "symfony/console": "^5.3|^6.0",
  4530. "symfony/security-core": "^5.3|^6.0"
  4531. },
  4532. "type": "library",
  4533. "autoload": {
  4534. "psr-4": {
  4535. "Symfony\\Component\\PasswordHasher\\": ""
  4536. },
  4537. "exclude-from-classmap": [
  4538. "/Tests/"
  4539. ]
  4540. },
  4541. "notification-url": "https://packagist.org/downloads/",
  4542. "license": [
  4543. "MIT"
  4544. ],
  4545. "authors": [
  4546. {
  4547. "name": "Robin Chalas",
  4548. "email": "robin.chalas@gmail.com"
  4549. },
  4550. {
  4551. "name": "Symfony Community",
  4552. "homepage": "https://symfony.com/contributors"
  4553. }
  4554. ],
  4555. "description": "Provides password hashing utilities",
  4556. "homepage": "https://symfony.com",
  4557. "keywords": [
  4558. "hashing",
  4559. "password"
  4560. ],
  4561. "support": {
  4562. "source": "https://github.com/symfony/password-hasher/tree/v5.4.8"
  4563. },
  4564. "funding": [
  4565. {
  4566. "url": "https://symfony.com/sponsor",
  4567. "type": "custom"
  4568. },
  4569. {
  4570. "url": "https://github.com/fabpot",
  4571. "type": "github"
  4572. },
  4573. {
  4574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4575. "type": "tidelift"
  4576. }
  4577. ],
  4578. "time": "2022-04-15T13:57:25+00:00"
  4579. },
  4580. {
  4581. "name": "symfony/polyfill-intl-grapheme",
  4582. "version": "v1.26.0",
  4583. "source": {
  4584. "type": "git",
  4585. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4586. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  4587. },
  4588. "dist": {
  4589. "type": "zip",
  4590. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  4591. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  4592. "shasum": ""
  4593. },
  4594. "require": {
  4595. "php": ">=7.1"
  4596. },
  4597. "suggest": {
  4598. "ext-intl": "For best performance"
  4599. },
  4600. "type": "library",
  4601. "extra": {
  4602. "branch-alias": {
  4603. "dev-main": "1.26-dev"
  4604. },
  4605. "thanks": {
  4606. "name": "symfony/polyfill",
  4607. "url": "https://github.com/symfony/polyfill"
  4608. }
  4609. },
  4610. "autoload": {
  4611. "files": [
  4612. "bootstrap.php"
  4613. ],
  4614. "psr-4": {
  4615. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4616. }
  4617. },
  4618. "notification-url": "https://packagist.org/downloads/",
  4619. "license": [
  4620. "MIT"
  4621. ],
  4622. "authors": [
  4623. {
  4624. "name": "Nicolas Grekas",
  4625. "email": "p@tchwork.com"
  4626. },
  4627. {
  4628. "name": "Symfony Community",
  4629. "homepage": "https://symfony.com/contributors"
  4630. }
  4631. ],
  4632. "description": "Symfony polyfill for intl's grapheme_* functions",
  4633. "homepage": "https://symfony.com",
  4634. "keywords": [
  4635. "compatibility",
  4636. "grapheme",
  4637. "intl",
  4638. "polyfill",
  4639. "portable",
  4640. "shim"
  4641. ],
  4642. "support": {
  4643. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  4644. },
  4645. "funding": [
  4646. {
  4647. "url": "https://symfony.com/sponsor",
  4648. "type": "custom"
  4649. },
  4650. {
  4651. "url": "https://github.com/fabpot",
  4652. "type": "github"
  4653. },
  4654. {
  4655. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4656. "type": "tidelift"
  4657. }
  4658. ],
  4659. "time": "2022-05-24T11:49:31+00:00"
  4660. },
  4661. {
  4662. "name": "symfony/polyfill-intl-icu",
  4663. "version": "v1.26.0",
  4664. "source": {
  4665. "type": "git",
  4666. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  4667. "reference": "e407643d610e5f2c8a4b14189150f68934bf5e48"
  4668. },
  4669. "dist": {
  4670. "type": "zip",
  4671. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e407643d610e5f2c8a4b14189150f68934bf5e48",
  4672. "reference": "e407643d610e5f2c8a4b14189150f68934bf5e48",
  4673. "shasum": ""
  4674. },
  4675. "require": {
  4676. "php": ">=7.1"
  4677. },
  4678. "suggest": {
  4679. "ext-intl": "For best performance and support of other locales than \"en\""
  4680. },
  4681. "type": "library",
  4682. "extra": {
  4683. "branch-alias": {
  4684. "dev-main": "1.26-dev"
  4685. },
  4686. "thanks": {
  4687. "name": "symfony/polyfill",
  4688. "url": "https://github.com/symfony/polyfill"
  4689. }
  4690. },
  4691. "autoload": {
  4692. "files": [
  4693. "bootstrap.php"
  4694. ],
  4695. "psr-4": {
  4696. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  4697. },
  4698. "classmap": [
  4699. "Resources/stubs"
  4700. ],
  4701. "exclude-from-classmap": [
  4702. "/Tests/"
  4703. ]
  4704. },
  4705. "notification-url": "https://packagist.org/downloads/",
  4706. "license": [
  4707. "MIT"
  4708. ],
  4709. "authors": [
  4710. {
  4711. "name": "Nicolas Grekas",
  4712. "email": "p@tchwork.com"
  4713. },
  4714. {
  4715. "name": "Symfony Community",
  4716. "homepage": "https://symfony.com/contributors"
  4717. }
  4718. ],
  4719. "description": "Symfony polyfill for intl's ICU-related data and classes",
  4720. "homepage": "https://symfony.com",
  4721. "keywords": [
  4722. "compatibility",
  4723. "icu",
  4724. "intl",
  4725. "polyfill",
  4726. "portable",
  4727. "shim"
  4728. ],
  4729. "support": {
  4730. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.26.0"
  4731. },
  4732. "funding": [
  4733. {
  4734. "url": "https://symfony.com/sponsor",
  4735. "type": "custom"
  4736. },
  4737. {
  4738. "url": "https://github.com/fabpot",
  4739. "type": "github"
  4740. },
  4741. {
  4742. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4743. "type": "tidelift"
  4744. }
  4745. ],
  4746. "time": "2022-05-24T11:49:31+00:00"
  4747. },
  4748. {
  4749. "name": "symfony/polyfill-intl-idn",
  4750. "version": "v1.26.0",
  4751. "source": {
  4752. "type": "git",
  4753. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4754. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  4755. },
  4756. "dist": {
  4757. "type": "zip",
  4758. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  4759. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  4760. "shasum": ""
  4761. },
  4762. "require": {
  4763. "php": ">=7.1",
  4764. "symfony/polyfill-intl-normalizer": "^1.10",
  4765. "symfony/polyfill-php72": "^1.10"
  4766. },
  4767. "suggest": {
  4768. "ext-intl": "For best performance"
  4769. },
  4770. "type": "library",
  4771. "extra": {
  4772. "branch-alias": {
  4773. "dev-main": "1.26-dev"
  4774. },
  4775. "thanks": {
  4776. "name": "symfony/polyfill",
  4777. "url": "https://github.com/symfony/polyfill"
  4778. }
  4779. },
  4780. "autoload": {
  4781. "files": [
  4782. "bootstrap.php"
  4783. ],
  4784. "psr-4": {
  4785. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4786. }
  4787. },
  4788. "notification-url": "https://packagist.org/downloads/",
  4789. "license": [
  4790. "MIT"
  4791. ],
  4792. "authors": [
  4793. {
  4794. "name": "Laurent Bassin",
  4795. "email": "laurent@bassin.info"
  4796. },
  4797. {
  4798. "name": "Trevor Rowbotham",
  4799. "email": "trevor.rowbotham@pm.me"
  4800. },
  4801. {
  4802. "name": "Symfony Community",
  4803. "homepage": "https://symfony.com/contributors"
  4804. }
  4805. ],
  4806. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4807. "homepage": "https://symfony.com",
  4808. "keywords": [
  4809. "compatibility",
  4810. "idn",
  4811. "intl",
  4812. "polyfill",
  4813. "portable",
  4814. "shim"
  4815. ],
  4816. "support": {
  4817. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  4818. },
  4819. "funding": [
  4820. {
  4821. "url": "https://symfony.com/sponsor",
  4822. "type": "custom"
  4823. },
  4824. {
  4825. "url": "https://github.com/fabpot",
  4826. "type": "github"
  4827. },
  4828. {
  4829. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4830. "type": "tidelift"
  4831. }
  4832. ],
  4833. "time": "2022-05-24T11:49:31+00:00"
  4834. },
  4835. {
  4836. "name": "symfony/polyfill-intl-normalizer",
  4837. "version": "v1.26.0",
  4838. "source": {
  4839. "type": "git",
  4840. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4841. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  4842. },
  4843. "dist": {
  4844. "type": "zip",
  4845. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  4846. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  4847. "shasum": ""
  4848. },
  4849. "require": {
  4850. "php": ">=7.1"
  4851. },
  4852. "suggest": {
  4853. "ext-intl": "For best performance"
  4854. },
  4855. "type": "library",
  4856. "extra": {
  4857. "branch-alias": {
  4858. "dev-main": "1.26-dev"
  4859. },
  4860. "thanks": {
  4861. "name": "symfony/polyfill",
  4862. "url": "https://github.com/symfony/polyfill"
  4863. }
  4864. },
  4865. "autoload": {
  4866. "files": [
  4867. "bootstrap.php"
  4868. ],
  4869. "psr-4": {
  4870. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4871. },
  4872. "classmap": [
  4873. "Resources/stubs"
  4874. ]
  4875. },
  4876. "notification-url": "https://packagist.org/downloads/",
  4877. "license": [
  4878. "MIT"
  4879. ],
  4880. "authors": [
  4881. {
  4882. "name": "Nicolas Grekas",
  4883. "email": "p@tchwork.com"
  4884. },
  4885. {
  4886. "name": "Symfony Community",
  4887. "homepage": "https://symfony.com/contributors"
  4888. }
  4889. ],
  4890. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4891. "homepage": "https://symfony.com",
  4892. "keywords": [
  4893. "compatibility",
  4894. "intl",
  4895. "normalizer",
  4896. "polyfill",
  4897. "portable",
  4898. "shim"
  4899. ],
  4900. "support": {
  4901. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  4902. },
  4903. "funding": [
  4904. {
  4905. "url": "https://symfony.com/sponsor",
  4906. "type": "custom"
  4907. },
  4908. {
  4909. "url": "https://github.com/fabpot",
  4910. "type": "github"
  4911. },
  4912. {
  4913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4914. "type": "tidelift"
  4915. }
  4916. ],
  4917. "time": "2022-05-24T11:49:31+00:00"
  4918. },
  4919. {
  4920. "name": "symfony/polyfill-mbstring",
  4921. "version": "v1.26.0",
  4922. "source": {
  4923. "type": "git",
  4924. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4925. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  4926. },
  4927. "dist": {
  4928. "type": "zip",
  4929. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  4930. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  4931. "shasum": ""
  4932. },
  4933. "require": {
  4934. "php": ">=7.1"
  4935. },
  4936. "provide": {
  4937. "ext-mbstring": "*"
  4938. },
  4939. "suggest": {
  4940. "ext-mbstring": "For best performance"
  4941. },
  4942. "type": "library",
  4943. "extra": {
  4944. "branch-alias": {
  4945. "dev-main": "1.26-dev"
  4946. },
  4947. "thanks": {
  4948. "name": "symfony/polyfill",
  4949. "url": "https://github.com/symfony/polyfill"
  4950. }
  4951. },
  4952. "autoload": {
  4953. "files": [
  4954. "bootstrap.php"
  4955. ],
  4956. "psr-4": {
  4957. "Symfony\\Polyfill\\Mbstring\\": ""
  4958. }
  4959. },
  4960. "notification-url": "https://packagist.org/downloads/",
  4961. "license": [
  4962. "MIT"
  4963. ],
  4964. "authors": [
  4965. {
  4966. "name": "Nicolas Grekas",
  4967. "email": "p@tchwork.com"
  4968. },
  4969. {
  4970. "name": "Symfony Community",
  4971. "homepage": "https://symfony.com/contributors"
  4972. }
  4973. ],
  4974. "description": "Symfony polyfill for the Mbstring extension",
  4975. "homepage": "https://symfony.com",
  4976. "keywords": [
  4977. "compatibility",
  4978. "mbstring",
  4979. "polyfill",
  4980. "portable",
  4981. "shim"
  4982. ],
  4983. "support": {
  4984. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  4985. },
  4986. "funding": [
  4987. {
  4988. "url": "https://symfony.com/sponsor",
  4989. "type": "custom"
  4990. },
  4991. {
  4992. "url": "https://github.com/fabpot",
  4993. "type": "github"
  4994. },
  4995. {
  4996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4997. "type": "tidelift"
  4998. }
  4999. ],
  5000. "time": "2022-05-24T11:49:31+00:00"
  5001. },
  5002. {
  5003. "name": "symfony/polyfill-php72",
  5004. "version": "v1.26.0",
  5005. "source": {
  5006. "type": "git",
  5007. "url": "https://github.com/symfony/polyfill-php72.git",
  5008. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  5009. },
  5010. "dist": {
  5011. "type": "zip",
  5012. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  5013. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  5014. "shasum": ""
  5015. },
  5016. "require": {
  5017. "php": ">=7.1"
  5018. },
  5019. "type": "library",
  5020. "extra": {
  5021. "branch-alias": {
  5022. "dev-main": "1.26-dev"
  5023. },
  5024. "thanks": {
  5025. "name": "symfony/polyfill",
  5026. "url": "https://github.com/symfony/polyfill"
  5027. }
  5028. },
  5029. "autoload": {
  5030. "files": [
  5031. "bootstrap.php"
  5032. ],
  5033. "psr-4": {
  5034. "Symfony\\Polyfill\\Php72\\": ""
  5035. }
  5036. },
  5037. "notification-url": "https://packagist.org/downloads/",
  5038. "license": [
  5039. "MIT"
  5040. ],
  5041. "authors": [
  5042. {
  5043. "name": "Nicolas Grekas",
  5044. "email": "p@tchwork.com"
  5045. },
  5046. {
  5047. "name": "Symfony Community",
  5048. "homepage": "https://symfony.com/contributors"
  5049. }
  5050. ],
  5051. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5052. "homepage": "https://symfony.com",
  5053. "keywords": [
  5054. "compatibility",
  5055. "polyfill",
  5056. "portable",
  5057. "shim"
  5058. ],
  5059. "support": {
  5060. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  5061. },
  5062. "funding": [
  5063. {
  5064. "url": "https://symfony.com/sponsor",
  5065. "type": "custom"
  5066. },
  5067. {
  5068. "url": "https://github.com/fabpot",
  5069. "type": "github"
  5070. },
  5071. {
  5072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5073. "type": "tidelift"
  5074. }
  5075. ],
  5076. "time": "2022-05-24T11:49:31+00:00"
  5077. },
  5078. {
  5079. "name": "symfony/polyfill-php73",
  5080. "version": "v1.26.0",
  5081. "source": {
  5082. "type": "git",
  5083. "url": "https://github.com/symfony/polyfill-php73.git",
  5084. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  5085. },
  5086. "dist": {
  5087. "type": "zip",
  5088. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  5089. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  5090. "shasum": ""
  5091. },
  5092. "require": {
  5093. "php": ">=7.1"
  5094. },
  5095. "type": "library",
  5096. "extra": {
  5097. "branch-alias": {
  5098. "dev-main": "1.26-dev"
  5099. },
  5100. "thanks": {
  5101. "name": "symfony/polyfill",
  5102. "url": "https://github.com/symfony/polyfill"
  5103. }
  5104. },
  5105. "autoload": {
  5106. "files": [
  5107. "bootstrap.php"
  5108. ],
  5109. "psr-4": {
  5110. "Symfony\\Polyfill\\Php73\\": ""
  5111. },
  5112. "classmap": [
  5113. "Resources/stubs"
  5114. ]
  5115. },
  5116. "notification-url": "https://packagist.org/downloads/",
  5117. "license": [
  5118. "MIT"
  5119. ],
  5120. "authors": [
  5121. {
  5122. "name": "Nicolas Grekas",
  5123. "email": "p@tchwork.com"
  5124. },
  5125. {
  5126. "name": "Symfony Community",
  5127. "homepage": "https://symfony.com/contributors"
  5128. }
  5129. ],
  5130. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5131. "homepage": "https://symfony.com",
  5132. "keywords": [
  5133. "compatibility",
  5134. "polyfill",
  5135. "portable",
  5136. "shim"
  5137. ],
  5138. "support": {
  5139. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  5140. },
  5141. "funding": [
  5142. {
  5143. "url": "https://symfony.com/sponsor",
  5144. "type": "custom"
  5145. },
  5146. {
  5147. "url": "https://github.com/fabpot",
  5148. "type": "github"
  5149. },
  5150. {
  5151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5152. "type": "tidelift"
  5153. }
  5154. ],
  5155. "time": "2022-05-24T11:49:31+00:00"
  5156. },
  5157. {
  5158. "name": "symfony/polyfill-php80",
  5159. "version": "v1.26.0",
  5160. "source": {
  5161. "type": "git",
  5162. "url": "https://github.com/symfony/polyfill-php80.git",
  5163. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  5164. },
  5165. "dist": {
  5166. "type": "zip",
  5167. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  5168. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  5169. "shasum": ""
  5170. },
  5171. "require": {
  5172. "php": ">=7.1"
  5173. },
  5174. "type": "library",
  5175. "extra": {
  5176. "branch-alias": {
  5177. "dev-main": "1.26-dev"
  5178. },
  5179. "thanks": {
  5180. "name": "symfony/polyfill",
  5181. "url": "https://github.com/symfony/polyfill"
  5182. }
  5183. },
  5184. "autoload": {
  5185. "files": [
  5186. "bootstrap.php"
  5187. ],
  5188. "psr-4": {
  5189. "Symfony\\Polyfill\\Php80\\": ""
  5190. },
  5191. "classmap": [
  5192. "Resources/stubs"
  5193. ]
  5194. },
  5195. "notification-url": "https://packagist.org/downloads/",
  5196. "license": [
  5197. "MIT"
  5198. ],
  5199. "authors": [
  5200. {
  5201. "name": "Ion Bazan",
  5202. "email": "ion.bazan@gmail.com"
  5203. },
  5204. {
  5205. "name": "Nicolas Grekas",
  5206. "email": "p@tchwork.com"
  5207. },
  5208. {
  5209. "name": "Symfony Community",
  5210. "homepage": "https://symfony.com/contributors"
  5211. }
  5212. ],
  5213. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5214. "homepage": "https://symfony.com",
  5215. "keywords": [
  5216. "compatibility",
  5217. "polyfill",
  5218. "portable",
  5219. "shim"
  5220. ],
  5221. "support": {
  5222. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  5223. },
  5224. "funding": [
  5225. {
  5226. "url": "https://symfony.com/sponsor",
  5227. "type": "custom"
  5228. },
  5229. {
  5230. "url": "https://github.com/fabpot",
  5231. "type": "github"
  5232. },
  5233. {
  5234. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5235. "type": "tidelift"
  5236. }
  5237. ],
  5238. "time": "2022-05-10T07:21:04+00:00"
  5239. },
  5240. {
  5241. "name": "symfony/polyfill-php81",
  5242. "version": "v1.26.0",
  5243. "source": {
  5244. "type": "git",
  5245. "url": "https://github.com/symfony/polyfill-php81.git",
  5246. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  5247. },
  5248. "dist": {
  5249. "type": "zip",
  5250. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  5251. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  5252. "shasum": ""
  5253. },
  5254. "require": {
  5255. "php": ">=7.1"
  5256. },
  5257. "type": "library",
  5258. "extra": {
  5259. "branch-alias": {
  5260. "dev-main": "1.26-dev"
  5261. },
  5262. "thanks": {
  5263. "name": "symfony/polyfill",
  5264. "url": "https://github.com/symfony/polyfill"
  5265. }
  5266. },
  5267. "autoload": {
  5268. "files": [
  5269. "bootstrap.php"
  5270. ],
  5271. "psr-4": {
  5272. "Symfony\\Polyfill\\Php81\\": ""
  5273. },
  5274. "classmap": [
  5275. "Resources/stubs"
  5276. ]
  5277. },
  5278. "notification-url": "https://packagist.org/downloads/",
  5279. "license": [
  5280. "MIT"
  5281. ],
  5282. "authors": [
  5283. {
  5284. "name": "Nicolas Grekas",
  5285. "email": "p@tchwork.com"
  5286. },
  5287. {
  5288. "name": "Symfony Community",
  5289. "homepage": "https://symfony.com/contributors"
  5290. }
  5291. ],
  5292. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  5293. "homepage": "https://symfony.com",
  5294. "keywords": [
  5295. "compatibility",
  5296. "polyfill",
  5297. "portable",
  5298. "shim"
  5299. ],
  5300. "support": {
  5301. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  5302. },
  5303. "funding": [
  5304. {
  5305. "url": "https://symfony.com/sponsor",
  5306. "type": "custom"
  5307. },
  5308. {
  5309. "url": "https://github.com/fabpot",
  5310. "type": "github"
  5311. },
  5312. {
  5313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5314. "type": "tidelift"
  5315. }
  5316. ],
  5317. "time": "2022-05-24T11:49:31+00:00"
  5318. },
  5319. {
  5320. "name": "symfony/process",
  5321. "version": "v5.4.8",
  5322. "source": {
  5323. "type": "git",
  5324. "url": "https://github.com/symfony/process.git",
  5325. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3"
  5326. },
  5327. "dist": {
  5328. "type": "zip",
  5329. "url": "https://api.github.com/repos/symfony/process/zipball/597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  5330. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  5331. "shasum": ""
  5332. },
  5333. "require": {
  5334. "php": ">=7.2.5",
  5335. "symfony/polyfill-php80": "^1.16"
  5336. },
  5337. "type": "library",
  5338. "autoload": {
  5339. "psr-4": {
  5340. "Symfony\\Component\\Process\\": ""
  5341. },
  5342. "exclude-from-classmap": [
  5343. "/Tests/"
  5344. ]
  5345. },
  5346. "notification-url": "https://packagist.org/downloads/",
  5347. "license": [
  5348. "MIT"
  5349. ],
  5350. "authors": [
  5351. {
  5352. "name": "Fabien Potencier",
  5353. "email": "fabien@symfony.com"
  5354. },
  5355. {
  5356. "name": "Symfony Community",
  5357. "homepage": "https://symfony.com/contributors"
  5358. }
  5359. ],
  5360. "description": "Executes commands in sub-processes",
  5361. "homepage": "https://symfony.com",
  5362. "support": {
  5363. "source": "https://github.com/symfony/process/tree/v5.4.8"
  5364. },
  5365. "funding": [
  5366. {
  5367. "url": "https://symfony.com/sponsor",
  5368. "type": "custom"
  5369. },
  5370. {
  5371. "url": "https://github.com/fabpot",
  5372. "type": "github"
  5373. },
  5374. {
  5375. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5376. "type": "tidelift"
  5377. }
  5378. ],
  5379. "time": "2022-04-08T05:07:18+00:00"
  5380. },
  5381. {
  5382. "name": "symfony/property-access",
  5383. "version": "v5.4.8",
  5384. "source": {
  5385. "type": "git",
  5386. "url": "https://github.com/symfony/property-access.git",
  5387. "reference": "fe501d498d6ec7e9efe928c90fabedf629116495"
  5388. },
  5389. "dist": {
  5390. "type": "zip",
  5391. "url": "https://api.github.com/repos/symfony/property-access/zipball/fe501d498d6ec7e9efe928c90fabedf629116495",
  5392. "reference": "fe501d498d6ec7e9efe928c90fabedf629116495",
  5393. "shasum": ""
  5394. },
  5395. "require": {
  5396. "php": ">=7.2.5",
  5397. "symfony/deprecation-contracts": "^2.1|^3",
  5398. "symfony/polyfill-php80": "^1.16",
  5399. "symfony/property-info": "^5.2|^6.0"
  5400. },
  5401. "require-dev": {
  5402. "symfony/cache": "^4.4|^5.0|^6.0"
  5403. },
  5404. "suggest": {
  5405. "psr/cache-implementation": "To cache access methods."
  5406. },
  5407. "type": "library",
  5408. "autoload": {
  5409. "psr-4": {
  5410. "Symfony\\Component\\PropertyAccess\\": ""
  5411. },
  5412. "exclude-from-classmap": [
  5413. "/Tests/"
  5414. ]
  5415. },
  5416. "notification-url": "https://packagist.org/downloads/",
  5417. "license": [
  5418. "MIT"
  5419. ],
  5420. "authors": [
  5421. {
  5422. "name": "Fabien Potencier",
  5423. "email": "fabien@symfony.com"
  5424. },
  5425. {
  5426. "name": "Symfony Community",
  5427. "homepage": "https://symfony.com/contributors"
  5428. }
  5429. ],
  5430. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5431. "homepage": "https://symfony.com",
  5432. "keywords": [
  5433. "access",
  5434. "array",
  5435. "extraction",
  5436. "index",
  5437. "injection",
  5438. "object",
  5439. "property",
  5440. "property path",
  5441. "reflection"
  5442. ],
  5443. "support": {
  5444. "source": "https://github.com/symfony/property-access/tree/v5.4.8"
  5445. },
  5446. "funding": [
  5447. {
  5448. "url": "https://symfony.com/sponsor",
  5449. "type": "custom"
  5450. },
  5451. {
  5452. "url": "https://github.com/fabpot",
  5453. "type": "github"
  5454. },
  5455. {
  5456. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5457. "type": "tidelift"
  5458. }
  5459. ],
  5460. "time": "2022-04-12T15:48:08+00:00"
  5461. },
  5462. {
  5463. "name": "symfony/property-info",
  5464. "version": "v5.4.10",
  5465. "source": {
  5466. "type": "git",
  5467. "url": "https://github.com/symfony/property-info.git",
  5468. "reference": "924406e19365953870517eb7f63ac3f7bfb71875"
  5469. },
  5470. "dist": {
  5471. "type": "zip",
  5472. "url": "https://api.github.com/repos/symfony/property-info/zipball/924406e19365953870517eb7f63ac3f7bfb71875",
  5473. "reference": "924406e19365953870517eb7f63ac3f7bfb71875",
  5474. "shasum": ""
  5475. },
  5476. "require": {
  5477. "php": ">=7.2.5",
  5478. "symfony/deprecation-contracts": "^2.1|^3",
  5479. "symfony/polyfill-php80": "^1.16",
  5480. "symfony/string": "^5.1|^6.0"
  5481. },
  5482. "conflict": {
  5483. "phpdocumentor/reflection-docblock": "<3.2.2",
  5484. "phpdocumentor/type-resolver": "<1.4.0",
  5485. "symfony/dependency-injection": "<4.4"
  5486. },
  5487. "require-dev": {
  5488. "doctrine/annotations": "^1.10.4",
  5489. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5490. "phpstan/phpdoc-parser": "^1.0",
  5491. "symfony/cache": "^4.4|^5.0|^6.0",
  5492. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5493. "symfony/serializer": "^4.4|^5.0|^6.0"
  5494. },
  5495. "suggest": {
  5496. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  5497. "psr/cache-implementation": "To cache results",
  5498. "symfony/doctrine-bridge": "To use Doctrine metadata",
  5499. "symfony/serializer": "To use Serializer metadata"
  5500. },
  5501. "type": "library",
  5502. "autoload": {
  5503. "psr-4": {
  5504. "Symfony\\Component\\PropertyInfo\\": ""
  5505. },
  5506. "exclude-from-classmap": [
  5507. "/Tests/"
  5508. ]
  5509. },
  5510. "notification-url": "https://packagist.org/downloads/",
  5511. "license": [
  5512. "MIT"
  5513. ],
  5514. "authors": [
  5515. {
  5516. "name": "Kévin Dunglas",
  5517. "email": "dunglas@gmail.com"
  5518. },
  5519. {
  5520. "name": "Symfony Community",
  5521. "homepage": "https://symfony.com/contributors"
  5522. }
  5523. ],
  5524. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  5525. "homepage": "https://symfony.com",
  5526. "keywords": [
  5527. "doctrine",
  5528. "phpdoc",
  5529. "property",
  5530. "symfony",
  5531. "type",
  5532. "validator"
  5533. ],
  5534. "support": {
  5535. "source": "https://github.com/symfony/property-info/tree/v5.4.10"
  5536. },
  5537. "funding": [
  5538. {
  5539. "url": "https://symfony.com/sponsor",
  5540. "type": "custom"
  5541. },
  5542. {
  5543. "url": "https://github.com/fabpot",
  5544. "type": "github"
  5545. },
  5546. {
  5547. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5548. "type": "tidelift"
  5549. }
  5550. ],
  5551. "time": "2022-05-31T05:14:08+00:00"
  5552. },
  5553. {
  5554. "name": "symfony/proxy-manager-bridge",
  5555. "version": "v5.4.6",
  5556. "source": {
  5557. "type": "git",
  5558. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  5559. "reference": "e6936de1cc8f4e6e3b2264aef186ca21695aee8e"
  5560. },
  5561. "dist": {
  5562. "type": "zip",
  5563. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/e6936de1cc8f4e6e3b2264aef186ca21695aee8e",
  5564. "reference": "e6936de1cc8f4e6e3b2264aef186ca21695aee8e",
  5565. "shasum": ""
  5566. },
  5567. "require": {
  5568. "friendsofphp/proxy-manager-lts": "^1.0.2",
  5569. "php": ">=7.2.5",
  5570. "symfony/dependency-injection": "^5.0|^6.0",
  5571. "symfony/polyfill-php80": "^1.16"
  5572. },
  5573. "require-dev": {
  5574. "symfony/config": "^4.4|^5.0|^6.0"
  5575. },
  5576. "type": "symfony-bridge",
  5577. "autoload": {
  5578. "psr-4": {
  5579. "Symfony\\Bridge\\ProxyManager\\": ""
  5580. },
  5581. "exclude-from-classmap": [
  5582. "/Tests/"
  5583. ]
  5584. },
  5585. "notification-url": "https://packagist.org/downloads/",
  5586. "license": [
  5587. "MIT"
  5588. ],
  5589. "authors": [
  5590. {
  5591. "name": "Fabien Potencier",
  5592. "email": "fabien@symfony.com"
  5593. },
  5594. {
  5595. "name": "Symfony Community",
  5596. "homepage": "https://symfony.com/contributors"
  5597. }
  5598. ],
  5599. "description": "Provides integration for ProxyManager with various Symfony components",
  5600. "homepage": "https://symfony.com",
  5601. "support": {
  5602. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v5.4.6"
  5603. },
  5604. "funding": [
  5605. {
  5606. "url": "https://symfony.com/sponsor",
  5607. "type": "custom"
  5608. },
  5609. {
  5610. "url": "https://github.com/fabpot",
  5611. "type": "github"
  5612. },
  5613. {
  5614. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5615. "type": "tidelift"
  5616. }
  5617. ],
  5618. "time": "2022-03-02T12:42:23+00:00"
  5619. },
  5620. {
  5621. "name": "symfony/routing",
  5622. "version": "v5.4.8",
  5623. "source": {
  5624. "type": "git",
  5625. "url": "https://github.com/symfony/routing.git",
  5626. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7"
  5627. },
  5628. "dist": {
  5629. "type": "zip",
  5630. "url": "https://api.github.com/repos/symfony/routing/zipball/e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  5631. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  5632. "shasum": ""
  5633. },
  5634. "require": {
  5635. "php": ">=7.2.5",
  5636. "symfony/deprecation-contracts": "^2.1|^3",
  5637. "symfony/polyfill-php80": "^1.16"
  5638. },
  5639. "conflict": {
  5640. "doctrine/annotations": "<1.12",
  5641. "symfony/config": "<5.3",
  5642. "symfony/dependency-injection": "<4.4",
  5643. "symfony/yaml": "<4.4"
  5644. },
  5645. "require-dev": {
  5646. "doctrine/annotations": "^1.12",
  5647. "psr/log": "^1|^2|^3",
  5648. "symfony/config": "^5.3|^6.0",
  5649. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5650. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5651. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5652. "symfony/yaml": "^4.4|^5.0|^6.0"
  5653. },
  5654. "suggest": {
  5655. "symfony/config": "For using the all-in-one router or any loader",
  5656. "symfony/expression-language": "For using expression matching",
  5657. "symfony/http-foundation": "For using a Symfony Request object",
  5658. "symfony/yaml": "For using the YAML loader"
  5659. },
  5660. "type": "library",
  5661. "autoload": {
  5662. "psr-4": {
  5663. "Symfony\\Component\\Routing\\": ""
  5664. },
  5665. "exclude-from-classmap": [
  5666. "/Tests/"
  5667. ]
  5668. },
  5669. "notification-url": "https://packagist.org/downloads/",
  5670. "license": [
  5671. "MIT"
  5672. ],
  5673. "authors": [
  5674. {
  5675. "name": "Fabien Potencier",
  5676. "email": "fabien@symfony.com"
  5677. },
  5678. {
  5679. "name": "Symfony Community",
  5680. "homepage": "https://symfony.com/contributors"
  5681. }
  5682. ],
  5683. "description": "Maps an HTTP request to a set of configuration variables",
  5684. "homepage": "https://symfony.com",
  5685. "keywords": [
  5686. "router",
  5687. "routing",
  5688. "uri",
  5689. "url"
  5690. ],
  5691. "support": {
  5692. "source": "https://github.com/symfony/routing/tree/v5.4.8"
  5693. },
  5694. "funding": [
  5695. {
  5696. "url": "https://symfony.com/sponsor",
  5697. "type": "custom"
  5698. },
  5699. {
  5700. "url": "https://github.com/fabpot",
  5701. "type": "github"
  5702. },
  5703. {
  5704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5705. "type": "tidelift"
  5706. }
  5707. ],
  5708. "time": "2022-04-18T21:45:37+00:00"
  5709. },
  5710. {
  5711. "name": "symfony/security-bundle",
  5712. "version": "v5.4.9",
  5713. "source": {
  5714. "type": "git",
  5715. "url": "https://github.com/symfony/security-bundle.git",
  5716. "reference": "4d5f4953969f136ed7fa6b4a4924cf0fa54a2cd4"
  5717. },
  5718. "dist": {
  5719. "type": "zip",
  5720. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/4d5f4953969f136ed7fa6b4a4924cf0fa54a2cd4",
  5721. "reference": "4d5f4953969f136ed7fa6b4a4924cf0fa54a2cd4",
  5722. "shasum": ""
  5723. },
  5724. "require": {
  5725. "ext-xml": "*",
  5726. "php": ">=7.2.5",
  5727. "symfony/config": "^4.4|^5.0|^6.0",
  5728. "symfony/dependency-injection": "^5.3|^6.0",
  5729. "symfony/deprecation-contracts": "^2.1|^3",
  5730. "symfony/event-dispatcher": "^5.1|^6.0",
  5731. "symfony/http-foundation": "^5.3|^6.0",
  5732. "symfony/http-kernel": "^5.3|^6.0",
  5733. "symfony/password-hasher": "^5.3|^6.0",
  5734. "symfony/polyfill-php80": "^1.16",
  5735. "symfony/security-core": "^5.4|^6.0",
  5736. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  5737. "symfony/security-guard": "^5.3",
  5738. "symfony/security-http": "^5.4|^6.0"
  5739. },
  5740. "conflict": {
  5741. "symfony/browser-kit": "<4.4",
  5742. "symfony/console": "<4.4",
  5743. "symfony/framework-bundle": "<4.4",
  5744. "symfony/ldap": "<5.1",
  5745. "symfony/twig-bundle": "<4.4"
  5746. },
  5747. "require-dev": {
  5748. "doctrine/annotations": "^1.10.4",
  5749. "symfony/asset": "^4.4|^5.0|^6.0",
  5750. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  5751. "symfony/console": "^4.4|^5.0|^6.0",
  5752. "symfony/css-selector": "^4.4|^5.0|^6.0",
  5753. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  5754. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5755. "symfony/form": "^4.4|^5.0|^6.0",
  5756. "symfony/framework-bundle": "^5.3|^6.0",
  5757. "symfony/ldap": "^5.3|^6.0",
  5758. "symfony/process": "^4.4|^5.0|^6.0",
  5759. "symfony/rate-limiter": "^5.2|^6.0",
  5760. "symfony/serializer": "^4.4|^5.0|^6.0",
  5761. "symfony/translation": "^4.4|^5.0|^6.0",
  5762. "symfony/twig-bridge": "^4.4|^5.0|^6.0",
  5763. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  5764. "symfony/validator": "^4.4|^5.0|^6.0",
  5765. "symfony/yaml": "^4.4|^5.0|^6.0",
  5766. "twig/twig": "^2.13|^3.0.4"
  5767. },
  5768. "type": "symfony-bundle",
  5769. "autoload": {
  5770. "psr-4": {
  5771. "Symfony\\Bundle\\SecurityBundle\\": ""
  5772. },
  5773. "exclude-from-classmap": [
  5774. "/Tests/"
  5775. ]
  5776. },
  5777. "notification-url": "https://packagist.org/downloads/",
  5778. "license": [
  5779. "MIT"
  5780. ],
  5781. "authors": [
  5782. {
  5783. "name": "Fabien Potencier",
  5784. "email": "fabien@symfony.com"
  5785. },
  5786. {
  5787. "name": "Symfony Community",
  5788. "homepage": "https://symfony.com/contributors"
  5789. }
  5790. ],
  5791. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  5792. "homepage": "https://symfony.com",
  5793. "support": {
  5794. "source": "https://github.com/symfony/security-bundle/tree/v5.4.9"
  5795. },
  5796. "funding": [
  5797. {
  5798. "url": "https://symfony.com/sponsor",
  5799. "type": "custom"
  5800. },
  5801. {
  5802. "url": "https://github.com/fabpot",
  5803. "type": "github"
  5804. },
  5805. {
  5806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5807. "type": "tidelift"
  5808. }
  5809. ],
  5810. "time": "2022-05-22T15:37:17+00:00"
  5811. },
  5812. {
  5813. "name": "symfony/security-core",
  5814. "version": "v5.4.10",
  5815. "source": {
  5816. "type": "git",
  5817. "url": "https://github.com/symfony/security-core.git",
  5818. "reference": "fcaf47f5c1f598f02e7fa812536e3334709432ca"
  5819. },
  5820. "dist": {
  5821. "type": "zip",
  5822. "url": "https://api.github.com/repos/symfony/security-core/zipball/fcaf47f5c1f598f02e7fa812536e3334709432ca",
  5823. "reference": "fcaf47f5c1f598f02e7fa812536e3334709432ca",
  5824. "shasum": ""
  5825. },
  5826. "require": {
  5827. "php": ">=7.2.5",
  5828. "symfony/deprecation-contracts": "^2.1|^3",
  5829. "symfony/event-dispatcher-contracts": "^1.1|^2|^3",
  5830. "symfony/password-hasher": "^5.3|^6.0",
  5831. "symfony/polyfill-php80": "^1.16",
  5832. "symfony/service-contracts": "^1.1.6|^2|^3"
  5833. },
  5834. "conflict": {
  5835. "symfony/event-dispatcher": "<4.4",
  5836. "symfony/http-foundation": "<5.3",
  5837. "symfony/ldap": "<4.4",
  5838. "symfony/security-guard": "<4.4",
  5839. "symfony/validator": "<5.2"
  5840. },
  5841. "require-dev": {
  5842. "psr/cache": "^1.0|^2.0|^3.0",
  5843. "psr/container": "^1.0|^2.0",
  5844. "psr/log": "^1|^2|^3",
  5845. "symfony/cache": "^4.4|^5.0|^6.0",
  5846. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5847. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5848. "symfony/http-foundation": "^5.3|^6.0",
  5849. "symfony/ldap": "^4.4|^5.0|^6.0",
  5850. "symfony/translation": "^4.4|^5.0|^6.0",
  5851. "symfony/validator": "^5.2|^6.0"
  5852. },
  5853. "suggest": {
  5854. "psr/container-implementation": "To instantiate the Security class",
  5855. "symfony/event-dispatcher": "",
  5856. "symfony/expression-language": "For using the expression voter",
  5857. "symfony/http-foundation": "",
  5858. "symfony/ldap": "For using LDAP integration",
  5859. "symfony/validator": "For using the user password constraint"
  5860. },
  5861. "type": "library",
  5862. "autoload": {
  5863. "psr-4": {
  5864. "Symfony\\Component\\Security\\Core\\": ""
  5865. },
  5866. "exclude-from-classmap": [
  5867. "/Tests/"
  5868. ]
  5869. },
  5870. "notification-url": "https://packagist.org/downloads/",
  5871. "license": [
  5872. "MIT"
  5873. ],
  5874. "authors": [
  5875. {
  5876. "name": "Fabien Potencier",
  5877. "email": "fabien@symfony.com"
  5878. },
  5879. {
  5880. "name": "Symfony Community",
  5881. "homepage": "https://symfony.com/contributors"
  5882. }
  5883. ],
  5884. "description": "Symfony Security Component - Core Library",
  5885. "homepage": "https://symfony.com",
  5886. "support": {
  5887. "source": "https://github.com/symfony/security-core/tree/v5.4.10"
  5888. },
  5889. "funding": [
  5890. {
  5891. "url": "https://symfony.com/sponsor",
  5892. "type": "custom"
  5893. },
  5894. {
  5895. "url": "https://github.com/fabpot",
  5896. "type": "github"
  5897. },
  5898. {
  5899. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5900. "type": "tidelift"
  5901. }
  5902. ],
  5903. "time": "2022-06-23T11:55:08+00:00"
  5904. },
  5905. {
  5906. "name": "symfony/security-csrf",
  5907. "version": "v5.4.9",
  5908. "source": {
  5909. "type": "git",
  5910. "url": "https://github.com/symfony/security-csrf.git",
  5911. "reference": "ac64013bba1c7a6555b3dc4e701f058cf9f7eb64"
  5912. },
  5913. "dist": {
  5914. "type": "zip",
  5915. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/ac64013bba1c7a6555b3dc4e701f058cf9f7eb64",
  5916. "reference": "ac64013bba1c7a6555b3dc4e701f058cf9f7eb64",
  5917. "shasum": ""
  5918. },
  5919. "require": {
  5920. "php": ">=7.2.5",
  5921. "symfony/polyfill-php80": "^1.16",
  5922. "symfony/security-core": "^4.4|^5.0|^6.0"
  5923. },
  5924. "conflict": {
  5925. "symfony/http-foundation": "<5.3"
  5926. },
  5927. "require-dev": {
  5928. "symfony/http-foundation": "^5.3|^6.0"
  5929. },
  5930. "suggest": {
  5931. "symfony/http-foundation": "For using the class SessionTokenStorage."
  5932. },
  5933. "type": "library",
  5934. "autoload": {
  5935. "psr-4": {
  5936. "Symfony\\Component\\Security\\Csrf\\": ""
  5937. },
  5938. "exclude-from-classmap": [
  5939. "/Tests/"
  5940. ]
  5941. },
  5942. "notification-url": "https://packagist.org/downloads/",
  5943. "license": [
  5944. "MIT"
  5945. ],
  5946. "authors": [
  5947. {
  5948. "name": "Fabien Potencier",
  5949. "email": "fabien@symfony.com"
  5950. },
  5951. {
  5952. "name": "Symfony Community",
  5953. "homepage": "https://symfony.com/contributors"
  5954. }
  5955. ],
  5956. "description": "Symfony Security Component - CSRF Library",
  5957. "homepage": "https://symfony.com",
  5958. "support": {
  5959. "source": "https://github.com/symfony/security-csrf/tree/v5.4.9"
  5960. },
  5961. "funding": [
  5962. {
  5963. "url": "https://symfony.com/sponsor",
  5964. "type": "custom"
  5965. },
  5966. {
  5967. "url": "https://github.com/fabpot",
  5968. "type": "github"
  5969. },
  5970. {
  5971. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5972. "type": "tidelift"
  5973. }
  5974. ],
  5975. "time": "2022-05-11T16:54:42+00:00"
  5976. },
  5977. {
  5978. "name": "symfony/security-guard",
  5979. "version": "v5.4.9",
  5980. "source": {
  5981. "type": "git",
  5982. "url": "https://github.com/symfony/security-guard.git",
  5983. "reference": "64c83d25b5b23fa07e77c861d19e46ce7929a789"
  5984. },
  5985. "dist": {
  5986. "type": "zip",
  5987. "url": "https://api.github.com/repos/symfony/security-guard/zipball/64c83d25b5b23fa07e77c861d19e46ce7929a789",
  5988. "reference": "64c83d25b5b23fa07e77c861d19e46ce7929a789",
  5989. "shasum": ""
  5990. },
  5991. "require": {
  5992. "php": ">=7.2.5",
  5993. "symfony/polyfill-php80": "^1.15",
  5994. "symfony/security-core": "^5.0",
  5995. "symfony/security-http": "^5.3"
  5996. },
  5997. "require-dev": {
  5998. "psr/log": "^1|^2|^3"
  5999. },
  6000. "type": "library",
  6001. "autoload": {
  6002. "psr-4": {
  6003. "Symfony\\Component\\Security\\Guard\\": ""
  6004. },
  6005. "exclude-from-classmap": [
  6006. "/Tests/"
  6007. ]
  6008. },
  6009. "notification-url": "https://packagist.org/downloads/",
  6010. "license": [
  6011. "MIT"
  6012. ],
  6013. "authors": [
  6014. {
  6015. "name": "Fabien Potencier",
  6016. "email": "fabien@symfony.com"
  6017. },
  6018. {
  6019. "name": "Symfony Community",
  6020. "homepage": "https://symfony.com/contributors"
  6021. }
  6022. ],
  6023. "description": "Symfony Security Component - Guard",
  6024. "homepage": "https://symfony.com",
  6025. "support": {
  6026. "source": "https://github.com/symfony/security-guard/tree/v5.4.9"
  6027. },
  6028. "funding": [
  6029. {
  6030. "url": "https://symfony.com/sponsor",
  6031. "type": "custom"
  6032. },
  6033. {
  6034. "url": "https://github.com/fabpot",
  6035. "type": "github"
  6036. },
  6037. {
  6038. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6039. "type": "tidelift"
  6040. }
  6041. ],
  6042. "time": "2022-05-06T14:25:18+00:00"
  6043. },
  6044. {
  6045. "name": "symfony/security-http",
  6046. "version": "v5.4.10",
  6047. "source": {
  6048. "type": "git",
  6049. "url": "https://github.com/symfony/security-http.git",
  6050. "reference": "13239a08542e3c5df556419f5d09dc4c07530779"
  6051. },
  6052. "dist": {
  6053. "type": "zip",
  6054. "url": "https://api.github.com/repos/symfony/security-http/zipball/13239a08542e3c5df556419f5d09dc4c07530779",
  6055. "reference": "13239a08542e3c5df556419f5d09dc4c07530779",
  6056. "shasum": ""
  6057. },
  6058. "require": {
  6059. "php": ">=7.2.5",
  6060. "symfony/deprecation-contracts": "^2.1|^3",
  6061. "symfony/http-foundation": "^5.3|^6.0",
  6062. "symfony/http-kernel": "^5.3|^6.0",
  6063. "symfony/polyfill-mbstring": "~1.0",
  6064. "symfony/polyfill-php80": "^1.16",
  6065. "symfony/property-access": "^4.4|^5.0|^6.0",
  6066. "symfony/security-core": "^5.4|^6.0"
  6067. },
  6068. "conflict": {
  6069. "symfony/event-dispatcher": "<4.3",
  6070. "symfony/security-bundle": "<5.3",
  6071. "symfony/security-csrf": "<4.4"
  6072. },
  6073. "require-dev": {
  6074. "psr/log": "^1|^2|^3",
  6075. "symfony/cache": "^4.4|^5.0|^6.0",
  6076. "symfony/rate-limiter": "^5.2|^6.0",
  6077. "symfony/routing": "^4.4|^5.0|^6.0",
  6078. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  6079. "symfony/translation": "^4.4|^5.0|^6.0"
  6080. },
  6081. "suggest": {
  6082. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  6083. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  6084. },
  6085. "type": "library",
  6086. "autoload": {
  6087. "psr-4": {
  6088. "Symfony\\Component\\Security\\Http\\": ""
  6089. },
  6090. "exclude-from-classmap": [
  6091. "/Tests/"
  6092. ]
  6093. },
  6094. "notification-url": "https://packagist.org/downloads/",
  6095. "license": [
  6096. "MIT"
  6097. ],
  6098. "authors": [
  6099. {
  6100. "name": "Fabien Potencier",
  6101. "email": "fabien@symfony.com"
  6102. },
  6103. {
  6104. "name": "Symfony Community",
  6105. "homepage": "https://symfony.com/contributors"
  6106. }
  6107. ],
  6108. "description": "Symfony Security Component - HTTP Integration",
  6109. "homepage": "https://symfony.com",
  6110. "support": {
  6111. "source": "https://github.com/symfony/security-http/tree/v5.4.10"
  6112. },
  6113. "funding": [
  6114. {
  6115. "url": "https://symfony.com/sponsor",
  6116. "type": "custom"
  6117. },
  6118. {
  6119. "url": "https://github.com/fabpot",
  6120. "type": "github"
  6121. },
  6122. {
  6123. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6124. "type": "tidelift"
  6125. }
  6126. ],
  6127. "time": "2022-06-26T10:07:58+00:00"
  6128. },
  6129. {
  6130. "name": "symfony/serializer",
  6131. "version": "v5.4.10",
  6132. "source": {
  6133. "type": "git",
  6134. "url": "https://github.com/symfony/serializer.git",
  6135. "reference": "dc554d700865aa251f8b531bfc8867eaa8eee05a"
  6136. },
  6137. "dist": {
  6138. "type": "zip",
  6139. "url": "https://api.github.com/repos/symfony/serializer/zipball/dc554d700865aa251f8b531bfc8867eaa8eee05a",
  6140. "reference": "dc554d700865aa251f8b531bfc8867eaa8eee05a",
  6141. "shasum": ""
  6142. },
  6143. "require": {
  6144. "php": ">=7.2.5",
  6145. "symfony/deprecation-contracts": "^2.1|^3",
  6146. "symfony/polyfill-ctype": "~1.8",
  6147. "symfony/polyfill-php80": "^1.16"
  6148. },
  6149. "conflict": {
  6150. "doctrine/annotations": "<1.12",
  6151. "phpdocumentor/reflection-docblock": "<3.2.2",
  6152. "phpdocumentor/type-resolver": "<1.4.0",
  6153. "symfony/dependency-injection": "<4.4",
  6154. "symfony/property-access": "<5.4",
  6155. "symfony/property-info": "<5.3.13",
  6156. "symfony/uid": "<5.3",
  6157. "symfony/yaml": "<4.4"
  6158. },
  6159. "require-dev": {
  6160. "doctrine/annotations": "^1.12",
  6161. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6162. "symfony/cache": "^4.4|^5.0|^6.0",
  6163. "symfony/config": "^4.4|^5.0|^6.0",
  6164. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6165. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6166. "symfony/filesystem": "^4.4|^5.0|^6.0",
  6167. "symfony/form": "^4.4|^5.0|^6.0",
  6168. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6169. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6170. "symfony/mime": "^4.4|^5.0|^6.0",
  6171. "symfony/property-access": "^5.4|^6.0",
  6172. "symfony/property-info": "^5.3.13|^6.0",
  6173. "symfony/uid": "^5.3|^6.0",
  6174. "symfony/validator": "^4.4|^5.0|^6.0",
  6175. "symfony/var-dumper": "^4.4|^5.0|^6.0",
  6176. "symfony/var-exporter": "^4.4|^5.0|^6.0",
  6177. "symfony/yaml": "^4.4|^5.0|^6.0"
  6178. },
  6179. "suggest": {
  6180. "psr/cache-implementation": "For using the metadata cache.",
  6181. "symfony/config": "For using the XML mapping loader.",
  6182. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  6183. "symfony/property-access": "For using the ObjectNormalizer.",
  6184. "symfony/property-info": "To deserialize relations.",
  6185. "symfony/var-exporter": "For using the metadata compiler.",
  6186. "symfony/yaml": "For using the default YAML mapping loader."
  6187. },
  6188. "type": "library",
  6189. "autoload": {
  6190. "psr-4": {
  6191. "Symfony\\Component\\Serializer\\": ""
  6192. },
  6193. "exclude-from-classmap": [
  6194. "/Tests/"
  6195. ]
  6196. },
  6197. "notification-url": "https://packagist.org/downloads/",
  6198. "license": [
  6199. "MIT"
  6200. ],
  6201. "authors": [
  6202. {
  6203. "name": "Fabien Potencier",
  6204. "email": "fabien@symfony.com"
  6205. },
  6206. {
  6207. "name": "Symfony Community",
  6208. "homepage": "https://symfony.com/contributors"
  6209. }
  6210. ],
  6211. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6212. "homepage": "https://symfony.com",
  6213. "support": {
  6214. "source": "https://github.com/symfony/serializer/tree/v5.4.10"
  6215. },
  6216. "funding": [
  6217. {
  6218. "url": "https://symfony.com/sponsor",
  6219. "type": "custom"
  6220. },
  6221. {
  6222. "url": "https://github.com/fabpot",
  6223. "type": "github"
  6224. },
  6225. {
  6226. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6227. "type": "tidelift"
  6228. }
  6229. ],
  6230. "time": "2022-06-26T16:30:39+00:00"
  6231. },
  6232. {
  6233. "name": "symfony/service-contracts",
  6234. "version": "v2.5.2",
  6235. "source": {
  6236. "type": "git",
  6237. "url": "https://github.com/symfony/service-contracts.git",
  6238. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  6239. },
  6240. "dist": {
  6241. "type": "zip",
  6242. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6243. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6244. "shasum": ""
  6245. },
  6246. "require": {
  6247. "php": ">=7.2.5",
  6248. "psr/container": "^1.1",
  6249. "symfony/deprecation-contracts": "^2.1|^3"
  6250. },
  6251. "conflict": {
  6252. "ext-psr": "<1.1|>=2"
  6253. },
  6254. "suggest": {
  6255. "symfony/service-implementation": ""
  6256. },
  6257. "type": "library",
  6258. "extra": {
  6259. "branch-alias": {
  6260. "dev-main": "2.5-dev"
  6261. },
  6262. "thanks": {
  6263. "name": "symfony/contracts",
  6264. "url": "https://github.com/symfony/contracts"
  6265. }
  6266. },
  6267. "autoload": {
  6268. "psr-4": {
  6269. "Symfony\\Contracts\\Service\\": ""
  6270. }
  6271. },
  6272. "notification-url": "https://packagist.org/downloads/",
  6273. "license": [
  6274. "MIT"
  6275. ],
  6276. "authors": [
  6277. {
  6278. "name": "Nicolas Grekas",
  6279. "email": "p@tchwork.com"
  6280. },
  6281. {
  6282. "name": "Symfony Community",
  6283. "homepage": "https://symfony.com/contributors"
  6284. }
  6285. ],
  6286. "description": "Generic abstractions related to writing services",
  6287. "homepage": "https://symfony.com",
  6288. "keywords": [
  6289. "abstractions",
  6290. "contracts",
  6291. "decoupling",
  6292. "interfaces",
  6293. "interoperability",
  6294. "standards"
  6295. ],
  6296. "support": {
  6297. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  6298. },
  6299. "funding": [
  6300. {
  6301. "url": "https://symfony.com/sponsor",
  6302. "type": "custom"
  6303. },
  6304. {
  6305. "url": "https://github.com/fabpot",
  6306. "type": "github"
  6307. },
  6308. {
  6309. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6310. "type": "tidelift"
  6311. }
  6312. ],
  6313. "time": "2022-05-30T19:17:29+00:00"
  6314. },
  6315. {
  6316. "name": "symfony/stopwatch",
  6317. "version": "v5.4.5",
  6318. "source": {
  6319. "type": "git",
  6320. "url": "https://github.com/symfony/stopwatch.git",
  6321. "reference": "4d04b5c24f3c9a1a168a131f6cbe297155bc0d30"
  6322. },
  6323. "dist": {
  6324. "type": "zip",
  6325. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/4d04b5c24f3c9a1a168a131f6cbe297155bc0d30",
  6326. "reference": "4d04b5c24f3c9a1a168a131f6cbe297155bc0d30",
  6327. "shasum": ""
  6328. },
  6329. "require": {
  6330. "php": ">=7.2.5",
  6331. "symfony/service-contracts": "^1|^2|^3"
  6332. },
  6333. "type": "library",
  6334. "autoload": {
  6335. "psr-4": {
  6336. "Symfony\\Component\\Stopwatch\\": ""
  6337. },
  6338. "exclude-from-classmap": [
  6339. "/Tests/"
  6340. ]
  6341. },
  6342. "notification-url": "https://packagist.org/downloads/",
  6343. "license": [
  6344. "MIT"
  6345. ],
  6346. "authors": [
  6347. {
  6348. "name": "Fabien Potencier",
  6349. "email": "fabien@symfony.com"
  6350. },
  6351. {
  6352. "name": "Symfony Community",
  6353. "homepage": "https://symfony.com/contributors"
  6354. }
  6355. ],
  6356. "description": "Provides a way to profile code",
  6357. "homepage": "https://symfony.com",
  6358. "support": {
  6359. "source": "https://github.com/symfony/stopwatch/tree/v5.4.5"
  6360. },
  6361. "funding": [
  6362. {
  6363. "url": "https://symfony.com/sponsor",
  6364. "type": "custom"
  6365. },
  6366. {
  6367. "url": "https://github.com/fabpot",
  6368. "type": "github"
  6369. },
  6370. {
  6371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6372. "type": "tidelift"
  6373. }
  6374. ],
  6375. "time": "2022-02-18T16:06:09+00:00"
  6376. },
  6377. {
  6378. "name": "symfony/string",
  6379. "version": "v5.4.10",
  6380. "source": {
  6381. "type": "git",
  6382. "url": "https://github.com/symfony/string.git",
  6383. "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097"
  6384. },
  6385. "dist": {
  6386. "type": "zip",
  6387. "url": "https://api.github.com/repos/symfony/string/zipball/4432bc7df82a554b3e413a8570ce2fea90e94097",
  6388. "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097",
  6389. "shasum": ""
  6390. },
  6391. "require": {
  6392. "php": ">=7.2.5",
  6393. "symfony/polyfill-ctype": "~1.8",
  6394. "symfony/polyfill-intl-grapheme": "~1.0",
  6395. "symfony/polyfill-intl-normalizer": "~1.0",
  6396. "symfony/polyfill-mbstring": "~1.0",
  6397. "symfony/polyfill-php80": "~1.15"
  6398. },
  6399. "conflict": {
  6400. "symfony/translation-contracts": ">=3.0"
  6401. },
  6402. "require-dev": {
  6403. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6404. "symfony/http-client": "^4.4|^5.0|^6.0",
  6405. "symfony/translation-contracts": "^1.1|^2",
  6406. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6407. },
  6408. "type": "library",
  6409. "autoload": {
  6410. "files": [
  6411. "Resources/functions.php"
  6412. ],
  6413. "psr-4": {
  6414. "Symfony\\Component\\String\\": ""
  6415. },
  6416. "exclude-from-classmap": [
  6417. "/Tests/"
  6418. ]
  6419. },
  6420. "notification-url": "https://packagist.org/downloads/",
  6421. "license": [
  6422. "MIT"
  6423. ],
  6424. "authors": [
  6425. {
  6426. "name": "Nicolas Grekas",
  6427. "email": "p@tchwork.com"
  6428. },
  6429. {
  6430. "name": "Symfony Community",
  6431. "homepage": "https://symfony.com/contributors"
  6432. }
  6433. ],
  6434. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6435. "homepage": "https://symfony.com",
  6436. "keywords": [
  6437. "grapheme",
  6438. "i18n",
  6439. "string",
  6440. "unicode",
  6441. "utf-8",
  6442. "utf8"
  6443. ],
  6444. "support": {
  6445. "source": "https://github.com/symfony/string/tree/v5.4.10"
  6446. },
  6447. "funding": [
  6448. {
  6449. "url": "https://symfony.com/sponsor",
  6450. "type": "custom"
  6451. },
  6452. {
  6453. "url": "https://github.com/fabpot",
  6454. "type": "github"
  6455. },
  6456. {
  6457. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6458. "type": "tidelift"
  6459. }
  6460. ],
  6461. "time": "2022-06-26T15:57:47+00:00"
  6462. },
  6463. {
  6464. "name": "symfony/translation",
  6465. "version": "v5.4.9",
  6466. "source": {
  6467. "type": "git",
  6468. "url": "https://github.com/symfony/translation.git",
  6469. "reference": "1639abc1177d26bcd4320e535e664cef067ab0ca"
  6470. },
  6471. "dist": {
  6472. "type": "zip",
  6473. "url": "https://api.github.com/repos/symfony/translation/zipball/1639abc1177d26bcd4320e535e664cef067ab0ca",
  6474. "reference": "1639abc1177d26bcd4320e535e664cef067ab0ca",
  6475. "shasum": ""
  6476. },
  6477. "require": {
  6478. "php": ">=7.2.5",
  6479. "symfony/deprecation-contracts": "^2.1|^3",
  6480. "symfony/polyfill-mbstring": "~1.0",
  6481. "symfony/polyfill-php80": "^1.16",
  6482. "symfony/translation-contracts": "^2.3"
  6483. },
  6484. "conflict": {
  6485. "symfony/config": "<4.4",
  6486. "symfony/console": "<5.3",
  6487. "symfony/dependency-injection": "<5.0",
  6488. "symfony/http-kernel": "<5.0",
  6489. "symfony/twig-bundle": "<5.0",
  6490. "symfony/yaml": "<4.4"
  6491. },
  6492. "provide": {
  6493. "symfony/translation-implementation": "2.3"
  6494. },
  6495. "require-dev": {
  6496. "psr/log": "^1|^2|^3",
  6497. "symfony/config": "^4.4|^5.0|^6.0",
  6498. "symfony/console": "^5.4|^6.0",
  6499. "symfony/dependency-injection": "^5.0|^6.0",
  6500. "symfony/finder": "^4.4|^5.0|^6.0",
  6501. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6502. "symfony/http-kernel": "^5.0|^6.0",
  6503. "symfony/intl": "^4.4|^5.0|^6.0",
  6504. "symfony/polyfill-intl-icu": "^1.21",
  6505. "symfony/service-contracts": "^1.1.2|^2|^3",
  6506. "symfony/yaml": "^4.4|^5.0|^6.0"
  6507. },
  6508. "suggest": {
  6509. "psr/log-implementation": "To use logging capability in translator",
  6510. "symfony/config": "",
  6511. "symfony/yaml": ""
  6512. },
  6513. "type": "library",
  6514. "autoload": {
  6515. "files": [
  6516. "Resources/functions.php"
  6517. ],
  6518. "psr-4": {
  6519. "Symfony\\Component\\Translation\\": ""
  6520. },
  6521. "exclude-from-classmap": [
  6522. "/Tests/"
  6523. ]
  6524. },
  6525. "notification-url": "https://packagist.org/downloads/",
  6526. "license": [
  6527. "MIT"
  6528. ],
  6529. "authors": [
  6530. {
  6531. "name": "Fabien Potencier",
  6532. "email": "fabien@symfony.com"
  6533. },
  6534. {
  6535. "name": "Symfony Community",
  6536. "homepage": "https://symfony.com/contributors"
  6537. }
  6538. ],
  6539. "description": "Provides tools to internationalize your application",
  6540. "homepage": "https://symfony.com",
  6541. "support": {
  6542. "source": "https://github.com/symfony/translation/tree/v5.4.9"
  6543. },
  6544. "funding": [
  6545. {
  6546. "url": "https://symfony.com/sponsor",
  6547. "type": "custom"
  6548. },
  6549. {
  6550. "url": "https://github.com/fabpot",
  6551. "type": "github"
  6552. },
  6553. {
  6554. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6555. "type": "tidelift"
  6556. }
  6557. ],
  6558. "time": "2022-05-06T12:33:37+00:00"
  6559. },
  6560. {
  6561. "name": "symfony/translation-contracts",
  6562. "version": "v2.5.2",
  6563. "source": {
  6564. "type": "git",
  6565. "url": "https://github.com/symfony/translation-contracts.git",
  6566. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  6567. },
  6568. "dist": {
  6569. "type": "zip",
  6570. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  6571. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  6572. "shasum": ""
  6573. },
  6574. "require": {
  6575. "php": ">=7.2.5"
  6576. },
  6577. "suggest": {
  6578. "symfony/translation-implementation": ""
  6579. },
  6580. "type": "library",
  6581. "extra": {
  6582. "branch-alias": {
  6583. "dev-main": "2.5-dev"
  6584. },
  6585. "thanks": {
  6586. "name": "symfony/contracts",
  6587. "url": "https://github.com/symfony/contracts"
  6588. }
  6589. },
  6590. "autoload": {
  6591. "psr-4": {
  6592. "Symfony\\Contracts\\Translation\\": ""
  6593. }
  6594. },
  6595. "notification-url": "https://packagist.org/downloads/",
  6596. "license": [
  6597. "MIT"
  6598. ],
  6599. "authors": [
  6600. {
  6601. "name": "Nicolas Grekas",
  6602. "email": "p@tchwork.com"
  6603. },
  6604. {
  6605. "name": "Symfony Community",
  6606. "homepage": "https://symfony.com/contributors"
  6607. }
  6608. ],
  6609. "description": "Generic abstractions related to translation",
  6610. "homepage": "https://symfony.com",
  6611. "keywords": [
  6612. "abstractions",
  6613. "contracts",
  6614. "decoupling",
  6615. "interfaces",
  6616. "interoperability",
  6617. "standards"
  6618. ],
  6619. "support": {
  6620. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  6621. },
  6622. "funding": [
  6623. {
  6624. "url": "https://symfony.com/sponsor",
  6625. "type": "custom"
  6626. },
  6627. {
  6628. "url": "https://github.com/fabpot",
  6629. "type": "github"
  6630. },
  6631. {
  6632. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6633. "type": "tidelift"
  6634. }
  6635. ],
  6636. "time": "2022-06-27T16:58:25+00:00"
  6637. },
  6638. {
  6639. "name": "symfony/twig-bridge",
  6640. "version": "v5.4.9",
  6641. "source": {
  6642. "type": "git",
  6643. "url": "https://github.com/symfony/twig-bridge.git",
  6644. "reference": "fd13c89a1abdbaa7ee2e655d9a11405adcb7a6cf"
  6645. },
  6646. "dist": {
  6647. "type": "zip",
  6648. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/fd13c89a1abdbaa7ee2e655d9a11405adcb7a6cf",
  6649. "reference": "fd13c89a1abdbaa7ee2e655d9a11405adcb7a6cf",
  6650. "shasum": ""
  6651. },
  6652. "require": {
  6653. "php": ">=7.2.5",
  6654. "symfony/polyfill-php80": "^1.16",
  6655. "symfony/translation-contracts": "^1.1|^2|^3",
  6656. "twig/twig": "^2.13|^3.0.4"
  6657. },
  6658. "conflict": {
  6659. "phpdocumentor/reflection-docblock": "<3.2.2",
  6660. "phpdocumentor/type-resolver": "<1.4.0",
  6661. "symfony/console": "<5.3",
  6662. "symfony/form": "<5.3",
  6663. "symfony/http-foundation": "<5.3",
  6664. "symfony/http-kernel": "<4.4",
  6665. "symfony/translation": "<5.2",
  6666. "symfony/workflow": "<5.2"
  6667. },
  6668. "require-dev": {
  6669. "doctrine/annotations": "^1.12",
  6670. "egulias/email-validator": "^2.1.10|^3",
  6671. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6672. "symfony/asset": "^4.4|^5.0|^6.0",
  6673. "symfony/console": "^5.3|^6.0",
  6674. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6675. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6676. "symfony/finder": "^4.4|^5.0|^6.0",
  6677. "symfony/form": "^5.3|^6.0",
  6678. "symfony/http-foundation": "^5.3|^6.0",
  6679. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6680. "symfony/intl": "^4.4|^5.0|^6.0",
  6681. "symfony/mime": "^5.2|^6.0",
  6682. "symfony/polyfill-intl-icu": "~1.0",
  6683. "symfony/property-info": "^4.4|^5.1|^6.0",
  6684. "symfony/routing": "^4.4|^5.0|^6.0",
  6685. "symfony/security-acl": "^2.8|^3.0",
  6686. "symfony/security-core": "^4.4|^5.0|^6.0",
  6687. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  6688. "symfony/security-http": "^4.4|^5.0|^6.0",
  6689. "symfony/serializer": "^5.2|^6.0",
  6690. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6691. "symfony/translation": "^5.2|^6.0",
  6692. "symfony/web-link": "^4.4|^5.0|^6.0",
  6693. "symfony/workflow": "^5.2|^6.0",
  6694. "symfony/yaml": "^4.4|^5.0|^6.0",
  6695. "twig/cssinliner-extra": "^2.12|^3",
  6696. "twig/inky-extra": "^2.12|^3",
  6697. "twig/markdown-extra": "^2.12|^3"
  6698. },
  6699. "suggest": {
  6700. "symfony/asset": "For using the AssetExtension",
  6701. "symfony/expression-language": "For using the ExpressionExtension",
  6702. "symfony/finder": "",
  6703. "symfony/form": "For using the FormExtension",
  6704. "symfony/http-kernel": "For using the HttpKernelExtension",
  6705. "symfony/routing": "For using the RoutingExtension",
  6706. "symfony/security-core": "For using the SecurityExtension",
  6707. "symfony/security-csrf": "For using the CsrfExtension",
  6708. "symfony/security-http": "For using the LogoutUrlExtension",
  6709. "symfony/stopwatch": "For using the StopwatchExtension",
  6710. "symfony/translation": "For using the TranslationExtension",
  6711. "symfony/var-dumper": "For using the DumpExtension",
  6712. "symfony/web-link": "For using the WebLinkExtension",
  6713. "symfony/yaml": "For using the YamlExtension"
  6714. },
  6715. "type": "symfony-bridge",
  6716. "autoload": {
  6717. "psr-4": {
  6718. "Symfony\\Bridge\\Twig\\": ""
  6719. },
  6720. "exclude-from-classmap": [
  6721. "/Tests/"
  6722. ]
  6723. },
  6724. "notification-url": "https://packagist.org/downloads/",
  6725. "license": [
  6726. "MIT"
  6727. ],
  6728. "authors": [
  6729. {
  6730. "name": "Fabien Potencier",
  6731. "email": "fabien@symfony.com"
  6732. },
  6733. {
  6734. "name": "Symfony Community",
  6735. "homepage": "https://symfony.com/contributors"
  6736. }
  6737. ],
  6738. "description": "Provides integration for Twig with various Symfony components",
  6739. "homepage": "https://symfony.com",
  6740. "support": {
  6741. "source": "https://github.com/symfony/twig-bridge/tree/v5.4.9"
  6742. },
  6743. "funding": [
  6744. {
  6745. "url": "https://symfony.com/sponsor",
  6746. "type": "custom"
  6747. },
  6748. {
  6749. "url": "https://github.com/fabpot",
  6750. "type": "github"
  6751. },
  6752. {
  6753. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6754. "type": "tidelift"
  6755. }
  6756. ],
  6757. "time": "2022-05-21T10:24:18+00:00"
  6758. },
  6759. {
  6760. "name": "symfony/twig-bundle",
  6761. "version": "v5.4.8",
  6762. "source": {
  6763. "type": "git",
  6764. "url": "https://github.com/symfony/twig-bundle.git",
  6765. "reference": "c992b4474c3a31f3c40a1ca593d213833f91b818"
  6766. },
  6767. "dist": {
  6768. "type": "zip",
  6769. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/c992b4474c3a31f3c40a1ca593d213833f91b818",
  6770. "reference": "c992b4474c3a31f3c40a1ca593d213833f91b818",
  6771. "shasum": ""
  6772. },
  6773. "require": {
  6774. "php": ">=7.2.5",
  6775. "symfony/config": "^4.4|^5.0|^6.0",
  6776. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6777. "symfony/http-kernel": "^5.0|^6.0",
  6778. "symfony/polyfill-ctype": "~1.8",
  6779. "symfony/polyfill-php80": "^1.16",
  6780. "symfony/twig-bridge": "^5.3|^6.0",
  6781. "twig/twig": "^2.13|^3.0.4"
  6782. },
  6783. "conflict": {
  6784. "symfony/dependency-injection": "<5.3",
  6785. "symfony/framework-bundle": "<5.0",
  6786. "symfony/service-contracts": ">=3.0",
  6787. "symfony/translation": "<5.0"
  6788. },
  6789. "require-dev": {
  6790. "doctrine/annotations": "^1.10.4",
  6791. "doctrine/cache": "^1.0|^2.0",
  6792. "symfony/asset": "^4.4|^5.0|^6.0",
  6793. "symfony/dependency-injection": "^5.3|^6.0",
  6794. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6795. "symfony/finder": "^4.4|^5.0|^6.0",
  6796. "symfony/form": "^4.4|^5.0|^6.0",
  6797. "symfony/framework-bundle": "^5.0|^6.0",
  6798. "symfony/routing": "^4.4|^5.0|^6.0",
  6799. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6800. "symfony/translation": "^5.0|^6.0",
  6801. "symfony/web-link": "^4.4|^5.0|^6.0",
  6802. "symfony/yaml": "^4.4|^5.0|^6.0"
  6803. },
  6804. "type": "symfony-bundle",
  6805. "autoload": {
  6806. "psr-4": {
  6807. "Symfony\\Bundle\\TwigBundle\\": ""
  6808. },
  6809. "exclude-from-classmap": [
  6810. "/Tests/"
  6811. ]
  6812. },
  6813. "notification-url": "https://packagist.org/downloads/",
  6814. "license": [
  6815. "MIT"
  6816. ],
  6817. "authors": [
  6818. {
  6819. "name": "Fabien Potencier",
  6820. "email": "fabien@symfony.com"
  6821. },
  6822. {
  6823. "name": "Symfony Community",
  6824. "homepage": "https://symfony.com/contributors"
  6825. }
  6826. ],
  6827. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  6828. "homepage": "https://symfony.com",
  6829. "support": {
  6830. "source": "https://github.com/symfony/twig-bundle/tree/v5.4.8"
  6831. },
  6832. "funding": [
  6833. {
  6834. "url": "https://symfony.com/sponsor",
  6835. "type": "custom"
  6836. },
  6837. {
  6838. "url": "https://github.com/fabpot",
  6839. "type": "github"
  6840. },
  6841. {
  6842. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6843. "type": "tidelift"
  6844. }
  6845. ],
  6846. "time": "2022-04-03T13:03:10+00:00"
  6847. },
  6848. {
  6849. "name": "symfony/validator",
  6850. "version": "v5.4.10",
  6851. "source": {
  6852. "type": "git",
  6853. "url": "https://github.com/symfony/validator.git",
  6854. "reference": "303490582fee6ed46fa3bd9701ef0ff741ada648"
  6855. },
  6856. "dist": {
  6857. "type": "zip",
  6858. "url": "https://api.github.com/repos/symfony/validator/zipball/303490582fee6ed46fa3bd9701ef0ff741ada648",
  6859. "reference": "303490582fee6ed46fa3bd9701ef0ff741ada648",
  6860. "shasum": ""
  6861. },
  6862. "require": {
  6863. "php": ">=7.2.5",
  6864. "symfony/deprecation-contracts": "^2.1|^3",
  6865. "symfony/polyfill-ctype": "~1.8",
  6866. "symfony/polyfill-mbstring": "~1.0",
  6867. "symfony/polyfill-php73": "~1.0",
  6868. "symfony/polyfill-php80": "^1.16",
  6869. "symfony/polyfill-php81": "^1.22",
  6870. "symfony/translation-contracts": "^1.1|^2|^3"
  6871. },
  6872. "conflict": {
  6873. "doctrine/annotations": "<1.13",
  6874. "doctrine/cache": "<1.11",
  6875. "doctrine/lexer": "<1.1",
  6876. "phpunit/phpunit": "<5.4.3",
  6877. "symfony/dependency-injection": "<4.4",
  6878. "symfony/expression-language": "<5.1",
  6879. "symfony/http-kernel": "<4.4",
  6880. "symfony/intl": "<4.4",
  6881. "symfony/property-info": "<5.3",
  6882. "symfony/translation": "<4.4",
  6883. "symfony/yaml": "<4.4"
  6884. },
  6885. "require-dev": {
  6886. "doctrine/annotations": "^1.13",
  6887. "doctrine/cache": "^1.11|^2.0",
  6888. "egulias/email-validator": "^2.1.10|^3",
  6889. "symfony/cache": "^4.4|^5.0|^6.0",
  6890. "symfony/config": "^4.4|^5.0|^6.0",
  6891. "symfony/console": "^4.4|^5.0|^6.0",
  6892. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6893. "symfony/expression-language": "^5.1|^6.0",
  6894. "symfony/finder": "^4.4|^5.0|^6.0",
  6895. "symfony/http-client": "^4.4|^5.0|^6.0",
  6896. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6897. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6898. "symfony/intl": "^4.4|^5.0|^6.0",
  6899. "symfony/mime": "^4.4|^5.0|^6.0",
  6900. "symfony/property-access": "^4.4|^5.0|^6.0",
  6901. "symfony/property-info": "^5.3|^6.0",
  6902. "symfony/translation": "^4.4|^5.0|^6.0",
  6903. "symfony/yaml": "^4.4|^5.0|^6.0"
  6904. },
  6905. "suggest": {
  6906. "egulias/email-validator": "Strict (RFC compliant) email validation",
  6907. "psr/cache-implementation": "For using the mapping cache.",
  6908. "symfony/config": "",
  6909. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  6910. "symfony/http-foundation": "",
  6911. "symfony/intl": "",
  6912. "symfony/property-access": "For accessing properties within comparison constraints",
  6913. "symfony/property-info": "To automatically add NotNull and Type constraints",
  6914. "symfony/translation": "For translating validation errors.",
  6915. "symfony/yaml": ""
  6916. },
  6917. "type": "library",
  6918. "autoload": {
  6919. "psr-4": {
  6920. "Symfony\\Component\\Validator\\": ""
  6921. },
  6922. "exclude-from-classmap": [
  6923. "/Tests/"
  6924. ]
  6925. },
  6926. "notification-url": "https://packagist.org/downloads/",
  6927. "license": [
  6928. "MIT"
  6929. ],
  6930. "authors": [
  6931. {
  6932. "name": "Fabien Potencier",
  6933. "email": "fabien@symfony.com"
  6934. },
  6935. {
  6936. "name": "Symfony Community",
  6937. "homepage": "https://symfony.com/contributors"
  6938. }
  6939. ],
  6940. "description": "Provides tools to validate values",
  6941. "homepage": "https://symfony.com",
  6942. "support": {
  6943. "source": "https://github.com/symfony/validator/tree/v5.4.10"
  6944. },
  6945. "funding": [
  6946. {
  6947. "url": "https://symfony.com/sponsor",
  6948. "type": "custom"
  6949. },
  6950. {
  6951. "url": "https://github.com/fabpot",
  6952. "type": "github"
  6953. },
  6954. {
  6955. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6956. "type": "tidelift"
  6957. }
  6958. ],
  6959. "time": "2022-06-09T12:24:18+00:00"
  6960. },
  6961. {
  6962. "name": "symfony/var-dumper",
  6963. "version": "v5.4.9",
  6964. "source": {
  6965. "type": "git",
  6966. "url": "https://github.com/symfony/var-dumper.git",
  6967. "reference": "af52239a330fafd192c773795520dc2dd62b5657"
  6968. },
  6969. "dist": {
  6970. "type": "zip",
  6971. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/af52239a330fafd192c773795520dc2dd62b5657",
  6972. "reference": "af52239a330fafd192c773795520dc2dd62b5657",
  6973. "shasum": ""
  6974. },
  6975. "require": {
  6976. "php": ">=7.2.5",
  6977. "symfony/polyfill-mbstring": "~1.0",
  6978. "symfony/polyfill-php80": "^1.16"
  6979. },
  6980. "conflict": {
  6981. "phpunit/phpunit": "<5.4.3",
  6982. "symfony/console": "<4.4"
  6983. },
  6984. "require-dev": {
  6985. "ext-iconv": "*",
  6986. "symfony/console": "^4.4|^5.0|^6.0",
  6987. "symfony/process": "^4.4|^5.0|^6.0",
  6988. "symfony/uid": "^5.1|^6.0",
  6989. "twig/twig": "^2.13|^3.0.4"
  6990. },
  6991. "suggest": {
  6992. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6993. "ext-intl": "To show region name in time zone dump",
  6994. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6995. },
  6996. "bin": [
  6997. "Resources/bin/var-dump-server"
  6998. ],
  6999. "type": "library",
  7000. "autoload": {
  7001. "files": [
  7002. "Resources/functions/dump.php"
  7003. ],
  7004. "psr-4": {
  7005. "Symfony\\Component\\VarDumper\\": ""
  7006. },
  7007. "exclude-from-classmap": [
  7008. "/Tests/"
  7009. ]
  7010. },
  7011. "notification-url": "https://packagist.org/downloads/",
  7012. "license": [
  7013. "MIT"
  7014. ],
  7015. "authors": [
  7016. {
  7017. "name": "Nicolas Grekas",
  7018. "email": "p@tchwork.com"
  7019. },
  7020. {
  7021. "name": "Symfony Community",
  7022. "homepage": "https://symfony.com/contributors"
  7023. }
  7024. ],
  7025. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7026. "homepage": "https://symfony.com",
  7027. "keywords": [
  7028. "debug",
  7029. "dump"
  7030. ],
  7031. "support": {
  7032. "source": "https://github.com/symfony/var-dumper/tree/v5.4.9"
  7033. },
  7034. "funding": [
  7035. {
  7036. "url": "https://symfony.com/sponsor",
  7037. "type": "custom"
  7038. },
  7039. {
  7040. "url": "https://github.com/fabpot",
  7041. "type": "github"
  7042. },
  7043. {
  7044. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7045. "type": "tidelift"
  7046. }
  7047. ],
  7048. "time": "2022-05-21T10:24:18+00:00"
  7049. },
  7050. {
  7051. "name": "symfony/var-exporter",
  7052. "version": "v5.4.10",
  7053. "source": {
  7054. "type": "git",
  7055. "url": "https://github.com/symfony/var-exporter.git",
  7056. "reference": "8fc03ee75eeece3d9be1ef47d26d79bea1afb340"
  7057. },
  7058. "dist": {
  7059. "type": "zip",
  7060. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/8fc03ee75eeece3d9be1ef47d26d79bea1afb340",
  7061. "reference": "8fc03ee75eeece3d9be1ef47d26d79bea1afb340",
  7062. "shasum": ""
  7063. },
  7064. "require": {
  7065. "php": ">=7.2.5",
  7066. "symfony/polyfill-php80": "^1.16"
  7067. },
  7068. "require-dev": {
  7069. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  7070. },
  7071. "type": "library",
  7072. "autoload": {
  7073. "psr-4": {
  7074. "Symfony\\Component\\VarExporter\\": ""
  7075. },
  7076. "exclude-from-classmap": [
  7077. "/Tests/"
  7078. ]
  7079. },
  7080. "notification-url": "https://packagist.org/downloads/",
  7081. "license": [
  7082. "MIT"
  7083. ],
  7084. "authors": [
  7085. {
  7086. "name": "Nicolas Grekas",
  7087. "email": "p@tchwork.com"
  7088. },
  7089. {
  7090. "name": "Symfony Community",
  7091. "homepage": "https://symfony.com/contributors"
  7092. }
  7093. ],
  7094. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7095. "homepage": "https://symfony.com",
  7096. "keywords": [
  7097. "clone",
  7098. "construct",
  7099. "export",
  7100. "hydrate",
  7101. "instantiate",
  7102. "serialize"
  7103. ],
  7104. "support": {
  7105. "source": "https://github.com/symfony/var-exporter/tree/v5.4.10"
  7106. },
  7107. "funding": [
  7108. {
  7109. "url": "https://symfony.com/sponsor",
  7110. "type": "custom"
  7111. },
  7112. {
  7113. "url": "https://github.com/fabpot",
  7114. "type": "github"
  7115. },
  7116. {
  7117. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7118. "type": "tidelift"
  7119. }
  7120. ],
  7121. "time": "2022-05-27T12:56:18+00:00"
  7122. },
  7123. {
  7124. "name": "symfony/web-link",
  7125. "version": "v5.4.3",
  7126. "source": {
  7127. "type": "git",
  7128. "url": "https://github.com/symfony/web-link.git",
  7129. "reference": "8b9b073390359549fec5f5d797f23bbe9e2997a5"
  7130. },
  7131. "dist": {
  7132. "type": "zip",
  7133. "url": "https://api.github.com/repos/symfony/web-link/zipball/8b9b073390359549fec5f5d797f23bbe9e2997a5",
  7134. "reference": "8b9b073390359549fec5f5d797f23bbe9e2997a5",
  7135. "shasum": ""
  7136. },
  7137. "require": {
  7138. "php": ">=7.2.5",
  7139. "psr/link": "^1.0",
  7140. "symfony/polyfill-php80": "^1.16"
  7141. },
  7142. "conflict": {
  7143. "symfony/http-kernel": "<5.3"
  7144. },
  7145. "provide": {
  7146. "psr/link-implementation": "1.0"
  7147. },
  7148. "require-dev": {
  7149. "symfony/http-kernel": "^5.3|^6.0"
  7150. },
  7151. "suggest": {
  7152. "symfony/http-kernel": ""
  7153. },
  7154. "type": "library",
  7155. "autoload": {
  7156. "psr-4": {
  7157. "Symfony\\Component\\WebLink\\": ""
  7158. },
  7159. "exclude-from-classmap": [
  7160. "/Tests/"
  7161. ]
  7162. },
  7163. "notification-url": "https://packagist.org/downloads/",
  7164. "license": [
  7165. "MIT"
  7166. ],
  7167. "authors": [
  7168. {
  7169. "name": "Kévin Dunglas",
  7170. "email": "dunglas@gmail.com"
  7171. },
  7172. {
  7173. "name": "Symfony Community",
  7174. "homepage": "https://symfony.com/contributors"
  7175. }
  7176. ],
  7177. "description": "Manages links between resources",
  7178. "homepage": "https://symfony.com",
  7179. "keywords": [
  7180. "dns-prefetch",
  7181. "http",
  7182. "http2",
  7183. "link",
  7184. "performance",
  7185. "prefetch",
  7186. "preload",
  7187. "prerender",
  7188. "psr13",
  7189. "push"
  7190. ],
  7191. "support": {
  7192. "source": "https://github.com/symfony/web-link/tree/v5.4.3"
  7193. },
  7194. "funding": [
  7195. {
  7196. "url": "https://symfony.com/sponsor",
  7197. "type": "custom"
  7198. },
  7199. {
  7200. "url": "https://github.com/fabpot",
  7201. "type": "github"
  7202. },
  7203. {
  7204. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7205. "type": "tidelift"
  7206. }
  7207. ],
  7208. "time": "2022-01-02T09:53:40+00:00"
  7209. },
  7210. {
  7211. "name": "symfony/webpack-encore-bundle",
  7212. "version": "v1.15.0",
  7213. "source": {
  7214. "type": "git",
  7215. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  7216. "reference": "1fc386364200ca43108ff1871d86435b840ea67c"
  7217. },
  7218. "dist": {
  7219. "type": "zip",
  7220. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/1fc386364200ca43108ff1871d86435b840ea67c",
  7221. "reference": "1fc386364200ca43108ff1871d86435b840ea67c",
  7222. "shasum": ""
  7223. },
  7224. "require": {
  7225. "php": ">=7.1.3",
  7226. "symfony/asset": "^4.4 || ^5.0 || ^6.0",
  7227. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  7228. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  7229. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  7230. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  7231. "symfony/polyfill-php80": "^1.25.0",
  7232. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  7233. },
  7234. "require-dev": {
  7235. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  7236. "symfony/phpunit-bridge": "^5.3 || ^6.0",
  7237. "symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
  7238. "symfony/web-link": "^4.4 || ^5.0 || ^6.0"
  7239. },
  7240. "type": "symfony-bundle",
  7241. "extra": {
  7242. "thanks": {
  7243. "name": "symfony/webpack-encore",
  7244. "url": "https://github.com/symfony/webpack-encore"
  7245. }
  7246. },
  7247. "autoload": {
  7248. "psr-4": {
  7249. "Symfony\\WebpackEncoreBundle\\": "src"
  7250. }
  7251. },
  7252. "notification-url": "https://packagist.org/downloads/",
  7253. "license": [
  7254. "MIT"
  7255. ],
  7256. "authors": [
  7257. {
  7258. "name": "Symfony Community",
  7259. "homepage": "https://symfony.com/contributors"
  7260. }
  7261. ],
  7262. "description": "Integration with your Symfony app & Webpack Encore!",
  7263. "support": {
  7264. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  7265. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.15.0"
  7266. },
  7267. "funding": [
  7268. {
  7269. "url": "https://symfony.com/sponsor",
  7270. "type": "custom"
  7271. },
  7272. {
  7273. "url": "https://github.com/fabpot",
  7274. "type": "github"
  7275. },
  7276. {
  7277. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7278. "type": "tidelift"
  7279. }
  7280. ],
  7281. "time": "2022-07-06T13:36:43+00:00"
  7282. },
  7283. {
  7284. "name": "symfony/yaml",
  7285. "version": "v5.4.10",
  7286. "source": {
  7287. "type": "git",
  7288. "url": "https://github.com/symfony/yaml.git",
  7289. "reference": "04e42926429d9e8b39c174387ab990bf7817f7a2"
  7290. },
  7291. "dist": {
  7292. "type": "zip",
  7293. "url": "https://api.github.com/repos/symfony/yaml/zipball/04e42926429d9e8b39c174387ab990bf7817f7a2",
  7294. "reference": "04e42926429d9e8b39c174387ab990bf7817f7a2",
  7295. "shasum": ""
  7296. },
  7297. "require": {
  7298. "php": ">=7.2.5",
  7299. "symfony/deprecation-contracts": "^2.1|^3",
  7300. "symfony/polyfill-ctype": "^1.8"
  7301. },
  7302. "conflict": {
  7303. "symfony/console": "<5.3"
  7304. },
  7305. "require-dev": {
  7306. "symfony/console": "^5.3|^6.0"
  7307. },
  7308. "suggest": {
  7309. "symfony/console": "For validating YAML files using the lint command"
  7310. },
  7311. "bin": [
  7312. "Resources/bin/yaml-lint"
  7313. ],
  7314. "type": "library",
  7315. "autoload": {
  7316. "psr-4": {
  7317. "Symfony\\Component\\Yaml\\": ""
  7318. },
  7319. "exclude-from-classmap": [
  7320. "/Tests/"
  7321. ]
  7322. },
  7323. "notification-url": "https://packagist.org/downloads/",
  7324. "license": [
  7325. "MIT"
  7326. ],
  7327. "authors": [
  7328. {
  7329. "name": "Fabien Potencier",
  7330. "email": "fabien@symfony.com"
  7331. },
  7332. {
  7333. "name": "Symfony Community",
  7334. "homepage": "https://symfony.com/contributors"
  7335. }
  7336. ],
  7337. "description": "Loads and dumps YAML files",
  7338. "homepage": "https://symfony.com",
  7339. "support": {
  7340. "source": "https://github.com/symfony/yaml/tree/v5.4.10"
  7341. },
  7342. "funding": [
  7343. {
  7344. "url": "https://symfony.com/sponsor",
  7345. "type": "custom"
  7346. },
  7347. {
  7348. "url": "https://github.com/fabpot",
  7349. "type": "github"
  7350. },
  7351. {
  7352. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7353. "type": "tidelift"
  7354. }
  7355. ],
  7356. "time": "2022-06-20T11:50:59+00:00"
  7357. },
  7358. {
  7359. "name": "twig/extra-bundle",
  7360. "version": "v3.4.0",
  7361. "source": {
  7362. "type": "git",
  7363. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  7364. "reference": "2e58256b0e9fe52f30149347c0547e4633304765"
  7365. },
  7366. "dist": {
  7367. "type": "zip",
  7368. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/2e58256b0e9fe52f30149347c0547e4633304765",
  7369. "reference": "2e58256b0e9fe52f30149347c0547e4633304765",
  7370. "shasum": ""
  7371. },
  7372. "require": {
  7373. "php": ">=7.2.5",
  7374. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  7375. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  7376. "twig/twig": "^2.7|^3.0"
  7377. },
  7378. "require-dev": {
  7379. "league/commonmark": "^1.0|^2.0",
  7380. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  7381. "twig/cache-extra": "^3.0",
  7382. "twig/cssinliner-extra": "^2.12|^3.0",
  7383. "twig/html-extra": "^2.12|^3.0",
  7384. "twig/inky-extra": "^2.12|^3.0",
  7385. "twig/intl-extra": "^2.12|^3.0",
  7386. "twig/markdown-extra": "^2.12|^3.0",
  7387. "twig/string-extra": "^2.12|^3.0"
  7388. },
  7389. "type": "symfony-bundle",
  7390. "extra": {
  7391. "branch-alias": {
  7392. "dev-master": "3.2-dev"
  7393. }
  7394. },
  7395. "autoload": {
  7396. "psr-4": {
  7397. "Twig\\Extra\\TwigExtraBundle\\": ""
  7398. },
  7399. "exclude-from-classmap": [
  7400. "/Tests/"
  7401. ]
  7402. },
  7403. "notification-url": "https://packagist.org/downloads/",
  7404. "license": [
  7405. "MIT"
  7406. ],
  7407. "authors": [
  7408. {
  7409. "name": "Fabien Potencier",
  7410. "email": "fabien@symfony.com",
  7411. "homepage": "http://fabien.potencier.org",
  7412. "role": "Lead Developer"
  7413. }
  7414. ],
  7415. "description": "A Symfony bundle for extra Twig extensions",
  7416. "homepage": "https://twig.symfony.com",
  7417. "keywords": [
  7418. "bundle",
  7419. "extra",
  7420. "twig"
  7421. ],
  7422. "support": {
  7423. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.4.0"
  7424. },
  7425. "funding": [
  7426. {
  7427. "url": "https://github.com/fabpot",
  7428. "type": "github"
  7429. },
  7430. {
  7431. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7432. "type": "tidelift"
  7433. }
  7434. ],
  7435. "time": "2022-01-04T13:58:53+00:00"
  7436. },
  7437. {
  7438. "name": "twig/twig",
  7439. "version": "v3.4.1",
  7440. "source": {
  7441. "type": "git",
  7442. "url": "https://github.com/twigphp/Twig.git",
  7443. "reference": "e939eae92386b69b49cfa4599dd9bead6bf4a342"
  7444. },
  7445. "dist": {
  7446. "type": "zip",
  7447. "url": "https://api.github.com/repos/twigphp/Twig/zipball/e939eae92386b69b49cfa4599dd9bead6bf4a342",
  7448. "reference": "e939eae92386b69b49cfa4599dd9bead6bf4a342",
  7449. "shasum": ""
  7450. },
  7451. "require": {
  7452. "php": ">=7.2.5",
  7453. "symfony/polyfill-ctype": "^1.8",
  7454. "symfony/polyfill-mbstring": "^1.3"
  7455. },
  7456. "require-dev": {
  7457. "psr/container": "^1.0",
  7458. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  7459. },
  7460. "type": "library",
  7461. "extra": {
  7462. "branch-alias": {
  7463. "dev-master": "3.4-dev"
  7464. }
  7465. },
  7466. "autoload": {
  7467. "psr-4": {
  7468. "Twig\\": "src/"
  7469. }
  7470. },
  7471. "notification-url": "https://packagist.org/downloads/",
  7472. "license": [
  7473. "BSD-3-Clause"
  7474. ],
  7475. "authors": [
  7476. {
  7477. "name": "Fabien Potencier",
  7478. "email": "fabien@symfony.com",
  7479. "homepage": "http://fabien.potencier.org",
  7480. "role": "Lead Developer"
  7481. },
  7482. {
  7483. "name": "Twig Team",
  7484. "role": "Contributors"
  7485. },
  7486. {
  7487. "name": "Armin Ronacher",
  7488. "email": "armin.ronacher@active-4.com",
  7489. "role": "Project Founder"
  7490. }
  7491. ],
  7492. "description": "Twig, the flexible, fast, and secure template language for PHP",
  7493. "homepage": "https://twig.symfony.com",
  7494. "keywords": [
  7495. "templating"
  7496. ],
  7497. "support": {
  7498. "issues": "https://github.com/twigphp/Twig/issues",
  7499. "source": "https://github.com/twigphp/Twig/tree/v3.4.1"
  7500. },
  7501. "funding": [
  7502. {
  7503. "url": "https://github.com/fabpot",
  7504. "type": "github"
  7505. },
  7506. {
  7507. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7508. "type": "tidelift"
  7509. }
  7510. ],
  7511. "time": "2022-05-17T05:48:52+00:00"
  7512. },
  7513. {
  7514. "name": "webmozart/assert",
  7515. "version": "1.11.0",
  7516. "source": {
  7517. "type": "git",
  7518. "url": "https://github.com/webmozarts/assert.git",
  7519. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7520. },
  7521. "dist": {
  7522. "type": "zip",
  7523. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7524. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7525. "shasum": ""
  7526. },
  7527. "require": {
  7528. "ext-ctype": "*",
  7529. "php": "^7.2 || ^8.0"
  7530. },
  7531. "conflict": {
  7532. "phpstan/phpstan": "<0.12.20",
  7533. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7534. },
  7535. "require-dev": {
  7536. "phpunit/phpunit": "^8.5.13"
  7537. },
  7538. "type": "library",
  7539. "extra": {
  7540. "branch-alias": {
  7541. "dev-master": "1.10-dev"
  7542. }
  7543. },
  7544. "autoload": {
  7545. "psr-4": {
  7546. "Webmozart\\Assert\\": "src/"
  7547. }
  7548. },
  7549. "notification-url": "https://packagist.org/downloads/",
  7550. "license": [
  7551. "MIT"
  7552. ],
  7553. "authors": [
  7554. {
  7555. "name": "Bernhard Schussek",
  7556. "email": "bschussek@gmail.com"
  7557. }
  7558. ],
  7559. "description": "Assertions to validate method input/output with nice error messages.",
  7560. "keywords": [
  7561. "assert",
  7562. "check",
  7563. "validate"
  7564. ],
  7565. "support": {
  7566. "issues": "https://github.com/webmozarts/assert/issues",
  7567. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7568. },
  7569. "time": "2022-06-03T18:03:27+00:00"
  7570. }
  7571. ],
  7572. "packages-dev": [
  7573. {
  7574. "name": "myclabs/deep-copy",
  7575. "version": "1.11.0",
  7576. "source": {
  7577. "type": "git",
  7578. "url": "https://github.com/myclabs/DeepCopy.git",
  7579. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  7580. },
  7581. "dist": {
  7582. "type": "zip",
  7583. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  7584. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  7585. "shasum": ""
  7586. },
  7587. "require": {
  7588. "php": "^7.1 || ^8.0"
  7589. },
  7590. "conflict": {
  7591. "doctrine/collections": "<1.6.8",
  7592. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7593. },
  7594. "require-dev": {
  7595. "doctrine/collections": "^1.6.8",
  7596. "doctrine/common": "^2.13.3 || ^3.2.2",
  7597. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7598. },
  7599. "type": "library",
  7600. "autoload": {
  7601. "files": [
  7602. "src/DeepCopy/deep_copy.php"
  7603. ],
  7604. "psr-4": {
  7605. "DeepCopy\\": "src/DeepCopy/"
  7606. }
  7607. },
  7608. "notification-url": "https://packagist.org/downloads/",
  7609. "license": [
  7610. "MIT"
  7611. ],
  7612. "description": "Create deep copies (clones) of your objects",
  7613. "keywords": [
  7614. "clone",
  7615. "copy",
  7616. "duplicate",
  7617. "object",
  7618. "object graph"
  7619. ],
  7620. "support": {
  7621. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7622. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  7623. },
  7624. "funding": [
  7625. {
  7626. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7627. "type": "tidelift"
  7628. }
  7629. ],
  7630. "time": "2022-03-03T13:19:32+00:00"
  7631. },
  7632. {
  7633. "name": "nikic/php-parser",
  7634. "version": "v4.14.0",
  7635. "source": {
  7636. "type": "git",
  7637. "url": "https://github.com/nikic/PHP-Parser.git",
  7638. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1"
  7639. },
  7640. "dist": {
  7641. "type": "zip",
  7642. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1",
  7643. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1",
  7644. "shasum": ""
  7645. },
  7646. "require": {
  7647. "ext-tokenizer": "*",
  7648. "php": ">=7.0"
  7649. },
  7650. "require-dev": {
  7651. "ircmaxell/php-yacc": "^0.0.7",
  7652. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  7653. },
  7654. "bin": [
  7655. "bin/php-parse"
  7656. ],
  7657. "type": "library",
  7658. "extra": {
  7659. "branch-alias": {
  7660. "dev-master": "4.9-dev"
  7661. }
  7662. },
  7663. "autoload": {
  7664. "psr-4": {
  7665. "PhpParser\\": "lib/PhpParser"
  7666. }
  7667. },
  7668. "notification-url": "https://packagist.org/downloads/",
  7669. "license": [
  7670. "BSD-3-Clause"
  7671. ],
  7672. "authors": [
  7673. {
  7674. "name": "Nikita Popov"
  7675. }
  7676. ],
  7677. "description": "A PHP parser written in PHP",
  7678. "keywords": [
  7679. "parser",
  7680. "php"
  7681. ],
  7682. "support": {
  7683. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7684. "source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0"
  7685. },
  7686. "time": "2022-05-31T20:59:12+00:00"
  7687. },
  7688. {
  7689. "name": "phar-io/manifest",
  7690. "version": "2.0.3",
  7691. "source": {
  7692. "type": "git",
  7693. "url": "https://github.com/phar-io/manifest.git",
  7694. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  7695. },
  7696. "dist": {
  7697. "type": "zip",
  7698. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  7699. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  7700. "shasum": ""
  7701. },
  7702. "require": {
  7703. "ext-dom": "*",
  7704. "ext-phar": "*",
  7705. "ext-xmlwriter": "*",
  7706. "phar-io/version": "^3.0.1",
  7707. "php": "^7.2 || ^8.0"
  7708. },
  7709. "type": "library",
  7710. "extra": {
  7711. "branch-alias": {
  7712. "dev-master": "2.0.x-dev"
  7713. }
  7714. },
  7715. "autoload": {
  7716. "classmap": [
  7717. "src/"
  7718. ]
  7719. },
  7720. "notification-url": "https://packagist.org/downloads/",
  7721. "license": [
  7722. "BSD-3-Clause"
  7723. ],
  7724. "authors": [
  7725. {
  7726. "name": "Arne Blankerts",
  7727. "email": "arne@blankerts.de",
  7728. "role": "Developer"
  7729. },
  7730. {
  7731. "name": "Sebastian Heuer",
  7732. "email": "sebastian@phpeople.de",
  7733. "role": "Developer"
  7734. },
  7735. {
  7736. "name": "Sebastian Bergmann",
  7737. "email": "sebastian@phpunit.de",
  7738. "role": "Developer"
  7739. }
  7740. ],
  7741. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7742. "support": {
  7743. "issues": "https://github.com/phar-io/manifest/issues",
  7744. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  7745. },
  7746. "time": "2021-07-20T11:28:43+00:00"
  7747. },
  7748. {
  7749. "name": "phar-io/version",
  7750. "version": "3.2.1",
  7751. "source": {
  7752. "type": "git",
  7753. "url": "https://github.com/phar-io/version.git",
  7754. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7755. },
  7756. "dist": {
  7757. "type": "zip",
  7758. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7759. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7760. "shasum": ""
  7761. },
  7762. "require": {
  7763. "php": "^7.2 || ^8.0"
  7764. },
  7765. "type": "library",
  7766. "autoload": {
  7767. "classmap": [
  7768. "src/"
  7769. ]
  7770. },
  7771. "notification-url": "https://packagist.org/downloads/",
  7772. "license": [
  7773. "BSD-3-Clause"
  7774. ],
  7775. "authors": [
  7776. {
  7777. "name": "Arne Blankerts",
  7778. "email": "arne@blankerts.de",
  7779. "role": "Developer"
  7780. },
  7781. {
  7782. "name": "Sebastian Heuer",
  7783. "email": "sebastian@phpeople.de",
  7784. "role": "Developer"
  7785. },
  7786. {
  7787. "name": "Sebastian Bergmann",
  7788. "email": "sebastian@phpunit.de",
  7789. "role": "Developer"
  7790. }
  7791. ],
  7792. "description": "Library for handling version information and constraints",
  7793. "support": {
  7794. "issues": "https://github.com/phar-io/version/issues",
  7795. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7796. },
  7797. "time": "2022-02-21T01:04:05+00:00"
  7798. },
  7799. {
  7800. "name": "phpspec/prophecy",
  7801. "version": "v1.15.0",
  7802. "source": {
  7803. "type": "git",
  7804. "url": "https://github.com/phpspec/prophecy.git",
  7805. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  7806. },
  7807. "dist": {
  7808. "type": "zip",
  7809. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  7810. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  7811. "shasum": ""
  7812. },
  7813. "require": {
  7814. "doctrine/instantiator": "^1.2",
  7815. "php": "^7.2 || ~8.0, <8.2",
  7816. "phpdocumentor/reflection-docblock": "^5.2",
  7817. "sebastian/comparator": "^3.0 || ^4.0",
  7818. "sebastian/recursion-context": "^3.0 || ^4.0"
  7819. },
  7820. "require-dev": {
  7821. "phpspec/phpspec": "^6.0 || ^7.0",
  7822. "phpunit/phpunit": "^8.0 || ^9.0"
  7823. },
  7824. "type": "library",
  7825. "extra": {
  7826. "branch-alias": {
  7827. "dev-master": "1.x-dev"
  7828. }
  7829. },
  7830. "autoload": {
  7831. "psr-4": {
  7832. "Prophecy\\": "src/Prophecy"
  7833. }
  7834. },
  7835. "notification-url": "https://packagist.org/downloads/",
  7836. "license": [
  7837. "MIT"
  7838. ],
  7839. "authors": [
  7840. {
  7841. "name": "Konstantin Kudryashov",
  7842. "email": "ever.zet@gmail.com",
  7843. "homepage": "http://everzet.com"
  7844. },
  7845. {
  7846. "name": "Marcello Duarte",
  7847. "email": "marcello.duarte@gmail.com"
  7848. }
  7849. ],
  7850. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7851. "homepage": "https://github.com/phpspec/prophecy",
  7852. "keywords": [
  7853. "Double",
  7854. "Dummy",
  7855. "fake",
  7856. "mock",
  7857. "spy",
  7858. "stub"
  7859. ],
  7860. "support": {
  7861. "issues": "https://github.com/phpspec/prophecy/issues",
  7862. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  7863. },
  7864. "time": "2021-12-08T12:19:24+00:00"
  7865. },
  7866. {
  7867. "name": "phpunit/php-code-coverage",
  7868. "version": "9.2.15",
  7869. "source": {
  7870. "type": "git",
  7871. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7872. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f"
  7873. },
  7874. "dist": {
  7875. "type": "zip",
  7876. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  7877. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  7878. "shasum": ""
  7879. },
  7880. "require": {
  7881. "ext-dom": "*",
  7882. "ext-libxml": "*",
  7883. "ext-xmlwriter": "*",
  7884. "nikic/php-parser": "^4.13.0",
  7885. "php": ">=7.3",
  7886. "phpunit/php-file-iterator": "^3.0.3",
  7887. "phpunit/php-text-template": "^2.0.2",
  7888. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  7889. "sebastian/complexity": "^2.0",
  7890. "sebastian/environment": "^5.1.2",
  7891. "sebastian/lines-of-code": "^1.0.3",
  7892. "sebastian/version": "^3.0.1",
  7893. "theseer/tokenizer": "^1.2.0"
  7894. },
  7895. "require-dev": {
  7896. "phpunit/phpunit": "^9.3"
  7897. },
  7898. "suggest": {
  7899. "ext-pcov": "*",
  7900. "ext-xdebug": "*"
  7901. },
  7902. "type": "library",
  7903. "extra": {
  7904. "branch-alias": {
  7905. "dev-master": "9.2-dev"
  7906. }
  7907. },
  7908. "autoload": {
  7909. "classmap": [
  7910. "src/"
  7911. ]
  7912. },
  7913. "notification-url": "https://packagist.org/downloads/",
  7914. "license": [
  7915. "BSD-3-Clause"
  7916. ],
  7917. "authors": [
  7918. {
  7919. "name": "Sebastian Bergmann",
  7920. "email": "sebastian@phpunit.de",
  7921. "role": "lead"
  7922. }
  7923. ],
  7924. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7925. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7926. "keywords": [
  7927. "coverage",
  7928. "testing",
  7929. "xunit"
  7930. ],
  7931. "support": {
  7932. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7933. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15"
  7934. },
  7935. "funding": [
  7936. {
  7937. "url": "https://github.com/sebastianbergmann",
  7938. "type": "github"
  7939. }
  7940. ],
  7941. "time": "2022-03-07T09:28:20+00:00"
  7942. },
  7943. {
  7944. "name": "phpunit/php-file-iterator",
  7945. "version": "3.0.6",
  7946. "source": {
  7947. "type": "git",
  7948. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7949. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  7950. },
  7951. "dist": {
  7952. "type": "zip",
  7953. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  7954. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  7955. "shasum": ""
  7956. },
  7957. "require": {
  7958. "php": ">=7.3"
  7959. },
  7960. "require-dev": {
  7961. "phpunit/phpunit": "^9.3"
  7962. },
  7963. "type": "library",
  7964. "extra": {
  7965. "branch-alias": {
  7966. "dev-master": "3.0-dev"
  7967. }
  7968. },
  7969. "autoload": {
  7970. "classmap": [
  7971. "src/"
  7972. ]
  7973. },
  7974. "notification-url": "https://packagist.org/downloads/",
  7975. "license": [
  7976. "BSD-3-Clause"
  7977. ],
  7978. "authors": [
  7979. {
  7980. "name": "Sebastian Bergmann",
  7981. "email": "sebastian@phpunit.de",
  7982. "role": "lead"
  7983. }
  7984. ],
  7985. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7986. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7987. "keywords": [
  7988. "filesystem",
  7989. "iterator"
  7990. ],
  7991. "support": {
  7992. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7993. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  7994. },
  7995. "funding": [
  7996. {
  7997. "url": "https://github.com/sebastianbergmann",
  7998. "type": "github"
  7999. }
  8000. ],
  8001. "time": "2021-12-02T12:48:52+00:00"
  8002. },
  8003. {
  8004. "name": "phpunit/php-invoker",
  8005. "version": "3.1.1",
  8006. "source": {
  8007. "type": "git",
  8008. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8009. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8010. },
  8011. "dist": {
  8012. "type": "zip",
  8013. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8014. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8015. "shasum": ""
  8016. },
  8017. "require": {
  8018. "php": ">=7.3"
  8019. },
  8020. "require-dev": {
  8021. "ext-pcntl": "*",
  8022. "phpunit/phpunit": "^9.3"
  8023. },
  8024. "suggest": {
  8025. "ext-pcntl": "*"
  8026. },
  8027. "type": "library",
  8028. "extra": {
  8029. "branch-alias": {
  8030. "dev-master": "3.1-dev"
  8031. }
  8032. },
  8033. "autoload": {
  8034. "classmap": [
  8035. "src/"
  8036. ]
  8037. },
  8038. "notification-url": "https://packagist.org/downloads/",
  8039. "license": [
  8040. "BSD-3-Clause"
  8041. ],
  8042. "authors": [
  8043. {
  8044. "name": "Sebastian Bergmann",
  8045. "email": "sebastian@phpunit.de",
  8046. "role": "lead"
  8047. }
  8048. ],
  8049. "description": "Invoke callables with a timeout",
  8050. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8051. "keywords": [
  8052. "process"
  8053. ],
  8054. "support": {
  8055. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8056. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8057. },
  8058. "funding": [
  8059. {
  8060. "url": "https://github.com/sebastianbergmann",
  8061. "type": "github"
  8062. }
  8063. ],
  8064. "time": "2020-09-28T05:58:55+00:00"
  8065. },
  8066. {
  8067. "name": "phpunit/php-text-template",
  8068. "version": "2.0.4",
  8069. "source": {
  8070. "type": "git",
  8071. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8072. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8073. },
  8074. "dist": {
  8075. "type": "zip",
  8076. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8077. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8078. "shasum": ""
  8079. },
  8080. "require": {
  8081. "php": ">=7.3"
  8082. },
  8083. "require-dev": {
  8084. "phpunit/phpunit": "^9.3"
  8085. },
  8086. "type": "library",
  8087. "extra": {
  8088. "branch-alias": {
  8089. "dev-master": "2.0-dev"
  8090. }
  8091. },
  8092. "autoload": {
  8093. "classmap": [
  8094. "src/"
  8095. ]
  8096. },
  8097. "notification-url": "https://packagist.org/downloads/",
  8098. "license": [
  8099. "BSD-3-Clause"
  8100. ],
  8101. "authors": [
  8102. {
  8103. "name": "Sebastian Bergmann",
  8104. "email": "sebastian@phpunit.de",
  8105. "role": "lead"
  8106. }
  8107. ],
  8108. "description": "Simple template engine.",
  8109. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8110. "keywords": [
  8111. "template"
  8112. ],
  8113. "support": {
  8114. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8115. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8116. },
  8117. "funding": [
  8118. {
  8119. "url": "https://github.com/sebastianbergmann",
  8120. "type": "github"
  8121. }
  8122. ],
  8123. "time": "2020-10-26T05:33:50+00:00"
  8124. },
  8125. {
  8126. "name": "phpunit/php-timer",
  8127. "version": "5.0.3",
  8128. "source": {
  8129. "type": "git",
  8130. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8131. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8132. },
  8133. "dist": {
  8134. "type": "zip",
  8135. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8136. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8137. "shasum": ""
  8138. },
  8139. "require": {
  8140. "php": ">=7.3"
  8141. },
  8142. "require-dev": {
  8143. "phpunit/phpunit": "^9.3"
  8144. },
  8145. "type": "library",
  8146. "extra": {
  8147. "branch-alias": {
  8148. "dev-master": "5.0-dev"
  8149. }
  8150. },
  8151. "autoload": {
  8152. "classmap": [
  8153. "src/"
  8154. ]
  8155. },
  8156. "notification-url": "https://packagist.org/downloads/",
  8157. "license": [
  8158. "BSD-3-Clause"
  8159. ],
  8160. "authors": [
  8161. {
  8162. "name": "Sebastian Bergmann",
  8163. "email": "sebastian@phpunit.de",
  8164. "role": "lead"
  8165. }
  8166. ],
  8167. "description": "Utility class for timing",
  8168. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8169. "keywords": [
  8170. "timer"
  8171. ],
  8172. "support": {
  8173. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8174. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8175. },
  8176. "funding": [
  8177. {
  8178. "url": "https://github.com/sebastianbergmann",
  8179. "type": "github"
  8180. }
  8181. ],
  8182. "time": "2020-10-26T13:16:10+00:00"
  8183. },
  8184. {
  8185. "name": "phpunit/phpunit",
  8186. "version": "9.5.21",
  8187. "source": {
  8188. "type": "git",
  8189. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8190. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1"
  8191. },
  8192. "dist": {
  8193. "type": "zip",
  8194. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0e32b76be457de00e83213528f6bb37e2a38fcb1",
  8195. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1",
  8196. "shasum": ""
  8197. },
  8198. "require": {
  8199. "doctrine/instantiator": "^1.3.1",
  8200. "ext-dom": "*",
  8201. "ext-json": "*",
  8202. "ext-libxml": "*",
  8203. "ext-mbstring": "*",
  8204. "ext-xml": "*",
  8205. "ext-xmlwriter": "*",
  8206. "myclabs/deep-copy": "^1.10.1",
  8207. "phar-io/manifest": "^2.0.3",
  8208. "phar-io/version": "^3.0.2",
  8209. "php": ">=7.3",
  8210. "phpspec/prophecy": "^1.12.1",
  8211. "phpunit/php-code-coverage": "^9.2.13",
  8212. "phpunit/php-file-iterator": "^3.0.5",
  8213. "phpunit/php-invoker": "^3.1.1",
  8214. "phpunit/php-text-template": "^2.0.3",
  8215. "phpunit/php-timer": "^5.0.2",
  8216. "sebastian/cli-parser": "^1.0.1",
  8217. "sebastian/code-unit": "^1.0.6",
  8218. "sebastian/comparator": "^4.0.5",
  8219. "sebastian/diff": "^4.0.3",
  8220. "sebastian/environment": "^5.1.3",
  8221. "sebastian/exporter": "^4.0.3",
  8222. "sebastian/global-state": "^5.0.1",
  8223. "sebastian/object-enumerator": "^4.0.3",
  8224. "sebastian/resource-operations": "^3.0.3",
  8225. "sebastian/type": "^3.0",
  8226. "sebastian/version": "^3.0.2"
  8227. },
  8228. "require-dev": {
  8229. "phpspec/prophecy-phpunit": "^2.0.1"
  8230. },
  8231. "suggest": {
  8232. "ext-soap": "*",
  8233. "ext-xdebug": "*"
  8234. },
  8235. "bin": [
  8236. "phpunit"
  8237. ],
  8238. "type": "library",
  8239. "extra": {
  8240. "branch-alias": {
  8241. "dev-master": "9.5-dev"
  8242. }
  8243. },
  8244. "autoload": {
  8245. "files": [
  8246. "src/Framework/Assert/Functions.php"
  8247. ],
  8248. "classmap": [
  8249. "src/"
  8250. ]
  8251. },
  8252. "notification-url": "https://packagist.org/downloads/",
  8253. "license": [
  8254. "BSD-3-Clause"
  8255. ],
  8256. "authors": [
  8257. {
  8258. "name": "Sebastian Bergmann",
  8259. "email": "sebastian@phpunit.de",
  8260. "role": "lead"
  8261. }
  8262. ],
  8263. "description": "The PHP Unit Testing framework.",
  8264. "homepage": "https://phpunit.de/",
  8265. "keywords": [
  8266. "phpunit",
  8267. "testing",
  8268. "xunit"
  8269. ],
  8270. "support": {
  8271. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8272. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.21"
  8273. },
  8274. "funding": [
  8275. {
  8276. "url": "https://phpunit.de/sponsors.html",
  8277. "type": "custom"
  8278. },
  8279. {
  8280. "url": "https://github.com/sebastianbergmann",
  8281. "type": "github"
  8282. }
  8283. ],
  8284. "time": "2022-06-19T12:14:25+00:00"
  8285. },
  8286. {
  8287. "name": "sebastian/cli-parser",
  8288. "version": "1.0.1",
  8289. "source": {
  8290. "type": "git",
  8291. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8292. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  8293. },
  8294. "dist": {
  8295. "type": "zip",
  8296. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8297. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8298. "shasum": ""
  8299. },
  8300. "require": {
  8301. "php": ">=7.3"
  8302. },
  8303. "require-dev": {
  8304. "phpunit/phpunit": "^9.3"
  8305. },
  8306. "type": "library",
  8307. "extra": {
  8308. "branch-alias": {
  8309. "dev-master": "1.0-dev"
  8310. }
  8311. },
  8312. "autoload": {
  8313. "classmap": [
  8314. "src/"
  8315. ]
  8316. },
  8317. "notification-url": "https://packagist.org/downloads/",
  8318. "license": [
  8319. "BSD-3-Clause"
  8320. ],
  8321. "authors": [
  8322. {
  8323. "name": "Sebastian Bergmann",
  8324. "email": "sebastian@phpunit.de",
  8325. "role": "lead"
  8326. }
  8327. ],
  8328. "description": "Library for parsing CLI options",
  8329. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8330. "support": {
  8331. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8332. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  8333. },
  8334. "funding": [
  8335. {
  8336. "url": "https://github.com/sebastianbergmann",
  8337. "type": "github"
  8338. }
  8339. ],
  8340. "time": "2020-09-28T06:08:49+00:00"
  8341. },
  8342. {
  8343. "name": "sebastian/code-unit",
  8344. "version": "1.0.8",
  8345. "source": {
  8346. "type": "git",
  8347. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8348. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  8349. },
  8350. "dist": {
  8351. "type": "zip",
  8352. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8353. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8354. "shasum": ""
  8355. },
  8356. "require": {
  8357. "php": ">=7.3"
  8358. },
  8359. "require-dev": {
  8360. "phpunit/phpunit": "^9.3"
  8361. },
  8362. "type": "library",
  8363. "extra": {
  8364. "branch-alias": {
  8365. "dev-master": "1.0-dev"
  8366. }
  8367. },
  8368. "autoload": {
  8369. "classmap": [
  8370. "src/"
  8371. ]
  8372. },
  8373. "notification-url": "https://packagist.org/downloads/",
  8374. "license": [
  8375. "BSD-3-Clause"
  8376. ],
  8377. "authors": [
  8378. {
  8379. "name": "Sebastian Bergmann",
  8380. "email": "sebastian@phpunit.de",
  8381. "role": "lead"
  8382. }
  8383. ],
  8384. "description": "Collection of value objects that represent the PHP code units",
  8385. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8386. "support": {
  8387. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8388. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  8389. },
  8390. "funding": [
  8391. {
  8392. "url": "https://github.com/sebastianbergmann",
  8393. "type": "github"
  8394. }
  8395. ],
  8396. "time": "2020-10-26T13:08:54+00:00"
  8397. },
  8398. {
  8399. "name": "sebastian/code-unit-reverse-lookup",
  8400. "version": "2.0.3",
  8401. "source": {
  8402. "type": "git",
  8403. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8404. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  8405. },
  8406. "dist": {
  8407. "type": "zip",
  8408. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8409. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8410. "shasum": ""
  8411. },
  8412. "require": {
  8413. "php": ">=7.3"
  8414. },
  8415. "require-dev": {
  8416. "phpunit/phpunit": "^9.3"
  8417. },
  8418. "type": "library",
  8419. "extra": {
  8420. "branch-alias": {
  8421. "dev-master": "2.0-dev"
  8422. }
  8423. },
  8424. "autoload": {
  8425. "classmap": [
  8426. "src/"
  8427. ]
  8428. },
  8429. "notification-url": "https://packagist.org/downloads/",
  8430. "license": [
  8431. "BSD-3-Clause"
  8432. ],
  8433. "authors": [
  8434. {
  8435. "name": "Sebastian Bergmann",
  8436. "email": "sebastian@phpunit.de"
  8437. }
  8438. ],
  8439. "description": "Looks up which function or method a line of code belongs to",
  8440. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8441. "support": {
  8442. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8443. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  8444. },
  8445. "funding": [
  8446. {
  8447. "url": "https://github.com/sebastianbergmann",
  8448. "type": "github"
  8449. }
  8450. ],
  8451. "time": "2020-09-28T05:30:19+00:00"
  8452. },
  8453. {
  8454. "name": "sebastian/comparator",
  8455. "version": "4.0.6",
  8456. "source": {
  8457. "type": "git",
  8458. "url": "https://github.com/sebastianbergmann/comparator.git",
  8459. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  8460. },
  8461. "dist": {
  8462. "type": "zip",
  8463. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  8464. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  8465. "shasum": ""
  8466. },
  8467. "require": {
  8468. "php": ">=7.3",
  8469. "sebastian/diff": "^4.0",
  8470. "sebastian/exporter": "^4.0"
  8471. },
  8472. "require-dev": {
  8473. "phpunit/phpunit": "^9.3"
  8474. },
  8475. "type": "library",
  8476. "extra": {
  8477. "branch-alias": {
  8478. "dev-master": "4.0-dev"
  8479. }
  8480. },
  8481. "autoload": {
  8482. "classmap": [
  8483. "src/"
  8484. ]
  8485. },
  8486. "notification-url": "https://packagist.org/downloads/",
  8487. "license": [
  8488. "BSD-3-Clause"
  8489. ],
  8490. "authors": [
  8491. {
  8492. "name": "Sebastian Bergmann",
  8493. "email": "sebastian@phpunit.de"
  8494. },
  8495. {
  8496. "name": "Jeff Welch",
  8497. "email": "whatthejeff@gmail.com"
  8498. },
  8499. {
  8500. "name": "Volker Dusch",
  8501. "email": "github@wallbash.com"
  8502. },
  8503. {
  8504. "name": "Bernhard Schussek",
  8505. "email": "bschussek@2bepublished.at"
  8506. }
  8507. ],
  8508. "description": "Provides the functionality to compare PHP values for equality",
  8509. "homepage": "https://github.com/sebastianbergmann/comparator",
  8510. "keywords": [
  8511. "comparator",
  8512. "compare",
  8513. "equality"
  8514. ],
  8515. "support": {
  8516. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8517. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  8518. },
  8519. "funding": [
  8520. {
  8521. "url": "https://github.com/sebastianbergmann",
  8522. "type": "github"
  8523. }
  8524. ],
  8525. "time": "2020-10-26T15:49:45+00:00"
  8526. },
  8527. {
  8528. "name": "sebastian/complexity",
  8529. "version": "2.0.2",
  8530. "source": {
  8531. "type": "git",
  8532. "url": "https://github.com/sebastianbergmann/complexity.git",
  8533. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  8534. },
  8535. "dist": {
  8536. "type": "zip",
  8537. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  8538. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  8539. "shasum": ""
  8540. },
  8541. "require": {
  8542. "nikic/php-parser": "^4.7",
  8543. "php": ">=7.3"
  8544. },
  8545. "require-dev": {
  8546. "phpunit/phpunit": "^9.3"
  8547. },
  8548. "type": "library",
  8549. "extra": {
  8550. "branch-alias": {
  8551. "dev-master": "2.0-dev"
  8552. }
  8553. },
  8554. "autoload": {
  8555. "classmap": [
  8556. "src/"
  8557. ]
  8558. },
  8559. "notification-url": "https://packagist.org/downloads/",
  8560. "license": [
  8561. "BSD-3-Clause"
  8562. ],
  8563. "authors": [
  8564. {
  8565. "name": "Sebastian Bergmann",
  8566. "email": "sebastian@phpunit.de",
  8567. "role": "lead"
  8568. }
  8569. ],
  8570. "description": "Library for calculating the complexity of PHP code units",
  8571. "homepage": "https://github.com/sebastianbergmann/complexity",
  8572. "support": {
  8573. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8574. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  8575. },
  8576. "funding": [
  8577. {
  8578. "url": "https://github.com/sebastianbergmann",
  8579. "type": "github"
  8580. }
  8581. ],
  8582. "time": "2020-10-26T15:52:27+00:00"
  8583. },
  8584. {
  8585. "name": "sebastian/diff",
  8586. "version": "4.0.4",
  8587. "source": {
  8588. "type": "git",
  8589. "url": "https://github.com/sebastianbergmann/diff.git",
  8590. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  8591. },
  8592. "dist": {
  8593. "type": "zip",
  8594. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  8595. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  8596. "shasum": ""
  8597. },
  8598. "require": {
  8599. "php": ">=7.3"
  8600. },
  8601. "require-dev": {
  8602. "phpunit/phpunit": "^9.3",
  8603. "symfony/process": "^4.2 || ^5"
  8604. },
  8605. "type": "library",
  8606. "extra": {
  8607. "branch-alias": {
  8608. "dev-master": "4.0-dev"
  8609. }
  8610. },
  8611. "autoload": {
  8612. "classmap": [
  8613. "src/"
  8614. ]
  8615. },
  8616. "notification-url": "https://packagist.org/downloads/",
  8617. "license": [
  8618. "BSD-3-Clause"
  8619. ],
  8620. "authors": [
  8621. {
  8622. "name": "Sebastian Bergmann",
  8623. "email": "sebastian@phpunit.de"
  8624. },
  8625. {
  8626. "name": "Kore Nordmann",
  8627. "email": "mail@kore-nordmann.de"
  8628. }
  8629. ],
  8630. "description": "Diff implementation",
  8631. "homepage": "https://github.com/sebastianbergmann/diff",
  8632. "keywords": [
  8633. "diff",
  8634. "udiff",
  8635. "unidiff",
  8636. "unified diff"
  8637. ],
  8638. "support": {
  8639. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8640. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  8641. },
  8642. "funding": [
  8643. {
  8644. "url": "https://github.com/sebastianbergmann",
  8645. "type": "github"
  8646. }
  8647. ],
  8648. "time": "2020-10-26T13:10:38+00:00"
  8649. },
  8650. {
  8651. "name": "sebastian/environment",
  8652. "version": "5.1.4",
  8653. "source": {
  8654. "type": "git",
  8655. "url": "https://github.com/sebastianbergmann/environment.git",
  8656. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  8657. },
  8658. "dist": {
  8659. "type": "zip",
  8660. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  8661. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  8662. "shasum": ""
  8663. },
  8664. "require": {
  8665. "php": ">=7.3"
  8666. },
  8667. "require-dev": {
  8668. "phpunit/phpunit": "^9.3"
  8669. },
  8670. "suggest": {
  8671. "ext-posix": "*"
  8672. },
  8673. "type": "library",
  8674. "extra": {
  8675. "branch-alias": {
  8676. "dev-master": "5.1-dev"
  8677. }
  8678. },
  8679. "autoload": {
  8680. "classmap": [
  8681. "src/"
  8682. ]
  8683. },
  8684. "notification-url": "https://packagist.org/downloads/",
  8685. "license": [
  8686. "BSD-3-Clause"
  8687. ],
  8688. "authors": [
  8689. {
  8690. "name": "Sebastian Bergmann",
  8691. "email": "sebastian@phpunit.de"
  8692. }
  8693. ],
  8694. "description": "Provides functionality to handle HHVM/PHP environments",
  8695. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8696. "keywords": [
  8697. "Xdebug",
  8698. "environment",
  8699. "hhvm"
  8700. ],
  8701. "support": {
  8702. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8703. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  8704. },
  8705. "funding": [
  8706. {
  8707. "url": "https://github.com/sebastianbergmann",
  8708. "type": "github"
  8709. }
  8710. ],
  8711. "time": "2022-04-03T09:37:03+00:00"
  8712. },
  8713. {
  8714. "name": "sebastian/exporter",
  8715. "version": "4.0.4",
  8716. "source": {
  8717. "type": "git",
  8718. "url": "https://github.com/sebastianbergmann/exporter.git",
  8719. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  8720. },
  8721. "dist": {
  8722. "type": "zip",
  8723. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  8724. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  8725. "shasum": ""
  8726. },
  8727. "require": {
  8728. "php": ">=7.3",
  8729. "sebastian/recursion-context": "^4.0"
  8730. },
  8731. "require-dev": {
  8732. "ext-mbstring": "*",
  8733. "phpunit/phpunit": "^9.3"
  8734. },
  8735. "type": "library",
  8736. "extra": {
  8737. "branch-alias": {
  8738. "dev-master": "4.0-dev"
  8739. }
  8740. },
  8741. "autoload": {
  8742. "classmap": [
  8743. "src/"
  8744. ]
  8745. },
  8746. "notification-url": "https://packagist.org/downloads/",
  8747. "license": [
  8748. "BSD-3-Clause"
  8749. ],
  8750. "authors": [
  8751. {
  8752. "name": "Sebastian Bergmann",
  8753. "email": "sebastian@phpunit.de"
  8754. },
  8755. {
  8756. "name": "Jeff Welch",
  8757. "email": "whatthejeff@gmail.com"
  8758. },
  8759. {
  8760. "name": "Volker Dusch",
  8761. "email": "github@wallbash.com"
  8762. },
  8763. {
  8764. "name": "Adam Harvey",
  8765. "email": "aharvey@php.net"
  8766. },
  8767. {
  8768. "name": "Bernhard Schussek",
  8769. "email": "bschussek@gmail.com"
  8770. }
  8771. ],
  8772. "description": "Provides the functionality to export PHP variables for visualization",
  8773. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8774. "keywords": [
  8775. "export",
  8776. "exporter"
  8777. ],
  8778. "support": {
  8779. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  8780. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  8781. },
  8782. "funding": [
  8783. {
  8784. "url": "https://github.com/sebastianbergmann",
  8785. "type": "github"
  8786. }
  8787. ],
  8788. "time": "2021-11-11T14:18:36+00:00"
  8789. },
  8790. {
  8791. "name": "sebastian/global-state",
  8792. "version": "5.0.5",
  8793. "source": {
  8794. "type": "git",
  8795. "url": "https://github.com/sebastianbergmann/global-state.git",
  8796. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  8797. },
  8798. "dist": {
  8799. "type": "zip",
  8800. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  8801. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  8802. "shasum": ""
  8803. },
  8804. "require": {
  8805. "php": ">=7.3",
  8806. "sebastian/object-reflector": "^2.0",
  8807. "sebastian/recursion-context": "^4.0"
  8808. },
  8809. "require-dev": {
  8810. "ext-dom": "*",
  8811. "phpunit/phpunit": "^9.3"
  8812. },
  8813. "suggest": {
  8814. "ext-uopz": "*"
  8815. },
  8816. "type": "library",
  8817. "extra": {
  8818. "branch-alias": {
  8819. "dev-master": "5.0-dev"
  8820. }
  8821. },
  8822. "autoload": {
  8823. "classmap": [
  8824. "src/"
  8825. ]
  8826. },
  8827. "notification-url": "https://packagist.org/downloads/",
  8828. "license": [
  8829. "BSD-3-Clause"
  8830. ],
  8831. "authors": [
  8832. {
  8833. "name": "Sebastian Bergmann",
  8834. "email": "sebastian@phpunit.de"
  8835. }
  8836. ],
  8837. "description": "Snapshotting of global state",
  8838. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8839. "keywords": [
  8840. "global state"
  8841. ],
  8842. "support": {
  8843. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  8844. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  8845. },
  8846. "funding": [
  8847. {
  8848. "url": "https://github.com/sebastianbergmann",
  8849. "type": "github"
  8850. }
  8851. ],
  8852. "time": "2022-02-14T08:28:10+00:00"
  8853. },
  8854. {
  8855. "name": "sebastian/lines-of-code",
  8856. "version": "1.0.3",
  8857. "source": {
  8858. "type": "git",
  8859. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  8860. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  8861. },
  8862. "dist": {
  8863. "type": "zip",
  8864. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  8865. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  8866. "shasum": ""
  8867. },
  8868. "require": {
  8869. "nikic/php-parser": "^4.6",
  8870. "php": ">=7.3"
  8871. },
  8872. "require-dev": {
  8873. "phpunit/phpunit": "^9.3"
  8874. },
  8875. "type": "library",
  8876. "extra": {
  8877. "branch-alias": {
  8878. "dev-master": "1.0-dev"
  8879. }
  8880. },
  8881. "autoload": {
  8882. "classmap": [
  8883. "src/"
  8884. ]
  8885. },
  8886. "notification-url": "https://packagist.org/downloads/",
  8887. "license": [
  8888. "BSD-3-Clause"
  8889. ],
  8890. "authors": [
  8891. {
  8892. "name": "Sebastian Bergmann",
  8893. "email": "sebastian@phpunit.de",
  8894. "role": "lead"
  8895. }
  8896. ],
  8897. "description": "Library for counting the lines of code in PHP source code",
  8898. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  8899. "support": {
  8900. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  8901. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  8902. },
  8903. "funding": [
  8904. {
  8905. "url": "https://github.com/sebastianbergmann",
  8906. "type": "github"
  8907. }
  8908. ],
  8909. "time": "2020-11-28T06:42:11+00:00"
  8910. },
  8911. {
  8912. "name": "sebastian/object-enumerator",
  8913. "version": "4.0.4",
  8914. "source": {
  8915. "type": "git",
  8916. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8917. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  8918. },
  8919. "dist": {
  8920. "type": "zip",
  8921. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  8922. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  8923. "shasum": ""
  8924. },
  8925. "require": {
  8926. "php": ">=7.3",
  8927. "sebastian/object-reflector": "^2.0",
  8928. "sebastian/recursion-context": "^4.0"
  8929. },
  8930. "require-dev": {
  8931. "phpunit/phpunit": "^9.3"
  8932. },
  8933. "type": "library",
  8934. "extra": {
  8935. "branch-alias": {
  8936. "dev-master": "4.0-dev"
  8937. }
  8938. },
  8939. "autoload": {
  8940. "classmap": [
  8941. "src/"
  8942. ]
  8943. },
  8944. "notification-url": "https://packagist.org/downloads/",
  8945. "license": [
  8946. "BSD-3-Clause"
  8947. ],
  8948. "authors": [
  8949. {
  8950. "name": "Sebastian Bergmann",
  8951. "email": "sebastian@phpunit.de"
  8952. }
  8953. ],
  8954. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8955. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8956. "support": {
  8957. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  8958. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  8959. },
  8960. "funding": [
  8961. {
  8962. "url": "https://github.com/sebastianbergmann",
  8963. "type": "github"
  8964. }
  8965. ],
  8966. "time": "2020-10-26T13:12:34+00:00"
  8967. },
  8968. {
  8969. "name": "sebastian/object-reflector",
  8970. "version": "2.0.4",
  8971. "source": {
  8972. "type": "git",
  8973. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8974. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  8975. },
  8976. "dist": {
  8977. "type": "zip",
  8978. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  8979. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  8980. "shasum": ""
  8981. },
  8982. "require": {
  8983. "php": ">=7.3"
  8984. },
  8985. "require-dev": {
  8986. "phpunit/phpunit": "^9.3"
  8987. },
  8988. "type": "library",
  8989. "extra": {
  8990. "branch-alias": {
  8991. "dev-master": "2.0-dev"
  8992. }
  8993. },
  8994. "autoload": {
  8995. "classmap": [
  8996. "src/"
  8997. ]
  8998. },
  8999. "notification-url": "https://packagist.org/downloads/",
  9000. "license": [
  9001. "BSD-3-Clause"
  9002. ],
  9003. "authors": [
  9004. {
  9005. "name": "Sebastian Bergmann",
  9006. "email": "sebastian@phpunit.de"
  9007. }
  9008. ],
  9009. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9010. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9011. "support": {
  9012. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9013. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9014. },
  9015. "funding": [
  9016. {
  9017. "url": "https://github.com/sebastianbergmann",
  9018. "type": "github"
  9019. }
  9020. ],
  9021. "time": "2020-10-26T13:14:26+00:00"
  9022. },
  9023. {
  9024. "name": "sebastian/recursion-context",
  9025. "version": "4.0.4",
  9026. "source": {
  9027. "type": "git",
  9028. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9029. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  9030. },
  9031. "dist": {
  9032. "type": "zip",
  9033. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  9034. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  9035. "shasum": ""
  9036. },
  9037. "require": {
  9038. "php": ">=7.3"
  9039. },
  9040. "require-dev": {
  9041. "phpunit/phpunit": "^9.3"
  9042. },
  9043. "type": "library",
  9044. "extra": {
  9045. "branch-alias": {
  9046. "dev-master": "4.0-dev"
  9047. }
  9048. },
  9049. "autoload": {
  9050. "classmap": [
  9051. "src/"
  9052. ]
  9053. },
  9054. "notification-url": "https://packagist.org/downloads/",
  9055. "license": [
  9056. "BSD-3-Clause"
  9057. ],
  9058. "authors": [
  9059. {
  9060. "name": "Sebastian Bergmann",
  9061. "email": "sebastian@phpunit.de"
  9062. },
  9063. {
  9064. "name": "Jeff Welch",
  9065. "email": "whatthejeff@gmail.com"
  9066. },
  9067. {
  9068. "name": "Adam Harvey",
  9069. "email": "aharvey@php.net"
  9070. }
  9071. ],
  9072. "description": "Provides functionality to recursively process PHP variables",
  9073. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9074. "support": {
  9075. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9076. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  9077. },
  9078. "funding": [
  9079. {
  9080. "url": "https://github.com/sebastianbergmann",
  9081. "type": "github"
  9082. }
  9083. ],
  9084. "time": "2020-10-26T13:17:30+00:00"
  9085. },
  9086. {
  9087. "name": "sebastian/resource-operations",
  9088. "version": "3.0.3",
  9089. "source": {
  9090. "type": "git",
  9091. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9092. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  9093. },
  9094. "dist": {
  9095. "type": "zip",
  9096. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9097. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9098. "shasum": ""
  9099. },
  9100. "require": {
  9101. "php": ">=7.3"
  9102. },
  9103. "require-dev": {
  9104. "phpunit/phpunit": "^9.0"
  9105. },
  9106. "type": "library",
  9107. "extra": {
  9108. "branch-alias": {
  9109. "dev-master": "3.0-dev"
  9110. }
  9111. },
  9112. "autoload": {
  9113. "classmap": [
  9114. "src/"
  9115. ]
  9116. },
  9117. "notification-url": "https://packagist.org/downloads/",
  9118. "license": [
  9119. "BSD-3-Clause"
  9120. ],
  9121. "authors": [
  9122. {
  9123. "name": "Sebastian Bergmann",
  9124. "email": "sebastian@phpunit.de"
  9125. }
  9126. ],
  9127. "description": "Provides a list of PHP built-in functions that operate on resources",
  9128. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9129. "support": {
  9130. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9131. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  9132. },
  9133. "funding": [
  9134. {
  9135. "url": "https://github.com/sebastianbergmann",
  9136. "type": "github"
  9137. }
  9138. ],
  9139. "time": "2020-09-28T06:45:17+00:00"
  9140. },
  9141. {
  9142. "name": "sebastian/type",
  9143. "version": "3.0.0",
  9144. "source": {
  9145. "type": "git",
  9146. "url": "https://github.com/sebastianbergmann/type.git",
  9147. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad"
  9148. },
  9149. "dist": {
  9150. "type": "zip",
  9151. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  9152. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  9153. "shasum": ""
  9154. },
  9155. "require": {
  9156. "php": ">=7.3"
  9157. },
  9158. "require-dev": {
  9159. "phpunit/phpunit": "^9.5"
  9160. },
  9161. "type": "library",
  9162. "extra": {
  9163. "branch-alias": {
  9164. "dev-master": "3.0-dev"
  9165. }
  9166. },
  9167. "autoload": {
  9168. "classmap": [
  9169. "src/"
  9170. ]
  9171. },
  9172. "notification-url": "https://packagist.org/downloads/",
  9173. "license": [
  9174. "BSD-3-Clause"
  9175. ],
  9176. "authors": [
  9177. {
  9178. "name": "Sebastian Bergmann",
  9179. "email": "sebastian@phpunit.de",
  9180. "role": "lead"
  9181. }
  9182. ],
  9183. "description": "Collection of value objects that represent the types of the PHP type system",
  9184. "homepage": "https://github.com/sebastianbergmann/type",
  9185. "support": {
  9186. "issues": "https://github.com/sebastianbergmann/type/issues",
  9187. "source": "https://github.com/sebastianbergmann/type/tree/3.0.0"
  9188. },
  9189. "funding": [
  9190. {
  9191. "url": "https://github.com/sebastianbergmann",
  9192. "type": "github"
  9193. }
  9194. ],
  9195. "time": "2022-03-15T09:54:48+00:00"
  9196. },
  9197. {
  9198. "name": "sebastian/version",
  9199. "version": "3.0.2",
  9200. "source": {
  9201. "type": "git",
  9202. "url": "https://github.com/sebastianbergmann/version.git",
  9203. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9204. },
  9205. "dist": {
  9206. "type": "zip",
  9207. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9208. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9209. "shasum": ""
  9210. },
  9211. "require": {
  9212. "php": ">=7.3"
  9213. },
  9214. "type": "library",
  9215. "extra": {
  9216. "branch-alias": {
  9217. "dev-master": "3.0-dev"
  9218. }
  9219. },
  9220. "autoload": {
  9221. "classmap": [
  9222. "src/"
  9223. ]
  9224. },
  9225. "notification-url": "https://packagist.org/downloads/",
  9226. "license": [
  9227. "BSD-3-Clause"
  9228. ],
  9229. "authors": [
  9230. {
  9231. "name": "Sebastian Bergmann",
  9232. "email": "sebastian@phpunit.de",
  9233. "role": "lead"
  9234. }
  9235. ],
  9236. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9237. "homepage": "https://github.com/sebastianbergmann/version",
  9238. "support": {
  9239. "issues": "https://github.com/sebastianbergmann/version/issues",
  9240. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9241. },
  9242. "funding": [
  9243. {
  9244. "url": "https://github.com/sebastianbergmann",
  9245. "type": "github"
  9246. }
  9247. ],
  9248. "time": "2020-09-28T06:39:44+00:00"
  9249. },
  9250. {
  9251. "name": "symfony/browser-kit",
  9252. "version": "v5.4.3",
  9253. "source": {
  9254. "type": "git",
  9255. "url": "https://github.com/symfony/browser-kit.git",
  9256. "reference": "18e73179c6a33d520de1b644941eba108dd811ad"
  9257. },
  9258. "dist": {
  9259. "type": "zip",
  9260. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/18e73179c6a33d520de1b644941eba108dd811ad",
  9261. "reference": "18e73179c6a33d520de1b644941eba108dd811ad",
  9262. "shasum": ""
  9263. },
  9264. "require": {
  9265. "php": ">=7.2.5",
  9266. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  9267. "symfony/polyfill-php80": "^1.16"
  9268. },
  9269. "require-dev": {
  9270. "symfony/css-selector": "^4.4|^5.0|^6.0",
  9271. "symfony/http-client": "^4.4|^5.0|^6.0",
  9272. "symfony/mime": "^4.4|^5.0|^6.0",
  9273. "symfony/process": "^4.4|^5.0|^6.0"
  9274. },
  9275. "suggest": {
  9276. "symfony/process": ""
  9277. },
  9278. "type": "library",
  9279. "autoload": {
  9280. "psr-4": {
  9281. "Symfony\\Component\\BrowserKit\\": ""
  9282. },
  9283. "exclude-from-classmap": [
  9284. "/Tests/"
  9285. ]
  9286. },
  9287. "notification-url": "https://packagist.org/downloads/",
  9288. "license": [
  9289. "MIT"
  9290. ],
  9291. "authors": [
  9292. {
  9293. "name": "Fabien Potencier",
  9294. "email": "fabien@symfony.com"
  9295. },
  9296. {
  9297. "name": "Symfony Community",
  9298. "homepage": "https://symfony.com/contributors"
  9299. }
  9300. ],
  9301. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9302. "homepage": "https://symfony.com",
  9303. "support": {
  9304. "source": "https://github.com/symfony/browser-kit/tree/v5.4.3"
  9305. },
  9306. "funding": [
  9307. {
  9308. "url": "https://symfony.com/sponsor",
  9309. "type": "custom"
  9310. },
  9311. {
  9312. "url": "https://github.com/fabpot",
  9313. "type": "github"
  9314. },
  9315. {
  9316. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9317. "type": "tidelift"
  9318. }
  9319. ],
  9320. "time": "2022-01-02T09:53:40+00:00"
  9321. },
  9322. {
  9323. "name": "symfony/css-selector",
  9324. "version": "v5.4.3",
  9325. "source": {
  9326. "type": "git",
  9327. "url": "https://github.com/symfony/css-selector.git",
  9328. "reference": "b0a190285cd95cb019237851205b8140ef6e368e"
  9329. },
  9330. "dist": {
  9331. "type": "zip",
  9332. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b0a190285cd95cb019237851205b8140ef6e368e",
  9333. "reference": "b0a190285cd95cb019237851205b8140ef6e368e",
  9334. "shasum": ""
  9335. },
  9336. "require": {
  9337. "php": ">=7.2.5",
  9338. "symfony/polyfill-php80": "^1.16"
  9339. },
  9340. "type": "library",
  9341. "autoload": {
  9342. "psr-4": {
  9343. "Symfony\\Component\\CssSelector\\": ""
  9344. },
  9345. "exclude-from-classmap": [
  9346. "/Tests/"
  9347. ]
  9348. },
  9349. "notification-url": "https://packagist.org/downloads/",
  9350. "license": [
  9351. "MIT"
  9352. ],
  9353. "authors": [
  9354. {
  9355. "name": "Fabien Potencier",
  9356. "email": "fabien@symfony.com"
  9357. },
  9358. {
  9359. "name": "Jean-François Simon",
  9360. "email": "jeanfrancois.simon@sensiolabs.com"
  9361. },
  9362. {
  9363. "name": "Symfony Community",
  9364. "homepage": "https://symfony.com/contributors"
  9365. }
  9366. ],
  9367. "description": "Converts CSS selectors to XPath expressions",
  9368. "homepage": "https://symfony.com",
  9369. "support": {
  9370. "source": "https://github.com/symfony/css-selector/tree/v5.4.3"
  9371. },
  9372. "funding": [
  9373. {
  9374. "url": "https://symfony.com/sponsor",
  9375. "type": "custom"
  9376. },
  9377. {
  9378. "url": "https://github.com/fabpot",
  9379. "type": "github"
  9380. },
  9381. {
  9382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9383. "type": "tidelift"
  9384. }
  9385. ],
  9386. "time": "2022-01-02T09:53:40+00:00"
  9387. },
  9388. {
  9389. "name": "symfony/debug-bundle",
  9390. "version": "v5.4.3",
  9391. "source": {
  9392. "type": "git",
  9393. "url": "https://github.com/symfony/debug-bundle.git",
  9394. "reference": "6f508169752ed2c0d0d8a6641c4cca39a8f1dfcb"
  9395. },
  9396. "dist": {
  9397. "type": "zip",
  9398. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/6f508169752ed2c0d0d8a6641c4cca39a8f1dfcb",
  9399. "reference": "6f508169752ed2c0d0d8a6641c4cca39a8f1dfcb",
  9400. "shasum": ""
  9401. },
  9402. "require": {
  9403. "ext-xml": "*",
  9404. "php": ">=7.2.5",
  9405. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  9406. "symfony/polyfill-php80": "^1.16",
  9407. "symfony/twig-bridge": "^4.4|^5.0|^6.0",
  9408. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  9409. },
  9410. "conflict": {
  9411. "symfony/config": "<4.4",
  9412. "symfony/dependency-injection": "<5.2"
  9413. },
  9414. "require-dev": {
  9415. "symfony/config": "^4.4|^5.0|^6.0",
  9416. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  9417. "symfony/web-profiler-bundle": "^4.4|^5.0|^6.0"
  9418. },
  9419. "suggest": {
  9420. "symfony/config": "For service container configuration",
  9421. "symfony/dependency-injection": "For using as a service from the container"
  9422. },
  9423. "type": "symfony-bundle",
  9424. "autoload": {
  9425. "psr-4": {
  9426. "Symfony\\Bundle\\DebugBundle\\": ""
  9427. },
  9428. "exclude-from-classmap": [
  9429. "/Tests/"
  9430. ]
  9431. },
  9432. "notification-url": "https://packagist.org/downloads/",
  9433. "license": [
  9434. "MIT"
  9435. ],
  9436. "authors": [
  9437. {
  9438. "name": "Fabien Potencier",
  9439. "email": "fabien@symfony.com"
  9440. },
  9441. {
  9442. "name": "Symfony Community",
  9443. "homepage": "https://symfony.com/contributors"
  9444. }
  9445. ],
  9446. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  9447. "homepage": "https://symfony.com",
  9448. "support": {
  9449. "source": "https://github.com/symfony/debug-bundle/tree/v5.4.3"
  9450. },
  9451. "funding": [
  9452. {
  9453. "url": "https://symfony.com/sponsor",
  9454. "type": "custom"
  9455. },
  9456. {
  9457. "url": "https://github.com/fabpot",
  9458. "type": "github"
  9459. },
  9460. {
  9461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9462. "type": "tidelift"
  9463. }
  9464. ],
  9465. "time": "2022-01-02T09:53:40+00:00"
  9466. },
  9467. {
  9468. "name": "symfony/dom-crawler",
  9469. "version": "v5.4.9",
  9470. "source": {
  9471. "type": "git",
  9472. "url": "https://github.com/symfony/dom-crawler.git",
  9473. "reference": "a213cbc80382320b0efdccdcdce232f191fafe3a"
  9474. },
  9475. "dist": {
  9476. "type": "zip",
  9477. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/a213cbc80382320b0efdccdcdce232f191fafe3a",
  9478. "reference": "a213cbc80382320b0efdccdcdce232f191fafe3a",
  9479. "shasum": ""
  9480. },
  9481. "require": {
  9482. "php": ">=7.2.5",
  9483. "symfony/deprecation-contracts": "^2.1|^3",
  9484. "symfony/polyfill-ctype": "~1.8",
  9485. "symfony/polyfill-mbstring": "~1.0",
  9486. "symfony/polyfill-php80": "^1.16"
  9487. },
  9488. "conflict": {
  9489. "masterminds/html5": "<2.6"
  9490. },
  9491. "require-dev": {
  9492. "masterminds/html5": "^2.6",
  9493. "symfony/css-selector": "^4.4|^5.0|^6.0"
  9494. },
  9495. "suggest": {
  9496. "symfony/css-selector": ""
  9497. },
  9498. "type": "library",
  9499. "autoload": {
  9500. "psr-4": {
  9501. "Symfony\\Component\\DomCrawler\\": ""
  9502. },
  9503. "exclude-from-classmap": [
  9504. "/Tests/"
  9505. ]
  9506. },
  9507. "notification-url": "https://packagist.org/downloads/",
  9508. "license": [
  9509. "MIT"
  9510. ],
  9511. "authors": [
  9512. {
  9513. "name": "Fabien Potencier",
  9514. "email": "fabien@symfony.com"
  9515. },
  9516. {
  9517. "name": "Symfony Community",
  9518. "homepage": "https://symfony.com/contributors"
  9519. }
  9520. ],
  9521. "description": "Eases DOM navigation for HTML and XML documents",
  9522. "homepage": "https://symfony.com",
  9523. "support": {
  9524. "source": "https://github.com/symfony/dom-crawler/tree/v5.4.9"
  9525. },
  9526. "funding": [
  9527. {
  9528. "url": "https://symfony.com/sponsor",
  9529. "type": "custom"
  9530. },
  9531. {
  9532. "url": "https://github.com/fabpot",
  9533. "type": "github"
  9534. },
  9535. {
  9536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9537. "type": "tidelift"
  9538. }
  9539. ],
  9540. "time": "2022-05-04T14:46:32+00:00"
  9541. },
  9542. {
  9543. "name": "symfony/maker-bundle",
  9544. "version": "v1.43.0",
  9545. "source": {
  9546. "type": "git",
  9547. "url": "https://github.com/symfony/maker-bundle.git",
  9548. "reference": "e3f9a1d9e0f4968f68454403e820dffc7db38a59"
  9549. },
  9550. "dist": {
  9551. "type": "zip",
  9552. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/e3f9a1d9e0f4968f68454403e820dffc7db38a59",
  9553. "reference": "e3f9a1d9e0f4968f68454403e820dffc7db38a59",
  9554. "shasum": ""
  9555. },
  9556. "require": {
  9557. "doctrine/inflector": "^2.0",
  9558. "nikic/php-parser": "^4.11",
  9559. "php": ">=7.2.5",
  9560. "symfony/config": "^5.4.7|^6.0",
  9561. "symfony/console": "^5.4.7|^6.0",
  9562. "symfony/dependency-injection": "^5.4.7|^6.0",
  9563. "symfony/deprecation-contracts": "^2.2|^3",
  9564. "symfony/filesystem": "^5.4.7|^6.0",
  9565. "symfony/finder": "^5.4.3|^6.0",
  9566. "symfony/framework-bundle": "^5.4.7|^6.0",
  9567. "symfony/http-kernel": "^5.4.7|^6.0"
  9568. },
  9569. "conflict": {
  9570. "doctrine/orm": "<2.10"
  9571. },
  9572. "require-dev": {
  9573. "composer/semver": "^3.0",
  9574. "doctrine/doctrine-bundle": "^2.4",
  9575. "doctrine/orm": "^2.10.0",
  9576. "symfony/http-client": "^5.4.7|^6.0",
  9577. "symfony/phpunit-bridge": "^5.4.7|^6.0",
  9578. "symfony/polyfill-php80": "^1.16.0",
  9579. "symfony/process": "^5.4.7|^6.0",
  9580. "symfony/security-core": "^5.4.7|^6.0",
  9581. "symfony/yaml": "^5.4.3|^6.0",
  9582. "twig/twig": "^2.0|^3.0"
  9583. },
  9584. "type": "symfony-bundle",
  9585. "extra": {
  9586. "branch-alias": {
  9587. "dev-main": "1.0-dev"
  9588. }
  9589. },
  9590. "autoload": {
  9591. "psr-4": {
  9592. "Symfony\\Bundle\\MakerBundle\\": "src/"
  9593. }
  9594. },
  9595. "notification-url": "https://packagist.org/downloads/",
  9596. "license": [
  9597. "MIT"
  9598. ],
  9599. "authors": [
  9600. {
  9601. "name": "Symfony Community",
  9602. "homepage": "https://symfony.com/contributors"
  9603. }
  9604. ],
  9605. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  9606. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  9607. "keywords": [
  9608. "code generator",
  9609. "generator",
  9610. "scaffold",
  9611. "scaffolding"
  9612. ],
  9613. "support": {
  9614. "issues": "https://github.com/symfony/maker-bundle/issues",
  9615. "source": "https://github.com/symfony/maker-bundle/tree/v1.43.0"
  9616. },
  9617. "funding": [
  9618. {
  9619. "url": "https://symfony.com/sponsor",
  9620. "type": "custom"
  9621. },
  9622. {
  9623. "url": "https://github.com/fabpot",
  9624. "type": "github"
  9625. },
  9626. {
  9627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9628. "type": "tidelift"
  9629. }
  9630. ],
  9631. "time": "2022-05-17T15:46:50+00:00"
  9632. },
  9633. {
  9634. "name": "symfony/phpunit-bridge",
  9635. "version": "v5.4.10",
  9636. "source": {
  9637. "type": "git",
  9638. "url": "https://github.com/symfony/phpunit-bridge.git",
  9639. "reference": "1eeae96a2e6a2ec052e55e9f2ae35ad8bbe16ce8"
  9640. },
  9641. "dist": {
  9642. "type": "zip",
  9643. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/1eeae96a2e6a2ec052e55e9f2ae35ad8bbe16ce8",
  9644. "reference": "1eeae96a2e6a2ec052e55e9f2ae35ad8bbe16ce8",
  9645. "shasum": ""
  9646. },
  9647. "require": {
  9648. "php": ">=7.1.3",
  9649. "symfony/deprecation-contracts": "^2.1|^3"
  9650. },
  9651. "conflict": {
  9652. "phpunit/phpunit": "<7.5|9.1.2"
  9653. },
  9654. "require-dev": {
  9655. "symfony/error-handler": "^4.4|^5.0|^6.0"
  9656. },
  9657. "suggest": {
  9658. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  9659. },
  9660. "bin": [
  9661. "bin/simple-phpunit"
  9662. ],
  9663. "type": "symfony-bridge",
  9664. "extra": {
  9665. "thanks": {
  9666. "name": "phpunit/phpunit",
  9667. "url": "https://github.com/sebastianbergmann/phpunit"
  9668. }
  9669. },
  9670. "autoload": {
  9671. "files": [
  9672. "bootstrap.php"
  9673. ],
  9674. "psr-4": {
  9675. "Symfony\\Bridge\\PhpUnit\\": ""
  9676. },
  9677. "exclude-from-classmap": [
  9678. "/Tests/"
  9679. ]
  9680. },
  9681. "notification-url": "https://packagist.org/downloads/",
  9682. "license": [
  9683. "MIT"
  9684. ],
  9685. "authors": [
  9686. {
  9687. "name": "Nicolas Grekas",
  9688. "email": "p@tchwork.com"
  9689. },
  9690. {
  9691. "name": "Symfony Community",
  9692. "homepage": "https://symfony.com/contributors"
  9693. }
  9694. ],
  9695. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  9696. "homepage": "https://symfony.com",
  9697. "support": {
  9698. "source": "https://github.com/symfony/phpunit-bridge/tree/v5.4.10"
  9699. },
  9700. "funding": [
  9701. {
  9702. "url": "https://symfony.com/sponsor",
  9703. "type": "custom"
  9704. },
  9705. {
  9706. "url": "https://github.com/fabpot",
  9707. "type": "github"
  9708. },
  9709. {
  9710. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9711. "type": "tidelift"
  9712. }
  9713. ],
  9714. "time": "2022-06-20T08:12:38+00:00"
  9715. },
  9716. {
  9717. "name": "symfony/web-profiler-bundle",
  9718. "version": "v5.4.10",
  9719. "source": {
  9720. "type": "git",
  9721. "url": "https://github.com/symfony/web-profiler-bundle.git",
  9722. "reference": "f61c99d8dbd864b11935851b598f784bcff36fc7"
  9723. },
  9724. "dist": {
  9725. "type": "zip",
  9726. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/f61c99d8dbd864b11935851b598f784bcff36fc7",
  9727. "reference": "f61c99d8dbd864b11935851b598f784bcff36fc7",
  9728. "shasum": ""
  9729. },
  9730. "require": {
  9731. "php": ">=7.2.5",
  9732. "symfony/config": "^4.4|^5.0|^6.0",
  9733. "symfony/framework-bundle": "^5.3|^6.0",
  9734. "symfony/http-kernel": "^5.3|^6.0",
  9735. "symfony/polyfill-php80": "^1.16",
  9736. "symfony/routing": "^4.4|^5.0|^6.0",
  9737. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  9738. "twig/twig": "^2.13|^3.0.4"
  9739. },
  9740. "conflict": {
  9741. "symfony/dependency-injection": "<5.2",
  9742. "symfony/form": "<4.4",
  9743. "symfony/mailer": "<5.4",
  9744. "symfony/messenger": "<4.4"
  9745. },
  9746. "require-dev": {
  9747. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  9748. "symfony/console": "^4.4|^5.0|^6.0",
  9749. "symfony/css-selector": "^4.4|^5.0|^6.0",
  9750. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  9751. },
  9752. "type": "symfony-bundle",
  9753. "autoload": {
  9754. "psr-4": {
  9755. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  9756. },
  9757. "exclude-from-classmap": [
  9758. "/Tests/"
  9759. ]
  9760. },
  9761. "notification-url": "https://packagist.org/downloads/",
  9762. "license": [
  9763. "MIT"
  9764. ],
  9765. "authors": [
  9766. {
  9767. "name": "Fabien Potencier",
  9768. "email": "fabien@symfony.com"
  9769. },
  9770. {
  9771. "name": "Symfony Community",
  9772. "homepage": "https://symfony.com/contributors"
  9773. }
  9774. ],
  9775. "description": "Provides a development tool that gives detailed information about the execution of any request",
  9776. "homepage": "https://symfony.com",
  9777. "support": {
  9778. "source": "https://github.com/symfony/web-profiler-bundle/tree/v5.4.10"
  9779. },
  9780. "funding": [
  9781. {
  9782. "url": "https://symfony.com/sponsor",
  9783. "type": "custom"
  9784. },
  9785. {
  9786. "url": "https://github.com/fabpot",
  9787. "type": "github"
  9788. },
  9789. {
  9790. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9791. "type": "tidelift"
  9792. }
  9793. ],
  9794. "time": "2022-06-06T19:10:58+00:00"
  9795. },
  9796. {
  9797. "name": "theseer/tokenizer",
  9798. "version": "1.2.1",
  9799. "source": {
  9800. "type": "git",
  9801. "url": "https://github.com/theseer/tokenizer.git",
  9802. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  9803. },
  9804. "dist": {
  9805. "type": "zip",
  9806. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  9807. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  9808. "shasum": ""
  9809. },
  9810. "require": {
  9811. "ext-dom": "*",
  9812. "ext-tokenizer": "*",
  9813. "ext-xmlwriter": "*",
  9814. "php": "^7.2 || ^8.0"
  9815. },
  9816. "type": "library",
  9817. "autoload": {
  9818. "classmap": [
  9819. "src/"
  9820. ]
  9821. },
  9822. "notification-url": "https://packagist.org/downloads/",
  9823. "license": [
  9824. "BSD-3-Clause"
  9825. ],
  9826. "authors": [
  9827. {
  9828. "name": "Arne Blankerts",
  9829. "email": "arne@blankerts.de",
  9830. "role": "Developer"
  9831. }
  9832. ],
  9833. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9834. "support": {
  9835. "issues": "https://github.com/theseer/tokenizer/issues",
  9836. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  9837. },
  9838. "funding": [
  9839. {
  9840. "url": "https://github.com/theseer",
  9841. "type": "github"
  9842. }
  9843. ],
  9844. "time": "2021-07-28T10:34:58+00:00"
  9845. }
  9846. ],
  9847. "aliases": [],
  9848. "minimum-stability": "stable",
  9849. "stability-flags": [],
  9850. "prefer-stable": false,
  9851. "prefer-lowest": false,
  9852. "platform": {
  9853. "php": "^7.3",
  9854. "ext-ctype": "*",
  9855. "ext-iconv": "*"
  9856. },
  9857. "platform-dev": [],
  9858. "platform-overrides": {
  9859. "php": "7.3"
  9860. },
  9861. "plugin-api-version": "2.3.0"
  9862. }