composer.lock 351 KB

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